@atlaskit/adf-schema 24.0.0 → 24.0.2
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 +13 -0
- package/dist/cjs/schema/nodes/block-card.js +3 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/schema/nodes/block-card.js +3 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/schema/nodes/block-card.js +3 -1
- package/dist/esm/version.json +1 -1
- package/dist/json-schema/package.json +8 -1
- package/dist/types-ts4.0/index.d.ts +4 -0
- package/dist/types-ts4.0/json-schema/index.d.ts +2 -0
- package/dist/types-ts4.0/schema/bitbucket-schema.d.ts +2 -0
- package/dist/types-ts4.0/schema/confluence-schema.d.ts +3 -0
- package/dist/types-ts4.0/schema/create-schema.d.ts +32 -0
- package/dist/types-ts4.0/schema/default-schema.d.ts +7 -0
- package/dist/types-ts4.0/schema/groups.d.ts +6 -0
- package/dist/types-ts4.0/schema/index.d.ts +7 -0
- package/dist/types-ts4.0/schema/inline-nodes.d.ts +1 -0
- package/dist/types-ts4.0/schema/jira-schema.d.ts +26 -0
- package/dist/types-ts4.0/schema/marks/alignment.d.ts +16 -0
- package/dist/types-ts4.0/schema/marks/annotation.d.ts +32 -0
- package/dist/types-ts4.0/schema/marks/breakout.d.ts +12 -0
- package/dist/types-ts4.0/schema/marks/code.d.ts +8 -0
- package/dist/types-ts4.0/schema/marks/confluence-inline-comment.d.ts +12 -0
- package/dist/types-ts4.0/schema/marks/data-consumer.d.ts +48 -0
- package/dist/types-ts4.0/schema/marks/em.d.ts +8 -0
- package/dist/types-ts4.0/schema/marks/fragment.d.ts +29 -0
- package/dist/types-ts4.0/schema/marks/indentation.d.ts +16 -0
- package/dist/types-ts4.0/schema/marks/index.d.ts +32 -0
- package/dist/types-ts4.0/schema/marks/link.d.ts +35 -0
- package/dist/types-ts4.0/schema/marks/strike.d.ts +8 -0
- package/dist/types-ts4.0/schema/marks/strong.d.ts +8 -0
- package/dist/types-ts4.0/schema/marks/subsup.d.ts +15 -0
- package/dist/types-ts4.0/schema/marks/text-color.d.ts +21 -0
- package/dist/types-ts4.0/schema/marks/type-ahead-query.d.ts +2 -0
- package/dist/types-ts4.0/schema/marks/underline.d.ts +8 -0
- package/dist/types-ts4.0/schema/marks/unsupported-mark.d.ts +2 -0
- package/dist/types-ts4.0/schema/marks/unsupported-node-attributes.d.ts +2 -0
- package/dist/types-ts4.0/schema/nodes/block-card.d.ts +22 -0
- package/dist/types-ts4.0/schema/nodes/blockquote.d.ts +14 -0
- package/dist/types-ts4.0/schema/nodes/bodied-extension.d.ts +24 -0
- package/dist/types-ts4.0/schema/nodes/bullet-list.d.ts +14 -0
- package/dist/types-ts4.0/schema/nodes/caption.d.ts +20 -0
- package/dist/types-ts4.0/schema/nodes/code-block.d.ts +31 -0
- package/dist/types-ts4.0/schema/nodes/confluence-jira-issue.d.ts +2 -0
- package/dist/types-ts4.0/schema/nodes/confluence-unsupported-block.d.ts +2 -0
- package/dist/types-ts4.0/schema/nodes/confluence-unsupported-inline.d.ts +2 -0
- package/dist/types-ts4.0/schema/nodes/date.d.ts +14 -0
- package/dist/types-ts4.0/schema/nodes/decision-item.d.ts +17 -0
- package/dist/types-ts4.0/schema/nodes/decision-list.d.ts +18 -0
- package/dist/types-ts4.0/schema/nodes/doc.d.ts +18 -0
- package/dist/types-ts4.0/schema/nodes/embed-card.d.ts +18 -0
- package/dist/types-ts4.0/schema/nodes/emoji.d.ts +14 -0
- package/dist/types-ts4.0/schema/nodes/expand.d.ts +33 -0
- package/dist/types-ts4.0/schema/nodes/extension.d.ts +18 -0
- package/dist/types-ts4.0/schema/nodes/hard-break.d.ts +11 -0
- package/dist/types-ts4.0/schema/nodes/heading.d.ts +36 -0
- package/dist/types-ts4.0/schema/nodes/image.d.ts +2 -0
- package/dist/types-ts4.0/schema/nodes/index.d.ts +93 -0
- package/dist/types-ts4.0/schema/nodes/inline-card.d.ts +10 -0
- package/dist/types-ts4.0/schema/nodes/inline-extension.d.ts +18 -0
- package/dist/types-ts4.0/schema/nodes/layout-column.d.ts +21 -0
- package/dist/types-ts4.0/schema/nodes/layout-section.d.ts +44 -0
- package/dist/types-ts4.0/schema/nodes/list-item.d.ts +20 -0
- package/dist/types-ts4.0/schema/nodes/media-group.d.ts +14 -0
- package/dist/types-ts4.0/schema/nodes/media-inline.d.ts +16 -0
- package/dist/types-ts4.0/schema/nodes/media-single.d.ts +61 -0
- package/dist/types-ts4.0/schema/nodes/media.d.ts +60 -0
- package/dist/types-ts4.0/schema/nodes/mention.d.ts +26 -0
- package/dist/types-ts4.0/schema/nodes/nested-expand.d.ts +27 -0
- package/dist/types-ts4.0/schema/nodes/ordered-list.d.ts +20 -0
- package/dist/types-ts4.0/schema/nodes/panel.d.ts +38 -0
- package/dist/types-ts4.0/schema/nodes/paragraph.d.ts +37 -0
- package/dist/types-ts4.0/schema/nodes/placeholder.d.ts +11 -0
- package/dist/types-ts4.0/schema/nodes/rule.d.ts +8 -0
- package/dist/types-ts4.0/schema/nodes/status.d.ts +20 -0
- package/dist/types-ts4.0/schema/nodes/tableNodes.d.ts +113 -0
- package/dist/types-ts4.0/schema/nodes/task-item.d.ts +17 -0
- package/dist/types-ts4.0/schema/nodes/task-list.d.ts +21 -0
- package/dist/types-ts4.0/schema/nodes/text.d.ts +15 -0
- package/dist/types-ts4.0/schema/nodes/types/block-content.d.ts +22 -0
- package/dist/types-ts4.0/schema/nodes/types/extensions.d.ts +34 -0
- package/dist/types-ts4.0/schema/nodes/types/inline-content.d.ts +32 -0
- package/dist/types-ts4.0/schema/nodes/types/mark.d.ts +15 -0
- package/dist/types-ts4.0/schema/nodes/types/non-nestable-block-content.d.ts +20 -0
- package/dist/types-ts4.0/schema/nodes/types/rich-media-common.d.ts +9 -0
- package/dist/types-ts4.0/schema/nodes/unknown-block.d.ts +3 -0
- package/dist/types-ts4.0/schema/nodes/unsupported-block.d.ts +2 -0
- package/dist/types-ts4.0/schema/nodes/unsupported-inline.d.ts +2 -0
- package/dist/types-ts4.0/schema/unsupported.d.ts +1 -0
- package/dist/types-ts4.0/steps/analytics.d.ts +59 -0
- package/dist/types-ts4.0/steps/set-attrs.d.ts +23 -0
- package/dist/types-ts4.0/steps/table/add-column.d.ts +88 -0
- package/dist/types-ts4.0/steps/table/constants.d.ts +4 -0
- package/dist/types-ts4.0/steps/table/sort-column.d.ts +18 -0
- package/dist/types-ts4.0/steps/table/types.d.ts +39 -0
- package/dist/types-ts4.0/steps/table/utils/cell-step.d.ts +51 -0
- package/dist/types-ts4.0/steps/table/utils/cells-at-column.d.ts +20 -0
- package/dist/types-ts4.0/steps/table/utils/find-column.d.ts +8 -0
- package/dist/types-ts4.0/steps/table/utils/get-table-rect-from-doc.d.ts +8 -0
- package/dist/types-ts4.0/steps/table/utils/side-effects/rows.d.ts +25 -0
- package/dist/types-ts4.0/steps/table/utils/side-effects/side-effects.d.ts +15 -0
- package/dist/types-ts4.0/steps/table/utils/side-effects/table.d.ts +16 -0
- package/dist/types-ts4.0/steps/table/utils/side-effects/types.d.ts +33 -0
- package/dist/types-ts4.0/steps/table/utils/table-map.d.ts +6 -0
- package/dist/types-ts4.0/steps/type-ahead.d.ts +35 -0
- package/dist/types-ts4.0/steps.d.ts +8 -0
- package/dist/types-ts4.0/utils/colors.d.ts +71 -0
- package/dist/types-ts4.0/utils/confluence/emoji.d.ts +50 -0
- package/dist/types-ts4.0/utils/extensions.d.ts +3 -0
- package/dist/types-ts4.0/utils/index.d.ts +6 -0
- package/dist/types-ts4.0/utils/parseDOM.d.ts +1 -0
- package/dist/types-ts4.0/utils/url.d.ts +23 -0
- package/dist/types-ts4.0/utils/uuid.d.ts +5 -0
- package/json-schema/package.json +8 -1
- package/package.json +11 -4
- package/report.api.md +5 -3
- package/schema/package.json +8 -1
- package/schema-bitbucket/package.json +8 -1
- package/schema-confluence/package.json +8 -1
- package/schema-default/package.json +8 -1
- package/schema-jira/package.json +8 -1
- package/steps/package.json +8 -1
- package/url/package.json +8 -1
@@ -4,5 +4,12 @@
|
|
4
4
|
"module": "../dist/esm/schema/bitbucket-schema.js",
|
5
5
|
"module:es2019": "../dist/es2019/schema/bitbucket-schema.js",
|
6
6
|
"sideEffects": false,
|
7
|
-
"types": "../dist/types/schema/bitbucket-schema.d.ts"
|
7
|
+
"types": "../dist/types/schema/bitbucket-schema.d.ts",
|
8
|
+
"typesVersions": {
|
9
|
+
">=4.0 <4.5": {
|
10
|
+
"*": [
|
11
|
+
"../dist/types-ts4.0/schema/bitbucket-schema.d.ts"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
}
|
8
15
|
}
|
@@ -4,5 +4,12 @@
|
|
4
4
|
"module": "../dist/esm/schema/confluence-schema.js",
|
5
5
|
"module:es2019": "../dist/es2019/schema/confluence-schema.js",
|
6
6
|
"sideEffects": false,
|
7
|
-
"types": "../dist/types/schema/confluence-schema.d.ts"
|
7
|
+
"types": "../dist/types/schema/confluence-schema.d.ts",
|
8
|
+
"typesVersions": {
|
9
|
+
">=4.0 <4.5": {
|
10
|
+
"*": [
|
11
|
+
"../dist/types-ts4.0/schema/confluence-schema.d.ts"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
}
|
8
15
|
}
|
@@ -4,5 +4,12 @@
|
|
4
4
|
"module": "../dist/esm/schema/default-schema.js",
|
5
5
|
"module:es2019": "../dist/es2019/schema/default-schema.js",
|
6
6
|
"sideEffects": false,
|
7
|
-
"types": "../dist/types/schema/default-schema.d.ts"
|
7
|
+
"types": "../dist/types/schema/default-schema.d.ts",
|
8
|
+
"typesVersions": {
|
9
|
+
">=4.0 <4.5": {
|
10
|
+
"*": [
|
11
|
+
"../dist/types-ts4.0/schema/default-schema.d.ts"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
}
|
8
15
|
}
|
package/schema-jira/package.json
CHANGED
@@ -4,5 +4,12 @@
|
|
4
4
|
"module": "../dist/esm/schema/jira-schema.js",
|
5
5
|
"module:es2019": "../dist/es2019/schema/jira-schema.js",
|
6
6
|
"sideEffects": false,
|
7
|
-
"types": "../dist/types/schema/jira-schema.d.ts"
|
7
|
+
"types": "../dist/types/schema/jira-schema.d.ts",
|
8
|
+
"typesVersions": {
|
9
|
+
">=4.0 <4.5": {
|
10
|
+
"*": [
|
11
|
+
"../dist/types-ts4.0/schema/jira-schema.d.ts"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
}
|
8
15
|
}
|
package/steps/package.json
CHANGED
@@ -4,5 +4,12 @@
|
|
4
4
|
"module": "../dist/esm/steps.js",
|
5
5
|
"module:es2019": "../dist/es2019/steps.js",
|
6
6
|
"sideEffects": false,
|
7
|
-
"types": "../dist/types/steps.d.ts"
|
7
|
+
"types": "../dist/types/steps.d.ts",
|
8
|
+
"typesVersions": {
|
9
|
+
">=4.0 <4.5": {
|
10
|
+
"*": [
|
11
|
+
"../dist/types-ts4.0/steps.d.ts"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
}
|
8
15
|
}
|
package/url/package.json
CHANGED
@@ -4,5 +4,12 @@
|
|
4
4
|
"module": "../dist/esm/utils/url.js",
|
5
5
|
"module:es2019": "../dist/es2019/utils/url.js",
|
6
6
|
"sideEffects": false,
|
7
|
-
"types": "../dist/types/utils/url.d.ts"
|
7
|
+
"types": "../dist/types/utils/url.d.ts",
|
8
|
+
"typesVersions": {
|
9
|
+
">=4.0 <4.5": {
|
10
|
+
"*": [
|
11
|
+
"../dist/types-ts4.0/utils/url.d.ts"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
}
|
8
15
|
}
|