@atlaskit/editor-plugin-panel 1.1.11 → 1.2.1

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,25 @@
1
1
  # @atlaskit/editor-plugin-panel
2
2
 
3
+ ## 1.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#99825](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99825)
8
+ [`f48158a56833`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f48158a56833) -
9
+ ECA11Y-195 Add missing aria-label for panels group in the floating toolbar
10
+
11
+ ## 1.2.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#99579](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99579)
16
+ [`f222af5687e9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f222af5687e9) -
17
+ Bump adf-schema to 36.3.0 and adf-schema-json to 1.14.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+
3
23
  ## 1.1.11
4
24
 
5
25
  ### Patch Changes
@@ -291,7 +291,8 @@ var getToolbarConfig = exports.getToolbarConfig = function getToolbarConfig(stat
291
291
  getDomRef: getDomRef,
292
292
  nodeType: nodeType,
293
293
  items: items,
294
- scrollable: true
294
+ scrollable: true,
295
+ groupLabel: formatMessage(_messages.panelMessages.panelsGroup)
295
296
  };
296
297
  }
297
298
  return;
@@ -274,7 +274,8 @@ export const getToolbarConfig = (state, intl, options = {}, providerFactory, api
274
274
  getDomRef,
275
275
  nodeType,
276
276
  items,
277
- scrollable: true
277
+ scrollable: true,
278
+ groupLabel: formatMessage(messages.panelsGroup)
278
279
  };
279
280
  }
280
281
  return;
@@ -281,7 +281,8 @@ export var getToolbarConfig = function getToolbarConfig(state, intl) {
281
281
  getDomRef: getDomRef,
282
282
  nodeType: nodeType,
283
283
  items: items,
284
- scrollable: true
284
+ scrollable: true,
285
+ groupLabel: formatMessage(messages.panelsGroup)
285
286
  };
286
287
  }
287
288
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-panel",
3
- "version": "1.1.11",
3
+ "version": "1.2.1",
4
4
  "description": "Panel plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,15 +33,15 @@
33
33
  ".": "./src/index.ts"
34
34
  },
35
35
  "dependencies": {
36
- "@atlaskit/adf-schema": "^36.1.0",
37
- "@atlaskit/editor-common": "^80.0.0",
36
+ "@atlaskit/adf-schema": "^36.3.0",
37
+ "@atlaskit/editor-common": "^80.3.0",
38
38
  "@atlaskit/editor-palette": "1.6.0",
39
- "@atlaskit/editor-plugin-analytics": "^1.1.0",
39
+ "@atlaskit/editor-plugin-analytics": "^1.2.0",
40
40
  "@atlaskit/editor-plugin-decorations": "^1.1.0",
41
41
  "@atlaskit/editor-prosemirror": "4.0.1",
42
- "@atlaskit/editor-shared-styles": "^2.10.0",
42
+ "@atlaskit/editor-shared-styles": "^2.11.0",
43
43
  "@atlaskit/emoji": "^67.6.0",
44
- "@atlaskit/icon": "^22.1.0",
44
+ "@atlaskit/icon": "^22.2.0",
45
45
  "@atlaskit/platform-feature-flags": "^0.2.0",
46
46
  "@atlaskit/theme": "^12.8.0",
47
47
  "@babel/runtime": "^7.0.0"