@atlaskit/editor-core 191.2.0 → 191.3.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 +12 -0
- package/dist/cjs/create-editor/create-plugins-list.js +0 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/create-editor/create-plugins-list.js +0 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/create-editor/create-plugins-list.js +0 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/presets/default.d.ts +0 -2
- package/dist/types-ts4.5/presets/default.d.ts +0 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 191.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#67557](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67557) [`124d0c6d5286`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/124d0c6d5286) - Migrating block-type, text-color, and text-formatting to use useSharedPluginState rather than WithPluginState. Removing unused option on default preset. Adding formattingIsPresent prop to TextFormattingState.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#66463](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66463) [`9008e1bbfd75`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9008e1bbfd75) - Adding new editor-plugins facade package
|
|
12
|
+
- [#67051](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67051) [`08b5bd90a149`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/08b5bd90a149) - [ux] The table selector popup should gradually expand to 10 x 10 rows when hovered
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 191.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -89,7 +89,6 @@ function getDefaultPresetOptionsFromEditorProps(props, createAnalyticsEvent) {
|
|
|
89
89
|
selection: {
|
|
90
90
|
useLongPressSelection: false
|
|
91
91
|
},
|
|
92
|
-
cardOptions: cardOptions,
|
|
93
92
|
hyperlinkOptions: {
|
|
94
93
|
editorAppearance: props.appearance,
|
|
95
94
|
linkPicker: (_props$linking2 = props.linking) === null || _props$linking2 === void 0 ? void 0 : _props$linking2.linkPicker,
|
|
@@ -77,7 +77,6 @@ export function getDefaultPresetOptionsFromEditorProps(props, createAnalyticsEve
|
|
|
77
77
|
selection: {
|
|
78
78
|
useLongPressSelection: false
|
|
79
79
|
},
|
|
80
|
-
cardOptions,
|
|
81
80
|
hyperlinkOptions: {
|
|
82
81
|
editorAppearance: props.appearance,
|
|
83
82
|
linkPicker: (_props$linking2 = props.linking) === null || _props$linking2 === void 0 ? void 0 : _props$linking2.linkPicker,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "191.
|
|
2
|
+
export const version = "191.3.0";
|
|
@@ -80,7 +80,6 @@ export function getDefaultPresetOptionsFromEditorProps(props, createAnalyticsEve
|
|
|
80
80
|
selection: {
|
|
81
81
|
useLongPressSelection: false
|
|
82
82
|
},
|
|
83
|
-
cardOptions: cardOptions,
|
|
84
83
|
hyperlinkOptions: {
|
|
85
84
|
editorAppearance: props.appearance,
|
|
86
85
|
linkPicker: (_props$linking2 = props.linking) === null || _props$linking2 === void 0 ? void 0 : _props$linking2.linkPicker,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "191.
|
|
2
|
+
export var version = "191.3.0";
|
|
@@ -9,7 +9,6 @@ import type { AnnotationProviders } from '@atlaskit/editor-plugin-annotation';
|
|
|
9
9
|
import type { TextFormattingOptions, HyperlinkPluginOptions, QuickInsertPluginOptions } from '@atlaskit/editor-common/types';
|
|
10
10
|
import type { CodeBlockOptions } from '@atlaskit/editor-plugin-code-block';
|
|
11
11
|
import type { SelectionPluginOptions } from '@atlaskit/editor-common/selection';
|
|
12
|
-
import type { CardOptions } from '@atlaskit/editor-common/card';
|
|
13
12
|
import type { TypeAheadPluginOptions } from '@atlaskit/editor-plugin-type-ahead';
|
|
14
13
|
import { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
15
14
|
export type DefaultPresetPluginOptions = {
|
|
@@ -23,7 +22,6 @@ export type DefaultPresetPluginOptions = {
|
|
|
23
22
|
quickInsert?: QuickInsertPluginOptions;
|
|
24
23
|
codeBlock?: CodeBlockOptions;
|
|
25
24
|
selection?: SelectionPluginOptions;
|
|
26
|
-
cardOptions?: CardOptions;
|
|
27
25
|
hyperlinkOptions?: HyperlinkPluginOptions;
|
|
28
26
|
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
29
27
|
typeAhead?: TypeAheadPluginOptions;
|
|
@@ -9,7 +9,6 @@ import type { AnnotationProviders } from '@atlaskit/editor-plugin-annotation';
|
|
|
9
9
|
import type { TextFormattingOptions, HyperlinkPluginOptions, QuickInsertPluginOptions } from '@atlaskit/editor-common/types';
|
|
10
10
|
import type { CodeBlockOptions } from '@atlaskit/editor-plugin-code-block';
|
|
11
11
|
import type { SelectionPluginOptions } from '@atlaskit/editor-common/selection';
|
|
12
|
-
import type { CardOptions } from '@atlaskit/editor-common/card';
|
|
13
12
|
import type { TypeAheadPluginOptions } from '@atlaskit/editor-plugin-type-ahead';
|
|
14
13
|
import { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
15
14
|
export type DefaultPresetPluginOptions = {
|
|
@@ -23,7 +22,6 @@ export type DefaultPresetPluginOptions = {
|
|
|
23
22
|
quickInsert?: QuickInsertPluginOptions;
|
|
24
23
|
codeBlock?: CodeBlockOptions;
|
|
25
24
|
selection?: SelectionPluginOptions;
|
|
26
|
-
cardOptions?: CardOptions;
|
|
27
25
|
hyperlinkOptions?: HyperlinkPluginOptions;
|
|
28
26
|
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
29
27
|
typeAhead?: TypeAheadPluginOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "191.
|
|
3
|
+
"version": "191.3.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
47
47
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
48
48
|
"@atlaskit/button": "^17.2.0",
|
|
49
|
-
"@atlaskit/editor-common": "^76.
|
|
49
|
+
"@atlaskit/editor-common": "^76.40.0",
|
|
50
50
|
"@atlaskit/editor-json-transformer": "^8.10.0",
|
|
51
51
|
"@atlaskit/editor-plugin-alignment": "^0.1.0",
|
|
52
52
|
"@atlaskit/editor-plugin-analytics": "^0.4.0",
|