@atlaskit/editor-plugin-block-type 14.0.18 → 14.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/ToolbarBlockType/package.json +17 -0
  3. package/block-type/package.json +17 -0
  4. package/block-types/package.json +17 -0
  5. package/blockTypePlugin/package.json +17 -0
  6. package/blockTypePluginType/package.json +17 -0
  7. package/consts/block-types/package.json +17 -0
  8. package/dist/cjs/entry-points/ToolbarBlockType.js +1 -0
  9. package/dist/cjs/entry-points/block-type.js +1 -0
  10. package/dist/cjs/entry-points/block-types.js +1 -0
  11. package/dist/cjs/entry-points/blockTypePlugin.js +12 -0
  12. package/dist/cjs/entry-points/blockTypePluginType.js +1 -0
  13. package/dist/cjs/entry-points/consts-block-types.js +66 -0
  14. package/dist/cjs/entry-points/main.js +1 -0
  15. package/dist/cjs/entry-points/types.js +1 -0
  16. package/dist/es2019/entry-points/ToolbarBlockType.js +0 -0
  17. package/dist/es2019/entry-points/block-type.js +0 -0
  18. package/dist/es2019/entry-points/block-types.js +0 -0
  19. package/dist/es2019/entry-points/blockTypePlugin.js +2 -0
  20. package/dist/es2019/entry-points/blockTypePluginType.js +0 -0
  21. package/dist/es2019/entry-points/consts-block-types.js +2 -0
  22. package/dist/es2019/entry-points/main.js +0 -0
  23. package/dist/es2019/entry-points/types.js +0 -0
  24. package/dist/esm/entry-points/ToolbarBlockType.js +0 -0
  25. package/dist/esm/entry-points/block-type.js +0 -0
  26. package/dist/esm/entry-points/block-types.js +0 -0
  27. package/dist/esm/entry-points/blockTypePlugin.js +2 -0
  28. package/dist/esm/entry-points/blockTypePluginType.js +0 -0
  29. package/dist/esm/entry-points/consts-block-types.js +2 -0
  30. package/dist/esm/entry-points/main.js +0 -0
  31. package/dist/esm/entry-points/types.js +0 -0
  32. package/dist/types/entry-points/ToolbarBlockType.d.ts +1 -0
  33. package/dist/types/entry-points/block-type.d.ts +1 -0
  34. package/dist/types/entry-points/block-types.d.ts +1 -0
  35. package/dist/types/entry-points/blockTypePlugin.d.ts +1 -0
  36. package/dist/types/entry-points/blockTypePluginType.d.ts +1 -0
  37. package/dist/types/entry-points/consts-block-types.d.ts +1 -0
  38. package/dist/types/entry-points/main.d.ts +1 -0
  39. package/dist/types/entry-points/types.d.ts +1 -0
  40. package/dist/types-ts4.5/entry-points/ToolbarBlockType.d.ts +1 -0
  41. package/dist/types-ts4.5/entry-points/block-type.d.ts +1 -0
  42. package/dist/types-ts4.5/entry-points/block-types.d.ts +1 -0
  43. package/dist/types-ts4.5/entry-points/blockTypePlugin.d.ts +1 -0
  44. package/dist/types-ts4.5/entry-points/blockTypePluginType.d.ts +1 -0
  45. package/dist/types-ts4.5/entry-points/consts-block-types.d.ts +1 -0
  46. package/dist/types-ts4.5/entry-points/main.d.ts +1 -0
  47. package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
  48. package/main/package.json +17 -0
  49. package/package.json +13 -13
  50. package/types/package.json +17 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @atlaskit/editor-plugin-block-type
2
2
 
3
+ ## 14.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`f1eebdf4ed96b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1eebdf4ed96b) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 14.0.19
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+
3
20
  ## 14.0.18
4
21
 
5
22
  ### Patch Changes
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-block-type/ToolbarBlockType",
3
+ "main": "../dist/cjs/entry-points/ToolbarBlockType.js",
4
+ "module": "../dist/esm/entry-points/ToolbarBlockType.js",
5
+ "module:es2019": "../dist/es2019/entry-points/ToolbarBlockType.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/ToolbarBlockType.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/ToolbarBlockType.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-block-type/block-type",
3
+ "main": "../dist/cjs/entry-points/block-type.js",
4
+ "module": "../dist/esm/entry-points/block-type.js",
5
+ "module:es2019": "../dist/es2019/entry-points/block-type.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/block-type.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/block-type.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-block-type/block-types",
3
+ "main": "../dist/cjs/entry-points/block-types.js",
4
+ "module": "../dist/esm/entry-points/block-types.js",
5
+ "module:es2019": "../dist/es2019/entry-points/block-types.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/block-types.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/block-types.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-block-type/blockTypePlugin",
3
+ "main": "../dist/cjs/entry-points/blockTypePlugin.js",
4
+ "module": "../dist/esm/entry-points/blockTypePlugin.js",
5
+ "module:es2019": "../dist/es2019/entry-points/blockTypePlugin.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/blockTypePlugin.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/blockTypePlugin.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-block-type/blockTypePluginType",
3
+ "main": "../dist/cjs/entry-points/blockTypePluginType.js",
4
+ "module": "../dist/esm/entry-points/blockTypePluginType.js",
5
+ "module:es2019": "../dist/es2019/entry-points/blockTypePluginType.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/blockTypePluginType.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/blockTypePluginType.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-block-type/consts/block-types",
3
+ "main": "../../dist/cjs/entry-points/consts-block-types.js",
4
+ "module": "../../dist/esm/entry-points/consts-block-types.js",
5
+ "module:es2019": "../../dist/es2019/entry-points/consts-block-types.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../../dist/types/entry-points/consts-block-types.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../../dist/types-ts4.5/entry-points/consts-block-types.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+ "use strict";
@@ -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, "blockTypePlugin", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _blockTypePlugin.blockTypePlugin;
10
+ }
11
+ });
12
+ var _blockTypePlugin = require("../blockTypePlugin");
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "BLOCK_QUOTE", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _blockTypes.BLOCK_QUOTE;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "CODE_BLOCK", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _blockTypes.CODE_BLOCK;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "HEADING_1", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _blockTypes.HEADING_1;
22
+ }
23
+ });
24
+ Object.defineProperty(exports, "HEADING_2", {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return _blockTypes.HEADING_2;
28
+ }
29
+ });
30
+ Object.defineProperty(exports, "HEADING_3", {
31
+ enumerable: true,
32
+ get: function get() {
33
+ return _blockTypes.HEADING_3;
34
+ }
35
+ });
36
+ Object.defineProperty(exports, "HEADING_4", {
37
+ enumerable: true,
38
+ get: function get() {
39
+ return _blockTypes.HEADING_4;
40
+ }
41
+ });
42
+ Object.defineProperty(exports, "HEADING_5", {
43
+ enumerable: true,
44
+ get: function get() {
45
+ return _blockTypes.HEADING_5;
46
+ }
47
+ });
48
+ Object.defineProperty(exports, "HEADING_6", {
49
+ enumerable: true,
50
+ get: function get() {
51
+ return _blockTypes.HEADING_6;
52
+ }
53
+ });
54
+ Object.defineProperty(exports, "NORMAL_TEXT", {
55
+ enumerable: true,
56
+ get: function get() {
57
+ return _blockTypes.NORMAL_TEXT;
58
+ }
59
+ });
60
+ Object.defineProperty(exports, "PANEL", {
61
+ enumerable: true,
62
+ get: function get() {
63
+ return _blockTypes.PANEL;
64
+ }
65
+ });
66
+ var _blockTypes = require("../pm-plugins/block-types");
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+ "use strict";
File without changes
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { blockTypePlugin } from '../blockTypePlugin';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { BLOCK_QUOTE, CODE_BLOCK, HEADING_1, HEADING_2, HEADING_3, HEADING_4, HEADING_5, HEADING_6, NORMAL_TEXT, PANEL } from '../pm-plugins/block-types';
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { blockTypePlugin } from '../blockTypePlugin';
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { BLOCK_QUOTE, CODE_BLOCK, HEADING_1, HEADING_2, HEADING_3, HEADING_4, HEADING_5, HEADING_6, NORMAL_TEXT, PANEL } from '../pm-plugins/block-types';
File without changes
File without changes
@@ -0,0 +1 @@
1
+ export type { DropdownItem } from '../pm-plugins/ui/ToolbarBlockType/index';
@@ -0,0 +1 @@
1
+ export type { InputMethod, ClearFormattingInputMethod } from '../pm-plugins/commands/block-type';
@@ -0,0 +1 @@
1
+ export type { TextBlockTypes } from '../pm-plugins/block-types';
@@ -0,0 +1 @@
1
+ export { blockTypePlugin } from '../blockTypePlugin';
@@ -0,0 +1 @@
1
+ export type { BlockTypePlugin } from '../blockTypePluginType';
@@ -0,0 +1 @@
1
+ export { BLOCK_QUOTE, CODE_BLOCK, HEADING_1, HEADING_2, HEADING_3, HEADING_4, HEADING_5, HEADING_6, NORMAL_TEXT, PANEL, } from '../pm-plugins/block-types';
@@ -0,0 +1 @@
1
+ export type { BlockTypeState } from '../pm-plugins/main';
@@ -0,0 +1 @@
1
+ export type { BlockTypePluginOptions, BlockType } from '../pm-plugins/types';
@@ -0,0 +1 @@
1
+ export type { DropdownItem } from '../pm-plugins/ui/ToolbarBlockType/index';
@@ -0,0 +1 @@
1
+ export type { InputMethod, ClearFormattingInputMethod } from '../pm-plugins/commands/block-type';
@@ -0,0 +1 @@
1
+ export type { TextBlockTypes } from '../pm-plugins/block-types';
@@ -0,0 +1 @@
1
+ export { blockTypePlugin } from '../blockTypePlugin';
@@ -0,0 +1 @@
1
+ export type { BlockTypePlugin } from '../blockTypePluginType';
@@ -0,0 +1 @@
1
+ export { BLOCK_QUOTE, CODE_BLOCK, HEADING_1, HEADING_2, HEADING_3, HEADING_4, HEADING_5, HEADING_6, NORMAL_TEXT, PANEL, } from '../pm-plugins/block-types';
@@ -0,0 +1 @@
1
+ export type { BlockTypeState } from '../pm-plugins/main';
@@ -0,0 +1 @@
1
+ export type { BlockTypePluginOptions, BlockType } from '../pm-plugins/types';
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-block-type/main",
3
+ "main": "../dist/cjs/entry-points/main.js",
4
+ "module": "../dist/esm/entry-points/main.js",
5
+ "module:es2019": "../dist/es2019/entry-points/main.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/main.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/main.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-block-type",
3
- "version": "14.0.18",
3
+ "version": "14.1.0",
4
4
  "description": "BlockType plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,24 +32,24 @@
32
32
  "@atlaskit/adf-schema": "^52.11.0",
33
33
  "@atlaskit/css": "^0.19.0",
34
34
  "@atlaskit/editor-plugin-analytics": "^10.0.0",
35
- "@atlaskit/editor-plugin-block-menu": "^9.1.0",
36
- "@atlaskit/editor-plugin-list": "^12.0.0",
37
- "@atlaskit/editor-plugin-primary-toolbar": "^11.0.0",
38
- "@atlaskit/editor-plugin-selection": "^10.0.0",
39
- "@atlaskit/editor-plugin-selection-toolbar": "^11.2.0",
40
- "@atlaskit/editor-plugin-toolbar": "^7.2.0",
35
+ "@atlaskit/editor-plugin-block-menu": "^9.2.0",
36
+ "@atlaskit/editor-plugin-list": "^12.1.0",
37
+ "@atlaskit/editor-plugin-primary-toolbar": "^11.1.0",
38
+ "@atlaskit/editor-plugin-selection": "^10.1.0",
39
+ "@atlaskit/editor-plugin-selection-toolbar": "^11.3.0",
40
+ "@atlaskit/editor-plugin-toolbar": "^7.3.0",
41
41
  "@atlaskit/editor-prosemirror": "^7.3.0",
42
- "@atlaskit/editor-shared-styles": "^3.10.0",
43
- "@atlaskit/editor-tables": "^2.9.0",
44
- "@atlaskit/editor-toolbar": "^1.2.0",
45
- "@atlaskit/editor-toolbar-model": "^0.4.0",
42
+ "@atlaskit/editor-shared-styles": "^3.11.0",
43
+ "@atlaskit/editor-tables": "^2.10.0",
44
+ "@atlaskit/editor-toolbar": "^1.4.0",
45
+ "@atlaskit/editor-toolbar-model": "^0.5.0",
46
46
  "@atlaskit/icon": "^34.5.0",
47
47
  "@atlaskit/icon-lab": "^6.9.0",
48
48
  "@atlaskit/platform-feature-flags": "^1.1.0",
49
49
  "@atlaskit/primitives": "^19.0.0",
50
50
  "@atlaskit/prosemirror-history": "^0.2.0",
51
- "@atlaskit/prosemirror-input-rules": "^3.6.0",
52
- "@atlaskit/tmp-editor-statsig": "^80.0.0",
51
+ "@atlaskit/prosemirror-input-rules": "^3.7.0",
52
+ "@atlaskit/tmp-editor-statsig": "^80.3.0",
53
53
  "@atlaskit/tokens": "^13.0.0",
54
54
  "@babel/runtime": "^7.0.0",
55
55
  "@compiled/react": "^0.20.0",
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-block-type/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": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/types.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/types.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }