@atlaskit/editor-plugin-toolbar 4.1.4 → 4.1.6

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,21 @@
1
1
  # @atlaskit/editor-plugin-toolbar
2
2
 
3
+ ## 4.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [`e504eea6e1d3f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e504eea6e1d3f) -
8
+ EDITOR-4665: Clean up platform_editor_toolbar_aifc_responsive_improve feature flag
9
+ - Updated dependencies
10
+
11
+ ## 4.1.5
12
+
13
+ ### Patch Changes
14
+
15
+ - [`653c0c803b286`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/653c0c803b286) -
16
+ EDITOR-4620 Clean up platform_editor_toolbar_aifc_patch_6
17
+ - Updated dependencies
18
+
3
19
  ## 4.1.4
4
20
 
5
21
  ### Patch Changes
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.getSelectionToolbarOpenExperiencePlugin = void 0;
8
8
  var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
9
+ var _analytics = require("@atlaskit/editor-common/analytics");
9
10
  var _experiences = require("@atlaskit/editor-common/experiences");
10
11
  var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
11
12
  var _state = require("@atlaskit/editor-prosemirror/state");
@@ -44,7 +45,7 @@ var getSelectionToolbarOpenExperiencePlugin = exports.getSelectionToolbarOpenExp
44
45
  return targetEl;
45
46
  };
46
47
  var experience = new _experiences.Experience(_experiences.EXPERIENCE_ID.TOOLBAR_OPEN, {
47
- actionSubjectId: 'selectionToolbar',
48
+ actionSubjectId: _analytics.ACTION_SUBJECT_ID.SELECTION_TOOLBAR,
48
49
  dispatchAnalyticsEvent: dispatchAnalyticsEvent,
49
50
  checks: [new _experiences.ExperienceCheckTimeout({
50
51
  durationMs: 1000,
@@ -14,7 +14,6 @@ var _utils = require("@atlaskit/editor-common/utils");
14
14
  var _state = require("@atlaskit/editor-prosemirror/state");
15
15
  var _utils2 = require("@atlaskit/editor-prosemirror/utils");
16
16
  var _editorToolbarModel = require("@atlaskit/editor-toolbar-model");
17
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
18
17
  var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
19
18
  var _selectionToolbarOpenExperience = require("./pm-plugins/experiences/selection-toolbar-open-experience");
20
19
  var _pluginKey = require("./pm-plugins/plugin-key");
@@ -103,7 +102,7 @@ var toolbarPlugin = exports.toolbarPlugin = function toolbarPlugin(_ref) {
103
102
  return contextualFormattingEnabled !== null && contextualFormattingEnabled !== void 0 ? contextualFormattingEnabled : 'always-pinned';
104
103
  },
105
104
  getBreakpointPreset: function getBreakpointPreset() {
106
- return (0, _platformFeatureFlags.fg)('platform_editor_toolbar_aifc_responsive_improve') ? breakpointPreset : undefined;
105
+ return breakpointPreset;
107
106
  }
108
107
  },
109
108
  getSharedState: function getSharedState(editorState) {
@@ -24,7 +24,6 @@ var PrimaryToolbar = exports.PrimaryToolbar = function PrimaryToolbar(_ref) {
24
24
  editorAppearance = _useEditorToolbar.editorAppearance;
25
25
  return /*#__PURE__*/_react.default.createElement(_editorToolbar.PrimaryToolbar, {
26
26
  label: "Primary Toolbar",
27
- reducedBreakpoints: editorAppearance !== 'full-page',
28
27
  breakpointPreset: getBreakpointPreset(breakpointPreset, editorAppearance)
29
28
  }, children);
30
29
  };
@@ -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: (0, _expValEquals.expValEquals)('platform_editor_toolbar_aifc_patch_6', 'isEnabled', true) && hasSeparator ? _editorToolbar.SeparatorPosition.START : 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: patch6Enabled ? isDisabled : isOffline,
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);
@@ -1,4 +1,5 @@
1
- import { Experience, EXPERIENCE_ID, ExperienceCheckDomMutation, ExperienceCheckTimeout, containsPopupWithNestedElement, getPopupContainerFromEditorView } from '@atlaskit/editor-common/experiences';
1
+ import { ACTION_SUBJECT_ID } from '@atlaskit/editor-common/analytics';
2
+ import { containsPopupWithNestedElement, Experience, EXPERIENCE_ID, ExperienceCheckDomMutation, ExperienceCheckTimeout, getPopupContainerFromEditorView } from '@atlaskit/editor-common/experiences';
2
3
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
4
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
4
5
  const pluginKey = new PluginKey('selectionToolbarOpenExperience');
@@ -37,7 +38,7 @@ export const getSelectionToolbarOpenExperiencePlugin = ({
37
38
  return targetEl;
38
39
  };
39
40
  const experience = new Experience(EXPERIENCE_ID.TOOLBAR_OPEN, {
40
- actionSubjectId: 'selectionToolbar',
41
+ actionSubjectId: ACTION_SUBJECT_ID.SELECTION_TOOLBAR,
41
42
  dispatchAnalyticsEvent,
42
43
  checks: [new ExperienceCheckTimeout({
43
44
  durationMs: 1000,
@@ -5,7 +5,6 @@ import { calculateToolbarPositionTrackHead } from '@atlaskit/editor-common/utils
5
5
  import { NodeSelection } from '@atlaskit/editor-prosemirror/state';
6
6
  import { findParentNodeOfType, findSelectedNodeOfType } from '@atlaskit/editor-prosemirror/utils';
7
7
  import { createComponentRegistry } from '@atlaskit/editor-toolbar-model';
8
- import { fg } from '@atlaskit/platform-feature-flags';
9
8
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
10
9
  import { getSelectionToolbarOpenExperiencePlugin } from './pm-plugins/experiences/selection-toolbar-open-experience';
11
10
  import { editorToolbarPluginKey } from './pm-plugins/plugin-key';
@@ -88,7 +87,7 @@ export const toolbarPlugin = ({
88
87
  return contextualFormattingEnabled !== null && contextualFormattingEnabled !== void 0 ? contextualFormattingEnabled : 'always-pinned';
89
88
  },
90
89
  getBreakpointPreset: () => {
91
- return fg('platform_editor_toolbar_aifc_responsive_improve') ? breakpointPreset : undefined;
90
+ return breakpointPreset;
92
91
  }
93
92
  },
94
93
  getSharedState(editorState) {
@@ -19,7 +19,6 @@ export const PrimaryToolbar = ({
19
19
  } = useEditorToolbar();
20
20
  return /*#__PURE__*/React.createElement(PrimaryToolbarBase, {
21
21
  label: "Primary Toolbar",
22
- reducedBreakpoints: editorAppearance !== 'full-page',
23
22
  breakpointPreset: getBreakpointPreset(breakpointPreset, editorAppearance)
24
23
  }, children);
25
24
  };
@@ -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: expValEquals('platform_editor_toolbar_aifc_patch_6', 'isEnabled', true) && hasSeparator ? SeparatorPosition.START : 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: patch6Enabled ? isDisabled : isOffline,
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);
@@ -1,5 +1,6 @@
1
1
  import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
2
- import { Experience, EXPERIENCE_ID, ExperienceCheckDomMutation, ExperienceCheckTimeout, containsPopupWithNestedElement, getPopupContainerFromEditorView } from '@atlaskit/editor-common/experiences';
2
+ import { ACTION_SUBJECT_ID } from '@atlaskit/editor-common/analytics';
3
+ import { containsPopupWithNestedElement, Experience, EXPERIENCE_ID, ExperienceCheckDomMutation, ExperienceCheckTimeout, getPopupContainerFromEditorView } from '@atlaskit/editor-common/experiences';
3
4
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
4
5
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
5
6
  var pluginKey = new PluginKey('selectionToolbarOpenExperience');
@@ -37,7 +38,7 @@ export var getSelectionToolbarOpenExperiencePlugin = function getSelectionToolba
37
38
  return targetEl;
38
39
  };
39
40
  var experience = new Experience(EXPERIENCE_ID.TOOLBAR_OPEN, {
40
- actionSubjectId: 'selectionToolbar',
41
+ actionSubjectId: ACTION_SUBJECT_ID.SELECTION_TOOLBAR,
41
42
  dispatchAnalyticsEvent: dispatchAnalyticsEvent,
42
43
  checks: [new ExperienceCheckTimeout({
43
44
  durationMs: 1000,
@@ -9,7 +9,6 @@ import { calculateToolbarPositionTrackHead } from '@atlaskit/editor-common/utils
9
9
  import { NodeSelection } from '@atlaskit/editor-prosemirror/state';
10
10
  import { findParentNodeOfType, findSelectedNodeOfType } from '@atlaskit/editor-prosemirror/utils';
11
11
  import { createComponentRegistry } from '@atlaskit/editor-toolbar-model';
12
- import { fg } from '@atlaskit/platform-feature-flags';
13
12
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
14
13
  import { getSelectionToolbarOpenExperiencePlugin } from './pm-plugins/experiences/selection-toolbar-open-experience';
15
14
  import { editorToolbarPluginKey } from './pm-plugins/plugin-key';
@@ -96,7 +95,7 @@ export var toolbarPlugin = function toolbarPlugin(_ref) {
96
95
  return contextualFormattingEnabled !== null && contextualFormattingEnabled !== void 0 ? contextualFormattingEnabled : 'always-pinned';
97
96
  },
98
97
  getBreakpointPreset: function getBreakpointPreset() {
99
- return fg('platform_editor_toolbar_aifc_responsive_improve') ? breakpointPreset : undefined;
98
+ return breakpointPreset;
100
99
  }
101
100
  },
102
101
  getSharedState: function getSharedState(editorState) {
@@ -17,7 +17,6 @@ export var PrimaryToolbar = function PrimaryToolbar(_ref) {
17
17
  editorAppearance = _useEditorToolbar.editorAppearance;
18
18
  return /*#__PURE__*/React.createElement(PrimaryToolbarBase, {
19
19
  label: "Primary Toolbar",
20
- reducedBreakpoints: editorAppearance !== 'full-page',
21
20
  breakpointPreset: getBreakpointPreset(breakpointPreset, editorAppearance)
22
21
  }, children);
23
22
  };
@@ -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: expValEquals('platform_editor_toolbar_aifc_patch_6', 'isEnabled', true) && hasSeparator ? SeparatorPosition.START : 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: patch6Enabled ? isDisabled : isOffline,
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);
@@ -1,4 +1,4 @@
1
- import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
1
+ import { type DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
2
2
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
3
  type SelectionToolbarOpenExperienceOptions = {
4
4
  dispatchAnalyticsEvent: DispatchAnalyticsEvent;
@@ -1,4 +1,4 @@
1
- import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
1
+ import { type DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
2
2
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
3
  type SelectionToolbarOpenExperienceOptions = {
4
4
  dispatchAnalyticsEvent: DispatchAnalyticsEvent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-toolbar",
3
- "version": "4.1.4",
3
+ "version": "4.1.6",
4
4
  "description": "Toolbar plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -39,22 +39,19 @@
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.0.0",
42
+ "@atlaskit/tmp-editor-statsig": "^17.7.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"
46
46
  },
47
47
  "peerDependencies": {
48
- "@atlaskit/editor-common": "^111.9.0",
48
+ "@atlaskit/editor-common": "^111.11.0",
49
49
  "react": "^18.2.0"
50
50
  },
51
51
  "platform-feature-flags": {
52
52
  "platform_editor_toolbar_aifc_placement_overridden": {
53
53
  "type": "boolean"
54
54
  },
55
- "platform_editor_toolbar_aifc_responsive_improve": {
56
- "type": "boolean"
57
- },
58
55
  "platform_editor_toolbar_aifc_undo_redo_confluence": {
59
56
  "type": "boolean"
60
57
  }