@atlaskit/adf-schema 36.4.0 → 36.5.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 (262) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/cjs/next-schema/full-schema.adf.js +15 -0
  3. package/dist/cjs/next-schema/groups/alignementMarkExclusionGroup.js +9 -0
  4. package/dist/cjs/next-schema/groups/annotationGroup.js +8 -0
  5. package/dist/cjs/next-schema/groups/blockGroup.js +25 -0
  6. package/dist/cjs/next-schema/groups/blockRootOnlyGroup.js +8 -0
  7. package/dist/cjs/next-schema/groups/colorGroup.js +9 -0
  8. package/dist/cjs/next-schema/groups/fontStyleGroup.js +13 -0
  9. package/dist/cjs/next-schema/groups/indentationMarkExclusionGroup.js +9 -0
  10. package/dist/cjs/next-schema/groups/inlineGroup.js +18 -0
  11. package/dist/cjs/next-schema/groups/linkMarkGroup.js +9 -0
  12. package/dist/cjs/next-schema/groups/nonNestableBlockContentGroup.js +24 -0
  13. package/dist/cjs/next-schema/groups/searchQueryMarkGroup.js +8 -0
  14. package/dist/cjs/next-schema/marks/alignment.js +18 -0
  15. package/dist/cjs/next-schema/marks/annotation.js +21 -0
  16. package/dist/cjs/next-schema/marks/border.js +20 -0
  17. package/dist/cjs/next-schema/marks/breakout.js +18 -0
  18. package/dist/cjs/next-schema/marks/code.js +15 -0
  19. package/dist/cjs/next-schema/marks/dataConsumer.js +18 -0
  20. package/dist/cjs/next-schema/marks/em.js +10 -0
  21. package/dist/cjs/next-schema/marks/fragment.js +21 -0
  22. package/dist/cjs/next-schema/marks/indentation.js +18 -0
  23. package/dist/cjs/next-schema/marks/link.js +40 -0
  24. package/dist/cjs/next-schema/marks/strike.js +10 -0
  25. package/dist/cjs/next-schema/marks/strong.js +10 -0
  26. package/dist/cjs/next-schema/marks/subsup.js +17 -0
  27. package/dist/cjs/next-schema/marks/textColor.js +15 -0
  28. package/dist/cjs/next-schema/marks/underline.js +10 -0
  29. package/dist/cjs/next-schema/nodes/blockCard.js +34 -0
  30. package/dist/cjs/next-schema/nodes/blockquote.js +16 -0
  31. package/dist/cjs/next-schema/nodes/bodiedExtension.js +51 -0
  32. package/dist/cjs/next-schema/nodes/caption.js +21 -0
  33. package/dist/cjs/next-schema/nodes/codeBlock.js +27 -0
  34. package/dist/cjs/next-schema/nodes/date.js +17 -0
  35. package/dist/cjs/next-schema/nodes/decisionItem.js +22 -0
  36. package/dist/cjs/next-schema/nodes/decisionList.js +19 -0
  37. package/dist/cjs/next-schema/nodes/embedCard.js +36 -0
  38. package/dist/cjs/next-schema/nodes/emoji.js +27 -0
  39. package/dist/cjs/next-schema/nodes/expand.js +30 -0
  40. package/dist/cjs/next-schema/nodes/extension.js +45 -0
  41. package/dist/cjs/next-schema/nodes/extensionFrame.js +33 -0
  42. package/dist/cjs/next-schema/nodes/hardBreak.js +18 -0
  43. package/dist/cjs/next-schema/nodes/heading.js +28 -0
  44. package/dist/cjs/next-schema/nodes/inlineCard.js +27 -0
  45. package/dist/cjs/next-schema/nodes/inlineExtension.js +36 -0
  46. package/dist/cjs/next-schema/nodes/layoutColumn.js +21 -0
  47. package/dist/cjs/next-schema/nodes/layoutSection.js +14 -0
  48. package/dist/cjs/next-schema/nodes/list.js +34 -0
  49. package/dist/cjs/next-schema/nodes/media.js +89 -0
  50. package/dist/cjs/next-schema/nodes/mediaGroup.js +12 -0
  51. package/dist/cjs/next-schema/nodes/mediaInline.js +78 -0
  52. package/dist/cjs/next-schema/nodes/mediaSingle.js +39 -0
  53. package/dist/cjs/next-schema/nodes/mention.js +33 -0
  54. package/dist/cjs/next-schema/nodes/multiBodiedExtension.js +46 -0
  55. package/dist/cjs/next-schema/nodes/nestedExpand.js +35 -0
  56. package/dist/cjs/next-schema/nodes/panel.js +48 -0
  57. package/dist/cjs/next-schema/nodes/paragraph.js +21 -0
  58. package/dist/cjs/next-schema/nodes/placeholder.js +16 -0
  59. package/dist/cjs/next-schema/nodes/rule.js +8 -0
  60. package/dist/cjs/next-schema/nodes/status.js +31 -0
  61. package/dist/cjs/next-schema/nodes/table.js +43 -0
  62. package/dist/cjs/next-schema/nodes/tableCell.js +50 -0
  63. package/dist/cjs/next-schema/nodes/tableHeader.js +50 -0
  64. package/dist/cjs/next-schema/nodes/tableRow.js +13 -0
  65. package/dist/cjs/next-schema/nodes/task.js +37 -0
  66. package/dist/cjs/next-schema/nodes/text.js +21 -0
  67. package/dist/es2019/next-schema/full-schema.adf.js +9 -0
  68. package/dist/es2019/next-schema/groups/alignementMarkExclusionGroup.js +3 -0
  69. package/dist/es2019/next-schema/groups/annotationGroup.js +2 -0
  70. package/dist/es2019/next-schema/groups/blockGroup.js +19 -0
  71. package/dist/es2019/next-schema/groups/blockRootOnlyGroup.js +2 -0
  72. package/dist/es2019/next-schema/groups/colorGroup.js +3 -0
  73. package/dist/es2019/next-schema/groups/fontStyleGroup.js +7 -0
  74. package/dist/es2019/next-schema/groups/indentationMarkExclusionGroup.js +3 -0
  75. package/dist/es2019/next-schema/groups/inlineGroup.js +12 -0
  76. package/dist/es2019/next-schema/groups/linkMarkGroup.js +3 -0
  77. package/dist/es2019/next-schema/groups/nonNestableBlockContentGroup.js +19 -0
  78. package/dist/es2019/next-schema/groups/searchQueryMarkGroup.js +2 -0
  79. package/dist/es2019/next-schema/marks/alignment.js +12 -0
  80. package/dist/es2019/next-schema/marks/annotation.js +15 -0
  81. package/dist/es2019/next-schema/marks/border.js +14 -0
  82. package/dist/es2019/next-schema/marks/breakout.js +12 -0
  83. package/dist/es2019/next-schema/marks/code.js +9 -0
  84. package/dist/es2019/next-schema/marks/dataConsumer.js +12 -0
  85. package/dist/es2019/next-schema/marks/em.js +4 -0
  86. package/dist/es2019/next-schema/marks/fragment.js +15 -0
  87. package/dist/es2019/next-schema/marks/indentation.js +12 -0
  88. package/dist/es2019/next-schema/marks/link.js +34 -0
  89. package/dist/es2019/next-schema/marks/strike.js +4 -0
  90. package/dist/es2019/next-schema/marks/strong.js +4 -0
  91. package/dist/es2019/next-schema/marks/subsup.js +11 -0
  92. package/dist/es2019/next-schema/marks/textColor.js +9 -0
  93. package/dist/es2019/next-schema/marks/underline.js +4 -0
  94. package/dist/es2019/next-schema/nodes/blockCard.js +28 -0
  95. package/dist/es2019/next-schema/nodes/blockquote.js +10 -0
  96. package/dist/es2019/next-schema/nodes/bodiedExtension.js +43 -0
  97. package/dist/es2019/next-schema/nodes/caption.js +16 -0
  98. package/dist/es2019/next-schema/nodes/codeBlock.js +21 -0
  99. package/dist/es2019/next-schema/nodes/date.js +11 -0
  100. package/dist/es2019/next-schema/nodes/decisionItem.js +16 -0
  101. package/dist/es2019/next-schema/nodes/decisionList.js +13 -0
  102. package/dist/es2019/next-schema/nodes/embedCard.js +30 -0
  103. package/dist/es2019/next-schema/nodes/emoji.js +21 -0
  104. package/dist/es2019/next-schema/nodes/expand.js +22 -0
  105. package/dist/es2019/next-schema/nodes/extension.js +39 -0
  106. package/dist/es2019/next-schema/nodes/extensionFrame.js +27 -0
  107. package/dist/es2019/next-schema/nodes/hardBreak.js +12 -0
  108. package/dist/es2019/next-schema/nodes/heading.js +22 -0
  109. package/dist/es2019/next-schema/nodes/inlineCard.js +21 -0
  110. package/dist/es2019/next-schema/nodes/inlineExtension.js +30 -0
  111. package/dist/es2019/next-schema/nodes/layoutColumn.js +15 -0
  112. package/dist/es2019/next-schema/nodes/layoutSection.js +8 -0
  113. package/dist/es2019/next-schema/nodes/list.js +28 -0
  114. package/dist/es2019/next-schema/nodes/media.js +83 -0
  115. package/dist/es2019/next-schema/nodes/mediaGroup.js +6 -0
  116. package/dist/es2019/next-schema/nodes/mediaInline.js +72 -0
  117. package/dist/es2019/next-schema/nodes/mediaSingle.js +33 -0
  118. package/dist/es2019/next-schema/nodes/mention.js +27 -0
  119. package/dist/es2019/next-schema/nodes/multiBodiedExtension.js +40 -0
  120. package/dist/es2019/next-schema/nodes/nestedExpand.js +29 -0
  121. package/dist/es2019/next-schema/nodes/panel.js +42 -0
  122. package/dist/es2019/next-schema/nodes/paragraph.js +15 -0
  123. package/dist/es2019/next-schema/nodes/placeholder.js +10 -0
  124. package/dist/es2019/next-schema/nodes/rule.js +2 -0
  125. package/dist/es2019/next-schema/nodes/status.js +25 -0
  126. package/dist/es2019/next-schema/nodes/table.js +37 -0
  127. package/dist/es2019/next-schema/nodes/tableCell.js +44 -0
  128. package/dist/es2019/next-schema/nodes/tableHeader.js +44 -0
  129. package/dist/es2019/next-schema/nodes/tableRow.js +7 -0
  130. package/dist/es2019/next-schema/nodes/task.js +31 -0
  131. package/dist/es2019/next-schema/nodes/text.js +15 -0
  132. package/dist/esm/next-schema/full-schema.adf.js +9 -0
  133. package/dist/esm/next-schema/groups/alignementMarkExclusionGroup.js +3 -0
  134. package/dist/esm/next-schema/groups/annotationGroup.js +2 -0
  135. package/dist/esm/next-schema/groups/blockGroup.js +19 -0
  136. package/dist/esm/next-schema/groups/blockRootOnlyGroup.js +2 -0
  137. package/dist/esm/next-schema/groups/colorGroup.js +3 -0
  138. package/dist/esm/next-schema/groups/fontStyleGroup.js +7 -0
  139. package/dist/esm/next-schema/groups/indentationMarkExclusionGroup.js +3 -0
  140. package/dist/esm/next-schema/groups/inlineGroup.js +12 -0
  141. package/dist/esm/next-schema/groups/linkMarkGroup.js +3 -0
  142. package/dist/esm/next-schema/groups/nonNestableBlockContentGroup.js +19 -0
  143. package/dist/esm/next-schema/groups/searchQueryMarkGroup.js +2 -0
  144. package/dist/esm/next-schema/marks/alignment.js +12 -0
  145. package/dist/esm/next-schema/marks/annotation.js +15 -0
  146. package/dist/esm/next-schema/marks/border.js +14 -0
  147. package/dist/esm/next-schema/marks/breakout.js +12 -0
  148. package/dist/esm/next-schema/marks/code.js +9 -0
  149. package/dist/esm/next-schema/marks/dataConsumer.js +12 -0
  150. package/dist/esm/next-schema/marks/em.js +4 -0
  151. package/dist/esm/next-schema/marks/fragment.js +15 -0
  152. package/dist/esm/next-schema/marks/indentation.js +12 -0
  153. package/dist/esm/next-schema/marks/link.js +34 -0
  154. package/dist/esm/next-schema/marks/strike.js +4 -0
  155. package/dist/esm/next-schema/marks/strong.js +4 -0
  156. package/dist/esm/next-schema/marks/subsup.js +11 -0
  157. package/dist/esm/next-schema/marks/textColor.js +9 -0
  158. package/dist/esm/next-schema/marks/underline.js +4 -0
  159. package/dist/esm/next-schema/nodes/blockCard.js +28 -0
  160. package/dist/esm/next-schema/nodes/blockquote.js +10 -0
  161. package/dist/esm/next-schema/nodes/bodiedExtension.js +44 -0
  162. package/dist/esm/next-schema/nodes/caption.js +16 -0
  163. package/dist/esm/next-schema/nodes/codeBlock.js +21 -0
  164. package/dist/esm/next-schema/nodes/date.js +11 -0
  165. package/dist/esm/next-schema/nodes/decisionItem.js +16 -0
  166. package/dist/esm/next-schema/nodes/decisionList.js +13 -0
  167. package/dist/esm/next-schema/nodes/embedCard.js +30 -0
  168. package/dist/esm/next-schema/nodes/emoji.js +21 -0
  169. package/dist/esm/next-schema/nodes/expand.js +23 -0
  170. package/dist/esm/next-schema/nodes/extension.js +39 -0
  171. package/dist/esm/next-schema/nodes/extensionFrame.js +27 -0
  172. package/dist/esm/next-schema/nodes/hardBreak.js +12 -0
  173. package/dist/esm/next-schema/nodes/heading.js +22 -0
  174. package/dist/esm/next-schema/nodes/inlineCard.js +21 -0
  175. package/dist/esm/next-schema/nodes/inlineExtension.js +30 -0
  176. package/dist/esm/next-schema/nodes/layoutColumn.js +15 -0
  177. package/dist/esm/next-schema/nodes/layoutSection.js +8 -0
  178. package/dist/esm/next-schema/nodes/list.js +28 -0
  179. package/dist/esm/next-schema/nodes/media.js +83 -0
  180. package/dist/esm/next-schema/nodes/mediaGroup.js +6 -0
  181. package/dist/esm/next-schema/nodes/mediaInline.js +72 -0
  182. package/dist/esm/next-schema/nodes/mediaSingle.js +33 -0
  183. package/dist/esm/next-schema/nodes/mention.js +27 -0
  184. package/dist/esm/next-schema/nodes/multiBodiedExtension.js +40 -0
  185. package/dist/esm/next-schema/nodes/nestedExpand.js +29 -0
  186. package/dist/esm/next-schema/nodes/panel.js +42 -0
  187. package/dist/esm/next-schema/nodes/paragraph.js +15 -0
  188. package/dist/esm/next-schema/nodes/placeholder.js +10 -0
  189. package/dist/esm/next-schema/nodes/rule.js +2 -0
  190. package/dist/esm/next-schema/nodes/status.js +25 -0
  191. package/dist/esm/next-schema/nodes/table.js +37 -0
  192. package/dist/esm/next-schema/nodes/tableCell.js +44 -0
  193. package/dist/esm/next-schema/nodes/tableHeader.js +44 -0
  194. package/dist/esm/next-schema/nodes/tableRow.js +7 -0
  195. package/dist/esm/next-schema/nodes/task.js +31 -0
  196. package/dist/esm/next-schema/nodes/text.js +15 -0
  197. package/dist/types/next-schema/full-schema.adf.d.ts +18 -0
  198. package/dist/types/next-schema/groups/alignementMarkExclusionGroup.d.ts +1 -0
  199. package/dist/types/next-schema/groups/annotationGroup.d.ts +1 -0
  200. package/dist/types/next-schema/groups/blockGroup.d.ts +1 -0
  201. package/dist/types/next-schema/groups/blockRootOnlyGroup.d.ts +1 -0
  202. package/dist/types/next-schema/groups/colorGroup.d.ts +1 -0
  203. package/dist/types/next-schema/groups/fontStyleGroup.d.ts +1 -0
  204. package/dist/types/next-schema/groups/indentationMarkExclusionGroup.d.ts +1 -0
  205. package/dist/types/next-schema/groups/inlineGroup.d.ts +1 -0
  206. package/dist/types/next-schema/groups/linkMarkGroup.d.ts +1 -0
  207. package/dist/types/next-schema/groups/nonNestableBlockContentGroup.d.ts +114 -0
  208. package/dist/types/next-schema/groups/searchQueryMarkGroup.d.ts +1 -0
  209. package/dist/types/next-schema/marks/alignment.d.ts +1 -0
  210. package/dist/types/next-schema/marks/annotation.d.ts +1 -0
  211. package/dist/types/next-schema/marks/border.d.ts +1 -0
  212. package/dist/types/next-schema/marks/breakout.d.ts +1 -0
  213. package/dist/types/next-schema/marks/code.d.ts +1 -0
  214. package/dist/types/next-schema/marks/dataConsumer.d.ts +1 -0
  215. package/dist/types/next-schema/marks/em.d.ts +1 -0
  216. package/dist/types/next-schema/marks/fragment.d.ts +1 -0
  217. package/dist/types/next-schema/marks/indentation.d.ts +1 -0
  218. package/dist/types/next-schema/marks/link.d.ts +1 -0
  219. package/dist/types/next-schema/marks/strike.d.ts +1 -0
  220. package/dist/types/next-schema/marks/strong.d.ts +1 -0
  221. package/dist/types/next-schema/marks/subsup.d.ts +1 -0
  222. package/dist/types/next-schema/marks/textColor.d.ts +1 -0
  223. package/dist/types/next-schema/marks/underline.d.ts +1 -0
  224. package/dist/types/next-schema/nodes/blockCard.d.ts +17 -0
  225. package/dist/types/next-schema/nodes/blockquote.d.ts +19 -0
  226. package/dist/types/next-schema/nodes/bodiedExtension.d.ts +19 -0
  227. package/dist/types/next-schema/nodes/caption.d.ts +17 -0
  228. package/dist/types/next-schema/nodes/codeBlock.d.ts +38 -0
  229. package/dist/types/next-schema/nodes/date.d.ts +17 -0
  230. package/dist/types/next-schema/nodes/decisionItem.d.ts +17 -0
  231. package/dist/types/next-schema/nodes/decisionList.d.ts +17 -0
  232. package/dist/types/next-schema/nodes/embedCard.d.ts +17 -0
  233. package/dist/types/next-schema/nodes/emoji.d.ts +17 -0
  234. package/dist/types/next-schema/nodes/expand.d.ts +19 -0
  235. package/dist/types/next-schema/nodes/extension.d.ts +17 -0
  236. package/dist/types/next-schema/nodes/extensionFrame.d.ts +17 -0
  237. package/dist/types/next-schema/nodes/hardBreak.d.ts +17 -0
  238. package/dist/types/next-schema/nodes/heading.d.ts +42 -0
  239. package/dist/types/next-schema/nodes/inlineCard.d.ts +19 -0
  240. package/dist/types/next-schema/nodes/inlineExtension.d.ts +17 -0
  241. package/dist/types/next-schema/nodes/layoutColumn.d.ts +17 -0
  242. package/dist/types/next-schema/nodes/layoutSection.d.ts +17 -0
  243. package/dist/types/next-schema/nodes/list.d.ts +34 -0
  244. package/dist/types/next-schema/nodes/media.d.ts +17 -0
  245. package/dist/types/next-schema/nodes/mediaGroup.d.ts +17 -0
  246. package/dist/types/next-schema/nodes/mediaInline.d.ts +17 -0
  247. package/dist/types/next-schema/nodes/mediaSingle.d.ts +20 -0
  248. package/dist/types/next-schema/nodes/mention.d.ts +17 -0
  249. package/dist/types/next-schema/nodes/multiBodiedExtension.d.ts +17 -0
  250. package/dist/types/next-schema/nodes/nestedExpand.d.ts +17 -0
  251. package/dist/types/next-schema/nodes/panel.d.ts +17 -0
  252. package/dist/types/next-schema/nodes/paragraph.d.ts +23 -0
  253. package/dist/types/next-schema/nodes/placeholder.d.ts +17 -0
  254. package/dist/types/next-schema/nodes/rule.d.ts +17 -0
  255. package/dist/types/next-schema/nodes/status.d.ts +17 -0
  256. package/dist/types/next-schema/nodes/table.d.ts +17 -0
  257. package/dist/types/next-schema/nodes/tableCell.d.ts +17 -0
  258. package/dist/types/next-schema/nodes/tableHeader.d.ts +17 -0
  259. package/dist/types/next-schema/nodes/tableRow.d.ts +17 -0
  260. package/dist/types/next-schema/nodes/task.d.ts +34 -0
  261. package/dist/types/next-schema/nodes/text.d.ts +21 -0
  262. package/package.json +3 -3
@@ -0,0 +1,114 @@
1
+ export declare const nonNestableBlockContent: (import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }> | import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_marks"], {
18
+ root?: boolean;
19
+ atom?: boolean;
20
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
21
+ inline?: true;
22
+ code?: boolean;
23
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
24
+ defining?: boolean;
25
+ definingAsContext?: boolean;
26
+ definingForContent?: boolean;
27
+ draggable?: boolean;
28
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
29
+ isolating?: boolean;
30
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
31
+ selectable?: boolean;
32
+ whitespace?: "pre" | "normal";
33
+ } & {
34
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
35
+ }> | import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "caption"], {
36
+ root?: boolean;
37
+ atom?: boolean;
38
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
39
+ inline?: true;
40
+ code?: boolean;
41
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
42
+ defining?: boolean;
43
+ definingAsContext?: boolean;
44
+ definingForContent?: boolean;
45
+ draggable?: boolean;
46
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
47
+ isolating?: boolean;
48
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
49
+ selectable?: boolean;
50
+ whitespace?: "pre" | "normal";
51
+ } & {
52
+ atom: false;
53
+ content: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentOrSpec[];
54
+ }> | import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_alignment", "with_indentation", "with_marks"], {
55
+ root?: boolean;
56
+ atom?: boolean;
57
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
58
+ inline?: true;
59
+ code?: boolean;
60
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
61
+ defining?: boolean;
62
+ definingAsContext?: boolean;
63
+ definingForContent?: boolean;
64
+ draggable?: boolean;
65
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
66
+ isolating?: boolean;
67
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
68
+ selectable?: boolean;
69
+ whitespace?: "pre" | "normal";
70
+ } & {
71
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
72
+ } & {
73
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
74
+ } & {
75
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
76
+ }> | import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_list"], {
77
+ root?: boolean;
78
+ atom?: boolean;
79
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
80
+ inline?: true;
81
+ code?: boolean;
82
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
83
+ defining?: boolean;
84
+ definingAsContext?: boolean;
85
+ definingForContent?: boolean;
86
+ draggable?: boolean;
87
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
88
+ isolating?: boolean;
89
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
90
+ selectable?: boolean;
91
+ whitespace?: "pre" | "normal";
92
+ } & {
93
+ content: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentOneOrMoreSpec[];
94
+ }> | import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_alignment", "with_indentation"], {
95
+ root?: boolean;
96
+ atom?: boolean;
97
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
98
+ inline?: true;
99
+ code?: boolean;
100
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
101
+ defining?: boolean;
102
+ definingAsContext?: boolean;
103
+ definingForContent?: boolean;
104
+ draggable?: boolean;
105
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
106
+ isolating?: boolean;
107
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
108
+ selectable?: boolean;
109
+ whitespace?: "pre" | "normal";
110
+ } & {
111
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
112
+ } & {
113
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
114
+ }>)[];
@@ -0,0 +1 @@
1
+ export declare const searchQueryMarkGroup: import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkGroup").ADFMarkGroup;
@@ -0,0 +1 @@
1
+ export declare const alignment: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const annotation: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const border: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const breakout: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const code: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const dataConsumer: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const em: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const fragment: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const indentation: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const link: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const strike: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const strong: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const subsup: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const textColor: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1 @@
1
+ export declare const underline: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>;
@@ -0,0 +1,17 @@
1
+ export declare const blockCard: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,19 @@
1
+ export declare const blockquote: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_list"], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ } & {
18
+ content: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentOneOrMoreSpec[];
19
+ }>;
@@ -0,0 +1,19 @@
1
+ export declare const bodiedExtension: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_marks"], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ } & {
18
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
19
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const caption: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,38 @@
1
+ export declare const codeBlock: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_marks"], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ } & {
18
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
19
+ }>;
20
+ export declare const codeBlockWithMarks: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_marks"], {
21
+ root?: boolean;
22
+ atom?: boolean;
23
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
24
+ inline?: true;
25
+ code?: boolean;
26
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
27
+ defining?: boolean;
28
+ definingAsContext?: boolean;
29
+ definingForContent?: boolean;
30
+ draggable?: boolean;
31
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
32
+ isolating?: boolean;
33
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
34
+ selectable?: boolean;
35
+ whitespace?: "pre" | "normal";
36
+ } & {
37
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
38
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const date: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const decisionItem: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const decisionList: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const embedCard: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const emoji: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,19 @@
1
+ export declare const expand: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_breakout_mark"], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ } & {
18
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
19
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const extension: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const extensionFrame: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const hardBreak: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,42 @@
1
+ export declare const heading: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_alignment", "with_indentation"], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ } & {
18
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
19
+ } & {
20
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
21
+ }>;
22
+ export declare const headingWithMarks: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_alignment", "with_indentation"], {
23
+ root?: boolean;
24
+ atom?: boolean;
25
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
26
+ inline?: true;
27
+ code?: boolean;
28
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
29
+ defining?: boolean;
30
+ definingAsContext?: boolean;
31
+ definingForContent?: boolean;
32
+ draggable?: boolean;
33
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
34
+ isolating?: boolean;
35
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
36
+ selectable?: boolean;
37
+ whitespace?: "pre" | "normal";
38
+ } & {
39
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
40
+ } & {
41
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
42
+ }>;
@@ -0,0 +1,19 @@
1
+ export declare const inlineCard: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string, "with_annotation"], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ } & {
18
+ marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
19
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const inlineExtension: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const layoutColumn: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,17 @@
1
+ export declare const layoutSection: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
@@ -0,0 +1,34 @@
1
+ export declare const orderedList: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
2
+ root?: boolean;
3
+ atom?: boolean;
4
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
5
+ inline?: true;
6
+ code?: boolean;
7
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
8
+ defining?: boolean;
9
+ definingAsContext?: boolean;
10
+ definingForContent?: boolean;
11
+ draggable?: boolean;
12
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
13
+ isolating?: boolean;
14
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
15
+ selectable?: boolean;
16
+ whitespace?: "pre" | "normal";
17
+ }>;
18
+ export declare const bulletList: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
19
+ root?: boolean;
20
+ atom?: boolean;
21
+ attrs?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFAttribute").ADFAttributes;
22
+ inline?: true;
23
+ code?: boolean;
24
+ content?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentSpec[];
25
+ defining?: boolean;
26
+ definingAsContext?: boolean;
27
+ definingForContent?: boolean;
28
+ draggable?: boolean;
29
+ group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
30
+ isolating?: boolean;
31
+ marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
32
+ selectable?: boolean;
33
+ whitespace?: "pre" | "normal";
34
+ }>;