@atlaskit/editor-plugin-floating-toolbar 12.0.9 → 12.0.11

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,26 @@
1
1
  # @atlaskit/editor-plugin-floating-toolbar
2
2
 
3
+ ## 12.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - [`b3e797be9eed5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b3e797be9eed5) -
8
+ Clean up platform_editor_floating_toolbar_button_aria_label experiment.
9
+ - Remove expValEquals gate in editor-plugin-floating-toolbar Toolbar.tsx, always pass
10
+ ariaLabel={item?.ariaLabel}
11
+ - Remove expValEquals gate in editor-plugin-ai floating-toolbar-button.tsx, always set ariaLabel
12
+ to formatted message
13
+ - Remove type definition and createBooleanExperiment config entry from tmp-editor-statsig
14
+ experiments-config.ts
15
+
16
+ - Updated dependencies
17
+
18
+ ## 12.0.10
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+
3
24
  ## 12.0.9
4
25
 
5
26
  ### Patch Changes
@@ -177,7 +177,7 @@ var ToolbarItems = /*#__PURE__*/_react.default.memo(function (_ref) {
177
177
  ariaHasPopup: item.ariaHasPopup,
178
178
  tabIndex: item.tabIndex,
179
179
  isRadioButton: item.isRadioButton,
180
- ariaLabel: (0, _expValEquals.expValEquals)('platform_editor_floating_toolbar_button_aria_label', 'isEnabled', true) ? item === null || item === void 0 ? void 0 : item.ariaLabel : undefined,
180
+ ariaLabel: item === null || item === void 0 ? void 0 : item.ariaLabel,
181
181
  pulse: item.pulse,
182
182
  interactionName: item.interactionName,
183
183
  areAnyNewToolbarFlagsEnabled: areAnyNewToolbarFlagsEnabled
@@ -157,7 +157,7 @@ const ToolbarItems = /*#__PURE__*/React.memo(({
157
157
  ariaHasPopup: item.ariaHasPopup,
158
158
  tabIndex: item.tabIndex,
159
159
  isRadioButton: item.isRadioButton,
160
- ariaLabel: expValEquals('platform_editor_floating_toolbar_button_aria_label', 'isEnabled', true) ? item === null || item === void 0 ? void 0 : item.ariaLabel : undefined,
160
+ ariaLabel: item === null || item === void 0 ? void 0 : item.ariaLabel,
161
161
  pulse: item.pulse,
162
162
  interactionName: item.interactionName,
163
163
  areAnyNewToolbarFlagsEnabled: areAnyNewToolbarFlagsEnabled
@@ -171,7 +171,7 @@ var ToolbarItems = /*#__PURE__*/React.memo(function (_ref) {
171
171
  ariaHasPopup: item.ariaHasPopup,
172
172
  tabIndex: item.tabIndex,
173
173
  isRadioButton: item.isRadioButton,
174
- ariaLabel: expValEquals('platform_editor_floating_toolbar_button_aria_label', 'isEnabled', true) ? item === null || item === void 0 ? void 0 : item.ariaLabel : undefined,
174
+ ariaLabel: item === null || item === void 0 ? void 0 : item.ariaLabel,
175
175
  pulse: item.pulse,
176
176
  interactionName: item.interactionName,
177
177
  areAnyNewToolbarFlagsEnabled: areAnyNewToolbarFlagsEnabled
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-floating-toolbar",
3
- "version": "12.0.9",
3
+ "version": "12.0.11",
4
4
  "description": "Floating toolbar plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -43,7 +43,7 @@
43
43
  "@atlaskit/platform-feature-flags": "^1.1.0",
44
44
  "@atlaskit/primitives": "^19.0.0",
45
45
  "@atlaskit/select": "^21.10.0",
46
- "@atlaskit/tmp-editor-statsig": "^71.0.0",
46
+ "@atlaskit/tmp-editor-statsig": "^73.0.0",
47
47
  "@atlaskit/tokens": "^13.0.0",
48
48
  "@atlaskit/tooltip": "^21.2.0",
49
49
  "@babel/runtime": "^7.0.0",
@@ -54,7 +54,7 @@
54
54
  "react-loadable": "^5.1.0"
55
55
  },
56
56
  "peerDependencies": {
57
- "@atlaskit/editor-common": "^114.12.0",
57
+ "@atlaskit/editor-common": "^114.13.0",
58
58
  "react": "^18.2.0",
59
59
  "react-dom": "^18.2.0",
60
60
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"