@atlaskit/adf-schema 49.0.6 → 49.1.0

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.
Files changed (181) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/cjs/index.js +114 -0
  3. package/dist/cjs/next-schema/generated/nodeTypes.js +118 -1
  4. package/dist/cjs/next-schema/nodes/blockCard.js +15 -0
  5. package/dist/cjs/next-schema/nodes/blockquote.js +16 -2
  6. package/dist/cjs/next-schema/nodes/caption.js +7 -0
  7. package/dist/cjs/next-schema/nodes/codeBlock.js +5 -0
  8. package/dist/cjs/next-schema/nodes/date.js +5 -0
  9. package/dist/cjs/next-schema/nodes/embedCard.js +5 -0
  10. package/dist/cjs/next-schema/nodes/emoji.js +5 -0
  11. package/dist/cjs/next-schema/nodes/expand.js +5 -0
  12. package/dist/cjs/next-schema/nodes/hardBreak.js +5 -0
  13. package/dist/cjs/next-schema/nodes/inlineCard.js +10 -0
  14. package/dist/cjs/next-schema/nodes/layoutColumn.js +5 -0
  15. package/dist/cjs/next-schema/nodes/layoutSection.js +12 -0
  16. package/dist/cjs/next-schema/nodes/list.js +20 -1
  17. package/dist/cjs/next-schema/nodes/media.js +10 -0
  18. package/dist/cjs/next-schema/nodes/mediaInline.js +5 -0
  19. package/dist/cjs/next-schema/nodes/mediaSingle.js +10 -0
  20. package/dist/cjs/next-schema/nodes/nestedExpand.js +5 -0
  21. package/dist/cjs/next-schema/nodes/panel.js +5 -0
  22. package/dist/cjs/next-schema/nodes/placeholder.js +5 -0
  23. package/dist/cjs/next-schema/nodes/rule.js +9 -1
  24. package/dist/cjs/schema/index.js +120 -0
  25. package/dist/cjs/schema/nodes/block-card.js +48 -1
  26. package/dist/cjs/schema/nodes/blockquote.js +20 -2
  27. package/dist/cjs/schema/nodes/bullet-list.js +20 -1
  28. package/dist/cjs/schema/nodes/caption.js +20 -1
  29. package/dist/cjs/schema/nodes/code-block.js +72 -2
  30. package/dist/cjs/schema/nodes/date.js +22 -1
  31. package/dist/cjs/schema/nodes/embed-card.js +36 -1
  32. package/dist/cjs/schema/nodes/emoji.js +73 -1
  33. package/dist/cjs/schema/nodes/expand.js +56 -1
  34. package/dist/cjs/schema/nodes/hard-break.js +18 -1
  35. package/dist/cjs/schema/nodes/index.js +120 -0
  36. package/dist/cjs/schema/nodes/inline-card.js +46 -1
  37. package/dist/cjs/schema/nodes/layout-column.js +37 -1
  38. package/dist/cjs/schema/nodes/layout-section.js +31 -1
  39. package/dist/cjs/schema/nodes/list-item.js +34 -1
  40. package/dist/cjs/schema/nodes/media-inline.js +12 -2
  41. package/dist/cjs/schema/nodes/media-single.js +22 -2
  42. package/dist/cjs/schema/nodes/media.js +21 -4
  43. package/dist/cjs/schema/nodes/nested-expand.js +34 -7
  44. package/dist/cjs/schema/nodes/ordered-list.js +54 -3
  45. package/dist/cjs/schema/nodes/panel.js +13 -5
  46. package/dist/cjs/schema/nodes/placeholder.js +24 -1
  47. package/dist/cjs/schema/nodes/rule.js +18 -1
  48. package/dist/cjs/validator-schema/generated/validatorSpec.js +142 -0
  49. package/dist/es2019/index.js +2 -2
  50. package/dist/es2019/next-schema/generated/nodeTypes.js +118 -1
  51. package/dist/es2019/next-schema/nodes/blockCard.js +15 -0
  52. package/dist/es2019/next-schema/nodes/blockquote.js +16 -2
  53. package/dist/es2019/next-schema/nodes/caption.js +7 -0
  54. package/dist/es2019/next-schema/nodes/codeBlock.js +5 -0
  55. package/dist/es2019/next-schema/nodes/date.js +5 -0
  56. package/dist/es2019/next-schema/nodes/embedCard.js +5 -0
  57. package/dist/es2019/next-schema/nodes/emoji.js +5 -0
  58. package/dist/es2019/next-schema/nodes/expand.js +5 -0
  59. package/dist/es2019/next-schema/nodes/hardBreak.js +5 -0
  60. package/dist/es2019/next-schema/nodes/inlineCard.js +10 -0
  61. package/dist/es2019/next-schema/nodes/layoutColumn.js +5 -0
  62. package/dist/es2019/next-schema/nodes/layoutSection.js +12 -0
  63. package/dist/es2019/next-schema/nodes/list.js +20 -1
  64. package/dist/es2019/next-schema/nodes/media.js +10 -0
  65. package/dist/es2019/next-schema/nodes/mediaInline.js +5 -0
  66. package/dist/es2019/next-schema/nodes/mediaSingle.js +10 -0
  67. package/dist/es2019/next-schema/nodes/nestedExpand.js +5 -0
  68. package/dist/es2019/next-schema/nodes/panel.js +5 -0
  69. package/dist/es2019/next-schema/nodes/placeholder.js +5 -0
  70. package/dist/es2019/next-schema/nodes/rule.js +9 -1
  71. package/dist/es2019/schema/index.js +1 -1
  72. package/dist/es2019/schema/nodes/block-card.js +50 -0
  73. package/dist/es2019/schema/nodes/blockquote.js +19 -1
  74. package/dist/es2019/schema/nodes/bullet-list.js +19 -0
  75. package/dist/es2019/schema/nodes/caption.js +19 -0
  76. package/dist/es2019/schema/nodes/code-block.js +68 -0
  77. package/dist/es2019/schema/nodes/date.js +19 -0
  78. package/dist/es2019/schema/nodes/embed-card.js +34 -0
  79. package/dist/es2019/schema/nodes/emoji.js +71 -0
  80. package/dist/es2019/schema/nodes/expand.js +59 -0
  81. package/dist/es2019/schema/nodes/hard-break.js +15 -0
  82. package/dist/es2019/schema/nodes/index.js +19 -19
  83. package/dist/es2019/schema/nodes/inline-card.js +45 -0
  84. package/dist/es2019/schema/nodes/layout-column.js +38 -0
  85. package/dist/es2019/schema/nodes/layout-section.js +32 -0
  86. package/dist/es2019/schema/nodes/list-item.js +29 -0
  87. package/dist/es2019/schema/nodes/media-inline.js +8 -1
  88. package/dist/es2019/schema/nodes/media-single.js +20 -1
  89. package/dist/es2019/schema/nodes/media.js +17 -4
  90. package/dist/es2019/schema/nodes/nested-expand.js +21 -6
  91. package/dist/es2019/schema/nodes/ordered-list.js +51 -2
  92. package/dist/es2019/schema/nodes/panel.js +11 -5
  93. package/dist/es2019/schema/nodes/placeholder.js +23 -0
  94. package/dist/es2019/schema/nodes/rule.js +15 -0
  95. package/dist/es2019/validator-schema/generated/validatorSpec.js +142 -0
  96. package/dist/esm/index.js +2 -2
  97. package/dist/esm/next-schema/generated/nodeTypes.js +118 -1
  98. package/dist/esm/next-schema/nodes/blockCard.js +15 -0
  99. package/dist/esm/next-schema/nodes/blockquote.js +16 -2
  100. package/dist/esm/next-schema/nodes/caption.js +7 -0
  101. package/dist/esm/next-schema/nodes/codeBlock.js +5 -0
  102. package/dist/esm/next-schema/nodes/date.js +5 -0
  103. package/dist/esm/next-schema/nodes/embedCard.js +5 -0
  104. package/dist/esm/next-schema/nodes/emoji.js +5 -0
  105. package/dist/esm/next-schema/nodes/expand.js +5 -0
  106. package/dist/esm/next-schema/nodes/hardBreak.js +5 -0
  107. package/dist/esm/next-schema/nodes/inlineCard.js +10 -0
  108. package/dist/esm/next-schema/nodes/layoutColumn.js +5 -0
  109. package/dist/esm/next-schema/nodes/layoutSection.js +12 -0
  110. package/dist/esm/next-schema/nodes/list.js +20 -1
  111. package/dist/esm/next-schema/nodes/media.js +10 -0
  112. package/dist/esm/next-schema/nodes/mediaInline.js +5 -0
  113. package/dist/esm/next-schema/nodes/mediaSingle.js +10 -0
  114. package/dist/esm/next-schema/nodes/nestedExpand.js +5 -0
  115. package/dist/esm/next-schema/nodes/panel.js +5 -0
  116. package/dist/esm/next-schema/nodes/placeholder.js +5 -0
  117. package/dist/esm/next-schema/nodes/rule.js +9 -1
  118. package/dist/esm/schema/index.js +1 -1
  119. package/dist/esm/schema/nodes/block-card.js +47 -0
  120. package/dist/esm/schema/nodes/blockquote.js +19 -1
  121. package/dist/esm/schema/nodes/bullet-list.js +19 -0
  122. package/dist/esm/schema/nodes/caption.js +19 -0
  123. package/dist/esm/schema/nodes/code-block.js +71 -1
  124. package/dist/esm/schema/nodes/date.js +21 -0
  125. package/dist/esm/schema/nodes/embed-card.js +35 -0
  126. package/dist/esm/schema/nodes/emoji.js +71 -0
  127. package/dist/esm/schema/nodes/expand.js +55 -0
  128. package/dist/esm/schema/nodes/hard-break.js +17 -0
  129. package/dist/esm/schema/nodes/index.js +19 -19
  130. package/dist/esm/schema/nodes/inline-card.js +45 -0
  131. package/dist/esm/schema/nodes/layout-column.js +36 -0
  132. package/dist/esm/schema/nodes/layout-section.js +30 -0
  133. package/dist/esm/schema/nodes/list-item.js +33 -0
  134. package/dist/esm/schema/nodes/media-inline.js +10 -1
  135. package/dist/esm/schema/nodes/media-single.js +21 -1
  136. package/dist/esm/schema/nodes/media.js +19 -3
  137. package/dist/esm/schema/nodes/nested-expand.js +32 -6
  138. package/dist/esm/schema/nodes/ordered-list.js +53 -2
  139. package/dist/esm/schema/nodes/panel.js +12 -4
  140. package/dist/esm/schema/nodes/placeholder.js +23 -0
  141. package/dist/esm/schema/nodes/rule.js +17 -0
  142. package/dist/esm/validator-schema/generated/validatorSpec.js +142 -0
  143. package/dist/json-schema/v1/full.json +125 -2
  144. package/dist/json-schema/v1/stage-0.json +137 -2
  145. package/dist/types/index.d.ts +2 -2
  146. package/dist/types/next-schema/generated/nodeTypes.d.ts +62 -0
  147. package/dist/types/next-schema/groups/nonNestableBlockContentGroup.d.ts +7 -0
  148. package/dist/types/next-schema/groups/tableCellContentPseudoGroup.d.ts +7 -0
  149. package/dist/types/next-schema/nodes/blockquote.d.ts +7 -0
  150. package/dist/types/next-schema/nodes/layoutSection.d.ts +5 -0
  151. package/dist/types/schema/index.d.ts +1 -1
  152. package/dist/types/schema/nodes/block-card.d.ts +4 -0
  153. package/dist/types/schema/nodes/blockquote.d.ts +4 -0
  154. package/dist/types/schema/nodes/bullet-list.d.ts +1 -0
  155. package/dist/types/schema/nodes/caption.d.ts +4 -0
  156. package/dist/types/schema/nodes/code-block.d.ts +2 -0
  157. package/dist/types/schema/nodes/date.d.ts +2 -0
  158. package/dist/types/schema/nodes/embed-card.d.ts +2 -0
  159. package/dist/types/schema/nodes/emoji.d.ts +2 -0
  160. package/dist/types/schema/nodes/expand.d.ts +2 -0
  161. package/dist/types/schema/nodes/hard-break.d.ts +2 -0
  162. package/dist/types/schema/nodes/index.d.ts +19 -19
  163. package/dist/types/schema/nodes/inline-card.d.ts +1 -0
  164. package/dist/types/schema/nodes/layout-column.d.ts +2 -0
  165. package/dist/types/schema/nodes/layout-section.d.ts +4 -0
  166. package/dist/types/schema/nodes/list-item.d.ts +2 -0
  167. package/dist/types/schema/nodes/media-inline.d.ts +1 -0
  168. package/dist/types/schema/nodes/media-single.d.ts +3 -1
  169. package/dist/types/schema/nodes/media.d.ts +3 -1
  170. package/dist/types/schema/nodes/nested-expand.d.ts +2 -0
  171. package/dist/types/schema/nodes/ordered-list.d.ts +2 -0
  172. package/dist/types/schema/nodes/panel.d.ts +2 -0
  173. package/dist/types/schema/nodes/placeholder.d.ts +2 -0
  174. package/dist/types/schema/nodes/rule.d.ts +4 -0
  175. package/dist/types/schema/nodes/types/list.d.ts +7 -0
  176. package/dist/types/schema/nodes/types/rich-media-common.d.ts +1 -0
  177. package/dist/types/validator-schema/generated/validatorSpec.d.ts +142 -0
  178. package/json-schema/v1/full.json +125 -2
  179. package/json-schema/v1/stage-0.json +137 -2
  180. package/package.json +2 -2
  181. package/schema-generators/__tests__/unit/adfToValidatorSpec.unit.ts +1 -0
@@ -10,6 +10,7 @@ export interface LayoutColumnDefinition {
10
10
  * @maximum 100
11
11
  */
12
12
  width: number;
13
+ localId?: string;
13
14
  };
14
15
  /**
15
16
  * @minItems 1
@@ -18,3 +19,4 @@ export interface LayoutColumnDefinition {
18
19
  content: Array<BlockContent>;
19
20
  }
20
21
  export declare const layoutColumn: import("prosemirror-model").NodeSpec;
22
+ export declare const layoutColumnWithLocalId: import("prosemirror-model").NodeSpec;
@@ -7,6 +7,9 @@ export type LayoutSectionBaseDefinition = {
7
7
  type: 'layoutSection';
8
8
  marks?: Array<BreakoutMarkDefinition>;
9
9
  content: Array<LayoutColumnDefinition>;
10
+ attrs?: {
11
+ localId?: string;
12
+ };
10
13
  };
11
14
  /**
12
15
  * Need duplicate `type` and `marks` to make both validator and json-schema satisfied
@@ -42,3 +45,4 @@ export type LayoutSectionDefinition = LayoutSectionFullDefinition | LayoutSectio
42
45
  export declare const layoutSection: import("prosemirror-model").NodeSpec;
43
46
  export declare const layoutSectionFull: import("prosemirror-model").NodeSpec;
44
47
  export declare const layoutSectionWithSingleColumn: import("prosemirror-model").NodeSpec;
48
+ export declare const layoutSectionWithSingleColumnLocalId: import("prosemirror-model").NodeSpec;
@@ -3,8 +3,10 @@
3
3
  * @description this node allows task-list to be nested inside list-item
4
4
  */
5
5
  export declare const listItem: import("prosemirror-model").NodeSpec;
6
+ export declare const listItemWithLocalId: import("prosemirror-model").NodeSpec;
6
7
  /**
7
8
  * @name list_item_with_decision_stage0
8
9
  * @description this node allows decisions to be nested inside list-item
9
10
  */
10
11
  export declare const listItemWithDecisionStage0: import("prosemirror-model").NodeSpec;
12
+ export declare const listItemWithNestedDecisionAndLocalIdStage0: import("prosemirror-model").NodeSpec;
@@ -17,3 +17,4 @@ export interface MediaInlineDefinition {
17
17
  marks?: Array<LinkDefinition | BorderMarkDefinition | AnnotationMarkDefinition>;
18
18
  }
19
19
  export declare const mediaInline: NodeSpec;
20
+ export declare const mediaInlineWithLocalId: NodeSpec;
@@ -51,14 +51,16 @@ export declare const defaultAttrs: {
51
51
  default: string;
52
52
  };
53
53
  };
54
- export declare const mediaSingleSpec: ({ withCaption, withExtendedWidthTypes, }: {
54
+ export declare const mediaSingleSpec: ({ withCaption, withExtendedWidthTypes, generateLocalId, }: {
55
55
  withCaption?: boolean | undefined;
56
56
  withExtendedWidthTypes?: boolean | undefined;
57
+ generateLocalId?: boolean | undefined;
57
58
  }) => NodeSpec;
58
59
  export declare const mediaSingle: NodeSpec;
59
60
  export declare const mediaSingleWithCaption: NodeSpec;
60
61
  export declare const mediaSingleWithWidthType: NodeSpec;
61
62
  export declare const mediaSingleFull: NodeSpec;
63
+ export declare const mediaSingleFullWithLocalId: NodeSpec;
62
64
  export declare const toJSON: (node: PMNode) => {
63
65
  attrs: any;
64
66
  };
@@ -40,6 +40,7 @@ export interface MediaBaseAttributes {
40
40
  __contextId?: string | null;
41
41
  __mediaTraceId?: string | null;
42
42
  __external?: boolean;
43
+ localId?: string;
43
44
  }
44
45
  export interface MediaAttributes extends MediaBaseAttributes {
45
46
  type: 'file' | 'link';
@@ -59,8 +60,9 @@ export declare const defaultAttrs: {
59
60
  export interface MutableMediaAttributes extends MediaAttributes {
60
61
  [key: string]: string | number | undefined | null | boolean;
61
62
  }
62
- export declare const createMediaSpec: (attributes: Partial<NodeSpec["attrs"]>, inline?: boolean) => NodeSpec;
63
+ export declare const createMediaSpec: (attributes: Partial<NodeSpec["attrs"]>, inline?: boolean, generateLocalId?: boolean) => NodeSpec;
63
64
  export declare const media: NodeSpec;
65
+ export declare const mediaWithLocalId: NodeSpec;
64
66
  export declare const camelCaseToKebabCase: (str: string) => string;
65
67
  export declare const copyPrivateAttributes: (from: Record<string, any>, to: Record<string, any>, map?: ((str: string) => string) | undefined) => void;
66
68
  export declare const toJSON: (node: PMNode) => {
@@ -24,6 +24,7 @@ export interface NestedExpandBaseDefinition {
24
24
  attrs: {
25
25
  title?: string;
26
26
  __expanded?: boolean;
27
+ localId?: string;
27
28
  };
28
29
  content: NestedExpandContent;
29
30
  }
@@ -36,3 +37,4 @@ export type NestedExpandDefinition = NestedExpandBaseDefinition & NoMark;
36
37
  * @description an expand that can be nested (eg. inside table, layout).
37
38
  */
38
39
  export declare const nestedExpand: import("prosemirror-model").NodeSpec;
40
+ export declare const nestedExpandWithLocalId: import("prosemirror-model").NodeSpec;
@@ -1,3 +1,5 @@
1
1
  export declare const orderedListSelector = ".ak-ol";
2
2
  export declare const orderedList: import("prosemirror-model").NodeSpec;
3
+ export declare const orderedListWithLocalId: import("prosemirror-model").NodeSpec;
3
4
  export declare const orderedListWithOrder: import("prosemirror-model").NodeSpec;
5
+ export declare const orderedListWithOrderAndLocalId: import("prosemirror-model").NodeSpec;
@@ -24,6 +24,7 @@ export interface PanelAttributes {
24
24
  panelIconId?: string;
25
25
  panelIconText?: string;
26
26
  panelColor?: string;
27
+ localId?: string;
27
28
  }
28
29
  /**
29
30
  * @name panel_node
@@ -47,3 +48,4 @@ export interface DOMAttributes {
47
48
  * addition to content allowed inside panel
48
49
  */
49
50
  export declare const extendedPanel: (allowCustomPanel: boolean) => import("prosemirror-model").NodeSpec;
51
+ export declare const extendedPanelWithLocalId: (allowCustomPanel: boolean) => import("prosemirror-model").NodeSpec;
@@ -5,6 +5,8 @@ export interface PlaceholderDefinition {
5
5
  type: 'placeholder';
6
6
  attrs: {
7
7
  text: string;
8
+ localId?: string;
8
9
  };
9
10
  }
10
11
  export declare const placeholder: import("prosemirror-model").NodeSpec;
12
+ export declare const placeholderWithLocalId: import("prosemirror-model").NodeSpec;
@@ -3,5 +3,9 @@
3
3
  */
4
4
  export interface RuleDefinition {
5
5
  type: 'rule';
6
+ attrs?: {
7
+ localId?: string;
8
+ };
6
9
  }
7
10
  export declare const rule: import("prosemirror-model").NodeSpec;
11
+ export declare const ruleWithLocalId: import("prosemirror-model").NodeSpec;
@@ -15,6 +15,9 @@ export interface ListItemDefinition {
15
15
  * @allowUnsupportedBlock true
16
16
  */
17
17
  content: ListItemArray;
18
+ attrs?: {
19
+ localId?: string;
20
+ };
18
21
  }
19
22
  /**
20
23
  * @name bulletList_node
@@ -25,6 +28,9 @@ export interface BulletListDefinition {
25
28
  * @minItems 1
26
29
  */
27
30
  content: Array<ListItemDefinition>;
31
+ attrs?: {
32
+ localId?: string;
33
+ };
28
34
  }
29
35
  /**
30
36
  * @name orderedList_node
@@ -40,5 +46,6 @@ export interface OrderedListDefinition {
40
46
  * @minimum 0
41
47
  */
42
48
  order?: number;
49
+ localId?: string;
43
50
  };
44
51
  }
@@ -6,6 +6,7 @@ export interface RichMediaAttributes {
6
6
  */
7
7
  width?: number;
8
8
  layout: Layout;
9
+ localId?: string;
9
10
  }
10
11
  export interface OptionalRichMediaAttributes {
11
12
  width?: number;
@@ -58,6 +58,10 @@ export declare const blockCard: {
58
58
  };
59
59
  attrs: ({
60
60
  props: {
61
+ localId: {
62
+ type: string;
63
+ optional: boolean;
64
+ };
61
65
  url: {
62
66
  type: string;
63
67
  optional: boolean;
@@ -106,6 +110,10 @@ export declare const blockCard: {
106
110
  validatorFn: string;
107
111
  optional?: undefined;
108
112
  };
113
+ localId: {
114
+ type: string;
115
+ optional: boolean;
116
+ };
109
117
  datasource?: undefined;
110
118
  width?: undefined;
111
119
  layout?: undefined;
@@ -116,6 +124,10 @@ export declare const blockCard: {
116
124
  data: {
117
125
  type: string;
118
126
  };
127
+ localId: {
128
+ type: string;
129
+ optional: boolean;
130
+ };
119
131
  url?: undefined;
120
132
  datasource?: undefined;
121
133
  width?: undefined;
@@ -131,6 +143,15 @@ export declare const blockquote: {
131
143
  type: string;
132
144
  values: string[];
133
145
  };
146
+ attrs: {
147
+ props: {
148
+ localId: {
149
+ type: string;
150
+ optional: boolean;
151
+ };
152
+ };
153
+ optional: boolean;
154
+ };
134
155
  content: {
135
156
  type: string;
136
157
  items: string[][];
@@ -245,6 +266,15 @@ export declare const bulletList: {
245
266
  type: string;
246
267
  values: string[];
247
268
  };
269
+ attrs: {
270
+ props: {
271
+ localId: {
272
+ type: string;
273
+ optional: boolean;
274
+ };
275
+ };
276
+ optional: boolean;
277
+ };
248
278
  content: {
249
279
  type: string;
250
280
  items: string[][];
@@ -258,6 +288,15 @@ export declare const caption: {
258
288
  type: string;
259
289
  values: string[];
260
290
  };
291
+ attrs: {
292
+ props: {
293
+ localId: {
294
+ type: string;
295
+ optional: boolean;
296
+ };
297
+ };
298
+ optional: boolean;
299
+ };
261
300
  content: {
262
301
  type: string;
263
302
  items: string[][];
@@ -290,6 +329,10 @@ export declare const codeBlock: {
290
329
  type: string;
291
330
  optional: boolean;
292
331
  };
332
+ localId: {
333
+ type: string;
334
+ optional: boolean;
335
+ };
293
336
  };
294
337
  optional: boolean;
295
338
  };
@@ -356,6 +399,10 @@ export declare const date: {
356
399
  minLength: number;
357
400
  type: string;
358
401
  };
402
+ localId: {
403
+ type: string;
404
+ optional: boolean;
405
+ };
359
406
  };
360
407
  };
361
408
  marks: {
@@ -465,6 +512,10 @@ export declare const embedCard: {
465
512
  type: string;
466
513
  optional: boolean;
467
514
  };
515
+ localId: {
516
+ type: string;
517
+ optional: boolean;
518
+ };
468
519
  };
469
520
  };
470
521
  };
@@ -488,6 +539,10 @@ export declare const emoji: {
488
539
  type: string;
489
540
  optional: boolean;
490
541
  };
542
+ localId: {
543
+ type: string;
544
+ optional: boolean;
545
+ };
491
546
  };
492
547
  };
493
548
  marks: {
@@ -509,6 +564,10 @@ export declare const expand: {
509
564
  type: string;
510
565
  optional: boolean;
511
566
  };
567
+ localId: {
568
+ type: string;
569
+ optional: boolean;
570
+ };
512
571
  };
513
572
  optional: boolean;
514
573
  };
@@ -632,6 +691,10 @@ export declare const hardBreak: {
632
691
  values: string[];
633
692
  optional: boolean;
634
693
  };
694
+ localId: {
695
+ type: string;
696
+ optional: boolean;
697
+ };
635
698
  };
636
699
  optional: boolean;
637
700
  };
@@ -727,6 +790,10 @@ export declare const inlineCard: {
727
790
  type: string;
728
791
  validatorFn: string;
729
792
  };
793
+ localId: {
794
+ type: string;
795
+ optional: boolean;
796
+ };
730
797
  data?: undefined;
731
798
  };
732
799
  } | {
@@ -734,6 +801,10 @@ export declare const inlineCard: {
734
801
  data: {
735
802
  type: string;
736
803
  };
804
+ localId: {
805
+ type: string;
806
+ optional: boolean;
807
+ };
737
808
  url?: undefined;
738
809
  };
739
810
  })[];
@@ -805,6 +876,10 @@ export declare const layoutColumn: {
805
876
  minimum: number;
806
877
  maximum: number;
807
878
  };
879
+ localId: {
880
+ type: string;
881
+ optional: boolean;
882
+ };
808
883
  };
809
884
  };
810
885
  content: {
@@ -821,6 +896,15 @@ export declare const layoutSection: {
821
896
  type: string;
822
897
  values: string[];
823
898
  };
899
+ attrs: {
900
+ props: {
901
+ localId: {
902
+ type: string;
903
+ optional: boolean;
904
+ };
905
+ };
906
+ optional: boolean;
907
+ };
824
908
  content: {
825
909
  type: string;
826
910
  items: string[];
@@ -860,6 +944,10 @@ export declare const layoutSection_with_single_column: (string | {
860
944
  values: string[];
861
945
  optional: boolean;
862
946
  };
947
+ localId: {
948
+ type: string;
949
+ optional: boolean;
950
+ };
863
951
  };
864
952
  optional: boolean;
865
953
  };
@@ -915,6 +1003,15 @@ export declare const listItem: {
915
1003
  type: string;
916
1004
  values: string[];
917
1005
  };
1006
+ attrs: {
1007
+ props: {
1008
+ localId: {
1009
+ type: string;
1010
+ optional: boolean;
1011
+ };
1012
+ };
1013
+ optional: boolean;
1014
+ };
918
1015
  content: {
919
1016
  type: string;
920
1017
  isTupleLike: boolean;
@@ -947,6 +1044,10 @@ export declare const media: {
947
1044
  type: string;
948
1045
  values: string[];
949
1046
  };
1047
+ localId: {
1048
+ type: string;
1049
+ optional: boolean;
1050
+ };
950
1051
  id: {
951
1052
  minLength: number;
952
1053
  type: string;
@@ -979,6 +1080,10 @@ export declare const media: {
979
1080
  type: string;
980
1081
  values: string[];
981
1082
  };
1083
+ localId: {
1084
+ type: string;
1085
+ optional: boolean;
1086
+ };
982
1087
  alt: {
983
1088
  type: string;
984
1089
  optional: boolean;
@@ -1034,6 +1139,10 @@ export declare const mediaInline: {
1034
1139
  values: string[];
1035
1140
  optional: boolean;
1036
1141
  };
1142
+ localId: {
1143
+ type: string;
1144
+ optional: boolean;
1145
+ };
1037
1146
  url: {
1038
1147
  type: string;
1039
1148
  optional: boolean;
@@ -1083,6 +1192,10 @@ export declare const mediaSingle: {
1083
1192
  };
1084
1193
  attrs: ({
1085
1194
  props: {
1195
+ localId: {
1196
+ type: string;
1197
+ optional: boolean;
1198
+ };
1086
1199
  width: {
1087
1200
  type: string;
1088
1201
  minimum: number;
@@ -1101,6 +1214,10 @@ export declare const mediaSingle: {
1101
1214
  };
1102
1215
  } | {
1103
1216
  props: {
1217
+ localId: {
1218
+ type: string;
1219
+ optional: boolean;
1220
+ };
1104
1221
  width: {
1105
1222
  type: string;
1106
1223
  minimum: number;
@@ -1255,6 +1372,10 @@ export declare const nestedExpand: {
1255
1372
  type: string;
1256
1373
  optional: boolean;
1257
1374
  };
1375
+ localId: {
1376
+ type: string;
1377
+ optional: boolean;
1378
+ };
1258
1379
  };
1259
1380
  };
1260
1381
  content: string;
@@ -1291,6 +1412,10 @@ export declare const orderedList: {
1291
1412
  minimum: number;
1292
1413
  optional: boolean;
1293
1414
  };
1415
+ localId: {
1416
+ type: string;
1417
+ optional: boolean;
1418
+ };
1294
1419
  };
1295
1420
  optional: boolean;
1296
1421
  };
@@ -1329,6 +1454,10 @@ export declare const panel: {
1329
1454
  type: string;
1330
1455
  optional: boolean;
1331
1456
  };
1457
+ localId: {
1458
+ type: string;
1459
+ optional: boolean;
1460
+ };
1332
1461
  };
1333
1462
  };
1334
1463
  content: {
@@ -1406,6 +1535,10 @@ export declare const placeholder: {
1406
1535
  text: {
1407
1536
  type: string;
1408
1537
  };
1538
+ localId: {
1539
+ type: string;
1540
+ optional: boolean;
1541
+ };
1409
1542
  };
1410
1543
  };
1411
1544
  };
@@ -1416,6 +1549,15 @@ export declare const rule: {
1416
1549
  type: string;
1417
1550
  values: string[];
1418
1551
  };
1552
+ attrs: {
1553
+ props: {
1554
+ localId: {
1555
+ type: string;
1556
+ optional: boolean;
1557
+ };
1558
+ };
1559
+ optional: boolean;
1560
+ };
1419
1561
  };
1420
1562
  };
1421
1563
  export declare const status: {