@atlaskit/editor-plugins 13.0.152 → 13.0.155

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 (23) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/cjs/autocomplete/pm-plugins/autocomplete-plugin.js +18 -0
  3. package/dist/cjs/autocomplete/pm-plugins/slow-lane-client.js +36 -0
  4. package/dist/cjs/autocomplete/pm-plugins/text-predictor.js +66 -0
  5. package/dist/cjs/local-id/pm-plugins/generateShortUUID.js +18 -0
  6. package/dist/es2019/autocomplete/pm-plugins/autocomplete-plugin.js +4 -0
  7. package/dist/es2019/autocomplete/pm-plugins/slow-lane-client.js +4 -0
  8. package/dist/es2019/autocomplete/pm-plugins/text-predictor.js +4 -0
  9. package/dist/es2019/local-id/pm-plugins/generateShortUUID.js +4 -0
  10. package/dist/esm/autocomplete/pm-plugins/autocomplete-plugin.js +4 -0
  11. package/dist/esm/autocomplete/pm-plugins/slow-lane-client.js +4 -0
  12. package/dist/esm/autocomplete/pm-plugins/text-predictor.js +4 -0
  13. package/dist/esm/local-id/pm-plugins/generateShortUUID.js +4 -0
  14. package/dist/types/autocomplete/pm-plugins/autocomplete-plugin.d.ts +2 -0
  15. package/dist/types/autocomplete/pm-plugins/slow-lane-client.d.ts +2 -0
  16. package/dist/types/autocomplete/pm-plugins/text-predictor.d.ts +2 -0
  17. package/dist/types/local-id/pm-plugins/generateShortUUID.d.ts +1 -0
  18. package/dist/types-ts4.5/autocomplete/pm-plugins/autocomplete-plugin.d.ts +2 -0
  19. package/dist/types-ts4.5/autocomplete/pm-plugins/slow-lane-client.d.ts +2 -0
  20. package/dist/types-ts4.5/autocomplete/pm-plugins/text-predictor.d.ts +2 -0
  21. package/dist/types-ts4.5/local-id/pm-plugins/generateShortUUID.d.ts +1 -0
  22. package/local-id/utils/generateShortUUID/package.json +15 -0
  23. package/package.json +59 -59
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/editor-plugins
2
2
 
3
+ ## 13.0.155
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 13.0.154
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 13.0.153
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 13.0.152
4
22
 
5
23
  ### Patch Changes
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "autocompletePluginKey", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _autocompletePlugin.autocompletePluginKey;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "createAutocompletePlugin", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _autocompletePlugin.createAutocompletePlugin;
16
+ }
17
+ });
18
+ var _autocompletePlugin = require("@atlaskit/editor-plugin-autocomplete/src/pm-plugins/autocomplete-plugin");
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "createSlowLaneClient", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _slowLaneClient.createSlowLaneClient;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "getStoredContextVector", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _slowLaneClient.getStoredContextVector;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "getStoredLmLogits", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _slowLaneClient.getStoredLmLogits;
22
+ }
23
+ });
24
+ Object.defineProperty(exports, "isWordBoundary", {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return _slowLaneClient.isWordBoundary;
28
+ }
29
+ });
30
+ Object.defineProperty(exports, "setDefaultSlowLaneClient", {
31
+ enumerable: true,
32
+ get: function get() {
33
+ return _slowLaneClient.setDefaultSlowLaneClient;
34
+ }
35
+ });
36
+ var _slowLaneClient = require("@atlaskit/editor-plugin-autocomplete/src/pm-plugins/slow-lane-client");
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "getLastPredictionDebug", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _textPredictor.getLastPredictionDebug;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "getPredictorStatus", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _textPredictor.getPredictorStatus;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "incrementSessionFreq", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _textPredictor.incrementSessionFreq;
22
+ }
23
+ });
24
+ Object.defineProperty(exports, "ingestDocumentPage", {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return _textPredictor.ingestDocumentPage;
28
+ }
29
+ });
30
+ Object.defineProperty(exports, "initL3Vocabulary", {
31
+ enumerable: true,
32
+ get: function get() {
33
+ return _textPredictor.initL3Vocabulary;
34
+ }
35
+ });
36
+ Object.defineProperty(exports, "initVectors", {
37
+ enumerable: true,
38
+ get: function get() {
39
+ return _textPredictor.initVectors;
40
+ }
41
+ });
42
+ Object.defineProperty(exports, "initVocabulary", {
43
+ enumerable: true,
44
+ get: function get() {
45
+ return _textPredictor.initVocabulary;
46
+ }
47
+ });
48
+ Object.defineProperty(exports, "loadDefaultVocabulary", {
49
+ enumerable: true,
50
+ get: function get() {
51
+ return _textPredictor.loadDefaultVocabulary;
52
+ }
53
+ });
54
+ Object.defineProperty(exports, "loadVectorsAsync", {
55
+ enumerable: true,
56
+ get: function get() {
57
+ return _textPredictor.loadVectorsAsync;
58
+ }
59
+ });
60
+ Object.defineProperty(exports, "predict", {
61
+ enumerable: true,
62
+ get: function get() {
63
+ return _textPredictor.predict;
64
+ }
65
+ });
66
+ var _textPredictor = require("@atlaskit/editor-plugin-autocomplete/src/pm-plugins/text-predictor");
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "generateShortUUID", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _generateShortUUID.generateShortUUID;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "generatedShortUUIDs", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _generateShortUUID.generatedShortUUIDs;
16
+ }
17
+ });
18
+ var _generateShortUUID = require("@atlaskit/editor-plugin-local-id/utils/generateShortUUID");
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { autocompletePluginKey, createAutocompletePlugin } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/autocomplete-plugin';
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { isWordBoundary, createSlowLaneClient, setDefaultSlowLaneClient, getStoredContextVector, getStoredLmLogits } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/slow-lane-client';
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { initL3Vocabulary, getPredictorStatus, getLastPredictionDebug, initVocabulary, incrementSessionFreq, ingestDocumentPage, predict, loadVectorsAsync, initVectors, loadDefaultVocabulary } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/text-predictor';
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { generatedShortUUIDs, generateShortUUID } from '@atlaskit/editor-plugin-local-id/utils/generateShortUUID';
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { autocompletePluginKey, createAutocompletePlugin } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/autocomplete-plugin';
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { isWordBoundary, createSlowLaneClient, setDefaultSlowLaneClient, getStoredContextVector, getStoredLmLogits } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/slow-lane-client';
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { initL3Vocabulary, getPredictorStatus, getLastPredictionDebug, initVocabulary, incrementSessionFreq, ingestDocumentPage, predict, loadVectorsAsync, initVectors, loadDefaultVocabulary } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/text-predictor';
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { generatedShortUUIDs, generateShortUUID } from '@atlaskit/editor-plugin-local-id/utils/generateShortUUID';
@@ -0,0 +1,2 @@
1
+ export { autocompletePluginKey, createAutocompletePlugin, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/autocomplete-plugin';
2
+ export type { AutocompletePluginState, AutocompleteContext, AutocompletePluginOptions, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/autocomplete-plugin';
@@ -0,0 +1,2 @@
1
+ export { isWordBoundary, createSlowLaneClient, setDefaultSlowLaneClient, getStoredContextVector, getStoredLmLogits, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/slow-lane-client';
2
+ export type { TypeaheadEncodingsRequest, TypeaheadEncodingsResponse, SlowLaneClientConfig, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/slow-lane-client';
@@ -0,0 +1,2 @@
1
+ export { initL3Vocabulary, getPredictorStatus, getLastPredictionDebug, initVocabulary, incrementSessionFreq, ingestDocumentPage, predict, loadVectorsAsync, initVectors, loadDefaultVocabulary, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/text-predictor';
2
+ export type { WeightedTerm, TenantVocabulary, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/text-predictor';
@@ -0,0 +1 @@
1
+ export { generatedShortUUIDs, generateShortUUID, } from '@atlaskit/editor-plugin-local-id/utils/generateShortUUID';
@@ -0,0 +1,2 @@
1
+ export { autocompletePluginKey, createAutocompletePlugin, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/autocomplete-plugin';
2
+ export type { AutocompletePluginState, AutocompleteContext, AutocompletePluginOptions, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/autocomplete-plugin';
@@ -0,0 +1,2 @@
1
+ export { isWordBoundary, createSlowLaneClient, setDefaultSlowLaneClient, getStoredContextVector, getStoredLmLogits, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/slow-lane-client';
2
+ export type { TypeaheadEncodingsRequest, TypeaheadEncodingsResponse, SlowLaneClientConfig, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/slow-lane-client';
@@ -0,0 +1,2 @@
1
+ export { initL3Vocabulary, getPredictorStatus, getLastPredictionDebug, initVocabulary, incrementSessionFreq, ingestDocumentPage, predict, loadVectorsAsync, initVectors, loadDefaultVocabulary, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/text-predictor';
2
+ export type { WeightedTerm, TenantVocabulary, } from '@atlaskit/editor-plugin-autocomplete/src/pm-plugins/text-predictor';
@@ -0,0 +1 @@
1
+ export { generatedShortUUIDs, generateShortUUID, } from '@atlaskit/editor-plugin-local-id/utils/generateShortUUID';
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugins/local-id/utils/generateShortUUID",
3
+ "main": "../../../dist/cjs/local-id/pm-plugins/generateShortUUID.js",
4
+ "module": "../../../dist/esm/local-id/pm-plugins/generateShortUUID.js",
5
+ "module:es2019": "../../../dist/es2019/local-id/pm-plugins/generateShortUUID.js",
6
+ "sideEffects": false,
7
+ "types": "../../../dist/types/local-id/pm-plugins/generateShortUUID.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../../../dist/types-ts4.5/local-id/pm-plugins/generateShortUUID.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugins",
3
- "version": "13.0.152",
3
+ "version": "13.0.155",
4
4
  "description": "A convenience facade package that exposes all @atlaskit/editor-plugin-* plugins so that users can add this package without having to manually add all their plugins",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -30,105 +30,105 @@
30
30
  "update-editor-plugins": "run-ts scripts/update-editor-plugins.ts"
31
31
  },
32
32
  "dependencies": {
33
- "@atlaskit/editor-plugin-accessibility-utils": "10.1.4",
34
- "@atlaskit/editor-plugin-alignment": "11.0.7",
35
- "@atlaskit/editor-plugin-analytics": "10.0.7",
36
- "@atlaskit/editor-plugin-annotation": "10.1.4",
33
+ "@atlaskit/editor-plugin-accessibility-utils": "10.1.5",
34
+ "@atlaskit/editor-plugin-alignment": "11.0.8",
35
+ "@atlaskit/editor-plugin-analytics": "10.0.8",
36
+ "@atlaskit/editor-plugin-annotation": "10.1.5",
37
37
  "@atlaskit/editor-plugin-autocomplete": "2.2.0",
38
38
  "@atlaskit/editor-plugin-avatar-group": "11.0.0",
39
- "@atlaskit/editor-plugin-base": "11.0.7",
39
+ "@atlaskit/editor-plugin-base": "11.0.8",
40
40
  "@atlaskit/editor-plugin-batch-attribute-updates": "10.0.0",
41
41
  "@atlaskit/editor-plugin-before-primary-toolbar": "10.0.0",
42
42
  "@atlaskit/editor-plugin-better-type-history": "10.0.0",
43
- "@atlaskit/editor-plugin-block-controls": "11.2.5",
44
- "@atlaskit/editor-plugin-block-menu": "9.0.7",
45
- "@atlaskit/editor-plugin-block-type": "14.0.7",
43
+ "@atlaskit/editor-plugin-block-controls": "11.2.6",
44
+ "@atlaskit/editor-plugin-block-menu": "9.0.8",
45
+ "@atlaskit/editor-plugin-block-type": "14.0.8",
46
46
  "@atlaskit/editor-plugin-border": "10.0.0",
47
- "@atlaskit/editor-plugin-breakout": "10.1.4",
47
+ "@atlaskit/editor-plugin-breakout": "10.1.5",
48
48
  "@atlaskit/editor-plugin-caption": "10.0.0",
49
- "@atlaskit/editor-plugin-card": "16.3.3",
49
+ "@atlaskit/editor-plugin-card": "16.4.0",
50
50
  "@atlaskit/editor-plugin-clear-marks-on-empty-doc": "10.0.0",
51
51
  "@atlaskit/editor-plugin-clipboard": "10.0.0",
52
- "@atlaskit/editor-plugin-code-bidi-warning": "10.0.7",
53
- "@atlaskit/editor-plugin-code-block": "12.0.7",
54
- "@atlaskit/editor-plugin-collab-edit": "11.0.7",
52
+ "@atlaskit/editor-plugin-code-bidi-warning": "10.0.8",
53
+ "@atlaskit/editor-plugin-code-block": "12.0.8",
54
+ "@atlaskit/editor-plugin-collab-edit": "11.0.8",
55
55
  "@atlaskit/editor-plugin-composition": "9.0.0",
56
56
  "@atlaskit/editor-plugin-connectivity": "10.0.1",
57
57
  "@atlaskit/editor-plugin-content-format": "4.0.0",
58
58
  "@atlaskit/editor-plugin-content-insertion": "10.0.0",
59
59
  "@atlaskit/editor-plugin-context-identifier": "10.0.0",
60
60
  "@atlaskit/editor-plugin-context-panel": "12.0.1",
61
- "@atlaskit/editor-plugin-copy-button": "10.0.7",
61
+ "@atlaskit/editor-plugin-copy-button": "10.0.8",
62
62
  "@atlaskit/editor-plugin-custom-autoformat": "10.0.0",
63
63
  "@atlaskit/editor-plugin-data-consumer": "10.0.0",
64
- "@atlaskit/editor-plugin-date": "12.1.4",
65
- "@atlaskit/editor-plugin-decorations": "10.0.7",
64
+ "@atlaskit/editor-plugin-date": "12.1.5",
65
+ "@atlaskit/editor-plugin-decorations": "10.0.8",
66
66
  "@atlaskit/editor-plugin-editor-disabled": "10.0.0",
67
67
  "@atlaskit/editor-plugin-editor-viewmode": "12.0.0",
68
- "@atlaskit/editor-plugin-editor-viewmode-effects": "10.0.7",
69
- "@atlaskit/editor-plugin-emoji": "11.0.7",
68
+ "@atlaskit/editor-plugin-editor-viewmode-effects": "10.0.8",
69
+ "@atlaskit/editor-plugin-emoji": "11.0.8",
70
70
  "@atlaskit/editor-plugin-engagement-platform": "11.0.0",
71
- "@atlaskit/editor-plugin-expand": "11.0.8",
72
- "@atlaskit/editor-plugin-extension": "13.1.3",
71
+ "@atlaskit/editor-plugin-expand": "11.0.9",
72
+ "@atlaskit/editor-plugin-extension": "13.1.4",
73
73
  "@atlaskit/editor-plugin-feature-flags": "9.0.0",
74
74
  "@atlaskit/editor-plugin-feedback-dialog": "10.0.0",
75
- "@atlaskit/editor-plugin-find-replace": "10.0.7",
76
- "@atlaskit/editor-plugin-floating-toolbar": "12.0.7",
75
+ "@atlaskit/editor-plugin-find-replace": "10.0.8",
76
+ "@atlaskit/editor-plugin-floating-toolbar": "12.0.8",
77
77
  "@atlaskit/editor-plugin-focus": "9.0.0",
78
78
  "@atlaskit/editor-plugin-fragment": "10.0.0",
79
- "@atlaskit/editor-plugin-grid": "10.1.4",
79
+ "@atlaskit/editor-plugin-grid": "10.1.5",
80
80
  "@atlaskit/editor-plugin-guideline": "10.0.0",
81
- "@atlaskit/editor-plugin-help-dialog": "10.1.4",
82
- "@atlaskit/editor-plugin-highlight": "10.0.7",
81
+ "@atlaskit/editor-plugin-help-dialog": "10.1.5",
82
+ "@atlaskit/editor-plugin-highlight": "10.0.8",
83
83
  "@atlaskit/editor-plugin-history": "10.0.0",
84
- "@atlaskit/editor-plugin-hyperlink": "12.0.7",
84
+ "@atlaskit/editor-plugin-hyperlink": "12.0.8",
85
85
  "@atlaskit/editor-plugin-image-upload": "10.0.0",
86
86
  "@atlaskit/editor-plugin-indentation": "10.0.0",
87
- "@atlaskit/editor-plugin-insert-block": "11.1.0",
87
+ "@atlaskit/editor-plugin-insert-block": "11.2.0",
88
88
  "@atlaskit/editor-plugin-interaction": "19.0.0",
89
- "@atlaskit/editor-plugin-layout": "10.0.7",
90
- "@atlaskit/editor-plugin-limited-mode": "7.1.3",
91
- "@atlaskit/editor-plugin-list": "12.0.8",
92
- "@atlaskit/editor-plugin-local-id": "8.0.7",
89
+ "@atlaskit/editor-plugin-layout": "10.0.8",
90
+ "@atlaskit/editor-plugin-limited-mode": "7.1.4",
91
+ "@atlaskit/editor-plugin-list": "12.0.9",
92
+ "@atlaskit/editor-plugin-local-id": "8.0.8",
93
93
  "@atlaskit/editor-plugin-loom": "12.0.0",
94
94
  "@atlaskit/editor-plugin-max-content-size": "10.0.0",
95
- "@atlaskit/editor-plugin-media": "12.2.1",
95
+ "@atlaskit/editor-plugin-media": "12.2.2",
96
96
  "@atlaskit/editor-plugin-media-editing": "4.0.0",
97
97
  "@atlaskit/editor-plugin-media-insert": "23.0.0",
98
- "@atlaskit/editor-plugin-mentions": "12.1.5",
99
- "@atlaskit/editor-plugin-metrics": "11.0.7",
100
- "@atlaskit/editor-plugin-panel": "12.0.7",
101
- "@atlaskit/editor-plugin-paste": "11.0.10",
102
- "@atlaskit/editor-plugin-paste-options-toolbar": "11.0.7",
103
- "@atlaskit/editor-plugin-placeholder": "10.1.4",
98
+ "@atlaskit/editor-plugin-mentions": "12.1.6",
99
+ "@atlaskit/editor-plugin-metrics": "11.0.8",
100
+ "@atlaskit/editor-plugin-panel": "12.0.8",
101
+ "@atlaskit/editor-plugin-paste": "11.0.11",
102
+ "@atlaskit/editor-plugin-paste-options-toolbar": "11.0.9",
103
+ "@atlaskit/editor-plugin-placeholder": "10.1.5",
104
104
  "@atlaskit/editor-plugin-placeholder-text": "11.0.0",
105
- "@atlaskit/editor-plugin-primary-toolbar": "11.0.7",
106
- "@atlaskit/editor-plugin-quick-insert": "10.1.4",
105
+ "@atlaskit/editor-plugin-primary-toolbar": "11.0.8",
106
+ "@atlaskit/editor-plugin-quick-insert": "10.2.0",
107
107
  "@atlaskit/editor-plugin-rule": "10.0.0",
108
108
  "@atlaskit/editor-plugin-save-on-enter": "10.1.0",
109
109
  "@atlaskit/editor-plugin-scroll-into-view": "10.1.0",
110
- "@atlaskit/editor-plugin-selection": "10.0.7",
111
- "@atlaskit/editor-plugin-selection-extension": "13.1.4",
112
- "@atlaskit/editor-plugin-selection-marker": "10.1.6",
113
- "@atlaskit/editor-plugin-selection-toolbar": "11.0.7",
114
- "@atlaskit/editor-plugin-show-diff": "8.1.9",
115
- "@atlaskit/editor-plugin-status": "11.0.7",
110
+ "@atlaskit/editor-plugin-selection": "10.0.8",
111
+ "@atlaskit/editor-plugin-selection-extension": "13.1.5",
112
+ "@atlaskit/editor-plugin-selection-marker": "10.1.7",
113
+ "@atlaskit/editor-plugin-selection-toolbar": "11.0.8",
114
+ "@atlaskit/editor-plugin-show-diff": "8.1.10",
115
+ "@atlaskit/editor-plugin-status": "11.0.8",
116
116
  "@atlaskit/editor-plugin-submit-editor": "10.0.0",
117
- "@atlaskit/editor-plugin-synced-block": "8.0.10",
118
- "@atlaskit/editor-plugin-table": "22.2.5",
119
- "@atlaskit/editor-plugin-tasks-and-decisions": "13.1.4",
120
- "@atlaskit/editor-plugin-text-color": "10.0.7",
121
- "@atlaskit/editor-plugin-text-formatting": "10.0.7",
122
- "@atlaskit/editor-plugin-toolbar": "7.0.7",
123
- "@atlaskit/editor-plugin-toolbar-lists-indentation": "11.0.8",
124
- "@atlaskit/editor-plugin-track-changes": "9.0.10",
125
- "@atlaskit/editor-plugin-type-ahead": "10.0.7",
126
- "@atlaskit/editor-plugin-ufo": "10.0.7",
117
+ "@atlaskit/editor-plugin-synced-block": "8.0.11",
118
+ "@atlaskit/editor-plugin-table": "22.2.7",
119
+ "@atlaskit/editor-plugin-tasks-and-decisions": "13.1.5",
120
+ "@atlaskit/editor-plugin-text-color": "10.0.8",
121
+ "@atlaskit/editor-plugin-text-formatting": "10.0.8",
122
+ "@atlaskit/editor-plugin-toolbar": "7.0.8",
123
+ "@atlaskit/editor-plugin-toolbar-lists-indentation": "11.0.9",
124
+ "@atlaskit/editor-plugin-track-changes": "9.0.11",
125
+ "@atlaskit/editor-plugin-type-ahead": "10.0.8",
126
+ "@atlaskit/editor-plugin-ufo": "10.0.8",
127
127
  "@atlaskit/editor-plugin-ui-control-registry": "4.0.0",
128
- "@atlaskit/editor-plugin-undo-redo": "10.0.7",
128
+ "@atlaskit/editor-plugin-undo-redo": "10.0.8",
129
129
  "@atlaskit/editor-plugin-unsupported-content": "10.0.0",
130
130
  "@atlaskit/editor-plugin-user-intent": "8.0.0",
131
- "@atlaskit/editor-plugin-user-preferences": "8.0.7",
131
+ "@atlaskit/editor-plugin-user-preferences": "8.0.8",
132
132
  "@atlaskit/editor-plugin-width": "11.0.0",
133
133
  "@babel/runtime": "^7.0.0"
134
134
  },