@supernova-studio/client 0.55.13 → 0.55.14
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.js +32 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +32 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/yjs/docs-editor/mock.ts +32 -6
package/dist/index.js
CHANGED
|
@@ -10352,18 +10352,34 @@ var blocks = [
|
|
|
10352
10352
|
{
|
|
10353
10353
|
id: "io.supernova.block.code",
|
|
10354
10354
|
name: "Code",
|
|
10355
|
-
description: "
|
|
10355
|
+
description: "Display simple code examples",
|
|
10356
10356
|
category: "Code",
|
|
10357
10357
|
icon: "https://cdn-assets.supernova.io/blocks/icons/code.svg",
|
|
10358
10358
|
searchKeywords: ["code"],
|
|
10359
10359
|
item: {
|
|
10360
|
-
properties: [
|
|
10361
|
-
|
|
10360
|
+
properties: [
|
|
10361
|
+
{
|
|
10362
|
+
id: "code",
|
|
10363
|
+
name: "Code",
|
|
10364
|
+
type: "Code",
|
|
10365
|
+
options: {}
|
|
10366
|
+
}
|
|
10367
|
+
],
|
|
10368
|
+
appearance: {
|
|
10369
|
+
isBordered: true,
|
|
10370
|
+
hasBackground: false
|
|
10371
|
+
},
|
|
10362
10372
|
variants: [
|
|
10363
10373
|
{
|
|
10364
10374
|
id: "default",
|
|
10365
10375
|
name: "Default",
|
|
10366
|
-
layout: {
|
|
10376
|
+
layout: {
|
|
10377
|
+
type: "Column",
|
|
10378
|
+
children: ["code"],
|
|
10379
|
+
columnAlign: "Start",
|
|
10380
|
+
columnResizing: "Fill",
|
|
10381
|
+
gap: "Medium"
|
|
10382
|
+
},
|
|
10367
10383
|
maxColumns: 1,
|
|
10368
10384
|
defaultColumns: 1,
|
|
10369
10385
|
appearance: {}
|
|
@@ -10371,8 +10387,18 @@ var blocks = [
|
|
|
10371
10387
|
],
|
|
10372
10388
|
defaultVariantKey: "default"
|
|
10373
10389
|
},
|
|
10374
|
-
behavior: {
|
|
10375
|
-
|
|
10390
|
+
behavior: {
|
|
10391
|
+
dataType: "Item",
|
|
10392
|
+
items: {
|
|
10393
|
+
numberOfItems: 1,
|
|
10394
|
+
allowLinks: false
|
|
10395
|
+
}
|
|
10396
|
+
},
|
|
10397
|
+
editorOptions: {
|
|
10398
|
+
onboarding: {
|
|
10399
|
+
helpText: "Display simple code examples"
|
|
10400
|
+
}
|
|
10401
|
+
},
|
|
10376
10402
|
appearance: {
|
|
10377
10403
|
isBordered: false,
|
|
10378
10404
|
hasBackground: false,
|