@atlaskit/editor-core 219.0.1 → 219.0.3
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,20 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 219.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9e45c7ac76c9a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9e45c7ac76c9a) -
|
|
8
|
+
Enrol editor core packages into the React Compiler with platform gating via
|
|
9
|
+
isReactCompilerActivePlatform
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 219.0.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 219.0.1
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -534,9 +534,9 @@ var EditorContentContainer = /*#__PURE__*/_react.default.forwardRef(function (pr
|
|
|
534
534
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
535
535
|
_tableStyles.tableEmptyRowStyles,
|
|
536
536
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
537
|
-
(0, _expValEquals.expValEquals)('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true)
|
|
537
|
+
(0, _expValEquals.expValEquals)('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true) &&
|
|
538
538
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
539
|
-
|
|
539
|
+
_tableStyles.tableContentModeStyles,
|
|
540
540
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
541
541
|
_link.hyperLinkFloatingToolbarStyles,
|
|
542
542
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
@@ -530,9 +530,9 @@ const EditorContentContainer = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
|
530
530
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
531
531
|
tableEmptyRowStyles,
|
|
532
532
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
533
|
-
expValEquals('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true)
|
|
533
|
+
expValEquals('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true) &&
|
|
534
534
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
535
|
-
|
|
535
|
+
tableContentModeStyles,
|
|
536
536
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
537
537
|
hyperLinkFloatingToolbarStyles,
|
|
538
538
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
@@ -526,9 +526,9 @@ var EditorContentContainer = /*#__PURE__*/React.forwardRef(function (props, ref)
|
|
|
526
526
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
527
527
|
tableEmptyRowStyles,
|
|
528
528
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
529
|
-
expValEquals('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true)
|
|
529
|
+
expValEquals('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true) &&
|
|
530
530
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
531
|
-
|
|
531
|
+
tableContentModeStyles,
|
|
532
532
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
533
533
|
hyperLinkFloatingToolbarStyles,
|
|
534
534
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "219.0.
|
|
3
|
+
"version": "219.0.3",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,6 +25,13 @@
|
|
|
25
25
|
],
|
|
26
26
|
"atlaskit:src": "src/index.ts",
|
|
27
27
|
"atlassian": {
|
|
28
|
+
"react-compiler": {
|
|
29
|
+
"enabled": true,
|
|
30
|
+
"gating": {
|
|
31
|
+
"source": "@atlassian/react-compiler-gating",
|
|
32
|
+
"importSpecifierName": "isReactCompilerActivePlatform"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
28
35
|
"team": "Editor",
|
|
29
36
|
"singleton": true,
|
|
30
37
|
"website": {
|
|
@@ -57,17 +64,17 @@
|
|
|
57
64
|
"@atlaskit/editor-ssr-renderer": "^5.0.0",
|
|
58
65
|
"@atlaskit/editor-toolbar": "^1.0.0",
|
|
59
66
|
"@atlaskit/editor-toolbar-model": "^0.4.0",
|
|
60
|
-
"@atlaskit/emoji": "^70.
|
|
67
|
+
"@atlaskit/emoji": "^70.1.0",
|
|
61
68
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
62
69
|
"@atlaskit/icon": "^34.2.0",
|
|
63
70
|
"@atlaskit/link": "^3.4.0",
|
|
64
|
-
"@atlaskit/media-card": "^80.
|
|
71
|
+
"@atlaskit/media-card": "^80.1.0",
|
|
65
72
|
"@atlaskit/mention": "^25.0.0",
|
|
66
73
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
67
74
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
68
|
-
"@atlaskit/react-ufo": "^5.
|
|
75
|
+
"@atlaskit/react-ufo": "^5.15.0",
|
|
69
76
|
"@atlaskit/task-decision": "^20.0.0",
|
|
70
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
77
|
+
"@atlaskit/tmp-editor-statsig": "^63.0.0",
|
|
71
78
|
"@atlaskit/tokens": "^13.0.0",
|
|
72
79
|
"@atlaskit/tooltip": "^21.1.0",
|
|
73
80
|
"@atlaskit/width-detector": "^5.1.0",
|
|
@@ -84,7 +91,7 @@
|
|
|
84
91
|
"uuid": "^3.1.0"
|
|
85
92
|
},
|
|
86
93
|
"peerDependencies": {
|
|
87
|
-
"@atlaskit/editor-common": "^114.
|
|
94
|
+
"@atlaskit/editor-common": "^114.3.0",
|
|
88
95
|
"@atlaskit/link-provider": "^4.3.0",
|
|
89
96
|
"@atlaskit/media-core": "^37.0.0",
|
|
90
97
|
"react": "^18.2.0",
|
|
@@ -110,7 +117,7 @@
|
|
|
110
117
|
"@atlaskit/media-integration-test-helpers": "workspace:^",
|
|
111
118
|
"@atlaskit/media-test-helpers": "^41.0.0",
|
|
112
119
|
"@atlaskit/modal-dialog": "^14.15.0",
|
|
113
|
-
"@atlaskit/renderer": "^130.
|
|
120
|
+
"@atlaskit/renderer": "^130.2.0",
|
|
114
121
|
"@atlaskit/section-message": "^8.12.0",
|
|
115
122
|
"@atlaskit/synchrony-test-helpers": "workspace:^",
|
|
116
123
|
"@atlaskit/toggle": "^15.6.0",
|
|
@@ -119,6 +126,7 @@
|
|
|
119
126
|
"@atlassian/adf-schema-json": "^1.33.0",
|
|
120
127
|
"@atlassian/editor-rovo-bridge": "^8.1.0",
|
|
121
128
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
129
|
+
"@atlassian/react-compiler-gating": "workspace:^",
|
|
122
130
|
"@atlassian/search-client": "^1.1.0",
|
|
123
131
|
"@atlassian/search-provider": "^11.0.0",
|
|
124
132
|
"@emotion/jest": "^11.8.0",
|