@atlaskit/editor-plugin-primary-toolbar 3.0.4 → 3.0.5

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,11 @@
1
1
  # @atlaskit/editor-plugin-primary-toolbar
2
2
 
3
+ ## 3.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 3.0.4
4
10
 
5
11
  ### Patch Changes
@@ -98,7 +98,7 @@ var others = [{
98
98
  }, {
99
99
  name: 'findReplace'
100
100
  }, {
101
- // TODO: Should likely be split into three: spelling & grammar, separator, and AI trigger
101
+ // TODO: ED-26962 - Should likely be split into three: spelling & grammar, separator, and AI trigger
102
102
  name: 'aiExperience'
103
103
  }, {
104
104
  name: 'loom'
@@ -11,7 +11,7 @@ var _separator = _interopRequireDefault(require("./ui/separator"));
11
11
  var primaryToolbarPlugin = exports.primaryToolbarPlugin = function primaryToolbarPlugin() {
12
12
  // We use a plugin variable to store the component registry to avoid having to use
13
13
  // effects in each plugin, and to enable rendering the toolbar in SSR
14
- // TODO: Replace this with something in plugin state once we have a way to initialise across plugins on plugin initialisation
14
+ // TODO: ED-26962 - Replace this with something in plugin state once we have a way to initialise across plugins on plugin initialisation
15
15
  var componentRegistry = new Map();
16
16
 
17
17
  // Pre-fill registry with the separator component
@@ -74,7 +74,7 @@ const others = [{
74
74
  }, {
75
75
  name: 'findReplace'
76
76
  }, {
77
- // TODO: Should likely be split into three: spelling & grammar, separator, and AI trigger
77
+ // TODO: ED-26962 - Should likely be split into three: spelling & grammar, separator, and AI trigger
78
78
  name: 'aiExperience'
79
79
  }, {
80
80
  name: 'loom'
@@ -4,7 +4,7 @@ import Separator from './ui/separator';
4
4
  export const primaryToolbarPlugin = () => {
5
5
  // We use a plugin variable to store the component registry to avoid having to use
6
6
  // effects in each plugin, and to enable rendering the toolbar in SSR
7
- // TODO: Replace this with something in plugin state once we have a way to initialise across plugins on plugin initialisation
7
+ // TODO: ED-26962 - Replace this with something in plugin state once we have a way to initialise across plugins on plugin initialisation
8
8
  const componentRegistry = new Map();
9
9
 
10
10
  // Pre-fill registry with the separator component
@@ -92,7 +92,7 @@ var others = [{
92
92
  }, {
93
93
  name: 'findReplace'
94
94
  }, {
95
- // TODO: Should likely be split into three: spelling & grammar, separator, and AI trigger
95
+ // TODO: ED-26962 - Should likely be split into three: spelling & grammar, separator, and AI trigger
96
96
  name: 'aiExperience'
97
97
  }, {
98
98
  name: 'loom'
@@ -4,7 +4,7 @@ import Separator from './ui/separator';
4
4
  export var primaryToolbarPlugin = function primaryToolbarPlugin() {
5
5
  // We use a plugin variable to store the component registry to avoid having to use
6
6
  // effects in each plugin, and to enable rendering the toolbar in SSR
7
- // TODO: Replace this with something in plugin state once we have a way to initialise across plugins on plugin initialisation
7
+ // TODO: ED-26962 - Replace this with something in plugin state once we have a way to initialise across plugins on plugin initialisation
8
8
  var componentRegistry = new Map();
9
9
 
10
10
  // Pre-fill registry with the separator component
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-primary-toolbar",
3
- "version": "3.0.4",
3
+ "version": "3.0.5",
4
4
  "description": "Primary toolbar plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -36,9 +36,9 @@
36
36
  ".": "./src/index.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@atlaskit/editor-common": "^102.0.0",
39
+ "@atlaskit/editor-common": "^102.8.0",
40
40
  "@atlaskit/editor-prosemirror": "7.0.0",
41
- "@atlaskit/tmp-editor-statsig": "^3.4.0",
41
+ "@atlaskit/tmp-editor-statsig": "^4.0.0",
42
42
  "@babel/runtime": "^7.0.0",
43
43
  "@emotion/react": "^11.7.1"
44
44
  },