@supernova-studio/model 0.52.7 → 0.52.8
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 +45 -26
- package/dist/index.d.ts +45 -26
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/documentation/block-definitions/item.ts +9 -0
- package/src/dsm/elements/data/documentation-block-v2.ts +4 -0
package/dist/index.mjs
CHANGED
|
@@ -2165,6 +2165,9 @@ var PageBlockItemRichTextValue = z40.object({
|
|
|
2165
2165
|
value: PageBlockText,
|
|
2166
2166
|
calloutType: PageBlockCalloutType.optional()
|
|
2167
2167
|
});
|
|
2168
|
+
var PageBlockItemRichTextEditorValue = z40.object({
|
|
2169
|
+
value: z40.any()
|
|
2170
|
+
});
|
|
2168
2171
|
var PageBlockItemSingleSelectValue = z40.object({
|
|
2169
2172
|
value: z40.string()
|
|
2170
2173
|
});
|
|
@@ -3576,6 +3579,7 @@ var PageBlockDefinitionVariant = z99.object({
|
|
|
3576
3579
|
var PageBlockDefinitionPropertyType = z100.enum([
|
|
3577
3580
|
"RichText",
|
|
3578
3581
|
"MultiRichText",
|
|
3582
|
+
"RichTextEditor",
|
|
3579
3583
|
"Text",
|
|
3580
3584
|
"Boolean",
|
|
3581
3585
|
"Number",
|
|
@@ -3612,6 +3616,7 @@ var PageBlockDefinitionRichTextPropertyStyle = z100.enum([
|
|
|
3612
3616
|
"Default"
|
|
3613
3617
|
]);
|
|
3614
3618
|
var PageBlockDefinitionMultiRichTextPropertyStyle = z100.enum(["OL", "UL", "Default"]);
|
|
3619
|
+
var PageBlockDefinitionRichTextEditorPropertyStyle = z100.enum(["OL", "UL", "Bold", "Italic", "Link", "Strikethrough", "InlineCode"]);
|
|
3615
3620
|
var PageBlockDefinitionTextPropertyStyle = z100.enum([
|
|
3616
3621
|
"Title1",
|
|
3617
3622
|
"Title2",
|
|
@@ -3671,6 +3676,10 @@ var PageBlockDefinitionRichTextOptions = z100.object({
|
|
|
3671
3676
|
var PageBlockDefinitionMutiRichTextOptions = z100.object({
|
|
3672
3677
|
multiRichTextStyle: PageBlockDefinitionMultiRichTextPropertyStyle.optional()
|
|
3673
3678
|
});
|
|
3679
|
+
var PageBlockDefinitionRichTextEditorOptions = z100.object({
|
|
3680
|
+
placeholder: z100.string().optional(),
|
|
3681
|
+
allowedInlineStyles: z100.array(PageBlockDefinitionRichTextEditorPropertyStyle).optional()
|
|
3682
|
+
});
|
|
3674
3683
|
var PageBlockDefinitionTextOptions = z100.object({
|
|
3675
3684
|
placeholder: z100.string().optional(),
|
|
3676
3685
|
defaultValue: z100.string().optional(),
|
|
@@ -5514,6 +5523,8 @@ export {
|
|
|
5514
5523
|
PageBlockDefinitionOnboarding,
|
|
5515
5524
|
PageBlockDefinitionProperty,
|
|
5516
5525
|
PageBlockDefinitionPropertyType,
|
|
5526
|
+
PageBlockDefinitionRichTextEditorOptions,
|
|
5527
|
+
PageBlockDefinitionRichTextEditorPropertyStyle,
|
|
5517
5528
|
PageBlockDefinitionRichTextOptions,
|
|
5518
5529
|
PageBlockDefinitionRichTextPropertyStyle,
|
|
5519
5530
|
PageBlockDefinitionSelectChoice,
|
|
@@ -5553,6 +5564,7 @@ export {
|
|
|
5553
5564
|
PageBlockItemMultiRichTextValue,
|
|
5554
5565
|
PageBlockItemMultiSelectValue,
|
|
5555
5566
|
PageBlockItemNumberValue,
|
|
5567
|
+
PageBlockItemRichTextEditorValue,
|
|
5556
5568
|
PageBlockItemRichTextValue,
|
|
5557
5569
|
PageBlockItemSandboxValue,
|
|
5558
5570
|
PageBlockItemSingleSelectValue,
|