@astrojs/starlight 0.42.0 → 0.42.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/PageFrame.astro +8 -2
- package/dist/components-internals/Icons.d.ts +3 -1
- package/dist/components-internals/Icons.js +1 -0
- package/dist/package.js +1 -1
- package/dist/schema.d.ts +13 -12
- package/dist/schemas/badge.d.ts +17 -17
- package/dist/schemas/head.d.ts +3 -3
- package/dist/schemas/hero.d.ts +5 -4
- package/dist/schemas/icon.d.ts +4 -3
- package/dist/schemas/sidebar.d.ts +17 -17
- package/dist/schemas/social.d.ts +4 -3
- package/dist/utils/plugins.d.ts +26 -26
- package/dist/utils/user-config.d.ts +115 -114
- package/package.json +1 -1
|
@@ -149,10 +149,8 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
149
149
|
}, z.core.$strip>]>>;
|
|
150
150
|
social: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
151
151
|
icon: z.ZodEnum<{
|
|
152
|
-
server: "server";
|
|
153
|
-
external: "external";
|
|
154
|
-
error: "error";
|
|
155
152
|
link: "link";
|
|
153
|
+
error: "error";
|
|
156
154
|
"up-caret": "up-caret";
|
|
157
155
|
"down-caret": "down-caret";
|
|
158
156
|
"right-caret": "right-caret";
|
|
@@ -169,6 +167,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
169
167
|
"add-document": "add-document";
|
|
170
168
|
setting: "setting";
|
|
171
169
|
"link-alt": "link-alt";
|
|
170
|
+
external: "external";
|
|
172
171
|
download: "download";
|
|
173
172
|
"cloud-download": "cloud-download";
|
|
174
173
|
moon: "moon";
|
|
@@ -179,6 +178,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
179
178
|
"mobile-android": "mobile-android";
|
|
180
179
|
window: "window";
|
|
181
180
|
database: "database";
|
|
181
|
+
server: "server";
|
|
182
182
|
"code-branch": "code-branch";
|
|
183
183
|
"open-book": "open-book";
|
|
184
184
|
notes: "notes";
|
|
@@ -208,6 +208,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
208
208
|
codePen: "codePen";
|
|
209
209
|
farcaster: "farcaster";
|
|
210
210
|
discord: "discord";
|
|
211
|
+
fluxer: "fluxer";
|
|
211
212
|
gitter: "gitter";
|
|
212
213
|
twitter: "twitter";
|
|
213
214
|
"x.com": "x.com";
|
|
@@ -486,12 +487,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
486
487
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
487
488
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
488
489
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
489
|
-
default: "default";
|
|
490
490
|
success: "success";
|
|
491
|
+
default: "default";
|
|
491
492
|
note: "note";
|
|
492
|
-
tip: "tip";
|
|
493
|
-
caution: "caution";
|
|
494
493
|
danger: "danger";
|
|
494
|
+
caution: "caution";
|
|
495
|
+
tip: "tip";
|
|
495
496
|
}>>;
|
|
496
497
|
class: z.ZodOptional<z.ZodString>;
|
|
497
498
|
}, z.core.$strip>]>>;
|
|
@@ -502,7 +503,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
502
503
|
attrs?: undefined;
|
|
503
504
|
badge?: string | {
|
|
504
505
|
text: string | Record<string, string>;
|
|
505
|
-
variant: "
|
|
506
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
506
507
|
class?: string | undefined;
|
|
507
508
|
} | undefined;
|
|
508
509
|
} & {
|
|
@@ -514,12 +515,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
514
515
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
515
516
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
516
517
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
517
|
-
default: "default";
|
|
518
518
|
success: "success";
|
|
519
|
+
default: "default";
|
|
519
520
|
note: "note";
|
|
520
|
-
tip: "tip";
|
|
521
|
-
caution: "caution";
|
|
522
521
|
danger: "danger";
|
|
522
|
+
caution: "caution";
|
|
523
|
+
tip: "tip";
|
|
523
524
|
}>>;
|
|
524
525
|
class: z.ZodOptional<z.ZodString>;
|
|
525
526
|
}, z.core.$strip>]>>;
|
|
@@ -538,12 +539,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
538
539
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
539
540
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
540
541
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
541
|
-
default: "default";
|
|
542
542
|
success: "success";
|
|
543
|
+
default: "default";
|
|
543
544
|
note: "note";
|
|
544
|
-
tip: "tip";
|
|
545
|
-
caution: "caution";
|
|
546
545
|
danger: "danger";
|
|
546
|
+
caution: "caution";
|
|
547
|
+
tip: "tip";
|
|
547
548
|
}>>;
|
|
548
549
|
class: z.ZodOptional<z.ZodString>;
|
|
549
550
|
}, z.core.$strip>]>>;
|
|
@@ -554,7 +555,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
554
555
|
label?: string | undefined;
|
|
555
556
|
badge?: string | {
|
|
556
557
|
text: string | Record<string, string>;
|
|
557
|
-
variant: "
|
|
558
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
558
559
|
class?: string | undefined;
|
|
559
560
|
} | undefined;
|
|
560
561
|
}, string>>> | ({
|
|
@@ -564,7 +565,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
564
565
|
attrs?: undefined;
|
|
565
566
|
badge?: string | {
|
|
566
567
|
text: string | Record<string, string>;
|
|
567
|
-
variant: "
|
|
568
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
568
569
|
class?: string | undefined;
|
|
569
570
|
} | undefined;
|
|
570
571
|
} & /*elided*/ any)>;
|
|
@@ -575,7 +576,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
575
576
|
translations?: Record<string, string> | undefined;
|
|
576
577
|
badge?: string | {
|
|
577
578
|
text: string | Record<string, string>;
|
|
578
|
-
variant?: "
|
|
579
|
+
variant?: "success" | "default" | "note" | "danger" | "caution" | "tip" | undefined;
|
|
579
580
|
class?: string | undefined;
|
|
580
581
|
} | undefined;
|
|
581
582
|
} & {
|
|
@@ -587,12 +588,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
587
588
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
588
589
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
589
590
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
590
|
-
default: "default";
|
|
591
591
|
success: "success";
|
|
592
|
+
default: "default";
|
|
592
593
|
note: "note";
|
|
593
|
-
tip: "tip";
|
|
594
|
-
caution: "caution";
|
|
595
594
|
danger: "danger";
|
|
595
|
+
caution: "caution";
|
|
596
|
+
tip: "tip";
|
|
596
597
|
}>>;
|
|
597
598
|
class: z.ZodOptional<z.ZodString>;
|
|
598
599
|
}, z.core.$strip>]>>;
|
|
@@ -611,12 +612,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
611
612
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
612
613
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
613
614
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
614
|
-
default: "default";
|
|
615
615
|
success: "success";
|
|
616
|
+
default: "default";
|
|
616
617
|
note: "note";
|
|
617
|
-
tip: "tip";
|
|
618
|
-
caution: "caution";
|
|
619
618
|
danger: "danger";
|
|
619
|
+
caution: "caution";
|
|
620
|
+
tip: "tip";
|
|
620
621
|
}>>;
|
|
621
622
|
class: z.ZodOptional<z.ZodString>;
|
|
622
623
|
}, z.core.$strip>]>>;
|
|
@@ -627,7 +628,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
627
628
|
label?: string | undefined;
|
|
628
629
|
badge?: string | {
|
|
629
630
|
text: string | Record<string, string>;
|
|
630
|
-
variant: "
|
|
631
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
631
632
|
class?: string | undefined;
|
|
632
633
|
} | undefined;
|
|
633
634
|
}, string>>> | ({
|
|
@@ -637,7 +638,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
637
638
|
translations?: Record<string, string> | undefined;
|
|
638
639
|
badge?: string | {
|
|
639
640
|
text: string | Record<string, string>;
|
|
640
|
-
variant?: "
|
|
641
|
+
variant?: "success" | "default" | "note" | "danger" | "caution" | "tip" | undefined;
|
|
641
642
|
class?: string | undefined;
|
|
642
643
|
} | undefined;
|
|
643
644
|
} & /*elided*/ any)>;
|
|
@@ -648,7 +649,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
648
649
|
attrs?: undefined;
|
|
649
650
|
badge?: string | {
|
|
650
651
|
text: string | Record<string, string>;
|
|
651
|
-
variant: "
|
|
652
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
652
653
|
class?: string | undefined;
|
|
653
654
|
} | undefined;
|
|
654
655
|
} & {
|
|
@@ -660,12 +661,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
660
661
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
661
662
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
662
663
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
663
|
-
default: "default";
|
|
664
664
|
success: "success";
|
|
665
|
+
default: "default";
|
|
665
666
|
note: "note";
|
|
666
|
-
tip: "tip";
|
|
667
|
-
caution: "caution";
|
|
668
667
|
danger: "danger";
|
|
668
|
+
caution: "caution";
|
|
669
|
+
tip: "tip";
|
|
669
670
|
}>>;
|
|
670
671
|
class: z.ZodOptional<z.ZodString>;
|
|
671
672
|
}, z.core.$strip>]>>;
|
|
@@ -684,12 +685,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
684
685
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
685
686
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
686
687
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
687
|
-
default: "default";
|
|
688
688
|
success: "success";
|
|
689
|
+
default: "default";
|
|
689
690
|
note: "note";
|
|
690
|
-
tip: "tip";
|
|
691
|
-
caution: "caution";
|
|
692
691
|
danger: "danger";
|
|
692
|
+
caution: "caution";
|
|
693
|
+
tip: "tip";
|
|
693
694
|
}>>;
|
|
694
695
|
class: z.ZodOptional<z.ZodString>;
|
|
695
696
|
}, z.core.$strip>]>>;
|
|
@@ -700,7 +701,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
700
701
|
label?: string | undefined;
|
|
701
702
|
badge?: string | {
|
|
702
703
|
text: string | Record<string, string>;
|
|
703
|
-
variant: "
|
|
704
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
704
705
|
class?: string | undefined;
|
|
705
706
|
} | undefined;
|
|
706
707
|
}, string>>> | ({
|
|
@@ -710,7 +711,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
710
711
|
attrs?: undefined;
|
|
711
712
|
badge?: string | {
|
|
712
713
|
text: string | Record<string, string>;
|
|
713
|
-
variant: "
|
|
714
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
714
715
|
class?: string | undefined;
|
|
715
716
|
} | undefined;
|
|
716
717
|
} & /*elided*/ any)>;
|
|
@@ -721,7 +722,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
721
722
|
translations?: Record<string, string> | undefined;
|
|
722
723
|
badge?: string | {
|
|
723
724
|
text: string | Record<string, string>;
|
|
724
|
-
variant?: "
|
|
725
|
+
variant?: "success" | "default" | "note" | "danger" | "caution" | "tip" | undefined;
|
|
725
726
|
class?: string | undefined;
|
|
726
727
|
} | undefined;
|
|
727
728
|
} & {
|
|
@@ -733,12 +734,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
733
734
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
734
735
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
735
736
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
736
|
-
default: "default";
|
|
737
737
|
success: "success";
|
|
738
|
+
default: "default";
|
|
738
739
|
note: "note";
|
|
739
|
-
tip: "tip";
|
|
740
|
-
caution: "caution";
|
|
741
740
|
danger: "danger";
|
|
741
|
+
caution: "caution";
|
|
742
|
+
tip: "tip";
|
|
742
743
|
}>>;
|
|
743
744
|
class: z.ZodOptional<z.ZodString>;
|
|
744
745
|
}, z.core.$strip>]>>;
|
|
@@ -757,12 +758,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
757
758
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
758
759
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
759
760
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
760
|
-
default: "default";
|
|
761
761
|
success: "success";
|
|
762
|
+
default: "default";
|
|
762
763
|
note: "note";
|
|
763
|
-
tip: "tip";
|
|
764
|
-
caution: "caution";
|
|
765
764
|
danger: "danger";
|
|
765
|
+
caution: "caution";
|
|
766
|
+
tip: "tip";
|
|
766
767
|
}>>;
|
|
767
768
|
class: z.ZodOptional<z.ZodString>;
|
|
768
769
|
}, z.core.$strip>]>>;
|
|
@@ -773,7 +774,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
773
774
|
label?: string | undefined;
|
|
774
775
|
badge?: string | {
|
|
775
776
|
text: string | Record<string, string>;
|
|
776
|
-
variant: "
|
|
777
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
777
778
|
class?: string | undefined;
|
|
778
779
|
} | undefined;
|
|
779
780
|
}, string>>> | ({
|
|
@@ -783,7 +784,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
783
784
|
translations?: Record<string, string> | undefined;
|
|
784
785
|
badge?: string | {
|
|
785
786
|
text: string | Record<string, string>;
|
|
786
|
-
variant?: "
|
|
787
|
+
variant?: "success" | "default" | "note" | "danger" | "caution" | "tip" | undefined;
|
|
787
788
|
class?: string | undefined;
|
|
788
789
|
} | undefined;
|
|
789
790
|
} & /*elided*/ any)>;
|
|
@@ -802,12 +803,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
802
803
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
803
804
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
804
805
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
805
|
-
default: "default";
|
|
806
806
|
success: "success";
|
|
807
|
+
default: "default";
|
|
807
808
|
note: "note";
|
|
808
|
-
tip: "tip";
|
|
809
|
-
caution: "caution";
|
|
810
809
|
danger: "danger";
|
|
810
|
+
caution: "caution";
|
|
811
|
+
tip: "tip";
|
|
811
812
|
}>>;
|
|
812
813
|
class: z.ZodOptional<z.ZodString>;
|
|
813
814
|
}, z.core.$strip>]>>;
|
|
@@ -818,20 +819,20 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
818
819
|
label?: string | undefined;
|
|
819
820
|
badge?: string | {
|
|
820
821
|
text: string | Record<string, string>;
|
|
821
|
-
variant: "
|
|
822
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
822
823
|
class?: string | undefined;
|
|
823
824
|
} | undefined;
|
|
824
825
|
}, string>>]>>>;
|
|
825
826
|
head: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
826
827
|
tag: z.ZodEnum<{
|
|
828
|
+
title: "title";
|
|
827
829
|
base: "base";
|
|
828
830
|
link: "link";
|
|
831
|
+
style: "style";
|
|
829
832
|
meta: "meta";
|
|
830
|
-
noscript: "noscript";
|
|
831
833
|
script: "script";
|
|
832
|
-
|
|
834
|
+
noscript: "noscript";
|
|
833
835
|
template: "template";
|
|
834
|
-
title: "title";
|
|
835
836
|
}>;
|
|
836
837
|
attrs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodBoolean, z.ZodUndefined]>>>;
|
|
837
838
|
content: z.ZodOptional<z.ZodString>;
|
|
@@ -976,7 +977,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
976
977
|
baseUrl?: string | undefined;
|
|
977
978
|
};
|
|
978
979
|
head: {
|
|
979
|
-
tag: "
|
|
980
|
+
tag: "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template";
|
|
980
981
|
attrs?: Record<string, string | boolean | undefined> | undefined;
|
|
981
982
|
content?: string | undefined;
|
|
982
983
|
}[];
|
|
@@ -1038,7 +1039,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1038
1039
|
replacesTitle: boolean;
|
|
1039
1040
|
} | undefined;
|
|
1040
1041
|
social?: {
|
|
1041
|
-
icon: "
|
|
1042
|
+
icon: "link" | "error" | "up-caret" | "down-caret" | "right-caret" | "left-caret" | "up-arrow" | "down-arrow" | "right-arrow" | "left-arrow" | "bars" | "translate" | "pencil" | "pen" | "document" | "add-document" | "setting" | "link-alt" | "external" | "download" | "cloud-download" | "moon" | "sun" | "clock" | "laptop" | "desktop" | "mobile-android" | "window" | "database" | "server" | "code-branch" | "open-book" | "notes" | "information" | "magnifier" | "forward-slash" | "close" | "warning" | "approve-check-circle" | "approve-check" | "question-circle" | "question" | "rocket" | "star" | "puzzle" | "list-format" | "analytics" | "random" | "padlock" | "comment" | "comment-alt" | "heart" | "github" | "gitlab" | "bitbucket" | "forgejo" | "codePen" | "farcaster" | "discord" | "fluxer" | "gitter" | "twitter" | "x.com" | "mastodon" | "codeberg" | "youtube" | "threads" | "linkedin" | "twitch" | "azureDevOps" | "microsoftTeams" | "instagram" | "stackOverflow" | "telegram" | "whatsApp" | "rss" | "facebook" | "email" | "phone" | "reddit" | "patreon" | "signal" | "slack" | "matrix" | "hackerOne" | "openCollective" | "blueSky" | "discourse" | "zulip" | "pinterest" | "tiktok" | "goodreads" | "hypothesis" | "astro" | "solidjs" | "alpine" | "pnpm" | "biome" | "bun" | "mdx" | "apple" | "linux" | "homebrew" | "nix" | "starlight" | "pkl" | "node" | "cloudflare" | "vercel" | "netlify" | "deno" | "jsr" | "nostr" | "backstage" | "confluence" | "jira" | "storybook" | "vscode" | "jetbrains" | "zed" | "vim" | "figma" | "sketch" | "npm" | "npmx" | "sourcehut" | "substack" | "chrome" | "edge" | "firefox" | "safari" | "seti:folder" | "seti:bsl" | "seti:mdo" | "seti:salesforce" | "seti:asm" | "seti:bicep" | "seti:bazel" | "seti:c" | "seti:c-sharp" | "seti:html" | "seti:cpp" | "seti:clojure" | "seti:coldfusion" | "seti:config" | "seti:crystal" | "seti:crystal_embedded" | "seti:json" | "seti:css" | "seti:csv" | "seti:xls" | "seti:cu" | "seti:cake" | "seti:cake_php" | "seti:d" | "seti:word" | "seti:elixir" | "seti:elixir_script" | "seti:hex" | "seti:elm" | "seti:favicon" | "seti:f-sharp" | "seti:git" | "seti:go" | "seti:godot" | "seti:gradle" | "seti:grails" | "seti:graphql" | "seti:hacklang" | "seti:haml" | "seti:mustache" | "seti:haskell" | "seti:haxe" | "seti:jade" | "seti:java" | "seti:javascript" | "seti:jinja" | "seti:julia" | "seti:karma" | "seti:kotlin" | "seti:dart" | "seti:liquid" | "seti:livescript" | "seti:lua" | "seti:markdown" | "seti:argdown" | "seti:info" | "seti:clock" | "seti:maven" | "seti:nim" | "seti:github" | "seti:notebook" | "seti:nunjucks" | "seti:npm" | "seti:ocaml" | "seti:odata" | "seti:perl" | "seti:php" | "seti:pipeline" | "seti:pddl" | "seti:plan" | "seti:happenings" | "seti:powershell" | "seti:prisma" | "seti:pug" | "seti:puppet" | "seti:purescript" | "seti:python" | "seti:react" | "seti:rescript" | "seti:R" | "seti:ruby" | "seti:rust" | "seti:sass" | "seti:spring" | "seti:slim" | "seti:smarty" | "seti:sbt" | "seti:scala" | "seti:ethereum" | "seti:stylus" | "seti:svelte" | "seti:swift" | "seti:db" | "seti:terraform" | "seti:tex" | "seti:default" | "seti:twig" | "seti:typescript" | "seti:tsconfig" | "seti:vala" | "seti:vite" | "seti:vue" | "seti:wasm" | "seti:wat" | "seti:xml" | "seti:yml" | "seti:prolog" | "seti:zig" | "seti:zip" | "seti:wgt" | "seti:illustrator" | "seti:photoshop" | "seti:pdf" | "seti:font" | "seti:image" | "seti:svg" | "seti:sublime" | "seti:code-search" | "seti:shell" | "seti:video" | "seti:audio" | "seti:windows" | "seti:jenkins" | "seti:babel" | "seti:bower" | "seti:docker" | "seti:code-climate" | "seti:eslint" | "seti:firebase" | "seti:firefox" | "seti:gitlab" | "seti:grunt" | "seti:gulp" | "seti:ionic" | "seti:platformio" | "seti:rollup" | "seti:stylelint" | "seti:yarn" | "seti:webpack" | "seti:lock" | "seti:license" | "seti:makefile" | "seti:heroku" | "seti:todo" | "seti:ignored";
|
|
1042
1043
|
label: string;
|
|
1043
1044
|
href: string;
|
|
1044
1045
|
}[] | undefined;
|
|
@@ -1062,7 +1063,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1062
1063
|
attrs?: undefined;
|
|
1063
1064
|
badge?: string | {
|
|
1064
1065
|
text: string | Record<string, string>;
|
|
1065
|
-
variant: "
|
|
1066
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1066
1067
|
class?: string | undefined;
|
|
1067
1068
|
} | undefined;
|
|
1068
1069
|
} & {
|
|
@@ -1074,12 +1075,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1074
1075
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1075
1076
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1076
1077
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1077
|
-
default: "default";
|
|
1078
1078
|
success: "success";
|
|
1079
|
+
default: "default";
|
|
1079
1080
|
note: "note";
|
|
1080
|
-
tip: "tip";
|
|
1081
|
-
caution: "caution";
|
|
1082
1081
|
danger: "danger";
|
|
1082
|
+
caution: "caution";
|
|
1083
|
+
tip: "tip";
|
|
1083
1084
|
}>>;
|
|
1084
1085
|
class: z.ZodOptional<z.ZodString>;
|
|
1085
1086
|
}, z.core.$strip>]>>;
|
|
@@ -1098,12 +1099,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1098
1099
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1099
1100
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1100
1101
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1101
|
-
default: "default";
|
|
1102
1102
|
success: "success";
|
|
1103
|
+
default: "default";
|
|
1103
1104
|
note: "note";
|
|
1104
|
-
tip: "tip";
|
|
1105
|
-
caution: "caution";
|
|
1106
1105
|
danger: "danger";
|
|
1106
|
+
caution: "caution";
|
|
1107
|
+
tip: "tip";
|
|
1107
1108
|
}>>;
|
|
1108
1109
|
class: z.ZodOptional<z.ZodString>;
|
|
1109
1110
|
}, z.core.$strip>]>>;
|
|
@@ -1114,7 +1115,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1114
1115
|
label?: string | undefined;
|
|
1115
1116
|
badge?: string | {
|
|
1116
1117
|
text: string | Record<string, string>;
|
|
1117
|
-
variant: "
|
|
1118
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1118
1119
|
class?: string | undefined;
|
|
1119
1120
|
} | undefined;
|
|
1120
1121
|
}, string>>> | ({
|
|
@@ -1124,7 +1125,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1124
1125
|
attrs?: undefined;
|
|
1125
1126
|
badge?: string | {
|
|
1126
1127
|
text: string | Record<string, string>;
|
|
1127
|
-
variant: "
|
|
1128
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1128
1129
|
class?: string | undefined;
|
|
1129
1130
|
} | undefined;
|
|
1130
1131
|
} & /*elided*/ any)>;
|
|
@@ -1135,7 +1136,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1135
1136
|
label?: string | undefined;
|
|
1136
1137
|
badge?: string | {
|
|
1137
1138
|
text: string | Record<string, string>;
|
|
1138
|
-
variant: "
|
|
1139
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1139
1140
|
class?: string | undefined;
|
|
1140
1141
|
} | undefined;
|
|
1141
1142
|
} | {
|
|
@@ -1145,7 +1146,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1145
1146
|
translations: Record<string, string>;
|
|
1146
1147
|
badge?: string | {
|
|
1147
1148
|
text: string | Record<string, string>;
|
|
1148
|
-
variant: "
|
|
1149
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1149
1150
|
class?: string | undefined;
|
|
1150
1151
|
} | undefined;
|
|
1151
1152
|
} | {
|
|
@@ -1170,7 +1171,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1170
1171
|
baseUrl?: string | undefined;
|
|
1171
1172
|
};
|
|
1172
1173
|
head: {
|
|
1173
|
-
tag: "
|
|
1174
|
+
tag: "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template";
|
|
1174
1175
|
attrs?: Record<string, string | boolean | undefined> | undefined;
|
|
1175
1176
|
content?: string | undefined;
|
|
1176
1177
|
}[];
|
|
@@ -1232,7 +1233,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1232
1233
|
replacesTitle: boolean;
|
|
1233
1234
|
} | undefined;
|
|
1234
1235
|
social?: {
|
|
1235
|
-
icon: "
|
|
1236
|
+
icon: "link" | "error" | "up-caret" | "down-caret" | "right-caret" | "left-caret" | "up-arrow" | "down-arrow" | "right-arrow" | "left-arrow" | "bars" | "translate" | "pencil" | "pen" | "document" | "add-document" | "setting" | "link-alt" | "external" | "download" | "cloud-download" | "moon" | "sun" | "clock" | "laptop" | "desktop" | "mobile-android" | "window" | "database" | "server" | "code-branch" | "open-book" | "notes" | "information" | "magnifier" | "forward-slash" | "close" | "warning" | "approve-check-circle" | "approve-check" | "question-circle" | "question" | "rocket" | "star" | "puzzle" | "list-format" | "analytics" | "random" | "padlock" | "comment" | "comment-alt" | "heart" | "github" | "gitlab" | "bitbucket" | "forgejo" | "codePen" | "farcaster" | "discord" | "fluxer" | "gitter" | "twitter" | "x.com" | "mastodon" | "codeberg" | "youtube" | "threads" | "linkedin" | "twitch" | "azureDevOps" | "microsoftTeams" | "instagram" | "stackOverflow" | "telegram" | "whatsApp" | "rss" | "facebook" | "email" | "phone" | "reddit" | "patreon" | "signal" | "slack" | "matrix" | "hackerOne" | "openCollective" | "blueSky" | "discourse" | "zulip" | "pinterest" | "tiktok" | "goodreads" | "hypothesis" | "astro" | "solidjs" | "alpine" | "pnpm" | "biome" | "bun" | "mdx" | "apple" | "linux" | "homebrew" | "nix" | "starlight" | "pkl" | "node" | "cloudflare" | "vercel" | "netlify" | "deno" | "jsr" | "nostr" | "backstage" | "confluence" | "jira" | "storybook" | "vscode" | "jetbrains" | "zed" | "vim" | "figma" | "sketch" | "npm" | "npmx" | "sourcehut" | "substack" | "chrome" | "edge" | "firefox" | "safari" | "seti:folder" | "seti:bsl" | "seti:mdo" | "seti:salesforce" | "seti:asm" | "seti:bicep" | "seti:bazel" | "seti:c" | "seti:c-sharp" | "seti:html" | "seti:cpp" | "seti:clojure" | "seti:coldfusion" | "seti:config" | "seti:crystal" | "seti:crystal_embedded" | "seti:json" | "seti:css" | "seti:csv" | "seti:xls" | "seti:cu" | "seti:cake" | "seti:cake_php" | "seti:d" | "seti:word" | "seti:elixir" | "seti:elixir_script" | "seti:hex" | "seti:elm" | "seti:favicon" | "seti:f-sharp" | "seti:git" | "seti:go" | "seti:godot" | "seti:gradle" | "seti:grails" | "seti:graphql" | "seti:hacklang" | "seti:haml" | "seti:mustache" | "seti:haskell" | "seti:haxe" | "seti:jade" | "seti:java" | "seti:javascript" | "seti:jinja" | "seti:julia" | "seti:karma" | "seti:kotlin" | "seti:dart" | "seti:liquid" | "seti:livescript" | "seti:lua" | "seti:markdown" | "seti:argdown" | "seti:info" | "seti:clock" | "seti:maven" | "seti:nim" | "seti:github" | "seti:notebook" | "seti:nunjucks" | "seti:npm" | "seti:ocaml" | "seti:odata" | "seti:perl" | "seti:php" | "seti:pipeline" | "seti:pddl" | "seti:plan" | "seti:happenings" | "seti:powershell" | "seti:prisma" | "seti:pug" | "seti:puppet" | "seti:purescript" | "seti:python" | "seti:react" | "seti:rescript" | "seti:R" | "seti:ruby" | "seti:rust" | "seti:sass" | "seti:spring" | "seti:slim" | "seti:smarty" | "seti:sbt" | "seti:scala" | "seti:ethereum" | "seti:stylus" | "seti:svelte" | "seti:swift" | "seti:db" | "seti:terraform" | "seti:tex" | "seti:default" | "seti:twig" | "seti:typescript" | "seti:tsconfig" | "seti:vala" | "seti:vite" | "seti:vue" | "seti:wasm" | "seti:wat" | "seti:xml" | "seti:yml" | "seti:prolog" | "seti:zig" | "seti:zip" | "seti:wgt" | "seti:illustrator" | "seti:photoshop" | "seti:pdf" | "seti:font" | "seti:image" | "seti:svg" | "seti:sublime" | "seti:code-search" | "seti:shell" | "seti:video" | "seti:audio" | "seti:windows" | "seti:jenkins" | "seti:babel" | "seti:bower" | "seti:docker" | "seti:code-climate" | "seti:eslint" | "seti:firebase" | "seti:firefox" | "seti:gitlab" | "seti:grunt" | "seti:gulp" | "seti:ionic" | "seti:platformio" | "seti:rollup" | "seti:stylelint" | "seti:yarn" | "seti:webpack" | "seti:lock" | "seti:license" | "seti:makefile" | "seti:heroku" | "seti:todo" | "seti:ignored";
|
|
1236
1237
|
label: string;
|
|
1237
1238
|
href: string;
|
|
1238
1239
|
}[] | undefined;
|
|
@@ -1256,7 +1257,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1256
1257
|
attrs?: undefined;
|
|
1257
1258
|
badge?: string | {
|
|
1258
1259
|
text: string | Record<string, string>;
|
|
1259
|
-
variant: "
|
|
1260
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1260
1261
|
class?: string | undefined;
|
|
1261
1262
|
} | undefined;
|
|
1262
1263
|
} & {
|
|
@@ -1268,12 +1269,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1268
1269
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1269
1270
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1270
1271
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1271
|
-
default: "default";
|
|
1272
1272
|
success: "success";
|
|
1273
|
+
default: "default";
|
|
1273
1274
|
note: "note";
|
|
1274
|
-
tip: "tip";
|
|
1275
|
-
caution: "caution";
|
|
1276
1275
|
danger: "danger";
|
|
1276
|
+
caution: "caution";
|
|
1277
|
+
tip: "tip";
|
|
1277
1278
|
}>>;
|
|
1278
1279
|
class: z.ZodOptional<z.ZodString>;
|
|
1279
1280
|
}, z.core.$strip>]>>;
|
|
@@ -1292,12 +1293,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1292
1293
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1293
1294
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1294
1295
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1295
|
-
default: "default";
|
|
1296
1296
|
success: "success";
|
|
1297
|
+
default: "default";
|
|
1297
1298
|
note: "note";
|
|
1298
|
-
tip: "tip";
|
|
1299
|
-
caution: "caution";
|
|
1300
1299
|
danger: "danger";
|
|
1300
|
+
caution: "caution";
|
|
1301
|
+
tip: "tip";
|
|
1301
1302
|
}>>;
|
|
1302
1303
|
class: z.ZodOptional<z.ZodString>;
|
|
1303
1304
|
}, z.core.$strip>]>>;
|
|
@@ -1308,7 +1309,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1308
1309
|
label?: string | undefined;
|
|
1309
1310
|
badge?: string | {
|
|
1310
1311
|
text: string | Record<string, string>;
|
|
1311
|
-
variant: "
|
|
1312
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1312
1313
|
class?: string | undefined;
|
|
1313
1314
|
} | undefined;
|
|
1314
1315
|
}, string>>> | ({
|
|
@@ -1318,7 +1319,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1318
1319
|
attrs?: undefined;
|
|
1319
1320
|
badge?: string | {
|
|
1320
1321
|
text: string | Record<string, string>;
|
|
1321
|
-
variant: "
|
|
1322
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1322
1323
|
class?: string | undefined;
|
|
1323
1324
|
} | undefined;
|
|
1324
1325
|
} & /*elided*/ any)>;
|
|
@@ -1329,7 +1330,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1329
1330
|
label?: string | undefined;
|
|
1330
1331
|
badge?: string | {
|
|
1331
1332
|
text: string | Record<string, string>;
|
|
1332
|
-
variant: "
|
|
1333
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1333
1334
|
class?: string | undefined;
|
|
1334
1335
|
} | undefined;
|
|
1335
1336
|
} | {
|
|
@@ -1339,7 +1340,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1339
1340
|
translations: Record<string, string>;
|
|
1340
1341
|
badge?: string | {
|
|
1341
1342
|
text: string | Record<string, string>;
|
|
1342
|
-
variant: "
|
|
1343
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1343
1344
|
class?: string | undefined;
|
|
1344
1345
|
} | undefined;
|
|
1345
1346
|
} | {
|
|
@@ -1441,7 +1442,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1441
1442
|
baseUrl?: string | undefined;
|
|
1442
1443
|
};
|
|
1443
1444
|
readonly head: {
|
|
1444
|
-
tag: "
|
|
1445
|
+
tag: "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template";
|
|
1445
1446
|
attrs?: Record<string, string | boolean | undefined> | undefined;
|
|
1446
1447
|
content?: string | undefined;
|
|
1447
1448
|
}[];
|
|
@@ -1503,7 +1504,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1503
1504
|
replacesTitle: boolean;
|
|
1504
1505
|
} | undefined;
|
|
1505
1506
|
readonly social?: {
|
|
1506
|
-
icon: "
|
|
1507
|
+
icon: "link" | "error" | "up-caret" | "down-caret" | "right-caret" | "left-caret" | "up-arrow" | "down-arrow" | "right-arrow" | "left-arrow" | "bars" | "translate" | "pencil" | "pen" | "document" | "add-document" | "setting" | "link-alt" | "external" | "download" | "cloud-download" | "moon" | "sun" | "clock" | "laptop" | "desktop" | "mobile-android" | "window" | "database" | "server" | "code-branch" | "open-book" | "notes" | "information" | "magnifier" | "forward-slash" | "close" | "warning" | "approve-check-circle" | "approve-check" | "question-circle" | "question" | "rocket" | "star" | "puzzle" | "list-format" | "analytics" | "random" | "padlock" | "comment" | "comment-alt" | "heart" | "github" | "gitlab" | "bitbucket" | "forgejo" | "codePen" | "farcaster" | "discord" | "fluxer" | "gitter" | "twitter" | "x.com" | "mastodon" | "codeberg" | "youtube" | "threads" | "linkedin" | "twitch" | "azureDevOps" | "microsoftTeams" | "instagram" | "stackOverflow" | "telegram" | "whatsApp" | "rss" | "facebook" | "email" | "phone" | "reddit" | "patreon" | "signal" | "slack" | "matrix" | "hackerOne" | "openCollective" | "blueSky" | "discourse" | "zulip" | "pinterest" | "tiktok" | "goodreads" | "hypothesis" | "astro" | "solidjs" | "alpine" | "pnpm" | "biome" | "bun" | "mdx" | "apple" | "linux" | "homebrew" | "nix" | "starlight" | "pkl" | "node" | "cloudflare" | "vercel" | "netlify" | "deno" | "jsr" | "nostr" | "backstage" | "confluence" | "jira" | "storybook" | "vscode" | "jetbrains" | "zed" | "vim" | "figma" | "sketch" | "npm" | "npmx" | "sourcehut" | "substack" | "chrome" | "edge" | "firefox" | "safari" | "seti:folder" | "seti:bsl" | "seti:mdo" | "seti:salesforce" | "seti:asm" | "seti:bicep" | "seti:bazel" | "seti:c" | "seti:c-sharp" | "seti:html" | "seti:cpp" | "seti:clojure" | "seti:coldfusion" | "seti:config" | "seti:crystal" | "seti:crystal_embedded" | "seti:json" | "seti:css" | "seti:csv" | "seti:xls" | "seti:cu" | "seti:cake" | "seti:cake_php" | "seti:d" | "seti:word" | "seti:elixir" | "seti:elixir_script" | "seti:hex" | "seti:elm" | "seti:favicon" | "seti:f-sharp" | "seti:git" | "seti:go" | "seti:godot" | "seti:gradle" | "seti:grails" | "seti:graphql" | "seti:hacklang" | "seti:haml" | "seti:mustache" | "seti:haskell" | "seti:haxe" | "seti:jade" | "seti:java" | "seti:javascript" | "seti:jinja" | "seti:julia" | "seti:karma" | "seti:kotlin" | "seti:dart" | "seti:liquid" | "seti:livescript" | "seti:lua" | "seti:markdown" | "seti:argdown" | "seti:info" | "seti:clock" | "seti:maven" | "seti:nim" | "seti:github" | "seti:notebook" | "seti:nunjucks" | "seti:npm" | "seti:ocaml" | "seti:odata" | "seti:perl" | "seti:php" | "seti:pipeline" | "seti:pddl" | "seti:plan" | "seti:happenings" | "seti:powershell" | "seti:prisma" | "seti:pug" | "seti:puppet" | "seti:purescript" | "seti:python" | "seti:react" | "seti:rescript" | "seti:R" | "seti:ruby" | "seti:rust" | "seti:sass" | "seti:spring" | "seti:slim" | "seti:smarty" | "seti:sbt" | "seti:scala" | "seti:ethereum" | "seti:stylus" | "seti:svelte" | "seti:swift" | "seti:db" | "seti:terraform" | "seti:tex" | "seti:default" | "seti:twig" | "seti:typescript" | "seti:tsconfig" | "seti:vala" | "seti:vite" | "seti:vue" | "seti:wasm" | "seti:wat" | "seti:xml" | "seti:yml" | "seti:prolog" | "seti:zig" | "seti:zip" | "seti:wgt" | "seti:illustrator" | "seti:photoshop" | "seti:pdf" | "seti:font" | "seti:image" | "seti:svg" | "seti:sublime" | "seti:code-search" | "seti:shell" | "seti:video" | "seti:audio" | "seti:windows" | "seti:jenkins" | "seti:babel" | "seti:bower" | "seti:docker" | "seti:code-climate" | "seti:eslint" | "seti:firebase" | "seti:firefox" | "seti:gitlab" | "seti:grunt" | "seti:gulp" | "seti:ionic" | "seti:platformio" | "seti:rollup" | "seti:stylelint" | "seti:yarn" | "seti:webpack" | "seti:lock" | "seti:license" | "seti:makefile" | "seti:heroku" | "seti:todo" | "seti:ignored";
|
|
1507
1508
|
label: string;
|
|
1508
1509
|
href: string;
|
|
1509
1510
|
}[] | undefined;
|
|
@@ -1514,7 +1515,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1514
1515
|
attrs?: undefined;
|
|
1515
1516
|
badge?: string | {
|
|
1516
1517
|
text: string | Record<string, string>;
|
|
1517
|
-
variant: "
|
|
1518
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1518
1519
|
class?: string | undefined;
|
|
1519
1520
|
} | undefined;
|
|
1520
1521
|
} & {
|
|
@@ -1526,12 +1527,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1526
1527
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1527
1528
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1528
1529
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1529
|
-
default: "default";
|
|
1530
1530
|
success: "success";
|
|
1531
|
+
default: "default";
|
|
1531
1532
|
note: "note";
|
|
1532
|
-
tip: "tip";
|
|
1533
|
-
caution: "caution";
|
|
1534
1533
|
danger: "danger";
|
|
1534
|
+
caution: "caution";
|
|
1535
|
+
tip: "tip";
|
|
1535
1536
|
}>>;
|
|
1536
1537
|
class: z.ZodOptional<z.ZodString>;
|
|
1537
1538
|
}, z.core.$strip>]>>;
|
|
@@ -1550,12 +1551,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1550
1551
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1551
1552
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1552
1553
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1553
|
-
default: "default";
|
|
1554
1554
|
success: "success";
|
|
1555
|
+
default: "default";
|
|
1555
1556
|
note: "note";
|
|
1556
|
-
tip: "tip";
|
|
1557
|
-
caution: "caution";
|
|
1558
1557
|
danger: "danger";
|
|
1558
|
+
caution: "caution";
|
|
1559
|
+
tip: "tip";
|
|
1559
1560
|
}>>;
|
|
1560
1561
|
class: z.ZodOptional<z.ZodString>;
|
|
1561
1562
|
}, z.core.$strip>]>>;
|
|
@@ -1566,7 +1567,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1566
1567
|
label?: string | undefined;
|
|
1567
1568
|
badge?: string | {
|
|
1568
1569
|
text: string | Record<string, string>;
|
|
1569
|
-
variant: "
|
|
1570
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1570
1571
|
class?: string | undefined;
|
|
1571
1572
|
} | undefined;
|
|
1572
1573
|
}, string>>> | ({
|
|
@@ -1576,7 +1577,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1576
1577
|
attrs?: undefined;
|
|
1577
1578
|
badge?: string | {
|
|
1578
1579
|
text: string | Record<string, string>;
|
|
1579
|
-
variant: "
|
|
1580
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1580
1581
|
class?: string | undefined;
|
|
1581
1582
|
} | undefined;
|
|
1582
1583
|
} & /*elided*/ any)>;
|
|
@@ -1587,7 +1588,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1587
1588
|
label?: string | undefined;
|
|
1588
1589
|
badge?: string | {
|
|
1589
1590
|
text: string | Record<string, string>;
|
|
1590
|
-
variant: "
|
|
1591
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1591
1592
|
class?: string | undefined;
|
|
1592
1593
|
} | undefined;
|
|
1593
1594
|
} | {
|
|
@@ -1597,7 +1598,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1597
1598
|
translations: Record<string, string>;
|
|
1598
1599
|
badge?: string | {
|
|
1599
1600
|
text: string | Record<string, string>;
|
|
1600
|
-
variant: "
|
|
1601
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1601
1602
|
class?: string | undefined;
|
|
1602
1603
|
} | undefined;
|
|
1603
1604
|
} | {
|
|
@@ -1660,7 +1661,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1660
1661
|
baseUrl?: string | undefined;
|
|
1661
1662
|
};
|
|
1662
1663
|
readonly head: {
|
|
1663
|
-
tag: "
|
|
1664
|
+
tag: "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template";
|
|
1664
1665
|
attrs?: Record<string, string | boolean | undefined> | undefined;
|
|
1665
1666
|
content?: string | undefined;
|
|
1666
1667
|
}[];
|
|
@@ -1722,7 +1723,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1722
1723
|
replacesTitle: boolean;
|
|
1723
1724
|
} | undefined;
|
|
1724
1725
|
readonly social?: {
|
|
1725
|
-
icon: "
|
|
1726
|
+
icon: "link" | "error" | "up-caret" | "down-caret" | "right-caret" | "left-caret" | "up-arrow" | "down-arrow" | "right-arrow" | "left-arrow" | "bars" | "translate" | "pencil" | "pen" | "document" | "add-document" | "setting" | "link-alt" | "external" | "download" | "cloud-download" | "moon" | "sun" | "clock" | "laptop" | "desktop" | "mobile-android" | "window" | "database" | "server" | "code-branch" | "open-book" | "notes" | "information" | "magnifier" | "forward-slash" | "close" | "warning" | "approve-check-circle" | "approve-check" | "question-circle" | "question" | "rocket" | "star" | "puzzle" | "list-format" | "analytics" | "random" | "padlock" | "comment" | "comment-alt" | "heart" | "github" | "gitlab" | "bitbucket" | "forgejo" | "codePen" | "farcaster" | "discord" | "fluxer" | "gitter" | "twitter" | "x.com" | "mastodon" | "codeberg" | "youtube" | "threads" | "linkedin" | "twitch" | "azureDevOps" | "microsoftTeams" | "instagram" | "stackOverflow" | "telegram" | "whatsApp" | "rss" | "facebook" | "email" | "phone" | "reddit" | "patreon" | "signal" | "slack" | "matrix" | "hackerOne" | "openCollective" | "blueSky" | "discourse" | "zulip" | "pinterest" | "tiktok" | "goodreads" | "hypothesis" | "astro" | "solidjs" | "alpine" | "pnpm" | "biome" | "bun" | "mdx" | "apple" | "linux" | "homebrew" | "nix" | "starlight" | "pkl" | "node" | "cloudflare" | "vercel" | "netlify" | "deno" | "jsr" | "nostr" | "backstage" | "confluence" | "jira" | "storybook" | "vscode" | "jetbrains" | "zed" | "vim" | "figma" | "sketch" | "npm" | "npmx" | "sourcehut" | "substack" | "chrome" | "edge" | "firefox" | "safari" | "seti:folder" | "seti:bsl" | "seti:mdo" | "seti:salesforce" | "seti:asm" | "seti:bicep" | "seti:bazel" | "seti:c" | "seti:c-sharp" | "seti:html" | "seti:cpp" | "seti:clojure" | "seti:coldfusion" | "seti:config" | "seti:crystal" | "seti:crystal_embedded" | "seti:json" | "seti:css" | "seti:csv" | "seti:xls" | "seti:cu" | "seti:cake" | "seti:cake_php" | "seti:d" | "seti:word" | "seti:elixir" | "seti:elixir_script" | "seti:hex" | "seti:elm" | "seti:favicon" | "seti:f-sharp" | "seti:git" | "seti:go" | "seti:godot" | "seti:gradle" | "seti:grails" | "seti:graphql" | "seti:hacklang" | "seti:haml" | "seti:mustache" | "seti:haskell" | "seti:haxe" | "seti:jade" | "seti:java" | "seti:javascript" | "seti:jinja" | "seti:julia" | "seti:karma" | "seti:kotlin" | "seti:dart" | "seti:liquid" | "seti:livescript" | "seti:lua" | "seti:markdown" | "seti:argdown" | "seti:info" | "seti:clock" | "seti:maven" | "seti:nim" | "seti:github" | "seti:notebook" | "seti:nunjucks" | "seti:npm" | "seti:ocaml" | "seti:odata" | "seti:perl" | "seti:php" | "seti:pipeline" | "seti:pddl" | "seti:plan" | "seti:happenings" | "seti:powershell" | "seti:prisma" | "seti:pug" | "seti:puppet" | "seti:purescript" | "seti:python" | "seti:react" | "seti:rescript" | "seti:R" | "seti:ruby" | "seti:rust" | "seti:sass" | "seti:spring" | "seti:slim" | "seti:smarty" | "seti:sbt" | "seti:scala" | "seti:ethereum" | "seti:stylus" | "seti:svelte" | "seti:swift" | "seti:db" | "seti:terraform" | "seti:tex" | "seti:default" | "seti:twig" | "seti:typescript" | "seti:tsconfig" | "seti:vala" | "seti:vite" | "seti:vue" | "seti:wasm" | "seti:wat" | "seti:xml" | "seti:yml" | "seti:prolog" | "seti:zig" | "seti:zip" | "seti:wgt" | "seti:illustrator" | "seti:photoshop" | "seti:pdf" | "seti:font" | "seti:image" | "seti:svg" | "seti:sublime" | "seti:code-search" | "seti:shell" | "seti:video" | "seti:audio" | "seti:windows" | "seti:jenkins" | "seti:babel" | "seti:bower" | "seti:docker" | "seti:code-climate" | "seti:eslint" | "seti:firebase" | "seti:firefox" | "seti:gitlab" | "seti:grunt" | "seti:gulp" | "seti:ionic" | "seti:platformio" | "seti:rollup" | "seti:stylelint" | "seti:yarn" | "seti:webpack" | "seti:lock" | "seti:license" | "seti:makefile" | "seti:heroku" | "seti:todo" | "seti:ignored";
|
|
1726
1727
|
label: string;
|
|
1727
1728
|
href: string;
|
|
1728
1729
|
}[] | undefined;
|
|
@@ -1733,7 +1734,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1733
1734
|
attrs?: undefined;
|
|
1734
1735
|
badge?: string | {
|
|
1735
1736
|
text: string | Record<string, string>;
|
|
1736
|
-
variant: "
|
|
1737
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1737
1738
|
class?: string | undefined;
|
|
1738
1739
|
} | undefined;
|
|
1739
1740
|
} & {
|
|
@@ -1745,12 +1746,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1745
1746
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1746
1747
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1747
1748
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1748
|
-
default: "default";
|
|
1749
1749
|
success: "success";
|
|
1750
|
+
default: "default";
|
|
1750
1751
|
note: "note";
|
|
1751
|
-
tip: "tip";
|
|
1752
|
-
caution: "caution";
|
|
1753
1752
|
danger: "danger";
|
|
1753
|
+
caution: "caution";
|
|
1754
|
+
tip: "tip";
|
|
1754
1755
|
}>>;
|
|
1755
1756
|
class: z.ZodOptional<z.ZodString>;
|
|
1756
1757
|
}, z.core.$strip>]>>;
|
|
@@ -1769,12 +1770,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1769
1770
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1770
1771
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1771
1772
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1772
|
-
default: "default";
|
|
1773
1773
|
success: "success";
|
|
1774
|
+
default: "default";
|
|
1774
1775
|
note: "note";
|
|
1775
|
-
tip: "tip";
|
|
1776
|
-
caution: "caution";
|
|
1777
1776
|
danger: "danger";
|
|
1777
|
+
caution: "caution";
|
|
1778
|
+
tip: "tip";
|
|
1778
1779
|
}>>;
|
|
1779
1780
|
class: z.ZodOptional<z.ZodString>;
|
|
1780
1781
|
}, z.core.$strip>]>>;
|
|
@@ -1785,7 +1786,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1785
1786
|
label?: string | undefined;
|
|
1786
1787
|
badge?: string | {
|
|
1787
1788
|
text: string | Record<string, string>;
|
|
1788
|
-
variant: "
|
|
1789
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1789
1790
|
class?: string | undefined;
|
|
1790
1791
|
} | undefined;
|
|
1791
1792
|
}, string>>> | ({
|
|
@@ -1795,7 +1796,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1795
1796
|
attrs?: undefined;
|
|
1796
1797
|
badge?: string | {
|
|
1797
1798
|
text: string | Record<string, string>;
|
|
1798
|
-
variant: "
|
|
1799
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1799
1800
|
class?: string | undefined;
|
|
1800
1801
|
} | undefined;
|
|
1801
1802
|
} & /*elided*/ any)>;
|
|
@@ -1806,7 +1807,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1806
1807
|
label?: string | undefined;
|
|
1807
1808
|
badge?: string | {
|
|
1808
1809
|
text: string | Record<string, string>;
|
|
1809
|
-
variant: "
|
|
1810
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1810
1811
|
class?: string | undefined;
|
|
1811
1812
|
} | undefined;
|
|
1812
1813
|
} | {
|
|
@@ -1816,7 +1817,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1816
1817
|
translations: Record<string, string>;
|
|
1817
1818
|
badge?: string | {
|
|
1818
1819
|
text: string | Record<string, string>;
|
|
1819
|
-
variant: "
|
|
1820
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1820
1821
|
class?: string | undefined;
|
|
1821
1822
|
} | undefined;
|
|
1822
1823
|
} | {
|
|
@@ -1868,7 +1869,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1868
1869
|
baseUrl?: string | undefined;
|
|
1869
1870
|
};
|
|
1870
1871
|
head: {
|
|
1871
|
-
tag: "
|
|
1872
|
+
tag: "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template";
|
|
1872
1873
|
attrs?: Record<string, string | boolean | undefined> | undefined;
|
|
1873
1874
|
content?: string | undefined;
|
|
1874
1875
|
}[];
|
|
@@ -1930,7 +1931,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1930
1931
|
replacesTitle: boolean;
|
|
1931
1932
|
} | undefined;
|
|
1932
1933
|
social?: {
|
|
1933
|
-
icon: "
|
|
1934
|
+
icon: "link" | "error" | "up-caret" | "down-caret" | "right-caret" | "left-caret" | "up-arrow" | "down-arrow" | "right-arrow" | "left-arrow" | "bars" | "translate" | "pencil" | "pen" | "document" | "add-document" | "setting" | "link-alt" | "external" | "download" | "cloud-download" | "moon" | "sun" | "clock" | "laptop" | "desktop" | "mobile-android" | "window" | "database" | "server" | "code-branch" | "open-book" | "notes" | "information" | "magnifier" | "forward-slash" | "close" | "warning" | "approve-check-circle" | "approve-check" | "question-circle" | "question" | "rocket" | "star" | "puzzle" | "list-format" | "analytics" | "random" | "padlock" | "comment" | "comment-alt" | "heart" | "github" | "gitlab" | "bitbucket" | "forgejo" | "codePen" | "farcaster" | "discord" | "fluxer" | "gitter" | "twitter" | "x.com" | "mastodon" | "codeberg" | "youtube" | "threads" | "linkedin" | "twitch" | "azureDevOps" | "microsoftTeams" | "instagram" | "stackOverflow" | "telegram" | "whatsApp" | "rss" | "facebook" | "email" | "phone" | "reddit" | "patreon" | "signal" | "slack" | "matrix" | "hackerOne" | "openCollective" | "blueSky" | "discourse" | "zulip" | "pinterest" | "tiktok" | "goodreads" | "hypothesis" | "astro" | "solidjs" | "alpine" | "pnpm" | "biome" | "bun" | "mdx" | "apple" | "linux" | "homebrew" | "nix" | "starlight" | "pkl" | "node" | "cloudflare" | "vercel" | "netlify" | "deno" | "jsr" | "nostr" | "backstage" | "confluence" | "jira" | "storybook" | "vscode" | "jetbrains" | "zed" | "vim" | "figma" | "sketch" | "npm" | "npmx" | "sourcehut" | "substack" | "chrome" | "edge" | "firefox" | "safari" | "seti:folder" | "seti:bsl" | "seti:mdo" | "seti:salesforce" | "seti:asm" | "seti:bicep" | "seti:bazel" | "seti:c" | "seti:c-sharp" | "seti:html" | "seti:cpp" | "seti:clojure" | "seti:coldfusion" | "seti:config" | "seti:crystal" | "seti:crystal_embedded" | "seti:json" | "seti:css" | "seti:csv" | "seti:xls" | "seti:cu" | "seti:cake" | "seti:cake_php" | "seti:d" | "seti:word" | "seti:elixir" | "seti:elixir_script" | "seti:hex" | "seti:elm" | "seti:favicon" | "seti:f-sharp" | "seti:git" | "seti:go" | "seti:godot" | "seti:gradle" | "seti:grails" | "seti:graphql" | "seti:hacklang" | "seti:haml" | "seti:mustache" | "seti:haskell" | "seti:haxe" | "seti:jade" | "seti:java" | "seti:javascript" | "seti:jinja" | "seti:julia" | "seti:karma" | "seti:kotlin" | "seti:dart" | "seti:liquid" | "seti:livescript" | "seti:lua" | "seti:markdown" | "seti:argdown" | "seti:info" | "seti:clock" | "seti:maven" | "seti:nim" | "seti:github" | "seti:notebook" | "seti:nunjucks" | "seti:npm" | "seti:ocaml" | "seti:odata" | "seti:perl" | "seti:php" | "seti:pipeline" | "seti:pddl" | "seti:plan" | "seti:happenings" | "seti:powershell" | "seti:prisma" | "seti:pug" | "seti:puppet" | "seti:purescript" | "seti:python" | "seti:react" | "seti:rescript" | "seti:R" | "seti:ruby" | "seti:rust" | "seti:sass" | "seti:spring" | "seti:slim" | "seti:smarty" | "seti:sbt" | "seti:scala" | "seti:ethereum" | "seti:stylus" | "seti:svelte" | "seti:swift" | "seti:db" | "seti:terraform" | "seti:tex" | "seti:default" | "seti:twig" | "seti:typescript" | "seti:tsconfig" | "seti:vala" | "seti:vite" | "seti:vue" | "seti:wasm" | "seti:wat" | "seti:xml" | "seti:yml" | "seti:prolog" | "seti:zig" | "seti:zip" | "seti:wgt" | "seti:illustrator" | "seti:photoshop" | "seti:pdf" | "seti:font" | "seti:image" | "seti:svg" | "seti:sublime" | "seti:code-search" | "seti:shell" | "seti:video" | "seti:audio" | "seti:windows" | "seti:jenkins" | "seti:babel" | "seti:bower" | "seti:docker" | "seti:code-climate" | "seti:eslint" | "seti:firebase" | "seti:firefox" | "seti:gitlab" | "seti:grunt" | "seti:gulp" | "seti:ionic" | "seti:platformio" | "seti:rollup" | "seti:stylelint" | "seti:yarn" | "seti:webpack" | "seti:lock" | "seti:license" | "seti:makefile" | "seti:heroku" | "seti:todo" | "seti:ignored";
|
|
1934
1935
|
label: string;
|
|
1935
1936
|
href: string;
|
|
1936
1937
|
}[] | undefined;
|
|
@@ -1954,7 +1955,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1954
1955
|
attrs?: undefined;
|
|
1955
1956
|
badge?: string | {
|
|
1956
1957
|
text: string | Record<string, string>;
|
|
1957
|
-
variant: "
|
|
1958
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
1958
1959
|
class?: string | undefined;
|
|
1959
1960
|
} | undefined;
|
|
1960
1961
|
} & {
|
|
@@ -1966,12 +1967,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1966
1967
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1967
1968
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1968
1969
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1969
|
-
default: "default";
|
|
1970
1970
|
success: "success";
|
|
1971
|
+
default: "default";
|
|
1971
1972
|
note: "note";
|
|
1972
|
-
tip: "tip";
|
|
1973
|
-
caution: "caution";
|
|
1974
1973
|
danger: "danger";
|
|
1974
|
+
caution: "caution";
|
|
1975
|
+
tip: "tip";
|
|
1975
1976
|
}>>;
|
|
1976
1977
|
class: z.ZodOptional<z.ZodString>;
|
|
1977
1978
|
}, z.core.$strip>]>>;
|
|
@@ -1990,12 +1991,12 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
1990
1991
|
badge: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1991
1992
|
text: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
1992
1993
|
variant: z.ZodDefault<z.ZodEnum<{
|
|
1993
|
-
default: "default";
|
|
1994
1994
|
success: "success";
|
|
1995
|
+
default: "default";
|
|
1995
1996
|
note: "note";
|
|
1996
|
-
tip: "tip";
|
|
1997
|
-
caution: "caution";
|
|
1998
1997
|
danger: "danger";
|
|
1998
|
+
caution: "caution";
|
|
1999
|
+
tip: "tip";
|
|
1999
2000
|
}>>;
|
|
2000
2001
|
class: z.ZodOptional<z.ZodString>;
|
|
2001
2002
|
}, z.core.$strip>]>>;
|
|
@@ -2006,7 +2007,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
2006
2007
|
label?: string | undefined;
|
|
2007
2008
|
badge?: string | {
|
|
2008
2009
|
text: string | Record<string, string>;
|
|
2009
|
-
variant: "
|
|
2010
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
2010
2011
|
class?: string | undefined;
|
|
2011
2012
|
} | undefined;
|
|
2012
2013
|
}, string>>> | ({
|
|
@@ -2016,7 +2017,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
2016
2017
|
attrs?: undefined;
|
|
2017
2018
|
badge?: string | {
|
|
2018
2019
|
text: string | Record<string, string>;
|
|
2019
|
-
variant: "
|
|
2020
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
2020
2021
|
class?: string | undefined;
|
|
2021
2022
|
} | undefined;
|
|
2022
2023
|
} & /*elided*/ any)>;
|
|
@@ -2027,7 +2028,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
2027
2028
|
label?: string | undefined;
|
|
2028
2029
|
badge?: string | {
|
|
2029
2030
|
text: string | Record<string, string>;
|
|
2030
|
-
variant: "
|
|
2031
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
2031
2032
|
class?: string | undefined;
|
|
2032
2033
|
} | undefined;
|
|
2033
2034
|
} | {
|
|
@@ -2037,7 +2038,7 @@ declare const StarlightConfigSchema: z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
|
2037
2038
|
translations: Record<string, string>;
|
|
2038
2039
|
badge?: string | {
|
|
2039
2040
|
text: string | Record<string, string>;
|
|
2040
|
-
variant: "
|
|
2041
|
+
variant: "success" | "default" | "note" | "danger" | "caution" | "tip";
|
|
2041
2042
|
class?: string | undefined;
|
|
2042
2043
|
} | undefined;
|
|
2043
2044
|
} | {
|