@elastic/eui-theme-common 1.2.1 → 2.1.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.
|
@@ -173,6 +173,7 @@ export declare type _EuiThemeBackgroundColors = {
|
|
|
173
173
|
backgroundBaseFormsControlDisabled: ColorModeSwitch;
|
|
174
174
|
backgroundBaseInteractiveHover: ColorModeSwitch;
|
|
175
175
|
backgroundBaseInteractiveSelect: ColorModeSwitch;
|
|
176
|
+
backgroundBaseInteractiveSelectHover: ColorModeSwitch;
|
|
176
177
|
backgroundBaseInteractiveOverlay: ColorModeSwitch;
|
|
177
178
|
backgroundBaseSkeletonEdge: ColorModeSwitch;
|
|
178
179
|
backgroundBaseSkeletonMiddle: ColorModeSwitch;
|
|
@@ -249,6 +250,7 @@ export declare type _EuiThemeBorderColors = {
|
|
|
249
250
|
borderStrongWarning: ColorModeSwitch;
|
|
250
251
|
borderStrongRisk: ColorModeSwitch;
|
|
251
252
|
borderStrongDanger: ColorModeSwitch;
|
|
253
|
+
borderStrongText: ColorModeSwitch;
|
|
252
254
|
};
|
|
253
255
|
export declare type _EuiThemeVisColors = {
|
|
254
256
|
euiColorVis0: string;
|
|
@@ -281,20 +283,16 @@ export declare type _EuiThemeVisColors = {
|
|
|
281
283
|
euiColorVisBehindText8: string;
|
|
282
284
|
/** @deprecated - temp token; used only during theme migration */
|
|
283
285
|
euiColorVisBehindText9: string;
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
euiColorVisAsTextDark3: string;
|
|
295
|
-
euiColorVisAsTextDark4: string;
|
|
296
|
-
euiColorVisAsTextDark5: string;
|
|
297
|
-
euiColorVisAsTextDark6: string;
|
|
286
|
+
euiColorVisText0: string;
|
|
287
|
+
euiColorVisText1: string;
|
|
288
|
+
euiColorVisText2: string;
|
|
289
|
+
euiColorVisText3: string;
|
|
290
|
+
euiColorVisText4: string;
|
|
291
|
+
euiColorVisText5: string;
|
|
292
|
+
euiColorVisText6: string;
|
|
293
|
+
euiColorVisText7: string;
|
|
294
|
+
euiColorVisText8: string;
|
|
295
|
+
euiColorVisText9: string;
|
|
298
296
|
euiColorVisNeutral0: string;
|
|
299
297
|
euiColorVisNeutral1: string;
|
|
300
298
|
euiColorVisSuccess0: string;
|
|
@@ -332,8 +330,9 @@ export declare type _EuiThemeConstantColors = {
|
|
|
332
330
|
ink: string;
|
|
333
331
|
plainLight: string;
|
|
334
332
|
plainDark: string;
|
|
335
|
-
vis: _EuiThemeVisColors;
|
|
336
333
|
severity: _EuiThemeSeverityColors;
|
|
337
334
|
};
|
|
338
335
|
export declare type _EuiThemeColorsMode = _EuiThemeBrandColors & _EuiThemeBrandTextColors & _EuiThemeShadeColors & _EuiThemeSpecialColors & _EuiThemeTextColors & _EuiThemeBackgroundColors & _EuiThemeTransparentBackgroundColors & _EuiThemeBorderColors;
|
|
339
|
-
export declare type _EuiThemeColors = StrictColorModeSwitch<_EuiThemeColorsMode
|
|
336
|
+
export declare type _EuiThemeColors = StrictColorModeSwitch<_EuiThemeColorsMode & {
|
|
337
|
+
vis: _EuiThemeVisColors;
|
|
338
|
+
}> & _EuiThemeConstantColors;
|
|
@@ -16,6 +16,7 @@ export declare type _EuiThemeComponentColors = {
|
|
|
16
16
|
codeBackground: ColorModeSwitch;
|
|
17
17
|
codeBackgroundSelected: ColorModeSwitch;
|
|
18
18
|
codeColor: ColorModeSwitch;
|
|
19
|
+
codeInlineBackground: ColorModeSwitch;
|
|
19
20
|
codeInlineColor: ColorModeSwitch;
|
|
20
21
|
codeCommentColor: ColorModeSwitch;
|
|
21
22
|
codeSelectorColor: ColorModeSwitch;
|
|
@@ -41,9 +42,16 @@ export declare type _EuiThemeComponentColors = {
|
|
|
41
42
|
collapsibleNavGroupBackgroundDark: ColorModeSwitch;
|
|
42
43
|
dataGridBorderColor: ColorModeSwitch;
|
|
43
44
|
dataGridVerticalLineBorderColor: ColorModeSwitch;
|
|
44
|
-
|
|
45
|
+
dataGridRowBackground: ColorModeSwitch;
|
|
45
46
|
dataGridRowBackgroundHover: ColorModeSwitch;
|
|
46
47
|
dataGridRowBackgroundSelect: ColorModeSwitch;
|
|
48
|
+
dataGridRowBackgroundSelectHover: ColorModeSwitch;
|
|
49
|
+
dataGridRowStripesBackground: ColorModeSwitch;
|
|
50
|
+
dataGridRowStripesBackgroundHover: ColorModeSwitch;
|
|
51
|
+
dataGridRowStripesBackgroundStriped: ColorModeSwitch;
|
|
52
|
+
dataGridRowStripesBackgroundStripedHover: ColorModeSwitch;
|
|
53
|
+
dataGridRowStripesBackgroundSelect: ColorModeSwitch;
|
|
54
|
+
dataGridRowStripesBackgroundSelectHover: ColorModeSwitch;
|
|
47
55
|
dragDropDraggingBackground: ColorModeSwitch;
|
|
48
56
|
dragDropDraggingOverBackground: ColorModeSwitch;
|
|
49
57
|
headerBackground: ColorModeSwitch;
|
|
@@ -173,6 +173,7 @@ export declare type _EuiThemeBackgroundColors = {
|
|
|
173
173
|
backgroundBaseFormsControlDisabled: ColorModeSwitch;
|
|
174
174
|
backgroundBaseInteractiveHover: ColorModeSwitch;
|
|
175
175
|
backgroundBaseInteractiveSelect: ColorModeSwitch;
|
|
176
|
+
backgroundBaseInteractiveSelectHover: ColorModeSwitch;
|
|
176
177
|
backgroundBaseInteractiveOverlay: ColorModeSwitch;
|
|
177
178
|
backgroundBaseSkeletonEdge: ColorModeSwitch;
|
|
178
179
|
backgroundBaseSkeletonMiddle: ColorModeSwitch;
|
|
@@ -249,6 +250,7 @@ export declare type _EuiThemeBorderColors = {
|
|
|
249
250
|
borderStrongWarning: ColorModeSwitch;
|
|
250
251
|
borderStrongRisk: ColorModeSwitch;
|
|
251
252
|
borderStrongDanger: ColorModeSwitch;
|
|
253
|
+
borderStrongText: ColorModeSwitch;
|
|
252
254
|
};
|
|
253
255
|
export declare type _EuiThemeVisColors = {
|
|
254
256
|
euiColorVis0: string;
|
|
@@ -281,20 +283,16 @@ export declare type _EuiThemeVisColors = {
|
|
|
281
283
|
euiColorVisBehindText8: string;
|
|
282
284
|
/** @deprecated - temp token; used only during theme migration */
|
|
283
285
|
euiColorVisBehindText9: string;
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
euiColorVisAsTextDark3: string;
|
|
295
|
-
euiColorVisAsTextDark4: string;
|
|
296
|
-
euiColorVisAsTextDark5: string;
|
|
297
|
-
euiColorVisAsTextDark6: string;
|
|
286
|
+
euiColorVisText0: string;
|
|
287
|
+
euiColorVisText1: string;
|
|
288
|
+
euiColorVisText2: string;
|
|
289
|
+
euiColorVisText3: string;
|
|
290
|
+
euiColorVisText4: string;
|
|
291
|
+
euiColorVisText5: string;
|
|
292
|
+
euiColorVisText6: string;
|
|
293
|
+
euiColorVisText7: string;
|
|
294
|
+
euiColorVisText8: string;
|
|
295
|
+
euiColorVisText9: string;
|
|
298
296
|
euiColorVisNeutral0: string;
|
|
299
297
|
euiColorVisNeutral1: string;
|
|
300
298
|
euiColorVisSuccess0: string;
|
|
@@ -332,8 +330,9 @@ export declare type _EuiThemeConstantColors = {
|
|
|
332
330
|
ink: string;
|
|
333
331
|
plainLight: string;
|
|
334
332
|
plainDark: string;
|
|
335
|
-
vis: _EuiThemeVisColors;
|
|
336
333
|
severity: _EuiThemeSeverityColors;
|
|
337
334
|
};
|
|
338
335
|
export declare type _EuiThemeColorsMode = _EuiThemeBrandColors & _EuiThemeBrandTextColors & _EuiThemeShadeColors & _EuiThemeSpecialColors & _EuiThemeTextColors & _EuiThemeBackgroundColors & _EuiThemeTransparentBackgroundColors & _EuiThemeBorderColors;
|
|
339
|
-
export declare type _EuiThemeColors = StrictColorModeSwitch<_EuiThemeColorsMode
|
|
336
|
+
export declare type _EuiThemeColors = StrictColorModeSwitch<_EuiThemeColorsMode & {
|
|
337
|
+
vis: _EuiThemeVisColors;
|
|
338
|
+
}> & _EuiThemeConstantColors;
|
|
@@ -16,6 +16,7 @@ export declare type _EuiThemeComponentColors = {
|
|
|
16
16
|
codeBackground: ColorModeSwitch;
|
|
17
17
|
codeBackgroundSelected: ColorModeSwitch;
|
|
18
18
|
codeColor: ColorModeSwitch;
|
|
19
|
+
codeInlineBackground: ColorModeSwitch;
|
|
19
20
|
codeInlineColor: ColorModeSwitch;
|
|
20
21
|
codeCommentColor: ColorModeSwitch;
|
|
21
22
|
codeSelectorColor: ColorModeSwitch;
|
|
@@ -41,9 +42,16 @@ export declare type _EuiThemeComponentColors = {
|
|
|
41
42
|
collapsibleNavGroupBackgroundDark: ColorModeSwitch;
|
|
42
43
|
dataGridBorderColor: ColorModeSwitch;
|
|
43
44
|
dataGridVerticalLineBorderColor: ColorModeSwitch;
|
|
44
|
-
|
|
45
|
+
dataGridRowBackground: ColorModeSwitch;
|
|
45
46
|
dataGridRowBackgroundHover: ColorModeSwitch;
|
|
46
47
|
dataGridRowBackgroundSelect: ColorModeSwitch;
|
|
48
|
+
dataGridRowBackgroundSelectHover: ColorModeSwitch;
|
|
49
|
+
dataGridRowStripesBackground: ColorModeSwitch;
|
|
50
|
+
dataGridRowStripesBackgroundHover: ColorModeSwitch;
|
|
51
|
+
dataGridRowStripesBackgroundStriped: ColorModeSwitch;
|
|
52
|
+
dataGridRowStripesBackgroundStripedHover: ColorModeSwitch;
|
|
53
|
+
dataGridRowStripesBackgroundSelect: ColorModeSwitch;
|
|
54
|
+
dataGridRowStripesBackgroundSelectHover: ColorModeSwitch;
|
|
47
55
|
dragDropDraggingBackground: ColorModeSwitch;
|
|
48
56
|
dragDropDraggingOverBackground: ColorModeSwitch;
|
|
49
57
|
headerBackground: ColorModeSwitch;
|