@atlaskit/editor-plugin-panel 4.0.1 → 4.1.0
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 +13 -0
- package/dist/cjs/ui/toolbar.js +1 -2
- package/dist/es2019/ui/toolbar.js +1 -2
- package/dist/esm/ui/toolbar.js +1 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-panel
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#119765](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119765)
|
|
8
|
+
[`5a27b842be965`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5a27b842be965) -
|
|
9
|
+
Add deprecated label to `forceStaticToolbar` in floating toolbar property and remove its usage
|
|
10
|
+
across plugins
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 4.0.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/cjs/ui/toolbar.js
CHANGED
|
@@ -338,8 +338,7 @@ var getToolbarConfig = exports.getToolbarConfig = function getToolbarConfig(stat
|
|
|
338
338
|
nodeType: nodeType,
|
|
339
339
|
items: items,
|
|
340
340
|
scrollable: true,
|
|
341
|
-
groupLabel: formatMessage(_messages.panelMessages.panelsGroup)
|
|
342
|
-
forceStaticToolbar: true
|
|
341
|
+
groupLabel: formatMessage(_messages.panelMessages.panelsGroup)
|
|
343
342
|
};
|
|
344
343
|
}
|
|
345
344
|
return;
|
|
@@ -322,8 +322,7 @@ export const getToolbarConfig = (state, intl, options = {}, providerFactory, api
|
|
|
322
322
|
nodeType,
|
|
323
323
|
items,
|
|
324
324
|
scrollable: true,
|
|
325
|
-
groupLabel: formatMessage(messages.panelsGroup)
|
|
326
|
-
forceStaticToolbar: true
|
|
325
|
+
groupLabel: formatMessage(messages.panelsGroup)
|
|
327
326
|
};
|
|
328
327
|
}
|
|
329
328
|
return;
|
package/dist/esm/ui/toolbar.js
CHANGED
|
@@ -328,8 +328,7 @@ export var getToolbarConfig = function getToolbarConfig(state, intl) {
|
|
|
328
328
|
nodeType: nodeType,
|
|
329
329
|
items: items,
|
|
330
330
|
scrollable: true,
|
|
331
|
-
groupLabel: formatMessage(messages.panelsGroup)
|
|
332
|
-
forceStaticToolbar: true
|
|
331
|
+
groupLabel: formatMessage(messages.panelsGroup)
|
|
333
332
|
};
|
|
334
333
|
}
|
|
335
334
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^47.2.1",
|
|
35
|
-
"@atlaskit/editor-common": "^100.
|
|
35
|
+
"@atlaskit/editor-common": "^100.3.0",
|
|
36
36
|
"@atlaskit/editor-palette": "2.0.0",
|
|
37
37
|
"@atlaskit/editor-plugin-analytics": "^2.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-decorations": "^2.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-emoji": "^3.0.0",
|
|
40
40
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
41
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
41
|
+
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
42
42
|
"@atlaskit/emoji": "^68.0.0",
|
|
43
43
|
"@atlaskit/icon": "^24.1.0",
|
|
44
44
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
45
45
|
"@atlaskit/theme": "^17.0.0",
|
|
46
|
-
"@atlaskit/tmp-editor-statsig": "^3.
|
|
46
|
+
"@atlaskit/tmp-editor-statsig": "^3.3.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0",
|
|
48
48
|
"uuid": "^3.1.0"
|
|
49
49
|
},
|