@atlaskit/editor-plugins 13.0.37 → 13.0.39
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 +14 -0
- package/dist/cjs/block-controls/ui/block-decoration-utils.js +30 -0
- package/dist/es2019/block-controls/ui/block-decoration-utils.js +1 -1
- package/dist/esm/block-controls/ui/block-decoration-utils.js +1 -1
- package/dist/types/block-controls/ui/block-decoration-utils.d.ts +1 -1
- package/dist/types-ts4.5/block-controls/ui/block-decoration-utils.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugins
|
|
2
2
|
|
|
3
|
+
## 13.0.39
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`73c46b71987a0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/73c46b71987a0) -
|
|
8
|
+
[ux] Fix remix button sticky for tables right side
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 13.0.38
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 13.0.37
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
Object.defineProperty(exports, "STICKY_CONTROLS_TOP_MARGIN_FOR_STICKY_HEADER", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _blockDecorationUtils.STICKY_CONTROLS_TOP_MARGIN_FOR_STICKY_HEADER;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
6
12
|
Object.defineProperty(exports, "VisibilityContainer", {
|
|
7
13
|
enumerable: true,
|
|
8
14
|
get: function get() {
|
|
@@ -15,6 +21,24 @@ Object.defineProperty(exports, "getAnchorAttrName", {
|
|
|
15
21
|
return _blockDecorationUtils.getAnchorAttrName;
|
|
16
22
|
}
|
|
17
23
|
});
|
|
24
|
+
Object.defineProperty(exports, "getControlBottomCSSValue", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return _blockDecorationUtils.getControlBottomCSSValue;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "getControlHeightCSSValue", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function get() {
|
|
33
|
+
return _blockDecorationUtils.getControlHeightCSSValue;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "getNodeHeight", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function get() {
|
|
39
|
+
return _blockDecorationUtils.getNodeHeight;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
18
42
|
Object.defineProperty(exports, "getRightPositionForRootElement", {
|
|
19
43
|
enumerable: true,
|
|
20
44
|
get: function get() {
|
|
@@ -39,6 +63,12 @@ Object.defineProperty(exports, "rootElementGap", {
|
|
|
39
63
|
return _blockDecorationUtils.rootElementGap;
|
|
40
64
|
}
|
|
41
65
|
});
|
|
66
|
+
Object.defineProperty(exports, "shouldBeSticky", {
|
|
67
|
+
enumerable: true,
|
|
68
|
+
get: function get() {
|
|
69
|
+
return _blockDecorationUtils.shouldBeSticky;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
42
72
|
Object.defineProperty(exports, "topPositionAdjustment", {
|
|
43
73
|
enumerable: true,
|
|
44
74
|
get: function get() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
|
|
2
2
|
// Disable no-re-export rule for entry point files
|
|
3
3
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
4
|
-
export { VisibilityContainer, refreshAnchorName, getAnchorAttrName, rootElementGap, topPositionAdjustment, getTopPosition, getRightPositionForRootElement } from '@atlaskit/editor-plugin-block-controls/block-decoration-utils';
|
|
4
|
+
export { VisibilityContainer, refreshAnchorName, getAnchorAttrName, rootElementGap, STICKY_CONTROLS_TOP_MARGIN_FOR_STICKY_HEADER, topPositionAdjustment, getControlBottomCSSValue, getControlHeightCSSValue, getNodeHeight, getTopPosition, getRightPositionForRootElement, shouldBeSticky } from '@atlaskit/editor-plugin-block-controls/block-decoration-utils';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
|
|
2
2
|
// Disable no-re-export rule for entry point files
|
|
3
3
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
4
|
-
export { VisibilityContainer, refreshAnchorName, getAnchorAttrName, rootElementGap, topPositionAdjustment, getTopPosition, getRightPositionForRootElement } from '@atlaskit/editor-plugin-block-controls/block-decoration-utils';
|
|
4
|
+
export { VisibilityContainer, refreshAnchorName, getAnchorAttrName, rootElementGap, STICKY_CONTROLS_TOP_MARGIN_FOR_STICKY_HEADER, topPositionAdjustment, getControlBottomCSSValue, getControlHeightCSSValue, getNodeHeight, getTopPosition, getRightPositionForRootElement, shouldBeSticky } from '@atlaskit/editor-plugin-block-controls/block-decoration-utils';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { VisibilityContainer, refreshAnchorName, getAnchorAttrName, rootElementGap, topPositionAdjustment, getTopPosition, getRightPositionForRootElement, } from '@atlaskit/editor-plugin-block-controls/block-decoration-utils';
|
|
1
|
+
export { VisibilityContainer, refreshAnchorName, getAnchorAttrName, rootElementGap, STICKY_CONTROLS_TOP_MARGIN_FOR_STICKY_HEADER, topPositionAdjustment, getControlBottomCSSValue, getControlHeightCSSValue, getNodeHeight, getTopPosition, getRightPositionForRootElement, shouldBeSticky, } from '@atlaskit/editor-plugin-block-controls/block-decoration-utils';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { VisibilityContainer, refreshAnchorName, getAnchorAttrName, rootElementGap, topPositionAdjustment, getTopPosition, getRightPositionForRootElement, } from '@atlaskit/editor-plugin-block-controls/block-decoration-utils';
|
|
1
|
+
export { VisibilityContainer, refreshAnchorName, getAnchorAttrName, rootElementGap, STICKY_CONTROLS_TOP_MARGIN_FOR_STICKY_HEADER, topPositionAdjustment, getControlBottomCSSValue, getControlHeightCSSValue, getNodeHeight, getTopPosition, getRightPositionForRootElement, shouldBeSticky, } from '@atlaskit/editor-plugin-block-controls/block-decoration-utils';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.39",
|
|
4
4
|
"description": "A convenience facade package that exposes all @atlaskit/editor-plugin-* plugins so that users can add this package without having to manually add all their plugins",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"@atlaskit/editor-plugin-batch-attribute-updates": "8.0.1",
|
|
40
40
|
"@atlaskit/editor-plugin-before-primary-toolbar": "8.0.1",
|
|
41
41
|
"@atlaskit/editor-plugin-better-type-history": "8.0.1",
|
|
42
|
-
"@atlaskit/editor-plugin-block-controls": "9.0.
|
|
42
|
+
"@atlaskit/editor-plugin-block-controls": "9.0.19",
|
|
43
43
|
"@atlaskit/editor-plugin-block-menu": "7.0.13",
|
|
44
|
-
"@atlaskit/editor-plugin-block-type": "12.1.
|
|
44
|
+
"@atlaskit/editor-plugin-block-type": "12.1.9",
|
|
45
45
|
"@atlaskit/editor-plugin-border": "8.0.1",
|
|
46
46
|
"@atlaskit/editor-plugin-breakout": "8.0.13",
|
|
47
47
|
"@atlaskit/editor-plugin-caption": "8.0.0",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"@atlaskit/editor-plugin-fragment": "8.0.0",
|
|
78
78
|
"@atlaskit/editor-plugin-grid": "8.0.9",
|
|
79
79
|
"@atlaskit/editor-plugin-guideline": "8.0.0",
|
|
80
|
-
"@atlaskit/editor-plugin-help-dialog": "8.0.
|
|
80
|
+
"@atlaskit/editor-plugin-help-dialog": "8.0.12",
|
|
81
81
|
"@atlaskit/editor-plugin-highlight": "8.0.10",
|
|
82
82
|
"@atlaskit/editor-plugin-history": "8.0.0",
|
|
83
83
|
"@atlaskit/editor-plugin-hyperlink": "10.0.10",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@atlaskit/editor-plugin-interaction": "15.0.0",
|
|
88
88
|
"@atlaskit/editor-plugin-layout": "8.0.11",
|
|
89
89
|
"@atlaskit/editor-plugin-limited-mode": "5.0.9",
|
|
90
|
-
"@atlaskit/editor-plugin-list": "10.1.
|
|
90
|
+
"@atlaskit/editor-plugin-list": "10.1.1",
|
|
91
91
|
"@atlaskit/editor-plugin-local-id": "6.0.9",
|
|
92
92
|
"@atlaskit/editor-plugin-loom": "10.0.3",
|
|
93
93
|
"@atlaskit/editor-plugin-max-content-size": "8.0.0",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"@atlaskit/editor-plugin-submit-editor": "8.0.1",
|
|
116
116
|
"@atlaskit/editor-plugin-synced-block": "6.0.20",
|
|
117
117
|
"@atlaskit/editor-plugin-table": "18.1.6",
|
|
118
|
-
"@atlaskit/editor-plugin-tasks-and-decisions": "11.3.
|
|
118
|
+
"@atlaskit/editor-plugin-tasks-and-decisions": "11.3.1",
|
|
119
119
|
"@atlaskit/editor-plugin-text-color": "8.1.6",
|
|
120
120
|
"@atlaskit/editor-plugin-text-formatting": "8.1.6",
|
|
121
121
|
"@atlaskit/editor-plugin-toolbar": "5.1.8",
|