@atlaskit/editor-plugin-block-menu 6.1.7 → 6.1.8
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-block-menu
|
|
2
2
|
|
|
3
|
+
## 6.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`3b290b31e9ad1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3b290b31e9ad1) -
|
|
8
|
+
Update menu button text for sync blocks
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 6.1.7
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/ui/copy-link.js
CHANGED
|
@@ -92,8 +92,8 @@ var CopyLinkDropdownItemContent = function CopyLinkDropdownItemContent(_ref) {
|
|
|
92
92
|
|
|
93
93
|
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
94
94
|
// Conditionally display message based on feature flag
|
|
95
|
-
// To clean up: remove the conditional and use only
|
|
96
|
-
var message = (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_3') ? _messages.blockMenuMessages.
|
|
95
|
+
// To clean up: remove the conditional and use only copyLinkToSelection message
|
|
96
|
+
var message = (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_3') ? _messages.blockMenuMessages.copyLinkToSelection : _messages.blockMenuMessages.copyLinkToBlock;
|
|
97
97
|
|
|
98
98
|
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
99
99
|
// Adds size="small" to icons for better visual consistency in block menu.
|
|
@@ -91,8 +91,8 @@ const CopyLinkDropdownItemContent = ({
|
|
|
91
91
|
|
|
92
92
|
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
93
93
|
// Conditionally display message based on feature flag
|
|
94
|
-
// To clean up: remove the conditional and use only
|
|
95
|
-
const message = fg('platform_editor_block_menu_v2_patch_3') ? messages.
|
|
94
|
+
// To clean up: remove the conditional and use only copyLinkToSelection message
|
|
95
|
+
const message = fg('platform_editor_block_menu_v2_patch_3') ? messages.copyLinkToSelection : messages.copyLinkToBlock;
|
|
96
96
|
|
|
97
97
|
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
98
98
|
// Adds size="small" to icons for better visual consistency in block menu.
|
package/dist/esm/ui/copy-link.js
CHANGED
|
@@ -83,8 +83,8 @@ var CopyLinkDropdownItemContent = function CopyLinkDropdownItemContent(_ref) {
|
|
|
83
83
|
|
|
84
84
|
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
85
85
|
// Conditionally display message based on feature flag
|
|
86
|
-
// To clean up: remove the conditional and use only
|
|
87
|
-
var message = fg('platform_editor_block_menu_v2_patch_3') ? messages.
|
|
86
|
+
// To clean up: remove the conditional and use only copyLinkToSelection message
|
|
87
|
+
var message = fg('platform_editor_block_menu_v2_patch_3') ? messages.copyLinkToSelection : messages.copyLinkToBlock;
|
|
88
88
|
|
|
89
89
|
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
90
90
|
// Adds size="small" to icons for better visual consistency in block menu.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-block-menu",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.8",
|
|
4
4
|
"description": "BlockMenu plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@atlaskit/css": "^0.19.0",
|
|
33
33
|
"@atlaskit/dropdown-menu": "^16.5.0",
|
|
34
34
|
"@atlaskit/editor-plugin-analytics": "^7.0.0",
|
|
35
|
-
"@atlaskit/editor-plugin-block-controls": "^8.
|
|
35
|
+
"@atlaskit/editor-plugin-block-controls": "^8.8.0",
|
|
36
36
|
"@atlaskit/editor-plugin-decorations": "^7.0.0",
|
|
37
37
|
"@atlaskit/editor-plugin-selection": "^7.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-user-intent": "^5.0.0",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
47
47
|
"@atlaskit/primitives": "^18.0.0",
|
|
48
48
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
49
|
-
"@atlaskit/tmp-editor-statsig": "^32.
|
|
49
|
+
"@atlaskit/tmp-editor-statsig": "^32.5.0",
|
|
50
50
|
"@atlaskit/tokens": "^11.0.0",
|
|
51
51
|
"@babel/runtime": "^7.0.0",
|
|
52
52
|
"bind-event-listener": "^3.0.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@atlaskit/editor-common": "^111.
|
|
55
|
+
"@atlaskit/editor-common": "^111.23.0",
|
|
56
56
|
"react": "^18.2.0",
|
|
57
57
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
58
58
|
},
|