File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ index e4d335c..6c53dce 100644
8
8
</svg>
9
9
+ <!-- Slightly increasing size so it reaches the threshold that will prevent it from being inlined by Vite. -->
10
10
diff --git a/node_modules/@gouvfr/dsfr/dist/dsfr.module.js b/node_modules/@gouvfr/dsfr/dist/dsfr.module.js
11
- index 7cc31ef..2572570 100644
11
+ index 3566bc7..e58a87f 100644
12
12
--- a/node_modules/@gouvfr/dsfr/dist/dsfr.module.js
13
13
+++ b/node_modules/@gouvfr/dsfr/dist/dsfr.module.js
14
- @@ -6338 ,9 +6338 ,11 @@ class HeaderLinks extends api.core.Instance {
14
+ @@ -6453 ,9 +6453 ,11 @@ class HeaderLinks extends api.core.Instance {
15
15
case api.Modes.ANGULAR:
16
16
case api.Modes.REACT:
17
17
case api.Modes.VUE:
Original file line number Diff line number Diff line change @@ -651,10 +651,18 @@ function getPrimaryButtonClassSelector() {
651
651
"vimeo" ,
652
652
"youtube" ,
653
653
"menu" ,
654
- "search"
654
+ "search" ,
655
+ "bluesky"
655
656
] as const ;
656
657
657
- assert < Equals < BtnVariantWithoutPosition , typeof btnVariants [ number ] > > ( ) ;
658
+ type Source = typeof btnVariants [ number ] ;
659
+ type Mirrored = BtnVariantWithoutPosition ;
660
+
661
+ type InSourceNotInMirrored = Exclude < Source , Mirrored > ;
662
+ type InMirroredNotInSource = Exclude < Mirrored , Source > ;
663
+
664
+ assert < Equals < InSourceNotInMirrored , never > > ( ) ;
665
+ assert < Equals < InMirroredNotInSource , never > > ( ) ;
658
666
659
667
let selector = `.${ fr . cx ( "fr-btn" ) } ` ;
660
668
You can’t perform that action at this time.
0 commit comments