@atlaskit/editor-plugin-toolbar 4.1.5 → 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,13 @@
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
+
3
11
  ## 4.1.5
4
12
 
5
13
  ### 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
  };
@@ -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
  };
@@ -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
  };
@@ -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.5",
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.1.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
  }