@atlaskit/editor-plugin-panel 3.3.2 → 3.3.3

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,15 @@
1
1
  # @atlaskit/editor-plugin-panel
2
2
 
3
+ ## 3.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#115259](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/115259)
8
+ [`a3150808f308a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a3150808f308a) -
9
+ Add new forceStaticToolbar config option to floating toolbar and add it to panel and table. Add
10
+ new contextual toolbar plugin which controls expand and collapse logic for toolbar options.
11
+ - Updated dependencies
12
+
3
13
  ## 3.3.2
4
14
 
5
15
  ### Patch Changes
@@ -304,7 +304,8 @@ var getToolbarConfig = exports.getToolbarConfig = function getToolbarConfig(stat
304
304
  nodeType: nodeType,
305
305
  items: items,
306
306
  scrollable: true,
307
- groupLabel: formatMessage(_messages.panelMessages.panelsGroup)
307
+ groupLabel: formatMessage(_messages.panelMessages.panelsGroup),
308
+ forceStaticToolbar: true
308
309
  };
309
310
  }
310
311
  return;
@@ -288,7 +288,8 @@ export const getToolbarConfig = (state, intl, options = {}, providerFactory, api
288
288
  nodeType,
289
289
  items,
290
290
  scrollable: true,
291
- groupLabel: formatMessage(messages.panelsGroup)
291
+ groupLabel: formatMessage(messages.panelsGroup),
292
+ forceStaticToolbar: true
292
293
  };
293
294
  }
294
295
  return;
@@ -294,7 +294,8 @@ export var getToolbarConfig = function getToolbarConfig(state, intl) {
294
294
  nodeType: nodeType,
295
295
  items: items,
296
296
  scrollable: true,
297
- groupLabel: formatMessage(messages.panelsGroup)
297
+ groupLabel: formatMessage(messages.panelsGroup),
298
+ forceStaticToolbar: true
298
299
  };
299
300
  }
300
301
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-panel",
3
- "version": "3.3.2",
3
+ "version": "3.3.3",
4
4
  "description": "Panel plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@atlaskit/adf-schema": "^47.2.1",
35
- "@atlaskit/editor-common": "^99.17.0",
35
+ "@atlaskit/editor-common": "^99.18.0",
36
36
  "@atlaskit/editor-palette": "1.7.0",
37
37
  "@atlaskit/editor-plugin-analytics": "^1.12.0",
38
38
  "@atlaskit/editor-plugin-decorations": "^1.5.0",
@@ -40,10 +40,10 @@
40
40
  "@atlaskit/editor-prosemirror": "7.0.0",
41
41
  "@atlaskit/editor-shared-styles": "^3.3.0",
42
42
  "@atlaskit/emoji": "^67.14.0",
43
- "@atlaskit/icon": "^23.9.0",
43
+ "@atlaskit/icon": "^23.10.0",
44
44
  "@atlaskit/platform-feature-flags": "^1.1.0",
45
45
  "@atlaskit/theme": "^16.0.0",
46
- "@atlaskit/tmp-editor-statsig": "^2.46.0",
46
+ "@atlaskit/tmp-editor-statsig": "^2.47.0",
47
47
  "@babel/runtime": "^7.0.0",
48
48
  "uuid": "^3.1.0"
49
49
  },