@atlaskit/editor-core 191.2.0 → 191.3.1

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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 191.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 191.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#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.
14
+
15
+ ### Patch Changes
16
+
17
+ - [#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
18
+ - [#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
19
+ - Updated dependencies
20
+
3
21
  ## 191.2.0
4
22
 
5
23
  ### 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,
@@ -5,4 +5,4 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = exports.name = void 0;
7
7
  var name = exports.name = "@atlaskit/editor-core";
8
- var version = exports.version = "191.2.0";
8
+ var version = exports.version = "191.3.1";
@@ -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.0";
2
+ export const version = "191.3.1";
@@ -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.0";
2
+ export var version = "191.3.1";
@@ -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.2.0",
3
+ "version": "191.3.1",
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.39.0",
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",
@@ -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.8.0",
113
+ "@atlaskit/editor-plugin-table": "^6.0.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",
@@ -161,7 +161,7 @@
161
161
  "@atlaskit/avatar": "^21.4.0",
162
162
  "@atlaskit/checkbox": "^13.0.0",
163
163
  "@atlaskit/code": "^15.1.0",
164
- "@atlaskit/collab-provider": "9.21.3",
164
+ "@atlaskit/collab-provider": "9.22.0",
165
165
  "@atlaskit/dropdown-menu": "^12.1.0",
166
166
  "@atlaskit/editor-extension-dropbox": "^0.4.0",
167
167
  "@atlaskit/editor-palette": "1.5.2",