@atlaskit/adf-schema 36.14.1 → 36.15.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.
- package/CHANGELOG.md +6 -0
- package/dist/cjs/next-schema/generated/nodeTypes.js +1 -0
- package/dist/cjs/next-schema/nodes/caption.js +1 -0
- package/dist/cjs/next-schema/nodes/decisionItem.js +1 -0
- package/dist/cjs/next-schema/nodes/placeholder.js +1 -0
- package/dist/cjs/next-schema/nodes/task.js +1 -0
- package/dist/es2019/next-schema/generated/nodeTypes.js +1 -0
- package/dist/es2019/next-schema/nodes/caption.js +1 -0
- package/dist/es2019/next-schema/nodes/decisionItem.js +1 -0
- package/dist/es2019/next-schema/nodes/placeholder.js +1 -0
- package/dist/es2019/next-schema/nodes/task.js +1 -0
- package/dist/esm/next-schema/generated/nodeTypes.js +1 -0
- package/dist/esm/next-schema/nodes/caption.js +1 -0
- package/dist/esm/next-schema/nodes/decisionItem.js +1 -0
- package/dist/esm/next-schema/nodes/placeholder.js +1 -0
- package/dist/esm/next-schema/nodes/task.js +1 -0
- package/dist/types/next-schema/full-schema.adf.d.ts +3 -0
- package/dist/types/next-schema/groups/nonNestableBlockContentGroup.d.ts +12 -0
- package/dist/types/next-schema/nodes/blockCard.d.ts +3 -0
- package/dist/types/next-schema/nodes/blockquote.d.ts +3 -0
- package/dist/types/next-schema/nodes/bodiedExtension.d.ts +3 -0
- package/dist/types/next-schema/nodes/caption.d.ts +3 -0
- package/dist/types/next-schema/nodes/codeBlock.d.ts +6 -0
- package/dist/types/next-schema/nodes/confluenceUnsupportedBlock.d.ts +3 -0
- package/dist/types/next-schema/nodes/confluenceUnsupportedInline.d.ts +3 -0
- package/dist/types/next-schema/nodes/date.d.ts +3 -0
- package/dist/types/next-schema/nodes/decisionItem.d.ts +3 -0
- package/dist/types/next-schema/nodes/decisionList.d.ts +3 -0
- package/dist/types/next-schema/nodes/embedCard.d.ts +3 -0
- package/dist/types/next-schema/nodes/emoji.d.ts +3 -0
- package/dist/types/next-schema/nodes/expand.d.ts +3 -0
- package/dist/types/next-schema/nodes/extension.d.ts +3 -0
- package/dist/types/next-schema/nodes/extensionFrame.d.ts +3 -0
- package/dist/types/next-schema/nodes/hardBreak.d.ts +3 -0
- package/dist/types/next-schema/nodes/heading.d.ts +3 -0
- package/dist/types/next-schema/nodes/inlineCard.d.ts +3 -0
- package/dist/types/next-schema/nodes/inlineExtension.d.ts +3 -0
- package/dist/types/next-schema/nodes/layoutColumn.d.ts +3 -0
- package/dist/types/next-schema/nodes/layoutSection.d.ts +3 -0
- package/dist/types/next-schema/nodes/list.d.ts +6 -0
- package/dist/types/next-schema/nodes/media.d.ts +3 -0
- package/dist/types/next-schema/nodes/mediaGroup.d.ts +3 -0
- package/dist/types/next-schema/nodes/mediaInline.d.ts +3 -0
- package/dist/types/next-schema/nodes/mediaSingle.d.ts +3 -0
- package/dist/types/next-schema/nodes/mention.d.ts +3 -0
- package/dist/types/next-schema/nodes/multiBodiedExtension.d.ts +3 -0
- package/dist/types/next-schema/nodes/nestedExpand.d.ts +3 -0
- package/dist/types/next-schema/nodes/panel.d.ts +3 -0
- package/dist/types/next-schema/nodes/paragraph.d.ts +3 -0
- package/dist/types/next-schema/nodes/placeholder.d.ts +3 -0
- package/dist/types/next-schema/nodes/rule.d.ts +3 -0
- package/dist/types/next-schema/nodes/status.d.ts +3 -0
- package/dist/types/next-schema/nodes/table.d.ts +3 -0
- package/dist/types/next-schema/nodes/tableCell.d.ts +3 -0
- package/dist/types/next-schema/nodes/tableHeader.d.ts +3 -0
- package/dist/types/next-schema/nodes/tableRow.d.ts +3 -0
- package/dist/types/next-schema/nodes/task.d.ts +6 -0
- package/dist/types/next-schema/nodes/text.d.ts +3 -0
- package/dist/types/next-schema/nodes/unsupportedBlock.d.ts +3 -0
- package/dist/types/next-schema/nodes/unsupportedInline.d.ts +3 -0
- package/package.json +2 -2
- package/schema-generators/__tests__/unit/validate-pm-schema.unit.ts +0 -5
package/CHANGELOG.md
CHANGED
@@ -188,6 +188,7 @@ var date = exports.date = (0, _adfSchemaGenerator.createPMNodeSpecFactory)({
|
|
188
188
|
selectable: true
|
189
189
|
});
|
190
190
|
var placeholder = exports.placeholder = (0, _adfSchemaGenerator.createPMNodeSpecFactory)({
|
191
|
+
marks: '',
|
191
192
|
group: 'inline',
|
192
193
|
inline: true,
|
193
194
|
attrs: {
|
@@ -20,5 +20,6 @@ var caption = exports.caption = (0, _adfSchemaGenerator.adfNode)('caption').defi
|
|
20
20
|
isolating: true,
|
21
21
|
selectable: false,
|
22
22
|
marks: [_unsupportedNodeAttribute.unsupportedNodeAttribute, _unsupportedMark.unsupportedMark],
|
23
|
+
allowAnyChildMark: true,
|
23
24
|
content: [(0, _adfSchemaGenerator.$zeroPlus)((0, _adfSchemaGenerator.$or)(_hardBreak.hardBreak, _mention.mention, _emoji.emoji, _date.date, _placeholder.placeholder, _inlineCard.inlineCard, _status.status, _text.text.use('formatted'), _text.text.use('code_inline'), _unsupportedInline.unsupportedInline))]
|
24
25
|
});
|
@@ -12,6 +12,7 @@ var _unsupportedBlock = require("./unsupportedBlock");
|
|
12
12
|
var decisionItem = exports.decisionItem = (0, _adfSchemaGenerator.adfNode)('decisionItem').define({
|
13
13
|
defining: true,
|
14
14
|
marks: [_unsupportedNodeAttribute.unsupportedNodeAttribute, _unsupportedMark.unsupportedMark],
|
15
|
+
allowAnyChildMark: true,
|
15
16
|
attrs: {
|
16
17
|
localId: {
|
17
18
|
type: 'string',
|
@@ -11,6 +11,7 @@ var placeholder = exports.placeholder = (0, _adfSchemaGenerator.adfNode)('placeh
|
|
11
11
|
selectable: false,
|
12
12
|
inline: true,
|
13
13
|
marks: [_unsupportedNodeAttribute.unsupportedNodeAttribute, _unsupportedMark.unsupportedMark],
|
14
|
+
allowNoChildMark: true,
|
14
15
|
attrs: {
|
15
16
|
text: {
|
16
17
|
type: 'string',
|
@@ -14,5 +14,6 @@ export const caption = adfNode('caption').define({
|
|
14
14
|
isolating: true,
|
15
15
|
selectable: false,
|
16
16
|
marks: [unsupportedNodeAttribute, unsupportedMark],
|
17
|
+
allowAnyChildMark: true,
|
17
18
|
content: [$zeroPlus($or(hardBreak, mention, emoji, date, placeholder, inlineCard, status, text.use('formatted'), text.use('code_inline'), unsupportedInline))]
|
18
19
|
});
|
@@ -14,5 +14,6 @@ export var caption = adfNode('caption').define({
|
|
14
14
|
isolating: true,
|
15
15
|
selectable: false,
|
16
16
|
marks: [unsupportedNodeAttribute, unsupportedMark],
|
17
|
+
allowAnyChildMark: true,
|
17
18
|
content: [$zeroPlus($or(hardBreak, mention, emoji, date, placeholder, inlineCard, status, text.use('formatted'), text.use('code_inline'), unsupportedInline))]
|
18
19
|
});
|
@@ -14,7 +14,10 @@ declare const doc: import("@atlaskit/adf-schema-generator/dist/types/adfNode").A
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
20
23
|
export default doc;
|
@@ -14,8 +14,11 @@ export declare const nonNestableBlockContent: (import("@atlaskit/adf-schema-gene
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}> | import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<any, {
|
20
23
|
ignore?: import("@atlaskit/adf-schema-generator/dist/types/transforms/transformerNames").TransformerNames[];
|
21
24
|
root?: boolean;
|
@@ -32,8 +35,11 @@ export declare const nonNestableBlockContent: (import("@atlaskit/adf-schema-gene
|
|
32
35
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
33
36
|
isolating?: boolean;
|
34
37
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
38
|
+
allowAnyChildMark?: boolean;
|
39
|
+
allowNoChildMark?: boolean;
|
35
40
|
selectable?: boolean;
|
36
41
|
whitespace?: "pre" | "normal";
|
42
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
37
43
|
} & {
|
38
44
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
39
45
|
}> | import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<any, {
|
@@ -52,8 +58,11 @@ export declare const nonNestableBlockContent: (import("@atlaskit/adf-schema-gene
|
|
52
58
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
53
59
|
isolating?: boolean;
|
54
60
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
61
|
+
allowAnyChildMark?: boolean;
|
62
|
+
allowNoChildMark?: boolean;
|
55
63
|
selectable?: boolean;
|
56
64
|
whitespace?: "pre" | "normal";
|
65
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
57
66
|
} & {
|
58
67
|
atom: false;
|
59
68
|
content: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentOrSpec[];
|
@@ -73,8 +82,11 @@ export declare const nonNestableBlockContent: (import("@atlaskit/adf-schema-gene
|
|
73
82
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
74
83
|
isolating?: boolean;
|
75
84
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
85
|
+
allowAnyChildMark?: boolean;
|
86
|
+
allowNoChildMark?: boolean;
|
76
87
|
selectable?: boolean;
|
77
88
|
whitespace?: "pre" | "normal";
|
89
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
78
90
|
} & {
|
79
91
|
content: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentOneOrMoreSpec[];
|
80
92
|
}>)[];
|
@@ -14,6 +14,9 @@ export declare const blockCard: import("@atlaskit/adf-schema-generator/dist/type
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,8 +14,11 @@ export declare const blockquote: import("@atlaskit/adf-schema-generator/dist/typ
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
content: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentOneOrMoreSpec[];
|
21
24
|
}>;
|
@@ -14,8 +14,11 @@ export declare const bodiedExtension: import("@atlaskit/adf-schema-generator/dis
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
}>;
|
@@ -14,6 +14,9 @@ export declare const caption: import("@atlaskit/adf-schema-generator/dist/types/
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,8 +14,11 @@ export declare const codeBlock: import("@atlaskit/adf-schema-generator/dist/type
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
}>;
|
@@ -35,8 +38,11 @@ export declare const codeBlockWithNoMarks: import("@atlaskit/adf-schema-generato
|
|
35
38
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
36
39
|
isolating?: boolean;
|
37
40
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
41
|
+
allowAnyChildMark?: boolean;
|
42
|
+
allowNoChildMark?: boolean;
|
38
43
|
selectable?: boolean;
|
39
44
|
whitespace?: "pre" | "normal";
|
45
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
40
46
|
} & {
|
41
47
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
42
48
|
}>;
|
@@ -14,6 +14,9 @@ export declare const confluenceUnsupportedBlock: import("@atlaskit/adf-schema-ge
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const confluenceUnsupportedInline: import("@atlaskit/adf-schema-g
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const date: import("@atlaskit/adf-schema-generator/dist/types/adf
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const decisionItem: import("@atlaskit/adf-schema-generator/dist/t
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const decisionList: import("@atlaskit/adf-schema-generator/dist/t
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const embedCard: import("@atlaskit/adf-schema-generator/dist/type
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const emoji: import("@atlaskit/adf-schema-generator/dist/types/ad
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,8 +14,11 @@ export declare const expand: import("@atlaskit/adf-schema-generator/dist/types/a
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
}>;
|
@@ -14,8 +14,11 @@ export declare const extension: import("@atlaskit/adf-schema-generator/dist/type
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
}>;
|
@@ -14,6 +14,9 @@ export declare const extensionFrame: import("@atlaskit/adf-schema-generator/dist
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const hardBreak: import("@atlaskit/adf-schema-generator/dist/type
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,8 +14,11 @@ export declare const heading: import("@atlaskit/adf-schema-generator/dist/types/
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
} & {
|
@@ -14,8 +14,11 @@ export declare const inlineCard: import("@atlaskit/adf-schema-generator/dist/typ
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
}>;
|
@@ -14,8 +14,11 @@ export declare const inlineExtension: import("@atlaskit/adf-schema-generator/dis
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
}>;
|
@@ -14,6 +14,9 @@ export declare const layoutColumn: import("@atlaskit/adf-schema-generator/dist/t
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const layoutSection: import("@atlaskit/adf-schema-generator/dist/
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,8 +14,11 @@ export declare const orderedList: import("@atlaskit/adf-schema-generator/dist/ty
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
20
23
|
export declare const bulletList: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
|
21
24
|
ignore?: import("@atlaskit/adf-schema-generator/dist/types/transforms/transformerNames").TransformerNames[];
|
@@ -33,6 +36,9 @@ export declare const bulletList: import("@atlaskit/adf-schema-generator/dist/typ
|
|
33
36
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
34
37
|
isolating?: boolean;
|
35
38
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
39
|
+
allowAnyChildMark?: boolean;
|
40
|
+
allowNoChildMark?: boolean;
|
36
41
|
selectable?: boolean;
|
37
42
|
whitespace?: "pre" | "normal";
|
43
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
38
44
|
}>;
|
@@ -14,6 +14,9 @@ export declare const media: import("@atlaskit/adf-schema-generator/dist/types/ad
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const mediaGroup: import("@atlaskit/adf-schema-generator/dist/typ
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const mediaInline: import("@atlaskit/adf-schema-generator/dist/ty
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,8 +14,11 @@ export declare const mediaSingle: import("@atlaskit/adf-schema-generator/dist/ty
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
atom: false;
|
21
24
|
content: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeSpec").ADFNodeContentOrSpec[];
|
@@ -14,6 +14,9 @@ export declare const mention: import("@atlaskit/adf-schema-generator/dist/types/
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const multiBodiedExtension: import("@atlaskit/adf-schema-generato
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const nestedExpand: import("@atlaskit/adf-schema-generator/dist/t
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const panel: import("@atlaskit/adf-schema-generator/dist/types/ad
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,8 +14,11 @@ export declare const paragraph: import("@atlaskit/adf-schema-generator/dist/type
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
} & {
|
@@ -14,6 +14,9 @@ export declare const placeholder: import("@atlaskit/adf-schema-generator/dist/ty
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const rule: import("@atlaskit/adf-schema-generator/dist/types/adf
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const status: import("@atlaskit/adf-schema-generator/dist/types/a
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const table: import("@atlaskit/adf-schema-generator/dist/types/ad
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const tableCell: import("@atlaskit/adf-schema-generator/dist/type
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const tableHeader: import("@atlaskit/adf-schema-generator/dist/ty
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const tableRow: import("@atlaskit/adf-schema-generator/dist/types
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,8 +14,11 @@ export declare const taskItem: import("@atlaskit/adf-schema-generator/dist/types
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
20
23
|
export declare const taskList: import("@atlaskit/adf-schema-generator/dist/types/adfNode").ADFNode<[string], {
|
21
24
|
ignore?: import("@atlaskit/adf-schema-generator/dist/types/transforms/transformerNames").TransformerNames[];
|
@@ -33,6 +36,9 @@ export declare const taskList: import("@atlaskit/adf-schema-generator/dist/types
|
|
33
36
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
34
37
|
isolating?: boolean;
|
35
38
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
39
|
+
allowAnyChildMark?: boolean;
|
40
|
+
allowNoChildMark?: boolean;
|
36
41
|
selectable?: boolean;
|
37
42
|
whitespace?: "pre" | "normal";
|
43
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
38
44
|
}>;
|
@@ -14,8 +14,11 @@ export declare const text: import("@atlaskit/adf-schema-generator/dist/types/adf
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
} & {
|
20
23
|
marks: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<import("@atlaskit/adf-schema-generator/dist/types/types/ADFMarkSpec").ADFMarkSpec>[];
|
21
24
|
} & {
|
@@ -14,6 +14,9 @@ export declare const unsupportedBlock: import("@atlaskit/adf-schema-generator/di
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
@@ -14,6 +14,9 @@ export declare const unsupportedInline: import("@atlaskit/adf-schema-generator/d
|
|
14
14
|
group?: import("@atlaskit/adf-schema-generator/dist/types/types/ADFNodeGroup").ADFNodeGroup;
|
15
15
|
isolating?: boolean;
|
16
16
|
marks?: import("@atlaskit/adf-schema-generator/dist/types/adfMark").ADFMark<unknown>[];
|
17
|
+
allowAnyChildMark?: boolean;
|
18
|
+
allowNoChildMark?: boolean;
|
17
19
|
selectable?: boolean;
|
18
20
|
whitespace?: "pre" | "normal";
|
21
|
+
tableRole?: "table" | "row" | "cell" | "header_cell";
|
19
22
|
}>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atlaskit/adf-schema",
|
3
|
-
"version": "36.
|
3
|
+
"version": "36.15.0",
|
4
4
|
"description": "Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs",
|
5
5
|
"publishConfig": {
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
@@ -44,7 +44,7 @@
|
|
44
44
|
},
|
45
45
|
"devDependencies": {
|
46
46
|
"@atlassian/adf-schema-json": "^1.15.0",
|
47
|
-
"@atlaskit/adf-schema-generator": "^1.
|
47
|
+
"@atlaskit/adf-schema-generator": "^1.14.0",
|
48
48
|
"@atlaskit/codemod-utils": "^4.2.4",
|
49
49
|
"@atlaskit/json-schema-generator": "^3.3.9",
|
50
50
|
"@babel/cli": "^7.22.9",
|
@@ -111,11 +111,6 @@ expect.extend({
|
|
111
111
|
}),
|
112
112
|
};
|
113
113
|
|
114
|
-
if (formattedExpected.marks === '') {
|
115
|
-
// eslint-disable-next-line @typescript-eslint/no-dynamic-delete
|
116
|
-
delete formattedExpected['marks'];
|
117
|
-
}
|
118
|
-
|
119
114
|
const pass = this.equals(formattedActual, formattedExpected);
|
120
115
|
return {
|
121
116
|
pass,
|