@atlaskit/editor-plugin-quick-insert 7.1.2 → 7.1.3

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,13 @@
1
1
  # @atlaskit/editor-plugin-quick-insert
2
2
 
3
+ ## 7.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`81230b670d02c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/81230b670d02c) -
8
+ ED-29744 camel case experience attributes
9
+ - Updated dependencies
10
+
3
11
  ## 7.1.2
4
12
 
5
13
  ### Patch Changes
@@ -12,12 +12,12 @@ var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
12
12
  var _state = require("@atlaskit/editor-prosemirror/state");
13
13
  var pluginKey = new _state.PluginKey('quickInsertOpenExperience');
14
14
  var START_METHOD = {
15
- QUICK_INSERT_BUTTON: 'quick-insert-button',
15
+ QUICK_INSERT_BUTTON: 'quickInsertButton',
16
16
  TYPEAHEAD: 'typeahead'
17
17
  };
18
18
  var ABORT_REASON = {
19
- USER_CANCELED: 'user-canceled',
20
- EDITOR_DESTROYED: 'editor-destroyed'
19
+ USER_CANCELED: 'userCanceled',
20
+ EDITOR_DESTROYED: 'editorDestroyed'
21
21
  };
22
22
  /**
23
23
  * This experience tracks when the quick insert is opened.
@@ -4,12 +4,12 @@ import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
4
4
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
5
5
  const pluginKey = new PluginKey('quickInsertOpenExperience');
6
6
  const START_METHOD = {
7
- QUICK_INSERT_BUTTON: 'quick-insert-button',
7
+ QUICK_INSERT_BUTTON: 'quickInsertButton',
8
8
  TYPEAHEAD: 'typeahead'
9
9
  };
10
10
  const ABORT_REASON = {
11
- USER_CANCELED: 'user-canceled',
12
- EDITOR_DESTROYED: 'editor-destroyed'
11
+ USER_CANCELED: 'userCanceled',
12
+ EDITOR_DESTROYED: 'editorDestroyed'
13
13
  };
14
14
  /**
15
15
  * This experience tracks when the quick insert is opened.
@@ -5,12 +5,12 @@ import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
5
5
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
6
6
  var pluginKey = new PluginKey('quickInsertOpenExperience');
7
7
  var START_METHOD = {
8
- QUICK_INSERT_BUTTON: 'quick-insert-button',
8
+ QUICK_INSERT_BUTTON: 'quickInsertButton',
9
9
  TYPEAHEAD: 'typeahead'
10
10
  };
11
11
  var ABORT_REASON = {
12
- USER_CANCELED: 'user-canceled',
13
- EDITOR_DESTROYED: 'editor-destroyed'
12
+ USER_CANCELED: 'userCanceled',
13
+ EDITOR_DESTROYED: 'editorDestroyed'
14
14
  };
15
15
  /**
16
16
  * This experience tracks when the quick insert is opened.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-quick-insert",
3
- "version": "7.1.2",
3
+ "version": "7.1.3",
4
4
  "description": "Quick insert plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -39,13 +39,13 @@
39
39
  "@atlaskit/modal-dialog": "^14.10.0",
40
40
  "@atlaskit/platform-feature-flags": "^1.1.0",
41
41
  "@atlaskit/theme": "^21.0.0",
42
- "@atlaskit/tmp-editor-statsig": "^16.30.0",
42
+ "@atlaskit/tmp-editor-statsig": "^16.35.0",
43
43
  "@atlaskit/tokens": "^10.1.0",
44
44
  "@babel/runtime": "^7.0.0",
45
45
  "@emotion/react": "^11.7.1"
46
46
  },
47
47
  "peerDependencies": {
48
- "@atlaskit/editor-common": "^111.8.0",
48
+ "@atlaskit/editor-common": "^111.9.0",
49
49
  "react": "^18.2.0",
50
50
  "react-dom": "^18.2.0",
51
51
  "react-intl-next": "npm:react-intl@^5.18.1"