@atlaskit/editor-core 217.1.2 → 217.2.0

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,23 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 217.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`39cac666e4f3f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/39cac666e4f3f) -
8
+ [FFCLEANUP-89078] clean up feature gate platform_editor_a11y_find_replace_focus_ring with the
9
+ accessible find & replace styles
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 217.1.3
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 217.1.2
4
22
 
5
23
  ### Patch Changes
@@ -300,12 +300,8 @@ var EditorContentContainer = /*#__PURE__*/_react.default.forwardRef(function (pr
300
300
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
301
301
  _expandStyles.expandStylesMixin_fg_platform_visual_refresh_icons, (0, _expValEquals.expValEquals)('platform_editor_find_and_replace_improvements', 'isEnabled', true) ?
302
302
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
303
- (0, _platformFeatureFlags.fg)('platform_editor_a11y_find_replace_focus_ring') ?
304
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
305
303
  _findReplaceStyles.findReplaceStylesNewWithA11Y :
306
304
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
307
- _findReplaceStyles.findReplaceStylesNew :
308
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
309
305
  _findReplaceStyles.findReplaceStyles, (0, _expValEquals.expValEquals)('platform_editor_find_and_replace_improvements', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_find_codeblock_color_contrast_fix') &&
310
306
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
311
307
  _findReplaceStyles.findReplaceStylesNewWithCodeblockColorContrastFix, !(0, _expValEquals.expValEquals)('platform_editor_find_and_replace_improvements', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_find_codeblock_color_contrast_fix') &&
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
- exports.findReplaceStylesWithCodeblockColorContrastFix = exports.findReplaceStylesNewWithCodeblockColorContrastFix = exports.findReplaceStylesNewWithA11Y = exports.findReplaceStylesNew = exports.findReplaceStyles = void 0;
7
+ exports.findReplaceStylesWithCodeblockColorContrastFix = exports.findReplaceStylesNewWithCodeblockColorContrastFix = exports.findReplaceStylesNewWithA11Y = exports.findReplaceStyles = void 0;
8
8
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
9
9
  var _react = require("@emotion/react");
10
10
  var _styles = require("@atlaskit/editor-common/styles");
@@ -45,179 +45,7 @@ var findReplaceStylesNewWithCodeblockColorContrastFix = exports.findReplaceStyle
45
45
  }
46
46
  }));
47
47
 
48
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
49
- var findReplaceStylesNew = exports.findReplaceStylesNew = (0, _react.css)({
50
- /** Text match styles */
51
-
52
- /** Light mode */
53
-
54
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
55
- '.search-match-text': {
56
- borderRadius: "var(--ds-space-050, 4px)",
57
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", "\n\t\t"),
58
- // we need to use !important here as we need to override inline selection styles
59
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
60
- backgroundColor: "var(--ds-background-accent-magenta-subtler, #FDD0EC)".concat(" !important"),
61
- color: "var(--ds-text, #292A2E)"
62
- },
63
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
64
- '.search-match-text.selected-search-match': {
65
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", "\n\t\t"),
66
- // we need to use !important here as we need to override inline selection styles
67
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
68
- backgroundColor: "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)".concat(" !important")
69
- },
70
- /** Dark mode */
71
-
72
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
73
- '.search-match-text.search-match-dark': {
74
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", "\n\t\t"),
75
- // we need to use !important here as we need to override inline selection styles
76
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
77
- backgroundColor: "var(--ds-background-accent-magenta-bolder-pressed, #77325B)".concat(" !important"),
78
- color: "var(--ds-text-inverse, #FFFFFF)"
79
- },
80
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
81
- '.search-match-text.selected-search-match.search-match-dark': {
82
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", "\n\t\t"),
83
- // we need to use !important here as we need to override inline selection styles
84
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
85
- backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)".concat(" !important")
86
- },
87
- /** Block match styles */
88
-
89
- /** Light mode */
90
-
91
- /** Without node selection */
92
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
93
- '.search-match-block': {
94
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
95
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
96
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", "\n\t\t\t")
97
- },
98
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
99
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
100
- boxShadow: "0px 0px 0px 4px ".concat("var(--ds-background-accent-magenta-subtler, #FDD0EC)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-subtler-pressed, #F797D2)")
101
- }
102
- },
103
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
104
- '.search-match-block.search-match-block-selected': {
105
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
106
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
107
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", "\n\t\t\t")
108
- },
109
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
110
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
111
- boxShadow: "0px 0px 0px 4px ".concat("var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-subtler-pressed, #F797D2)")
112
- }
113
- },
114
- /** With node selection */
115
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
116
- '.search-match-block.ak-editor-selected-node': {
117
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
118
- '.loader-wrapper>div::after': {
119
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", ",\n\t\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t\t")
120
- },
121
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
122
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
123
- boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #1868DB)", ", 0px 0px 0px 4px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-subtler-pressed, #F797D2)")
124
- }
125
- },
126
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
127
- '.search-match-block.search-match-block-selected.ak-editor-selected-node': {
128
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
129
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
130
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", ",\n\t\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t\t")
131
- },
132
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
133
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
134
- boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #1868DB)", ", 0px 0px 0px 4px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-subtler-pressed, #F797D2)")
135
- }
136
- },
137
- /** Dark mode */
138
- /** Without node selection */
139
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
140
- '.search-match-block.search-match-dark': {
141
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
142
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
143
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", "\n\t\t\t")
144
- },
145
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
146
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
147
- boxShadow: "0px 0px 0px 4px ".concat("var(--ds-background-accent-magenta-bolder-pressed, #77325B)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-bolder, #AE4787)")
148
- }
149
- },
150
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
151
- '.search-match-block.search-match-block-selected.search-match-dark': {
152
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
153
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
154
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", "\n\t\t\t")
155
- },
156
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
157
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
158
- boxShadow: "0px 0px 0px 4px ".concat("var(--ds-background-accent-magenta-bolder-hovered, #943D73)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-bolder, #AE4787)")
159
- }
160
- },
161
- /** With node selection */
162
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
163
- '.search-match-block.search-match-dark.ak-editor-selected-node': {
164
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
165
- '.loader-wrapper>div::after': {
166
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", ",\n\t\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t\t")
167
- },
168
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
169
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
170
- boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #1868DB)", ", 0px 0px 0px 4px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-bolder, #AE4787)")
171
- }
172
- },
173
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
174
- '.search-match-block.search-match-block-selected.search-match-dark.ak-editor-selected-node': {
175
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
176
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
177
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", ",\n\t\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t\t")
178
- },
179
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
180
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
181
- boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #1868DB)", ", 0px 0px 0px 4px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-bolder, #AE4787)")
182
- }
183
- },
184
- /** Expand title match styles */
185
-
186
- /** Light mode */
187
-
188
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
189
- '.search-match-expand-title > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
190
- borderRadius: "var(--ds-space-050, 4px)",
191
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", "\n\t\t"),
192
- backgroundColor: "var(--ds-background-accent-magenta-subtler, #FDD0EC)",
193
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
194
- '.ak-editor-expand__title-input': {
195
- color: "var(--ds-text, #292A2E)"
196
- }
197
- },
198
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
199
- '.search-match-expand-title.selected-search-match > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
200
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", "\n\t\t"),
201
- backgroundColor: "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"
202
- },
203
- /** Dark mode */
204
-
205
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
206
- '.search-match-expand-title.search-match-dark > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
207
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", "\n\t\t"),
208
- backgroundColor: "var(--ds-background-accent-magenta-bolder-pressed, #77325B)",
209
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
210
- '.ak-editor-expand__title-input': {
211
- color: "var(--ds-text-inverse, #FFFFFF)"
212
- }
213
- },
214
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
215
- '.search-match-expand-title.selected-search-match.search-match-dark > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
216
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", "\n\t\t"),
217
- backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)"
218
- }
219
- });
220
-
48
+ // TODO: ED-28370 - during platform_editor_find_and_replace_improvements clean up, rename this css object to findReplaceStyles
221
49
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
222
50
  var findReplaceStylesNewWithA11Y = exports.findReplaceStylesNewWithA11Y = (0, _react.css)({
223
51
  // text - inactive match - light mode
@@ -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 = "217.1.1";
8
+ var version = exports.version = "0.0.0-development";
@@ -33,7 +33,7 @@ import { embedCardStyles } from './styles/embedCardStyles';
33
33
  import { emojiDangerStyles, emojiStyles, getDenseEmojiStyles, getScaledDenseEmojiStyles, scaledEmojiStyles } from './styles/emoji';
34
34
  import { expandStyles, expandStylesMixin_fg_platform_editor_nested_dnd_styles_changes, expandStylesMixin_fg_platform_visual_refresh_icons, expandStylesMixin_without_fg_platform_editor_nested_dnd_styles_changes, getDenseExpandTitleStyles } from './styles/expandStyles';
35
35
  import { extensionDiffStyles, getExtensionStyles } from './styles/extensionStyles';
36
- import { findReplaceStyles, findReplaceStylesNew, findReplaceStylesNewWithA11Y, findReplaceStylesNewWithCodeblockColorContrastFix, findReplaceStylesWithCodeblockColorContrastFix } from './styles/findReplaceStyles';
36
+ import { findReplaceStyles, findReplaceStylesNewWithA11Y, findReplaceStylesNewWithCodeblockColorContrastFix, findReplaceStylesWithCodeblockColorContrastFix } from './styles/findReplaceStyles';
37
37
  import { firstBlockNodeStyles } from './styles/firstBlockNodeStyles';
38
38
  import { firstFloatingToolbarButtonStyles } from './styles/floatingToolbarStyles';
39
39
  import { fullPageEditorStyles } from './styles/fullPageEditorStyles';
@@ -296,12 +296,8 @@ const EditorContentContainer = /*#__PURE__*/React.forwardRef((props, ref) => {
296
296
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
297
297
  expandStylesMixin_fg_platform_visual_refresh_icons, expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) ?
298
298
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
299
- fg('platform_editor_a11y_find_replace_focus_ring') ?
300
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
301
299
  findReplaceStylesNewWithA11Y :
302
300
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
303
- findReplaceStylesNew :
304
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
305
301
  findReplaceStyles, expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) && fg('platform_editor_find_codeblock_color_contrast_fix') &&
306
302
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
307
303
  findReplaceStylesNewWithCodeblockColorContrastFix, !expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) && fg('platform_editor_find_codeblock_color_contrast_fix') &&
@@ -42,231 +42,7 @@ export const findReplaceStylesNewWithCodeblockColorContrastFix = css({
42
42
  }
43
43
  });
44
44
 
45
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
46
- export const findReplaceStylesNew = css({
47
- /** Text match styles */
48
-
49
- /** Light mode */
50
-
51
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
52
- '.search-match-text': {
53
- borderRadius: "var(--ds-space-050, 4px)",
54
- boxShadow: `
55
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"},
56
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-subtler, #FDD0EC)"}
57
- `,
58
- // we need to use !important here as we need to override inline selection styles
59
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
60
- backgroundColor: `${"var(--ds-background-accent-magenta-subtler, #FDD0EC)"} !important`,
61
- color: "var(--ds-text, #292A2E)"
62
- },
63
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
64
- '.search-match-text.selected-search-match': {
65
- boxShadow: `
66
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"},
67
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"}
68
- `,
69
- // we need to use !important here as we need to override inline selection styles
70
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
71
- backgroundColor: `${"var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"} !important`
72
- },
73
- /** Dark mode */
74
-
75
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
76
- '.search-match-text.search-match-dark': {
77
- boxShadow: `
78
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"},
79
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-bolder-pressed, #77325B)"}
80
- `,
81
- // we need to use !important here as we need to override inline selection styles
82
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
83
- backgroundColor: `${"var(--ds-background-accent-magenta-bolder-pressed, #77325B)"} !important`,
84
- color: "var(--ds-text-inverse, #FFFFFF)"
85
- },
86
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
87
- '.search-match-text.selected-search-match.search-match-dark': {
88
- boxShadow: `
89
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"},
90
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-bolder-hovered, #943D73)"}
91
- `,
92
- // we need to use !important here as we need to override inline selection styles
93
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
94
- backgroundColor: `${"var(--ds-background-accent-magenta-bolder-hovered, #943D73)"} !important`
95
- },
96
- /** Block match styles */
97
-
98
- /** Light mode */
99
-
100
- /** Without node selection */
101
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
102
- '.search-match-block': {
103
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
104
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
105
- boxShadow: `
106
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"},
107
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-subtler, #FDD0EC)"}
108
- `
109
- },
110
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
111
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
112
- boxShadow: `0px 0px 0px 4px ${"var(--ds-background-accent-magenta-subtler, #FDD0EC)"}, 0px 0px 0px 5px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"}`
113
- }
114
- },
115
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
116
- '.search-match-block.search-match-block-selected': {
117
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
118
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
119
- boxShadow: `
120
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"},
121
- inset 0 0 0 4px ${"var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"}
122
- `
123
- },
124
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
125
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
126
- boxShadow: `0px 0px 0px 4px ${"var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"}, 0px 0px 0px 5px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"}`
127
- }
128
- },
129
- /** With node selection */
130
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
131
- '.search-match-block.ak-editor-selected-node': {
132
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
133
- '.loader-wrapper>div::after': {
134
- boxShadow: `
135
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"},
136
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-subtler, #FDD0EC)"},
137
- 0 0 0 1px ${"var(--ds-border-selected, #1868DB)"}
138
- `
139
- },
140
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
141
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
142
- boxShadow: `0 0 0 1px ${"var(--ds-border-selected, #1868DB)"}, 0px 0px 0px 4px ${"var(--ds-background-accent-magenta-subtler, #FDD0EC)"}, 0px 0px 0px 5px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"}`
143
- }
144
- },
145
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
146
- '.search-match-block.search-match-block-selected.ak-editor-selected-node': {
147
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
148
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
149
- boxShadow: `
150
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"},
151
- inset 0 0 0 4px ${"var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"},
152
- 0 0 0 1px ${"var(--ds-border-selected, #1868DB)"}
153
- `
154
- },
155
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
156
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
157
- boxShadow: `0 0 0 1px ${"var(--ds-border-selected, #1868DB)"}, 0px 0px 0px 4px ${"var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"}, 0px 0px 0px 5px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"}`
158
- }
159
- },
160
- /** Dark mode */
161
- /** Without node selection */
162
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
163
- '.search-match-block.search-match-dark': {
164
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
165
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
166
- boxShadow: `
167
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"},
168
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-bolder-pressed, #77325B)"}
169
- `
170
- },
171
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
172
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
173
- boxShadow: `0px 0px 0px 4px ${"var(--ds-background-accent-magenta-bolder-pressed, #77325B)"}, 0px 0px 0px 5px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"}`
174
- }
175
- },
176
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
177
- '.search-match-block.search-match-block-selected.search-match-dark': {
178
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
179
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
180
- boxShadow: `
181
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"},
182
- inset 0 0 0 4px ${"var(--ds-background-accent-magenta-bolder-hovered, #943D73)"}
183
- `
184
- },
185
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
186
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
187
- boxShadow: `0px 0px 0px 4px ${"var(--ds-background-accent-magenta-bolder-hovered, #943D73)"}, 0px 0px 0px 5px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"}`
188
- }
189
- },
190
- /** With node selection */
191
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
192
- '.search-match-block.search-match-dark.ak-editor-selected-node': {
193
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
194
- '.loader-wrapper>div::after': {
195
- boxShadow: `
196
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"},
197
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-bolder-pressed, #77325B)"},
198
- 0 0 0 1px ${"var(--ds-border-selected, #1868DB)"}
199
- `
200
- },
201
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
202
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
203
- boxShadow: `0 0 0 1px ${"var(--ds-border-selected, #1868DB)"}, 0px 0px 0px 4px ${"var(--ds-background-accent-magenta-bolder-pressed, #77325B)"}, 0px 0px 0px 5px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"}`
204
- }
205
- },
206
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
207
- '.search-match-block.search-match-block-selected.search-match-dark.ak-editor-selected-node': {
208
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
209
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
210
- boxShadow: `
211
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"},
212
- inset 0 0 0 4px ${"var(--ds-background-accent-magenta-bolder-hovered, #943D73)"},
213
- 0 0 0 1px ${"var(--ds-border-selected, #1868DB)"}
214
- `
215
- },
216
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
217
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
218
- boxShadow: `0 0 0 1px ${"var(--ds-border-selected, #1868DB)"}, 0px 0px 0px 4px ${"var(--ds-background-accent-magenta-bolder-hovered, #943D73)"}, 0px 0px 0px 5px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"}`
219
- }
220
- },
221
- /** Expand title match styles */
222
-
223
- /** Light mode */
224
-
225
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
226
- '.search-match-expand-title > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
227
- borderRadius: "var(--ds-space-050, 4px)",
228
- boxShadow: `
229
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"},
230
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-subtler, #FDD0EC)"}
231
- `,
232
- backgroundColor: "var(--ds-background-accent-magenta-subtler, #FDD0EC)",
233
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
234
- '.ak-editor-expand__title-input': {
235
- color: "var(--ds-text, #292A2E)"
236
- }
237
- },
238
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
239
- '.search-match-expand-title.selected-search-match > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
240
- boxShadow: `
241
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-subtler-pressed, #F797D2)"},
242
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"}
243
- `,
244
- backgroundColor: "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"
245
- },
246
- /** Dark mode */
247
-
248
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
249
- '.search-match-expand-title.search-match-dark > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
250
- boxShadow: `
251
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"},
252
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-bolder-pressed, #77325B)"}
253
- `,
254
- backgroundColor: "var(--ds-background-accent-magenta-bolder-pressed, #77325B)",
255
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
256
- '.ak-editor-expand__title-input': {
257
- color: "var(--ds-text-inverse, #FFFFFF)"
258
- }
259
- },
260
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
261
- '.search-match-expand-title.selected-search-match.search-match-dark > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
262
- boxShadow: `
263
- inset 0 0 0 1px ${"var(--ds-background-accent-magenta-bolder, #AE4787)"},
264
- inset 0 0 0 5px ${"var(--ds-background-accent-magenta-bolder-hovered, #943D73)"}
265
- `,
266
- backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)"
267
- }
268
- });
269
-
45
+ // TODO: ED-28370 - during platform_editor_find_and_replace_improvements clean up, rename this css object to findReplaceStyles
270
46
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
271
47
  export const findReplaceStylesNewWithA11Y = css({
272
48
  // text - inactive match - light mode
@@ -1,2 +1,2 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "217.1.1";
2
+ export const version = "0.0.0-development";
@@ -34,7 +34,7 @@ import { embedCardStyles } from './styles/embedCardStyles';
34
34
  import { emojiDangerStyles, emojiStyles, getDenseEmojiStyles, getScaledDenseEmojiStyles, scaledEmojiStyles } from './styles/emoji';
35
35
  import { expandStyles, expandStylesMixin_fg_platform_editor_nested_dnd_styles_changes, expandStylesMixin_fg_platform_visual_refresh_icons, expandStylesMixin_without_fg_platform_editor_nested_dnd_styles_changes, getDenseExpandTitleStyles } from './styles/expandStyles';
36
36
  import { extensionDiffStyles, getExtensionStyles } from './styles/extensionStyles';
37
- import { findReplaceStyles, findReplaceStylesNew, findReplaceStylesNewWithA11Y, findReplaceStylesNewWithCodeblockColorContrastFix, findReplaceStylesWithCodeblockColorContrastFix } from './styles/findReplaceStyles';
37
+ import { findReplaceStyles, findReplaceStylesNewWithA11Y, findReplaceStylesNewWithCodeblockColorContrastFix, findReplaceStylesWithCodeblockColorContrastFix } from './styles/findReplaceStyles';
38
38
  import { firstBlockNodeStyles } from './styles/firstBlockNodeStyles';
39
39
  import { firstFloatingToolbarButtonStyles } from './styles/floatingToolbarStyles';
40
40
  import { fullPageEditorStyles } from './styles/fullPageEditorStyles';
@@ -292,12 +292,8 @@ var EditorContentContainer = /*#__PURE__*/React.forwardRef(function (props, ref)
292
292
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
293
293
  expandStylesMixin_fg_platform_visual_refresh_icons, expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) ?
294
294
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
295
- fg('platform_editor_a11y_find_replace_focus_ring') ?
296
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
297
295
  findReplaceStylesNewWithA11Y :
298
296
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
299
- findReplaceStylesNew :
300
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
301
297
  findReplaceStyles, expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) && fg('platform_editor_find_codeblock_color_contrast_fix') &&
302
298
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
303
299
  findReplaceStylesNewWithCodeblockColorContrastFix, !expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) && fg('platform_editor_find_codeblock_color_contrast_fix') &&
@@ -37,179 +37,7 @@ export var findReplaceStylesNewWithCodeblockColorContrastFix = css(_defineProper
37
37
  }
38
38
  }));
39
39
 
40
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
41
- export var findReplaceStylesNew = css({
42
- /** Text match styles */
43
-
44
- /** Light mode */
45
-
46
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
47
- '.search-match-text': {
48
- borderRadius: "var(--ds-space-050, 4px)",
49
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", "\n\t\t"),
50
- // we need to use !important here as we need to override inline selection styles
51
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
52
- backgroundColor: "var(--ds-background-accent-magenta-subtler, #FDD0EC)".concat(" !important"),
53
- color: "var(--ds-text, #292A2E)"
54
- },
55
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
56
- '.search-match-text.selected-search-match': {
57
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", "\n\t\t"),
58
- // we need to use !important here as we need to override inline selection styles
59
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
60
- backgroundColor: "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)".concat(" !important")
61
- },
62
- /** Dark mode */
63
-
64
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
65
- '.search-match-text.search-match-dark': {
66
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", "\n\t\t"),
67
- // we need to use !important here as we need to override inline selection styles
68
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
69
- backgroundColor: "var(--ds-background-accent-magenta-bolder-pressed, #77325B)".concat(" !important"),
70
- color: "var(--ds-text-inverse, #FFFFFF)"
71
- },
72
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
73
- '.search-match-text.selected-search-match.search-match-dark': {
74
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", "\n\t\t"),
75
- // we need to use !important here as we need to override inline selection styles
76
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
77
- backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)".concat(" !important")
78
- },
79
- /** Block match styles */
80
-
81
- /** Light mode */
82
-
83
- /** Without node selection */
84
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
85
- '.search-match-block': {
86
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
87
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
88
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", "\n\t\t\t")
89
- },
90
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
91
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
92
- boxShadow: "0px 0px 0px 4px ".concat("var(--ds-background-accent-magenta-subtler, #FDD0EC)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-subtler-pressed, #F797D2)")
93
- }
94
- },
95
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
96
- '.search-match-block.search-match-block-selected': {
97
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
98
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
99
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", "\n\t\t\t")
100
- },
101
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
102
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
103
- boxShadow: "0px 0px 0px 4px ".concat("var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-subtler-pressed, #F797D2)")
104
- }
105
- },
106
- /** With node selection */
107
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
108
- '.search-match-block.ak-editor-selected-node': {
109
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
110
- '.loader-wrapper>div::after': {
111
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", ",\n\t\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t\t")
112
- },
113
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
114
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
115
- boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #1868DB)", ", 0px 0px 0px 4px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-subtler-pressed, #F797D2)")
116
- }
117
- },
118
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
119
- '.search-match-block.search-match-block-selected.ak-editor-selected-node': {
120
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
121
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
122
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", ",\n\t\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t\t")
123
- },
124
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
125
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
126
- boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #1868DB)", ", 0px 0px 0px 4px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-subtler-pressed, #F797D2)")
127
- }
128
- },
129
- /** Dark mode */
130
- /** Without node selection */
131
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
132
- '.search-match-block.search-match-dark': {
133
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
134
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
135
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", "\n\t\t\t")
136
- },
137
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
138
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
139
- boxShadow: "0px 0px 0px 4px ".concat("var(--ds-background-accent-magenta-bolder-pressed, #77325B)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-bolder, #AE4787)")
140
- }
141
- },
142
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
143
- '.search-match-block.search-match-block-selected.search-match-dark': {
144
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
145
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
146
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", "\n\t\t\t")
147
- },
148
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
149
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
150
- boxShadow: "0px 0px 0px 4px ".concat("var(--ds-background-accent-magenta-bolder-hovered, #943D73)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-bolder, #AE4787)")
151
- }
152
- },
153
- /** With node selection */
154
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
155
- '.search-match-block.search-match-dark.ak-editor-selected-node': {
156
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
157
- '.loader-wrapper>div::after': {
158
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", ",\n\t\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t\t")
159
- },
160
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
161
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
162
- boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #1868DB)", ", 0px 0px 0px 4px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-bolder, #AE4787)")
163
- }
164
- },
165
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
166
- '.search-match-block.search-match-block-selected.search-match-dark.ak-editor-selected-node': {
167
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
168
- '[data-smart-link-container="true"], .loader-wrapper>div::after': {
169
- boxShadow: "\n\t\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\t\tinset 0 0 0 4px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", ",\n\t\t\t0 0 0 1px ", "var(--ds-border-selected, #1868DB)", "\n\t\t\t")
170
- },
171
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
172
- '.loader-wrapper>a, .hover-card-trigger-wrapper>a, .lozenge-wrapper, .editor-mention-primitive, .date-lozenger-container>span': {
173
- boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #1868DB)", ", 0px 0px 0px 4px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", ", 0px 0px 0px 5px ", "var(--ds-background-accent-magenta-bolder, #AE4787)")
174
- }
175
- },
176
- /** Expand title match styles */
177
-
178
- /** Light mode */
179
-
180
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
181
- '.search-match-expand-title > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
182
- borderRadius: "var(--ds-space-050, 4px)",
183
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtler, #FDD0EC)", "\n\t\t"),
184
- backgroundColor: "var(--ds-background-accent-magenta-subtler, #FDD0EC)",
185
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
186
- '.ak-editor-expand__title-input': {
187
- color: "var(--ds-text, #292A2E)"
188
- }
189
- },
190
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
191
- '.search-match-expand-title.selected-search-match > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
192
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-subtler-pressed, #F797D2)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)", "\n\t\t"),
193
- backgroundColor: "var(--ds-background-accent-magenta-subtlest-pressed, #FCB6E1)"
194
- },
195
- /** Dark mode */
196
-
197
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
198
- '.search-match-expand-title.search-match-dark > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
199
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-pressed, #77325B)", "\n\t\t"),
200
- backgroundColor: "var(--ds-background-accent-magenta-bolder-pressed, #77325B)",
201
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
202
- '.ak-editor-expand__title-input': {
203
- color: "var(--ds-text-inverse, #FFFFFF)"
204
- }
205
- },
206
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
207
- '.search-match-expand-title.selected-search-match.search-match-dark > .ak-editor-expand__title-container > .ak-editor-expand__input-container': {
208
- boxShadow: "\n\t\tinset 0 0 0 1px ".concat("var(--ds-background-accent-magenta-bolder, #AE4787)", ",\n\t\tinset 0 0 0 5px ", "var(--ds-background-accent-magenta-bolder-hovered, #943D73)", "\n\t\t"),
209
- backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)"
210
- }
211
- });
212
-
40
+ // TODO: ED-28370 - during platform_editor_find_and_replace_improvements clean up, rename this css object to findReplaceStyles
213
41
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
214
42
  export var findReplaceStylesNewWithA11Y = css({
215
43
  // text - inactive match - light mode
@@ -1,2 +1,2 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "217.1.1";
2
+ export var version = "0.0.0-development";
@@ -2,5 +2,4 @@ import { type SerializedStyles } from '@emotion/react';
2
2
  export declare const findReplaceStyles: SerializedStyles;
3
3
  export declare const findReplaceStylesWithCodeblockColorContrastFix: SerializedStyles;
4
4
  export declare const findReplaceStylesNewWithCodeblockColorContrastFix: SerializedStyles;
5
- export declare const findReplaceStylesNew: SerializedStyles;
6
5
  export declare const findReplaceStylesNewWithA11Y: SerializedStyles;
@@ -2,5 +2,4 @@ import { type SerializedStyles } from '@emotion/react';
2
2
  export declare const findReplaceStyles: SerializedStyles;
3
3
  export declare const findReplaceStylesWithCodeblockColorContrastFix: SerializedStyles;
4
4
  export declare const findReplaceStylesNewWithCodeblockColorContrastFix: SerializedStyles;
5
- export declare const findReplaceStylesNew: SerializedStyles;
6
5
  export declare const findReplaceStylesNewWithA11Y: SerializedStyles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "217.1.2",
3
+ "version": "217.2.0",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -58,7 +58,7 @@
58
58
  "@atlaskit/editor-toolbar": "^0.19.0",
59
59
  "@atlaskit/editor-toolbar-model": "^0.4.0",
60
60
  "@atlaskit/emoji": "^69.10.0",
61
- "@atlaskit/icon": "^32.0.0",
61
+ "@atlaskit/icon": "^32.1.0",
62
62
  "@atlaskit/link": "^3.3.0",
63
63
  "@atlaskit/media-card": "^79.15.0",
64
64
  "@atlaskit/mention": "^24.5.0",
@@ -66,7 +66,7 @@
66
66
  "@atlaskit/platform-feature-flags-react": "^0.4.0",
67
67
  "@atlaskit/react-ufo": "^5.4.0",
68
68
  "@atlaskit/task-decision": "^19.3.0",
69
- "@atlaskit/tmp-editor-statsig": "^37.0.0",
69
+ "@atlaskit/tmp-editor-statsig": "^38.0.0",
70
70
  "@atlaskit/tokens": "^11.1.0",
71
71
  "@atlaskit/tooltip": "^20.14.0",
72
72
  "@atlaskit/width-detector": "^5.0.0",
@@ -315,9 +315,6 @@
315
315
  "platform_editor_table_fixed_column_width_prop": {
316
316
  "type": "boolean"
317
317
  },
318
- "platform_editor_a11y_find_replace_focus_ring": {
319
- "type": "boolean"
320
- },
321
318
  "platform_editor_better_editor_ssr_spans": {
322
319
  "type": "boolean"
323
320
  },