@atlaskit/editor-core 188.11.3 → 188.12.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 (56) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/cjs/labs/next/presets/universal.js +6 -5
  3. package/dist/cjs/plugins/index.js +0 -7
  4. package/dist/cjs/plugins/undo-redo/index.js +7 -16
  5. package/dist/cjs/plugins/undo-redo/ui/ToolbarUndoRedo/index.js +59 -75
  6. package/dist/cjs/ui/Appearance/FullPage/FullPageToolbar.js +2 -1
  7. package/dist/cjs/version-wrapper.js +1 -1
  8. package/dist/es2019/labs/next/presets/universal.js +5 -4
  9. package/dist/es2019/plugins/index.js +0 -1
  10. package/dist/es2019/plugins/undo-redo/index.js +6 -17
  11. package/dist/es2019/plugins/undo-redo/ui/ToolbarUndoRedo/index.js +60 -61
  12. package/dist/es2019/ui/Appearance/FullPage/FullPageToolbar.js +2 -1
  13. package/dist/es2019/version-wrapper.js +1 -1
  14. package/dist/esm/labs/next/presets/universal.js +5 -4
  15. package/dist/esm/plugins/index.js +0 -1
  16. package/dist/esm/plugins/undo-redo/index.js +6 -16
  17. package/dist/esm/plugins/undo-redo/ui/ToolbarUndoRedo/index.js +56 -74
  18. package/dist/esm/ui/Appearance/FullPage/FullPageToolbar.js +2 -1
  19. package/dist/esm/version-wrapper.js +1 -1
  20. package/dist/types/plugins/index.d.ts +0 -1
  21. package/dist/types/plugins/undo-redo/types.d.ts +2 -1
  22. package/dist/types/plugins/undo-redo/ui/ToolbarUndoRedo/index.d.ts +2 -6
  23. package/dist/types-ts4.5/plugins/index.d.ts +0 -1
  24. package/dist/types-ts4.5/plugins/undo-redo/types.d.ts +3 -1
  25. package/dist/types-ts4.5/plugins/undo-redo/ui/ToolbarUndoRedo/index.d.ts +2 -6
  26. package/package.json +9 -3
  27. package/dist/cjs/plugins/history/actions.js +0 -10
  28. package/dist/cjs/plugins/history/index.js +0 -75
  29. package/dist/cjs/plugins/history/pm-history-types.js +0 -5
  30. package/dist/cjs/plugins/history/reducer.js +0 -18
  31. package/dist/cjs/plugins/history/types.js +0 -5
  32. package/dist/cjs/plugins/history/utils.js +0 -19
  33. package/dist/es2019/plugins/history/actions.js +0 -4
  34. package/dist/es2019/plugins/history/index.js +0 -61
  35. package/dist/es2019/plugins/history/pm-history-types.js +0 -1
  36. package/dist/es2019/plugins/history/reducer.js +0 -12
  37. package/dist/es2019/plugins/history/types.js +0 -1
  38. package/dist/es2019/plugins/history/utils.js +0 -11
  39. package/dist/esm/plugins/history/actions.js +0 -4
  40. package/dist/esm/plugins/history/index.js +0 -68
  41. package/dist/esm/plugins/history/pm-history-types.js +0 -1
  42. package/dist/esm/plugins/history/reducer.js +0 -12
  43. package/dist/esm/plugins/history/types.js +0 -1
  44. package/dist/esm/plugins/history/utils.js +0 -13
  45. package/dist/types/plugins/history/actions.d.ts +0 -8
  46. package/dist/types/plugins/history/index.d.ts +0 -13
  47. package/dist/types/plugins/history/pm-history-types.d.ts +0 -17
  48. package/dist/types/plugins/history/reducer.d.ts +0 -4
  49. package/dist/types/plugins/history/types.d.ts +0 -4
  50. package/dist/types/plugins/history/utils.d.ts +0 -4
  51. package/dist/types-ts4.5/plugins/history/actions.d.ts +0 -8
  52. package/dist/types-ts4.5/plugins/history/index.d.ts +0 -13
  53. package/dist/types-ts4.5/plugins/history/pm-history-types.d.ts +0 -17
  54. package/dist/types-ts4.5/plugins/history/reducer.d.ts +0 -4
  55. package/dist/types-ts4.5/plugins/history/types.d.ts +0 -4
  56. package/dist/types-ts4.5/plugins/history/utils.d.ts +0 -4
@@ -1,9 +1,8 @@
1
1
  import React from 'react';
2
2
  import { keymapPlugin } from './pm-plugins/keymaps';
3
3
  import { createPlugin } from './pm-plugins/main';
4
- import { historyPluginKey } from '../history';
4
+ // eslint-disable-next-line @atlassian/tangerine/import/entry-points
5
5
  import ToolbarUndoRedo from './ui/ToolbarUndoRedo';
6
- import WithPluginState from '../../ui/WithPluginState';
7
6
  var undoRedoPlugin = function undoRedoPlugin(_ref) {
8
7
  var api = _ref.api;
9
8
  return {
@@ -25,20 +24,11 @@ var undoRedoPlugin = function undoRedoPlugin(_ref) {
25
24
  var editorView = _ref2.editorView,
26
25
  disabled = _ref2.disabled,
27
26
  isToolbarReducedSpacing = _ref2.isToolbarReducedSpacing;
28
- return /*#__PURE__*/React.createElement(WithPluginState, {
29
- plugins: {
30
- historyState: historyPluginKey
31
- },
32
- render: function render(_ref3) {
33
- var historyState = _ref3.historyState;
34
- return /*#__PURE__*/React.createElement(ToolbarUndoRedo, {
35
- isReducedSpacing: isToolbarReducedSpacing,
36
- disabled: disabled,
37
- historyState: historyState,
38
- editorView: editorView,
39
- api: api
40
- });
41
- }
27
+ return /*#__PURE__*/React.createElement(ToolbarUndoRedo, {
28
+ isReducedSpacing: isToolbarReducedSpacing,
29
+ disabled: disabled,
30
+ editorView: editorView,
31
+ api: api
42
32
  });
43
33
  }
44
34
  };
@@ -1,16 +1,9 @@
1
- import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
2
- import _createClass from "@babel/runtime/helpers/createClass";
3
- import _inherits from "@babel/runtime/helpers/inherits";
4
- import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
5
- import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
6
- function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
7
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
8
1
  /** @jsx jsx */
9
- import { PureComponent } from 'react';
10
2
  import { jsx } from '@emotion/react';
11
3
  import { injectIntl } from 'react-intl-next';
12
4
  import UndoIcon from '@atlaskit/icon/glyph/undo';
13
5
  import RedoIcon from '@atlaskit/icon/glyph/redo';
6
+ import { useSharedPluginState } from '@atlaskit/editor-common/hooks';
14
7
  import { undo as undoKeymap, redo as redoKeymap, ToolTipContent, tooltip } from '../../../../keymaps';
15
8
  import { separatorStyles, buttonGroupStyle } from '@atlaskit/editor-common/styles';
16
9
  import ToolbarButton, { TOOLBAR_BUTTON } from '../../../../ui/ToolbarButton';
@@ -42,70 +35,59 @@ var forceFocus = function forceFocus(editorView, api) {
42
35
  }
43
36
  };
44
37
  };
45
- export var ToolbarUndoRedo = /*#__PURE__*/function (_PureComponent) {
46
- _inherits(ToolbarUndoRedo, _PureComponent);
47
- var _super = _createSuper(ToolbarUndoRedo);
48
- function ToolbarUndoRedo() {
49
- _classCallCheck(this, ToolbarUndoRedo);
50
- return _super.apply(this, arguments);
51
- }
52
- _createClass(ToolbarUndoRedo, [{
53
- key: "render",
54
- value: function render() {
55
- var _this$props = this.props,
56
- disabled = _this$props.disabled,
57
- isReducedSpacing = _this$props.isReducedSpacing,
58
- historyState = _this$props.historyState,
59
- editorView = _this$props.editorView,
60
- api = _this$props.api,
61
- formatMessage = _this$props.intl.formatMessage;
62
- var handleUndo = function handleUndo() {
63
- forceFocus(editorView, api)(undoFromToolbar);
64
- };
65
- var handleRedo = function handleRedo() {
66
- forceFocus(editorView, api)(redoFromToolbar);
67
- };
68
- var labelUndo = formatMessage(undoRedoMessages.undo);
69
- var labelRedo = formatMessage(undoRedoMessages.redo);
70
- var canUndo = historyState.canUndo,
71
- canRedo = historyState.canRedo;
72
- return jsx("span", {
73
- css: buttonGroupStyle
74
- }, jsx(ToolbarButton, {
75
- buttonId: TOOLBAR_BUTTON.UNDO,
76
- spacing: isReducedSpacing ? 'none' : 'default',
77
- onClick: handleUndo,
78
- disabled: !canUndo || disabled,
79
- "aria-label": tooltip(undoKeymap, labelUndo),
80
- "aria-keyshortcuts": getAriaKeyshortcuts(undoKeymap),
81
- title: jsx(ToolTipContent, {
82
- description: labelUndo,
83
- keymap: undoKeymap
84
- }),
85
- iconBefore: jsx(UndoIcon, {
86
- label: ""
87
- }),
88
- testId: "ak-editor-toolbar-button-undo"
89
- }), jsx(ToolbarButton, {
90
- spacing: isReducedSpacing ? 'none' : 'default',
91
- buttonId: TOOLBAR_BUTTON.REDO,
92
- onClick: handleRedo,
93
- disabled: !canRedo || disabled,
94
- title: jsx(ToolTipContent, {
95
- description: labelRedo,
96
- keymap: redoKeymap
97
- }),
98
- iconBefore: jsx(RedoIcon, {
99
- label: ""
100
- }),
101
- testId: "ak-editor-toolbar-button-redo",
102
- "aria-label": tooltip(redoKeymap, labelRedo),
103
- "aria-keyshortcuts": getAriaKeyshortcuts(redoKeymap)
104
- }), jsx("span", {
105
- css: separatorStyles
106
- }));
107
- }
108
- }]);
109
- return ToolbarUndoRedo;
110
- }(PureComponent);
38
+ export var ToolbarUndoRedo = function ToolbarUndoRedo(_ref) {
39
+ var disabled = _ref.disabled,
40
+ isReducedSpacing = _ref.isReducedSpacing,
41
+ editorView = _ref.editorView,
42
+ api = _ref.api,
43
+ formatMessage = _ref.intl.formatMessage;
44
+ var _useSharedPluginState = useSharedPluginState(api, ['history']),
45
+ historyState = _useSharedPluginState.historyState;
46
+ var handleUndo = function handleUndo() {
47
+ forceFocus(editorView, api)(undoFromToolbar);
48
+ };
49
+ var handleRedo = function handleRedo() {
50
+ forceFocus(editorView, api)(redoFromToolbar);
51
+ };
52
+ var labelUndo = formatMessage(undoRedoMessages.undo);
53
+ var labelRedo = formatMessage(undoRedoMessages.redo);
54
+ var _ref2 = historyState !== null && historyState !== void 0 ? historyState : {},
55
+ canUndo = _ref2.canUndo,
56
+ canRedo = _ref2.canRedo;
57
+ return jsx("span", {
58
+ css: buttonGroupStyle
59
+ }, jsx(ToolbarButton, {
60
+ buttonId: TOOLBAR_BUTTON.UNDO,
61
+ spacing: isReducedSpacing ? 'none' : 'default',
62
+ onClick: handleUndo,
63
+ disabled: !canUndo || disabled,
64
+ "aria-label": tooltip(undoKeymap, labelUndo),
65
+ "aria-keyshortcuts": getAriaKeyshortcuts(undoKeymap),
66
+ title: jsx(ToolTipContent, {
67
+ description: labelUndo,
68
+ keymap: undoKeymap
69
+ }),
70
+ iconBefore: jsx(UndoIcon, {
71
+ label: ""
72
+ }),
73
+ testId: "ak-editor-toolbar-button-undo"
74
+ }), jsx(ToolbarButton, {
75
+ spacing: isReducedSpacing ? 'none' : 'default',
76
+ buttonId: TOOLBAR_BUTTON.REDO,
77
+ onClick: handleRedo,
78
+ disabled: !canRedo || disabled,
79
+ title: jsx(ToolTipContent, {
80
+ description: labelRedo,
81
+ keymap: redoKeymap
82
+ }),
83
+ iconBefore: jsx(RedoIcon, {
84
+ label: ""
85
+ }),
86
+ testId: "ak-editor-toolbar-button-redo",
87
+ "aria-label": tooltip(redoKeymap, labelRedo),
88
+ "aria-keyshortcuts": getAriaKeyshortcuts(redoKeymap)
89
+ }), jsx("span", {
90
+ css: separatorStyles
91
+ }));
92
+ };
111
93
  export default injectIntl(ToolbarUndoRedo);
@@ -12,6 +12,7 @@ import { mainToolbarStyle, mainToolbarIconBeforeStyle, mainToolbarFirstChildStyl
12
12
  import { ContextPanelConsumer } from '@atlaskit/editor-common/ui';
13
13
  import { fullPageMessages as messages } from '@atlaskit/editor-common/messages';
14
14
  import { ToolbarArrowKeyNavigationProvider } from '@atlaskit/editor-common/ui-menu';
15
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
15
16
  export var EditorToolbar = /*#__PURE__*/React.memo(function (props) {
16
17
  var _props$featureFlags, _props$featureFlags2, _props$featureFlags3, _props$featureFlags4, _props$collabEdit, _props$collabEdit2, _props$collabEdit3, _props$featureFlags5, _props$featureFlags6;
17
18
  var _useState = useState(false),
@@ -42,7 +43,7 @@ export var EditorToolbar = /*#__PURE__*/React.memo(function (props) {
42
43
  css: customToolbarWrapperStyle
43
44
  }, (_props$featureFlags2 = props.featureFlags) !== null && _props$featureFlags2 !== void 0 && _props$featureFlags2.twoLineEditorToolbar && !!props.customPrimaryToolbarComponents && 'before' in props.customPrimaryToolbarComponents ? jsx(BeforePrimaryToolbarWrapper, {
44
45
  beforePrimaryToolbarComponents: props.customPrimaryToolbarComponents.before
45
- }) : null, (props === null || props === void 0 || (_props$featureFlags3 = props.featureFlags) === null || _props$featureFlags3 === void 0 ? void 0 : _props$featureFlags3.showAvatarGroupAsPlugin) === true && !((_props$featureFlags4 = props.featureFlags) !== null && _props$featureFlags4 !== void 0 && _props$featureFlags4.twoLineEditorToolbar) ? null : jsx(AvatarsWithPluginState, {
46
+ }) : null, getBooleanFF('platform.confluence.frontend.editor.no.platform.avatar.group') || (props === null || props === void 0 || (_props$featureFlags3 = props.featureFlags) === null || _props$featureFlags3 === void 0 ? void 0 : _props$featureFlags3.showAvatarGroupAsPlugin) === true && !((_props$featureFlags4 = props.featureFlags) !== null && _props$featureFlags4 !== void 0 && _props$featureFlags4.twoLineEditorToolbar) ? null : jsx(AvatarsWithPluginState, {
46
47
  editorView: props.editorView,
47
48
  eventDispatcher: props.eventDispatcher,
48
49
  inviteToEditComponent: (_props$collabEdit = props.collabEdit) === null || _props$collabEdit === void 0 ? void 0 : _props$collabEdit.inviteToEditComponent,
@@ -1,5 +1,5 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "188.11.3";
2
+ export var version = "188.12.0";
3
3
  export var nextMajorVersion = function nextMajorVersion() {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -24,7 +24,6 @@ export { default as annotationPlugin } from './annotation';
24
24
  export { default as analyticsPlugin } from './analytics';
25
25
  export { default as customAutoformatPlugin } from './custom-autoformat';
26
26
  export { default as feedbackDialogPlugin } from './feedback-dialog';
27
- export { default as historyPlugin } from './history';
28
27
  export { default as expandPlugin, isExpandInsertionEnabled } from './expand';
29
28
  export { default as mobileDimensionsPlugin } from './mobile-dimensions';
30
29
  export { default as findReplacePlugin } from './find-replace';
@@ -1,5 +1,6 @@
1
1
  import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
2
2
  import type { TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
3
+ import type { HistoryPlugin } from '@atlaskit/editor-plugin-history';
3
4
  export type UndoRedoPlugin = NextEditorPlugin<'undoRedoPlugin', {
4
- dependencies: [TypeAheadPlugin];
5
+ dependencies: [TypeAheadPlugin, HistoryPlugin];
5
6
  }>;
@@ -1,9 +1,8 @@
1
+ /// <reference types="react" />
1
2
  /** @jsx jsx */
2
- import { PureComponent } from 'react';
3
3
  import { jsx } from '@emotion/react';
4
4
  import type { WrappedComponentProps } from 'react-intl-next';
5
5
  import type { EditorView } from '@atlaskit/editor-prosemirror/view';
6
- import type { HistoryPluginState } from '../../../history/types';
7
6
  import type { UndoRedoPlugin } from '../../types';
8
7
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
9
8
  export interface Props {
@@ -11,13 +10,10 @@ export interface Props {
11
10
  redoDisabled?: boolean;
12
11
  disabled?: boolean;
13
12
  isReducedSpacing?: boolean;
14
- historyState: HistoryPluginState;
15
13
  editorView: EditorView;
16
14
  api: ExtractInjectionAPI<UndoRedoPlugin> | undefined;
17
15
  }
18
- export declare class ToolbarUndoRedo extends PureComponent<Props & WrappedComponentProps> {
19
- render(): jsx.JSX.Element;
20
- }
16
+ export declare const ToolbarUndoRedo: ({ disabled, isReducedSpacing, editorView, api, intl: { formatMessage }, }: Props & WrappedComponentProps) => jsx.JSX.Element;
21
17
  declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps<"intl">>> & {
22
18
  WrappedComponent: import("react").ComponentType<Props & WrappedComponentProps<"intl">>;
23
19
  };
@@ -24,7 +24,6 @@ export { default as annotationPlugin } from './annotation';
24
24
  export { default as analyticsPlugin } from './analytics';
25
25
  export { default as customAutoformatPlugin } from './custom-autoformat';
26
26
  export { default as feedbackDialogPlugin } from './feedback-dialog';
27
- export { default as historyPlugin } from './history';
28
27
  export { default as expandPlugin, isExpandInsertionEnabled } from './expand';
29
28
  export { default as mobileDimensionsPlugin } from './mobile-dimensions';
30
29
  export { default as findReplacePlugin } from './find-replace';
@@ -1,7 +1,9 @@
1
1
  import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
2
2
  import type { TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
3
+ import type { HistoryPlugin } from '@atlaskit/editor-plugin-history';
3
4
  export type UndoRedoPlugin = NextEditorPlugin<'undoRedoPlugin', {
4
5
  dependencies: [
5
- TypeAheadPlugin
6
+ TypeAheadPlugin,
7
+ HistoryPlugin
6
8
  ];
7
9
  }>;
@@ -1,9 +1,8 @@
1
+ /// <reference types="react" />
1
2
  /** @jsx jsx */
2
- import { PureComponent } from 'react';
3
3
  import { jsx } from '@emotion/react';
4
4
  import type { WrappedComponentProps } from 'react-intl-next';
5
5
  import type { EditorView } from '@atlaskit/editor-prosemirror/view';
6
- import type { HistoryPluginState } from '../../../history/types';
7
6
  import type { UndoRedoPlugin } from '../../types';
8
7
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
9
8
  export interface Props {
@@ -11,13 +10,10 @@ export interface Props {
11
10
  redoDisabled?: boolean;
12
11
  disabled?: boolean;
13
12
  isReducedSpacing?: boolean;
14
- historyState: HistoryPluginState;
15
13
  editorView: EditorView;
16
14
  api: ExtractInjectionAPI<UndoRedoPlugin> | undefined;
17
15
  }
18
- export declare class ToolbarUndoRedo extends PureComponent<Props & WrappedComponentProps> {
19
- render(): jsx.JSX.Element;
20
- }
16
+ export declare const ToolbarUndoRedo: ({ disabled, isReducedSpacing, editorView, api, intl: { formatMessage }, }: Props & WrappedComponentProps) => jsx.JSX.Element;
21
17
  declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps<"intl">>> & {
22
18
  WrappedComponent: import("react").ComponentType<Props & WrappedComponentProps<"intl">>;
23
19
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "188.11.3",
3
+ "version": "188.12.0",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -80,6 +80,7 @@
80
80
  "@atlaskit/editor-plugin-grid": "^0.3.0",
81
81
  "@atlaskit/editor-plugin-guideline": "^0.5.0",
82
82
  "@atlaskit/editor-plugin-help-dialog": "^0.2.0",
83
+ "@atlaskit/editor-plugin-history": "^0.1.0",
83
84
  "@atlaskit/editor-plugin-hyperlink": "^0.5.0",
84
85
  "@atlaskit/editor-plugin-image-upload": "^0.2.0",
85
86
  "@atlaskit/editor-plugin-list": "^1.3.0",
@@ -106,7 +107,7 @@
106
107
  "@atlaskit/form": "^8.11.0",
107
108
  "@atlaskit/icon": "^21.12.0",
108
109
  "@atlaskit/logo": "^13.14.0",
109
- "@atlaskit/media-card": "^77.1.0",
110
+ "@atlaskit/media-card": "^77.2.0",
110
111
  "@atlaskit/media-client": "^24.0.0",
111
112
  "@atlaskit/media-common": "^9.0.0",
112
113
  "@atlaskit/mention": "^22.1.0",
@@ -116,7 +117,7 @@
116
117
  "@atlaskit/radio": "^5.6.0",
117
118
  "@atlaskit/section-message": "^6.4.0",
118
119
  "@atlaskit/select": "^16.7.0",
119
- "@atlaskit/smart-card": "^26.35.0",
120
+ "@atlaskit/smart-card": "^26.36.0",
120
121
  "@atlaskit/smart-user-picker": "^6.3.0",
121
122
  "@atlaskit/spinner": "^15.6.0",
122
123
  "@atlaskit/tabs": "^13.4.0",
@@ -187,11 +188,13 @@
187
188
  "@testing-library/react-hooks": "^8.0.1",
188
189
  "@testing-library/user-event": "^14.4.3",
189
190
  "@types/diff": "^5.0.2",
191
+ "@types/is-number": "^7.0.0",
190
192
  "@types/jscodeshift": "^0.11.0",
191
193
  "@types/lodash": "^4.14.157",
192
194
  "@types/lz-string": "^1.3.34",
193
195
  "@types/prettier": "^2.7.2",
194
196
  "@types/raf-schd": "^4.0.1",
197
+ "@types/react-transition-group": "^2.0.6",
195
198
  "@types/rison": "^0.0.6",
196
199
  "async-retry": "^1.2.3",
197
200
  "clipboard-polyfill": "2.4.3",
@@ -237,6 +240,9 @@
237
240
  "platform.editor.custom-table-width": {
238
241
  "type": "boolean"
239
242
  },
243
+ "platform.confluence.frontend.editor.no.platform.avatar.group": {
244
+ "type": "boolean"
245
+ },
240
246
  "platform.linking-platform.editor.fix-link-insert-analytics": {
241
247
  "type": "boolean"
242
248
  },
@@ -1,10 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.HistoryActionTypes = void 0;
7
- var HistoryActionTypes = exports.HistoryActionTypes = /*#__PURE__*/function (HistoryActionTypes) {
8
- HistoryActionTypes["UPDATE"] = "UPDATE";
9
- return HistoryActionTypes;
10
- }({});
@@ -1,75 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.historyPluginKey = exports.default = void 0;
8
- var _pluginStateFactory = require("../../utils/plugin-state-factory");
9
- var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
10
- var _state = require("@atlaskit/editor-prosemirror/state");
11
- var _reducer = _interopRequireDefault(require("./reducer"));
12
- var _actions = require("./actions");
13
- var _utils = require("./utils");
14
- /**
15
- * Plugin that keeps track of whether undo and redo are currently available
16
- * This is needed so we can enable/disable controls appropriately
17
- *
18
- * Actual undo/redo functionality is handled by prosemirror-history:
19
- * https://github.com/ProseMirror/prosemirror-history
20
- */
21
-
22
- var historyPluginKey = exports.historyPluginKey = new _state.PluginKey('historyPlugin');
23
- var getInitialState = function getInitialState() {
24
- return {
25
- canUndo: false,
26
- canRedo: false
27
- };
28
- };
29
- var _pluginFactory = (0, _pluginStateFactory.pluginFactory)(historyPluginKey, _reducer.default),
30
- createPluginState = _pluginFactory.createPluginState,
31
- getPluginState = _pluginFactory.getPluginState;
32
- var createPlugin = function createPlugin(dispatch) {
33
- return new _safePlugin.SafePlugin({
34
- state: createPluginState(dispatch, getInitialState),
35
- key: historyPluginKey,
36
- appendTransaction: function appendTransaction(transactions, oldState, newState) {
37
- if (transactions.find(function (tr) {
38
- return tr.docChanged && tr.getMeta('addToHistory') !== false;
39
- })) {
40
- var pmHistoryPluginState = (0, _utils.getPmHistoryPluginState)(newState);
41
- if (!pmHistoryPluginState) {
42
- return;
43
- }
44
- var canUndo = pmHistoryPluginState.done.eventCount > 0;
45
- var canRedo = pmHistoryPluginState.undone.eventCount > 0;
46
- var _getPluginState = getPluginState(newState),
47
- prevCanUndo = _getPluginState.canUndo,
48
- prevCanRedo = _getPluginState.canRedo;
49
- if (canUndo !== prevCanUndo || canRedo !== prevCanRedo) {
50
- var action = {
51
- type: _actions.HistoryActionTypes.UPDATE,
52
- canUndo: canUndo,
53
- canRedo: canRedo
54
- };
55
- return newState.tr.setMeta(historyPluginKey, action);
56
- }
57
- }
58
- }
59
- });
60
- };
61
- var historyPlugin = function historyPlugin() {
62
- return {
63
- name: 'history',
64
- pmPlugins: function pmPlugins() {
65
- return [{
66
- name: 'history',
67
- plugin: function plugin(_ref) {
68
- var dispatch = _ref.dispatch;
69
- return createPlugin(dispatch);
70
- }
71
- }];
72
- }
73
- };
74
- };
75
- var _default = exports.default = historyPlugin;
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
@@ -1,18 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _actions = require("./actions");
8
- var reducer = function reducer(state, action) {
9
- switch (action.type) {
10
- case _actions.HistoryActionTypes.UPDATE:
11
- return {
12
- canUndo: action.canUndo,
13
- canRedo: action.canRedo
14
- };
15
- }
16
- return state;
17
- };
18
- var _default = exports.default = reducer;
@@ -1,5 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
@@ -1,19 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.getPmHistoryPluginState = exports.getPmHistoryPlugin = void 0;
7
- var _utils = require("@atlaskit/editor-common/utils");
8
- var getPmHistoryPlugin = exports.getPmHistoryPlugin = function getPmHistoryPlugin(state) {
9
- return state.plugins.find(function (plugin) {
10
- return plugin.key === _utils.pmHistoryPluginKey;
11
- });
12
- };
13
- var getPmHistoryPluginState = exports.getPmHistoryPluginState = function getPmHistoryPluginState(state) {
14
- var pmHistoryPlugin = getPmHistoryPlugin(state);
15
- if (!pmHistoryPlugin) {
16
- return;
17
- }
18
- return pmHistoryPlugin.getState(state);
19
- };
@@ -1,4 +0,0 @@
1
- export let HistoryActionTypes = /*#__PURE__*/function (HistoryActionTypes) {
2
- HistoryActionTypes["UPDATE"] = "UPDATE";
3
- return HistoryActionTypes;
4
- }({});
@@ -1,61 +0,0 @@
1
- import { pluginFactory } from '../../utils/plugin-state-factory';
2
- import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
- import { PluginKey } from '@atlaskit/editor-prosemirror/state';
4
- import reducer from './reducer';
5
- import { HistoryActionTypes } from './actions';
6
- import { getPmHistoryPluginState } from './utils';
7
- /**
8
- * Plugin that keeps track of whether undo and redo are currently available
9
- * This is needed so we can enable/disable controls appropriately
10
- *
11
- * Actual undo/redo functionality is handled by prosemirror-history:
12
- * https://github.com/ProseMirror/prosemirror-history
13
- */
14
-
15
- export const historyPluginKey = new PluginKey('historyPlugin');
16
- const getInitialState = () => ({
17
- canUndo: false,
18
- canRedo: false
19
- });
20
- const {
21
- createPluginState,
22
- getPluginState
23
- } = pluginFactory(historyPluginKey, reducer);
24
- const createPlugin = dispatch => new SafePlugin({
25
- state: createPluginState(dispatch, getInitialState),
26
- key: historyPluginKey,
27
- appendTransaction: (transactions, oldState, newState) => {
28
- if (transactions.find(tr => tr.docChanged && tr.getMeta('addToHistory') !== false)) {
29
- const pmHistoryPluginState = getPmHistoryPluginState(newState);
30
- if (!pmHistoryPluginState) {
31
- return;
32
- }
33
- const canUndo = pmHistoryPluginState.done.eventCount > 0;
34
- const canRedo = pmHistoryPluginState.undone.eventCount > 0;
35
- const {
36
- canUndo: prevCanUndo,
37
- canRedo: prevCanRedo
38
- } = getPluginState(newState);
39
- if (canUndo !== prevCanUndo || canRedo !== prevCanRedo) {
40
- const action = {
41
- type: HistoryActionTypes.UPDATE,
42
- canUndo,
43
- canRedo
44
- };
45
- return newState.tr.setMeta(historyPluginKey, action);
46
- }
47
- }
48
- }
49
- });
50
- const historyPlugin = () => ({
51
- name: 'history',
52
- pmPlugins() {
53
- return [{
54
- name: 'history',
55
- plugin: ({
56
- dispatch
57
- }) => createPlugin(dispatch)
58
- }];
59
- }
60
- });
61
- export default historyPlugin;
@@ -1 +0,0 @@
1
- export {};
@@ -1,12 +0,0 @@
1
- import { HistoryActionTypes } from './actions';
2
- const reducer = (state, action) => {
3
- switch (action.type) {
4
- case HistoryActionTypes.UPDATE:
5
- return {
6
- canUndo: action.canUndo,
7
- canRedo: action.canRedo
8
- };
9
- }
10
- return state;
11
- };
12
- export default reducer;
@@ -1 +0,0 @@
1
- export {};
@@ -1,11 +0,0 @@
1
- import { pmHistoryPluginKey } from '@atlaskit/editor-common/utils';
2
- export const getPmHistoryPlugin = state => {
3
- return state.plugins.find(plugin => plugin.key === pmHistoryPluginKey);
4
- };
5
- export const getPmHistoryPluginState = state => {
6
- const pmHistoryPlugin = getPmHistoryPlugin(state);
7
- if (!pmHistoryPlugin) {
8
- return;
9
- }
10
- return pmHistoryPlugin.getState(state);
11
- };
@@ -1,4 +0,0 @@
1
- export var HistoryActionTypes = /*#__PURE__*/function (HistoryActionTypes) {
2
- HistoryActionTypes["UPDATE"] = "UPDATE";
3
- return HistoryActionTypes;
4
- }({});