@atlaskit/editor-plugin-list 12.0.19 → 12.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @atlaskit/editor-plugin-list
2
2
 
3
+ ## 12.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`a94a013546f69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a94a013546f69) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
10
+ ## 12.0.20
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
3
16
  ## 12.0.19
4
17
 
5
18
  ### Patch Changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "listPlugin", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _listPlugin.listPlugin;
10
+ }
11
+ });
12
+ var _listPlugin = require("../listPlugin");
@@ -0,0 +1 @@
1
+ "use strict";
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { listPlugin } from '../listPlugin';
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { listPlugin } from '../listPlugin';
File without changes
@@ -0,0 +1 @@
1
+ export type { ListPlugin, ListPluginDependencies, ListPluginActions, ListPluginCommands, ListPluginSharedState, } from '../listPluginType';
@@ -0,0 +1 @@
1
+ export { listPlugin } from '../listPlugin';
@@ -0,0 +1 @@
1
+ export type { FindRootParentListNode, IndentList, InputMethod, IsInsideListItem, ListState, OutdentList, ToggleBulletList, ToggleOrderedList, } from '../types/index';
@@ -0,0 +1 @@
1
+ export type { ListPlugin, ListPluginDependencies, ListPluginActions, ListPluginCommands, ListPluginSharedState, } from '../listPluginType';
@@ -0,0 +1 @@
1
+ export { listPlugin } from '../listPlugin';
@@ -0,0 +1 @@
1
+ export type { FindRootParentListNode, IndentList, InputMethod, IsInsideListItem, ListState, OutdentList, ToggleBulletList, ToggleOrderedList, } from '../types/index';
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-list/list-plugin",
3
+ "main": "../dist/cjs/entry-points/list-plugin.js",
4
+ "module": "../dist/esm/entry-points/list-plugin.js",
5
+ "module:es2019": "../dist/es2019/entry-points/list-plugin.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/entry-points/list-plugin.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/entry-points/list-plugin.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-list/list-plugin-type",
3
+ "main": "../dist/cjs/entry-points/list-plugin-type.js",
4
+ "module": "../dist/esm/entry-points/list-plugin-type.js",
5
+ "module:es2019": "../dist/es2019/entry-points/list-plugin-type.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/entry-points/list-plugin-type.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/entry-points/list-plugin-type.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-list",
3
- "version": "12.0.19",
3
+ "version": "12.1.0",
4
4
  "description": "List plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -30,19 +30,19 @@
30
30
  "@atlaskit/adf-schema": "^52.11.0",
31
31
  "@atlaskit/editor-plugin-analytics": "^10.0.0",
32
32
  "@atlaskit/editor-plugin-block-menu": "^9.1.0",
33
- "@atlaskit/editor-plugin-feature-flags": "^9.0.0",
34
- "@atlaskit/editor-plugin-toolbar": "^7.1.0",
33
+ "@atlaskit/editor-plugin-feature-flags": "^9.1.0",
34
+ "@atlaskit/editor-plugin-toolbar": "^7.2.0",
35
35
  "@atlaskit/editor-prosemirror": "^7.3.0",
36
- "@atlaskit/editor-toolbar": "^1.1.0",
36
+ "@atlaskit/editor-toolbar": "^1.2.0",
37
37
  "@atlaskit/icon": "^34.5.0",
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": "^79.0.0",
41
+ "@atlaskit/tmp-editor-statsig": "^80.0.0",
42
42
  "@babel/runtime": "^7.0.0"
43
43
  },
44
44
  "peerDependencies": {
45
- "@atlaskit/editor-common": "^114.29.0",
45
+ "@atlaskit/editor-common": "^114.30.0",
46
46
  "react": "^18.2.0",
47
47
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
48
48
  },
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-list/types",
3
+ "main": "../dist/cjs/entry-points/types.js",
4
+ "module": "../dist/esm/entry-points/types.js",
5
+ "module:es2019": "../dist/es2019/entry-points/types.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/entry-points/types.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/entry-points/types.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }