@atlaskit/editor-plugin-tasks-and-decisions 11.3.0 → 11.3.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-tasks-and-decisions
|
|
2
2
|
|
|
3
|
+
## 11.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`aa4e1fcb89ca8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aa4e1fcb89ca8) -
|
|
8
|
+
Added new `platform_editor_flexible_list_schema` experiment that independently enables ADF schema
|
|
9
|
+
and CSS rendering support for flexible lists, without creation behaviour. Updated schema node
|
|
10
|
+
selection, CSS rendering, ADF validation, and task list schema to use the new gate. Indent/outdent
|
|
11
|
+
behaviour remains on the existing `platform_editor_flexible_list_indentation` gate.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 11.3.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -176,7 +176,7 @@ var tasksAndDecisionsPlugin = exports.tasksAndDecisionsPlugin = function tasksAn
|
|
|
176
176
|
node: (0, _decisionItem.decisionItemSpecWithFixedToDOM)()
|
|
177
177
|
}, {
|
|
178
178
|
name: 'taskList',
|
|
179
|
-
node: (0, _expValEquals.expValEquals)('
|
|
179
|
+
node: (0, _expValEquals.expValEquals)('platform_editor_flexible_list_schema', 'isEnabled', true) ? _adfSchema.taskListWithFlexibleFirstChildStage0 : _adfSchema.taskList
|
|
180
180
|
}, {
|
|
181
181
|
name: 'taskItem',
|
|
182
182
|
node: (0, _taskItemNodeSpec.taskItemNodeSpec)()
|
|
@@ -164,7 +164,7 @@ export const tasksAndDecisionsPlugin = ({
|
|
|
164
164
|
node: decisionItemSpecWithFixedToDOM()
|
|
165
165
|
}, {
|
|
166
166
|
name: 'taskList',
|
|
167
|
-
node: expValEquals('
|
|
167
|
+
node: expValEquals('platform_editor_flexible_list_schema', 'isEnabled', true) ? taskListWithFlexibleFirstChildStage0 : taskList
|
|
168
168
|
}, {
|
|
169
169
|
name: 'taskItem',
|
|
170
170
|
node: taskItemNodeSpec()
|
|
@@ -167,7 +167,7 @@ export var tasksAndDecisionsPlugin = function tasksAndDecisionsPlugin(_ref3) {
|
|
|
167
167
|
node: decisionItemSpecWithFixedToDOM()
|
|
168
168
|
}, {
|
|
169
169
|
name: 'taskList',
|
|
170
|
-
node: expValEquals('
|
|
170
|
+
node: expValEquals('platform_editor_flexible_list_schema', 'isEnabled', true) ? taskListWithFlexibleFirstChildStage0 : taskList
|
|
171
171
|
}, {
|
|
172
172
|
name: 'taskItem',
|
|
173
173
|
node: taskItemNodeSpec()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-tasks-and-decisions",
|
|
3
|
-
"version": "11.3.
|
|
3
|
+
"version": "11.3.1",
|
|
4
4
|
"description": "Tasks and decisions plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@atlaskit/primitives": "^18.0.0",
|
|
50
50
|
"@atlaskit/prosemirror-input-rules": "^3.6.0",
|
|
51
51
|
"@atlaskit/task-decision": "^19.3.0",
|
|
52
|
-
"@atlaskit/tmp-editor-statsig": "^44.
|
|
52
|
+
"@atlaskit/tmp-editor-statsig": "^44.2.0",
|
|
53
53
|
"@atlaskit/tokens": "^11.1.0",
|
|
54
54
|
"@babel/runtime": "^7.0.0",
|
|
55
55
|
"@compiled/react": "^0.20.0",
|