@atlaskit/editor-core 202.5.0 → 203.0.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 +58 -0
- package/dist/cjs/actions/index.js +6 -1
- package/dist/cjs/composable-editor/composable-editor.js +2 -2
- package/dist/cjs/create-editor/ReactEditorView.js +3 -3
- package/dist/cjs/create-editor/ReactEditorViewNext.js +3 -3
- package/dist/cjs/create-editor/create-editor.js +2 -2
- package/dist/cjs/create-editor/create-plugins-list.js +1 -1
- package/dist/cjs/create-editor/create-schema.js +3 -3
- package/dist/cjs/create-editor/get-ui-component.js +4 -4
- package/dist/cjs/editor-appearances/CommentEditor.js +2 -2
- package/dist/cjs/editor-appearances/FullPageEditor.js +2 -2
- package/dist/cjs/editor-appearances/FullWidthEditor.js +2 -2
- package/dist/cjs/editor.js +2 -1
- package/dist/cjs/index.js +4 -10
- package/dist/cjs/test-utils.js +4 -23
- package/dist/cjs/ui/Appearance/Comment/Comment.js +8 -8
- package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea.js +2 -2
- package/dist/cjs/ui/Appearance/FullPage/FullPageToolbar.js +2 -2
- package/dist/cjs/ui/ContentStyles/layout.js +2 -14
- package/dist/cjs/ui/PluginSlot/index.js +2 -2
- package/dist/cjs/ui/Toolbar/Toolbar.js +1 -1
- package/dist/cjs/ui/Toolbar/ToolbarWithSizeDetector.js +1 -1
- package/dist/cjs/ui/Toolbar/toolbar-size.js +1 -1
- package/dist/cjs/ui/WithHelpTrigger/index.js +1 -1
- package/dist/cjs/utils/{index.js → whichTransitionEvent.js} +0 -15
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/actions/index.js +6 -1
- package/dist/es2019/composable-editor/composable-editor.js +1 -1
- package/dist/es2019/composable-editor.js +3 -0
- package/dist/es2019/create-editor/ReactEditorView.js +2 -2
- package/dist/es2019/create-editor/ReactEditorViewNext.js +2 -2
- package/dist/es2019/create-editor/create-editor.js +1 -1
- package/dist/es2019/create-editor/create-plugins-list.js +1 -1
- package/dist/es2019/create-editor/create-schema.js +1 -1
- package/dist/es2019/create-editor/get-ui-component.js +2 -2
- package/dist/es2019/editor-appearances/CommentEditor.js +1 -1
- package/dist/es2019/editor-appearances/FullPageEditor.js +1 -1
- package/dist/es2019/editor-appearances/FullWidthEditor.js +1 -1
- package/dist/es2019/editor-context.js +3 -0
- package/dist/es2019/editor.js +3 -0
- package/dist/es2019/i18n/index.js +3 -0
- package/dist/es2019/index.js +6 -2
- package/dist/es2019/labs-next.js +3 -0
- package/dist/es2019/preset-default.js +3 -0
- package/dist/es2019/preset-universal.js +3 -0
- package/dist/es2019/test-utils.js +4 -3
- package/dist/es2019/ui/Appearance/Comment/Comment.js +3 -3
- package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea.js +1 -1
- package/dist/es2019/ui/Appearance/FullPage/FullPageToolbar.js +1 -1
- package/dist/es2019/ui/ContentStyles/layout.js +11 -7
- package/dist/es2019/ui/PluginSlot/index.js +1 -1
- package/dist/es2019/ui/Toolbar/Toolbar.js +1 -1
- package/dist/es2019/ui/Toolbar/ToolbarWithSizeDetector.js +1 -1
- package/dist/es2019/ui/Toolbar/toolbar-size.js +1 -2
- package/dist/es2019/ui/WithHelpTrigger/index.js +1 -1
- package/dist/es2019/utils/{index.js → whichTransitionEvent.js} +0 -3
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/actions/index.js +6 -1
- package/dist/esm/composable-editor/composable-editor.js +1 -1
- package/dist/esm/composable-editor.js +3 -0
- package/dist/esm/create-editor/ReactEditorView.js +2 -2
- package/dist/esm/create-editor/ReactEditorViewNext.js +2 -2
- package/dist/esm/create-editor/create-editor.js +1 -1
- package/dist/esm/create-editor/create-plugins-list.js +1 -1
- package/dist/esm/create-editor/create-schema.js +1 -1
- package/dist/esm/create-editor/get-ui-component.js +2 -2
- package/dist/esm/editor-appearances/CommentEditor.js +1 -1
- package/dist/esm/editor-appearances/FullPageEditor.js +1 -1
- package/dist/esm/editor-appearances/FullWidthEditor.js +1 -1
- package/dist/esm/editor-context.js +3 -0
- package/dist/esm/editor.js +3 -0
- package/dist/esm/i18n/index.js +3 -0
- package/dist/esm/index.js +6 -2
- package/dist/esm/labs-next.js +3 -0
- package/dist/esm/preset-default.js +3 -0
- package/dist/esm/preset-universal.js +3 -0
- package/dist/esm/test-utils.js +4 -3
- package/dist/esm/ui/Appearance/Comment/Comment.js +3 -3
- package/dist/esm/ui/Appearance/FullPage/FullPageContentArea.js +1 -1
- package/dist/esm/ui/Appearance/FullPage/FullPageToolbar.js +1 -1
- package/dist/esm/ui/ContentStyles/layout.js +2 -3
- package/dist/esm/ui/PluginSlot/index.js +1 -1
- package/dist/esm/ui/Toolbar/Toolbar.js +1 -1
- package/dist/esm/ui/Toolbar/ToolbarWithSizeDetector.js +1 -1
- package/dist/esm/ui/Toolbar/toolbar-size.js +1 -2
- package/dist/esm/ui/WithHelpTrigger/index.js +1 -1
- package/dist/esm/utils/{index.js → whichTransitionEvent.js} +0 -3
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/actions/index.d.ts +5 -1
- package/dist/types/composable-editor/editor-internal.d.ts +1 -1
- package/dist/types/create-editor/ErrorBoundary.d.ts +1 -1
- package/dist/types/create-editor/ReactEditorView/formatFullWidthAppearance.d.ts +1 -1
- package/dist/types/create-editor/ReactEditorView.d.ts +4 -4
- package/dist/types/create-editor/ReactEditorViewNext.d.ts +1 -1
- package/dist/types/create-editor/create-editor.d.ts +2 -1
- package/dist/types/create-editor/create-plugins-list.d.ts +2 -1
- package/dist/types/create-editor/create-schema.d.ts +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +202 -101
- package/dist/types/create-editor/feature-flags-from-props.d.ts +1 -1
- package/dist/types/create-editor/get-plugins.d.ts +2 -4
- package/dist/types/create-editor/get-ui-component.d.ts +2 -1
- package/dist/types/editor.d.ts +1 -2
- package/dist/types/index.d.ts +3 -4
- package/dist/types/presets/default.d.ts +158 -70
- package/dist/types/presets/universal.d.ts +203 -103
- package/dist/types/presets/useUniversalPreset.d.ts +202 -101
- package/dist/types/test-utils.d.ts +1 -7
- package/dist/types/types/editor-appearance-component.d.ts +2 -6
- package/dist/types/types/editor-config.d.ts +1 -4
- package/dist/types/types/editor-instance.d.ts +2 -3
- package/dist/types/types/editor-props.d.ts +4 -8
- package/dist/types/types/index.d.ts +0 -9
- package/dist/types/types/pm-plugin-list.d.ts +1 -1
- package/dist/types/ui/Appearance/Chromeless.d.ts +1 -1
- package/dist/types/ui/Appearance/FullPage/FullPageContentArea.d.ts +3 -4
- package/dist/types/ui/Appearance/FullPage/FullPageToolbar.d.ts +2 -3
- package/dist/types/ui/Appearance/FullPage/StyledComponents.d.ts +4 -4
- package/dist/types/ui/ContentStyles/index.d.ts +3 -3
- package/dist/types/ui/ContentStyles/layout.d.ts +0 -2
- package/dist/types/ui/PluginSlot/index.d.ts +2 -3
- package/dist/types/ui/Toolbar/toolbar-size.d.ts +2 -2
- package/dist/types/ui/Toolbar/toolbar-types.d.ts +1 -2
- package/dist/types/utils/is-full-page.d.ts +1 -1
- package/dist/types/utils/performance/plugin-performance-observer.d.ts +2 -1
- package/dist/types/utils/performance/plugin-performance-report.d.ts +1 -2
- package/dist/types/utils/performance/track-transactions.d.ts +1 -1
- package/dist/types/utils/whichTransitionEvent.d.ts +1 -0
- package/dist/types-ts4.5/actions/index.d.ts +5 -1
- package/dist/types-ts4.5/composable-editor/editor-internal.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/ErrorBoundary.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/ReactEditorView/formatFullWidthAppearance.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/ReactEditorView.d.ts +4 -4
- package/dist/types-ts4.5/create-editor/ReactEditorViewNext.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/create-editor.d.ts +2 -1
- package/dist/types-ts4.5/create-editor/create-plugins-list.d.ts +2 -1
- package/dist/types-ts4.5/create-editor/create-schema.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +239 -101
- package/dist/types-ts4.5/create-editor/feature-flags-from-props.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/get-plugins.d.ts +2 -4
- package/dist/types-ts4.5/create-editor/get-ui-component.d.ts +2 -1
- package/dist/types-ts4.5/editor.d.ts +1 -2
- package/dist/types-ts4.5/index.d.ts +3 -4
- package/dist/types-ts4.5/presets/default.d.ts +188 -70
- package/dist/types-ts4.5/presets/universal.d.ts +240 -103
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +239 -101
- package/dist/types-ts4.5/test-utils.d.ts +1 -7
- package/dist/types-ts4.5/types/editor-appearance-component.d.ts +2 -6
- package/dist/types-ts4.5/types/editor-config.d.ts +1 -4
- package/dist/types-ts4.5/types/editor-instance.d.ts +2 -3
- package/dist/types-ts4.5/types/editor-props.d.ts +4 -8
- package/dist/types-ts4.5/types/index.d.ts +0 -9
- package/dist/types-ts4.5/types/pm-plugin-list.d.ts +1 -1
- package/dist/types-ts4.5/ui/Appearance/Chromeless.d.ts +1 -1
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageContentArea.d.ts +3 -4
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageToolbar.d.ts +2 -3
- package/dist/types-ts4.5/ui/Appearance/FullPage/StyledComponents.d.ts +4 -4
- package/dist/types-ts4.5/ui/ContentStyles/index.d.ts +3 -3
- package/dist/types-ts4.5/ui/ContentStyles/layout.d.ts +0 -2
- package/dist/types-ts4.5/ui/PluginSlot/index.d.ts +2 -3
- package/dist/types-ts4.5/ui/Toolbar/toolbar-size.d.ts +2 -2
- package/dist/types-ts4.5/ui/Toolbar/toolbar-types.d.ts +1 -2
- package/dist/types-ts4.5/utils/is-full-page.d.ts +1 -1
- package/dist/types-ts4.5/utils/performance/plugin-performance-observer.d.ts +2 -1
- package/dist/types-ts4.5/utils/performance/plugin-performance-report.d.ts +1 -2
- package/dist/types-ts4.5/utils/performance/track-transactions.d.ts +1 -1
- package/dist/types-ts4.5/utils/whichTransitionEvent.d.ts +1 -0
- package/package.json +14 -17
- package/dist/cjs/create-editor/ReactEditorViewContext.js +0 -8
- package/dist/cjs/create-editor/index.js +0 -42
- package/dist/cjs/create-editor/sort-by-order.js +0 -18
- package/dist/cjs/element-browser.js +0 -12
- package/dist/cjs/event-dispatcher/index.js +0 -18
- package/dist/cjs/messages.js +0 -36
- package/dist/cjs/nodeviews/index.js +0 -1
- package/dist/cjs/preset-builder.js +0 -12
- package/dist/cjs/types/browser.js +0 -1
- package/dist/cjs/types/editor-appearance.js +0 -1
- package/dist/cjs/types/editor-plugin.js +0 -1
- package/dist/cjs/types/editor-react-context.js +0 -1
- package/dist/cjs/types/empty-state-handler.js +0 -1
- package/dist/cjs/types/feature-flags.js +0 -1
- package/dist/cjs/types/performance-tracking.js +0 -1
- package/dist/cjs/types/pm-config.js +0 -1
- package/dist/cjs/types/pm-plugin.js +0 -1
- package/dist/cjs/types/ui-components.js +0 -1
- package/dist/cjs/ui/Addon/index.js +0 -27
- package/dist/cjs/ui/Appearance/Comment/index.js +0 -12
- package/dist/cjs/ui/Appearance/FullPage/index.js +0 -12
- package/dist/cjs/ui/Toolbar/index.js +0 -26
- package/dist/cjs/ui/Toolbar/types.js +0 -36
- package/dist/es2019/create-editor/ReactEditorViewContext.js +0 -2
- package/dist/es2019/create-editor/index.js +0 -3
- package/dist/es2019/create-editor/sort-by-order.js +0 -1
- package/dist/es2019/element-browser.js +0 -1
- package/dist/es2019/event-dispatcher/index.js +0 -1
- package/dist/es2019/messages.js +0 -7
- package/dist/es2019/nodeviews/index.js +0 -0
- package/dist/es2019/preset-builder.js +0 -1
- package/dist/es2019/types/browser.js +0 -0
- package/dist/es2019/types/editor-appearance.js +0 -0
- package/dist/es2019/types/editor-plugin.js +0 -0
- package/dist/es2019/types/editor-react-context.js +0 -0
- package/dist/es2019/types/empty-state-handler.js +0 -0
- package/dist/es2019/types/feature-flags.js +0 -0
- package/dist/es2019/types/performance-tracking.js +0 -0
- package/dist/es2019/types/pm-config.js +0 -0
- package/dist/es2019/types/pm-plugin.js +0 -0
- package/dist/es2019/types/ui-components.js +0 -0
- package/dist/es2019/ui/Addon/index.js +0 -3
- package/dist/es2019/ui/Appearance/Comment/index.js +0 -1
- package/dist/es2019/ui/Appearance/FullPage/index.js +0 -1
- package/dist/es2019/ui/Toolbar/index.js +0 -3
- package/dist/es2019/ui/Toolbar/types.js +0 -1
- package/dist/esm/create-editor/ReactEditorViewContext.js +0 -2
- package/dist/esm/create-editor/index.js +0 -3
- package/dist/esm/create-editor/sort-by-order.js +0 -1
- package/dist/esm/element-browser.js +0 -1
- package/dist/esm/event-dispatcher/index.js +0 -1
- package/dist/esm/messages.js +0 -7
- package/dist/esm/nodeviews/index.js +0 -0
- package/dist/esm/preset-builder.js +0 -1
- package/dist/esm/types/browser.js +0 -0
- package/dist/esm/types/editor-appearance.js +0 -0
- package/dist/esm/types/editor-plugin.js +0 -0
- package/dist/esm/types/editor-react-context.js +0 -0
- package/dist/esm/types/empty-state-handler.js +0 -0
- package/dist/esm/types/feature-flags.js +0 -0
- package/dist/esm/types/performance-tracking.js +0 -0
- package/dist/esm/types/pm-config.js +0 -0
- package/dist/esm/types/pm-plugin.js +0 -0
- package/dist/esm/types/ui-components.js +0 -0
- package/dist/esm/ui/Addon/index.js +0 -3
- package/dist/esm/ui/Appearance/Comment/index.js +0 -1
- package/dist/esm/ui/Appearance/FullPage/index.js +0 -1
- package/dist/esm/ui/Toolbar/index.js +0 -3
- package/dist/esm/ui/Toolbar/types.js +0 -1
- package/dist/types/create-editor/ReactEditorViewContext.d.ts +0 -2
- package/dist/types/create-editor/index.d.ts +0 -3
- package/dist/types/create-editor/sort-by-order.d.ts +0 -1
- package/dist/types/element-browser.d.ts +0 -1
- package/dist/types/event-dispatcher/index.d.ts +0 -2
- package/dist/types/messages.d.ts +0 -6
- package/dist/types/nodeviews/index.d.ts +0 -1
- package/dist/types/preset-builder.d.ts +0 -1
- package/dist/types/types/browser.d.ts +0 -1
- package/dist/types/types/editor-appearance.d.ts +0 -1
- package/dist/types/types/editor-plugin.d.ts +0 -1
- package/dist/types/types/editor-react-context.d.ts +0 -1
- package/dist/types/types/empty-state-handler.d.ts +0 -1
- package/dist/types/types/feature-flags.d.ts +0 -1
- package/dist/types/types/performance-tracking.d.ts +0 -1
- package/dist/types/types/pm-config.d.ts +0 -1
- package/dist/types/types/pm-plugin.d.ts +0 -1
- package/dist/types/types/ui-components.d.ts +0 -1
- package/dist/types/ui/Addon/index.d.ts +0 -4
- package/dist/types/ui/Appearance/Comment/index.d.ts +0 -1
- package/dist/types/ui/Appearance/FullPage/index.d.ts +0 -1
- package/dist/types/ui/Toolbar/index.d.ts +0 -4
- package/dist/types/ui/Toolbar/types.d.ts +0 -2
- package/dist/types/utils/index.d.ts +0 -3
- package/dist/types-ts4.5/create-editor/ReactEditorViewContext.d.ts +0 -2
- package/dist/types-ts4.5/create-editor/index.d.ts +0 -3
- package/dist/types-ts4.5/create-editor/sort-by-order.d.ts +0 -1
- package/dist/types-ts4.5/element-browser.d.ts +0 -1
- package/dist/types-ts4.5/event-dispatcher/index.d.ts +0 -2
- package/dist/types-ts4.5/messages.d.ts +0 -6
- package/dist/types-ts4.5/nodeviews/index.d.ts +0 -1
- package/dist/types-ts4.5/preset-builder.d.ts +0 -1
- package/dist/types-ts4.5/types/browser.d.ts +0 -1
- package/dist/types-ts4.5/types/editor-appearance.d.ts +0 -1
- package/dist/types-ts4.5/types/editor-plugin.d.ts +0 -1
- package/dist/types-ts4.5/types/editor-react-context.d.ts +0 -1
- package/dist/types-ts4.5/types/empty-state-handler.d.ts +0 -1
- package/dist/types-ts4.5/types/feature-flags.d.ts +0 -1
- package/dist/types-ts4.5/types/performance-tracking.d.ts +0 -1
- package/dist/types-ts4.5/types/pm-config.d.ts +0 -1
- package/dist/types-ts4.5/types/pm-plugin.d.ts +0 -1
- package/dist/types-ts4.5/types/ui-components.d.ts +0 -1
- package/dist/types-ts4.5/ui/Addon/index.d.ts +0 -4
- package/dist/types-ts4.5/ui/Appearance/Comment/index.d.ts +0 -1
- package/dist/types-ts4.5/ui/Appearance/FullPage/index.d.ts +0 -1
- package/dist/types-ts4.5/ui/Toolbar/index.d.ts +0 -4
- package/dist/types-ts4.5/ui/Toolbar/types.d.ts +0 -2
- package/dist/types-ts4.5/utils/index.d.ts +0 -3
- package/element-browser/package.json +0 -15
- package/messages/package.json +0 -15
- package/preset-builder/package.json +0 -15
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "ElementBrowser", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _elementBrowser.ElementBrowser;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _elementBrowser = require("@atlaskit/editor-common/element-browser");
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "EventDispatcher", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _eventDispatcher.EventDispatcher;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "createDispatch", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function get() {
|
|
15
|
-
return _eventDispatcher.createDispatch;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
var _eventDispatcher = require("@atlaskit/editor-common/event-dispatcher");
|
package/dist/cjs/messages.js
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
Object.defineProperty(exports, "dateMessages", {
|
|
8
|
-
enumerable: true,
|
|
9
|
-
get: function get() {
|
|
10
|
-
return _messages.dateMessages;
|
|
11
|
-
}
|
|
12
|
-
});
|
|
13
|
-
exports.default = void 0;
|
|
14
|
-
Object.defineProperty(exports, "linkMessages", {
|
|
15
|
-
enumerable: true,
|
|
16
|
-
get: function get() {
|
|
17
|
-
return _messages.linkMessages;
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
Object.defineProperty(exports, "linkToolbarMessages", {
|
|
21
|
-
enumerable: true,
|
|
22
|
-
get: function get() {
|
|
23
|
-
return _messages.linkToolbarMessages;
|
|
24
|
-
}
|
|
25
|
-
});
|
|
26
|
-
Object.defineProperty(exports, "statusMessages", {
|
|
27
|
-
enumerable: true,
|
|
28
|
-
get: function get() {
|
|
29
|
-
return _messages.statusMessages;
|
|
30
|
-
}
|
|
31
|
-
});
|
|
32
|
-
var _messages = _interopRequireWildcard(require("@atlaskit/editor-common/messages"));
|
|
33
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
34
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
35
|
-
// Common Translations will live here
|
|
36
|
-
var _default = exports.default = _messages.default;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "EditorPresetBuilder", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _preset.EditorPresetBuilder;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _preset = require("@atlaskit/editor-common/preset");
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
Object.defineProperty(exports, "ClickAreaBlock", {
|
|
8
|
-
enumerable: true,
|
|
9
|
-
get: function get() {
|
|
10
|
-
return _ClickAreaBlock.default;
|
|
11
|
-
}
|
|
12
|
-
});
|
|
13
|
-
Object.defineProperty(exports, "ClickAreaInline", {
|
|
14
|
-
enumerable: true,
|
|
15
|
-
get: function get() {
|
|
16
|
-
return _ClickAreaInline.default;
|
|
17
|
-
}
|
|
18
|
-
});
|
|
19
|
-
Object.defineProperty(exports, "Dropdown", {
|
|
20
|
-
enumerable: true,
|
|
21
|
-
get: function get() {
|
|
22
|
-
return _Dropdown.default;
|
|
23
|
-
}
|
|
24
|
-
});
|
|
25
|
-
var _Dropdown = _interopRequireDefault(require("./Dropdown"));
|
|
26
|
-
var _ClickAreaInline = _interopRequireDefault(require("./ClickAreaInline"));
|
|
27
|
-
var _ClickAreaBlock = _interopRequireDefault(require("./ClickAreaBlock"));
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "default", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _Comment.CommentEditorWithIntl;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _Comment = require("./Comment");
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "default", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _FullPage.FullPageEditor;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _FullPage = require("./FullPage");
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "Toolbar", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _Toolbar.Toolbar;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "ToolbarSize", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function get() {
|
|
15
|
-
return _types.ToolbarSize;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
Object.defineProperty(exports, "default", {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function get() {
|
|
21
|
-
return _ToolbarWithSizeDetector.ToolbarWithSizeDetector;
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
var _ToolbarWithSizeDetector = require("./ToolbarWithSizeDetector");
|
|
25
|
-
var _Toolbar = require("./Toolbar");
|
|
26
|
-
var _types = require("./types");
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "ToolbarSize", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _types.ToolbarSize;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "ToolbarWidths", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function get() {
|
|
15
|
-
return _types.ToolbarWidths;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
Object.defineProperty(exports, "ToolbarWidthsFullPage", {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function get() {
|
|
21
|
-
return _types.ToolbarWidthsFullPage;
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
Object.defineProperty(exports, "ToolbarWidthsFullPageNext", {
|
|
25
|
-
enumerable: true,
|
|
26
|
-
get: function get() {
|
|
27
|
-
return _types.ToolbarWidthsFullPageNext;
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
Object.defineProperty(exports, "ToolbarWidthsNext", {
|
|
31
|
-
enumerable: true,
|
|
32
|
-
get: function get() {
|
|
33
|
-
return _types.ToolbarWidthsNext;
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
var _types = require("@atlaskit/editor-common/types");
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export { default as ReactEditorView, ReactEditorView as BaseReactEditorView } from './ReactEditorView';
|
|
2
|
-
export { default as getUiComponent } from './get-ui-component';
|
|
3
|
-
export { default as createPluginsList, getDefaultPresetOptionsFromEditorProps } from './create-plugins-list';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { sortByOrder, sortByOrderWithTypeName } from '@atlaskit/editor-common/legacy-rank-plugins';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ElementBrowser } from '@atlaskit/editor-common/element-browser';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { EventDispatcher, createDispatch } from '@atlaskit/editor-common/event-dispatcher';
|
package/dist/es2019/messages.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// Common Translations will live here
|
|
2
|
-
import commonMessages, { dateMessages, linkMessages, linkToolbarMessages, statusMessages } from '@atlaskit/editor-common/messages';
|
|
3
|
-
export { linkMessages };
|
|
4
|
-
export { statusMessages };
|
|
5
|
-
export { dateMessages };
|
|
6
|
-
export { linkToolbarMessages };
|
|
7
|
-
export default commonMessages;
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CommentEditorWithIntl as default } from './Comment';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { FullPageEditor as default } from './FullPage';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ToolbarSize, ToolbarWidths, ToolbarWidthsNext, ToolbarWidthsFullPage, ToolbarWidthsFullPageNext } from '@atlaskit/editor-common/types';
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export { default as ReactEditorView, ReactEditorView as BaseReactEditorView } from './ReactEditorView';
|
|
2
|
-
export { default as getUiComponent } from './get-ui-component';
|
|
3
|
-
export { default as createPluginsList, getDefaultPresetOptionsFromEditorProps } from './create-plugins-list';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { sortByOrder, sortByOrderWithTypeName } from '@atlaskit/editor-common/legacy-rank-plugins';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ElementBrowser } from '@atlaskit/editor-common/element-browser';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { EventDispatcher, createDispatch } from '@atlaskit/editor-common/event-dispatcher';
|
package/dist/esm/messages.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
// Common Translations will live here
|
|
2
|
-
import commonMessages, { dateMessages, linkMessages, linkToolbarMessages, statusMessages } from '@atlaskit/editor-common/messages';
|
|
3
|
-
export { linkMessages };
|
|
4
|
-
export { statusMessages };
|
|
5
|
-
export { dateMessages };
|
|
6
|
-
export { linkToolbarMessages };
|
|
7
|
-
export default commonMessages;
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CommentEditorWithIntl as default } from './Comment';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { FullPageEditor as default } from './FullPage';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ToolbarSize, ToolbarWidths, ToolbarWidthsNext, ToolbarWidthsFullPage, ToolbarWidthsFullPageNext } from '@atlaskit/editor-common/types';
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export { default as ReactEditorView, ReactEditorView as BaseReactEditorView, } from './ReactEditorView';
|
|
2
|
-
export { default as getUiComponent } from './get-ui-component';
|
|
3
|
-
export { default as createPluginsList, getDefaultPresetOptionsFromEditorProps, } from './create-plugins-list';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { sortByOrder, sortByOrderWithTypeName } from '@atlaskit/editor-common/legacy-rank-plugins';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ElementBrowser } from '@atlaskit/editor-common/element-browser';
|
package/dist/types/messages.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import commonMessages, { dateMessages, linkMessages, linkToolbarMessages, statusMessages } from '@atlaskit/editor-common/messages';
|
|
2
|
-
export { linkMessages };
|
|
3
|
-
export { statusMessages };
|
|
4
|
-
export { dateMessages };
|
|
5
|
-
export { linkToolbarMessages };
|
|
6
|
-
export default commonMessages;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { ProsemirrorGetPosHandler, ReactNodeProps, ReactComponentProps, getPosHandler, getPosHandlerNode, ForwardRef, } from './types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { Browsers, Range, DisableSpellcheckByBrowser } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { EditorAppearance } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { NextEditorPlugin, PluginsOptions, EditorPlugin } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { EditorReactContext } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { EmptyStateHandler, EmptyStateHandlerParams } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { FeatureFlags, FeatureFlagKey } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { TTITracking, TransactionTracking, UITracking, CatchAllTracking, NodeViewTracking, BrowserFreezetracking, ProseMirrorRenderedTracking, InputTracking, ContentRetrievalTracking, OnChangeCallbackTracking, OnEditorReadyCallbackTracking, PasteTracking, RenderTracking, PerformanceTracking, } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { NodeConfig, MarkConfig, NodeViewConfig } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { PMPluginFactoryParams, PMPluginFactory, PMPlugin, } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { UiComponentFactoryParams, UIComponentFactory } from '@atlaskit/editor-common/types';
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export type { AddonActions, AddonCommonProps, AddonConfiguration, AddonProps, RenderOnClickHandler, } from './types';
|
|
2
|
-
export { default as Dropdown } from './Dropdown';
|
|
3
|
-
export { default as ClickAreaInline } from './ClickAreaInline';
|
|
4
|
-
export { default as ClickAreaBlock } from './ClickAreaBlock';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CommentEditorWithIntl as default } from './Comment';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { FullPageEditor as default } from './FullPage';
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export { default as ReactEditorView, ReactEditorView as BaseReactEditorView, } from './ReactEditorView';
|
|
2
|
-
export { default as getUiComponent } from './get-ui-component';
|
|
3
|
-
export { default as createPluginsList, getDefaultPresetOptionsFromEditorProps, } from './create-plugins-list';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { sortByOrder, sortByOrderWithTypeName } from '@atlaskit/editor-common/legacy-rank-plugins';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ElementBrowser } from '@atlaskit/editor-common/element-browser';
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import commonMessages, { dateMessages, linkMessages, linkToolbarMessages, statusMessages } from '@atlaskit/editor-common/messages';
|
|
2
|
-
export { linkMessages };
|
|
3
|
-
export { statusMessages };
|
|
4
|
-
export { dateMessages };
|
|
5
|
-
export { linkToolbarMessages };
|
|
6
|
-
export default commonMessages;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { ProsemirrorGetPosHandler, ReactNodeProps, ReactComponentProps, getPosHandler, getPosHandlerNode, ForwardRef, } from './types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { Browsers, Range, DisableSpellcheckByBrowser } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { EditorAppearance } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { NextEditorPlugin, PluginsOptions, EditorPlugin } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { EditorReactContext } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { EmptyStateHandler, EmptyStateHandlerParams } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { FeatureFlags, FeatureFlagKey } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { TTITracking, TransactionTracking, UITracking, CatchAllTracking, NodeViewTracking, BrowserFreezetracking, ProseMirrorRenderedTracking, InputTracking, ContentRetrievalTracking, OnChangeCallbackTracking, OnEditorReadyCallbackTracking, PasteTracking, RenderTracking, PerformanceTracking, } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { NodeConfig, MarkConfig, NodeViewConfig } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { PMPluginFactoryParams, PMPluginFactory, PMPlugin, } from '@atlaskit/editor-common/types';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { UiComponentFactoryParams, UIComponentFactory } from '@atlaskit/editor-common/types';
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export type { AddonActions, AddonCommonProps, AddonConfiguration, AddonProps, RenderOnClickHandler, } from './types';
|
|
2
|
-
export { default as Dropdown } from './Dropdown';
|
|
3
|
-
export { default as ClickAreaInline } from './ClickAreaInline';
|
|
4
|
-
export { default as ClickAreaBlock } from './ClickAreaBlock';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CommentEditorWithIntl as default } from './Comment';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { FullPageEditor as default } from './FullPage';
|