@atlaskit/editor-plugin-list 9.0.17 → 9.0.19
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 +14 -0
- package/dist/cjs/ui/BulletedListBlockMenuItem.js +8 -1
- package/dist/cjs/ui/NumberedListBlockMenuItem.js +8 -1
- package/dist/es2019/ui/BulletedListBlockMenuItem.js +8 -1
- package/dist/es2019/ui/NumberedListBlockMenuItem.js +8 -1
- package/dist/esm/ui/BulletedListBlockMenuItem.js +8 -1
- package/dist/esm/ui/NumberedListBlockMenuItem.js +8 -1
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-list
|
|
2
2
|
|
|
3
|
+
## 9.0.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`7ea2e225c0abb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7ea2e225c0abb) -
|
|
8
|
+
[ux] Minor styling, wording changes for block menu and sync blocks
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 9.0.18
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 9.0.17
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -11,6 +11,7 @@ var _analytics = require("@atlaskit/editor-common/analytics");
|
|
|
11
11
|
var _messages = require("@atlaskit/editor-common/messages");
|
|
12
12
|
var _editorToolbar = require("@atlaskit/editor-toolbar");
|
|
13
13
|
var _listBulleted = _interopRequireDefault(require("@atlaskit/icon/core/list-bulleted"));
|
|
14
|
+
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
14
15
|
var NODE_NAME = 'bulletList';
|
|
15
16
|
var BulletedListBlockMenuItem = function BulletedListBlockMenuItem(_ref) {
|
|
16
17
|
var api = _ref.api;
|
|
@@ -32,10 +33,16 @@ var BulletedListBlockMenuItem = function BulletedListBlockMenuItem(_ref) {
|
|
|
32
33
|
}) : null;
|
|
33
34
|
});
|
|
34
35
|
};
|
|
36
|
+
|
|
37
|
+
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
38
|
+
// Adds size="small" to icons for better visual consistency in block menu.
|
|
39
|
+
// To clean up: remove conditional, keep only size="small" version.
|
|
40
|
+
var iconSize = (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_3') ? 'small' : undefined;
|
|
35
41
|
return /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarDropdownItem, {
|
|
36
42
|
onClick: handleClick,
|
|
37
43
|
elemBefore: /*#__PURE__*/_react.default.createElement(_listBulleted.default, {
|
|
38
|
-
label: ""
|
|
44
|
+
label: "",
|
|
45
|
+
size: iconSize
|
|
39
46
|
})
|
|
40
47
|
}, formatMessage(_messages.listMessages.bulletedList));
|
|
41
48
|
};
|
|
@@ -11,6 +11,7 @@ var _analytics = require("@atlaskit/editor-common/analytics");
|
|
|
11
11
|
var _messages = require("@atlaskit/editor-common/messages");
|
|
12
12
|
var _editorToolbar = require("@atlaskit/editor-toolbar");
|
|
13
13
|
var _listNumbered = _interopRequireDefault(require("@atlaskit/icon/core/list-numbered"));
|
|
14
|
+
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
14
15
|
var NODE_NAME = 'orderedList';
|
|
15
16
|
var NumberedListBlockMenuItem = function NumberedListBlockMenuItem(_ref) {
|
|
16
17
|
var api = _ref.api;
|
|
@@ -32,10 +33,16 @@ var NumberedListBlockMenuItem = function NumberedListBlockMenuItem(_ref) {
|
|
|
32
33
|
}) : null;
|
|
33
34
|
});
|
|
34
35
|
};
|
|
36
|
+
|
|
37
|
+
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
38
|
+
// Adds size="small" to icons for better visual consistency in block menu.
|
|
39
|
+
// To clean up: remove conditional, keep only size="small" version.
|
|
40
|
+
var iconSize = (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_3') ? 'small' : undefined;
|
|
35
41
|
return /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarDropdownItem, {
|
|
36
42
|
onClick: handleClick,
|
|
37
43
|
elemBefore: /*#__PURE__*/_react.default.createElement(_listNumbered.default, {
|
|
38
|
-
label: ""
|
|
44
|
+
label: "",
|
|
45
|
+
size: iconSize
|
|
39
46
|
})
|
|
40
47
|
}, formatMessage(_messages.listMessages.orderedList));
|
|
41
48
|
};
|
|
@@ -4,6 +4,7 @@ import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
|
4
4
|
import { listMessages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { ToolbarDropdownItem } from '@atlaskit/editor-toolbar';
|
|
6
6
|
import ListBulletedIcon from '@atlaskit/icon/core/list-bulleted';
|
|
7
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
8
|
const NODE_NAME = 'bulletList';
|
|
8
9
|
const BulletedListBlockMenuItem = ({
|
|
9
10
|
api
|
|
@@ -28,10 +29,16 @@ const BulletedListBlockMenuItem = ({
|
|
|
28
29
|
}) : null;
|
|
29
30
|
});
|
|
30
31
|
};
|
|
32
|
+
|
|
33
|
+
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
34
|
+
// Adds size="small" to icons for better visual consistency in block menu.
|
|
35
|
+
// To clean up: remove conditional, keep only size="small" version.
|
|
36
|
+
const iconSize = fg('platform_editor_block_menu_v2_patch_3') ? 'small' : undefined;
|
|
31
37
|
return /*#__PURE__*/React.createElement(ToolbarDropdownItem, {
|
|
32
38
|
onClick: handleClick,
|
|
33
39
|
elemBefore: /*#__PURE__*/React.createElement(ListBulletedIcon, {
|
|
34
|
-
label: ""
|
|
40
|
+
label: "",
|
|
41
|
+
size: iconSize
|
|
35
42
|
})
|
|
36
43
|
}, formatMessage(listMessages.bulletedList));
|
|
37
44
|
};
|
|
@@ -4,6 +4,7 @@ import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
|
4
4
|
import { listMessages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { ToolbarDropdownItem } from '@atlaskit/editor-toolbar';
|
|
6
6
|
import ListNumberedIcon from '@atlaskit/icon/core/list-numbered';
|
|
7
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
8
|
const NODE_NAME = 'orderedList';
|
|
8
9
|
const NumberedListBlockMenuItem = ({
|
|
9
10
|
api
|
|
@@ -28,10 +29,16 @@ const NumberedListBlockMenuItem = ({
|
|
|
28
29
|
}) : null;
|
|
29
30
|
});
|
|
30
31
|
};
|
|
32
|
+
|
|
33
|
+
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
34
|
+
// Adds size="small" to icons for better visual consistency in block menu.
|
|
35
|
+
// To clean up: remove conditional, keep only size="small" version.
|
|
36
|
+
const iconSize = fg('platform_editor_block_menu_v2_patch_3') ? 'small' : undefined;
|
|
31
37
|
return /*#__PURE__*/React.createElement(ToolbarDropdownItem, {
|
|
32
38
|
onClick: handleClick,
|
|
33
39
|
elemBefore: /*#__PURE__*/React.createElement(ListNumberedIcon, {
|
|
34
|
-
label: ""
|
|
40
|
+
label: "",
|
|
41
|
+
size: iconSize
|
|
35
42
|
})
|
|
36
43
|
}, formatMessage(listMessages.orderedList));
|
|
37
44
|
};
|
|
@@ -4,6 +4,7 @@ import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
|
4
4
|
import { listMessages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { ToolbarDropdownItem } from '@atlaskit/editor-toolbar';
|
|
6
6
|
import ListBulletedIcon from '@atlaskit/icon/core/list-bulleted';
|
|
7
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
8
|
var NODE_NAME = 'bulletList';
|
|
8
9
|
var BulletedListBlockMenuItem = function BulletedListBlockMenuItem(_ref) {
|
|
9
10
|
var api = _ref.api;
|
|
@@ -25,10 +26,16 @@ var BulletedListBlockMenuItem = function BulletedListBlockMenuItem(_ref) {
|
|
|
25
26
|
}) : null;
|
|
26
27
|
});
|
|
27
28
|
};
|
|
29
|
+
|
|
30
|
+
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
31
|
+
// Adds size="small" to icons for better visual consistency in block menu.
|
|
32
|
+
// To clean up: remove conditional, keep only size="small" version.
|
|
33
|
+
var iconSize = fg('platform_editor_block_menu_v2_patch_3') ? 'small' : undefined;
|
|
28
34
|
return /*#__PURE__*/React.createElement(ToolbarDropdownItem, {
|
|
29
35
|
onClick: handleClick,
|
|
30
36
|
elemBefore: /*#__PURE__*/React.createElement(ListBulletedIcon, {
|
|
31
|
-
label: ""
|
|
37
|
+
label: "",
|
|
38
|
+
size: iconSize
|
|
32
39
|
})
|
|
33
40
|
}, formatMessage(listMessages.bulletedList));
|
|
34
41
|
};
|
|
@@ -4,6 +4,7 @@ import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
|
4
4
|
import { listMessages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { ToolbarDropdownItem } from '@atlaskit/editor-toolbar';
|
|
6
6
|
import ListNumberedIcon from '@atlaskit/icon/core/list-numbered';
|
|
7
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
8
|
var NODE_NAME = 'orderedList';
|
|
8
9
|
var NumberedListBlockMenuItem = function NumberedListBlockMenuItem(_ref) {
|
|
9
10
|
var api = _ref.api;
|
|
@@ -25,10 +26,16 @@ var NumberedListBlockMenuItem = function NumberedListBlockMenuItem(_ref) {
|
|
|
25
26
|
}) : null;
|
|
26
27
|
});
|
|
27
28
|
};
|
|
29
|
+
|
|
30
|
+
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
31
|
+
// Adds size="small" to icons for better visual consistency in block menu.
|
|
32
|
+
// To clean up: remove conditional, keep only size="small" version.
|
|
33
|
+
var iconSize = fg('platform_editor_block_menu_v2_patch_3') ? 'small' : undefined;
|
|
28
34
|
return /*#__PURE__*/React.createElement(ToolbarDropdownItem, {
|
|
29
35
|
onClick: handleClick,
|
|
30
36
|
elemBefore: /*#__PURE__*/React.createElement(ListNumberedIcon, {
|
|
31
|
-
label: ""
|
|
37
|
+
label: "",
|
|
38
|
+
size: iconSize
|
|
32
39
|
})
|
|
33
40
|
}, formatMessage(listMessages.orderedList));
|
|
34
41
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-list",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.19",
|
|
4
4
|
"description": "List plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@atlaskit/adf-schema": "^51.5.0",
|
|
31
31
|
"@atlaskit/editor-plugin-analytics": "^7.0.0",
|
|
32
|
-
"@atlaskit/editor-plugin-block-menu": "^6.
|
|
32
|
+
"@atlaskit/editor-plugin-block-menu": "^6.1.0",
|
|
33
33
|
"@atlaskit/editor-plugin-feature-flags": "^6.0.0",
|
|
34
34
|
"@atlaskit/editor-plugin-toolbar": "^4.1.0",
|
|
35
35
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
39
39
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
40
40
|
"@atlaskit/prosemirror-input-rules": "^3.6.0",
|
|
41
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
41
|
+
"@atlaskit/tmp-editor-statsig": "^29.6.0",
|
|
42
42
|
"@babel/runtime": "^7.0.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@atlaskit/editor-common": "^111.
|
|
45
|
+
"@atlaskit/editor-common": "^111.19.0",
|
|
46
46
|
"react": "^18.2.0",
|
|
47
47
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
48
48
|
},
|
|
@@ -84,6 +84,9 @@
|
|
|
84
84
|
"platform-feature-flags": {
|
|
85
85
|
"platform_editor_adf_with_localid": {
|
|
86
86
|
"type": "boolean"
|
|
87
|
+
},
|
|
88
|
+
"platform_editor_block_menu_v2_patch_3": {
|
|
89
|
+
"type": "boolean"
|
|
87
90
|
}
|
|
88
91
|
},
|
|
89
92
|
"stricter": {
|