@atlaskit/adf-schema 25.1.0 → 25.1.1
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 +8 -0
- package/dist/cjs/schema/nodes/panel.js +1 -0
- package/dist/cjs/schema/nodes/tableNodes.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/schema/nodes/panel.js +1 -0
- package/dist/es2019/schema/nodes/tableNodes.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/schema/nodes/panel.js +1 -0
- package/dist/esm/schema/nodes/tableNodes.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# @atlaskit/adf-schema
|
2
2
|
|
3
|
+
## 25.1.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [`4f6a895f1d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f6a895f1d5) - Set selectable property for selectable nodes
|
8
|
+
- [`5ac1c18bd04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5ac1c18bd04) - [ux] Fix selection blocking issue where user cannot left/right arrow key past a mediaSingle
|
9
|
+
- Updated dependencies
|
10
|
+
|
3
11
|
## 25.1.0
|
4
12
|
|
5
13
|
### Minor Changes
|
@@ -83,6 +83,7 @@ var panel = function panel(allowCustomPanel) {
|
|
83
83
|
content: '(paragraph | heading | bulletList | orderedList | blockCard | unsupportedBlock)+',
|
84
84
|
marks: 'unsupportedMark unsupportedNodeAttribute',
|
85
85
|
attrs: getDefaultAttrs(),
|
86
|
+
selectable: true,
|
86
87
|
parseDOM: [{
|
87
88
|
tag: 'div[data-panel-type]',
|
88
89
|
getAttrs: function getAttrs(dom) {
|
package/dist/cjs/version.json
CHANGED
@@ -67,6 +67,7 @@ export const panel = allowCustomPanel => {
|
|
67
67
|
content: '(paragraph | heading | bulletList | orderedList | blockCard | unsupportedBlock)+',
|
68
68
|
marks: 'unsupportedMark unsupportedNodeAttribute',
|
69
69
|
attrs: getDefaultAttrs(),
|
70
|
+
selectable: true,
|
70
71
|
parseDOM: [{
|
71
72
|
tag: 'div[data-panel-type]',
|
72
73
|
getAttrs: dom => getParseDOMAttrs(allowCustomPanel, dom)
|
package/dist/es2019/version.json
CHANGED
@@ -73,6 +73,7 @@ export var panel = function panel(allowCustomPanel) {
|
|
73
73
|
content: '(paragraph | heading | bulletList | orderedList | blockCard | unsupportedBlock)+',
|
74
74
|
marks: 'unsupportedMark unsupportedNodeAttribute',
|
75
75
|
attrs: getDefaultAttrs(),
|
76
|
+
selectable: true,
|
76
77
|
parseDOM: [{
|
77
78
|
tag: 'div[data-panel-type]',
|
78
79
|
getAttrs: function getAttrs(dom) {
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atlaskit/adf-schema",
|
3
|
-
"version": "25.1.
|
3
|
+
"version": "25.1.1",
|
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/"
|
@@ -39,7 +39,7 @@
|
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
41
|
"@atlaskit/codemod-utils": "^4.1.0",
|
42
|
-
"@atlaskit/editor-palette": "
|
42
|
+
"@atlaskit/editor-palette": "1.0.0",
|
43
43
|
"@atlaskit/editor-tables": "^2.2.0",
|
44
44
|
"@babel/runtime": "^7.0.0",
|
45
45
|
"@types/linkify-it": "^2.0.4",
|