@atlaskit/editor-core 214.0.3 → 214.0.5

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
+ ## 214.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [`49d845e4c0ec3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/49d845e4c0ec3) -
8
+ ED-29167: fix grid hydration
9
+ - Updated dependencies
10
+
11
+ ## 214.0.4
12
+
13
+ ### Patch Changes
14
+
15
+ - [`76ffc91d514f3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/76ffc91d514f3) -
16
+ Changed packages over to using the generic AIFC FG rather then an experiment
17
+ - Updated dependencies
18
+
3
19
  ## 214.0.3
4
20
 
5
21
  ### Patch Changes
@@ -247,7 +247,7 @@ var CommentEditorWithIntl = exports.CommentEditorWithIntl = function CommentEdit
247
247
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
248
248
  ,
249
249
  className: (0, _classnames.default)('ak-editor-content-area', {
250
- 'less-margin': width < _editorSharedStyles.akEditorMobileBreakoutPoint && !(0, _experiments.editorExperiment)('platform_editor_ai_aifc', true)
250
+ 'less-margin': width < _editorSharedStyles.akEditorMobileBreakoutPoint
251
251
  }),
252
252
  featureFlags: featureFlags,
253
253
  viewMode: editorViewMode,
@@ -202,7 +202,7 @@ var createEditorContentStyle = exports.createEditorContentStyle = function creat
202
202
  css: [memoizedStyle, styles],
203
203
  "data-editor-scroll-container": "true",
204
204
  "data-testid": "editor-content-container"
205
- // eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex -- Adding tabIndex here because this is a scrollable container and it needs to be focusable so keyboard users can scroll it.
205
+ // eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex -- Adding tabIndex here because this is a scrollable container and it needs to be focusable so keyboard users can scroll it.
206
206
  ,
207
207
  tabIndex: 0,
208
208
  role: "region"
@@ -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 = "214.0.2";
8
+ var version = exports.version = "0.0.0-development";
@@ -236,7 +236,7 @@ export const CommentEditorWithIntl = props => {
236
236
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
237
237
  ,
238
238
  className: classnames('ak-editor-content-area', {
239
- 'less-margin': width < akEditorMobileBreakoutPoint && !editorExperiment('platform_editor_ai_aifc', true)
239
+ 'less-margin': width < akEditorMobileBreakoutPoint
240
240
  }),
241
241
  featureFlags: featureFlags,
242
242
  viewMode: editorViewMode,
@@ -562,7 +562,7 @@ export const createEditorContentStyle = styles => {
562
562
  css: [memoizedStyle, styles],
563
563
  "data-editor-scroll-container": "true",
564
564
  "data-testid": "editor-content-container"
565
- // eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex -- Adding tabIndex here because this is a scrollable container and it needs to be focusable so keyboard users can scroll it.
565
+ // eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex -- Adding tabIndex here because this is a scrollable container and it needs to be focusable so keyboard users can scroll it.
566
566
  ,
567
567
  tabIndex: 0,
568
568
  role: "region"
@@ -1,2 +1,2 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "214.0.2";
2
+ export const version = "0.0.0-development";
@@ -236,7 +236,7 @@ export var CommentEditorWithIntl = function CommentEditorWithIntl(props) {
236
236
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
237
237
  ,
238
238
  className: classnames('ak-editor-content-area', {
239
- 'less-margin': width < akEditorMobileBreakoutPoint && !editorExperiment('platform_editor_ai_aifc', true)
239
+ 'less-margin': width < akEditorMobileBreakoutPoint
240
240
  }),
241
241
  featureFlags: featureFlags,
242
242
  viewMode: editorViewMode,
@@ -196,7 +196,7 @@ export var createEditorContentStyle = function createEditorContentStyle(styles)
196
196
  css: [memoizedStyle, styles],
197
197
  "data-editor-scroll-container": "true",
198
198
  "data-testid": "editor-content-container"
199
- // eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex -- Adding tabIndex here because this is a scrollable container and it needs to be focusable so keyboard users can scroll it.
199
+ // eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex -- Adding tabIndex here because this is a scrollable container and it needs to be focusable so keyboard users can scroll it.
200
200
  ,
201
201
  tabIndex: 0,
202
202
  role: "region"
@@ -1,2 +1,2 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "214.0.2";
2
+ export var version = "0.0.0-development";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "214.0.3",
3
+ "version": "214.0.5",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -81,7 +81,7 @@
81
81
  "uuid": "^3.1.0"
82
82
  },
83
83
  "peerDependencies": {
84
- "@atlaskit/editor-common": "^110.2.0",
84
+ "@atlaskit/editor-common": "^110.4.0",
85
85
  "@atlaskit/link-provider": "^4.0.0",
86
86
  "@atlaskit/media-core": "^37.0.0",
87
87
  "react": "^18.2.0",
@@ -94,18 +94,18 @@
94
94
  "@atlaskit/adf-utils": "^19.24.0",
95
95
  "@atlaskit/analytics-listeners": "^9.1.0",
96
96
  "@atlaskit/collab-provider": "^14.0.0",
97
- "@atlaskit/editor-plugin-annotation": "^6.0.0",
97
+ "@atlaskit/editor-plugin-annotation": "^6.1.0",
98
98
  "@atlaskit/editor-plugin-card": "^11.0.0",
99
99
  "@atlaskit/editor-plugin-list": "^8.0.0",
100
100
  "@atlaskit/editor-plugin-paste": "^7.0.0",
101
101
  "@atlaskit/link-provider": "^4.0.0",
102
- "@atlaskit/logo": "^19.7.0",
102
+ "@atlaskit/logo": "^19.8.0",
103
103
  "@atlaskit/media-core": "^37.0.0",
104
104
  "@atlaskit/media-integration-test-helpers": "workspace:^",
105
105
  "@atlaskit/media-test-helpers": "^39.0.0",
106
106
  "@atlaskit/modal-dialog": "^14.4.0",
107
107
  "@atlaskit/primitives": "^14.15.0",
108
- "@atlaskit/renderer": "^124.0.0",
108
+ "@atlaskit/renderer": "^124.1.0",
109
109
  "@atlaskit/section-message": "^8.7.0",
110
110
  "@atlaskit/smart-card": "^42.3.0",
111
111
  "@atlaskit/synchrony-test-helpers": "workspace:^",