@atlaskit/editor-plugin-table 24.0.4 → 24.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 +12 -0
- package/dist/cjs/tablePlugin.js +4 -5
- package/dist/es2019/tablePlugin.js +5 -6
- package/dist/esm/tablePlugin.js +5 -6
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 24.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`377a4234587d1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/377a4234587d1) -
|
|
8
|
+
Promote `tableCell` and `tableHeader` `valign` attribute from stage-0 to the full ADF schema, and
|
|
9
|
+
remove the now-redundant stage-0 node-spec selection in the table plugin.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 24.0.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/cjs/tablePlugin.js
CHANGED
|
@@ -22,7 +22,6 @@ var _utils = require("@atlaskit/editor-prosemirror/utils");
|
|
|
22
22
|
var _pmPlugins = require("@atlaskit/editor-tables/pm-plugins");
|
|
23
23
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
24
24
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
25
|
-
var _expValEqualsNoExposure = require("@atlaskit/tmp-editor-statsig/exp-val-equals-no-exposure");
|
|
26
25
|
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
27
26
|
var _toDOM = require("./nodeviews/toDOM");
|
|
28
27
|
var _plugin = require("./pm-plugins/active-cell-highlight/plugin");
|
|
@@ -259,13 +258,13 @@ var tablePlugin = function tablePlugin(_ref) {
|
|
|
259
258
|
})
|
|
260
259
|
}, {
|
|
261
260
|
name: 'tableHeader',
|
|
262
|
-
node: (0,
|
|
261
|
+
node: (0, _platformFeatureFlags.fg)('platform_editor_adf_with_localid') ? _adfSchema.tableHeaderWithNestedTableWithLocalId : _adfSchema.tableHeaderWithNestedTable
|
|
263
262
|
}, {
|
|
264
263
|
name: 'tableRow',
|
|
265
264
|
node: (0, _platformFeatureFlags.fg)('platform_editor_adf_with_localid') ? _adfSchema.tableRowWithNestedTableWithLocalId : _adfSchema.tableRowWithNestedTable
|
|
266
265
|
}, {
|
|
267
266
|
name: 'tableCell',
|
|
268
|
-
node: (0,
|
|
267
|
+
node: (0, _platformFeatureFlags.fg)('platform_editor_adf_with_localid') ? _adfSchema.tableCellWithNestedTableWithLocalId : _adfSchema.tableCellWithNestedTable
|
|
269
268
|
}] : [{
|
|
270
269
|
name: 'table',
|
|
271
270
|
node: (0, _toDOM.tableNodeSpecWithFixedToDOM)({
|
|
@@ -280,13 +279,13 @@ var tablePlugin = function tablePlugin(_ref) {
|
|
|
280
279
|
})
|
|
281
280
|
}, {
|
|
282
281
|
name: 'tableHeader',
|
|
283
|
-
node: (0,
|
|
282
|
+
node: (0, _platformFeatureFlags.fg)('platform_editor_adf_with_localid') ? _adfSchema.tableHeaderWithLocalId : _adfSchema.tableHeader
|
|
284
283
|
}, {
|
|
285
284
|
name: 'tableRow',
|
|
286
285
|
node: (0, _platformFeatureFlags.fg)('platform_editor_adf_with_localid') ? _adfSchema.tableRowWithLocalId : _adfSchema.tableRow
|
|
287
286
|
}, {
|
|
288
287
|
name: 'tableCell',
|
|
289
|
-
node: (0,
|
|
288
|
+
node: (0, _platformFeatureFlags.fg)('platform_editor_adf_with_localid') ? _adfSchema.tableCellWithLocalId : _adfSchema.tableCell
|
|
290
289
|
}];
|
|
291
290
|
},
|
|
292
291
|
pmPlugins: function pmPlugins() {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { useEffect } from 'react';
|
|
2
|
-
import { tableCell,
|
|
2
|
+
import { tableCell, tableCellWithNestedTable, tableHeader, tableHeaderWithLocalId, tableHeaderWithNestedTable, tableRow, tableRowWithNestedTable, tableRowWithLocalId, tableCellWithLocalId, tableCellWithNestedTableWithLocalId, tableRowWithNestedTableWithLocalId, tableHeaderWithNestedTableWithLocalId } from '@atlaskit/adf-schema';
|
|
3
3
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD, TABLE_ACTION } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import { getBrowserInfo } from '@atlaskit/editor-common/browser';
|
|
5
5
|
import { useSharedPluginStateWithSelector } from '@atlaskit/editor-common/hooks';
|
|
@@ -13,7 +13,6 @@ import { hasParentNodeOfType, safeInsert } from '@atlaskit/editor-prosemirror/ut
|
|
|
13
13
|
import { tableEditing } from '@atlaskit/editor-tables/pm-plugins';
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
15
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
16
|
-
import { expValEqualsNoExposure } from '@atlaskit/tmp-editor-statsig/exp-val-equals-no-exposure';
|
|
17
16
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
18
17
|
import { tableNodeSpecWithFixedToDOM } from './nodeviews/toDOM';
|
|
19
18
|
import { createPlugin as createActiveCellHighlightPlugin } from './pm-plugins/active-cell-highlight/plugin';
|
|
@@ -246,13 +245,13 @@ const tablePlugin = ({
|
|
|
246
245
|
})
|
|
247
246
|
}, {
|
|
248
247
|
name: 'tableHeader',
|
|
249
|
-
node:
|
|
248
|
+
node: fg('platform_editor_adf_with_localid') ? tableHeaderWithNestedTableWithLocalId : tableHeaderWithNestedTable
|
|
250
249
|
}, {
|
|
251
250
|
name: 'tableRow',
|
|
252
251
|
node: fg('platform_editor_adf_with_localid') ? tableRowWithNestedTableWithLocalId : tableRowWithNestedTable
|
|
253
252
|
}, {
|
|
254
253
|
name: 'tableCell',
|
|
255
|
-
node:
|
|
254
|
+
node: fg('platform_editor_adf_with_localid') ? tableCellWithNestedTableWithLocalId : tableCellWithNestedTable
|
|
256
255
|
}] : [{
|
|
257
256
|
name: 'table',
|
|
258
257
|
node: tableNodeSpecWithFixedToDOM({
|
|
@@ -267,13 +266,13 @@ const tablePlugin = ({
|
|
|
267
266
|
})
|
|
268
267
|
}, {
|
|
269
268
|
name: 'tableHeader',
|
|
270
|
-
node:
|
|
269
|
+
node: fg('platform_editor_adf_with_localid') ? tableHeaderWithLocalId : tableHeader
|
|
271
270
|
}, {
|
|
272
271
|
name: 'tableRow',
|
|
273
272
|
node: fg('platform_editor_adf_with_localid') ? tableRowWithLocalId : tableRow
|
|
274
273
|
}, {
|
|
275
274
|
name: 'tableCell',
|
|
276
|
-
node:
|
|
275
|
+
node: fg('platform_editor_adf_with_localid') ? tableCellWithLocalId : tableCell
|
|
277
276
|
}];
|
|
278
277
|
},
|
|
279
278
|
pmPlugins() {
|
package/dist/esm/tablePlugin.js
CHANGED
|
@@ -2,7 +2,7 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
2
2
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
3
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
4
|
import React, { useEffect } from 'react';
|
|
5
|
-
import { tableCell,
|
|
5
|
+
import { tableCell, tableCellWithNestedTable, tableHeader, tableHeaderWithLocalId, tableHeaderWithNestedTable, tableRow, tableRowWithNestedTable, tableRowWithLocalId, tableCellWithLocalId, tableCellWithNestedTableWithLocalId, tableRowWithNestedTableWithLocalId, tableHeaderWithNestedTableWithLocalId } from '@atlaskit/adf-schema';
|
|
6
6
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD, TABLE_ACTION } from '@atlaskit/editor-common/analytics';
|
|
7
7
|
import { getBrowserInfo } from '@atlaskit/editor-common/browser';
|
|
8
8
|
import { useSharedPluginStateWithSelector } from '@atlaskit/editor-common/hooks';
|
|
@@ -16,7 +16,6 @@ import { hasParentNodeOfType, safeInsert } from '@atlaskit/editor-prosemirror/ut
|
|
|
16
16
|
import { tableEditing } from '@atlaskit/editor-tables/pm-plugins';
|
|
17
17
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
18
18
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
19
|
-
import { expValEqualsNoExposure } from '@atlaskit/tmp-editor-statsig/exp-val-equals-no-exposure';
|
|
20
19
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
21
20
|
import { tableNodeSpecWithFixedToDOM } from './nodeviews/toDOM';
|
|
22
21
|
import { createPlugin as createActiveCellHighlightPlugin } from './pm-plugins/active-cell-highlight/plugin';
|
|
@@ -250,13 +249,13 @@ var tablePlugin = function tablePlugin(_ref) {
|
|
|
250
249
|
})
|
|
251
250
|
}, {
|
|
252
251
|
name: 'tableHeader',
|
|
253
|
-
node:
|
|
252
|
+
node: fg('platform_editor_adf_with_localid') ? tableHeaderWithNestedTableWithLocalId : tableHeaderWithNestedTable
|
|
254
253
|
}, {
|
|
255
254
|
name: 'tableRow',
|
|
256
255
|
node: fg('platform_editor_adf_with_localid') ? tableRowWithNestedTableWithLocalId : tableRowWithNestedTable
|
|
257
256
|
}, {
|
|
258
257
|
name: 'tableCell',
|
|
259
|
-
node:
|
|
258
|
+
node: fg('platform_editor_adf_with_localid') ? tableCellWithNestedTableWithLocalId : tableCellWithNestedTable
|
|
260
259
|
}] : [{
|
|
261
260
|
name: 'table',
|
|
262
261
|
node: tableNodeSpecWithFixedToDOM({
|
|
@@ -271,13 +270,13 @@ var tablePlugin = function tablePlugin(_ref) {
|
|
|
271
270
|
})
|
|
272
271
|
}, {
|
|
273
272
|
name: 'tableHeader',
|
|
274
|
-
node:
|
|
273
|
+
node: fg('platform_editor_adf_with_localid') ? tableHeaderWithLocalId : tableHeader
|
|
275
274
|
}, {
|
|
276
275
|
name: 'tableRow',
|
|
277
276
|
node: fg('platform_editor_adf_with_localid') ? tableRowWithLocalId : tableRow
|
|
278
277
|
}, {
|
|
279
278
|
name: 'tableCell',
|
|
280
|
-
node:
|
|
279
|
+
node: fg('platform_editor_adf_with_localid') ? tableCellWithLocalId : tableCell
|
|
281
280
|
}];
|
|
282
281
|
},
|
|
283
282
|
pmPlugins: function pmPlugins() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "24.0
|
|
3
|
+
"version": "24.1.0",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"singleton": true
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@atlaskit/adf-schema": "^
|
|
24
|
-
"@atlaskit/button": "^24.
|
|
23
|
+
"@atlaskit/adf-schema": "^56.0.0",
|
|
24
|
+
"@atlaskit/button": "^24.1.0",
|
|
25
25
|
"@atlaskit/custom-steps": "^1.0.0",
|
|
26
26
|
"@atlaskit/editor-palette": "^3.1.0",
|
|
27
27
|
"@atlaskit/editor-plugin-accessibility-utils": "^12.0.0",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@atlaskit/editor-plugin-batch-attribute-updates": "^12.0.0",
|
|
30
30
|
"@atlaskit/editor-plugin-content-insertion": "^12.0.0",
|
|
31
31
|
"@atlaskit/editor-plugin-editor-viewmode": "^14.0.0",
|
|
32
|
-
"@atlaskit/editor-plugin-extension": "15.0.
|
|
32
|
+
"@atlaskit/editor-plugin-extension": "15.0.5",
|
|
33
33
|
"@atlaskit/editor-plugin-guideline": "^12.0.0",
|
|
34
34
|
"@atlaskit/editor-plugin-interaction": "^21.0.0",
|
|
35
35
|
"@atlaskit/editor-plugin-limited-mode": "^9.0.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^3.0.0",
|
|
53
53
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^2.0.0",
|
|
54
54
|
"@atlaskit/primitives": "^20.0.0",
|
|
55
|
-
"@atlaskit/tmp-editor-statsig": "^108.
|
|
55
|
+
"@atlaskit/tmp-editor-statsig": "^108.3.0",
|
|
56
56
|
"@atlaskit/toggle": "^17.0.0",
|
|
57
57
|
"@atlaskit/tokens": "^14.0.0",
|
|
58
58
|
"@atlaskit/tooltip": "^23.0.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"uuid": "^3.1.0"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"@atlaskit/editor-common": "^116.
|
|
70
|
+
"@atlaskit/editor-common": "^116.4.0",
|
|
71
71
|
"react": "^18.2.0",
|
|
72
72
|
"react-dom": "^18.2.0",
|
|
73
73
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|