@atlaskit/editor-plugin-toolbar 4.1.4 → 4.1.5
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 +8 -0
- package/dist/cjs/ui/Section.js +1 -2
- package/dist/cjs/ui/SelectionToolbar/index.js +1 -2
- package/dist/es2019/ui/Section.js +1 -2
- package/dist/es2019/ui/SelectionToolbar/index.js +1 -2
- package/dist/esm/ui/Section.js +1 -2
- package/dist/esm/ui/SelectionToolbar/index.js +1 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-toolbar
|
|
2
2
|
|
|
3
|
+
## 4.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`653c0c803b286`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/653c0c803b286) -
|
|
8
|
+
EDITOR-4620 Clean up platform_editor_toolbar_aifc_patch_6
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 4.1.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/ui/Section.js
CHANGED
|
@@ -9,7 +9,6 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
9
9
|
var _toolbar = require("@atlaskit/editor-common/toolbar");
|
|
10
10
|
var _editorToolbar = require("@atlaskit/editor-toolbar");
|
|
11
11
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
12
|
-
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
13
12
|
var shouldShowSection = function shouldShowSection(editMode, toolbar, toolbarDocking, contextualFormattingEnabled) {
|
|
14
13
|
if (editMode === 'view') {
|
|
15
14
|
return false;
|
|
@@ -66,6 +65,6 @@ var Section = exports.Section = function Section(_ref) {
|
|
|
66
65
|
var hasSeparator = showSeparatorInFullPagePrimaryToolbar && isFullPage;
|
|
67
66
|
return /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarSection, {
|
|
68
67
|
testId: testId,
|
|
69
|
-
hasSeparator:
|
|
68
|
+
hasSeparator: hasSeparator ? _editorToolbar.SeparatorPosition.START : hasSeparator
|
|
70
69
|
}, children);
|
|
71
70
|
};
|
|
@@ -85,7 +85,6 @@ var SelectionToolbar = exports.SelectionToolbar = function SelectionToolbar(_ref
|
|
|
85
85
|
}, [editorView, intl, api]);
|
|
86
86
|
var _useToolbarUI = (0, _editorToolbar.useToolbarUI)(),
|
|
87
87
|
isDisabled = _useToolbarUI.isDisabled;
|
|
88
|
-
var patch6Enabled = (0, _expValEquals.expValEquals)('platform_editor_toolbar_aifc_patch_6', 'isEnabled', true);
|
|
89
88
|
var isOffline = (0, _editorPluginConnectivity.isOfflineMode)(connectivityStateMode);
|
|
90
89
|
var isTextSelection = !editorView.state.selection.empty && editorView.state.selection instanceof _state.TextSelection;
|
|
91
90
|
var isAllSelection = !editorView.state.selection.empty && editorView.state.selection instanceof _state.AllSelection;
|
|
@@ -111,7 +110,7 @@ var SelectionToolbar = exports.SelectionToolbar = function SelectionToolbar(_ref
|
|
|
111
110
|
isOffline: isOffline
|
|
112
111
|
}, /*#__PURE__*/_react.default.createElement(_toolbar.EditorToolbarUIProvider, {
|
|
113
112
|
api: api,
|
|
114
|
-
isDisabled:
|
|
113
|
+
isDisabled: isDisabled,
|
|
115
114
|
fireAnalyticsEvent: function fireAnalyticsEvent(payload) {
|
|
116
115
|
var _api$analytics;
|
|
117
116
|
api === null || api === void 0 || (_api$analytics = api.analytics) === null || _api$analytics === void 0 || _api$analytics.actions.fireAnalyticsEvent(payload);
|
|
@@ -2,7 +2,6 @@ import React from 'react';
|
|
|
2
2
|
import { TOOLBARS, useEditorToolbar } from '@atlaskit/editor-common/toolbar';
|
|
3
3
|
import { ToolbarSection, SeparatorPosition } from '@atlaskit/editor-toolbar';
|
|
4
4
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
|
-
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
6
5
|
const shouldShowSection = (editMode, toolbar, toolbarDocking, contextualFormattingEnabled) => {
|
|
7
6
|
if (editMode === 'view') {
|
|
8
7
|
return false;
|
|
@@ -59,6 +58,6 @@ export const Section = ({
|
|
|
59
58
|
const hasSeparator = showSeparatorInFullPagePrimaryToolbar && isFullPage;
|
|
60
59
|
return /*#__PURE__*/React.createElement(ToolbarSection, {
|
|
61
60
|
testId: testId,
|
|
62
|
-
hasSeparator:
|
|
61
|
+
hasSeparator: hasSeparator ? SeparatorPosition.START : hasSeparator
|
|
63
62
|
}, children);
|
|
64
63
|
};
|
|
@@ -78,7 +78,6 @@ export const SelectionToolbar = ({
|
|
|
78
78
|
const {
|
|
79
79
|
isDisabled
|
|
80
80
|
} = useToolbarUI();
|
|
81
|
-
const patch6Enabled = expValEquals('platform_editor_toolbar_aifc_patch_6', 'isEnabled', true);
|
|
82
81
|
const isOffline = isOfflineMode(connectivityStateMode);
|
|
83
82
|
const isTextSelection = !editorView.state.selection.empty && editorView.state.selection instanceof TextSelection;
|
|
84
83
|
const isAllSelection = !editorView.state.selection.empty && editorView.state.selection instanceof AllSelection;
|
|
@@ -104,7 +103,7 @@ export const SelectionToolbar = ({
|
|
|
104
103
|
isOffline: isOffline
|
|
105
104
|
}, /*#__PURE__*/React.createElement(EditorToolbarUIProvider, {
|
|
106
105
|
api: api,
|
|
107
|
-
isDisabled:
|
|
106
|
+
isDisabled: isDisabled,
|
|
108
107
|
fireAnalyticsEvent: payload => {
|
|
109
108
|
var _api$analytics;
|
|
110
109
|
api === null || api === void 0 ? void 0 : (_api$analytics = api.analytics) === null || _api$analytics === void 0 ? void 0 : _api$analytics.actions.fireAnalyticsEvent(payload);
|
package/dist/esm/ui/Section.js
CHANGED
|
@@ -2,7 +2,6 @@ import React from 'react';
|
|
|
2
2
|
import { TOOLBARS, useEditorToolbar } from '@atlaskit/editor-common/toolbar';
|
|
3
3
|
import { ToolbarSection, SeparatorPosition } from '@atlaskit/editor-toolbar';
|
|
4
4
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
|
-
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
6
5
|
var shouldShowSection = function shouldShowSection(editMode, toolbar, toolbarDocking, contextualFormattingEnabled) {
|
|
7
6
|
if (editMode === 'view') {
|
|
8
7
|
return false;
|
|
@@ -59,6 +58,6 @@ export var Section = function Section(_ref) {
|
|
|
59
58
|
var hasSeparator = showSeparatorInFullPagePrimaryToolbar && isFullPage;
|
|
60
59
|
return /*#__PURE__*/React.createElement(ToolbarSection, {
|
|
61
60
|
testId: testId,
|
|
62
|
-
hasSeparator:
|
|
61
|
+
hasSeparator: hasSeparator ? SeparatorPosition.START : hasSeparator
|
|
63
62
|
}, children);
|
|
64
63
|
};
|
|
@@ -77,7 +77,6 @@ export var SelectionToolbar = function SelectionToolbar(_ref) {
|
|
|
77
77
|
}, [editorView, intl, api]);
|
|
78
78
|
var _useToolbarUI = useToolbarUI(),
|
|
79
79
|
isDisabled = _useToolbarUI.isDisabled;
|
|
80
|
-
var patch6Enabled = expValEquals('platform_editor_toolbar_aifc_patch_6', 'isEnabled', true);
|
|
81
80
|
var isOffline = isOfflineMode(connectivityStateMode);
|
|
82
81
|
var isTextSelection = !editorView.state.selection.empty && editorView.state.selection instanceof TextSelection;
|
|
83
82
|
var isAllSelection = !editorView.state.selection.empty && editorView.state.selection instanceof AllSelection;
|
|
@@ -103,7 +102,7 @@ export var SelectionToolbar = function SelectionToolbar(_ref) {
|
|
|
103
102
|
isOffline: isOffline
|
|
104
103
|
}, /*#__PURE__*/React.createElement(EditorToolbarUIProvider, {
|
|
105
104
|
api: api,
|
|
106
|
-
isDisabled:
|
|
105
|
+
isDisabled: isDisabled,
|
|
107
106
|
fireAnalyticsEvent: function fireAnalyticsEvent(payload) {
|
|
108
107
|
var _api$analytics;
|
|
109
108
|
api === null || api === void 0 || (_api$analytics = api.analytics) === null || _api$analytics === void 0 || _api$analytics.actions.fireAnalyticsEvent(payload);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-toolbar",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.5",
|
|
4
4
|
"description": "Toolbar plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@atlaskit/editor-toolbar": "^0.19.0",
|
|
40
40
|
"@atlaskit/editor-toolbar-model": "^0.3.0",
|
|
41
41
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
42
|
-
"@atlaskit/tmp-editor-statsig": "^17.
|
|
42
|
+
"@atlaskit/tmp-editor-statsig": "^17.1.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"bind-event-listener": "^3.0.0",
|
|
45
45
|
"react-intl-next": "npm:react-intl@^5.18.1"
|