@supernova-studio/model 0.52.12 → 0.52.13
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/index.d.mts +1927 -1927
- package/dist/index.d.ts +1927 -1927
- package/dist/index.js +113 -107
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +673 -667
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/documentation/block-definitions/item.ts +10 -6
- package/src/dsm/version.ts +1 -1
package/package.json
CHANGED
|
@@ -49,7 +49,15 @@ export const PageBlockDefinitionRichTextPropertyStyle = z.enum([
|
|
|
49
49
|
|
|
50
50
|
export const PageBlockDefinitionMultiRichTextPropertyStyle = z.enum(["OL", "UL", "Default"]);
|
|
51
51
|
|
|
52
|
-
export const PageBlockDefinitionRichTextEditorPropertyStyle = z.enum([
|
|
52
|
+
export const PageBlockDefinitionRichTextEditorPropertyStyle = z.enum([
|
|
53
|
+
"OL",
|
|
54
|
+
"UL",
|
|
55
|
+
"Bold",
|
|
56
|
+
"Italic",
|
|
57
|
+
"Link",
|
|
58
|
+
"Strikethrough",
|
|
59
|
+
"InlineCode",
|
|
60
|
+
]);
|
|
53
61
|
|
|
54
62
|
export const PageBlockDefinitionTextPropertyStyle = z.enum([
|
|
55
63
|
"Title1",
|
|
@@ -91,11 +99,7 @@ export const PageBlockDefinitionSingleSelectPropertyColor = z.enum([
|
|
|
91
99
|
"Fuchsia",
|
|
92
100
|
]);
|
|
93
101
|
|
|
94
|
-
export const IconSet = z.enum([
|
|
95
|
-
"CheckCircle",
|
|
96
|
-
"CrossCircle",
|
|
97
|
-
"Alert",
|
|
98
|
-
]);
|
|
102
|
+
export const IconSet = z.enum(["CheckCircle", "CrossCircle", "Alert"]);
|
|
99
103
|
|
|
100
104
|
export const PageBlockDefinitionMultiSelectPropertyStyle = z.enum(["SegmentedControl", "Select", "Checkbox"]);
|
|
101
105
|
|
package/src/dsm/version.ts
CHANGED