@atlaskit/editor-core 193.12.8 → 193.13.4
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 +21 -0
- package/dist/cjs/ui/Appearance/Comment/Comment.js +1 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/Appearance/Comment/Comment.js +2 -2
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/Appearance/Comment/Comment.js +2 -2
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +11 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 193.13.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#96237](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96237)
|
|
8
|
+
[`0401e7b5a88e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0401e7b5a88e) -
|
|
9
|
+
[ED-23102] Bump ADF schema to version 35.12.2
|
|
10
|
+
|
|
11
|
+
## 193.13.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#94675](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94675)
|
|
16
|
+
[`5d9e1dccacca`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d9e1dccacca) -
|
|
17
|
+
[ux] Update input border color token to meet 3:1 color contrast ratioLight theme:
|
|
18
|
+
color.border.input: #091E4224 → #8590A2Dark mode: color.border.input: #A6C5E229 → #738496
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
|
|
3
24
|
## 193.12.8
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -51,7 +51,7 @@ var commentEditorStyles = (0, _react2.css)({
|
|
|
51
51
|
minWidth: '272px',
|
|
52
52
|
height: 'auto',
|
|
53
53
|
backgroundColor: "var(--ds-background-input, white)",
|
|
54
|
-
border: "1px solid ".concat(
|
|
54
|
+
border: "1px solid ".concat("var(--ds-border-input, ".concat(_colors.N100, ")")),
|
|
55
55
|
boxSizing: 'border-box',
|
|
56
56
|
borderRadius: "".concat((0, _constants.borderRadius)(), "px"),
|
|
57
57
|
maxWidth: 'inherit',
|
|
@@ -13,7 +13,7 @@ import { ToolbarArrowKeyNavigationProvider } from '@atlaskit/editor-common/ui-me
|
|
|
13
13
|
import { tableCommentEditorStyles } from '@atlaskit/editor-plugins/table/ui/common-styles';
|
|
14
14
|
import { akEditorMobileBreakoutPoint } from '@atlaskit/editor-shared-styles';
|
|
15
15
|
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
16
|
-
import { N100
|
|
16
|
+
import { N100 } from '@atlaskit/theme/colors';
|
|
17
17
|
import { borderRadius } from '@atlaskit/theme/constants';
|
|
18
18
|
import messages from '../../../messages';
|
|
19
19
|
import { usePresetContext } from '../../../presets/context';
|
|
@@ -33,7 +33,7 @@ const commentEditorStyles = css({
|
|
|
33
33
|
minWidth: '272px',
|
|
34
34
|
height: 'auto',
|
|
35
35
|
backgroundColor: "var(--ds-background-input, white)",
|
|
36
|
-
border: `1px solid ${
|
|
36
|
+
border: `1px solid ${`var(--ds-border-input, ${N100})`}`,
|
|
37
37
|
boxSizing: 'border-box',
|
|
38
38
|
borderRadius: `${borderRadius()}px`,
|
|
39
39
|
maxWidth: 'inherit',
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "193.
|
|
2
|
+
export const version = "193.13.4";
|
|
@@ -22,7 +22,7 @@ import { ToolbarArrowKeyNavigationProvider } from '@atlaskit/editor-common/ui-me
|
|
|
22
22
|
import { tableCommentEditorStyles } from '@atlaskit/editor-plugins/table/ui/common-styles';
|
|
23
23
|
import { akEditorMobileBreakoutPoint } from '@atlaskit/editor-shared-styles';
|
|
24
24
|
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
25
|
-
import { N100
|
|
25
|
+
import { N100 } from '@atlaskit/theme/colors';
|
|
26
26
|
import { borderRadius } from '@atlaskit/theme/constants';
|
|
27
27
|
import messages from '../../../messages';
|
|
28
28
|
import { usePresetContext } from '../../../presets/context';
|
|
@@ -42,7 +42,7 @@ var commentEditorStyles = css({
|
|
|
42
42
|
minWidth: '272px',
|
|
43
43
|
height: 'auto',
|
|
44
44
|
backgroundColor: "var(--ds-background-input, white)",
|
|
45
|
-
border: "1px solid ".concat(
|
|
45
|
+
border: "1px solid ".concat("var(--ds-border-input, ".concat(N100, ")")),
|
|
46
46
|
boxSizing: 'border-box',
|
|
47
47
|
borderRadius: "".concat(borderRadius(), "px"),
|
|
48
48
|
maxWidth: 'inherit',
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "193.
|
|
2
|
+
export var version = "193.13.4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "193.
|
|
3
|
+
"version": "193.13.4",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@atlaskit/activity-provider": "^2.4.0",
|
|
43
|
-
"@atlaskit/adf-schema": "^35.12.
|
|
43
|
+
"@atlaskit/adf-schema": "^35.12.2",
|
|
44
44
|
"@atlaskit/analytics-namespaced-context": "^6.9.0",
|
|
45
45
|
"@atlaskit/analytics-next": "^9.3.0",
|
|
46
46
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"@atlaskit/mention": "^23.0.0",
|
|
57
57
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
58
58
|
"@atlaskit/spinner": "^16.1.0",
|
|
59
|
-
"@atlaskit/task-decision": "^17.
|
|
59
|
+
"@atlaskit/task-decision": "^17.10.0",
|
|
60
60
|
"@atlaskit/theme": "^12.7.0",
|
|
61
|
-
"@atlaskit/tokens": "^1.
|
|
61
|
+
"@atlaskit/tokens": "^1.45.0",
|
|
62
62
|
"@atlaskit/tooltip": "^18.3.0",
|
|
63
63
|
"@atlaskit/ufo": "^0.2.0",
|
|
64
64
|
"@atlaskit/width-detector": "^4.1.0",
|
|
@@ -86,10 +86,10 @@
|
|
|
86
86
|
"@af/visual-regression": "*",
|
|
87
87
|
"@atlaskit/adf-utils": "^19.0.0",
|
|
88
88
|
"@atlaskit/analytics-listeners": "^8.9.1",
|
|
89
|
-
"@atlaskit/checkbox": "^13.
|
|
90
|
-
"@atlaskit/collab-provider": "9.28.
|
|
91
|
-
"@atlaskit/dropdown-menu": "^12.
|
|
92
|
-
"@atlaskit/editor-plugin-annotation": "1.6.
|
|
89
|
+
"@atlaskit/checkbox": "^13.3.0",
|
|
90
|
+
"@atlaskit/collab-provider": "9.28.2",
|
|
91
|
+
"@atlaskit/dropdown-menu": "^12.10.0",
|
|
92
|
+
"@atlaskit/editor-plugin-annotation": "1.6.3",
|
|
93
93
|
"@atlaskit/editor-plugin-card": "^1.9.0",
|
|
94
94
|
"@atlaskit/editor-plugin-editor-viewmode": "^1.1.0",
|
|
95
95
|
"@atlaskit/editor-plugin-list": "^3.2.0",
|
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
"@atlaskit/media-test-helpers": "^33.0.27",
|
|
105
105
|
"@atlaskit/modal-dialog": "^12.13.0",
|
|
106
106
|
"@atlaskit/primitives": "^5.7.0",
|
|
107
|
-
"@atlaskit/renderer": "^109.
|
|
108
|
-
"@atlaskit/select": "^17.
|
|
107
|
+
"@atlaskit/renderer": "^109.23.0",
|
|
108
|
+
"@atlaskit/select": "^17.8.0",
|
|
109
109
|
"@atlaskit/smart-card": "^26.59.0",
|
|
110
110
|
"@atlaskit/synchrony-test-helpers": "^2.4.0",
|
|
111
111
|
"@atlaskit/util-data-test": "^17.9.0",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"@atlassian/adf-schema-json": "^1.0.7",
|
|
114
114
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
115
115
|
"@atlassian/link-picker-plugins": "^24.0.0",
|
|
116
|
-
"@atlassian/search-provider": "2.4.
|
|
116
|
+
"@atlassian/search-provider": "2.4.61",
|
|
117
117
|
"@atlassian/ufo": "^0.2.0",
|
|
118
118
|
"@emotion/jest": "^11.8.0",
|
|
119
119
|
"@storybook/addon-knobs": "^5.3.18",
|
|
@@ -163,10 +163,6 @@
|
|
|
163
163
|
"type": "boolean",
|
|
164
164
|
"referenceOnly": "true"
|
|
165
165
|
},
|
|
166
|
-
"platform.corex.password-protected-pdf_ht8re": {
|
|
167
|
-
"type": "boolean",
|
|
168
|
-
"referenceOnly": "true"
|
|
169
|
-
},
|
|
170
166
|
"platform.editor.live-pages-expand-divergence": {
|
|
171
167
|
"type": "boolean",
|
|
172
168
|
"referenceOnly": "true"
|
|
@@ -210,17 +206,10 @@
|
|
|
210
206
|
"type": "boolean",
|
|
211
207
|
"referenceOnly": "true"
|
|
212
208
|
},
|
|
213
|
-
"platform.design-system-team.border-checkbox_nyoiu": {
|
|
214
|
-
"type": "boolean"
|
|
215
|
-
},
|
|
216
209
|
"platform.design-system-team.editor-new-button_jjjdo": {
|
|
217
210
|
"type": "boolean",
|
|
218
211
|
"referenceOnly": "true"
|
|
219
212
|
},
|
|
220
|
-
"platform.design-system-team.update-border-radio-checkbox_7askv": {
|
|
221
|
-
"type": "boolean",
|
|
222
|
-
"referenceOnly": "true"
|
|
223
|
-
},
|
|
224
213
|
"platform.media-experience.cardv2_7zann": {
|
|
225
214
|
"type": "boolean",
|
|
226
215
|
"referenceOnly": "true"
|