@supernova-studio/client 0.55.12 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supernova-studio/client",
3
- "version": "0.55.12",
3
+ "version": "0.55.14",
4
4
  "description": "Supernova Data Models",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -1486,18 +1486,34 @@ const blocks: PageBlockDefinition[] = [
1486
1486
  {
1487
1487
  id: "io.supernova.block.code",
1488
1488
  name: "Code",
1489
- description: "Code description",
1489
+ description: "Display simple code examples",
1490
1490
  category: "Code",
1491
1491
  icon: "https://cdn-assets.supernova.io/blocks/icons/code.svg",
1492
1492
  searchKeywords: ["code"],
1493
1493
  item: {
1494
- properties: [{ id: "code", name: "Code", type: "Code", options: {} }],
1495
- appearance: { isBordered: true, hasBackground: false },
1494
+ properties: [
1495
+ {
1496
+ id: "code",
1497
+ name: "Code",
1498
+ type: "Code",
1499
+ options: {},
1500
+ },
1501
+ ],
1502
+ appearance: {
1503
+ isBordered: true,
1504
+ hasBackground: false,
1505
+ },
1496
1506
  variants: [
1497
1507
  {
1498
1508
  id: "default",
1499
1509
  name: "Default",
1500
- layout: { type: "Column", children: ["code"], columnAlign: "Start", columnResizing: "Fill", gap: "Medium" },
1510
+ layout: {
1511
+ type: "Column",
1512
+ children: ["code"],
1513
+ columnAlign: "Start",
1514
+ columnResizing: "Fill",
1515
+ gap: "Medium",
1516
+ },
1501
1517
  maxColumns: 1,
1502
1518
  defaultColumns: 1,
1503
1519
  appearance: {},
@@ -1505,8 +1521,18 @@ const blocks: PageBlockDefinition[] = [
1505
1521
  ],
1506
1522
  defaultVariantKey: "default",
1507
1523
  },
1508
- behavior: { dataType: "Item", items: { numberOfItems: 1, allowLinks: false } },
1509
- editorOptions: { onboarding: { helpText: "Code descriptor." } },
1524
+ behavior: {
1525
+ dataType: "Item",
1526
+ items: {
1527
+ numberOfItems: 1,
1528
+ allowLinks: false,
1529
+ },
1530
+ },
1531
+ editorOptions: {
1532
+ onboarding: {
1533
+ helpText: "Display simple code examples",
1534
+ },
1535
+ },
1510
1536
  appearance: {
1511
1537
  isBordered: false,
1512
1538
  hasBackground: false,