sanity 6.6.0-next.51 → 6.6.0-next.53

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.
@@ -3474,7 +3474,18 @@ declare const studioLocaleStrings: {
3474
3474
  'inputs.portable-text.style.multiple': string; /** Title of fallback when no style is given for a block */
3475
3475
  'inputs.portable-text.style.none': string; /** Title of the "normal" block style */
3476
3476
  'inputs.portable-text.style.normal': string; /** Title of the "quote" block style */
3477
- 'inputs.portable-text.style.quote': string; /** Label for action to clear the current value of the reference field */
3477
+ 'inputs.portable-text.style.quote': string; /** Label for the table lane that appends a column */
3478
+ 'inputs.portable-text.table.add-column': string; /** Label for the table lane that appends a row */
3479
+ 'inputs.portable-text.table.add-row': string; /** Aria label for a table column's drag/select handle */
3480
+ 'inputs.portable-text.table.column-handle': string; /** Label for the trash chip that deletes the selected column */
3481
+ 'inputs.portable-text.table.delete-column': string; /** Label for the trash chip that deletes the selected row */
3482
+ 'inputs.portable-text.table.delete-row': string; /** Label for the table menu item that deletes the table */
3483
+ 'inputs.portable-text.table.delete-table': string; /** Label for the table menu's header row toggle */
3484
+ 'inputs.portable-text.table.header-row': string; /** Aria label for the dots that insert a row or column at a boundary */
3485
+ 'inputs.portable-text.table.insert-here': string; /** Aria label for the table menu button */
3486
+ 'inputs.portable-text.table.menu-aria-label': string; /** Aria label for a table row's drag/select handle */
3487
+ 'inputs.portable-text.table.row-handle': string; /** Label for the table menu item that selects the whole table */
3488
+ 'inputs.portable-text.table.select-table': string; /** Label for action to clear the current value of the reference field */
3478
3489
  'inputs.reference.action.clear': string; /** Label for action to copy the current item (used within arrays) */
3479
3490
  'inputs.reference.action.copy': string; /** Label for action to create a new document from the reference input */
3480
3491
  'inputs.reference.action.create-new-document': string; /** Label for action to create a new document from the reference input, when there are multiple templates or document types to choose from */
@@ -12306,6 +12317,22 @@ interface PortableTextPluginsProps {
12306
12317
  */
12307
12318
  enabled?: boolean;
12308
12319
  } & TypographyPluginProps;
12320
+ /**
12321
+ * Table editing for a table-shaped block object (`table` > `rows` >
12322
+ * `row` > `cells` > `cell` > `value`). Unlike the other built-in
12323
+ * plugins, tables are opt-in: the field's schema must include the table
12324
+ * member type, and the plugin must be enabled explicitly.
12325
+ *
12326
+ * For the header-row toggle in the table menu to persist, the table
12327
+ * type must also declare a `headerRows` number field; without it the
12328
+ * toggled value is stripped from the document.
12329
+ */
12330
+ table?: {
12331
+ /**
12332
+ * @defaultValue false
12333
+ */
12334
+ enabled?: boolean;
12335
+ };
12309
12336
  };
12310
12337
  }
12311
12338
  /**