@nova-design-system/nova-base 3.20.0 → 3.21.1-beta.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.
- package/assets/icons/icon-sprite.svg +1 -1
- package/assets/nova-fonts.css +10 -1
- package/dist/cjs/generated/nova-tailwind-components.js +8 -1
- package/dist/css/nova-utils.css +5 -0
- package/dist/css/ocean.css +168 -126
- package/dist/css/spark.css +170 -128
- package/dist/generated/nova-tailwind-components.d.ts +5 -1
- package/dist/generated/nova-tailwind-components.js +8 -1
- package/dist/js/ocean_dark.d.ts +64 -64
- package/dist/js/ocean_dark.js +71 -71
- package/dist/js/ocean_light.d.ts +64 -64
- package/dist/js/ocean_light.js +64 -64
- package/dist/js/spacings.d.ts +50 -8
- package/dist/js/spacings.js +50 -8
- package/dist/js/spark_dark.d.ts +64 -64
- package/dist/js/spark_dark.js +72 -72
- package/dist/js/spark_light.d.ts +64 -64
- package/dist/js/spark_light.js +64 -64
- package/package.json +2 -1
|
@@ -217,7 +217,10 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
217
217
|
'transition': 'background-color 150ms ease-out',
|
|
218
218
|
'userSelect': 'none',
|
|
219
219
|
'cursor': 'pointer',
|
|
220
|
-
'height':
|
|
220
|
+
'height': [
|
|
221
|
+
'fit-content',
|
|
222
|
+
'var(--button-md-height)'
|
|
223
|
+
],
|
|
221
224
|
'width': 'fit-content',
|
|
222
225
|
'padding': 'var(--button-md-padding-y) var(--button-md-padding-x)',
|
|
223
226
|
'gap': 'var(--button-md-gap)',
|
|
@@ -282,6 +285,7 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
282
285
|
'gap': 'var(--button-xs-gap)',
|
|
283
286
|
'borderRadius': 'var(--button-xs-border-radius)',
|
|
284
287
|
'lineHeight': 'var(--button-xs-line-height)',
|
|
288
|
+
'height': 'var(--button-xs-height)',
|
|
285
289
|
'fontSize': 'var(--button-xs-font-size)'
|
|
286
290
|
},
|
|
287
291
|
'.nv-button.size-xs nv-icon > svg': {
|
|
@@ -294,6 +298,7 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
294
298
|
'gap': 'var(--button-sm-gap)',
|
|
295
299
|
'borderRadius': 'var(--button-sm-border-radius)',
|
|
296
300
|
'lineHeight': 'var(--button-sm-line-height)',
|
|
301
|
+
'height': 'var(--button-sm-height)',
|
|
297
302
|
'fontSize': 'var(--button-sm-font-size)'
|
|
298
303
|
},
|
|
299
304
|
'.nv-button.size-sm nv-icon > svg': {
|
|
@@ -306,6 +311,7 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
306
311
|
'gap': 'var(--button-md-gap)',
|
|
307
312
|
'borderRadius': 'var(--button-md-border-radius)',
|
|
308
313
|
'lineHeight': 'var(--button-md-line-height)',
|
|
314
|
+
'height': 'var(--button-md-height)',
|
|
309
315
|
'fontSize': 'var(--button-md-font-size)'
|
|
310
316
|
},
|
|
311
317
|
'.nv-button.size-md nv-icon > svg': {
|
|
@@ -318,6 +324,7 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
318
324
|
'gap': 'var(--button-lg-gap)',
|
|
319
325
|
'borderRadius': 'var(--button-lg-border-radius)',
|
|
320
326
|
'lineHeight': 'var(--button-lg-line-height)',
|
|
327
|
+
'height': 'var(--button-lg-height)',
|
|
321
328
|
'fontSize': 'var(--button-lg-font-size)'
|
|
322
329
|
},
|
|
323
330
|
'.nv-button.size-lg nv-icon > svg': {
|
package/dist/js/ocean_dark.d.ts
CHANGED
|
@@ -2,66 +2,6 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
export const ColorInteractionContainerNeutralBackground : string;
|
|
6
|
-
export const ColorInteractionContainerNeutralBackgroundHover : string;
|
|
7
|
-
export const ColorInteractionContainerNeutralBackgroundActive : string;
|
|
8
|
-
export const ColorInteractionContainerNeutralBorder : string;
|
|
9
|
-
export const ColorInteractionContainerNeutralBorderActive : string;
|
|
10
|
-
export const ColorInteractionContainerNeutralBorderHover : string;
|
|
11
|
-
export const ColorInteractionContainerNeutralIcon : string;
|
|
12
|
-
export const ColorInteractionContainerNeutralIconActive : string;
|
|
13
|
-
export const ColorInteractionContainerNeutralIconHover : string;
|
|
14
|
-
export const ColorInteractionContainerNeutralText : string;
|
|
15
|
-
export const ColorInteractionContainerNeutralTextActive : string;
|
|
16
|
-
export const ColorInteractionContainerNeutralTextHover : string;
|
|
17
|
-
export const ColorInteractionContainerBrandedHighBackground : string;
|
|
18
|
-
export const ColorInteractionContainerBrandedHighBackgroundActive : string;
|
|
19
|
-
export const ColorInteractionContainerBrandedHighBackgroundHover : string;
|
|
20
|
-
export const ColorInteractionContainerBrandedHighBorder : string;
|
|
21
|
-
export const ColorInteractionContainerBrandedHighBorderActive : string;
|
|
22
|
-
export const ColorInteractionContainerBrandedHighBorderHover : string;
|
|
23
|
-
export const ColorInteractionContainerBrandedHighIcon : string;
|
|
24
|
-
export const ColorInteractionContainerBrandedHighIconActive : string;
|
|
25
|
-
export const ColorInteractionContainerBrandedHighIconHover : string;
|
|
26
|
-
export const ColorInteractionContainerBrandedHighText : string;
|
|
27
|
-
export const ColorInteractionContainerBrandedHighTextActive : string;
|
|
28
|
-
export const ColorInteractionContainerBrandedHighTextHover : string;
|
|
29
|
-
export const ColorInteractionContainerBrandedLowBackground : string;
|
|
30
|
-
export const ColorInteractionContainerBrandedLowBackgroundActive : string;
|
|
31
|
-
export const ColorInteractionContainerBrandedLowBackgroundHover : string;
|
|
32
|
-
export const ColorInteractionContainerBrandedLowBorder : string;
|
|
33
|
-
export const ColorInteractionContainerBrandedLowBorderActive : string;
|
|
34
|
-
export const ColorInteractionContainerBrandedLowBorderHover : string;
|
|
35
|
-
export const ColorInteractionContainerBrandedLowIcon : string;
|
|
36
|
-
export const ColorInteractionContainerBrandedLowIconActive : string;
|
|
37
|
-
export const ColorInteractionContainerBrandedLowIconHover : string;
|
|
38
|
-
export const ColorInteractionContainerBrandedLowText : string;
|
|
39
|
-
export const ColorInteractionContainerBrandedLowTextActive : string;
|
|
40
|
-
export const ColorInteractionContainerBrandedLowTextHover : string;
|
|
41
|
-
export const ColorInteractionLinkHighIcon : string;
|
|
42
|
-
export const ColorInteractionLinkHighIconHover : string;
|
|
43
|
-
export const ColorInteractionLinkHighIconInactive : string;
|
|
44
|
-
export const ColorInteractionLinkHighIconVisited : string;
|
|
45
|
-
export const ColorInteractionLinkHighText : string;
|
|
46
|
-
export const ColorInteractionLinkHighTextHover : string;
|
|
47
|
-
export const ColorInteractionLinkHighTextDisabled : string;
|
|
48
|
-
export const ColorInteractionLinkHighTextVisited : string;
|
|
49
|
-
export const ColorInteractionLinkLowIcon : string;
|
|
50
|
-
export const ColorInteractionLinkLowIconHover : string;
|
|
51
|
-
export const ColorInteractionLinkLowIconDisabled : string;
|
|
52
|
-
export const ColorInteractionLinkLowIconVisited : string;
|
|
53
|
-
export const ColorInteractionLinkLowText : string;
|
|
54
|
-
export const ColorInteractionLinkLowTextHover : string;
|
|
55
|
-
export const ColorInteractionLinkLowTextDisabled : string;
|
|
56
|
-
export const ColorInteractionLinkLowTextVisited : string;
|
|
57
|
-
export const ColorInteractionLinkInvertedIcon : string;
|
|
58
|
-
export const ColorInteractionLinkInvertedIconHover : string;
|
|
59
|
-
export const ColorInteractionLinkInvertedIconDisabled : string;
|
|
60
|
-
export const ColorInteractionLinkInvertedIconVisited : string;
|
|
61
|
-
export const ColorInteractionLinkInvertedText : string;
|
|
62
|
-
export const ColorInteractionLinkInvertedTextHover : string;
|
|
63
|
-
export const ColorInteractionLinkInvertedTextInactive : string;
|
|
64
|
-
export const ColorInteractionLinkInvertedTextVisited : string;
|
|
65
5
|
export const ColorBlack : string;
|
|
66
6
|
export const ColorWhite : string;
|
|
67
7
|
export const ColorTransparent : string;
|
|
@@ -196,6 +136,66 @@ export const ColorFocusBackgroundInverted : string;
|
|
|
196
136
|
export const ColorFocusDestructive : string;
|
|
197
137
|
export const ColorFocusDestructiveInField : string;
|
|
198
138
|
export const ColorFocusSuccess : string;
|
|
139
|
+
export const ColorInteractionContainerBrandedHighBackground : string;
|
|
140
|
+
export const ColorInteractionContainerBrandedHighBackgroundActive : string;
|
|
141
|
+
export const ColorInteractionContainerBrandedHighBackgroundHover : string;
|
|
142
|
+
export const ColorInteractionContainerBrandedHighBorder : string;
|
|
143
|
+
export const ColorInteractionContainerBrandedHighBorderActive : string;
|
|
144
|
+
export const ColorInteractionContainerBrandedHighBorderHover : string;
|
|
145
|
+
export const ColorInteractionContainerBrandedHighIcon : string;
|
|
146
|
+
export const ColorInteractionContainerBrandedHighIconActive : string;
|
|
147
|
+
export const ColorInteractionContainerBrandedHighIconHover : string;
|
|
148
|
+
export const ColorInteractionContainerBrandedHighText : string;
|
|
149
|
+
export const ColorInteractionContainerBrandedHighTextActive : string;
|
|
150
|
+
export const ColorInteractionContainerBrandedHighTextHover : string;
|
|
151
|
+
export const ColorInteractionContainerBrandedLowBackground : string;
|
|
152
|
+
export const ColorInteractionContainerBrandedLowBackgroundActive : string;
|
|
153
|
+
export const ColorInteractionContainerBrandedLowBackgroundHover : string;
|
|
154
|
+
export const ColorInteractionContainerBrandedLowBorder : string;
|
|
155
|
+
export const ColorInteractionContainerBrandedLowBorderActive : string;
|
|
156
|
+
export const ColorInteractionContainerBrandedLowBorderHover : string;
|
|
157
|
+
export const ColorInteractionContainerBrandedLowIcon : string;
|
|
158
|
+
export const ColorInteractionContainerBrandedLowIconActive : string;
|
|
159
|
+
export const ColorInteractionContainerBrandedLowIconHover : string;
|
|
160
|
+
export const ColorInteractionContainerBrandedLowText : string;
|
|
161
|
+
export const ColorInteractionContainerBrandedLowTextActive : string;
|
|
162
|
+
export const ColorInteractionContainerBrandedLowTextHover : string;
|
|
163
|
+
export const ColorInteractionContainerNeutralBackground : string;
|
|
164
|
+
export const ColorInteractionContainerNeutralBackgroundHover : string;
|
|
165
|
+
export const ColorInteractionContainerNeutralBackgroundActive : string;
|
|
166
|
+
export const ColorInteractionContainerNeutralBorder : string;
|
|
167
|
+
export const ColorInteractionContainerNeutralBorderActive : string;
|
|
168
|
+
export const ColorInteractionContainerNeutralBorderHover : string;
|
|
169
|
+
export const ColorInteractionContainerNeutralIcon : string;
|
|
170
|
+
export const ColorInteractionContainerNeutralIconActive : string;
|
|
171
|
+
export const ColorInteractionContainerNeutralIconHover : string;
|
|
172
|
+
export const ColorInteractionContainerNeutralText : string;
|
|
173
|
+
export const ColorInteractionContainerNeutralTextActive : string;
|
|
174
|
+
export const ColorInteractionContainerNeutralTextHover : string;
|
|
175
|
+
export const ColorInteractionLinkHighIcon : string;
|
|
176
|
+
export const ColorInteractionLinkHighIconHover : string;
|
|
177
|
+
export const ColorInteractionLinkHighIconInactive : string;
|
|
178
|
+
export const ColorInteractionLinkHighIconVisited : string;
|
|
179
|
+
export const ColorInteractionLinkHighText : string;
|
|
180
|
+
export const ColorInteractionLinkHighTextHover : string;
|
|
181
|
+
export const ColorInteractionLinkHighTextDisabled : string;
|
|
182
|
+
export const ColorInteractionLinkHighTextVisited : string;
|
|
183
|
+
export const ColorInteractionLinkLowIcon : string;
|
|
184
|
+
export const ColorInteractionLinkLowIconHover : string;
|
|
185
|
+
export const ColorInteractionLinkLowIconDisabled : string;
|
|
186
|
+
export const ColorInteractionLinkLowIconVisited : string;
|
|
187
|
+
export const ColorInteractionLinkLowText : string;
|
|
188
|
+
export const ColorInteractionLinkLowTextHover : string;
|
|
189
|
+
export const ColorInteractionLinkLowTextDisabled : string;
|
|
190
|
+
export const ColorInteractionLinkLowTextVisited : string;
|
|
191
|
+
export const ColorInteractionLinkInvertedIcon : string;
|
|
192
|
+
export const ColorInteractionLinkInvertedIconHover : string;
|
|
193
|
+
export const ColorInteractionLinkInvertedIconDisabled : string;
|
|
194
|
+
export const ColorInteractionLinkInvertedIconVisited : string;
|
|
195
|
+
export const ColorInteractionLinkInvertedText : string;
|
|
196
|
+
export const ColorInteractionLinkInvertedTextHover : string;
|
|
197
|
+
export const ColorInteractionLinkInvertedTextInactive : string;
|
|
198
|
+
export const ColorInteractionLinkInvertedTextVisited : string;
|
|
199
199
|
export const ColorRainbow1Background : string;
|
|
200
200
|
export const ColorRainbow1Border : string;
|
|
201
201
|
export const ColorRainbow1Icon : string;
|
|
@@ -512,10 +512,6 @@ export const ComponentsFieldTimeTextActive : string;
|
|
|
512
512
|
export const ComponentsFieldTimeBorderActive : string;
|
|
513
513
|
export const ComponentsCalendarBorder : string;
|
|
514
514
|
export const ComponentsCalendarHeaderText : string;
|
|
515
|
-
export const ComponentsCalendarWeeksBackground : string;
|
|
516
|
-
export const ComponentsCalendarWeeksBackgroundHover : string;
|
|
517
|
-
export const ComponentsCalendarWeeksText : string;
|
|
518
|
-
export const ComponentsCalendarWeeksTextHover : string;
|
|
519
515
|
export const ComponentsCalendarCellBackground : string;
|
|
520
516
|
export const ComponentsCalendarCellBackgroundSelected : string;
|
|
521
517
|
export const ComponentsCalendarCellBackgroundInRange : string;
|
|
@@ -530,6 +526,10 @@ export const ComponentsCalendarCellTextInRange : string;
|
|
|
530
526
|
export const ComponentsCalendarCellTextHover : string;
|
|
531
527
|
export const ComponentsCalendarCellTextOutsideMonth : string;
|
|
532
528
|
export const ComponentsCalendarCellTextToday : string;
|
|
529
|
+
export const ComponentsCalendarWeeksBackground : string;
|
|
530
|
+
export const ComponentsCalendarWeeksBackgroundHover : string;
|
|
531
|
+
export const ComponentsCalendarWeeksText : string;
|
|
532
|
+
export const ComponentsCalendarWeeksTextHover : string;
|
|
533
533
|
export const ComponentsCalendarBackground : string;
|
|
534
534
|
export const ComponentsMenuContextualBackground : string;
|
|
535
535
|
export const ComponentsMenuContextualBorder : string;
|
package/dist/js/ocean_dark.js
CHANGED
|
@@ -2,66 +2,6 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
export const ColorInteractionContainerNeutralBackground = "#ffffff";
|
|
6
|
-
export const ColorInteractionContainerNeutralBackgroundHover = "#171f22";
|
|
7
|
-
export const ColorInteractionContainerNeutralBackgroundActive = "#0b292e";
|
|
8
|
-
export const ColorInteractionContainerNeutralBorder = "#889499";
|
|
9
|
-
export const ColorInteractionContainerNeutralBorderActive = "#4b9eaa";
|
|
10
|
-
export const ColorInteractionContainerNeutralBorderHover = "#bac1c4";
|
|
11
|
-
export const ColorInteractionContainerNeutralIcon = "#889499";
|
|
12
|
-
export const ColorInteractionContainerNeutralIconActive = "#4b9eaa";
|
|
13
|
-
export const ColorInteractionContainerNeutralIconHover = "#bac1c4";
|
|
14
|
-
export const ColorInteractionContainerNeutralText = "#889499";
|
|
15
|
-
export const ColorInteractionContainerNeutralTextActive = "#4b9eaa";
|
|
16
|
-
export const ColorInteractionContainerNeutralTextHover = "#bac1c4";
|
|
17
|
-
export const ColorInteractionContainerBrandedHighBackground = "#258998";
|
|
18
|
-
export const ColorInteractionContainerBrandedHighBackgroundActive = "#4b9eaa";
|
|
19
|
-
export const ColorInteractionContainerBrandedHighBackgroundHover = "#4b9eaa";
|
|
20
|
-
export const ColorInteractionContainerBrandedHighBorder = "#258998";
|
|
21
|
-
export const ColorInteractionContainerBrandedHighBorderActive = "#4b9eaa";
|
|
22
|
-
export const ColorInteractionContainerBrandedHighBorderHover = "#4b9eaa";
|
|
23
|
-
export const ColorInteractionContainerBrandedHighIcon = "#000000";
|
|
24
|
-
export const ColorInteractionContainerBrandedHighIconActive = "#000000";
|
|
25
|
-
export const ColorInteractionContainerBrandedHighIconHover = "#000000";
|
|
26
|
-
export const ColorInteractionContainerBrandedHighText = "#000000";
|
|
27
|
-
export const ColorInteractionContainerBrandedHighTextActive = "#000000";
|
|
28
|
-
export const ColorInteractionContainerBrandedHighTextHover = "#000000";
|
|
29
|
-
export const ColorInteractionContainerBrandedLowBackground = "#0b0f11";
|
|
30
|
-
export const ColorInteractionContainerBrandedLowBackgroundActive = "#0b292e";
|
|
31
|
-
export const ColorInteractionContainerBrandedLowBackgroundHover = "#0b292e";
|
|
32
|
-
export const ColorInteractionContainerBrandedLowBorder = "#258998";
|
|
33
|
-
export const ColorInteractionContainerBrandedLowBorderActive = "#4b9eaa";
|
|
34
|
-
export const ColorInteractionContainerBrandedLowBorderHover = "#4b9eaa";
|
|
35
|
-
export const ColorInteractionContainerBrandedLowIcon = "#258998";
|
|
36
|
-
export const ColorInteractionContainerBrandedLowIconActive = "#4b9eaa";
|
|
37
|
-
export const ColorInteractionContainerBrandedLowIconHover = "#4b9eaa";
|
|
38
|
-
export const ColorInteractionContainerBrandedLowText = "#258998";
|
|
39
|
-
export const ColorInteractionContainerBrandedLowTextActive = "#4b9eaa";
|
|
40
|
-
export const ColorInteractionContainerBrandedLowTextHover = "#4b9eaa";
|
|
41
|
-
export const ColorInteractionLinkHighIcon = "#258998";
|
|
42
|
-
export const ColorInteractionLinkHighIconHover = "#4b9eaa";
|
|
43
|
-
export const ColorInteractionLinkHighIconInactive = "#889499";
|
|
44
|
-
export const ColorInteractionLinkHighIconVisited = "#4b9eaa";
|
|
45
|
-
export const ColorInteractionLinkHighText = "#258998";
|
|
46
|
-
export const ColorInteractionLinkHighTextHover = "#4b9eaa";
|
|
47
|
-
export const ColorInteractionLinkHighTextDisabled = "#889499";
|
|
48
|
-
export const ColorInteractionLinkHighTextVisited = "#4b9eaa";
|
|
49
|
-
export const ColorInteractionLinkLowIcon = "#f5f6f7";
|
|
50
|
-
export const ColorInteractionLinkLowIconHover = "#4b9eaa";
|
|
51
|
-
export const ColorInteractionLinkLowIconDisabled = "#889499";
|
|
52
|
-
export const ColorInteractionLinkLowIconVisited = "#4b9eaa";
|
|
53
|
-
export const ColorInteractionLinkLowText = "#f5f6f7";
|
|
54
|
-
export const ColorInteractionLinkLowTextHover = "#4b9eaa";
|
|
55
|
-
export const ColorInteractionLinkLowTextDisabled = "#889499";
|
|
56
|
-
export const ColorInteractionLinkLowTextVisited = "#4b9eaa";
|
|
57
|
-
export const ColorInteractionLinkInvertedIcon = "#27353b";
|
|
58
|
-
export const ColorInteractionLinkInvertedIconHover = "#1f717d";
|
|
59
|
-
export const ColorInteractionLinkInvertedIconDisabled = "#3f555e";
|
|
60
|
-
export const ColorInteractionLinkInvertedIconVisited = "#4b9eaa";
|
|
61
|
-
export const ColorInteractionLinkInvertedText = "#27353b";
|
|
62
|
-
export const ColorInteractionLinkInvertedTextHover = "#1f717d";
|
|
63
|
-
export const ColorInteractionLinkInvertedTextInactive = "#3f555e";
|
|
64
|
-
export const ColorInteractionLinkInvertedTextVisited = "#4b9eaa";
|
|
65
5
|
export const ColorBlack = "#000000";
|
|
66
6
|
export const ColorWhite = "#ffffff";
|
|
67
7
|
export const ColorTransparent = "#ffffff";
|
|
@@ -196,6 +136,66 @@ export const ColorFocusBackgroundInverted = "#ffffff";
|
|
|
196
136
|
export const ColorFocusDestructive = "#ff6161";
|
|
197
137
|
export const ColorFocusDestructiveInField = "#ff6161";
|
|
198
138
|
export const ColorFocusSuccess = "#45d24d";
|
|
139
|
+
export const ColorInteractionContainerBrandedHighBackground = "#258998";
|
|
140
|
+
export const ColorInteractionContainerBrandedHighBackgroundActive = "#4b9eaa";
|
|
141
|
+
export const ColorInteractionContainerBrandedHighBackgroundHover = "#4b9eaa";
|
|
142
|
+
export const ColorInteractionContainerBrandedHighBorder = "#258998";
|
|
143
|
+
export const ColorInteractionContainerBrandedHighBorderActive = "#4b9eaa";
|
|
144
|
+
export const ColorInteractionContainerBrandedHighBorderHover = "#4b9eaa";
|
|
145
|
+
export const ColorInteractionContainerBrandedHighIcon = "#000000";
|
|
146
|
+
export const ColorInteractionContainerBrandedHighIconActive = "#000000";
|
|
147
|
+
export const ColorInteractionContainerBrandedHighIconHover = "#000000";
|
|
148
|
+
export const ColorInteractionContainerBrandedHighText = "#000000";
|
|
149
|
+
export const ColorInteractionContainerBrandedHighTextActive = "#000000";
|
|
150
|
+
export const ColorInteractionContainerBrandedHighTextHover = "#000000";
|
|
151
|
+
export const ColorInteractionContainerBrandedLowBackground = "#0b0f11";
|
|
152
|
+
export const ColorInteractionContainerBrandedLowBackgroundActive = "#0b292e";
|
|
153
|
+
export const ColorInteractionContainerBrandedLowBackgroundHover = "#0b292e";
|
|
154
|
+
export const ColorInteractionContainerBrandedLowBorder = "#258998";
|
|
155
|
+
export const ColorInteractionContainerBrandedLowBorderActive = "#4b9eaa";
|
|
156
|
+
export const ColorInteractionContainerBrandedLowBorderHover = "#4b9eaa";
|
|
157
|
+
export const ColorInteractionContainerBrandedLowIcon = "#258998";
|
|
158
|
+
export const ColorInteractionContainerBrandedLowIconActive = "#4b9eaa";
|
|
159
|
+
export const ColorInteractionContainerBrandedLowIconHover = "#4b9eaa";
|
|
160
|
+
export const ColorInteractionContainerBrandedLowText = "#258998";
|
|
161
|
+
export const ColorInteractionContainerBrandedLowTextActive = "#4b9eaa";
|
|
162
|
+
export const ColorInteractionContainerBrandedLowTextHover = "#4b9eaa";
|
|
163
|
+
export const ColorInteractionContainerNeutralBackground = "#0b0f11";
|
|
164
|
+
export const ColorInteractionContainerNeutralBackgroundHover = "#171f22";
|
|
165
|
+
export const ColorInteractionContainerNeutralBackgroundActive = "#0b292e";
|
|
166
|
+
export const ColorInteractionContainerNeutralBorder = "#889499";
|
|
167
|
+
export const ColorInteractionContainerNeutralBorderActive = "#4b9eaa";
|
|
168
|
+
export const ColorInteractionContainerNeutralBorderHover = "#bac1c4";
|
|
169
|
+
export const ColorInteractionContainerNeutralIcon = "#889499";
|
|
170
|
+
export const ColorInteractionContainerNeutralIconActive = "#4b9eaa";
|
|
171
|
+
export const ColorInteractionContainerNeutralIconHover = "#bac1c4";
|
|
172
|
+
export const ColorInteractionContainerNeutralText = "#889499";
|
|
173
|
+
export const ColorInteractionContainerNeutralTextActive = "#4b9eaa";
|
|
174
|
+
export const ColorInteractionContainerNeutralTextHover = "#bac1c4";
|
|
175
|
+
export const ColorInteractionLinkHighIcon = "#258998";
|
|
176
|
+
export const ColorInteractionLinkHighIconHover = "#4b9eaa";
|
|
177
|
+
export const ColorInteractionLinkHighIconInactive = "#889499";
|
|
178
|
+
export const ColorInteractionLinkHighIconVisited = "#4b9eaa";
|
|
179
|
+
export const ColorInteractionLinkHighText = "#258998";
|
|
180
|
+
export const ColorInteractionLinkHighTextHover = "#4b9eaa";
|
|
181
|
+
export const ColorInteractionLinkHighTextDisabled = "#889499";
|
|
182
|
+
export const ColorInteractionLinkHighTextVisited = "#4b9eaa";
|
|
183
|
+
export const ColorInteractionLinkLowIcon = "#f5f6f7";
|
|
184
|
+
export const ColorInteractionLinkLowIconHover = "#4b9eaa";
|
|
185
|
+
export const ColorInteractionLinkLowIconDisabled = "#889499";
|
|
186
|
+
export const ColorInteractionLinkLowIconVisited = "#4b9eaa";
|
|
187
|
+
export const ColorInteractionLinkLowText = "#f5f6f7";
|
|
188
|
+
export const ColorInteractionLinkLowTextHover = "#4b9eaa";
|
|
189
|
+
export const ColorInteractionLinkLowTextDisabled = "#889499";
|
|
190
|
+
export const ColorInteractionLinkLowTextVisited = "#4b9eaa";
|
|
191
|
+
export const ColorInteractionLinkInvertedIcon = "#27353b";
|
|
192
|
+
export const ColorInteractionLinkInvertedIconHover = "#1f717d";
|
|
193
|
+
export const ColorInteractionLinkInvertedIconDisabled = "#3f555e";
|
|
194
|
+
export const ColorInteractionLinkInvertedIconVisited = "#4b9eaa";
|
|
195
|
+
export const ColorInteractionLinkInvertedText = "#27353b";
|
|
196
|
+
export const ColorInteractionLinkInvertedTextHover = "#1f717d";
|
|
197
|
+
export const ColorInteractionLinkInvertedTextInactive = "#3f555e";
|
|
198
|
+
export const ColorInteractionLinkInvertedTextVisited = "#4b9eaa";
|
|
199
199
|
export const ColorRainbow1Background = "#432306";
|
|
200
200
|
export const ColorRainbow1Border = "#f0801a";
|
|
201
201
|
export const ColorRainbow1Icon = "#f0801a";
|
|
@@ -297,7 +297,7 @@ export const ComponentsButtonLowTextHover = "#4b9eaa";
|
|
|
297
297
|
export const ComponentsButtonLowerBorder = "#ffffff";
|
|
298
298
|
export const ComponentsButtonLowerBorderActive = "#ffffff";
|
|
299
299
|
export const ComponentsButtonLowerBorderHover = "#ffffff";
|
|
300
|
-
export const ComponentsButtonLowerBackground = "#
|
|
300
|
+
export const ComponentsButtonLowerBackground = "#0b0f11";
|
|
301
301
|
export const ComponentsButtonLowerBackgroundActive = "#0b292e";
|
|
302
302
|
export const ComponentsButtonLowerBackgroundHover = "#171f22";
|
|
303
303
|
export const ComponentsButtonLowerIcon = "#889499";
|
|
@@ -389,9 +389,9 @@ export const ComponentsListDropdownItemLabelActive = "#889499";
|
|
|
389
389
|
export const ComponentsListDropdownItemDescriptionDefault = "#889499";
|
|
390
390
|
export const ComponentsListDropdownItemDescriptionHover = "#bac1c4";
|
|
391
391
|
export const ComponentsListDropdownItemDescriptionDisabled = "#617177";
|
|
392
|
-
export const ComponentsListDropdownItemBackgroundDefault = "#
|
|
392
|
+
export const ComponentsListDropdownItemBackgroundDefault = "#0b0f11";
|
|
393
393
|
export const ComponentsListDropdownItemBackgroundHover = "#171f22";
|
|
394
|
-
export const ComponentsListDropdownItemBackgroundDisabled = "#
|
|
394
|
+
export const ComponentsListDropdownItemBackgroundDisabled = "#0b0f11";
|
|
395
395
|
export const ComponentsListDropdownItemBackgroundActive = "#0b292e";
|
|
396
396
|
export const ComponentsListDropdownGroupTitleContent = "#bac1c4";
|
|
397
397
|
export const ComponentsListDropdownGroupTitleBackground = "#ffffff";
|
|
@@ -493,17 +493,17 @@ export const ComponentsButtongroupLowerBorder = "#889499";
|
|
|
493
493
|
export const ComponentsButtongroupLowerBackground = "#0b0f11";
|
|
494
494
|
export const ComponentsDatagridHeaderBorder = "#617177";
|
|
495
495
|
export const ComponentsDatagridHeaderText = "#f5f6f7";
|
|
496
|
-
export const ComponentsDatagridHeaderBackground = "#
|
|
496
|
+
export const ComponentsDatagridHeaderBackground = "#0b0f11";
|
|
497
497
|
export const ComponentsDatagridBodyBorder = "#394d55";
|
|
498
498
|
export const ComponentsDatagridBodyText = "#bac1c4";
|
|
499
499
|
export const ComponentsDatagridBodySubtext = "#889499";
|
|
500
|
-
export const ComponentsDatagridBodyBackgroundDefault = "#
|
|
500
|
+
export const ComponentsDatagridBodyBackgroundDefault = "#0b0f11";
|
|
501
501
|
export const ComponentsDatagridBodyBackgroundActive = "#0b292e";
|
|
502
502
|
export const ComponentsDatagridBodyBackgroundHover = "#171f22";
|
|
503
503
|
export const ComponentsDatagridExpanderContentBackground = "#0b0f11";
|
|
504
504
|
export const ComponentsDatagridExpanderBorder = "#394d55";
|
|
505
505
|
export const ComponentsDatagridExpanderExpanderBackground = "#171f22";
|
|
506
|
-
export const ComponentsFieldTimeBackgroundDefault = "#
|
|
506
|
+
export const ComponentsFieldTimeBackgroundDefault = "#0b0f11";
|
|
507
507
|
export const ComponentsFieldTimeBackgroundHover = "#171f22";
|
|
508
508
|
export const ComponentsFieldTimeBackgroundActive = "#0b292e";
|
|
509
509
|
export const ComponentsFieldTimeTextDefault = "#889499";
|
|
@@ -512,10 +512,6 @@ export const ComponentsFieldTimeTextActive = "#4b9eaa";
|
|
|
512
512
|
export const ComponentsFieldTimeBorderActive = "#4b9eaa";
|
|
513
513
|
export const ComponentsCalendarBorder = "#394d55";
|
|
514
514
|
export const ComponentsCalendarHeaderText = "#f5f6f7";
|
|
515
|
-
export const ComponentsCalendarWeeksBackground = "#171f22";
|
|
516
|
-
export const ComponentsCalendarWeeksBackgroundHover = "#171f22";
|
|
517
|
-
export const ComponentsCalendarWeeksText = "#f5f6f7";
|
|
518
|
-
export const ComponentsCalendarWeeksTextHover = "#f5f6f7";
|
|
519
515
|
export const ComponentsCalendarCellBackground = "#0b0f11";
|
|
520
516
|
export const ComponentsCalendarCellBackgroundSelected = "#4b9eaa";
|
|
521
517
|
export const ComponentsCalendarCellBackgroundInRange = "#0b292e";
|
|
@@ -530,10 +526,14 @@ export const ComponentsCalendarCellTextInRange = "#4b9eaa";
|
|
|
530
526
|
export const ComponentsCalendarCellTextHover = "#bac1c4";
|
|
531
527
|
export const ComponentsCalendarCellTextOutsideMonth = "#617177";
|
|
532
528
|
export const ComponentsCalendarCellTextToday = "#f5f6f7";
|
|
529
|
+
export const ComponentsCalendarWeeksBackground = "#171f22";
|
|
530
|
+
export const ComponentsCalendarWeeksBackgroundHover = "#171f22";
|
|
531
|
+
export const ComponentsCalendarWeeksText = "#f5f6f7";
|
|
532
|
+
export const ComponentsCalendarWeeksTextHover = "#f5f6f7";
|
|
533
533
|
export const ComponentsCalendarBackground = "#0b0f11";
|
|
534
534
|
export const ComponentsMenuContextualBackground = "#0b0f11";
|
|
535
535
|
export const ComponentsMenuContextualBorder = "#394d55";
|
|
536
|
-
export const ComponentsMenuContextualItemBackground = "#
|
|
536
|
+
export const ComponentsMenuContextualItemBackground = "#0b0f11";
|
|
537
537
|
export const ComponentsMenuContextualItemBackgroundHover = "#171f22";
|
|
538
538
|
export const ComponentsMenuContextualItemShortcut = "#617177";
|
|
539
539
|
export const ComponentsMenuContextualItemContent = "#889499";
|
package/dist/js/ocean_light.d.ts
CHANGED
|
@@ -2,66 +2,6 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
export const ColorInteractionContainerNeutralBackground : string;
|
|
6
|
-
export const ColorInteractionContainerNeutralBackgroundHover : string;
|
|
7
|
-
export const ColorInteractionContainerNeutralBackgroundActive : string;
|
|
8
|
-
export const ColorInteractionContainerNeutralBorder : string;
|
|
9
|
-
export const ColorInteractionContainerNeutralBorderActive : string;
|
|
10
|
-
export const ColorInteractionContainerNeutralBorderHover : string;
|
|
11
|
-
export const ColorInteractionContainerNeutralIcon : string;
|
|
12
|
-
export const ColorInteractionContainerNeutralIconActive : string;
|
|
13
|
-
export const ColorInteractionContainerNeutralIconHover : string;
|
|
14
|
-
export const ColorInteractionContainerNeutralText : string;
|
|
15
|
-
export const ColorInteractionContainerNeutralTextActive : string;
|
|
16
|
-
export const ColorInteractionContainerNeutralTextHover : string;
|
|
17
|
-
export const ColorInteractionContainerBrandedHighBackground : string;
|
|
18
|
-
export const ColorInteractionContainerBrandedHighBackgroundActive : string;
|
|
19
|
-
export const ColorInteractionContainerBrandedHighBackgroundHover : string;
|
|
20
|
-
export const ColorInteractionContainerBrandedHighBorder : string;
|
|
21
|
-
export const ColorInteractionContainerBrandedHighBorderActive : string;
|
|
22
|
-
export const ColorInteractionContainerBrandedHighBorderHover : string;
|
|
23
|
-
export const ColorInteractionContainerBrandedHighIcon : string;
|
|
24
|
-
export const ColorInteractionContainerBrandedHighIconActive : string;
|
|
25
|
-
export const ColorInteractionContainerBrandedHighIconHover : string;
|
|
26
|
-
export const ColorInteractionContainerBrandedHighText : string;
|
|
27
|
-
export const ColorInteractionContainerBrandedHighTextActive : string;
|
|
28
|
-
export const ColorInteractionContainerBrandedHighTextHover : string;
|
|
29
|
-
export const ColorInteractionContainerBrandedLowBackground : string;
|
|
30
|
-
export const ColorInteractionContainerBrandedLowBackgroundActive : string;
|
|
31
|
-
export const ColorInteractionContainerBrandedLowBackgroundHover : string;
|
|
32
|
-
export const ColorInteractionContainerBrandedLowBorder : string;
|
|
33
|
-
export const ColorInteractionContainerBrandedLowBorderActive : string;
|
|
34
|
-
export const ColorInteractionContainerBrandedLowBorderHover : string;
|
|
35
|
-
export const ColorInteractionContainerBrandedLowIcon : string;
|
|
36
|
-
export const ColorInteractionContainerBrandedLowIconActive : string;
|
|
37
|
-
export const ColorInteractionContainerBrandedLowIconHover : string;
|
|
38
|
-
export const ColorInteractionContainerBrandedLowText : string;
|
|
39
|
-
export const ColorInteractionContainerBrandedLowTextActive : string;
|
|
40
|
-
export const ColorInteractionContainerBrandedLowTextHover : string;
|
|
41
|
-
export const ColorInteractionLinkHighIcon : string;
|
|
42
|
-
export const ColorInteractionLinkHighIconHover : string;
|
|
43
|
-
export const ColorInteractionLinkHighIconInactive : string;
|
|
44
|
-
export const ColorInteractionLinkHighIconVisited : string;
|
|
45
|
-
export const ColorInteractionLinkHighText : string;
|
|
46
|
-
export const ColorInteractionLinkHighTextHover : string;
|
|
47
|
-
export const ColorInteractionLinkHighTextDisabled : string;
|
|
48
|
-
export const ColorInteractionLinkHighTextVisited : string;
|
|
49
|
-
export const ColorInteractionLinkLowIcon : string;
|
|
50
|
-
export const ColorInteractionLinkLowIconHover : string;
|
|
51
|
-
export const ColorInteractionLinkLowIconDisabled : string;
|
|
52
|
-
export const ColorInteractionLinkLowIconVisited : string;
|
|
53
|
-
export const ColorInteractionLinkLowText : string;
|
|
54
|
-
export const ColorInteractionLinkLowTextHover : string;
|
|
55
|
-
export const ColorInteractionLinkLowTextDisabled : string;
|
|
56
|
-
export const ColorInteractionLinkLowTextVisited : string;
|
|
57
|
-
export const ColorInteractionLinkInvertedIcon : string;
|
|
58
|
-
export const ColorInteractionLinkInvertedIconHover : string;
|
|
59
|
-
export const ColorInteractionLinkInvertedIconDisabled : string;
|
|
60
|
-
export const ColorInteractionLinkInvertedIconVisited : string;
|
|
61
|
-
export const ColorInteractionLinkInvertedText : string;
|
|
62
|
-
export const ColorInteractionLinkInvertedTextHover : string;
|
|
63
|
-
export const ColorInteractionLinkInvertedTextInactive : string;
|
|
64
|
-
export const ColorInteractionLinkInvertedTextVisited : string;
|
|
65
5
|
export const ColorBlack : string;
|
|
66
6
|
export const ColorWhite : string;
|
|
67
7
|
export const ColorTransparent : string;
|
|
@@ -196,6 +136,66 @@ export const ColorFocusBackgroundInverted : string;
|
|
|
196
136
|
export const ColorFocusDestructive : string;
|
|
197
137
|
export const ColorFocusDestructiveInField : string;
|
|
198
138
|
export const ColorFocusSuccess : string;
|
|
139
|
+
export const ColorInteractionContainerBrandedHighBackground : string;
|
|
140
|
+
export const ColorInteractionContainerBrandedHighBackgroundActive : string;
|
|
141
|
+
export const ColorInteractionContainerBrandedHighBackgroundHover : string;
|
|
142
|
+
export const ColorInteractionContainerBrandedHighBorder : string;
|
|
143
|
+
export const ColorInteractionContainerBrandedHighBorderActive : string;
|
|
144
|
+
export const ColorInteractionContainerBrandedHighBorderHover : string;
|
|
145
|
+
export const ColorInteractionContainerBrandedHighIcon : string;
|
|
146
|
+
export const ColorInteractionContainerBrandedHighIconActive : string;
|
|
147
|
+
export const ColorInteractionContainerBrandedHighIconHover : string;
|
|
148
|
+
export const ColorInteractionContainerBrandedHighText : string;
|
|
149
|
+
export const ColorInteractionContainerBrandedHighTextActive : string;
|
|
150
|
+
export const ColorInteractionContainerBrandedHighTextHover : string;
|
|
151
|
+
export const ColorInteractionContainerBrandedLowBackground : string;
|
|
152
|
+
export const ColorInteractionContainerBrandedLowBackgroundActive : string;
|
|
153
|
+
export const ColorInteractionContainerBrandedLowBackgroundHover : string;
|
|
154
|
+
export const ColorInteractionContainerBrandedLowBorder : string;
|
|
155
|
+
export const ColorInteractionContainerBrandedLowBorderActive : string;
|
|
156
|
+
export const ColorInteractionContainerBrandedLowBorderHover : string;
|
|
157
|
+
export const ColorInteractionContainerBrandedLowIcon : string;
|
|
158
|
+
export const ColorInteractionContainerBrandedLowIconActive : string;
|
|
159
|
+
export const ColorInteractionContainerBrandedLowIconHover : string;
|
|
160
|
+
export const ColorInteractionContainerBrandedLowText : string;
|
|
161
|
+
export const ColorInteractionContainerBrandedLowTextActive : string;
|
|
162
|
+
export const ColorInteractionContainerBrandedLowTextHover : string;
|
|
163
|
+
export const ColorInteractionContainerNeutralBackground : string;
|
|
164
|
+
export const ColorInteractionContainerNeutralBackgroundHover : string;
|
|
165
|
+
export const ColorInteractionContainerNeutralBackgroundActive : string;
|
|
166
|
+
export const ColorInteractionContainerNeutralBorder : string;
|
|
167
|
+
export const ColorInteractionContainerNeutralBorderActive : string;
|
|
168
|
+
export const ColorInteractionContainerNeutralBorderHover : string;
|
|
169
|
+
export const ColorInteractionContainerNeutralIcon : string;
|
|
170
|
+
export const ColorInteractionContainerNeutralIconActive : string;
|
|
171
|
+
export const ColorInteractionContainerNeutralIconHover : string;
|
|
172
|
+
export const ColorInteractionContainerNeutralText : string;
|
|
173
|
+
export const ColorInteractionContainerNeutralTextActive : string;
|
|
174
|
+
export const ColorInteractionContainerNeutralTextHover : string;
|
|
175
|
+
export const ColorInteractionLinkHighIcon : string;
|
|
176
|
+
export const ColorInteractionLinkHighIconHover : string;
|
|
177
|
+
export const ColorInteractionLinkHighIconInactive : string;
|
|
178
|
+
export const ColorInteractionLinkHighIconVisited : string;
|
|
179
|
+
export const ColorInteractionLinkHighText : string;
|
|
180
|
+
export const ColorInteractionLinkHighTextHover : string;
|
|
181
|
+
export const ColorInteractionLinkHighTextDisabled : string;
|
|
182
|
+
export const ColorInteractionLinkHighTextVisited : string;
|
|
183
|
+
export const ColorInteractionLinkLowIcon : string;
|
|
184
|
+
export const ColorInteractionLinkLowIconHover : string;
|
|
185
|
+
export const ColorInteractionLinkLowIconDisabled : string;
|
|
186
|
+
export const ColorInteractionLinkLowIconVisited : string;
|
|
187
|
+
export const ColorInteractionLinkLowText : string;
|
|
188
|
+
export const ColorInteractionLinkLowTextHover : string;
|
|
189
|
+
export const ColorInteractionLinkLowTextDisabled : string;
|
|
190
|
+
export const ColorInteractionLinkLowTextVisited : string;
|
|
191
|
+
export const ColorInteractionLinkInvertedIcon : string;
|
|
192
|
+
export const ColorInteractionLinkInvertedIconHover : string;
|
|
193
|
+
export const ColorInteractionLinkInvertedIconDisabled : string;
|
|
194
|
+
export const ColorInteractionLinkInvertedIconVisited : string;
|
|
195
|
+
export const ColorInteractionLinkInvertedText : string;
|
|
196
|
+
export const ColorInteractionLinkInvertedTextHover : string;
|
|
197
|
+
export const ColorInteractionLinkInvertedTextInactive : string;
|
|
198
|
+
export const ColorInteractionLinkInvertedTextVisited : string;
|
|
199
199
|
export const ColorRainbow1Background : string;
|
|
200
200
|
export const ColorRainbow1Border : string;
|
|
201
201
|
export const ColorRainbow1Icon : string;
|
|
@@ -512,10 +512,6 @@ export const ComponentsFieldTimeTextActive : string;
|
|
|
512
512
|
export const ComponentsFieldTimeBorderActive : string;
|
|
513
513
|
export const ComponentsCalendarBorder : string;
|
|
514
514
|
export const ComponentsCalendarHeaderText : string;
|
|
515
|
-
export const ComponentsCalendarWeeksBackground : string;
|
|
516
|
-
export const ComponentsCalendarWeeksBackgroundHover : string;
|
|
517
|
-
export const ComponentsCalendarWeeksText : string;
|
|
518
|
-
export const ComponentsCalendarWeeksTextHover : string;
|
|
519
515
|
export const ComponentsCalendarCellBackground : string;
|
|
520
516
|
export const ComponentsCalendarCellBackgroundSelected : string;
|
|
521
517
|
export const ComponentsCalendarCellBackgroundInRange : string;
|
|
@@ -530,6 +526,10 @@ export const ComponentsCalendarCellTextInRange : string;
|
|
|
530
526
|
export const ComponentsCalendarCellTextHover : string;
|
|
531
527
|
export const ComponentsCalendarCellTextOutsideMonth : string;
|
|
532
528
|
export const ComponentsCalendarCellTextToday : string;
|
|
529
|
+
export const ComponentsCalendarWeeksBackground : string;
|
|
530
|
+
export const ComponentsCalendarWeeksBackgroundHover : string;
|
|
531
|
+
export const ComponentsCalendarWeeksText : string;
|
|
532
|
+
export const ComponentsCalendarWeeksTextHover : string;
|
|
533
533
|
export const ComponentsCalendarBackground : string;
|
|
534
534
|
export const ComponentsMenuContextualBackground : string;
|
|
535
535
|
export const ComponentsMenuContextualBorder : string;
|