@atlaskit/editor-core 187.45.3 → 187.46.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.
- package/CHANGELOG.md +10 -0
- package/dist/cjs/plugins/alignment/ui/ToolbarAlignment/index.js +2 -2
- package/dist/cjs/plugins/find-replace/ui/FindReplaceToolbarButton.js +4 -5
- package/dist/cjs/plugins/floating-toolbar/index.js +2 -2
- package/dist/cjs/plugins/floating-toolbar/pm-plugins/toolbar-data/plugin-factory.js +2 -2
- package/dist/cjs/plugins/floating-toolbar/ui/Dropdown.js +2 -2
- package/dist/cjs/plugins/floating-toolbar/ui/EmojiPickerButton.js +2 -2
- package/dist/cjs/plugins/floating-toolbar/ui/ExtensionsPlaceholder.js +1 -1
- package/dist/cjs/plugins/floating-toolbar/ui/Toolbar.js +4 -5
- package/dist/cjs/plugins/panel/toolbar.js +2 -2
- package/dist/cjs/plugins/text-color/pm-plugins/main.js +3 -4
- package/dist/cjs/ui/ConfigPanel/Fields/ColorPicker.js +6 -7
- package/dist/cjs/ui/Dropdown/index.js +1 -25
- package/dist/cjs/utils/index.js +12 -10
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/plugins/alignment/ui/ToolbarAlignment/index.js +1 -1
- package/dist/es2019/plugins/find-replace/ui/FindReplaceToolbarButton.js +3 -4
- package/dist/es2019/plugins/floating-toolbar/index.js +1 -1
- package/dist/es2019/plugins/floating-toolbar/pm-plugins/toolbar-data/plugin-factory.js +1 -1
- package/dist/es2019/plugins/floating-toolbar/ui/Dropdown.js +1 -1
- package/dist/es2019/plugins/floating-toolbar/ui/EmojiPickerButton.js +2 -2
- package/dist/es2019/plugins/floating-toolbar/ui/ExtensionsPlaceholder.js +1 -1
- package/dist/es2019/plugins/floating-toolbar/ui/Toolbar.js +2 -2
- package/dist/es2019/plugins/panel/toolbar.js +1 -1
- package/dist/es2019/plugins/text-color/pm-plugins/main.js +2 -2
- package/dist/es2019/ui/ConfigPanel/Fields/ColorPicker.js +3 -3
- package/dist/es2019/ui/Dropdown/index.js +1 -19
- package/dist/es2019/utils/index.js +1 -9
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/plugins/alignment/ui/ToolbarAlignment/index.js +1 -1
- package/dist/esm/plugins/find-replace/ui/FindReplaceToolbarButton.js +3 -4
- package/dist/esm/plugins/floating-toolbar/index.js +1 -1
- package/dist/esm/plugins/floating-toolbar/pm-plugins/toolbar-data/plugin-factory.js +1 -1
- package/dist/esm/plugins/floating-toolbar/ui/Dropdown.js +1 -1
- package/dist/esm/plugins/floating-toolbar/ui/EmojiPickerButton.js +2 -2
- package/dist/esm/plugins/floating-toolbar/ui/ExtensionsPlaceholder.js +1 -1
- package/dist/esm/plugins/floating-toolbar/ui/Toolbar.js +2 -2
- package/dist/esm/plugins/panel/toolbar.js +1 -1
- package/dist/esm/plugins/text-color/pm-plugins/main.js +2 -2
- package/dist/esm/ui/ConfigPanel/Fields/ColorPicker.js +3 -3
- package/dist/esm/ui/Dropdown/index.js +1 -21
- package/dist/esm/utils/index.js +1 -9
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/actions/index.d.ts +1 -1
- package/dist/types/plugins/find-replace/ui/FindReplaceToolbarButton.d.ts +3 -3
- package/dist/types/plugins/floating-toolbar/pm-plugins/toolbar-data/commands.d.ts +1 -1
- package/dist/types/plugins/floating-toolbar/pm-plugins/toolbar-data/plugin.d.ts +1 -1
- package/dist/types/plugins/text-color/pm-plugins/main.d.ts +1 -1
- package/dist/types/ui/ConfigPanel/Fields/ColorPicker.d.ts +1 -1
- package/dist/types/ui/Dropdown/index.d.ts +2 -6
- package/dist/types/utils/index.d.ts +3 -5
- package/dist/types-ts4.5/actions/index.d.ts +1 -1
- package/dist/types-ts4.5/plugins/find-replace/ui/FindReplaceToolbarButton.d.ts +3 -3
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/toolbar-data/commands.d.ts +1 -1
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/toolbar-data/plugin.d.ts +1 -1
- package/dist/types-ts4.5/plugins/text-color/pm-plugins/main.d.ts +1 -1
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/ColorPicker.d.ts +1 -1
- package/dist/types-ts4.5/ui/Dropdown/index.d.ts +2 -6
- package/dist/types-ts4.5/utils/index.d.ts +3 -5
- package/package.json +2 -2
- package/dist/cjs/ui/ColorPickerButton/index.js +0 -205
- package/dist/es2019/ui/ColorPickerButton/index.js +0 -213
- package/dist/esm/ui/ColorPickerButton/index.js +0 -198
- package/dist/types/ui/ColorPickerButton/index.d.ts +0 -28
- package/dist/types-ts4.5/ui/ColorPickerButton/index.d.ts +0 -28
|
@@ -18,7 +18,7 @@ import { hideConfirmDialog } from './pm-plugins/toolbar-data/commands';
|
|
|
18
18
|
import { ConfirmationModal } from './ui/ConfirmationModal';
|
|
19
19
|
import { ToolbarLoader } from './ui/ToolbarLoader';
|
|
20
20
|
import { findNode } from './utils';
|
|
21
|
-
import { ErrorBoundary } from '
|
|
21
|
+
import { ErrorBoundary } from '@atlaskit/editor-common/error-boundary';
|
|
22
22
|
import forceFocusPlugin, { forceFocusSelector } from './pm-plugins/force-focus';
|
|
23
23
|
export var getRelevantConfig = function getRelevantConfig(selection, configs) {
|
|
24
24
|
// node selections always take precedence, see if
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { pluginFactory } from '
|
|
1
|
+
import { pluginFactory } from '@atlaskit/editor-common/utils';
|
|
2
2
|
import { pluginKey } from './plugin-key';
|
|
3
3
|
import { reducer } from './reducer';
|
|
4
4
|
var _pluginFactory = pluginFactory(pluginKey, reducer),
|
|
@@ -16,7 +16,7 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
16
16
|
import React, { Component } from 'react';
|
|
17
17
|
import { css, jsx } from '@emotion/react';
|
|
18
18
|
import ExpandIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
19
|
-
import UiDropdown from '
|
|
19
|
+
import { DropdownContainer as UiDropdown } from '@atlaskit/editor-common/ui-menu';
|
|
20
20
|
import { FloatingToolbarButton as Button } from '@atlaskit/editor-common/ui';
|
|
21
21
|
import DropdownMenu, { itemSpacing, menuItemDimensions } from './DropdownMenu';
|
|
22
22
|
var dropdownExpandContainer = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n margin: 0px ", ";\n"])), "var(--ds-space-negative-050, -4px)");
|
|
@@ -10,11 +10,11 @@ import { Popup } from '@atlaskit/editor-common/ui';
|
|
|
10
10
|
import { EmojiPicker } from '@atlaskit/emoji';
|
|
11
11
|
import Tooltip from '@atlaskit/tooltip';
|
|
12
12
|
import EditorEmojiAddIcon from './EditorEmojiAddIcon';
|
|
13
|
-
import
|
|
13
|
+
import { withReactEditorViewOuterListeners } from '@atlaskit/editor-common/ui-react';
|
|
14
14
|
|
|
15
15
|
// helps adjusts position of popup
|
|
16
16
|
var emojiPickerButtonWrapper = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n position: relative;\n"])));
|
|
17
|
-
var EmojiPickerWithListener =
|
|
17
|
+
var EmojiPickerWithListener = withReactEditorViewOuterListeners(EmojiPicker);
|
|
18
18
|
export var EmojiPickerButton = function EmojiPickerButton(props) {
|
|
19
19
|
var buttonRef = React.useRef(null);
|
|
20
20
|
var _React$useState = React.useState(false),
|
|
@@ -5,7 +5,7 @@ import React, { useEffect, useState } from 'react';
|
|
|
5
5
|
import Loadable from 'react-loadable';
|
|
6
6
|
import { getContextualToolbarItemsFromModule } from '@atlaskit/editor-common/extensions';
|
|
7
7
|
import ButtonGroup from '@atlaskit/button/button-group';
|
|
8
|
-
import { nodeToJSON } from '
|
|
8
|
+
import { nodeToJSON } from '@atlaskit/editor-common/utils';
|
|
9
9
|
import { FloatingToolbarButton as Button } from '@atlaskit/editor-common/ui';
|
|
10
10
|
import Separator from './Separator';
|
|
11
11
|
var noop = function noop() {
|
|
@@ -26,8 +26,8 @@ import Select from './Select';
|
|
|
26
26
|
import Separator from './Separator';
|
|
27
27
|
import Input from './Input';
|
|
28
28
|
import { ExtensionsPlaceholder } from './ExtensionsPlaceholder';
|
|
29
|
-
import ColorPickerButton from '
|
|
30
|
-
import { backgroundPaletteTooltipMessages } from '
|
|
29
|
+
import { ColorPickerButton } from '@atlaskit/editor-common/ui-menu';
|
|
30
|
+
import { backgroundPaletteTooltipMessages } from '@atlaskit/editor-common/ui-color';
|
|
31
31
|
import { EmojiPickerButton } from './EmojiPickerButton';
|
|
32
32
|
import { injectIntl } from 'react-intl-next';
|
|
33
33
|
import messages from './messages';
|
|
@@ -15,7 +15,7 @@ import { panelBackgroundPalette } from '../../ui/ColorPalette/Palettes/panelBack
|
|
|
15
15
|
import { getPanelTypeBackgroundNoTokens } from '@atlaskit/editor-common/panel';
|
|
16
16
|
import { findPanel } from './utils';
|
|
17
17
|
import { findDomRefAtPos } from '@atlaskit/editor-prosemirror/utils';
|
|
18
|
-
import { DEFAULT_BORDER_COLOR } from '
|
|
18
|
+
import { DEFAULT_BORDER_COLOR } from '@atlaskit/editor-common/ui-color';
|
|
19
19
|
import { PanelType } from '@atlaskit/adf-schema';
|
|
20
20
|
import { ACTION, ACTION_SUBJECT, EVENT_TYPE, ACTION_SUBJECT_ID, withAnalytics } from '../analytics';
|
|
21
21
|
import { messages } from './message';
|
|
@@ -4,8 +4,8 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
4
4
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5
5
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
6
6
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
7
|
-
import { textColorPalette } from '
|
|
8
|
-
import { DEFAULT_BORDER_COLOR } from '
|
|
7
|
+
import { textColorPalette } from '@atlaskit/editor-common/ui-color';
|
|
8
|
+
import { DEFAULT_BORDER_COLOR } from '@atlaskit/editor-common/ui-color';
|
|
9
9
|
import { DEFAULT_COLOR, getActiveColor } from '../utils/color';
|
|
10
10
|
import { getDisabledState } from '../utils/disabled';
|
|
11
11
|
export { DEFAULT_COLOR } from '../utils/color';
|
|
@@ -7,13 +7,13 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
7
7
|
import { jsx, css } from '@emotion/react';
|
|
8
8
|
import { Fragment } from 'react';
|
|
9
9
|
import { Field } from '@atlaskit/form';
|
|
10
|
-
import { DEFAULT_BORDER_COLOR } from '
|
|
10
|
+
import { DEFAULT_BORDER_COLOR } from '@atlaskit/editor-common/ui-color';
|
|
11
11
|
import { validate as _validate } from '../utils';
|
|
12
12
|
import { requiredIndicator } from './common/RequiredIndicator';
|
|
13
13
|
import { headingSizes } from '@atlaskit/theme/typography';
|
|
14
14
|
import FieldMessages from '../FieldMessages';
|
|
15
|
-
import ColorPickerButton from '
|
|
16
|
-
import { chartsColorPaletteTooltipMessages } from '
|
|
15
|
+
import { ColorPickerButton } from '@atlaskit/editor-common/ui-menu';
|
|
16
|
+
import { chartsColorPaletteTooltipMessages } from '@atlaskit/editor-common/ui-color';
|
|
17
17
|
/*
|
|
18
18
|
NOTE: color used here are not yet in atlaskit code
|
|
19
19
|
this is part of extended color pack from ADG, which is yet to be release
|
|
@@ -1,22 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
import _objectDestructuringEmpty from "@babel/runtime/helpers/objectDestructuringEmpty";
|
|
3
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
4
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
-
import { Dropdown as DropdownComponent, KeyDownHandlerContext } from '@atlaskit/editor-common/ui-menu';
|
|
7
|
-
import React, { useContext } from 'react';
|
|
8
|
-
var Dropdown = /*#__PURE__*/React.memo(function (_ref) {
|
|
9
|
-
var props = _extends({}, (_objectDestructuringEmpty(_ref), _ref));
|
|
10
|
-
var keyDownHandlerContext = useContext(KeyDownHandlerContext);
|
|
11
|
-
return (
|
|
12
|
-
/*#__PURE__*/
|
|
13
|
-
//This context is to handle the tab, Arrow Right/Left key events for dropdown.
|
|
14
|
-
//Default context has the void callbacks for above key events
|
|
15
|
-
React.createElement(DropdownComponent, _extends({
|
|
16
|
-
arrowKeyNavigationProviderOptions: _objectSpread(_objectSpread({}, props.arrowKeyNavigationProviderOptions), {}, {
|
|
17
|
-
keyDownHandlerContext: keyDownHandlerContext
|
|
18
|
-
})
|
|
19
|
-
}, props))
|
|
20
|
-
);
|
|
21
|
-
});
|
|
1
|
+
import { DropdownContainer as Dropdown } from '@atlaskit/editor-common/ui-menu';
|
|
22
2
|
export default Dropdown;
|
package/dist/esm/utils/index.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { toggleMark } from '@atlaskit/editor-prosemirror/commands';
|
|
2
|
-
import { JSONTransformer } from '@atlaskit/editor-json-transformer';
|
|
3
2
|
import { FakeTextCursorSelection } from '../plugins/fake-text-cursor/cursor';
|
|
4
3
|
import { hasParentNodeOfType } from '@atlaskit/editor-prosemirror/utils';
|
|
5
|
-
export { isEmptyNode, isSelectionInsideLastNodeInDocument, checkNodeDown, insideTableCell, isInListItem } from '@atlaskit/editor-common/utils';
|
|
4
|
+
export { isEmptyNode, isSelectionInsideLastNodeInDocument, checkNodeDown, insideTableCell, isInListItem, toJSON, nodeToJSON } from '@atlaskit/editor-common/utils';
|
|
6
5
|
export { insideTable } from '@atlaskit/editor-common/core-utils';
|
|
7
6
|
export { findFarthestParentNode, nodesBetweenChanged, getNodesCount } from './document';
|
|
8
7
|
export { isParagraph, isText, isLinkMark } from './nodes';
|
|
@@ -61,13 +60,6 @@ export function isMarkTypeAllowedInCurrentSelection(markType, state) {
|
|
|
61
60
|
return allowedInActiveMarks;
|
|
62
61
|
});
|
|
63
62
|
}
|
|
64
|
-
var transformer = new JSONTransformer();
|
|
65
|
-
export function toJSON(node) {
|
|
66
|
-
return transformer.encode(node);
|
|
67
|
-
}
|
|
68
|
-
export function nodeToJSON(node) {
|
|
69
|
-
return transformer.encodeNode(node);
|
|
70
|
-
}
|
|
71
63
|
|
|
72
64
|
/**
|
|
73
65
|
* Repeating string for multiple times
|
|
@@ -22,7 +22,7 @@ export default class EditorActions<T = any> implements EditorActionsOptions<T> {
|
|
|
22
22
|
blur(): boolean;
|
|
23
23
|
clear(): boolean;
|
|
24
24
|
__temporaryFixForConfigPanel(): Promise<void>;
|
|
25
|
-
getValue(): Promise<import("@atlaskit/editor-json-transformer/types").JSONDocNode |
|
|
25
|
+
getValue(): Promise<T | import("@atlaskit/editor-json-transformer/types").JSONDocNode | undefined>;
|
|
26
26
|
getNodeByLocalId(id: string): Node | undefined;
|
|
27
27
|
getNodeByFragmentLocalId(id: string): Node | undefined;
|
|
28
28
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { WrappedComponentProps } from 'react-intl-next';
|
|
4
|
-
import { FindReplaceProps } from './FindReplace';
|
|
5
|
-
import { DispatchAnalyticsEvent } from '../../analytics/types';
|
|
3
|
+
import type { WrappedComponentProps } from 'react-intl-next';
|
|
4
|
+
import type { FindReplaceProps } from './FindReplace';
|
|
5
|
+
import type { DispatchAnalyticsEvent } from '../../analytics/types';
|
|
6
6
|
export interface FindReplaceToolbarButtonProps extends Omit<FindReplaceProps, 'count'> {
|
|
7
7
|
index: number;
|
|
8
8
|
numMatches: number;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
|
-
import { Dispatch } from '
|
|
2
|
+
import { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
|
|
3
3
|
export declare const createPlugin: (dispatch: Dispatch) => SafePlugin<import("@atlaskit/editor-plugin-floating-toolbar").FloatingToolbarPluginData>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
2
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
3
3
|
import type { Dispatch } from '../../../event-dispatcher';
|
|
4
|
-
import type { PaletteColor } from '
|
|
4
|
+
import type { PaletteColor } from '@atlaskit/editor-common/ui-color';
|
|
5
5
|
export { DEFAULT_COLOR } from '../utils/color';
|
|
6
6
|
export type TextColorPluginState = {
|
|
7
7
|
palette: Array<PaletteColor>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { jsx } from '@emotion/react';
|
|
3
3
|
import type { ColorField } from '@atlaskit/editor-common/extensions';
|
|
4
4
|
import type { FeatureFlags } from '@atlaskit/editor-common/types';
|
|
5
|
-
import type { PaletteColor } from '
|
|
5
|
+
import type { PaletteColor } from '@atlaskit/editor-common/ui-color';
|
|
6
6
|
import type { OnFieldChange } from '../types';
|
|
7
7
|
export declare const colorPalette: PaletteColor[];
|
|
8
8
|
/**
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
export type OpenChangedEvent = {
|
|
4
|
-
isOpen: boolean;
|
|
5
|
-
event: MouseEvent | KeyboardEvent;
|
|
6
|
-
};
|
|
1
|
+
import { DropdownContainer as Dropdown } from '@atlaskit/editor-common/ui-menu';
|
|
2
|
+
export type { OpenChangedEvent } from '@atlaskit/editor-common/ui';
|
|
7
3
|
export default Dropdown;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { MarkType,
|
|
1
|
+
import type { MarkType, ResolvedPos, Slice } from '@atlaskit/editor-prosemirror/model';
|
|
2
2
|
import type { EditorState, Selection } from '@atlaskit/editor-prosemirror/state';
|
|
3
|
-
import type { JSONDocNode
|
|
4
|
-
export { isEmptyNode, isSelectionInsideLastNodeInDocument, checkNodeDown, insideTableCell, isInListItem, } from '@atlaskit/editor-common/utils';
|
|
3
|
+
import type { JSONDocNode } from '@atlaskit/editor-json-transformer';
|
|
4
|
+
export { isEmptyNode, isSelectionInsideLastNodeInDocument, checkNodeDown, insideTableCell, isInListItem, toJSON, nodeToJSON, } from '@atlaskit/editor-common/utils';
|
|
5
5
|
export { insideTable } from '@atlaskit/editor-common/core-utils';
|
|
6
6
|
export { findFarthestParentNode, nodesBetweenChanged, getNodesCount, } from './document';
|
|
7
7
|
export { isParagraph, isText, isLinkMark } from './nodes';
|
|
@@ -16,8 +16,6 @@ export declare function getCursor(selection: Selection): ResolvedPos | undefined
|
|
|
16
16
|
* allowed.
|
|
17
17
|
*/
|
|
18
18
|
export declare function isMarkTypeAllowedInCurrentSelection(markType: MarkType, state: EditorState): boolean;
|
|
19
|
-
export declare function toJSON(node: Node): JSONDocNode;
|
|
20
|
-
export declare function nodeToJSON(node: Node): JSONNode;
|
|
21
19
|
/**
|
|
22
20
|
* Repeating string for multiple times
|
|
23
21
|
*/
|
|
@@ -22,7 +22,7 @@ export default class EditorActions<T = any> implements EditorActionsOptions<T> {
|
|
|
22
22
|
blur(): boolean;
|
|
23
23
|
clear(): boolean;
|
|
24
24
|
__temporaryFixForConfigPanel(): Promise<void>;
|
|
25
|
-
getValue(): Promise<import("@atlaskit/editor-json-transformer/types").JSONDocNode |
|
|
25
|
+
getValue(): Promise<T | import("@atlaskit/editor-json-transformer/types").JSONDocNode | undefined>;
|
|
26
26
|
getNodeByLocalId(id: string): Node | undefined;
|
|
27
27
|
getNodeByFragmentLocalId(id: string): Node | undefined;
|
|
28
28
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { WrappedComponentProps } from 'react-intl-next';
|
|
4
|
-
import { FindReplaceProps } from './FindReplace';
|
|
5
|
-
import { DispatchAnalyticsEvent } from '../../analytics/types';
|
|
3
|
+
import type { WrappedComponentProps } from 'react-intl-next';
|
|
4
|
+
import type { FindReplaceProps } from './FindReplace';
|
|
5
|
+
import type { DispatchAnalyticsEvent } from '../../analytics/types';
|
|
6
6
|
export interface FindReplaceToolbarButtonProps extends Omit<FindReplaceProps, 'count'> {
|
|
7
7
|
index: number;
|
|
8
8
|
numMatches: number;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
|
-
import { Dispatch } from '
|
|
2
|
+
import { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
|
|
3
3
|
export declare const createPlugin: (dispatch: Dispatch) => SafePlugin<import("@atlaskit/editor-plugin-floating-toolbar").FloatingToolbarPluginData>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
2
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
3
3
|
import type { Dispatch } from '../../../event-dispatcher';
|
|
4
|
-
import type { PaletteColor } from '
|
|
4
|
+
import type { PaletteColor } from '@atlaskit/editor-common/ui-color';
|
|
5
5
|
export { DEFAULT_COLOR } from '../utils/color';
|
|
6
6
|
export type TextColorPluginState = {
|
|
7
7
|
palette: Array<PaletteColor>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { jsx } from '@emotion/react';
|
|
3
3
|
import type { ColorField } from '@atlaskit/editor-common/extensions';
|
|
4
4
|
import type { FeatureFlags } from '@atlaskit/editor-common/types';
|
|
5
|
-
import type { PaletteColor } from '
|
|
5
|
+
import type { PaletteColor } from '@atlaskit/editor-common/ui-color';
|
|
6
6
|
import type { OnFieldChange } from '../types';
|
|
7
7
|
export declare const colorPalette: PaletteColor[];
|
|
8
8
|
/**
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
export type OpenChangedEvent = {
|
|
4
|
-
isOpen: boolean;
|
|
5
|
-
event: MouseEvent | KeyboardEvent;
|
|
6
|
-
};
|
|
1
|
+
import { DropdownContainer as Dropdown } from '@atlaskit/editor-common/ui-menu';
|
|
2
|
+
export type { OpenChangedEvent } from '@atlaskit/editor-common/ui';
|
|
7
3
|
export default Dropdown;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { MarkType,
|
|
1
|
+
import type { MarkType, ResolvedPos, Slice } from '@atlaskit/editor-prosemirror/model';
|
|
2
2
|
import type { EditorState, Selection } from '@atlaskit/editor-prosemirror/state';
|
|
3
|
-
import type { JSONDocNode
|
|
4
|
-
export { isEmptyNode, isSelectionInsideLastNodeInDocument, checkNodeDown, insideTableCell, isInListItem, } from '@atlaskit/editor-common/utils';
|
|
3
|
+
import type { JSONDocNode } from '@atlaskit/editor-json-transformer';
|
|
4
|
+
export { isEmptyNode, isSelectionInsideLastNodeInDocument, checkNodeDown, insideTableCell, isInListItem, toJSON, nodeToJSON, } from '@atlaskit/editor-common/utils';
|
|
5
5
|
export { insideTable } from '@atlaskit/editor-common/core-utils';
|
|
6
6
|
export { findFarthestParentNode, nodesBetweenChanged, getNodesCount, } from './document';
|
|
7
7
|
export { isParagraph, isText, isLinkMark } from './nodes';
|
|
@@ -16,8 +16,6 @@ export declare function getCursor(selection: Selection): ResolvedPos | undefined
|
|
|
16
16
|
* allowed.
|
|
17
17
|
*/
|
|
18
18
|
export declare function isMarkTypeAllowedInCurrentSelection(markType: MarkType, state: EditorState): boolean;
|
|
19
|
-
export declare function toJSON(node: Node): JSONDocNode;
|
|
20
|
-
export declare function nodeToJSON(node: Node): JSONNode;
|
|
21
19
|
/**
|
|
22
20
|
* Repeating string for multiple times
|
|
23
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "187.
|
|
3
|
+
"version": "187.46.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@atlaskit/code": "^14.6.0",
|
|
56
56
|
"@atlaskit/date": "^0.10.0",
|
|
57
57
|
"@atlaskit/datetime-picker": "^12.10.0",
|
|
58
|
-
"@atlaskit/editor-common": "^75.
|
|
58
|
+
"@atlaskit/editor-common": "^75.6.0",
|
|
59
59
|
"@atlaskit/editor-json-transformer": "^8.10.0",
|
|
60
60
|
"@atlaskit/editor-markdown-transformer": "^5.2.5",
|
|
61
61
|
"@atlaskit/editor-palette": "1.5.1",
|
|
@@ -1,205 +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.default = void 0;
|
|
8
|
-
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
9
|
-
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
10
|
-
var _react = _interopRequireDefault(require("react"));
|
|
11
|
-
var _react2 = require("@emotion/react");
|
|
12
|
-
var _ui = require("@atlaskit/editor-common/ui");
|
|
13
|
-
var _uiMenu = require("@atlaskit/editor-common/ui-menu");
|
|
14
|
-
var _uiColor = require("@atlaskit/editor-common/ui-color");
|
|
15
|
-
var _button = _interopRequireDefault(require("@atlaskit/button"));
|
|
16
|
-
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
17
|
-
var _colors = require("@atlaskit/theme/colors");
|
|
18
|
-
var _components = require("@atlaskit/theme/components");
|
|
19
|
-
var _constants = require("@atlaskit/theme/constants");
|
|
20
|
-
var _ColorPalette = _interopRequireDefault(require("../ColorPalette"));
|
|
21
|
-
var _common = require("../ColorPalette/Palettes/common");
|
|
22
|
-
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
23
|
-
var _consts = require("../../plugins/analytics/consts");
|
|
24
|
-
var _types = require("../../plugins/analytics/types");
|
|
25
|
-
var _chevronDown = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-down"));
|
|
26
|
-
var _templateObject, _templateObject2, _templateObject3, _templateObject4;
|
|
27
|
-
/** @jsx jsx */
|
|
28
|
-
// helps adjusts position of popup
|
|
29
|
-
var colorPickerButtonWrapper = (0, _react2.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n position: relative;\n"])));
|
|
30
|
-
var colorPickerExpandContainer = (0, _react2.css)(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n margin: 0px ", ";\n"])), "var(--ds-space-negative-050, -4px)");
|
|
31
|
-
|
|
32
|
-
// Control the size of color picker buttons and preview
|
|
33
|
-
// TODO: https://product-fabric.atlassian.net/browse/DSP-4134
|
|
34
|
-
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
|
|
35
|
-
var colorPickerWrapper = function colorPickerWrapper(theme) {
|
|
36
|
-
return (0, _react2.css)(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n border-radius: ", "px;\n background-color: ", ";\n box-shadow: 0 4px 8px -2px ", ", 0 0 1px ", ";\n padding: ", " 0px;\n"])), (0, _constants.borderRadius)(), (0, _components.themed)({
|
|
37
|
-
light: "var(--ds-surface-overlay, ".concat(_colors.N0, ")"),
|
|
38
|
-
dark: "var(--ds-surface-overlay, ".concat(_colors.DN50, ")")
|
|
39
|
-
})(theme), _colors.N60A, _colors.N60A, "var(--ds-space-100, 8px)");
|
|
40
|
-
};
|
|
41
|
-
/* eslint-enable @atlaskit/design-system/ensure-design-token-usage */
|
|
42
|
-
|
|
43
|
-
var ColorPaletteWithListeners = (0, _ui.withOuterListeners)(_ColorPalette.default);
|
|
44
|
-
var ColorPickerButton = function ColorPickerButton(props) {
|
|
45
|
-
var buttonRef = _react.default.useRef(null);
|
|
46
|
-
var _React$useState = _react.default.useState(false),
|
|
47
|
-
_React$useState2 = (0, _slicedToArray2.default)(_React$useState, 2),
|
|
48
|
-
isPopupOpen = _React$useState2[0],
|
|
49
|
-
setIsPopupOpen = _React$useState2[1];
|
|
50
|
-
var _React$useState3 = _react.default.useState(false),
|
|
51
|
-
_React$useState4 = (0, _slicedToArray2.default)(_React$useState3, 2),
|
|
52
|
-
isPopupPositioned = _React$useState4[0],
|
|
53
|
-
setIsPopupPositioned = _React$useState4[1];
|
|
54
|
-
var _React$useState5 = _react.default.useState(false),
|
|
55
|
-
_React$useState6 = (0, _slicedToArray2.default)(_React$useState5, 2),
|
|
56
|
-
isOpenedByKeyboard = _React$useState6[0],
|
|
57
|
-
setIsOpenedByKeyboard = _React$useState6[1];
|
|
58
|
-
var togglePopup = function togglePopup() {
|
|
59
|
-
setIsPopupOpen(!isPopupOpen);
|
|
60
|
-
if (!isPopupOpen) {
|
|
61
|
-
setIsOpenedByKeyboard(false);
|
|
62
|
-
setIsPopupPositioned(false);
|
|
63
|
-
}
|
|
64
|
-
};
|
|
65
|
-
_react.default.useEffect(function () {
|
|
66
|
-
if (props.setDisableParentScroll) {
|
|
67
|
-
props.setDisableParentScroll(isPopupOpen);
|
|
68
|
-
}
|
|
69
|
-
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
70
|
-
}, [isPopupOpen]);
|
|
71
|
-
var focusButton = function focusButton() {
|
|
72
|
-
var _buttonRef$current;
|
|
73
|
-
(_buttonRef$current = buttonRef.current) === null || _buttonRef$current === void 0 ? void 0 : _buttonRef$current.focus();
|
|
74
|
-
};
|
|
75
|
-
var handleEsc = _react.default.useCallback(function () {
|
|
76
|
-
setIsOpenedByKeyboard(false);
|
|
77
|
-
setIsPopupPositioned(false);
|
|
78
|
-
setIsPopupOpen(false);
|
|
79
|
-
focusButton();
|
|
80
|
-
}, []);
|
|
81
|
-
var onPositionCalculated = _react.default.useCallback(function (position) {
|
|
82
|
-
setIsPopupPositioned(true);
|
|
83
|
-
return position;
|
|
84
|
-
}, []);
|
|
85
|
-
var onChange = props.onChange,
|
|
86
|
-
createAnalyticsEvent = props.createAnalyticsEvent,
|
|
87
|
-
colorPalette = props.colorPalette,
|
|
88
|
-
placement = props.placement,
|
|
89
|
-
skipFocusButtonAfterPick = props.skipFocusButtonAfterPick;
|
|
90
|
-
var onColorSelected = _react.default.useCallback(function (color, label) {
|
|
91
|
-
setIsOpenedByKeyboard(false);
|
|
92
|
-
setIsPopupOpen(false);
|
|
93
|
-
setIsPopupPositioned(false);
|
|
94
|
-
if (onChange) {
|
|
95
|
-
if (createAnalyticsEvent) {
|
|
96
|
-
// fire analytics
|
|
97
|
-
var payload = {
|
|
98
|
-
action: _types.ACTION.UPDATED,
|
|
99
|
-
actionSubject: _types.ACTION_SUBJECT.PICKER,
|
|
100
|
-
actionSubjectId: _types.ACTION_SUBJECT_ID.PICKER_COLOR,
|
|
101
|
-
attributes: {
|
|
102
|
-
color: color,
|
|
103
|
-
label: label,
|
|
104
|
-
placement: placement
|
|
105
|
-
},
|
|
106
|
-
eventType: _types.EVENT_TYPE.TRACK
|
|
107
|
-
};
|
|
108
|
-
createAnalyticsEvent(payload).fire(_consts.editorAnalyticsChannel);
|
|
109
|
-
}
|
|
110
|
-
var newPalette = colorPalette.find(function (colorPalette) {
|
|
111
|
-
return colorPalette.value === color;
|
|
112
|
-
});
|
|
113
|
-
newPalette && onChange(newPalette);
|
|
114
|
-
}
|
|
115
|
-
if (!skipFocusButtonAfterPick) {
|
|
116
|
-
focusButton();
|
|
117
|
-
}
|
|
118
|
-
}, [colorPalette, onChange, createAnalyticsEvent, placement, skipFocusButtonAfterPick]);
|
|
119
|
-
var renderPopup = function renderPopup() {
|
|
120
|
-
if (!isPopupOpen || !buttonRef.current) {
|
|
121
|
-
return;
|
|
122
|
-
}
|
|
123
|
-
var selectedColor = props.currentColor || null;
|
|
124
|
-
var _getSelectedRowAndCol = (0, _uiColor.getSelectedRowAndColumnFromPalette)(props.colorPalette, selectedColor, props.cols),
|
|
125
|
-
selectedRowIndex = _getSelectedRowAndCol.selectedRowIndex,
|
|
126
|
-
selectedColumnIndex = _getSelectedRowAndCol.selectedColumnIndex;
|
|
127
|
-
return (0, _react2.jsx)(_ui.Popup, {
|
|
128
|
-
target: buttonRef.current,
|
|
129
|
-
fitHeight: 350,
|
|
130
|
-
fitWidth: 350,
|
|
131
|
-
offset: [0, 10],
|
|
132
|
-
alignX: props.alignX,
|
|
133
|
-
mountTo: props.setDisableParentScroll ? props.mountPoint : undefined
|
|
134
|
-
// Confluence inline comment editor has z-index: 500
|
|
135
|
-
// if the toolbar is scrollable, this will be mounted in the root editor
|
|
136
|
-
// we need an index of > 500 to display over it
|
|
137
|
-
,
|
|
138
|
-
zIndex: props.setDisableParentScroll ? 600 : undefined,
|
|
139
|
-
ariaLabel: "Color picker popup",
|
|
140
|
-
onPositionCalculated: onPositionCalculated
|
|
141
|
-
}, (0, _react2.jsx)("div", {
|
|
142
|
-
css: colorPickerWrapper,
|
|
143
|
-
"data-test-id": "color-picker-menu"
|
|
144
|
-
}, (0, _react2.jsx)(_uiMenu.ArrowKeyNavigationProvider, {
|
|
145
|
-
type: _uiMenu.ArrowKeyNavigationType.COLOR,
|
|
146
|
-
selectedRowIndex: selectedRowIndex,
|
|
147
|
-
selectedColumnIndex: selectedColumnIndex,
|
|
148
|
-
closeOnTab: true,
|
|
149
|
-
handleClose: function handleClose() {
|
|
150
|
-
return setIsPopupOpen(false);
|
|
151
|
-
},
|
|
152
|
-
isOpenedByKeyboard: isOpenedByKeyboard,
|
|
153
|
-
isPopupPositioned: isPopupPositioned
|
|
154
|
-
}, (0, _react2.jsx)(ColorPaletteWithListeners, {
|
|
155
|
-
cols: props.cols,
|
|
156
|
-
selectedColor: selectedColor,
|
|
157
|
-
onClick: onColorSelected,
|
|
158
|
-
handleClickOutside: togglePopup,
|
|
159
|
-
handleEscapeKeydown: handleEsc,
|
|
160
|
-
paletteOptions: {
|
|
161
|
-
palette: props.colorPalette,
|
|
162
|
-
hexToPaletteColor: props.hexToPaletteColor,
|
|
163
|
-
paletteColorTooltipMessages: props.paletteColorTooltipMessages
|
|
164
|
-
}
|
|
165
|
-
}))));
|
|
166
|
-
};
|
|
167
|
-
var title = props.title || '';
|
|
168
|
-
var currentColor = props.currentColor && props.hexToPaletteColor ? props.hexToPaletteColor(props.currentColor) : props.currentColor;
|
|
169
|
-
var buttonStyle = function buttonStyle(theme) {
|
|
170
|
-
var _props$size, _props$size2, _props$size3;
|
|
171
|
-
return (0, _react2.css)(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2.default)(["\n padding: 0 10px;\n background-color: ", ";\n ", "\n &:before {\n display: flex;\n justify-content: center;\n align-items: center;\n align-self: center;\n content: '';\n border: 1px solid ", ";\n border-radius: ", "px;\n background-color: ", ";\n width: ", ";\n height: ", ";\n padding: 0;\n margin: 0px ", ";\n }\n &:hover {\n background: ", ";\n }\n "])), "var(--ds-background-neutral-subtle, transparent)", /* If custom props size height, override the button base height property */
|
|
172
|
-
!!((_props$size = props.size) !== null && _props$size !== void 0 && _props$size.height) && "height: inherit;", _common.DEFAULT_BORDER_COLOR, (0, _constants.borderRadius)(), currentColor || 'transparent', ((_props$size2 = props.size) === null || _props$size2 === void 0 ? void 0 : _props$size2.width) || '14px', ((_props$size3 = props.size) === null || _props$size3 === void 0 ? void 0 : _props$size3.height) || '14px', "var(--ds-space-025, 2px)", (0, _components.themed)({
|
|
173
|
-
light: "var(--ds-background-neutral-subtle-hovered, ".concat(_colors.N30A, ")"),
|
|
174
|
-
dark: "var(--ds-background-neutral-subtle-hovered, ".concat(_colors.N30A, ")")
|
|
175
|
-
})(theme));
|
|
176
|
-
};
|
|
177
|
-
return (0, _react2.jsx)("div", {
|
|
178
|
-
css: colorPickerButtonWrapper
|
|
179
|
-
}, (0, _react2.jsx)(_tooltip.default, {
|
|
180
|
-
content: title,
|
|
181
|
-
position: "top"
|
|
182
|
-
}, (0, _react2.jsx)(_button.default, {
|
|
183
|
-
ref: buttonRef,
|
|
184
|
-
"aria-label": title,
|
|
185
|
-
spacing: "compact",
|
|
186
|
-
onClick: togglePopup,
|
|
187
|
-
onKeyDown: function onKeyDown(event) {
|
|
188
|
-
if (event.key === 'Enter' || event.key === ' ') {
|
|
189
|
-
event.preventDefault();
|
|
190
|
-
togglePopup();
|
|
191
|
-
setIsOpenedByKeyboard(true);
|
|
192
|
-
}
|
|
193
|
-
},
|
|
194
|
-
css: buttonStyle,
|
|
195
|
-
iconAfter: (0, _react2.jsx)("span", {
|
|
196
|
-
css: colorPickerExpandContainer
|
|
197
|
-
}, (0, _react2.jsx)(_chevronDown.default, {
|
|
198
|
-
label: ""
|
|
199
|
-
}))
|
|
200
|
-
})), renderPopup());
|
|
201
|
-
};
|
|
202
|
-
var _default = (0, _analyticsNext.withAnalyticsContext)({
|
|
203
|
-
source: 'ConfigPanel'
|
|
204
|
-
})((0, _analyticsNext.withAnalyticsEvents)()(ColorPickerButton));
|
|
205
|
-
exports.default = _default;
|