@atlaskit/editor-plugin-table 15.0.11 → 15.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 +22 -0
- package/dist/cjs/nodeviews/{TableComponent.js → TableComponentLegacy.js} +2 -0
- package/dist/cjs/nodeviews/TableComponentNext.js +1011 -0
- package/dist/cjs/nodeviews/TableComponentWithSharedState.js +9 -2
- package/dist/cjs/nodeviews/toDOM.js +20 -1
- package/dist/cjs/pm-plugins/utils/analytics.js +17 -0
- package/dist/cjs/tablePlugin.js +4 -1
- package/dist/cjs/ui/common-styles.js +14 -5
- package/dist/cjs/ui/ui-styles.js +15 -12
- package/dist/es2019/nodeviews/{TableComponent.js → TableComponentLegacy.js} +2 -0
- package/dist/es2019/nodeviews/TableComponentNext.js +975 -0
- package/dist/es2019/nodeviews/TableComponentWithSharedState.js +6 -1
- package/dist/es2019/nodeviews/toDOM.js +20 -1
- package/dist/es2019/pm-plugins/utils/analytics.js +12 -1
- package/dist/es2019/tablePlugin.js +4 -1
- package/dist/es2019/ui/common-styles.js +46 -1
- package/dist/es2019/ui/ui-styles.js +19 -0
- package/dist/esm/nodeviews/{TableComponent.js → TableComponentLegacy.js} +2 -0
- package/dist/esm/nodeviews/TableComponentNext.js +1005 -0
- package/dist/esm/nodeviews/TableComponentWithSharedState.js +8 -1
- package/dist/esm/nodeviews/toDOM.js +20 -1
- package/dist/esm/pm-plugins/utils/analytics.js +16 -0
- package/dist/esm/tablePlugin.js +4 -1
- package/dist/esm/ui/common-styles.js +14 -5
- package/dist/esm/ui/ui-styles.js +14 -11
- package/dist/types/nodeviews/TableComponentLegacy.d.ts +47 -0
- package/dist/types/nodeviews/TableComponentNext.d.ts +47 -0
- package/dist/types/pm-plugins/utils/analytics.d.ts +1 -1
- package/dist/types/types/index.d.ts +3 -0
- package/dist/types/ui/ui-styles.d.ts +1 -0
- package/dist/types-ts4.5/pm-plugins/utils/analytics.d.ts +1 -1
- package/dist/types-ts4.5/types/index.d.ts +3 -0
- package/dist/types-ts4.5/ui/ui-styles.d.ts +1 -0
- package/package.json +6 -6
- /package/dist/types-ts4.5/nodeviews/{TableComponent.d.ts → TableComponentLegacy.d.ts} +0 -0
- /package/dist/{types/nodeviews/TableComponent.d.ts → types-ts4.5/nodeviews/TableComponentNext.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "15.0
|
|
3
|
+
"version": "15.1.0",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@atlaskit/editor-plugin-batch-attribute-updates": "^6.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-content-insertion": "^6.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-editor-viewmode": "^8.0.0",
|
|
40
|
-
"@atlaskit/editor-plugin-extension": "9.0.
|
|
40
|
+
"@atlaskit/editor-plugin-extension": "9.0.2",
|
|
41
41
|
"@atlaskit/editor-plugin-guideline": "^6.0.0",
|
|
42
42
|
"@atlaskit/editor-plugin-interaction": "^8.0.0",
|
|
43
43
|
"@atlaskit/editor-plugin-limited-mode": "^3.0.0",
|
|
44
44
|
"@atlaskit/editor-plugin-selection": "^6.1.0",
|
|
45
|
-
"@atlaskit/editor-plugin-toolbar": "^3.
|
|
45
|
+
"@atlaskit/editor-plugin-toolbar": "^3.3.0",
|
|
46
46
|
"@atlaskit/editor-plugin-user-intent": "^4.0.0",
|
|
47
47
|
"@atlaskit/editor-plugin-width": "^7.0.0",
|
|
48
48
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
|
|
57
57
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.0",
|
|
58
58
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
|
|
59
|
-
"@atlaskit/primitives": "^
|
|
59
|
+
"@atlaskit/primitives": "^15.0.0",
|
|
60
60
|
"@atlaskit/react-ufo": "^4.11.0",
|
|
61
61
|
"@atlaskit/theme": "^21.0.0",
|
|
62
62
|
"@atlaskit/tmp-editor-statsig": "^13.10.0",
|
|
63
63
|
"@atlaskit/toggle": "^15.1.0",
|
|
64
|
-
"@atlaskit/tokens": "^6.
|
|
64
|
+
"@atlaskit/tokens": "^6.5.0",
|
|
65
65
|
"@atlaskit/tooltip": "^20.5.0",
|
|
66
66
|
"@babel/runtime": "^7.0.0",
|
|
67
67
|
"@emotion/react": "^11.7.1",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"uuid": "^3.1.0"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@atlaskit/editor-common": "^110.
|
|
75
|
+
"@atlaskit/editor-common": "^110.12.0",
|
|
76
76
|
"react": "^18.2.0",
|
|
77
77
|
"react-dom": "^18.2.0",
|
|
78
78
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
File without changes
|
/package/dist/{types/nodeviews/TableComponent.d.ts → types-ts4.5/nodeviews/TableComponentNext.d.ts}
RENAMED
|
File without changes
|