@atlaskit/editor-plugin-table 5.7.7 → 5.7.8
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/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 5.7.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#65572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65572) [`a13e13b8eb7d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a13e13b8eb7d) - [ux] Increases drag menu width by 10px to ensure "Move column right" option fits on one line.
|
|
8
|
+
- [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031) [`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) - ED-21609 Update adf-schema to 35.3.0
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 5.7.7
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/ui/consts.js
CHANGED
|
@@ -70,6 +70,6 @@ var STICKY_HEADER_TOGGLE_TOLERANCE_MS = exports.STICKY_HEADER_TOGGLE_TOLERANCE_M
|
|
|
70
70
|
// table margins and padding. For example a guideline at 1800px and the view at 1860px wide, means the guidelines is visible
|
|
71
71
|
// BUT it cannot be snapped to during resize due to padding being applied to the resizer wrapper. This accommodates that difference.
|
|
72
72
|
var TABLE_GUIDELINE_VISIBLE_ADJUSTMENT = exports.TABLE_GUIDELINE_VISIBLE_ADJUSTMENT = -68;
|
|
73
|
-
var dragMenuDropdownWidth = exports.dragMenuDropdownWidth =
|
|
73
|
+
var dragMenuDropdownWidth = exports.dragMenuDropdownWidth = 250;
|
|
74
74
|
var dragTableInsertColumnButtonSize = exports.dragTableInsertColumnButtonSize = 16;
|
|
75
75
|
var dropTargetExtendedWidth = exports.dropTargetExtendedWidth = 150;
|
package/dist/es2019/ui/consts.js
CHANGED
|
@@ -65,6 +65,6 @@ export const STICKY_HEADER_TOGGLE_TOLERANCE_MS = 5;
|
|
|
65
65
|
// table margins and padding. For example a guideline at 1800px and the view at 1860px wide, means the guidelines is visible
|
|
66
66
|
// BUT it cannot be snapped to during resize due to padding being applied to the resizer wrapper. This accommodates that difference.
|
|
67
67
|
export const TABLE_GUIDELINE_VISIBLE_ADJUSTMENT = -68;
|
|
68
|
-
export const dragMenuDropdownWidth =
|
|
68
|
+
export const dragMenuDropdownWidth = 250;
|
|
69
69
|
export const dragTableInsertColumnButtonSize = 16;
|
|
70
70
|
export const dropTargetExtendedWidth = 150;
|
package/dist/esm/ui/consts.js
CHANGED
|
@@ -65,6 +65,6 @@ export var STICKY_HEADER_TOGGLE_TOLERANCE_MS = 5;
|
|
|
65
65
|
// table margins and padding. For example a guideline at 1800px and the view at 1860px wide, means the guidelines is visible
|
|
66
66
|
// BUT it cannot be snapped to during resize due to padding being applied to the resizer wrapper. This accommodates that difference.
|
|
67
67
|
export var TABLE_GUIDELINE_VISIBLE_ADJUSTMENT = -68;
|
|
68
|
-
export var dragMenuDropdownWidth =
|
|
68
|
+
export var dragMenuDropdownWidth = 250;
|
|
69
69
|
export var dragTableInsertColumnButtonSize = 16;
|
|
70
70
|
export var dropTargetExtendedWidth = 150;
|
|
@@ -52,6 +52,6 @@ export declare const TABLE_HIGHLIGHT_GAP = 10;
|
|
|
52
52
|
export declare const TABLE_HIGHLIGHT_TOLERANCE = 2;
|
|
53
53
|
export declare const STICKY_HEADER_TOGGLE_TOLERANCE_MS = 5;
|
|
54
54
|
export declare const TABLE_GUIDELINE_VISIBLE_ADJUSTMENT = -68;
|
|
55
|
-
export declare const dragMenuDropdownWidth =
|
|
55
|
+
export declare const dragMenuDropdownWidth = 250;
|
|
56
56
|
export declare const dragTableInsertColumnButtonSize = 16;
|
|
57
57
|
export declare const dropTargetExtendedWidth = 150;
|
|
@@ -52,6 +52,6 @@ export declare const TABLE_HIGHLIGHT_GAP = 10;
|
|
|
52
52
|
export declare const TABLE_HIGHLIGHT_TOLERANCE = 2;
|
|
53
53
|
export declare const STICKY_HEADER_TOGGLE_TOLERANCE_MS = 5;
|
|
54
54
|
export declare const TABLE_GUIDELINE_VISIBLE_ADJUSTMENT = -68;
|
|
55
|
-
export declare const dragMenuDropdownWidth =
|
|
55
|
+
export declare const dragMenuDropdownWidth = 250;
|
|
56
56
|
export declare const dragTableInsertColumnButtonSize = 16;
|
|
57
57
|
export declare const dropTargetExtendedWidth = 150;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.8",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"runReact18": false
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@atlaskit/adf-schema": "^35.
|
|
32
|
-
"@atlaskit/custom-steps": "^0.0.
|
|
33
|
-
"@atlaskit/editor-common": "^76.
|
|
31
|
+
"@atlaskit/adf-schema": "^35.3.0",
|
|
32
|
+
"@atlaskit/custom-steps": "^0.0.11",
|
|
33
|
+
"@atlaskit/editor-common": "^76.35.0",
|
|
34
34
|
"@atlaskit/editor-palette": "1.5.2",
|
|
35
35
|
"@atlaskit/editor-plugin-analytics": "^0.4.0",
|
|
36
36
|
"@atlaskit/editor-plugin-content-insertion": "^0.1.0",
|
package/src/ui/consts.ts
CHANGED
|
@@ -137,6 +137,6 @@ export const STICKY_HEADER_TOGGLE_TOLERANCE_MS = 5;
|
|
|
137
137
|
// BUT it cannot be snapped to during resize due to padding being applied to the resizer wrapper. This accommodates that difference.
|
|
138
138
|
export const TABLE_GUIDELINE_VISIBLE_ADJUSTMENT = -68;
|
|
139
139
|
|
|
140
|
-
export const dragMenuDropdownWidth =
|
|
140
|
+
export const dragMenuDropdownWidth = 250;
|
|
141
141
|
export const dragTableInsertColumnButtonSize = 16;
|
|
142
142
|
export const dropTargetExtendedWidth = 150;
|