@atlaskit/editor-core 194.3.3 → 194.3.6

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,26 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 194.3.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#121483](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121483)
8
+ [`b73c87fcb17dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b73c87fcb17dd) -
9
+ [ED-22946] Cleanup feature flag extractListFromParagraphV2
10
+ - Updated dependencies
11
+
12
+ ## 194.3.4
13
+
14
+ ### Patch Changes
15
+
16
+ - [#120904](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/120904)
17
+ [`93e8faa4a5d09`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/93e8faa4a5d09) -
18
+ [ux] Enables table resizing in comments editor under a new feature gate.
19
+ - [#120665](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/120665)
20
+ [`a4ee6908e0e2c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a4ee6908e0e2c) -
21
+ [ED-23943] Milestone: Initial LazyNodeViewLoading implementation for Table
22
+ - Updated dependencies
23
+
3
24
  ## 194.3.3
4
25
 
5
26
  ### Patch Changes
@@ -129,7 +129,7 @@ function createUniversalPreset(appearance, props, featureFlags, prevAppearance,
129
129
  profilecardProvider: (_props$mention3 = props.mention) === null || _props$mention3 === void 0 ? void 0 : _props$mention3.profilecardProvider
130
130
  }], Boolean(props.mentionProvider)).maybeAdd(_emoji.emojiPlugin, Boolean(props.emojiProvider)).maybeAdd([_table.tablesPlugin, {
131
131
  tableOptions: !props.allowTables || typeof props.allowTables === 'boolean' ? {} : props.allowTables,
132
- tableResizingEnabled: isFullPage,
132
+ tableResizingEnabled: isFullPage || isComment && (0, _platformFeatureFlags.fg)('platform_editor_table_support_in_comment'),
133
133
  dragAndDropEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tableDragAndDrop) && isFullPage,
134
134
  isTableScalingEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tablePreserveWidth) && isFullPage,
135
135
  allowContextualMenu: !isMobile,
@@ -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 = "194.3.3";
8
+ var version = exports.version = "194.3.6";
@@ -118,7 +118,7 @@ export default function createUniversalPreset(appearance, props, featureFlags, p
118
118
  profilecardProvider: (_props$mention3 = props.mention) === null || _props$mention3 === void 0 ? void 0 : _props$mention3.profilecardProvider
119
119
  }], Boolean(props.mentionProvider)).maybeAdd(emojiPlugin, Boolean(props.emojiProvider)).maybeAdd([tablesPlugin, {
120
120
  tableOptions: !props.allowTables || typeof props.allowTables === 'boolean' ? {} : props.allowTables,
121
- tableResizingEnabled: isFullPage,
121
+ tableResizingEnabled: isFullPage || isComment && fg('platform_editor_table_support_in_comment'),
122
122
  dragAndDropEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tableDragAndDrop) && isFullPage,
123
123
  isTableScalingEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tablePreserveWidth) && isFullPage,
124
124
  allowContextualMenu: !isMobile,
@@ -1,2 +1,2 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "194.3.3";
2
+ export const version = "194.3.6";
@@ -121,7 +121,7 @@ export default function createUniversalPreset(appearance, props, featureFlags, p
121
121
  profilecardProvider: (_props$mention3 = props.mention) === null || _props$mention3 === void 0 ? void 0 : _props$mention3.profilecardProvider
122
122
  }], Boolean(props.mentionProvider)).maybeAdd(emojiPlugin, Boolean(props.emojiProvider)).maybeAdd([tablesPlugin, {
123
123
  tableOptions: !props.allowTables || typeof props.allowTables === 'boolean' ? {} : props.allowTables,
124
- tableResizingEnabled: isFullPage,
124
+ tableResizingEnabled: isFullPage || isComment && fg('platform_editor_table_support_in_comment'),
125
125
  dragAndDropEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tableDragAndDrop) && isFullPage,
126
126
  isTableScalingEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tablePreserveWidth) && isFullPage,
127
127
  allowContextualMenu: !isMobile,
@@ -1,2 +1,2 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "194.3.3";
2
+ export var version = "194.3.6";