@atlaskit/editor-core 219.1.7 → 219.1.9

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,21 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 219.1.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 219.1.8
10
+
11
+ ### Patch Changes
12
+
13
+ - [`bc415f8eb86a9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bc415f8eb86a9) -
14
+ Add OR check with create_work_item_modernization_exp experiment to
15
+ platform_editor_fix_scrolling_popup_position, platform_editor_table_resize_chromeless, and
16
+ platform_editor_chromeless_akeditor_class usages
17
+ - Updated dependencies
18
+
3
19
  ## 219.1.7
4
20
 
5
21
  ### Patch Changes
@@ -192,7 +192,7 @@ function ChromelessEditorContainer(_ref3) {
192
192
  css: [chromelessEditorStylesNew, scrollbarStylesNew]
193
193
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
194
194
  ,
195
- className: (0, _platformFeatureFlags.fg)('platform_editor_chromeless_akeditor_class') ? 'akEditor' : undefined,
195
+ className: (0, _platformFeatureFlags.fg)('platform_editor_chromeless_akeditor_class') || (0, _expValEquals.expValEquals)('create_work_item_modernization_exp', 'isEnabled', true) ? 'akEditor' : undefined,
196
196
  style: {
197
197
  maxHeight: maxHeight ? "".concat(maxHeight, "px") : undefined,
198
198
  minHeight: "".concat(minHeight, "px")
@@ -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 = "0.0.0-development";
8
+ var version = exports.version = "219.1.8";
@@ -169,7 +169,7 @@ export function ChromelessEditorContainer({
169
169
  css: [chromelessEditorStylesNew, scrollbarStylesNew]
170
170
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
171
171
  ,
172
- className: fg('platform_editor_chromeless_akeditor_class') ? 'akEditor' : undefined,
172
+ className: fg('platform_editor_chromeless_akeditor_class') || expValEquals('create_work_item_modernization_exp', 'isEnabled', true) ? 'akEditor' : undefined,
173
173
  style: {
174
174
  maxHeight: maxHeight ? `${maxHeight}px` : undefined,
175
175
  minHeight: `${minHeight}px`
@@ -1,2 +1,2 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "0.0.0-development";
2
+ export const version = "219.1.8";
@@ -186,7 +186,7 @@ export function ChromelessEditorContainer(_ref3) {
186
186
  css: [chromelessEditorStylesNew, scrollbarStylesNew]
187
187
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
188
188
  ,
189
- className: fg('platform_editor_chromeless_akeditor_class') ? 'akEditor' : undefined,
189
+ className: fg('platform_editor_chromeless_akeditor_class') || expValEquals('create_work_item_modernization_exp', 'isEnabled', true) ? 'akEditor' : undefined,
190
190
  style: {
191
191
  maxHeight: maxHeight ? "".concat(maxHeight, "px") : undefined,
192
192
  minHeight: "".concat(minHeight, "px")
@@ -1,2 +1,2 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "0.0.0-development";
2
+ export var version = "219.1.8";
@@ -3,7 +3,6 @@
3
3
  * @jsx jsx
4
4
  */
5
5
  import React from 'react';
6
- import { jsx } from '@emotion/react';
7
6
  import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
8
7
  import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
9
8
  import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
@@ -27,5 +26,5 @@ export interface Props {
27
26
  providerFactory: ProviderFactory;
28
27
  wrapperElement: HTMLElement | null;
29
28
  }
30
- declare const PluginSlotComponent: React.MemoExoticComponent<({ items, editorView, editorActions, eventDispatcher, providerFactory, appearance, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, containerElement, disabled, dispatchAnalyticsEvent, wrapperElement, pluginHooks, }: Props) => jsx.JSX.Element | null>;
29
+ declare const PluginSlotComponent: React.MemoExoticComponent<({ items, editorView, editorActions, eventDispatcher, providerFactory, appearance, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, containerElement, disabled, dispatchAnalyticsEvent, wrapperElement, pluginHooks, }: Props) => JSX.Element | null>;
31
30
  export default PluginSlotComponent;
@@ -3,7 +3,6 @@
3
3
  * @jsx jsx
4
4
  */
5
5
  import React from 'react';
6
- import { jsx } from '@emotion/react';
7
6
  import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
8
7
  import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
9
8
  import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
@@ -27,5 +26,5 @@ export interface Props {
27
26
  providerFactory: ProviderFactory;
28
27
  wrapperElement: HTMLElement | null;
29
28
  }
30
- declare const PluginSlotComponent: React.MemoExoticComponent<({ items, editorView, editorActions, eventDispatcher, providerFactory, appearance, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, containerElement, disabled, dispatchAnalyticsEvent, wrapperElement, pluginHooks, }: Props) => jsx.JSX.Element | null>;
29
+ declare const PluginSlotComponent: React.MemoExoticComponent<({ items, editorView, editorActions, eventDispatcher, providerFactory, appearance, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, containerElement, disabled, dispatchAnalyticsEvent, wrapperElement, pluginHooks, }: Props) => JSX.Element | null>;
31
30
  export default PluginSlotComponent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "219.1.7",
3
+ "version": "219.1.9",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -68,13 +68,13 @@
68
68
  "@atlaskit/feature-gate-js-client": "^5.5.0",
69
69
  "@atlaskit/icon": "^34.3.0",
70
70
  "@atlaskit/link": "^3.4.0",
71
- "@atlaskit/media-card": "^80.2.0",
71
+ "@atlaskit/media-card": "^80.3.0",
72
72
  "@atlaskit/mention": "^25.0.0",
73
73
  "@atlaskit/platform-feature-flags": "^1.1.0",
74
74
  "@atlaskit/platform-feature-flags-react": "^0.4.0",
75
75
  "@atlaskit/react-ufo": "^5.16.0",
76
76
  "@atlaskit/task-decision": "^20.0.0",
77
- "@atlaskit/tmp-editor-statsig": "^70.2.0",
77
+ "@atlaskit/tmp-editor-statsig": "^71.0.0",
78
78
  "@atlaskit/tokens": "^13.0.0",
79
79
  "@atlaskit/tooltip": "^21.2.0",
80
80
  "@atlaskit/width-detector": "^5.1.0",
@@ -91,7 +91,7 @@
91
91
  "uuid": "^3.1.0"
92
92
  },
93
93
  "peerDependencies": {
94
- "@atlaskit/editor-common": "^114.11.0",
94
+ "@atlaskit/editor-common": "^114.12.0",
95
95
  "@atlaskit/link-provider": "^4.3.0",
96
96
  "@atlaskit/media-core": "^37.0.0",
97
97
  "react": "^18.2.0",
@@ -106,7 +106,7 @@
106
106
  "@atlaskit/analytics-listeners": "^10.0.0",
107
107
  "@atlaskit/collab-provider": "^18.0.0",
108
108
  "@atlaskit/editor-plugin-annotation": "^10.1.0",
109
- "@atlaskit/editor-plugin-card": "^16.3.0",
109
+ "@atlaskit/editor-plugin-card": "^16.4.0",
110
110
  "@atlaskit/editor-plugin-list": "^12.0.0",
111
111
  "@atlaskit/editor-plugin-paste": "^11.0.0",
112
112
  "@atlaskit/editor-test-helpers": "workspace:^",
@@ -128,7 +128,7 @@
128
128
  "@atlassian/editor-rovo-bridge": "^8.4.0",
129
129
  "@atlassian/feature-flags-test-utils": "^1.0.0",
130
130
  "@atlassian/react-compiler-gating": "workspace:^",
131
- "@atlassian/search-client": "^1.4.0",
131
+ "@atlassian/search-client": "^1.5.0",
132
132
  "@atlassian/search-provider": "^11.0.0",
133
133
  "@emotion/jest": "^11.8.0",
134
134
  "@testing-library/react": "^16.3.0",