@atlaskit/editor-plugin-selection-toolbar 3.6.12 → 3.6.14
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
|
@@ -11,8 +11,8 @@ var React = _interopRequireWildcard(require("react"));
|
|
|
11
11
|
var _runtime = require("@compiled/react/runtime");
|
|
12
12
|
var _messages = require("@atlaskit/editor-common/messages");
|
|
13
13
|
var _dockToolbarTop = _interopRequireDefault(require("@atlaskit/icon-lab/core/dock-toolbar-top"));
|
|
14
|
+
var _checkMark = _interopRequireDefault(require("@atlaskit/icon/core/check-mark"));
|
|
14
15
|
var _minus = _interopRequireDefault(require("@atlaskit/icon/core/minus"));
|
|
15
|
-
var _checkMark = _interopRequireDefault(require("@atlaskit/icon/utility/check-mark"));
|
|
16
16
|
var _menu = require("@atlaskit/menu");
|
|
17
17
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
18
18
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
@@ -36,7 +36,8 @@ var getOverflowFloatingToolbarConfig = exports.getOverflowFloatingToolbarConfig
|
|
|
36
36
|
}),
|
|
37
37
|
selected: !isDockedToTop,
|
|
38
38
|
elemAfter: !isDockedToTop ? /*#__PURE__*/React.createElement(_checkMark.default, {
|
|
39
|
-
label: ""
|
|
39
|
+
label: "",
|
|
40
|
+
size: "small"
|
|
40
41
|
}) : undefined
|
|
41
42
|
}, {
|
|
42
43
|
title: intl.formatMessage(_messages.selectionToolbarMessages.toolbarPositionFixedAtTop),
|
|
@@ -49,7 +50,8 @@ var getOverflowFloatingToolbarConfig = exports.getOverflowFloatingToolbarConfig
|
|
|
49
50
|
}),
|
|
50
51
|
selected: isDockedToTop,
|
|
51
52
|
elemAfter: isDockedToTop ? /*#__PURE__*/React.createElement(_checkMark.default, {
|
|
52
|
-
label: ""
|
|
53
|
+
label: "",
|
|
54
|
+
size: "small"
|
|
53
55
|
}) : undefined
|
|
54
56
|
}];
|
|
55
57
|
|
|
@@ -102,7 +104,8 @@ var getOverflowPrimaryToolbarConfig = exports.getOverflowPrimaryToolbarConfig =
|
|
|
102
104
|
label: ''
|
|
103
105
|
}),
|
|
104
106
|
elemAfter: /*#__PURE__*/React.createElement(_checkMark.default, {
|
|
105
|
-
label: ""
|
|
107
|
+
label: "",
|
|
108
|
+
size: "small"
|
|
106
109
|
})
|
|
107
110
|
}]
|
|
108
111
|
}];
|
|
@@ -3,8 +3,8 @@ import * as React from 'react';
|
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import { selectionToolbarMessages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import DockToolbarTopIcon from '@atlaskit/icon-lab/core/dock-toolbar-top';
|
|
6
|
+
import CheckMarkIcon from '@atlaskit/icon/core/check-mark';
|
|
6
7
|
import MinusIcon from '@atlaskit/icon/core/minus';
|
|
7
|
-
import CheckMarkIcon from '@atlaskit/icon/utility/check-mark';
|
|
8
8
|
import { HeadingItem } from '@atlaskit/menu';
|
|
9
9
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
10
10
|
// New editor controls
|
|
@@ -28,7 +28,8 @@ export const getOverflowFloatingToolbarConfig = ({
|
|
|
28
28
|
}),
|
|
29
29
|
selected: !isDockedToTop,
|
|
30
30
|
elemAfter: !isDockedToTop ? /*#__PURE__*/React.createElement(CheckMarkIcon, {
|
|
31
|
-
label: ""
|
|
31
|
+
label: "",
|
|
32
|
+
size: "small"
|
|
32
33
|
}) : undefined
|
|
33
34
|
}, {
|
|
34
35
|
title: intl.formatMessage(selectionToolbarMessages.toolbarPositionFixedAtTop),
|
|
@@ -41,7 +42,8 @@ export const getOverflowFloatingToolbarConfig = ({
|
|
|
41
42
|
}),
|
|
42
43
|
selected: isDockedToTop,
|
|
43
44
|
elemAfter: isDockedToTop ? /*#__PURE__*/React.createElement(CheckMarkIcon, {
|
|
44
|
-
label: ""
|
|
45
|
+
label: "",
|
|
46
|
+
size: "small"
|
|
45
47
|
}) : undefined
|
|
46
48
|
}];
|
|
47
49
|
|
|
@@ -94,7 +96,8 @@ export const getOverflowPrimaryToolbarConfig = ({
|
|
|
94
96
|
label: ''
|
|
95
97
|
}),
|
|
96
98
|
elemAfter: /*#__PURE__*/React.createElement(CheckMarkIcon, {
|
|
97
|
-
label: ""
|
|
99
|
+
label: "",
|
|
100
|
+
size: "small"
|
|
98
101
|
})
|
|
99
102
|
}]
|
|
100
103
|
}];
|
|
@@ -3,8 +3,8 @@ import * as React from 'react';
|
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import { selectionToolbarMessages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import DockToolbarTopIcon from '@atlaskit/icon-lab/core/dock-toolbar-top';
|
|
6
|
+
import CheckMarkIcon from '@atlaskit/icon/core/check-mark';
|
|
6
7
|
import MinusIcon from '@atlaskit/icon/core/minus';
|
|
7
|
-
import CheckMarkIcon from '@atlaskit/icon/utility/check-mark';
|
|
8
8
|
import { HeadingItem } from '@atlaskit/menu';
|
|
9
9
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
10
10
|
// New editor controls
|
|
@@ -27,7 +27,8 @@ export var getOverflowFloatingToolbarConfig = function getOverflowFloatingToolba
|
|
|
27
27
|
}),
|
|
28
28
|
selected: !isDockedToTop,
|
|
29
29
|
elemAfter: !isDockedToTop ? /*#__PURE__*/React.createElement(CheckMarkIcon, {
|
|
30
|
-
label: ""
|
|
30
|
+
label: "",
|
|
31
|
+
size: "small"
|
|
31
32
|
}) : undefined
|
|
32
33
|
}, {
|
|
33
34
|
title: intl.formatMessage(selectionToolbarMessages.toolbarPositionFixedAtTop),
|
|
@@ -40,7 +41,8 @@ export var getOverflowFloatingToolbarConfig = function getOverflowFloatingToolba
|
|
|
40
41
|
}),
|
|
41
42
|
selected: isDockedToTop,
|
|
42
43
|
elemAfter: isDockedToTop ? /*#__PURE__*/React.createElement(CheckMarkIcon, {
|
|
43
|
-
label: ""
|
|
44
|
+
label: "",
|
|
45
|
+
size: "small"
|
|
44
46
|
}) : undefined
|
|
45
47
|
}];
|
|
46
48
|
|
|
@@ -93,7 +95,8 @@ export var getOverflowPrimaryToolbarConfig = function getOverflowPrimaryToolbarC
|
|
|
93
95
|
label: ''
|
|
94
96
|
}),
|
|
95
97
|
elemAfter: /*#__PURE__*/React.createElement(CheckMarkIcon, {
|
|
96
|
-
label: ""
|
|
98
|
+
label: "",
|
|
99
|
+
size: "small"
|
|
97
100
|
})
|
|
98
101
|
}]
|
|
99
102
|
}];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-selection-toolbar",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.14",
|
|
4
4
|
"description": "@atlaskit/editor-plugin-selection-toolbar for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/css": "^0.10.0",
|
|
37
|
-
"@atlaskit/editor-common": "^106.
|
|
37
|
+
"@atlaskit/editor-common": "^106.6.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^2.3.0",
|
|
39
|
-
"@atlaskit/editor-plugin-block-controls": "^3.
|
|
39
|
+
"@atlaskit/editor-plugin-block-controls": "^3.17.0",
|
|
40
40
|
"@atlaskit/editor-plugin-connectivity": "^2.0.0",
|
|
41
41
|
"@atlaskit/editor-plugin-editor-viewmode": "^4.0.0",
|
|
42
42
|
"@atlaskit/editor-plugin-primary-toolbar": "^3.2.0",
|
|
43
43
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
44
44
|
"@atlaskit/icon": "^26.4.0",
|
|
45
|
-
"@atlaskit/icon-lab": "^4.
|
|
45
|
+
"@atlaskit/icon-lab": "^4.19.0",
|
|
46
46
|
"@atlaskit/menu": "^8.0.0",
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
48
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
49
|
-
"@atlaskit/tokens": "^5.
|
|
48
|
+
"@atlaskit/tmp-editor-statsig": "^7.0.0",
|
|
49
|
+
"@atlaskit/tokens": "^5.1.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
51
|
"bind-event-listener": "^3.0.0"
|
|
52
52
|
},
|