@atlaskit/adf-schema 56.0.16 → 56.1.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
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/adf-schema
|
|
2
2
|
|
|
3
|
+
## 56.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`319eb8550d286`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/319eb8550d286) -
|
|
8
|
+
[ux] [EDITOR-7978] add resizing support to the panel_c1 node behind resizer experiment
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 56.0.16
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -38,6 +38,7 @@ function () {
|
|
|
38
38
|
tableCell: _nodes.tableCellWithNestedTableStage0,
|
|
39
39
|
tableHeader: _nodes.tableHeaderWithNestedTableStage0,
|
|
40
40
|
panel: (0, _panel.extendedPanelRootOnlyStage0)(true),
|
|
41
|
+
panel_c1: (0, _panel.extendedPanelC1RootOnlyStage0)(true),
|
|
41
42
|
rule: _rule.ruleRootOnlyStage0
|
|
42
43
|
};
|
|
43
44
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import memoizeOne from 'memoize-one';
|
|
2
2
|
import { extensionFrame, layoutSectionWithSingleColumn, multiBodiedExtension, expandWithNestedExpand, tableWithNestedTable, tableRowWithNestedTable, tableCellWithNestedTableStage0, tableHeaderWithNestedTableStage0 } from './nodes';
|
|
3
3
|
import { ruleRootOnlyStage0 } from './nodes/rule';
|
|
4
|
-
import { extendedPanelRootOnlyStage0 } from './nodes/panel';
|
|
4
|
+
import { extendedPanelRootOnlyStage0, extendedPanelC1RootOnlyStage0 } from './nodes/panel';
|
|
5
5
|
import { createSchema } from './create-schema';
|
|
6
6
|
const getDefaultSchemaConfig = () => {
|
|
7
7
|
const defaultSchemaConfig = {
|
|
@@ -30,6 +30,7 @@ export const getSchemaBasedOnStage = memoizeOne(
|
|
|
30
30
|
tableCell: tableCellWithNestedTableStage0,
|
|
31
31
|
tableHeader: tableHeaderWithNestedTableStage0,
|
|
32
32
|
panel: extendedPanelRootOnlyStage0(true),
|
|
33
|
+
panel_c1: extendedPanelC1RootOnlyStage0(true),
|
|
33
34
|
rule: ruleRootOnlyStage0
|
|
34
35
|
};
|
|
35
36
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import memoizeOne from 'memoize-one';
|
|
2
2
|
import { extensionFrame, layoutSectionWithSingleColumn, multiBodiedExtension, expandWithNestedExpand, tableWithNestedTable, tableRowWithNestedTable, tableCellWithNestedTableStage0, tableHeaderWithNestedTableStage0 } from './nodes';
|
|
3
3
|
import { ruleRootOnlyStage0 } from './nodes/rule';
|
|
4
|
-
import { extendedPanelRootOnlyStage0 } from './nodes/panel';
|
|
4
|
+
import { extendedPanelRootOnlyStage0, extendedPanelC1RootOnlyStage0 } from './nodes/panel';
|
|
5
5
|
import { createSchema } from './create-schema';
|
|
6
6
|
var getDefaultSchemaConfig = function getDefaultSchemaConfig() {
|
|
7
7
|
var defaultSchemaConfig = {
|
|
@@ -31,6 +31,7 @@ function () {
|
|
|
31
31
|
tableCell: tableCellWithNestedTableStage0,
|
|
32
32
|
tableHeader: tableHeaderWithNestedTableStage0,
|
|
33
33
|
panel: extendedPanelRootOnlyStage0(true),
|
|
34
|
+
panel_c1: extendedPanelC1RootOnlyStage0(true),
|
|
34
35
|
rule: ruleRootOnlyStage0
|
|
35
36
|
};
|
|
36
37
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/adf-schema",
|
|
3
|
-
"version": "56.0
|
|
3
|
+
"version": "56.1.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/"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@atlaskit/adf-schema-generator": "^3.1.0",
|
|
41
41
|
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
42
42
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
43
|
-
"@atlaskit/tmp-editor-statsig": "^121.
|
|
43
|
+
"@atlaskit/tmp-editor-statsig": "^121.1.0",
|
|
44
44
|
"@babel/runtime": "^7.0.0",
|
|
45
45
|
"css-color-names": "0.0.4",
|
|
46
46
|
"linkify-it": "^3.0.3",
|