labsense-ui-kit 1.2.49 → 1.2.50
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/dist/Themes/index.d.ts +24 -5
- package/dist/index.js +4383 -2095
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4382 -2094
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/Themes/index.d.ts
CHANGED
|
@@ -56,11 +56,17 @@ export interface TransparentColors {
|
|
|
56
56
|
white10: string;
|
|
57
57
|
white20: string;
|
|
58
58
|
white30: string;
|
|
59
|
-
white40
|
|
60
|
-
white50
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
59
|
+
white40?: string;
|
|
60
|
+
white50?: string;
|
|
61
|
+
white100?: string;
|
|
62
|
+
white200?: string;
|
|
63
|
+
white300?: string;
|
|
64
|
+
black10?: string;
|
|
65
|
+
black20?: string;
|
|
66
|
+
black30?: string;
|
|
67
|
+
black100?: string;
|
|
68
|
+
black200?: string;
|
|
69
|
+
black300?: string;
|
|
64
70
|
}
|
|
65
71
|
export interface ThemeColorsInterface {
|
|
66
72
|
vms: {
|
|
@@ -125,6 +131,19 @@ export interface ThemeColorsInterface {
|
|
|
125
131
|
info: ColorScale;
|
|
126
132
|
transparent: TransparentColors;
|
|
127
133
|
};
|
|
134
|
+
SNetLabsWebsite: {
|
|
135
|
+
primary: ColorScale;
|
|
136
|
+
secondary: ColorScale;
|
|
137
|
+
gray: ColorScale;
|
|
138
|
+
error: ColorScale;
|
|
139
|
+
success: ColorScale;
|
|
140
|
+
warning: ColorScale;
|
|
141
|
+
info: ColorScale;
|
|
142
|
+
tertiary: ColorScale;
|
|
143
|
+
purple: ColorScale;
|
|
144
|
+
yellow: ColorScale;
|
|
145
|
+
transparent: TransparentColors;
|
|
146
|
+
};
|
|
128
147
|
}
|
|
129
148
|
export declare type ThemeMode = 'light' | 'dark' | 'device';
|
|
130
149
|
export declare type EffectiveTheme = 'light' | 'dark';
|