@lightspeed/crane-api 2.3.3-rc.2 → 2.4.0
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/CHANGELOG.md +7 -1
- package/dist/index.d.mts +54 -54
- package/dist/index.d.ts +54 -54
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 2.
|
|
3
|
+
## 2.4.0 - 2026-06-03
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- add composables `useCurrentLanguage`, `useBackgroundStyle`, `useButtonStyles` and utilities `createTextStyle`, `getColorHex`, `isColorDark`, `getContrastTextColor`, `getBackgroundStyle`
|
|
4
8
|
|
|
5
9
|
### Fixed
|
|
6
10
|
|
|
11
|
+
- Fix Product/category selector composables incorrect handling of the migration case, where a section was saved before the schema declared the selector. `useProductSelectorElementContent` now defaults `selectionType` to `ALL` (not `MANUAL`) when no content is saved for the slot, and both selector composables compute `hasContent` from the resolved item list so empty-state checks reflect what is actually rendered. Legacy single-product (`{product: {id}}`) and pre-`selectionType` (`{products: {productIds: [...]}}`) shapes continue to behave as `MANUAL`.
|
|
7
12
|
- Support nested DECK defaults in showcase configuration; validate nested deck card setting keys recursively.
|
|
13
|
+
- Add visible to transformed text, image, and logo design default types.
|
|
8
14
|
|
|
9
15
|
## 2.3.2 - 2026-05-21
|
|
10
16
|
|
package/dist/index.d.mts
CHANGED
|
@@ -478,9 +478,9 @@ declare const DescriptorSchema: z.ZodObject<{
|
|
|
478
478
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
479
479
|
}, z.core.$strict>>;
|
|
480
480
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
481
|
-
small: "small";
|
|
482
481
|
none: "none";
|
|
483
482
|
all: "all";
|
|
483
|
+
small: "small";
|
|
484
484
|
}>>;
|
|
485
485
|
}, z.core.$strict>, z.ZodObject<{
|
|
486
486
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -555,9 +555,9 @@ declare const DescriptorSchema: z.ZodObject<{
|
|
|
555
555
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
556
556
|
}, z.core.$strict>>;
|
|
557
557
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
558
|
-
small: "small";
|
|
559
558
|
none: "none";
|
|
560
559
|
all: "all";
|
|
560
|
+
small: "small";
|
|
561
561
|
}>>;
|
|
562
562
|
}, z.core.$strict>, z.ZodObject<{
|
|
563
563
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -1071,9 +1071,9 @@ declare const CollectionDescriptorSchema: z.ZodObject<{
|
|
|
1071
1071
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
1072
1072
|
}, z.core.$strict>>;
|
|
1073
1073
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
1074
|
-
small: "small";
|
|
1075
1074
|
none: "none";
|
|
1076
1075
|
all: "all";
|
|
1076
|
+
small: "small";
|
|
1077
1077
|
}>>;
|
|
1078
1078
|
}, z.core.$strict>, z.ZodObject<{
|
|
1079
1079
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -1148,9 +1148,9 @@ declare const CollectionDescriptorSchema: z.ZodObject<{
|
|
|
1148
1148
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
1149
1149
|
}, z.core.$strict>>;
|
|
1150
1150
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
1151
|
-
small: "small";
|
|
1152
1151
|
none: "none";
|
|
1153
1152
|
all: "all";
|
|
1153
|
+
small: "small";
|
|
1154
1154
|
}>>;
|
|
1155
1155
|
}, z.core.$strict>, z.ZodObject<{
|
|
1156
1156
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -2010,9 +2010,9 @@ declare const LogoDesignEditorDefaultsSchema: z.ZodObject<{
|
|
|
2010
2010
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
2011
2011
|
}, z.core.$strict>>;
|
|
2012
2012
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
2013
|
-
small: "small";
|
|
2014
2013
|
none: "none";
|
|
2015
2014
|
all: "all";
|
|
2015
|
+
small: "small";
|
|
2016
2016
|
}>>;
|
|
2017
2017
|
}, z.core.$strict>;
|
|
2018
2018
|
declare const LogoDesignEditorSchema: z.ZodObject<{
|
|
@@ -2035,9 +2035,9 @@ declare const LogoDesignEditorSchema: z.ZodObject<{
|
|
|
2035
2035
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
2036
2036
|
}, z.core.$strict>>;
|
|
2037
2037
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
2038
|
-
small: "small";
|
|
2039
2038
|
none: "none";
|
|
2040
2039
|
all: "all";
|
|
2040
|
+
small: "small";
|
|
2041
2041
|
}>>;
|
|
2042
2042
|
}, z.core.$strict>>;
|
|
2043
2043
|
}, z.core.$strict>;
|
|
@@ -4826,9 +4826,9 @@ declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4826
4826
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
4827
4827
|
}, z.core.$strict>>;
|
|
4828
4828
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
4829
|
-
small: "small";
|
|
4830
4829
|
none: "none";
|
|
4831
4830
|
all: "all";
|
|
4831
|
+
small: "small";
|
|
4832
4832
|
}>>;
|
|
4833
4833
|
}, z.core.$strict>, z.ZodObject<{
|
|
4834
4834
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -4903,9 +4903,9 @@ declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4903
4903
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
4904
4904
|
}, z.core.$strict>>;
|
|
4905
4905
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
4906
|
-
small: "small";
|
|
4907
4906
|
none: "none";
|
|
4908
4907
|
all: "all";
|
|
4908
|
+
small: "small";
|
|
4909
4909
|
}>>;
|
|
4910
4910
|
}, z.core.$strict>, z.ZodObject<{
|
|
4911
4911
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -5023,9 +5023,9 @@ declare const AccordionShowcaseItemSchema: z.ZodObject<{
|
|
|
5023
5023
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5024
5024
|
}, z.core.$strict>>;
|
|
5025
5025
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5026
|
-
small: "small";
|
|
5027
5026
|
none: "none";
|
|
5028
5027
|
all: "all";
|
|
5028
|
+
small: "small";
|
|
5029
5029
|
}>>;
|
|
5030
5030
|
}, z.core.$strict>, z.ZodObject<{
|
|
5031
5031
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -5109,9 +5109,9 @@ declare const AccordionShowcaseDesignEditorDefaultsSchema: z.ZodObject<{
|
|
|
5109
5109
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5110
5110
|
}, z.core.$strict>>;
|
|
5111
5111
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5112
|
-
small: "small";
|
|
5113
5112
|
none: "none";
|
|
5114
5113
|
all: "all";
|
|
5114
|
+
small: "small";
|
|
5115
5115
|
}>>;
|
|
5116
5116
|
}, z.core.$strict>, z.ZodObject<{
|
|
5117
5117
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -5256,9 +5256,9 @@ declare const AccordionDesignItemSchema: z.ZodObject<{
|
|
|
5256
5256
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5257
5257
|
}, z.core.$strict>>;
|
|
5258
5258
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5259
|
-
small: "small";
|
|
5260
5259
|
none: "none";
|
|
5261
5260
|
all: "all";
|
|
5261
|
+
small: "small";
|
|
5262
5262
|
}>>;
|
|
5263
5263
|
}, z.core.$strict>>;
|
|
5264
5264
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -5419,9 +5419,9 @@ declare const AccordionDesignEditorSchema: z.ZodObject<{
|
|
|
5419
5419
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5420
5420
|
}, z.core.$strict>>;
|
|
5421
5421
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5422
|
-
small: "small";
|
|
5423
5422
|
none: "none";
|
|
5424
5423
|
all: "all";
|
|
5424
|
+
small: "small";
|
|
5425
5425
|
}>>;
|
|
5426
5426
|
}, z.core.$strict>>;
|
|
5427
5427
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -5682,9 +5682,9 @@ declare const DesignEditorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5682
5682
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5683
5683
|
}, z.core.$strict>>;
|
|
5684
5684
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5685
|
-
small: "small";
|
|
5686
5685
|
none: "none";
|
|
5687
5686
|
all: "all";
|
|
5687
|
+
small: "small";
|
|
5688
5688
|
}>>;
|
|
5689
5689
|
}, z.core.$strict>>;
|
|
5690
5690
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -5827,9 +5827,9 @@ declare const DesignEditorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5827
5827
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5828
5828
|
}, z.core.$strict>>;
|
|
5829
5829
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5830
|
-
small: "small";
|
|
5831
5830
|
none: "none";
|
|
5832
5831
|
all: "all";
|
|
5832
|
+
small: "small";
|
|
5833
5833
|
}>>;
|
|
5834
5834
|
}, z.core.$strict>>;
|
|
5835
5835
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -6004,9 +6004,9 @@ declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedU
|
|
|
6004
6004
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
6005
6005
|
}, z.core.$strict>>;
|
|
6006
6006
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
6007
|
-
small: "small";
|
|
6008
6007
|
none: "none";
|
|
6009
6008
|
all: "all";
|
|
6009
|
+
small: "small";
|
|
6010
6010
|
}>>;
|
|
6011
6011
|
}, z.core.$strict>>;
|
|
6012
6012
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -6149,9 +6149,9 @@ declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedU
|
|
|
6149
6149
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
6150
6150
|
}, z.core.$strict>>;
|
|
6151
6151
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
6152
|
-
small: "small";
|
|
6153
6152
|
none: "none";
|
|
6154
6153
|
all: "all";
|
|
6154
|
+
small: "small";
|
|
6155
6155
|
}>>;
|
|
6156
6156
|
}, z.core.$strict>>;
|
|
6157
6157
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -6804,9 +6804,9 @@ declare const LayoutDesignOverrideSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6804
6804
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
6805
6805
|
}, z.core.$strict>>;
|
|
6806
6806
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
6807
|
-
small: "small";
|
|
6808
6807
|
none: "none";
|
|
6809
6808
|
all: "all";
|
|
6809
|
+
small: "small";
|
|
6810
6810
|
}>>;
|
|
6811
6811
|
}, z.core.$strict>>;
|
|
6812
6812
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -7024,9 +7024,9 @@ declare const LayoutSettingsSchema: z.ZodObject<{
|
|
|
7024
7024
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
7025
7025
|
}, z.core.$strict>>;
|
|
7026
7026
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
7027
|
-
small: "small";
|
|
7028
7027
|
none: "none";
|
|
7029
7028
|
all: "all";
|
|
7029
|
+
small: "small";
|
|
7030
7030
|
}>>;
|
|
7031
7031
|
}, z.core.$strict>>;
|
|
7032
7032
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -7729,9 +7729,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
7729
7729
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
7730
7730
|
}, z.core.$strict>>;
|
|
7731
7731
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
7732
|
-
small: "small";
|
|
7733
7732
|
none: "none";
|
|
7734
7733
|
all: "all";
|
|
7734
|
+
small: "small";
|
|
7735
7735
|
}>>;
|
|
7736
7736
|
}, z.core.$strict>>;
|
|
7737
7737
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -7874,9 +7874,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
7874
7874
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
7875
7875
|
}, z.core.$strict>>;
|
|
7876
7876
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
7877
|
-
small: "small";
|
|
7878
7877
|
none: "none";
|
|
7879
7878
|
all: "all";
|
|
7879
|
+
small: "small";
|
|
7880
7880
|
}>>;
|
|
7881
7881
|
}, z.core.$strict>>;
|
|
7882
7882
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -8114,9 +8114,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
8114
8114
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
8115
8115
|
}, z.core.$strict>>;
|
|
8116
8116
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
8117
|
-
small: "small";
|
|
8118
8117
|
none: "none";
|
|
8119
8118
|
all: "all";
|
|
8119
|
+
small: "small";
|
|
8120
8120
|
}>>;
|
|
8121
8121
|
}, z.core.$strict>>;
|
|
8122
8122
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -8594,9 +8594,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
8594
8594
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
8595
8595
|
}, z.core.$strict>>;
|
|
8596
8596
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
8597
|
-
small: "small";
|
|
8598
8597
|
none: "none";
|
|
8599
8598
|
all: "all";
|
|
8599
|
+
small: "small";
|
|
8600
8600
|
}>>;
|
|
8601
8601
|
}, z.core.$strict>, z.ZodObject<{
|
|
8602
8602
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -8671,9 +8671,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
8671
8671
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
8672
8672
|
}, z.core.$strict>>;
|
|
8673
8673
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
8674
|
-
small: "small";
|
|
8675
8674
|
none: "none";
|
|
8676
8675
|
all: "all";
|
|
8676
|
+
small: "small";
|
|
8677
8677
|
}>>;
|
|
8678
8678
|
}, z.core.$strict>, z.ZodObject<{
|
|
8679
8679
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -9155,9 +9155,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
9155
9155
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
9156
9156
|
}, z.core.$strict>>;
|
|
9157
9157
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
9158
|
-
small: "small";
|
|
9159
9158
|
none: "none";
|
|
9160
9159
|
all: "all";
|
|
9160
|
+
small: "small";
|
|
9161
9161
|
}>>;
|
|
9162
9162
|
}, z.core.$strict>, z.ZodObject<{
|
|
9163
9163
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -9232,9 +9232,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
9232
9232
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
9233
9233
|
}, z.core.$strict>>;
|
|
9234
9234
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
9235
|
-
small: "small";
|
|
9236
9235
|
none: "none";
|
|
9237
9236
|
all: "all";
|
|
9237
|
+
small: "small";
|
|
9238
9238
|
}>>;
|
|
9239
9239
|
}, z.core.$strict>, z.ZodObject<{
|
|
9240
9240
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -9658,9 +9658,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
9658
9658
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
9659
9659
|
}, z.core.$strict>>;
|
|
9660
9660
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
9661
|
-
small: "small";
|
|
9662
9661
|
none: "none";
|
|
9663
9662
|
all: "all";
|
|
9663
|
+
small: "small";
|
|
9664
9664
|
}>>;
|
|
9665
9665
|
}, z.core.$strict>, z.ZodObject<{
|
|
9666
9666
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -9735,9 +9735,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
9735
9735
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
9736
9736
|
}, z.core.$strict>>;
|
|
9737
9737
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
9738
|
-
small: "small";
|
|
9739
9738
|
none: "none";
|
|
9740
9739
|
all: "all";
|
|
9740
|
+
small: "small";
|
|
9741
9741
|
}>>;
|
|
9742
9742
|
}, z.core.$strict>, z.ZodObject<{
|
|
9743
9743
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -10175,9 +10175,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
10175
10175
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
10176
10176
|
}, z.core.$strict>>;
|
|
10177
10177
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
10178
|
-
small: "small";
|
|
10179
10178
|
none: "none";
|
|
10180
10179
|
all: "all";
|
|
10180
|
+
small: "small";
|
|
10181
10181
|
}>>;
|
|
10182
10182
|
}, z.core.$strict>, z.ZodObject<{
|
|
10183
10183
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -10252,9 +10252,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
10252
10252
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
10253
10253
|
}, z.core.$strict>>;
|
|
10254
10254
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
10255
|
-
small: "small";
|
|
10256
10255
|
none: "none";
|
|
10257
10256
|
all: "all";
|
|
10257
|
+
small: "small";
|
|
10258
10258
|
}>>;
|
|
10259
10259
|
}, z.core.$strict>, z.ZodObject<{
|
|
10260
10260
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -10948,9 +10948,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
10948
10948
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
10949
10949
|
}, z.core.$strict>>;
|
|
10950
10950
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
10951
|
-
small: "small";
|
|
10952
10951
|
none: "none";
|
|
10953
10952
|
all: "all";
|
|
10953
|
+
small: "small";
|
|
10954
10954
|
}>>;
|
|
10955
10955
|
}, z.core.$strict>>;
|
|
10956
10956
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -11093,9 +11093,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
11093
11093
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
11094
11094
|
}, z.core.$strict>>;
|
|
11095
11095
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
11096
|
-
small: "small";
|
|
11097
11096
|
none: "none";
|
|
11098
11097
|
all: "all";
|
|
11098
|
+
small: "small";
|
|
11099
11099
|
}>>;
|
|
11100
11100
|
}, z.core.$strict>>;
|
|
11101
11101
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -11334,9 +11334,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
11334
11334
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
11335
11335
|
}, z.core.$strict>>;
|
|
11336
11336
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
11337
|
-
small: "small";
|
|
11338
11337
|
none: "none";
|
|
11339
11338
|
all: "all";
|
|
11339
|
+
small: "small";
|
|
11340
11340
|
}>>;
|
|
11341
11341
|
}, z.core.$strict>>;
|
|
11342
11342
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -11821,9 +11821,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
11821
11821
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
11822
11822
|
}, z.core.$strict>>;
|
|
11823
11823
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
11824
|
-
small: "small";
|
|
11825
11824
|
none: "none";
|
|
11826
11825
|
all: "all";
|
|
11826
|
+
small: "small";
|
|
11827
11827
|
}>>;
|
|
11828
11828
|
}, z.core.$strict>, z.ZodObject<{
|
|
11829
11829
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -11898,9 +11898,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
11898
11898
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
11899
11899
|
}, z.core.$strict>>;
|
|
11900
11900
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
11901
|
-
small: "small";
|
|
11902
11901
|
none: "none";
|
|
11903
11902
|
all: "all";
|
|
11903
|
+
small: "small";
|
|
11904
11904
|
}>>;
|
|
11905
11905
|
}, z.core.$strict>, z.ZodObject<{
|
|
11906
11906
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -12397,9 +12397,9 @@ declare const CustomSectionSchema: z.ZodObject<{
|
|
|
12397
12397
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
12398
12398
|
}, z.core.$strict>>;
|
|
12399
12399
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
12400
|
-
small: "small";
|
|
12401
12400
|
none: "none";
|
|
12402
12401
|
all: "all";
|
|
12402
|
+
small: "small";
|
|
12403
12403
|
}>>;
|
|
12404
12404
|
}, z.core.$strict>, z.ZodObject<{
|
|
12405
12405
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -12474,9 +12474,9 @@ declare const CustomSectionSchema: z.ZodObject<{
|
|
|
12474
12474
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
12475
12475
|
}, z.core.$strict>>;
|
|
12476
12476
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
12477
|
-
small: "small";
|
|
12478
12477
|
none: "none";
|
|
12479
12478
|
all: "all";
|
|
12479
|
+
small: "small";
|
|
12480
12480
|
}>>;
|
|
12481
12481
|
}, z.core.$strict>, z.ZodObject<{
|
|
12482
12482
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -12938,9 +12938,9 @@ declare const SectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12938
12938
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
12939
12939
|
}, z.core.$strict>>;
|
|
12940
12940
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
12941
|
-
small: "small";
|
|
12942
12941
|
none: "none";
|
|
12943
12942
|
all: "all";
|
|
12943
|
+
small: "small";
|
|
12944
12944
|
}>>;
|
|
12945
12945
|
}, z.core.$strict>, z.ZodObject<{
|
|
12946
12946
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -13015,9 +13015,9 @@ declare const SectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
13015
13015
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
13016
13016
|
}, z.core.$strict>>;
|
|
13017
13017
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
13018
|
-
small: "small";
|
|
13019
13018
|
none: "none";
|
|
13020
13019
|
all: "all";
|
|
13020
|
+
small: "small";
|
|
13021
13021
|
}>>;
|
|
13022
13022
|
}, z.core.$strict>, z.ZodObject<{
|
|
13023
13023
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -13482,9 +13482,9 @@ declare const TemplatePageSchema: z.ZodObject<{
|
|
|
13482
13482
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
13483
13483
|
}, z.core.$strict>>;
|
|
13484
13484
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
13485
|
-
small: "small";
|
|
13486
13485
|
none: "none";
|
|
13487
13486
|
all: "all";
|
|
13487
|
+
small: "small";
|
|
13488
13488
|
}>>;
|
|
13489
13489
|
}, z.core.$strict>, z.ZodObject<{
|
|
13490
13490
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -13559,9 +13559,9 @@ declare const TemplatePageSchema: z.ZodObject<{
|
|
|
13559
13559
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
13560
13560
|
}, z.core.$strict>>;
|
|
13561
13561
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
13562
|
-
small: "small";
|
|
13563
13562
|
none: "none";
|
|
13564
13563
|
all: "all";
|
|
13564
|
+
small: "small";
|
|
13565
13565
|
}>>;
|
|
13566
13566
|
}, z.core.$strict>, z.ZodObject<{
|
|
13567
13567
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -14027,9 +14027,9 @@ declare const TemplatePageNamedSchema: z.ZodObject<{
|
|
|
14027
14027
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
14028
14028
|
}, z.core.$strict>>;
|
|
14029
14029
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
14030
|
-
small: "small";
|
|
14031
14030
|
none: "none";
|
|
14032
14031
|
all: "all";
|
|
14032
|
+
small: "small";
|
|
14033
14033
|
}>>;
|
|
14034
14034
|
}, z.core.$strict>, z.ZodObject<{
|
|
14035
14035
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -14104,9 +14104,9 @@ declare const TemplatePageNamedSchema: z.ZodObject<{
|
|
|
14104
14104
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
14105
14105
|
}, z.core.$strict>>;
|
|
14106
14106
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
14107
|
-
small: "small";
|
|
14108
14107
|
none: "none";
|
|
14109
14108
|
all: "all";
|
|
14109
|
+
small: "small";
|
|
14110
14110
|
}>>;
|
|
14111
14111
|
}, z.core.$strict>, z.ZodObject<{
|
|
14112
14112
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -14632,9 +14632,9 @@ declare const TemplateConfigurationSectionSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
14632
14632
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
14633
14633
|
}, z.core.$strict>>;
|
|
14634
14634
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
14635
|
-
small: "small";
|
|
14636
14635
|
none: "none";
|
|
14637
14636
|
all: "all";
|
|
14637
|
+
small: "small";
|
|
14638
14638
|
}>>;
|
|
14639
14639
|
}, z.core.$strict>, z.ZodObject<{
|
|
14640
14640
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -14709,9 +14709,9 @@ declare const TemplateConfigurationSectionSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
14709
14709
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
14710
14710
|
}, z.core.$strict>>;
|
|
14711
14711
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
14712
|
-
small: "small";
|
|
14713
14712
|
none: "none";
|
|
14714
14713
|
all: "all";
|
|
14714
|
+
small: "small";
|
|
14715
14715
|
}>>;
|
|
14716
14716
|
}, z.core.$strict>, z.ZodObject<{
|
|
14717
14717
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -15226,9 +15226,9 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
|
|
|
15226
15226
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
15227
15227
|
}, z.core.$strict>>;
|
|
15228
15228
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
15229
|
-
small: "small";
|
|
15230
15229
|
none: "none";
|
|
15231
15230
|
all: "all";
|
|
15231
|
+
small: "small";
|
|
15232
15232
|
}>>;
|
|
15233
15233
|
}, z.core.$strict>, z.ZodObject<{
|
|
15234
15234
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -15303,9 +15303,9 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
|
|
|
15303
15303
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
15304
15304
|
}, z.core.$strict>>;
|
|
15305
15305
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
15306
|
-
small: "small";
|
|
15307
15306
|
none: "none";
|
|
15308
15307
|
all: "all";
|
|
15308
|
+
small: "small";
|
|
15309
15309
|
}>>;
|
|
15310
15310
|
}, z.core.$strict>, z.ZodObject<{
|
|
15311
15311
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -15763,9 +15763,9 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
|
|
|
15763
15763
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
15764
15764
|
}, z.core.$strict>>;
|
|
15765
15765
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
15766
|
-
small: "small";
|
|
15767
15766
|
none: "none";
|
|
15768
15767
|
all: "all";
|
|
15768
|
+
small: "small";
|
|
15769
15769
|
}>>;
|
|
15770
15770
|
}, z.core.$strict>, z.ZodObject<{
|
|
15771
15771
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -15840,9 +15840,9 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
|
|
|
15840
15840
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
15841
15841
|
}, z.core.$strict>>;
|
|
15842
15842
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
15843
|
-
small: "small";
|
|
15844
15843
|
none: "none";
|
|
15845
15844
|
all: "all";
|
|
15845
|
+
small: "small";
|
|
15846
15846
|
}>>;
|
|
15847
15847
|
}, z.core.$strict>, z.ZodObject<{
|
|
15848
15848
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -16339,9 +16339,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
16339
16339
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
16340
16340
|
}, z.core.$strict>>;
|
|
16341
16341
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
16342
|
-
small: "small";
|
|
16343
16342
|
none: "none";
|
|
16344
16343
|
all: "all";
|
|
16344
|
+
small: "small";
|
|
16345
16345
|
}>>;
|
|
16346
16346
|
}, z.core.$strict>, z.ZodObject<{
|
|
16347
16347
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -16416,9 +16416,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
16416
16416
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
16417
16417
|
}, z.core.$strict>>;
|
|
16418
16418
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
16419
|
-
small: "small";
|
|
16420
16419
|
none: "none";
|
|
16421
16420
|
all: "all";
|
|
16421
|
+
small: "small";
|
|
16422
16422
|
}>>;
|
|
16423
16423
|
}, z.core.$strict>, z.ZodObject<{
|
|
16424
16424
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -16851,9 +16851,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
16851
16851
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
16852
16852
|
}, z.core.$strict>>;
|
|
16853
16853
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
16854
|
-
small: "small";
|
|
16855
16854
|
none: "none";
|
|
16856
16855
|
all: "all";
|
|
16856
|
+
small: "small";
|
|
16857
16857
|
}>>;
|
|
16858
16858
|
}, z.core.$strict>, z.ZodObject<{
|
|
16859
16859
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -16928,9 +16928,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
16928
16928
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
16929
16929
|
}, z.core.$strict>>;
|
|
16930
16930
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
16931
|
-
small: "small";
|
|
16932
16931
|
none: "none";
|
|
16933
16932
|
all: "all";
|
|
16933
|
+
small: "small";
|
|
16934
16934
|
}>>;
|
|
16935
16935
|
}, z.core.$strict>, z.ZodObject<{
|
|
16936
16936
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -17393,9 +17393,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
17393
17393
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
17394
17394
|
}, z.core.$strict>>;
|
|
17395
17395
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
17396
|
-
small: "small";
|
|
17397
17396
|
none: "none";
|
|
17398
17397
|
all: "all";
|
|
17398
|
+
small: "small";
|
|
17399
17399
|
}>>;
|
|
17400
17400
|
}, z.core.$strict>, z.ZodObject<{
|
|
17401
17401
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -17470,9 +17470,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
17470
17470
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
17471
17471
|
}, z.core.$strict>>;
|
|
17472
17472
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
17473
|
-
small: "small";
|
|
17474
17473
|
none: "none";
|
|
17475
17474
|
all: "all";
|
|
17475
|
+
small: "small";
|
|
17476
17476
|
}>>;
|
|
17477
17477
|
}, z.core.$strict>, z.ZodObject<{
|
|
17478
17478
|
type: z.ZodLiteral<"DIVIDER">;
|
package/dist/index.d.ts
CHANGED
|
@@ -479,9 +479,9 @@ declare const DescriptorSchema: z.ZodObject<{
|
|
|
479
479
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
480
480
|
}, z.core.$strict>>;
|
|
481
481
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
482
|
-
small: "small";
|
|
483
482
|
none: "none";
|
|
484
483
|
all: "all";
|
|
484
|
+
small: "small";
|
|
485
485
|
}>>;
|
|
486
486
|
}, z.core.$strict>, z.ZodObject<{
|
|
487
487
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -556,9 +556,9 @@ declare const DescriptorSchema: z.ZodObject<{
|
|
|
556
556
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
557
557
|
}, z.core.$strict>>;
|
|
558
558
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
559
|
-
small: "small";
|
|
560
559
|
none: "none";
|
|
561
560
|
all: "all";
|
|
561
|
+
small: "small";
|
|
562
562
|
}>>;
|
|
563
563
|
}, z.core.$strict>, z.ZodObject<{
|
|
564
564
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -1072,9 +1072,9 @@ declare const CollectionDescriptorSchema: z.ZodObject<{
|
|
|
1072
1072
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
1073
1073
|
}, z.core.$strict>>;
|
|
1074
1074
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
1075
|
-
small: "small";
|
|
1076
1075
|
none: "none";
|
|
1077
1076
|
all: "all";
|
|
1077
|
+
small: "small";
|
|
1078
1078
|
}>>;
|
|
1079
1079
|
}, z.core.$strict>, z.ZodObject<{
|
|
1080
1080
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -1149,9 +1149,9 @@ declare const CollectionDescriptorSchema: z.ZodObject<{
|
|
|
1149
1149
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
1150
1150
|
}, z.core.$strict>>;
|
|
1151
1151
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
1152
|
-
small: "small";
|
|
1153
1152
|
none: "none";
|
|
1154
1153
|
all: "all";
|
|
1154
|
+
small: "small";
|
|
1155
1155
|
}>>;
|
|
1156
1156
|
}, z.core.$strict>, z.ZodObject<{
|
|
1157
1157
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -2011,9 +2011,9 @@ declare const LogoDesignEditorDefaultsSchema: z.ZodObject<{
|
|
|
2011
2011
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
2012
2012
|
}, z.core.$strict>>;
|
|
2013
2013
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
2014
|
-
small: "small";
|
|
2015
2014
|
none: "none";
|
|
2016
2015
|
all: "all";
|
|
2016
|
+
small: "small";
|
|
2017
2017
|
}>>;
|
|
2018
2018
|
}, z.core.$strict>;
|
|
2019
2019
|
declare const LogoDesignEditorSchema: z.ZodObject<{
|
|
@@ -2036,9 +2036,9 @@ declare const LogoDesignEditorSchema: z.ZodObject<{
|
|
|
2036
2036
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
2037
2037
|
}, z.core.$strict>>;
|
|
2038
2038
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
2039
|
-
small: "small";
|
|
2040
2039
|
none: "none";
|
|
2041
2040
|
all: "all";
|
|
2041
|
+
small: "small";
|
|
2042
2042
|
}>>;
|
|
2043
2043
|
}, z.core.$strict>>;
|
|
2044
2044
|
}, z.core.$strict>;
|
|
@@ -4827,9 +4827,9 @@ declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4827
4827
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
4828
4828
|
}, z.core.$strict>>;
|
|
4829
4829
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
4830
|
-
small: "small";
|
|
4831
4830
|
none: "none";
|
|
4832
4831
|
all: "all";
|
|
4832
|
+
small: "small";
|
|
4833
4833
|
}>>;
|
|
4834
4834
|
}, z.core.$strict>, z.ZodObject<{
|
|
4835
4835
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -4904,9 +4904,9 @@ declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4904
4904
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
4905
4905
|
}, z.core.$strict>>;
|
|
4906
4906
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
4907
|
-
small: "small";
|
|
4908
4907
|
none: "none";
|
|
4909
4908
|
all: "all";
|
|
4909
|
+
small: "small";
|
|
4910
4910
|
}>>;
|
|
4911
4911
|
}, z.core.$strict>, z.ZodObject<{
|
|
4912
4912
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -5024,9 +5024,9 @@ declare const AccordionShowcaseItemSchema: z.ZodObject<{
|
|
|
5024
5024
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5025
5025
|
}, z.core.$strict>>;
|
|
5026
5026
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5027
|
-
small: "small";
|
|
5028
5027
|
none: "none";
|
|
5029
5028
|
all: "all";
|
|
5029
|
+
small: "small";
|
|
5030
5030
|
}>>;
|
|
5031
5031
|
}, z.core.$strict>, z.ZodObject<{
|
|
5032
5032
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -5110,9 +5110,9 @@ declare const AccordionShowcaseDesignEditorDefaultsSchema: z.ZodObject<{
|
|
|
5110
5110
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5111
5111
|
}, z.core.$strict>>;
|
|
5112
5112
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5113
|
-
small: "small";
|
|
5114
5113
|
none: "none";
|
|
5115
5114
|
all: "all";
|
|
5115
|
+
small: "small";
|
|
5116
5116
|
}>>;
|
|
5117
5117
|
}, z.core.$strict>, z.ZodObject<{
|
|
5118
5118
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -5257,9 +5257,9 @@ declare const AccordionDesignItemSchema: z.ZodObject<{
|
|
|
5257
5257
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5258
5258
|
}, z.core.$strict>>;
|
|
5259
5259
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5260
|
-
small: "small";
|
|
5261
5260
|
none: "none";
|
|
5262
5261
|
all: "all";
|
|
5262
|
+
small: "small";
|
|
5263
5263
|
}>>;
|
|
5264
5264
|
}, z.core.$strict>>;
|
|
5265
5265
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -5420,9 +5420,9 @@ declare const AccordionDesignEditorSchema: z.ZodObject<{
|
|
|
5420
5420
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5421
5421
|
}, z.core.$strict>>;
|
|
5422
5422
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5423
|
-
small: "small";
|
|
5424
5423
|
none: "none";
|
|
5425
5424
|
all: "all";
|
|
5425
|
+
small: "small";
|
|
5426
5426
|
}>>;
|
|
5427
5427
|
}, z.core.$strict>>;
|
|
5428
5428
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -5683,9 +5683,9 @@ declare const DesignEditorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5683
5683
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5684
5684
|
}, z.core.$strict>>;
|
|
5685
5685
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5686
|
-
small: "small";
|
|
5687
5686
|
none: "none";
|
|
5688
5687
|
all: "all";
|
|
5688
|
+
small: "small";
|
|
5689
5689
|
}>>;
|
|
5690
5690
|
}, z.core.$strict>>;
|
|
5691
5691
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -5828,9 +5828,9 @@ declare const DesignEditorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5828
5828
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
5829
5829
|
}, z.core.$strict>>;
|
|
5830
5830
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
5831
|
-
small: "small";
|
|
5832
5831
|
none: "none";
|
|
5833
5832
|
all: "all";
|
|
5833
|
+
small: "small";
|
|
5834
5834
|
}>>;
|
|
5835
5835
|
}, z.core.$strict>>;
|
|
5836
5836
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -6005,9 +6005,9 @@ declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedU
|
|
|
6005
6005
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
6006
6006
|
}, z.core.$strict>>;
|
|
6007
6007
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
6008
|
-
small: "small";
|
|
6009
6008
|
none: "none";
|
|
6010
6009
|
all: "all";
|
|
6010
|
+
small: "small";
|
|
6011
6011
|
}>>;
|
|
6012
6012
|
}, z.core.$strict>>;
|
|
6013
6013
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -6150,9 +6150,9 @@ declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedU
|
|
|
6150
6150
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
6151
6151
|
}, z.core.$strict>>;
|
|
6152
6152
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
6153
|
-
small: "small";
|
|
6154
6153
|
none: "none";
|
|
6155
6154
|
all: "all";
|
|
6155
|
+
small: "small";
|
|
6156
6156
|
}>>;
|
|
6157
6157
|
}, z.core.$strict>>;
|
|
6158
6158
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -6805,9 +6805,9 @@ declare const LayoutDesignOverrideSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6805
6805
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
6806
6806
|
}, z.core.$strict>>;
|
|
6807
6807
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
6808
|
-
small: "small";
|
|
6809
6808
|
none: "none";
|
|
6810
6809
|
all: "all";
|
|
6810
|
+
small: "small";
|
|
6811
6811
|
}>>;
|
|
6812
6812
|
}, z.core.$strict>>;
|
|
6813
6813
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -7025,9 +7025,9 @@ declare const LayoutSettingsSchema: z.ZodObject<{
|
|
|
7025
7025
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
7026
7026
|
}, z.core.$strict>>;
|
|
7027
7027
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
7028
|
-
small: "small";
|
|
7029
7028
|
none: "none";
|
|
7030
7029
|
all: "all";
|
|
7030
|
+
small: "small";
|
|
7031
7031
|
}>>;
|
|
7032
7032
|
}, z.core.$strict>>;
|
|
7033
7033
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -7730,9 +7730,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
7730
7730
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
7731
7731
|
}, z.core.$strict>>;
|
|
7732
7732
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
7733
|
-
small: "small";
|
|
7734
7733
|
none: "none";
|
|
7735
7734
|
all: "all";
|
|
7735
|
+
small: "small";
|
|
7736
7736
|
}>>;
|
|
7737
7737
|
}, z.core.$strict>>;
|
|
7738
7738
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -7875,9 +7875,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
7875
7875
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
7876
7876
|
}, z.core.$strict>>;
|
|
7877
7877
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
7878
|
-
small: "small";
|
|
7879
7878
|
none: "none";
|
|
7880
7879
|
all: "all";
|
|
7880
|
+
small: "small";
|
|
7881
7881
|
}>>;
|
|
7882
7882
|
}, z.core.$strict>>;
|
|
7883
7883
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -8115,9 +8115,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
8115
8115
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
8116
8116
|
}, z.core.$strict>>;
|
|
8117
8117
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
8118
|
-
small: "small";
|
|
8119
8118
|
none: "none";
|
|
8120
8119
|
all: "all";
|
|
8120
|
+
small: "small";
|
|
8121
8121
|
}>>;
|
|
8122
8122
|
}, z.core.$strict>>;
|
|
8123
8123
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -8595,9 +8595,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
8595
8595
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
8596
8596
|
}, z.core.$strict>>;
|
|
8597
8597
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
8598
|
-
small: "small";
|
|
8599
8598
|
none: "none";
|
|
8600
8599
|
all: "all";
|
|
8600
|
+
small: "small";
|
|
8601
8601
|
}>>;
|
|
8602
8602
|
}, z.core.$strict>, z.ZodObject<{
|
|
8603
8603
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -8672,9 +8672,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
8672
8672
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
8673
8673
|
}, z.core.$strict>>;
|
|
8674
8674
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
8675
|
-
small: "small";
|
|
8676
8675
|
none: "none";
|
|
8677
8676
|
all: "all";
|
|
8677
|
+
small: "small";
|
|
8678
8678
|
}>>;
|
|
8679
8679
|
}, z.core.$strict>, z.ZodObject<{
|
|
8680
8680
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -9156,9 +9156,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
9156
9156
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
9157
9157
|
}, z.core.$strict>>;
|
|
9158
9158
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
9159
|
-
small: "small";
|
|
9160
9159
|
none: "none";
|
|
9161
9160
|
all: "all";
|
|
9161
|
+
small: "small";
|
|
9162
9162
|
}>>;
|
|
9163
9163
|
}, z.core.$strict>, z.ZodObject<{
|
|
9164
9164
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -9233,9 +9233,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
9233
9233
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
9234
9234
|
}, z.core.$strict>>;
|
|
9235
9235
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
9236
|
-
small: "small";
|
|
9237
9236
|
none: "none";
|
|
9238
9237
|
all: "all";
|
|
9238
|
+
small: "small";
|
|
9239
9239
|
}>>;
|
|
9240
9240
|
}, z.core.$strict>, z.ZodObject<{
|
|
9241
9241
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -9659,9 +9659,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
9659
9659
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
9660
9660
|
}, z.core.$strict>>;
|
|
9661
9661
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
9662
|
-
small: "small";
|
|
9663
9662
|
none: "none";
|
|
9664
9663
|
all: "all";
|
|
9664
|
+
small: "small";
|
|
9665
9665
|
}>>;
|
|
9666
9666
|
}, z.core.$strict>, z.ZodObject<{
|
|
9667
9667
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -9736,9 +9736,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
9736
9736
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
9737
9737
|
}, z.core.$strict>>;
|
|
9738
9738
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
9739
|
-
small: "small";
|
|
9740
9739
|
none: "none";
|
|
9741
9740
|
all: "all";
|
|
9741
|
+
small: "small";
|
|
9742
9742
|
}>>;
|
|
9743
9743
|
}, z.core.$strict>, z.ZodObject<{
|
|
9744
9744
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -10176,9 +10176,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
10176
10176
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
10177
10177
|
}, z.core.$strict>>;
|
|
10178
10178
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
10179
|
-
small: "small";
|
|
10180
10179
|
none: "none";
|
|
10181
10180
|
all: "all";
|
|
10181
|
+
small: "small";
|
|
10182
10182
|
}>>;
|
|
10183
10183
|
}, z.core.$strict>, z.ZodObject<{
|
|
10184
10184
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -10253,9 +10253,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
10253
10253
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
10254
10254
|
}, z.core.$strict>>;
|
|
10255
10255
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
10256
|
-
small: "small";
|
|
10257
10256
|
none: "none";
|
|
10258
10257
|
all: "all";
|
|
10258
|
+
small: "small";
|
|
10259
10259
|
}>>;
|
|
10260
10260
|
}, z.core.$strict>, z.ZodObject<{
|
|
10261
10261
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -10949,9 +10949,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
10949
10949
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
10950
10950
|
}, z.core.$strict>>;
|
|
10951
10951
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
10952
|
-
small: "small";
|
|
10953
10952
|
none: "none";
|
|
10954
10953
|
all: "all";
|
|
10954
|
+
small: "small";
|
|
10955
10955
|
}>>;
|
|
10956
10956
|
}, z.core.$strict>>;
|
|
10957
10957
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -11094,9 +11094,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
11094
11094
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
11095
11095
|
}, z.core.$strict>>;
|
|
11096
11096
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
11097
|
-
small: "small";
|
|
11098
11097
|
none: "none";
|
|
11099
11098
|
all: "all";
|
|
11099
|
+
small: "small";
|
|
11100
11100
|
}>>;
|
|
11101
11101
|
}, z.core.$strict>>;
|
|
11102
11102
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -11335,9 +11335,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
11335
11335
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
11336
11336
|
}, z.core.$strict>>;
|
|
11337
11337
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
11338
|
-
small: "small";
|
|
11339
11338
|
none: "none";
|
|
11340
11339
|
all: "all";
|
|
11340
|
+
small: "small";
|
|
11341
11341
|
}>>;
|
|
11342
11342
|
}, z.core.$strict>>;
|
|
11343
11343
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -11822,9 +11822,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
11822
11822
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
11823
11823
|
}, z.core.$strict>>;
|
|
11824
11824
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
11825
|
-
small: "small";
|
|
11826
11825
|
none: "none";
|
|
11827
11826
|
all: "all";
|
|
11827
|
+
small: "small";
|
|
11828
11828
|
}>>;
|
|
11829
11829
|
}, z.core.$strict>, z.ZodObject<{
|
|
11830
11830
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -11899,9 +11899,9 @@ declare const ManifestSchema: z.ZodObject<{
|
|
|
11899
11899
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
11900
11900
|
}, z.core.$strict>>;
|
|
11901
11901
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
11902
|
-
small: "small";
|
|
11903
11902
|
none: "none";
|
|
11904
11903
|
all: "all";
|
|
11904
|
+
small: "small";
|
|
11905
11905
|
}>>;
|
|
11906
11906
|
}, z.core.$strict>, z.ZodObject<{
|
|
11907
11907
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -12398,9 +12398,9 @@ declare const CustomSectionSchema: z.ZodObject<{
|
|
|
12398
12398
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
12399
12399
|
}, z.core.$strict>>;
|
|
12400
12400
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
12401
|
-
small: "small";
|
|
12402
12401
|
none: "none";
|
|
12403
12402
|
all: "all";
|
|
12403
|
+
small: "small";
|
|
12404
12404
|
}>>;
|
|
12405
12405
|
}, z.core.$strict>, z.ZodObject<{
|
|
12406
12406
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -12475,9 +12475,9 @@ declare const CustomSectionSchema: z.ZodObject<{
|
|
|
12475
12475
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
12476
12476
|
}, z.core.$strict>>;
|
|
12477
12477
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
12478
|
-
small: "small";
|
|
12479
12478
|
none: "none";
|
|
12480
12479
|
all: "all";
|
|
12480
|
+
small: "small";
|
|
12481
12481
|
}>>;
|
|
12482
12482
|
}, z.core.$strict>, z.ZodObject<{
|
|
12483
12483
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -12939,9 +12939,9 @@ declare const SectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12939
12939
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
12940
12940
|
}, z.core.$strict>>;
|
|
12941
12941
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
12942
|
-
small: "small";
|
|
12943
12942
|
none: "none";
|
|
12944
12943
|
all: "all";
|
|
12944
|
+
small: "small";
|
|
12945
12945
|
}>>;
|
|
12946
12946
|
}, z.core.$strict>, z.ZodObject<{
|
|
12947
12947
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -13016,9 +13016,9 @@ declare const SectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
13016
13016
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
13017
13017
|
}, z.core.$strict>>;
|
|
13018
13018
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
13019
|
-
small: "small";
|
|
13020
13019
|
none: "none";
|
|
13021
13020
|
all: "all";
|
|
13021
|
+
small: "small";
|
|
13022
13022
|
}>>;
|
|
13023
13023
|
}, z.core.$strict>, z.ZodObject<{
|
|
13024
13024
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -13483,9 +13483,9 @@ declare const TemplatePageSchema: z.ZodObject<{
|
|
|
13483
13483
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
13484
13484
|
}, z.core.$strict>>;
|
|
13485
13485
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
13486
|
-
small: "small";
|
|
13487
13486
|
none: "none";
|
|
13488
13487
|
all: "all";
|
|
13488
|
+
small: "small";
|
|
13489
13489
|
}>>;
|
|
13490
13490
|
}, z.core.$strict>, z.ZodObject<{
|
|
13491
13491
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -13560,9 +13560,9 @@ declare const TemplatePageSchema: z.ZodObject<{
|
|
|
13560
13560
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
13561
13561
|
}, z.core.$strict>>;
|
|
13562
13562
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
13563
|
-
small: "small";
|
|
13564
13563
|
none: "none";
|
|
13565
13564
|
all: "all";
|
|
13565
|
+
small: "small";
|
|
13566
13566
|
}>>;
|
|
13567
13567
|
}, z.core.$strict>, z.ZodObject<{
|
|
13568
13568
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -14028,9 +14028,9 @@ declare const TemplatePageNamedSchema: z.ZodObject<{
|
|
|
14028
14028
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
14029
14029
|
}, z.core.$strict>>;
|
|
14030
14030
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
14031
|
-
small: "small";
|
|
14032
14031
|
none: "none";
|
|
14033
14032
|
all: "all";
|
|
14033
|
+
small: "small";
|
|
14034
14034
|
}>>;
|
|
14035
14035
|
}, z.core.$strict>, z.ZodObject<{
|
|
14036
14036
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -14105,9 +14105,9 @@ declare const TemplatePageNamedSchema: z.ZodObject<{
|
|
|
14105
14105
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
14106
14106
|
}, z.core.$strict>>;
|
|
14107
14107
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
14108
|
-
small: "small";
|
|
14109
14108
|
none: "none";
|
|
14110
14109
|
all: "all";
|
|
14110
|
+
small: "small";
|
|
14111
14111
|
}>>;
|
|
14112
14112
|
}, z.core.$strict>, z.ZodObject<{
|
|
14113
14113
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -14633,9 +14633,9 @@ declare const TemplateConfigurationSectionSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
14633
14633
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
14634
14634
|
}, z.core.$strict>>;
|
|
14635
14635
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
14636
|
-
small: "small";
|
|
14637
14636
|
none: "none";
|
|
14638
14637
|
all: "all";
|
|
14638
|
+
small: "small";
|
|
14639
14639
|
}>>;
|
|
14640
14640
|
}, z.core.$strict>, z.ZodObject<{
|
|
14641
14641
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -14710,9 +14710,9 @@ declare const TemplateConfigurationSectionSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
14710
14710
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
14711
14711
|
}, z.core.$strict>>;
|
|
14712
14712
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
14713
|
-
small: "small";
|
|
14714
14713
|
none: "none";
|
|
14715
14714
|
all: "all";
|
|
14715
|
+
small: "small";
|
|
14716
14716
|
}>>;
|
|
14717
14717
|
}, z.core.$strict>, z.ZodObject<{
|
|
14718
14718
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -15227,9 +15227,9 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
|
|
|
15227
15227
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
15228
15228
|
}, z.core.$strict>>;
|
|
15229
15229
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
15230
|
-
small: "small";
|
|
15231
15230
|
none: "none";
|
|
15232
15231
|
all: "all";
|
|
15232
|
+
small: "small";
|
|
15233
15233
|
}>>;
|
|
15234
15234
|
}, z.core.$strict>, z.ZodObject<{
|
|
15235
15235
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -15304,9 +15304,9 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
|
|
|
15304
15304
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
15305
15305
|
}, z.core.$strict>>;
|
|
15306
15306
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
15307
|
-
small: "small";
|
|
15308
15307
|
none: "none";
|
|
15309
15308
|
all: "all";
|
|
15309
|
+
small: "small";
|
|
15310
15310
|
}>>;
|
|
15311
15311
|
}, z.core.$strict>, z.ZodObject<{
|
|
15312
15312
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -15764,9 +15764,9 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
|
|
|
15764
15764
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
15765
15765
|
}, z.core.$strict>>;
|
|
15766
15766
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
15767
|
-
small: "small";
|
|
15768
15767
|
none: "none";
|
|
15769
15768
|
all: "all";
|
|
15769
|
+
small: "small";
|
|
15770
15770
|
}>>;
|
|
15771
15771
|
}, z.core.$strict>, z.ZodObject<{
|
|
15772
15772
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -15841,9 +15841,9 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
|
|
|
15841
15841
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
15842
15842
|
}, z.core.$strict>>;
|
|
15843
15843
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
15844
|
-
small: "small";
|
|
15845
15844
|
none: "none";
|
|
15846
15845
|
all: "all";
|
|
15846
|
+
small: "small";
|
|
15847
15847
|
}>>;
|
|
15848
15848
|
}, z.core.$strict>, z.ZodObject<{
|
|
15849
15849
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -16340,9 +16340,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
16340
16340
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
16341
16341
|
}, z.core.$strict>>;
|
|
16342
16342
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
16343
|
-
small: "small";
|
|
16344
16343
|
none: "none";
|
|
16345
16344
|
all: "all";
|
|
16345
|
+
small: "small";
|
|
16346
16346
|
}>>;
|
|
16347
16347
|
}, z.core.$strict>, z.ZodObject<{
|
|
16348
16348
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -16417,9 +16417,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
16417
16417
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
16418
16418
|
}, z.core.$strict>>;
|
|
16419
16419
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
16420
|
-
small: "small";
|
|
16421
16420
|
none: "none";
|
|
16422
16421
|
all: "all";
|
|
16422
|
+
small: "small";
|
|
16423
16423
|
}>>;
|
|
16424
16424
|
}, z.core.$strict>, z.ZodObject<{
|
|
16425
16425
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -16852,9 +16852,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
16852
16852
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
16853
16853
|
}, z.core.$strict>>;
|
|
16854
16854
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
16855
|
-
small: "small";
|
|
16856
16855
|
none: "none";
|
|
16857
16856
|
all: "all";
|
|
16857
|
+
small: "small";
|
|
16858
16858
|
}>>;
|
|
16859
16859
|
}, z.core.$strict>, z.ZodObject<{
|
|
16860
16860
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -16929,9 +16929,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
16929
16929
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
16930
16930
|
}, z.core.$strict>>;
|
|
16931
16931
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
16932
|
-
small: "small";
|
|
16933
16932
|
none: "none";
|
|
16934
16933
|
all: "all";
|
|
16934
|
+
small: "small";
|
|
16935
16935
|
}>>;
|
|
16936
16936
|
}, z.core.$strict>, z.ZodObject<{
|
|
16937
16937
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -17394,9 +17394,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
17394
17394
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
17395
17395
|
}, z.core.$strict>>;
|
|
17396
17396
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
17397
|
-
small: "small";
|
|
17398
17397
|
none: "none";
|
|
17399
17398
|
all: "all";
|
|
17399
|
+
small: "small";
|
|
17400
17400
|
}>>;
|
|
17401
17401
|
}, z.core.$strict>, z.ZodObject<{
|
|
17402
17402
|
type: z.ZodLiteral<"DIVIDER">;
|
|
@@ -17471,9 +17471,9 @@ declare const TemplateSchema: z.ZodObject<{
|
|
|
17471
17471
|
color: z.ZodOptional<z.ZodCustom<string, string>>;
|
|
17472
17472
|
}, z.core.$strict>>;
|
|
17473
17473
|
capitalization: z.ZodOptional<z.ZodEnum<{
|
|
17474
|
-
small: "small";
|
|
17475
17474
|
none: "none";
|
|
17476
17475
|
all: "all";
|
|
17476
|
+
small: "small";
|
|
17477
17477
|
}>>;
|
|
17478
17478
|
}, z.core.$strict>, z.ZodObject<{
|
|
17479
17479
|
type: z.ZodLiteral<"DIVIDER">;
|