@atlaskit/editor-plugin-toolbar 4.1.2 → 4.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 +8 -0
- package/dist/cjs/pm-plugins/experiences/selection-toolbar-open-experience.js +7 -7
- package/dist/es2019/pm-plugins/experiences/selection-toolbar-open-experience.js +8 -8
- package/dist/esm/pm-plugins/experiences/selection-toolbar-open-experience.js +8 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-toolbar
|
|
2
2
|
|
|
3
|
+
## 4.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
|
## 4.1.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -11,13 +11,13 @@ var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
|
|
|
11
11
|
var _state = require("@atlaskit/editor-prosemirror/state");
|
|
12
12
|
var pluginKey = new _state.PluginKey('selectionToolbarOpenExperience');
|
|
13
13
|
var START_METHOD = {
|
|
14
|
-
MOUSE_UP: '
|
|
15
|
-
KEY_DOWN: '
|
|
14
|
+
MOUSE_UP: 'mouseUp',
|
|
15
|
+
KEY_DOWN: 'keyDown'
|
|
16
16
|
};
|
|
17
17
|
var ABORT_REASON = {
|
|
18
|
-
SELECTION_CLEARED: '
|
|
19
|
-
BLOCK_MENU_OPENED: '
|
|
20
|
-
EDITOR_DESTROYED: '
|
|
18
|
+
SELECTION_CLEARED: 'selectionCleared',
|
|
19
|
+
BLOCK_MENU_OPENED: 'blockMenuOpened',
|
|
20
|
+
EDITOR_DESTROYED: 'editorDestroyed'
|
|
21
21
|
};
|
|
22
22
|
/**
|
|
23
23
|
* This experience tracks when the selection toolbar is opened.
|
|
@@ -43,8 +43,8 @@ var getSelectionToolbarOpenExperiencePlugin = exports.getSelectionToolbarOpenExp
|
|
|
43
43
|
}
|
|
44
44
|
return targetEl;
|
|
45
45
|
};
|
|
46
|
-
var experience = new _experiences.Experience(
|
|
47
|
-
actionSubjectId: '
|
|
46
|
+
var experience = new _experiences.Experience(_experiences.EXPERIENCE_ID.TOOLBAR_OPEN, {
|
|
47
|
+
actionSubjectId: 'selectionToolbar',
|
|
48
48
|
dispatchAnalyticsEvent: dispatchAnalyticsEvent,
|
|
49
49
|
checks: [new _experiences.ExperienceCheckTimeout({
|
|
50
50
|
durationMs: 1000,
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Experience, ExperienceCheckDomMutation, ExperienceCheckTimeout, containsPopupWithNestedElement, getPopupContainerFromEditorView } from '@atlaskit/editor-common/experiences';
|
|
1
|
+
import { Experience, EXPERIENCE_ID, ExperienceCheckDomMutation, ExperienceCheckTimeout, containsPopupWithNestedElement, getPopupContainerFromEditorView } from '@atlaskit/editor-common/experiences';
|
|
2
2
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
3
3
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
4
4
|
const pluginKey = new PluginKey('selectionToolbarOpenExperience');
|
|
5
5
|
const START_METHOD = {
|
|
6
|
-
MOUSE_UP: '
|
|
7
|
-
KEY_DOWN: '
|
|
6
|
+
MOUSE_UP: 'mouseUp',
|
|
7
|
+
KEY_DOWN: 'keyDown'
|
|
8
8
|
};
|
|
9
9
|
const ABORT_REASON = {
|
|
10
|
-
SELECTION_CLEARED: '
|
|
11
|
-
BLOCK_MENU_OPENED: '
|
|
12
|
-
EDITOR_DESTROYED: '
|
|
10
|
+
SELECTION_CLEARED: 'selectionCleared',
|
|
11
|
+
BLOCK_MENU_OPENED: 'blockMenuOpened',
|
|
12
|
+
EDITOR_DESTROYED: 'editorDestroyed'
|
|
13
13
|
};
|
|
14
14
|
/**
|
|
15
15
|
* This experience tracks when the selection toolbar is opened.
|
|
@@ -36,8 +36,8 @@ export const getSelectionToolbarOpenExperiencePlugin = ({
|
|
|
36
36
|
}
|
|
37
37
|
return targetEl;
|
|
38
38
|
};
|
|
39
|
-
const experience = new Experience(
|
|
40
|
-
actionSubjectId: '
|
|
39
|
+
const experience = new Experience(EXPERIENCE_ID.TOOLBAR_OPEN, {
|
|
40
|
+
actionSubjectId: 'selectionToolbar',
|
|
41
41
|
dispatchAnalyticsEvent,
|
|
42
42
|
checks: [new ExperienceCheckTimeout({
|
|
43
43
|
durationMs: 1000,
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
|
2
|
-
import { Experience, ExperienceCheckDomMutation, ExperienceCheckTimeout, containsPopupWithNestedElement, getPopupContainerFromEditorView } from '@atlaskit/editor-common/experiences';
|
|
2
|
+
import { Experience, EXPERIENCE_ID, ExperienceCheckDomMutation, ExperienceCheckTimeout, containsPopupWithNestedElement, getPopupContainerFromEditorView } from '@atlaskit/editor-common/experiences';
|
|
3
3
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
4
4
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
5
5
|
var pluginKey = new PluginKey('selectionToolbarOpenExperience');
|
|
6
6
|
var START_METHOD = {
|
|
7
|
-
MOUSE_UP: '
|
|
8
|
-
KEY_DOWN: '
|
|
7
|
+
MOUSE_UP: 'mouseUp',
|
|
8
|
+
KEY_DOWN: 'keyDown'
|
|
9
9
|
};
|
|
10
10
|
var ABORT_REASON = {
|
|
11
|
-
SELECTION_CLEARED: '
|
|
12
|
-
BLOCK_MENU_OPENED: '
|
|
13
|
-
EDITOR_DESTROYED: '
|
|
11
|
+
SELECTION_CLEARED: 'selectionCleared',
|
|
12
|
+
BLOCK_MENU_OPENED: 'blockMenuOpened',
|
|
13
|
+
EDITOR_DESTROYED: 'editorDestroyed'
|
|
14
14
|
};
|
|
15
15
|
/**
|
|
16
16
|
* This experience tracks when the selection toolbar is opened.
|
|
@@ -36,8 +36,8 @@ export var getSelectionToolbarOpenExperiencePlugin = function getSelectionToolba
|
|
|
36
36
|
}
|
|
37
37
|
return targetEl;
|
|
38
38
|
};
|
|
39
|
-
var experience = new Experience(
|
|
40
|
-
actionSubjectId: '
|
|
39
|
+
var experience = new Experience(EXPERIENCE_ID.TOOLBAR_OPEN, {
|
|
40
|
+
actionSubjectId: 'selectionToolbar',
|
|
41
41
|
dispatchAnalyticsEvent: dispatchAnalyticsEvent,
|
|
42
42
|
checks: [new ExperienceCheckTimeout({
|
|
43
43
|
durationMs: 1000,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-toolbar",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
4
4
|
"description": "Toolbar plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@atlaskit/editor-toolbar": "^0.19.0",
|
|
40
40
|
"@atlaskit/editor-toolbar-model": "^0.3.0",
|
|
41
41
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
42
|
-
"@atlaskit/tmp-editor-statsig": "^16.
|
|
42
|
+
"@atlaskit/tmp-editor-statsig": "^16.35.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"bind-event-listener": "^3.0.0",
|
|
45
45
|
"react-intl-next": "npm:react-intl@^5.18.1"
|