@atlaskit/editor-core 191.0.6 → 191.0.8
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 +16 -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 +2 -8
- package/dist/types-ts4.5/presets/default.d.ts +0 -8
- package/package.json +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 191.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#57215](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57215) [`73841c209537`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/73841c209537) - [ux] ECA11Y-107: Add basic keyboard navigation for resize sliders
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
## 191.0.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [#65171](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65171) [`018f70946f43`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/018f70946f43) - [ED-21737] moved tests as part of co-location effort, small clean up of FF references
|
|
15
|
+
- [#66364](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66364) [`212c782cb7a6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/212c782cb7a6) - No longer require `cardOptions` to be passed to the hyperlink plugin configuration, it exposes a new optional way to skip analytics via the prependToolbarButtons action.
|
|
16
|
+
- [#66398](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66398) [`dd2a685a2f06`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dd2a685a2f06) - Bugfix for clicking on a placeholder to focus within the editor when the side context panel is open
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 191.0.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -93,7 +93,6 @@ function getDefaultPresetOptionsFromEditorProps(props, createAnalyticsEvent) {
|
|
|
93
93
|
hyperlinkOptions: {
|
|
94
94
|
editorAppearance: props.appearance,
|
|
95
95
|
linkPicker: (_props$linking2 = props.linking) === null || _props$linking2 === void 0 ? void 0 : _props$linking2.linkPicker,
|
|
96
|
-
cardOptions: cardOptions,
|
|
97
96
|
platform: isMobile ? 'mobile' : 'web'
|
|
98
97
|
},
|
|
99
98
|
codeBlock: _objectSpread(_objectSpread({}, props.codeBlock), {}, {
|
|
@@ -81,7 +81,6 @@ export function getDefaultPresetOptionsFromEditorProps(props, createAnalyticsEve
|
|
|
81
81
|
hyperlinkOptions: {
|
|
82
82
|
editorAppearance: props.appearance,
|
|
83
83
|
linkPicker: (_props$linking2 = props.linking) === null || _props$linking2 === void 0 ? void 0 : _props$linking2.linkPicker,
|
|
84
|
-
cardOptions,
|
|
85
84
|
platform: isMobile ? 'mobile' : 'web'
|
|
86
85
|
},
|
|
87
86
|
codeBlock: {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "191.0.
|
|
2
|
+
export const version = "191.0.8";
|
|
@@ -84,7 +84,6 @@ export function getDefaultPresetOptionsFromEditorProps(props, createAnalyticsEve
|
|
|
84
84
|
hyperlinkOptions: {
|
|
85
85
|
editorAppearance: props.appearance,
|
|
86
86
|
linkPicker: (_props$linking2 = props.linking) === null || _props$linking2 === void 0 ? void 0 : _props$linking2.linkPicker,
|
|
87
|
-
cardOptions: cardOptions,
|
|
88
87
|
platform: isMobile ? 'mobile' : 'web'
|
|
89
88
|
},
|
|
90
89
|
codeBlock: _objectSpread(_objectSpread({}, props.codeBlock), {}, {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "191.0.
|
|
2
|
+
export var version = "191.0.8";
|
|
@@ -506,10 +506,7 @@ export declare function createDefaultPreset(options: EditorPresetProps & Default
|
|
|
506
506
|
sharedState: import("@atlaskit/editor-common/types").TextFormattingState | undefined;
|
|
507
507
|
}, TextFormattingOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"hyperlink", {
|
|
508
508
|
pluginConfiguration: HyperlinkPluginOptions | undefined;
|
|
509
|
-
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"
|
|
510
|
-
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
511
|
-
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
512
|
-
}, import("@atlaskit/editor-common/types").FeatureFlags>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
509
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
513
510
|
pluginConfiguration: import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions;
|
|
514
511
|
sharedState: {
|
|
515
512
|
createAnalyticsEvent: CreateUIAnalyticsEvent | null;
|
|
@@ -1005,10 +1002,7 @@ export declare function useDefaultPreset(props: EditorPresetProps & DefaultPrese
|
|
|
1005
1002
|
sharedState: import("@atlaskit/editor-common/types").TextFormattingState | undefined;
|
|
1006
1003
|
}, TextFormattingOptions | undefined>, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"hyperlink", {
|
|
1007
1004
|
pluginConfiguration: HyperlinkPluginOptions | undefined;
|
|
1008
|
-
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"
|
|
1009
|
-
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1010
|
-
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1011
|
-
}, import("@atlaskit/editor-common/types").FeatureFlags>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
1005
|
+
dependencies: [import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
1012
1006
|
pluginConfiguration: import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions;
|
|
1013
1007
|
sharedState: {
|
|
1014
1008
|
createAnalyticsEvent: CreateUIAnalyticsEvent | null;
|
|
@@ -624,10 +624,6 @@ export declare function createDefaultPreset(options: EditorPresetProps & Default
|
|
|
624
624
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"hyperlink", {
|
|
625
625
|
pluginConfiguration: HyperlinkPluginOptions | undefined;
|
|
626
626
|
dependencies: [
|
|
627
|
-
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
628
|
-
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
629
|
-
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
630
|
-
}, import("@atlaskit/editor-common/types").FeatureFlags>>,
|
|
631
627
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
632
628
|
pluginConfiguration: import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions;
|
|
633
629
|
sharedState: {
|
|
@@ -1247,10 +1243,6 @@ export declare function useDefaultPreset(props: EditorPresetProps & DefaultPrese
|
|
|
1247
1243
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"hyperlink", {
|
|
1248
1244
|
pluginConfiguration: HyperlinkPluginOptions | undefined;
|
|
1249
1245
|
dependencies: [
|
|
1250
|
-
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1251
|
-
pluginConfiguration: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1252
|
-
sharedState: import("@atlaskit/editor-common/types").FeatureFlags;
|
|
1253
|
-
}, import("@atlaskit/editor-common/types").FeatureFlags>>,
|
|
1254
1246
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"analytics", {
|
|
1255
1247
|
pluginConfiguration: import("@atlaskit/editor-plugin-analytics").AnalyticsPluginOptions;
|
|
1256
1248
|
sharedState: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "191.0.
|
|
3
|
+
"version": "191.0.8",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@atlaskit/avatar": "^21.4.0",
|
|
49
49
|
"@atlaskit/avatar-group": "^9.5.0",
|
|
50
50
|
"@atlaskit/button": "^17.2.0",
|
|
51
|
-
"@atlaskit/editor-common": "^76.
|
|
51
|
+
"@atlaskit/editor-common": "^76.38.0",
|
|
52
52
|
"@atlaskit/editor-json-transformer": "^8.10.0",
|
|
53
53
|
"@atlaskit/editor-plugin-alignment": "^0.1.0",
|
|
54
54
|
"@atlaskit/editor-plugin-analytics": "^0.4.0",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@atlaskit/editor-plugin-guideline": "^0.5.0",
|
|
88
88
|
"@atlaskit/editor-plugin-help-dialog": "^0.3.0",
|
|
89
89
|
"@atlaskit/editor-plugin-history": "^0.1.0",
|
|
90
|
-
"@atlaskit/editor-plugin-hyperlink": "^0.
|
|
90
|
+
"@atlaskit/editor-plugin-hyperlink": "^0.8.0",
|
|
91
91
|
"@atlaskit/editor-plugin-image-upload": "^0.2.0",
|
|
92
92
|
"@atlaskit/editor-plugin-indentation": "^0.2.0",
|
|
93
93
|
"@atlaskit/editor-plugin-insert-block": "^0.2.0",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"@atlaskit/editor-plugin-selection-toolbar": "^0.1.0",
|
|
111
111
|
"@atlaskit/editor-plugin-status": "^0.2.0",
|
|
112
112
|
"@atlaskit/editor-plugin-submit-editor": "^0.1.0",
|
|
113
|
-
"@atlaskit/editor-plugin-table": "^5.
|
|
113
|
+
"@atlaskit/editor-plugin-table": "^5.8.0",
|
|
114
114
|
"@atlaskit/editor-plugin-tasks-and-decisions": "^0.2.0",
|
|
115
115
|
"@atlaskit/editor-plugin-text-color": "^0.1.0",
|
|
116
116
|
"@atlaskit/editor-plugin-text-formatting": "^0.4.0",
|
|
@@ -265,7 +265,8 @@
|
|
|
265
265
|
"referenceOnly": "true"
|
|
266
266
|
},
|
|
267
267
|
"platform.linking-platform.datasource-jira_issues": {
|
|
268
|
-
"type": "boolean"
|
|
268
|
+
"type": "boolean",
|
|
269
|
+
"referenceOnly": "true"
|
|
269
270
|
},
|
|
270
271
|
"platform.linking-platform.datasource-assets_objects": {
|
|
271
272
|
"type": "boolean",
|
|
@@ -368,6 +369,10 @@
|
|
|
368
369
|
"type": "boolean",
|
|
369
370
|
"referenceOnly": "true"
|
|
370
371
|
},
|
|
372
|
+
"platform.editor.a11y-column-resizing_emcvz": {
|
|
373
|
+
"type": "boolean",
|
|
374
|
+
"referenceOnly": "true"
|
|
375
|
+
},
|
|
371
376
|
"platform.editor.allow-action-in-list": {
|
|
372
377
|
"type": "boolean",
|
|
373
378
|
"referenceOnly": "true"
|