@atlaskit/editor-core 207.19.0 → 207.19.1
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 +8 -0
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer.js +38 -4
- package/dist/cjs/ui/EditorContentContainer/styles/gapCursorStyles.js +99 -0
- package/dist/cjs/ui/EditorContentContainer/styles/layout.js +409 -366
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer.js +38 -4
- package/dist/es2019/ui/EditorContentContainer/styles/gapCursorStyles.js +167 -0
- package/dist/es2019/ui/EditorContentContainer/styles/layout.js +423 -315
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer.js +38 -4
- package/dist/esm/ui/EditorContentContainer/styles/gapCursorStyles.js +91 -0
- package/dist/esm/ui/EditorContentContainer/styles/layout.js +408 -365
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +2 -0
- package/dist/types/ui/EditorContentContainer/styles/layout.d.ts +59 -2
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +2 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/layout.d.ts +59 -2
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "207.19.
|
|
2
|
+
export var version = "207.19.1";
|
|
@@ -1,2 +1,59 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Layout columns styles when advanced layouts experiment is on
|
|
3
|
+
*/
|
|
4
|
+
export declare const layoutColumnStylesAdvanced: import("@emotion/react").SerializedStyles;
|
|
5
|
+
/**
|
|
6
|
+
* Layout columns styles when advanced layouts experiment is off
|
|
7
|
+
*/
|
|
8
|
+
export declare const layoutColumnStylesNotAdvanced: import("@emotion/react").SerializedStyles;
|
|
9
|
+
/**
|
|
10
|
+
* Responsive styles for layout columns when advanced layouts experiment is on
|
|
11
|
+
*/
|
|
12
|
+
export declare const layoutColumnResponsiveStyles: import("@emotion/react").SerializedStyles;
|
|
13
|
+
/**
|
|
14
|
+
* Layout section styles when advanced layouts experiment is on
|
|
15
|
+
*/
|
|
16
|
+
export declare const layoutSectionStylesAdvanced: import("@emotion/react").SerializedStyles;
|
|
17
|
+
/**
|
|
18
|
+
* Layout section styles when advanced layouts experiment is off
|
|
19
|
+
*/
|
|
20
|
+
export declare const layoutSectionStylesNotAdvanced: import("@emotion/react").SerializedStyles;
|
|
21
|
+
/**
|
|
22
|
+
* Selected styles for layout when advanced layouts experiment is off
|
|
23
|
+
*/
|
|
24
|
+
export declare const layoutSelectedStylesNotAdvanced: import("@emotion/react").SerializedStyles;
|
|
25
|
+
/**
|
|
26
|
+
* Selected styles for layout when advanced layouts experiment is on
|
|
27
|
+
*/
|
|
28
|
+
export declare const layoutSelectedStylesAdvanced: import("@emotion/react").SerializedStyles;
|
|
29
|
+
/**
|
|
30
|
+
* Base responsive styles for layout
|
|
31
|
+
*/
|
|
32
|
+
export declare const layoutResponsiveBaseStyles: import("@emotion/react").SerializedStyles;
|
|
33
|
+
/**
|
|
34
|
+
* Responsive styles for layout in view mode
|
|
35
|
+
*/
|
|
36
|
+
export declare const layoutResponsiveStylesForView: import("@emotion/react").SerializedStyles;
|
|
37
|
+
/**
|
|
38
|
+
* Base styles for layout
|
|
39
|
+
*/
|
|
40
|
+
export declare const layoutBaseStyles: import("@emotion/react").SerializedStyles;
|
|
41
|
+
/**
|
|
42
|
+
* Base styles overrides for layout columns when advanced layouts experiment is on
|
|
43
|
+
*/
|
|
44
|
+
export declare const layoutBaseStylesAdvanced: import("@emotion/react").SerializedStyles;
|
|
45
|
+
/**
|
|
46
|
+
* Spacing overrides when platform_editor_nested_dnd_styles_changes is on
|
|
47
|
+
*/
|
|
48
|
+
export declare const layoutBaseStylesFixesUnderNestedDnDFG: import("@emotion/react").SerializedStyles;
|
|
49
|
+
/**
|
|
50
|
+
* Layout in view mode styles for selected state when advanced layouts experiment is on.
|
|
51
|
+
*/
|
|
52
|
+
export declare const layoutSelectedStylesForViewAdvanced: import("@emotion/react").SerializedStyles;
|
|
53
|
+
/**
|
|
54
|
+
* Layout in view mode styles for selected state when advanced layouts experiment is off.
|
|
55
|
+
*/
|
|
56
|
+
export declare const layoutSelectedStylesForViewNotAdvanced: import("@emotion/react").SerializedStyles;
|
|
57
|
+
export declare const layoutStylesForView: import("@emotion/react").SerializedStyles;
|
|
58
|
+
export declare const layoutColumnMartinTopFixesNew: import("@emotion/react").SerializedStyles;
|
|
59
|
+
export declare const layoutColumnMartinTopFixesOld: import("@emotion/react").SerializedStyles;
|
|
@@ -1,2 +1,59 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Layout columns styles when advanced layouts experiment is on
|
|
3
|
+
*/
|
|
4
|
+
export declare const layoutColumnStylesAdvanced: import("@emotion/react").SerializedStyles;
|
|
5
|
+
/**
|
|
6
|
+
* Layout columns styles when advanced layouts experiment is off
|
|
7
|
+
*/
|
|
8
|
+
export declare const layoutColumnStylesNotAdvanced: import("@emotion/react").SerializedStyles;
|
|
9
|
+
/**
|
|
10
|
+
* Responsive styles for layout columns when advanced layouts experiment is on
|
|
11
|
+
*/
|
|
12
|
+
export declare const layoutColumnResponsiveStyles: import("@emotion/react").SerializedStyles;
|
|
13
|
+
/**
|
|
14
|
+
* Layout section styles when advanced layouts experiment is on
|
|
15
|
+
*/
|
|
16
|
+
export declare const layoutSectionStylesAdvanced: import("@emotion/react").SerializedStyles;
|
|
17
|
+
/**
|
|
18
|
+
* Layout section styles when advanced layouts experiment is off
|
|
19
|
+
*/
|
|
20
|
+
export declare const layoutSectionStylesNotAdvanced: import("@emotion/react").SerializedStyles;
|
|
21
|
+
/**
|
|
22
|
+
* Selected styles for layout when advanced layouts experiment is off
|
|
23
|
+
*/
|
|
24
|
+
export declare const layoutSelectedStylesNotAdvanced: import("@emotion/react").SerializedStyles;
|
|
25
|
+
/**
|
|
26
|
+
* Selected styles for layout when advanced layouts experiment is on
|
|
27
|
+
*/
|
|
28
|
+
export declare const layoutSelectedStylesAdvanced: import("@emotion/react").SerializedStyles;
|
|
29
|
+
/**
|
|
30
|
+
* Base responsive styles for layout
|
|
31
|
+
*/
|
|
32
|
+
export declare const layoutResponsiveBaseStyles: import("@emotion/react").SerializedStyles;
|
|
33
|
+
/**
|
|
34
|
+
* Responsive styles for layout in view mode
|
|
35
|
+
*/
|
|
36
|
+
export declare const layoutResponsiveStylesForView: import("@emotion/react").SerializedStyles;
|
|
37
|
+
/**
|
|
38
|
+
* Base styles for layout
|
|
39
|
+
*/
|
|
40
|
+
export declare const layoutBaseStyles: import("@emotion/react").SerializedStyles;
|
|
41
|
+
/**
|
|
42
|
+
* Base styles overrides for layout columns when advanced layouts experiment is on
|
|
43
|
+
*/
|
|
44
|
+
export declare const layoutBaseStylesAdvanced: import("@emotion/react").SerializedStyles;
|
|
45
|
+
/**
|
|
46
|
+
* Spacing overrides when platform_editor_nested_dnd_styles_changes is on
|
|
47
|
+
*/
|
|
48
|
+
export declare const layoutBaseStylesFixesUnderNestedDnDFG: import("@emotion/react").SerializedStyles;
|
|
49
|
+
/**
|
|
50
|
+
* Layout in view mode styles for selected state when advanced layouts experiment is on.
|
|
51
|
+
*/
|
|
52
|
+
export declare const layoutSelectedStylesForViewAdvanced: import("@emotion/react").SerializedStyles;
|
|
53
|
+
/**
|
|
54
|
+
* Layout in view mode styles for selected state when advanced layouts experiment is off.
|
|
55
|
+
*/
|
|
56
|
+
export declare const layoutSelectedStylesForViewNotAdvanced: import("@emotion/react").SerializedStyles;
|
|
57
|
+
export declare const layoutStylesForView: import("@emotion/react").SerializedStyles;
|
|
58
|
+
export declare const layoutColumnMartinTopFixesNew: import("@emotion/react").SerializedStyles;
|
|
59
|
+
export declare const layoutColumnMartinTopFixesOld: import("@emotion/react").SerializedStyles;
|