@atlaskit/editor-core 208.6.1 → 208.6.2
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 +9 -0
- package/dist/cjs/ui/ContentStyles/index.js +1 -1
- package/dist/cjs/ui/ContentStyles/status.js +25 -25
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer.js +0 -6
- package/dist/cjs/ui/EditorContentContainer/styles/statusStyles.js +50 -63
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/ContentStyles/index.js +2 -2
- package/dist/es2019/ui/ContentStyles/status.js +24 -24
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer.js +1 -7
- package/dist/es2019/ui/EditorContentContainer/styles/statusStyles.js +49 -62
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/ContentStyles/index.js +2 -2
- package/dist/esm/ui/ContentStyles/status.js +24 -24
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer.js +1 -7
- package/dist/esm/ui/EditorContentContainer/styles/statusStyles.js +49 -62
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/ui/ContentStyles/status.d.ts +1 -1
- package/dist/types/ui/EditorContentContainer/styles/statusStyles.d.ts +0 -3
- package/dist/types-ts4.5/ui/ContentStyles/status.d.ts +1 -1
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/statusStyles.d.ts +0 -3
- package/package.json +6 -10
|
@@ -38,47 +38,9 @@ export const statusStyles = css({
|
|
|
38
38
|
boxShadow: `0 0 0 1px ${"var(--ds-border-danger, #E2483D)"}`
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
45
|
-
export const statusStylesMixin_fg_platform_component_visual_refresh = css({
|
|
46
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
47
|
-
'.statusView-content-wrap': {
|
|
48
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
49
|
-
'&.ak-editor-selected-node .status-lozenge-span > span': {
|
|
50
|
-
boxShadow: `0 0 0 2px ${"var(--ds-border-selected, #0C66E4)"}`
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
56
|
-
export const statusStylesMixin_without_fg_platform_component_visual_refresh = css({
|
|
57
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
58
|
-
'.statusView-content-wrap': {
|
|
59
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
60
|
-
'&.ak-editor-selected-node .status-lozenge-span > span': {
|
|
61
|
-
// getSelectionStyles([SelectionStyle.BoxShadow]);
|
|
62
|
-
boxShadow: `0 0 0 1px ${"var(--ds-border-selected, #0C66E4)"}`,
|
|
63
|
-
borderColor: 'transparent',
|
|
64
|
-
// hideNativeBrowserTextSelectionStyles
|
|
65
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
66
|
-
'&::selection, & *::selection': {
|
|
67
|
-
backgroundColor: 'transparent'
|
|
68
|
-
},
|
|
69
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
70
|
-
'&::-moz-selection, & *::-moz-selection': {
|
|
71
|
-
backgroundColor: 'transparent'
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
});
|
|
76
|
-
|
|
77
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
78
|
-
export const vanillaStatusStyles = css({
|
|
79
|
-
// baseVanillaStatusStyles
|
|
41
|
+
},
|
|
80
42
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
81
|
-
'[data-prosemirror-node-
|
|
43
|
+
'[data-prosemirror-node-name="status"] .lozenge-wrapper': {
|
|
82
44
|
backgroundColor: "var(--ds-background-neutral, #091E420F)",
|
|
83
45
|
maxWidth: '100%',
|
|
84
46
|
paddingInline: "var(--ds-space-050, 4px)",
|
|
@@ -92,7 +54,7 @@ export const vanillaStatusStyles = css({
|
|
|
92
54
|
border: 'none'
|
|
93
55
|
},
|
|
94
56
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
95
|
-
'[data-prosemirror-node-
|
|
57
|
+
'[data-prosemirror-node-name="status"] .lozenge-text': {
|
|
96
58
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
97
59
|
fontSize: '11px',
|
|
98
60
|
fontStyle: 'normal',
|
|
@@ -110,92 +72,117 @@ export const vanillaStatusStyles = css({
|
|
|
110
72
|
});
|
|
111
73
|
|
|
112
74
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
113
|
-
export const
|
|
75
|
+
export const statusStylesMixin_fg_platform_component_visual_refresh = css({
|
|
76
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
77
|
+
'.statusView-content-wrap': {
|
|
78
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
79
|
+
'&.ak-editor-selected-node .status-lozenge-span > span': {
|
|
80
|
+
boxShadow: `0 0 0 2px ${"var(--ds-border-selected, #0C66E4)"}`
|
|
81
|
+
}
|
|
82
|
+
},
|
|
114
83
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
115
|
-
'[data-prosemirror-node-
|
|
84
|
+
'[data-prosemirror-node-name="status"] .lozenge-text': {
|
|
116
85
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
117
86
|
color: '#292A2E'
|
|
118
87
|
},
|
|
119
88
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
120
|
-
'[data-prosemirror-node-
|
|
89
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] > .lozenge-wrapper': {
|
|
121
90
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
122
91
|
backgroundColor: '#DDDEE1'
|
|
123
92
|
},
|
|
124
93
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
125
|
-
'[data-prosemirror-node-
|
|
94
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] > .lozenge-wrapper': {
|
|
126
95
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
127
96
|
backgroundColor: '#D8A0F7'
|
|
128
97
|
},
|
|
129
98
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
130
|
-
'[data-prosemirror-node-
|
|
99
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] > .lozenge-wrapper': {
|
|
131
100
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
132
101
|
backgroundColor: '#8FB8F6'
|
|
133
102
|
},
|
|
134
103
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
135
|
-
'[data-prosemirror-node-
|
|
104
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] > .lozenge-wrapper': {
|
|
136
105
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
137
106
|
backgroundColor: '#F9C84E'
|
|
138
107
|
},
|
|
139
108
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
140
|
-
'[data-prosemirror-node-
|
|
109
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] > .lozenge-wrapper': {
|
|
141
110
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
142
111
|
backgroundColor: '#FD9891'
|
|
143
112
|
},
|
|
144
113
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
145
|
-
'[data-prosemirror-node-
|
|
114
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] > .lozenge-wrapper': {
|
|
146
115
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
147
116
|
backgroundColor: '#B3DF72'
|
|
148
117
|
}
|
|
149
118
|
});
|
|
150
119
|
|
|
151
120
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
152
|
-
export const
|
|
121
|
+
export const statusStylesMixin_without_fg_platform_component_visual_refresh = css({
|
|
122
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
123
|
+
'.statusView-content-wrap': {
|
|
124
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
125
|
+
'&.ak-editor-selected-node .status-lozenge-span > span': {
|
|
126
|
+
// getSelectionStyles([SelectionStyle.BoxShadow]);
|
|
127
|
+
boxShadow: `0 0 0 1px ${"var(--ds-border-selected, #0C66E4)"}`,
|
|
128
|
+
borderColor: 'transparent',
|
|
129
|
+
// hideNativeBrowserTextSelectionStyles
|
|
130
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
131
|
+
'&::selection, & *::selection': {
|
|
132
|
+
backgroundColor: 'transparent'
|
|
133
|
+
},
|
|
134
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
135
|
+
'&::-moz-selection, & *::-moz-selection': {
|
|
136
|
+
backgroundColor: 'transparent'
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
153
140
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
154
|
-
'[data-prosemirror-node-
|
|
141
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] .lozenge-wrapper': {
|
|
155
142
|
backgroundColor: "var(--ds-background-neutral, #091E420F)"
|
|
156
143
|
},
|
|
157
144
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
158
|
-
'[data-prosemirror-node-
|
|
145
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] .lozenge-text': {
|
|
159
146
|
color: "var(--ds-text-subtle, #44546F)"
|
|
160
147
|
},
|
|
161
148
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
162
|
-
'[data-prosemirror-node-
|
|
149
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] .lozenge-wrapper': {
|
|
163
150
|
backgroundColor: "var(--ds-background-discovery, #F3F0FF)"
|
|
164
151
|
},
|
|
165
152
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
166
|
-
'[data-prosemirror-node-
|
|
153
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] .lozenge-text': {
|
|
167
154
|
color: "var(--ds-text-discovery, #5E4DB2)"
|
|
168
155
|
},
|
|
169
156
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
170
|
-
'[data-prosemirror-node-
|
|
157
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] .lozenge-wrapper': {
|
|
171
158
|
backgroundColor: "var(--ds-background-information, #E9F2FF)"
|
|
172
159
|
},
|
|
173
160
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
174
|
-
'[data-prosemirror-node-
|
|
161
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] .lozenge-text': {
|
|
175
162
|
color: "var(--ds-text-information, #0055CC)"
|
|
176
163
|
},
|
|
177
164
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
178
|
-
'[data-prosemirror-node-
|
|
165
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] .lozenge-wrapper': {
|
|
179
166
|
backgroundColor: "var(--ds-background-warning, #FFF7D6)"
|
|
180
167
|
},
|
|
181
168
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
182
|
-
'[data-prosemirror-node-
|
|
169
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] .lozenge-text': {
|
|
183
170
|
color: "var(--ds-text-warning, #A54800)"
|
|
184
171
|
},
|
|
185
172
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
186
|
-
'[data-prosemirror-node-
|
|
173
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] .lozenge-wrapper': {
|
|
187
174
|
backgroundColor: "var(--ds-background-danger, #FFECEB)"
|
|
188
175
|
},
|
|
189
176
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
190
|
-
'[data-prosemirror-node-
|
|
177
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] .lozenge-text': {
|
|
191
178
|
color: "var(--ds-text-danger, #AE2E24)"
|
|
192
179
|
},
|
|
193
180
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
194
|
-
'[data-prosemirror-node-
|
|
181
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] .lozenge-wrapper': {
|
|
195
182
|
backgroundColor: "var(--ds-background-success, #DCFFF1)"
|
|
196
183
|
},
|
|
197
184
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
198
|
-
'[data-prosemirror-node-
|
|
185
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] .lozenge-text': {
|
|
199
186
|
color: "var(--ds-text-success, #216E4E)"
|
|
200
187
|
}
|
|
201
188
|
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "208.6.
|
|
2
|
+
export const version = "208.6.1";
|
|
@@ -38,7 +38,7 @@ import { extensionStyles } from './extension';
|
|
|
38
38
|
import { layoutStyles } from './layout';
|
|
39
39
|
import { mediaStyles } from './media';
|
|
40
40
|
import { panelStyles } from './panel';
|
|
41
|
-
import { statusStyles,
|
|
41
|
+
import { statusStyles, statusNodeStyles } from './status';
|
|
42
42
|
import { taskDecisionStyles, vanillaTaskDecisionIconWithoutVisualRefresh as vanillaDecisionIconWithoutVisualRefresh, vanillaTaskDecisionIconWithVisualRefresh as vanillaDecisionIconWithVisualRefresh, vanillaTaskDecisionStyles as vanillaDecisionStyles, vanillaTaskItemStyles } from './tasks-and-decisions';
|
|
43
43
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
44
44
|
export var linkStyles = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n\t.ProseMirror {\n\t\t", "\n\t}\n"])), linkSharedStyle());
|
|
@@ -172,7 +172,7 @@ var legacyContentStyles = function legacyContentStyles(props) {
|
|
|
172
172
|
exposure: false
|
|
173
173
|
}) && fg('platform-visual-refresh-icons') && vanillaDecisionIconWithVisualRefresh, editorExperiment('platform_editor_vanilla_dom', true, {
|
|
174
174
|
exposure: false
|
|
175
|
-
}) && !fg('platform-visual-refresh-icons') && vanillaDecisionIconWithoutVisualRefresh, statusStyles,
|
|
175
|
+
}) && !fg('platform-visual-refresh-icons') && vanillaDecisionIconWithoutVisualRefresh, statusStyles, statusNodeStyles(), annotationSharedStyles(), smartCardStyles(), fg('platform-linking-visual-refresh-v1') ? getSmartCardSharedStyles() : smartCardSharedStyles, dateStyles, dateNodeStyles, embedCardStyles(), unsupportedStyles, resizerStyles, pragmaticResizerStyles(), pragmaticStylesLayoutFirstNodeResizeHandleFix(), pragmaticResizerStylesForTooltip(), aiPanelStyles(props.colorMode), firstBlockNodeStylesNew, MediaSharedClassNames.FLOATING_TOOLBAR_COMPONENT, !fg('platform-visual-refresh-icons') ? css(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["\n\t\t\t\t.hyperlink-open-link {\n\t\t\t\t\tmin-width: 24px;\n\t\t\t\t\tsvg {\n\t\t\t\t\t\tmax-width: 18px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t"]))) : null);
|
|
176
176
|
};
|
|
177
177
|
export var createEditorContentStyle = function createEditorContentStyle(styles) {
|
|
178
178
|
return /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
@@ -17,94 +17,94 @@ var getVisualRefreshStatusStyles = function getVisualRefreshStatusStyles() {
|
|
|
17
17
|
var getStatusColors = function getStatusColors() {
|
|
18
18
|
return fg('platform-component-visual-refresh') ? css({
|
|
19
19
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
20
|
-
'[data-prosemirror-node-
|
|
20
|
+
'[data-prosemirror-node-name="status"] .lozenge-text': {
|
|
21
21
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
22
22
|
color: '#292A2E'
|
|
23
23
|
},
|
|
24
24
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
25
|
-
'[data-prosemirror-node-
|
|
25
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] > .lozenge-wrapper': {
|
|
26
26
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
27
27
|
backgroundColor: '#DDDEE1'
|
|
28
28
|
},
|
|
29
29
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
30
|
-
'[data-prosemirror-node-
|
|
30
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] > .lozenge-wrapper': {
|
|
31
31
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
32
32
|
backgroundColor: '#D8A0F7'
|
|
33
33
|
},
|
|
34
34
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
35
|
-
'[data-prosemirror-node-
|
|
35
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] > .lozenge-wrapper': {
|
|
36
36
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
37
37
|
backgroundColor: '#8FB8F6'
|
|
38
38
|
},
|
|
39
39
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
40
|
-
'[data-prosemirror-node-
|
|
40
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] > .lozenge-wrapper': {
|
|
41
41
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
42
42
|
backgroundColor: '#F9C84E'
|
|
43
43
|
},
|
|
44
44
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
45
|
-
'[data-prosemirror-node-
|
|
45
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] > .lozenge-wrapper': {
|
|
46
46
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
47
47
|
backgroundColor: '#FD9891'
|
|
48
48
|
},
|
|
49
49
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
50
|
-
'[data-prosemirror-node-
|
|
50
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] > .lozenge-wrapper': {
|
|
51
51
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
52
52
|
backgroundColor: '#B3DF72'
|
|
53
53
|
}
|
|
54
54
|
}) : css({
|
|
55
55
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
56
|
-
'[data-prosemirror-node-
|
|
56
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] .lozenge-wrapper': {
|
|
57
57
|
backgroundColor: "var(--ds-background-neutral, #091E420F)"
|
|
58
58
|
},
|
|
59
59
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
60
|
-
'[data-prosemirror-node-
|
|
60
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] .lozenge-text': {
|
|
61
61
|
color: "var(--ds-text-subtle, #44546F)"
|
|
62
62
|
},
|
|
63
63
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
64
|
-
'[data-prosemirror-node-
|
|
64
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] .lozenge-wrapper': {
|
|
65
65
|
backgroundColor: "var(--ds-background-discovery, #F3F0FF)"
|
|
66
66
|
},
|
|
67
67
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
68
|
-
'[data-prosemirror-node-
|
|
68
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] .lozenge-text': {
|
|
69
69
|
color: "var(--ds-text-discovery, #5E4DB2)"
|
|
70
70
|
},
|
|
71
71
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
72
|
-
'[data-prosemirror-node-
|
|
72
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] .lozenge-wrapper': {
|
|
73
73
|
backgroundColor: "var(--ds-background-information, #E9F2FF)"
|
|
74
74
|
},
|
|
75
75
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
76
|
-
'[data-prosemirror-node-
|
|
76
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] .lozenge-text': {
|
|
77
77
|
color: "var(--ds-text-information, #0055CC)"
|
|
78
78
|
},
|
|
79
79
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
80
|
-
'[data-prosemirror-node-
|
|
80
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] .lozenge-wrapper': {
|
|
81
81
|
backgroundColor: "var(--ds-background-warning, #FFF7D6)"
|
|
82
82
|
},
|
|
83
83
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
84
|
-
'[data-prosemirror-node-
|
|
84
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] .lozenge-text': {
|
|
85
85
|
color: "var(--ds-text-warning, #A54800)"
|
|
86
86
|
},
|
|
87
87
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
88
|
-
'[data-prosemirror-node-
|
|
88
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] .lozenge-wrapper': {
|
|
89
89
|
backgroundColor: "var(--ds-background-danger, #FFECEB)"
|
|
90
90
|
},
|
|
91
91
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
92
|
-
'[data-prosemirror-node-
|
|
92
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] .lozenge-text': {
|
|
93
93
|
color: "var(--ds-text-danger, #AE2E24)"
|
|
94
94
|
},
|
|
95
95
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
96
|
-
'[data-prosemirror-node-
|
|
96
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] .lozenge-wrapper': {
|
|
97
97
|
backgroundColor: "var(--ds-background-success, #DCFFF1)"
|
|
98
98
|
},
|
|
99
99
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
100
|
-
'[data-prosemirror-node-
|
|
100
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] .lozenge-text': {
|
|
101
101
|
color: "var(--ds-text-success, #216E4E)"
|
|
102
102
|
}
|
|
103
103
|
});
|
|
104
104
|
};
|
|
105
|
-
var
|
|
105
|
+
var baseStatusStyles = css({
|
|
106
106
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
107
|
-
'[data-prosemirror-node-
|
|
107
|
+
'[data-prosemirror-node-name="status"] .lozenge-wrapper': {
|
|
108
108
|
backgroundColor: "var(--ds-background-neutral, #091E420F)",
|
|
109
109
|
maxWidth: '100%',
|
|
110
110
|
paddingInline: "var(--ds-space-050, 4px)",
|
|
@@ -118,7 +118,7 @@ var baseVanillaStatusStyles = css({
|
|
|
118
118
|
border: 'none'
|
|
119
119
|
},
|
|
120
120
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
121
|
-
'[data-prosemirror-node-
|
|
121
|
+
'[data-prosemirror-node-name="status"] .lozenge-text': {
|
|
122
122
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
123
123
|
fontSize: '11px',
|
|
124
124
|
fontStyle: 'normal',
|
|
@@ -136,8 +136,8 @@ var baseVanillaStatusStyles = css({
|
|
|
136
136
|
});
|
|
137
137
|
|
|
138
138
|
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
139
|
-
export var
|
|
140
|
-
return css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n\t", "\n\t", "\n"])),
|
|
139
|
+
export var statusNodeStyles = function statusNodeStyles() {
|
|
140
|
+
return css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n\t", "\n\t", "\n"])), baseStatusStyles, getStatusColors());
|
|
141
141
|
};
|
|
142
142
|
|
|
143
143
|
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
@@ -54,7 +54,7 @@ import { hideCursorWhenHideSelectionStyles, hideSelectionStyles, selectedNodeSty
|
|
|
54
54
|
import { selectionToolbarAnimationStyles } from './styles/selectionToolbarStyles';
|
|
55
55
|
import { shadowStyles } from './styles/shadowStyles';
|
|
56
56
|
import { linkingVisualRefreshV1Styles, smartCardStyles, smartLinksInLivePagesStyles, smartLinksInLivePagesStylesOld } from './styles/smartCardStyles';
|
|
57
|
-
import { statusStyles, statusStylesMixin_fg_platform_component_visual_refresh, statusStylesMixin_without_fg_platform_component_visual_refresh
|
|
57
|
+
import { statusStyles, statusStylesMixin_fg_platform_component_visual_refresh, statusStylesMixin_without_fg_platform_component_visual_refresh } from './styles/statusStyles';
|
|
58
58
|
import { tableCommentEditorStyles, tableLayoutFixes } from './styles/tableStyles';
|
|
59
59
|
import { decisionStyles, tasksAndDecisionsStyles, vanillaDecisionIconWithVisualRefresh, vanillaDecisionIconWithoutVisualRefresh, vanillaDecisionStyles, vanillaTaskItemStyles } from './styles/tasksAndDecisionsStyles';
|
|
60
60
|
import { telepointerColorAndCommonStyle, telepointerStyle, telepointerStyleWithInitialOnly } from './styles/telepointerStyles';
|
|
@@ -209,12 +209,6 @@ var EditorContentContainer = /*#__PURE__*/React.forwardRef(function (props, ref)
|
|
|
209
209
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
210
210
|
statusStylesMixin_without_fg_platform_component_visual_refresh,
|
|
211
211
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
212
|
-
editorExperiment('platform_editor_vanilla_dom', true) && vanillaStatusStyles, editorExperiment('platform_editor_vanilla_dom', true) && fg('platform-component-visual-refresh') &&
|
|
213
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
214
|
-
vanillaStatusStylesMixin_fg_platform_component_visual_refresh, editorExperiment('platform_editor_vanilla_dom', true) && !fg('platform-component-visual-refresh') &&
|
|
215
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
216
|
-
vanillaStatusStylesMixin_without_fg_platform_component_visual_refresh,
|
|
217
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
218
212
|
annotationStyles,
|
|
219
213
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
220
214
|
smartCardStyles,
|
|
@@ -38,47 +38,9 @@ export var statusStyles = css({
|
|
|
38
38
|
boxShadow: "0 0 0 1px ".concat("var(--ds-border-danger, #E2483D)")
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
45
|
-
export var statusStylesMixin_fg_platform_component_visual_refresh = css({
|
|
46
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
47
|
-
'.statusView-content-wrap': {
|
|
48
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
49
|
-
'&.ak-editor-selected-node .status-lozenge-span > span': {
|
|
50
|
-
boxShadow: "0 0 0 2px ".concat("var(--ds-border-selected, #0C66E4)")
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
56
|
-
export var statusStylesMixin_without_fg_platform_component_visual_refresh = css({
|
|
57
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
58
|
-
'.statusView-content-wrap': {
|
|
59
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
60
|
-
'&.ak-editor-selected-node .status-lozenge-span > span': {
|
|
61
|
-
// getSelectionStyles([SelectionStyle.BoxShadow]);
|
|
62
|
-
boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #0C66E4)"),
|
|
63
|
-
borderColor: 'transparent',
|
|
64
|
-
// hideNativeBrowserTextSelectionStyles
|
|
65
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
66
|
-
'&::selection, & *::selection': {
|
|
67
|
-
backgroundColor: 'transparent'
|
|
68
|
-
},
|
|
69
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
70
|
-
'&::-moz-selection, & *::-moz-selection': {
|
|
71
|
-
backgroundColor: 'transparent'
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
});
|
|
76
|
-
|
|
77
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
78
|
-
export var vanillaStatusStyles = css({
|
|
79
|
-
// baseVanillaStatusStyles
|
|
41
|
+
},
|
|
80
42
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
81
|
-
'[data-prosemirror-node-
|
|
43
|
+
'[data-prosemirror-node-name="status"] .lozenge-wrapper': {
|
|
82
44
|
backgroundColor: "var(--ds-background-neutral, #091E420F)",
|
|
83
45
|
maxWidth: '100%',
|
|
84
46
|
paddingInline: "var(--ds-space-050, 4px)",
|
|
@@ -92,7 +54,7 @@ export var vanillaStatusStyles = css({
|
|
|
92
54
|
border: 'none'
|
|
93
55
|
},
|
|
94
56
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
95
|
-
'[data-prosemirror-node-
|
|
57
|
+
'[data-prosemirror-node-name="status"] .lozenge-text': {
|
|
96
58
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
97
59
|
fontSize: '11px',
|
|
98
60
|
fontStyle: 'normal',
|
|
@@ -110,92 +72,117 @@ export var vanillaStatusStyles = css({
|
|
|
110
72
|
});
|
|
111
73
|
|
|
112
74
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
113
|
-
export var
|
|
75
|
+
export var statusStylesMixin_fg_platform_component_visual_refresh = css({
|
|
76
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
77
|
+
'.statusView-content-wrap': {
|
|
78
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
79
|
+
'&.ak-editor-selected-node .status-lozenge-span > span': {
|
|
80
|
+
boxShadow: "0 0 0 2px ".concat("var(--ds-border-selected, #0C66E4)")
|
|
81
|
+
}
|
|
82
|
+
},
|
|
114
83
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
115
|
-
'[data-prosemirror-node-
|
|
84
|
+
'[data-prosemirror-node-name="status"] .lozenge-text': {
|
|
116
85
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
117
86
|
color: '#292A2E'
|
|
118
87
|
},
|
|
119
88
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
120
|
-
'[data-prosemirror-node-
|
|
89
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] > .lozenge-wrapper': {
|
|
121
90
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
122
91
|
backgroundColor: '#DDDEE1'
|
|
123
92
|
},
|
|
124
93
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
125
|
-
'[data-prosemirror-node-
|
|
94
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] > .lozenge-wrapper': {
|
|
126
95
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
127
96
|
backgroundColor: '#D8A0F7'
|
|
128
97
|
},
|
|
129
98
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
130
|
-
'[data-prosemirror-node-
|
|
99
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] > .lozenge-wrapper': {
|
|
131
100
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
132
101
|
backgroundColor: '#8FB8F6'
|
|
133
102
|
},
|
|
134
103
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
135
|
-
'[data-prosemirror-node-
|
|
104
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] > .lozenge-wrapper': {
|
|
136
105
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
137
106
|
backgroundColor: '#F9C84E'
|
|
138
107
|
},
|
|
139
108
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
140
|
-
'[data-prosemirror-node-
|
|
109
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] > .lozenge-wrapper': {
|
|
141
110
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
142
111
|
backgroundColor: '#FD9891'
|
|
143
112
|
},
|
|
144
113
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
145
|
-
'[data-prosemirror-node-
|
|
114
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] > .lozenge-wrapper': {
|
|
146
115
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
147
116
|
backgroundColor: '#B3DF72'
|
|
148
117
|
}
|
|
149
118
|
});
|
|
150
119
|
|
|
151
120
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
152
|
-
export var
|
|
121
|
+
export var statusStylesMixin_without_fg_platform_component_visual_refresh = css({
|
|
122
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
123
|
+
'.statusView-content-wrap': {
|
|
124
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
125
|
+
'&.ak-editor-selected-node .status-lozenge-span > span': {
|
|
126
|
+
// getSelectionStyles([SelectionStyle.BoxShadow]);
|
|
127
|
+
boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, #0C66E4)"),
|
|
128
|
+
borderColor: 'transparent',
|
|
129
|
+
// hideNativeBrowserTextSelectionStyles
|
|
130
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
131
|
+
'&::selection, & *::selection': {
|
|
132
|
+
backgroundColor: 'transparent'
|
|
133
|
+
},
|
|
134
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
135
|
+
'&::-moz-selection, & *::-moz-selection': {
|
|
136
|
+
backgroundColor: 'transparent'
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
153
140
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
154
|
-
'[data-prosemirror-node-
|
|
141
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] .lozenge-wrapper': {
|
|
155
142
|
backgroundColor: "var(--ds-background-neutral, #091E420F)"
|
|
156
143
|
},
|
|
157
144
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
158
|
-
'[data-prosemirror-node-
|
|
145
|
+
'[data-prosemirror-node-name="status"] > [data-color=neutral] .lozenge-text': {
|
|
159
146
|
color: "var(--ds-text-subtle, #44546F)"
|
|
160
147
|
},
|
|
161
148
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
162
|
-
'[data-prosemirror-node-
|
|
149
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] .lozenge-wrapper': {
|
|
163
150
|
backgroundColor: "var(--ds-background-discovery, #F3F0FF)"
|
|
164
151
|
},
|
|
165
152
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
166
|
-
'[data-prosemirror-node-
|
|
153
|
+
'[data-prosemirror-node-name="status"] > [data-color=purple] .lozenge-text': {
|
|
167
154
|
color: "var(--ds-text-discovery, #5E4DB2)"
|
|
168
155
|
},
|
|
169
156
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
170
|
-
'[data-prosemirror-node-
|
|
157
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] .lozenge-wrapper': {
|
|
171
158
|
backgroundColor: "var(--ds-background-information, #E9F2FF)"
|
|
172
159
|
},
|
|
173
160
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
174
|
-
'[data-prosemirror-node-
|
|
161
|
+
'[data-prosemirror-node-name="status"] > [data-color=blue] .lozenge-text': {
|
|
175
162
|
color: "var(--ds-text-information, #0055CC)"
|
|
176
163
|
},
|
|
177
164
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
178
|
-
'[data-prosemirror-node-
|
|
165
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] .lozenge-wrapper': {
|
|
179
166
|
backgroundColor: "var(--ds-background-warning, #FFF7D6)"
|
|
180
167
|
},
|
|
181
168
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
182
|
-
'[data-prosemirror-node-
|
|
169
|
+
'[data-prosemirror-node-name="status"] > [data-color=yellow] .lozenge-text': {
|
|
183
170
|
color: "var(--ds-text-warning, #A54800)"
|
|
184
171
|
},
|
|
185
172
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
186
|
-
'[data-prosemirror-node-
|
|
173
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] .lozenge-wrapper': {
|
|
187
174
|
backgroundColor: "var(--ds-background-danger, #FFECEB)"
|
|
188
175
|
},
|
|
189
176
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
190
|
-
'[data-prosemirror-node-
|
|
177
|
+
'[data-prosemirror-node-name="status"] > [data-color=red] .lozenge-text': {
|
|
191
178
|
color: "var(--ds-text-danger, #AE2E24)"
|
|
192
179
|
},
|
|
193
180
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
194
|
-
'[data-prosemirror-node-
|
|
181
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] .lozenge-wrapper': {
|
|
195
182
|
backgroundColor: "var(--ds-background-success, #DCFFF1)"
|
|
196
183
|
},
|
|
197
184
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
198
|
-
'[data-prosemirror-node-
|
|
185
|
+
'[data-prosemirror-node-name="status"] > [data-color=green] .lozenge-text': {
|
|
199
186
|
color: "var(--ds-text-success, #216E4E)"
|
|
200
187
|
}
|
|
201
188
|
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "208.6.
|
|
2
|
+
export var version = "208.6.1";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const statusNodeStyles: () => import("@emotion/react").SerializedStyles;
|
|
2
2
|
export declare const statusStyles: import("@emotion/react").SerializedStyles;
|
|
@@ -1,6 +1,3 @@
|
|
|
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
3
|
export declare const statusStylesMixin_without_fg_platform_component_visual_refresh: import("@emotion/react").SerializedStyles;
|
|
4
|
-
export declare const vanillaStatusStyles: import("@emotion/react").SerializedStyles;
|
|
5
|
-
export declare const vanillaStatusStylesMixin_fg_platform_component_visual_refresh: import("@emotion/react").SerializedStyles;
|
|
6
|
-
export declare const vanillaStatusStylesMixin_without_fg_platform_component_visual_refresh: import("@emotion/react").SerializedStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const statusNodeStyles: () => import("@emotion/react").SerializedStyles;
|
|
2
2
|
export declare const statusStyles: import("@emotion/react").SerializedStyles;
|
|
@@ -1,6 +1,3 @@
|
|
|
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
3
|
export declare const statusStylesMixin_without_fg_platform_component_visual_refresh: import("@emotion/react").SerializedStyles;
|
|
4
|
-
export declare const vanillaStatusStyles: import("@emotion/react").SerializedStyles;
|
|
5
|
-
export declare const vanillaStatusStylesMixin_fg_platform_component_visual_refresh: import("@emotion/react").SerializedStyles;
|
|
6
|
-
export declare const vanillaStatusStylesMixin_without_fg_platform_component_visual_refresh: import("@emotion/react").SerializedStyles;
|