@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 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) {
@@ -143,7 +143,7 @@ var createTableSpec = function createTableSpec() {
143
143
  marks: 'unsupportedMark unsupportedNodeAttribute',
144
144
  tableRole: 'table',
145
145
  isolating: true,
146
- selectable: false,
146
+ selectable: true,
147
147
  group: 'block',
148
148
  parseDOM: [{
149
149
  tag: 'table',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "25.1.0",
3
+ "version": "25.1.1",
4
4
  "sideEffects": false
5
5
  }
@@ -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)
@@ -111,7 +111,7 @@ const createTableSpec = () => {
111
111
  marks: 'unsupportedMark unsupportedNodeAttribute',
112
112
  tableRole: 'table',
113
113
  isolating: true,
114
- selectable: false,
114
+ selectable: true,
115
115
  group: 'block',
116
116
  parseDOM: [{
117
117
  tag: 'table',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "25.1.0",
3
+ "version": "25.1.1",
4
4
  "sideEffects": false
5
5
  }
@@ -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) {
@@ -115,7 +115,7 @@ var createTableSpec = function createTableSpec() {
115
115
  marks: 'unsupportedMark unsupportedNodeAttribute',
116
116
  tableRole: 'table',
117
117
  isolating: true,
118
- selectable: false,
118
+ selectable: true,
119
119
  group: 'block',
120
120
  parseDOM: [{
121
121
  tag: 'table',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "25.1.0",
3
+ "version": "25.1.1",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "25.1.0",
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": "0.1.0",
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",