@atlaskit/editor-core 209.1.1 → 209.1.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 +18 -0
- package/dist/cjs/ui/ContentStyles/index.js +8 -7
- package/dist/cjs/ui/ContentStyles/status.js +14 -7
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer.js +15 -7
- package/dist/cjs/ui/EditorContentContainer/styles/findReplaceStyles.js +43 -43
- package/dist/cjs/ui/EditorContentContainer/styles/mentions.js +31 -1
- package/dist/cjs/ui/EditorContentContainer/styles/smartCardStyles.js +102 -1
- package/dist/cjs/ui/EditorContentContainer/styles/statusStyles.js +117 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/ContentStyles/index.js +35 -6
- package/dist/es2019/ui/ContentStyles/status.js +26 -11
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer.js +19 -11
- package/dist/es2019/ui/EditorContentContainer/styles/findReplaceStyles.js +58 -58
- package/dist/es2019/ui/EditorContentContainer/styles/mentions.js +34 -0
- package/dist/es2019/ui/EditorContentContainer/styles/smartCardStyles.js +153 -0
- package/dist/es2019/ui/EditorContentContainer/styles/statusStyles.js +116 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/ContentStyles/index.js +9 -8
- package/dist/esm/ui/ContentStyles/status.js +14 -7
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer.js +19 -11
- package/dist/esm/ui/EditorContentContainer/styles/findReplaceStyles.js +42 -42
- package/dist/esm/ui/EditorContentContainer/styles/mentions.js +30 -0
- package/dist/esm/ui/EditorContentContainer/styles/smartCardStyles.js +101 -0
- package/dist/esm/ui/EditorContentContainer/styles/statusStyles.js +116 -0
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/ui/ContentStyles/status.d.ts +1 -1
- package/dist/types/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +2 -2
- package/dist/types/ui/EditorContentContainer/styles/mentions.d.ts +1 -0
- package/dist/types/ui/EditorContentContainer/styles/smartCardStyles.d.ts +1 -0
- package/dist/types/ui/EditorContentContainer/styles/statusStyles.d.ts +2 -0
- package/dist/types-ts4.5/ui/ContentStyles/status.d.ts +1 -1
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +2 -2
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/mentions.d.ts +1 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/smartCardStyles.d.ts +1 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/statusStyles.d.ts +2 -0
- package/package.json +11 -10
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const findReplaceStyles: import("@emotion/react").SerializedStyles;
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
2
|
+
export declare const findReplaceStylesNew: import("@emotion/react").SerializedStyles;
|
|
3
|
+
export declare const findReplaceStylesNewNoImportant: import("@emotion/react").SerializedStyles;
|
|
@@ -2,3 +2,4 @@ export declare const mentionsStyles: import("@emotion/react").SerializedStyles;
|
|
|
2
2
|
export declare const mentionNodeStyles: import("@emotion/react").SerializedStyles;
|
|
3
3
|
export declare const mentionsStylesMixin_platform_editor_centre_mention_padding: import("@emotion/react").SerializedStyles;
|
|
4
4
|
export declare const mentionsSelectionStyles: import("@emotion/react").SerializedStyles;
|
|
5
|
+
export declare const mentionsSelectionStylesWithSearchMatch: import("@emotion/react").SerializedStyles;
|
|
@@ -9,6 +9,7 @@ export declare const SmartCardSharedCssClassName: {
|
|
|
9
9
|
};
|
|
10
10
|
export declare const editorControlsSmartCardStyles: import("@emotion/react").SerializedStyles;
|
|
11
11
|
export declare const smartCardStyles: import("@emotion/react").SerializedStyles;
|
|
12
|
+
export declare const smartCardStylesWithSearchMatch: import("@emotion/react").SerializedStyles;
|
|
12
13
|
export declare const smartLinksInLivePagesStyles: import("@emotion/react").SerializedStyles;
|
|
13
14
|
export declare const smartLinksInLivePagesStylesOld: import("@emotion/react").SerializedStyles;
|
|
14
15
|
export declare const linkingVisualRefreshV1Styles: import("@emotion/react").SerializedStyles;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export declare const statusStyles: import("@emotion/react").SerializedStyles;
|
|
2
2
|
export declare const statusStylesMixin_fg_platform_component_visual_refresh: import("@emotion/react").SerializedStyles;
|
|
3
|
+
export declare const statusStylesMixin_fg_platform_component_visual_refresh_with_search_match: import("@emotion/react").SerializedStyles;
|
|
3
4
|
export declare const statusStylesMixin_without_fg_platform_component_visual_refresh: import("@emotion/react").SerializedStyles;
|
|
5
|
+
export declare const statusStylesMixin_without_fg_platform_component_visual_refresh_with_search_match: import("@emotion/react").SerializedStyles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "209.1.
|
|
3
|
+
"version": "209.1.3",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"@atlaskit/platform-feature-flags-react": "^0.2.0",
|
|
62
62
|
"@atlaskit/react-ufo": "^3.14.0",
|
|
63
63
|
"@atlaskit/task-decision": "^19.2.0",
|
|
64
|
-
"@atlaskit/tmp-editor-statsig": "^9.
|
|
65
|
-
"@atlaskit/tokens": "^5.
|
|
64
|
+
"@atlaskit/tmp-editor-statsig": "^9.5.0",
|
|
65
|
+
"@atlaskit/tokens": "^5.5.0",
|
|
66
66
|
"@atlaskit/tooltip": "^20.3.0",
|
|
67
67
|
"@atlaskit/width-detector": "^5.0.0",
|
|
68
68
|
"@babel/runtime": "^7.0.0",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"@atlaskit/primitives": "^14.10.0",
|
|
105
105
|
"@atlaskit/renderer": "^120.1.0",
|
|
106
106
|
"@atlaskit/section-message": "^8.2.0",
|
|
107
|
-
"@atlaskit/smart-card": "^
|
|
107
|
+
"@atlaskit/smart-card": "^40.0.0",
|
|
108
108
|
"@atlaskit/synchrony-test-helpers": "workspace:^",
|
|
109
109
|
"@atlaskit/toggle": "^15.0.0",
|
|
110
110
|
"@atlaskit/util-data-test": "^18.0.0",
|
|
@@ -222,9 +222,6 @@
|
|
|
222
222
|
"platform_editor_toolbar_responsive_fixes": {
|
|
223
223
|
"type": "boolean"
|
|
224
224
|
},
|
|
225
|
-
"platform_editor_react18_mention_with_provider_fix": {
|
|
226
|
-
"type": "boolean"
|
|
227
|
-
},
|
|
228
225
|
"platform-visual-refresh-icons": {
|
|
229
226
|
"type": "boolean",
|
|
230
227
|
"referenceOnly": true
|
|
@@ -572,9 +569,6 @@
|
|
|
572
569
|
"platform_editor_fix_code_block_bg_color_in_macro_2": {
|
|
573
570
|
"type": "boolean"
|
|
574
571
|
},
|
|
575
|
-
"platform_editor_find_and_replace_magenta_match": {
|
|
576
|
-
"type": "boolean"
|
|
577
|
-
},
|
|
578
572
|
"platform_editor_vanilla_codebidi_warning": {
|
|
579
573
|
"type": "boolean"
|
|
580
574
|
},
|
|
@@ -587,6 +581,13 @@
|
|
|
587
581
|
"platform_editor_profilecard_style_fix": {
|
|
588
582
|
"type": "boolean",
|
|
589
583
|
"referenceOnly": true
|
|
584
|
+
},
|
|
585
|
+
"platform_editor_find_and_replace_improvements_1": {
|
|
586
|
+
"type": "boolean"
|
|
587
|
+
},
|
|
588
|
+
"platform_editor_task_check_status_fix": {
|
|
589
|
+
"type": "boolean",
|
|
590
|
+
"referenceOnly": true
|
|
590
591
|
}
|
|
591
592
|
},
|
|
592
593
|
"stricter": {
|