@nova-design-system/nova-base 3.0.0-beta.36 → 3.0.0-beta.38
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/dist/cjs/generated/nova-tailwind-components.js +128 -17
- package/dist/cjs/plugin/nova-plugin.js +4 -0
- package/dist/cjs/plugin/nova-theme.js +1 -0
- package/dist/css/mccs.css +155 -120
- package/dist/css/nova-utils.css +153 -100
- package/dist/css/ocean.css +179 -138
- package/dist/css/spark.css +181 -140
- package/dist/generated/nova-tailwind-components.d.ts +112 -1
- package/dist/generated/nova-tailwind-components.js +128 -17
- package/dist/js/mccs_dark.d.ts +37 -20
- package/dist/js/mccs_dark.js +41 -24
- package/dist/js/mccs_light.d.ts +37 -20
- package/dist/js/mccs_light.js +40 -23
- package/dist/js/ocean_dark.d.ts +49 -32
- package/dist/js/ocean_dark.js +53 -36
- package/dist/js/ocean_light.d.ts +49 -32
- package/dist/js/ocean_light.js +52 -35
- package/dist/js/primitives.d.ts +0 -6
- package/dist/js/primitives.js +0 -6
- package/dist/js/spacings.d.ts +75 -62
- package/dist/js/spacings.js +77 -64
- package/dist/js/spark_dark.d.ts +49 -32
- package/dist/js/spark_dark.js +53 -36
- package/dist/js/spark_light.d.ts +49 -32
- package/dist/js/spark_light.js +54 -37
- package/dist/plugin/nova-plugin.d.ts +1 -0
- package/dist/plugin/nova-plugin.js +4 -0
- package/dist/plugin/nova-theme.d.ts +1 -0
- package/dist/plugin/nova-theme.js +1 -0
- package/package.json +7 -2
|
@@ -35,6 +35,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
35
35
|
border: string;
|
|
36
36
|
color: string;
|
|
37
37
|
};
|
|
38
|
+
'.nv-button:active': {
|
|
39
|
+
background: string;
|
|
40
|
+
border: string;
|
|
41
|
+
color: string;
|
|
42
|
+
};
|
|
38
43
|
'.nv-button:focus, .nv-button:focus-within': {
|
|
39
44
|
outline: string;
|
|
40
45
|
};
|
|
@@ -47,6 +52,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
47
52
|
cursor: string;
|
|
48
53
|
boxShadow: string;
|
|
49
54
|
};
|
|
55
|
+
'.nv-button.active': {
|
|
56
|
+
background: string;
|
|
57
|
+
border: string;
|
|
58
|
+
color: string;
|
|
59
|
+
};
|
|
50
60
|
'.nv-button.danger': {
|
|
51
61
|
background: string;
|
|
52
62
|
border: string;
|
|
@@ -122,6 +132,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
122
132
|
border: string;
|
|
123
133
|
color: string;
|
|
124
134
|
};
|
|
135
|
+
'.nv-button.emphasis-high:active': {
|
|
136
|
+
background: string;
|
|
137
|
+
border: string;
|
|
138
|
+
color: string;
|
|
139
|
+
};
|
|
125
140
|
'.nv-button.emphasis-high:focus, .nv-button.emphasis-high:focus-within': {
|
|
126
141
|
outline: string;
|
|
127
142
|
};
|
|
@@ -134,6 +149,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
134
149
|
cursor: string;
|
|
135
150
|
boxShadow: string;
|
|
136
151
|
};
|
|
152
|
+
'.nv-button.emphasis-high.active': {
|
|
153
|
+
background: string;
|
|
154
|
+
border: string;
|
|
155
|
+
color: string;
|
|
156
|
+
};
|
|
137
157
|
'.nv-button.emphasis-high.danger': {
|
|
138
158
|
background: string;
|
|
139
159
|
border: string;
|
|
@@ -161,6 +181,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
161
181
|
border: string;
|
|
162
182
|
color: string;
|
|
163
183
|
};
|
|
184
|
+
'.nv-button.emphasis-medium:active': {
|
|
185
|
+
background: string;
|
|
186
|
+
border: string;
|
|
187
|
+
color: string;
|
|
188
|
+
};
|
|
164
189
|
'.nv-button.emphasis-medium:focus, .nv-button.emphasis-medium:focus-within': {
|
|
165
190
|
outline: string;
|
|
166
191
|
};
|
|
@@ -173,6 +198,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
173
198
|
cursor: string;
|
|
174
199
|
boxShadow: string;
|
|
175
200
|
};
|
|
201
|
+
'.nv-button.emphasis-medium.active': {
|
|
202
|
+
background: string;
|
|
203
|
+
border: string;
|
|
204
|
+
color: string;
|
|
205
|
+
};
|
|
176
206
|
'.nv-button.emphasis-medium.danger': {
|
|
177
207
|
background: string;
|
|
178
208
|
border: string;
|
|
@@ -200,6 +230,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
200
230
|
border: string;
|
|
201
231
|
color: string;
|
|
202
232
|
};
|
|
233
|
+
'.nv-button.emphasis-low:active': {
|
|
234
|
+
background: string;
|
|
235
|
+
border: string;
|
|
236
|
+
color: string;
|
|
237
|
+
};
|
|
203
238
|
'.nv-button.emphasis-low:focus, .nv-button.emphasis-low:focus-within': {
|
|
204
239
|
outline: string;
|
|
205
240
|
};
|
|
@@ -212,6 +247,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
212
247
|
cursor: string;
|
|
213
248
|
boxShadow: string;
|
|
214
249
|
};
|
|
250
|
+
'.nv-button.emphasis-low.active': {
|
|
251
|
+
background: string;
|
|
252
|
+
border: string;
|
|
253
|
+
color: string;
|
|
254
|
+
};
|
|
215
255
|
'.nv-button.emphasis-low.danger': {
|
|
216
256
|
background: string;
|
|
217
257
|
border: string;
|
|
@@ -239,6 +279,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
239
279
|
border: string;
|
|
240
280
|
color: string;
|
|
241
281
|
};
|
|
282
|
+
'.nv-button.emphasis-lower:active': {
|
|
283
|
+
background: string;
|
|
284
|
+
border: string;
|
|
285
|
+
color: string;
|
|
286
|
+
};
|
|
242
287
|
'.nv-button.emphasis-lower:focus, .nv-button.emphasis-lower:focus-within': {
|
|
243
288
|
outline: string;
|
|
244
289
|
};
|
|
@@ -251,6 +296,11 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
251
296
|
cursor: string;
|
|
252
297
|
boxShadow: string;
|
|
253
298
|
};
|
|
299
|
+
'.nv-button.emphasis-lower.active': {
|
|
300
|
+
background: string;
|
|
301
|
+
border: string;
|
|
302
|
+
color: string;
|
|
303
|
+
};
|
|
254
304
|
'.nv-button.emphasis-lower.danger': {
|
|
255
305
|
background: string;
|
|
256
306
|
border: string;
|
|
@@ -279,10 +329,71 @@ export declare const NOVA_TAILWIND_COMPONENTS: {
|
|
|
279
329
|
'.nv-link:hover': {
|
|
280
330
|
color: string;
|
|
281
331
|
};
|
|
332
|
+
'.nv-sidenav .nv-link, .nv-navbar .nv-link, .nv-tabs .nv-link': {
|
|
333
|
+
display: string;
|
|
334
|
+
alignItems: string;
|
|
335
|
+
color: string;
|
|
336
|
+
backgroundColor: string;
|
|
337
|
+
textDecoration: string;
|
|
338
|
+
fontWeight: string;
|
|
339
|
+
padding: string;
|
|
340
|
+
columnGap: string;
|
|
341
|
+
};
|
|
342
|
+
'.nv-tabs': {
|
|
343
|
+
display: string;
|
|
344
|
+
flex: string;
|
|
345
|
+
alignItems: string;
|
|
346
|
+
borderBottom: string;
|
|
347
|
+
columnGap: string;
|
|
348
|
+
};
|
|
282
349
|
'.nv-tabs .nv-link': {
|
|
350
|
+
borderStyle: string;
|
|
283
351
|
borderColor: string;
|
|
352
|
+
borderWidth: string;
|
|
284
353
|
};
|
|
285
|
-
'.nv-tabs .nv-link:hover
|
|
354
|
+
'.nv-tabs .nv-link:hover': {
|
|
355
|
+
color: string;
|
|
356
|
+
borderColor: string;
|
|
357
|
+
backgroundColor: string;
|
|
358
|
+
};
|
|
359
|
+
'.nv-tabs .nv-link.active': {
|
|
360
|
+
color: string;
|
|
361
|
+
borderColor: string;
|
|
362
|
+
backgroundColor: string;
|
|
363
|
+
};
|
|
364
|
+
'.nv-navbar .nv-link, .nv-sidenav .nv-link': {
|
|
365
|
+
border: string;
|
|
366
|
+
borderRadius: string;
|
|
367
|
+
};
|
|
368
|
+
'.nv-navbar .nv-link:hover, .nv-sidenav .nv-link:hover': {
|
|
369
|
+
color: string;
|
|
286
370
|
borderColor: string;
|
|
371
|
+
backgroundColor: string;
|
|
372
|
+
};
|
|
373
|
+
'.nv-navbar .nv-link.active, .nv-navbar .nv-link.router-link-active, .nv-sidenav .nv-link.active, .nv-sidenav .nv-link.router-link-active': {
|
|
374
|
+
color: string;
|
|
375
|
+
borderColor: string;
|
|
376
|
+
backgroundColor: string;
|
|
377
|
+
};
|
|
378
|
+
'.nv-sidenav .collapsible .nv-link': {
|
|
379
|
+
justifyContent: string;
|
|
380
|
+
};
|
|
381
|
+
'.nv-sidenav .collapsible .nv-link .nv-iconbutton': {
|
|
382
|
+
width: string;
|
|
383
|
+
height: string;
|
|
384
|
+
};
|
|
385
|
+
'.nv-link .nv-badge': {
|
|
386
|
+
borderRadius: string;
|
|
387
|
+
width: string;
|
|
388
|
+
display: string;
|
|
389
|
+
alignItems: string;
|
|
390
|
+
justifyContent: string;
|
|
391
|
+
fontSize: string;
|
|
392
|
+
color: string;
|
|
393
|
+
backgroundColor: string;
|
|
394
|
+
};
|
|
395
|
+
'.nv-link.disabled': {
|
|
396
|
+
opacity: string;
|
|
397
|
+
cursor: string;
|
|
287
398
|
};
|
|
288
399
|
};
|
|
@@ -36,11 +36,16 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
36
36
|
'border': '1px solid var(--components-button-medium-border)',
|
|
37
37
|
'color': 'var(--components-button-medium-text-hover)'
|
|
38
38
|
},
|
|
39
|
+
'.nv-button:active': {
|
|
40
|
+
'background': 'var(--components-button-medium-background-active)',
|
|
41
|
+
'border': '1px solid var(--components-button-medium-border-active)',
|
|
42
|
+
'color': 'var(--components-button-medium-text-active)'
|
|
43
|
+
},
|
|
39
44
|
'.nv-button:focus, .nv-button:focus-within': {
|
|
40
45
|
'outline': 'none'
|
|
41
46
|
},
|
|
42
47
|
'.nv-button:focus-visible, .nv-button:has(:focus-visible)': {
|
|
43
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
48
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
44
49
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
45
50
|
},
|
|
46
51
|
'.nv-button:disabled:not([disabled=false])': {
|
|
@@ -48,21 +53,26 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
48
53
|
'cursor': 'not-allowed',
|
|
49
54
|
'boxShadow': 'none'
|
|
50
55
|
},
|
|
56
|
+
'.nv-button.active': {
|
|
57
|
+
'background': 'var(--components-button-medium-background-active)',
|
|
58
|
+
'border': '1px solid var(--components-button-medium-border-active)',
|
|
59
|
+
'color': 'var(--components-button-medium-text-active)'
|
|
60
|
+
},
|
|
51
61
|
'.nv-button.danger': {
|
|
52
62
|
'background': 'var(--components-button-destructive-high-background)',
|
|
53
|
-
'border': '1px solid
|
|
63
|
+
'border': '1px solid transparent',
|
|
54
64
|
'color': 'var(--components-button-destructive-high-text)'
|
|
55
65
|
},
|
|
56
66
|
'.nv-button.danger:hover': {
|
|
57
67
|
'background': 'var(--components-button-destructive-high-background-hover)',
|
|
58
|
-
'border': '1px solid
|
|
68
|
+
'border': '1px solid transparent',
|
|
59
69
|
'color': 'var(--components-button-destructive-high-text-hover)'
|
|
60
70
|
},
|
|
61
71
|
'.nv-button.danger:focus, .nv-button.danger:focus-within': {
|
|
62
72
|
'outline': 'none'
|
|
63
73
|
},
|
|
64
74
|
'.nv-button.danger:focus-visible, .nv-button.danger:has(:focus-visible)': {
|
|
65
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
75
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
66
76
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
67
77
|
},
|
|
68
78
|
'.nv-button.size-xs': {
|
|
@@ -123,11 +133,16 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
123
133
|
'border': '1px solid var(--components-button-high-border)',
|
|
124
134
|
'color': 'var(--components-button-high-text-hover)'
|
|
125
135
|
},
|
|
136
|
+
'.nv-button.emphasis-high:active': {
|
|
137
|
+
'background': 'var(--components-button-high-background-active)',
|
|
138
|
+
'border': '1px solid var(--components-button-high-border-active)',
|
|
139
|
+
'color': 'var(--components-button-high-text-active)'
|
|
140
|
+
},
|
|
126
141
|
'.nv-button.emphasis-high:focus, .nv-button.emphasis-high:focus-within': {
|
|
127
142
|
'outline': 'none'
|
|
128
143
|
},
|
|
129
144
|
'.nv-button.emphasis-high:focus-visible, .nv-button.emphasis-high:has(:focus-visible)': {
|
|
130
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
145
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
131
146
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
132
147
|
},
|
|
133
148
|
'.nv-button.emphasis-high:disabled:not([disabled=false])': {
|
|
@@ -135,21 +150,26 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
135
150
|
'cursor': 'not-allowed',
|
|
136
151
|
'boxShadow': 'none'
|
|
137
152
|
},
|
|
153
|
+
'.nv-button.emphasis-high.active': {
|
|
154
|
+
'background': 'var(--components-button-high-background-active)',
|
|
155
|
+
'border': '1px solid var(--components-button-high-border-active)',
|
|
156
|
+
'color': 'var(--components-button-high-text-active)'
|
|
157
|
+
},
|
|
138
158
|
'.nv-button.emphasis-high.danger': {
|
|
139
159
|
'background': 'var(--components-button-destructive-high-background)',
|
|
140
|
-
'border': '1px solid
|
|
160
|
+
'border': '1px solid transparent',
|
|
141
161
|
'color': 'var(--components-button-destructive-high-text)'
|
|
142
162
|
},
|
|
143
163
|
'.nv-button.emphasis-high.danger:hover': {
|
|
144
164
|
'background': 'var(--components-button-destructive-high-background-hover)',
|
|
145
|
-
'border': '1px solid
|
|
165
|
+
'border': '1px solid transparent',
|
|
146
166
|
'color': 'var(--components-button-destructive-high-text-hover)'
|
|
147
167
|
},
|
|
148
168
|
'.nv-button.emphasis-high.danger:focus, .nv-button.emphasis-high.danger:focus-within': {
|
|
149
169
|
'outline': 'none'
|
|
150
170
|
},
|
|
151
171
|
'.nv-button.emphasis-high.danger:focus-visible, .nv-button.emphasis-high.danger:has(:focus-visible)': {
|
|
152
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
172
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
153
173
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
154
174
|
},
|
|
155
175
|
'.nv-button.emphasis-medium': {
|
|
@@ -162,11 +182,16 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
162
182
|
'border': '1px solid var(--components-button-medium-border)',
|
|
163
183
|
'color': 'var(--components-button-medium-text-hover)'
|
|
164
184
|
},
|
|
185
|
+
'.nv-button.emphasis-medium:active': {
|
|
186
|
+
'background': 'var(--components-button-medium-background-active)',
|
|
187
|
+
'border': '1px solid var(--components-button-medium-border-active)',
|
|
188
|
+
'color': 'var(--components-button-medium-text-active)'
|
|
189
|
+
},
|
|
165
190
|
'.nv-button.emphasis-medium:focus, .nv-button.emphasis-medium:focus-within': {
|
|
166
191
|
'outline': 'none'
|
|
167
192
|
},
|
|
168
193
|
'.nv-button.emphasis-medium:focus-visible, .nv-button.emphasis-medium:has(:focus-visible)': {
|
|
169
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
194
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
170
195
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
171
196
|
},
|
|
172
197
|
'.nv-button.emphasis-medium:disabled:not([disabled=false])': {
|
|
@@ -174,6 +199,11 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
174
199
|
'cursor': 'not-allowed',
|
|
175
200
|
'boxShadow': 'none'
|
|
176
201
|
},
|
|
202
|
+
'.nv-button.emphasis-medium.active': {
|
|
203
|
+
'background': 'var(--components-button-medium-background-active)',
|
|
204
|
+
'border': '1px solid var(--components-button-medium-border-active)',
|
|
205
|
+
'color': 'var(--components-button-medium-text-active)'
|
|
206
|
+
},
|
|
177
207
|
'.nv-button.emphasis-medium.danger': {
|
|
178
208
|
'background': 'var(--components-button-destructive-medium-background)',
|
|
179
209
|
'border': '1px solid var(--components-button-destructive-medium-border)',
|
|
@@ -188,7 +218,7 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
188
218
|
'outline': 'none'
|
|
189
219
|
},
|
|
190
220
|
'.nv-button.emphasis-medium.danger:focus-visible, .nv-button.emphasis-medium.danger:has(:focus-visible)': {
|
|
191
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
221
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
192
222
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
193
223
|
},
|
|
194
224
|
'.nv-button.emphasis-low': {
|
|
@@ -201,11 +231,16 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
201
231
|
'border': '1px solid var(--components-button-low-border)',
|
|
202
232
|
'color': 'var(--components-button-low-text-hover)'
|
|
203
233
|
},
|
|
234
|
+
'.nv-button.emphasis-low:active': {
|
|
235
|
+
'background': 'var(--components-button-low-background-active)',
|
|
236
|
+
'border': '1px solid var(--components-button-low-border-active)',
|
|
237
|
+
'color': 'var(--components-button-low-text-active)'
|
|
238
|
+
},
|
|
204
239
|
'.nv-button.emphasis-low:focus, .nv-button.emphasis-low:focus-within': {
|
|
205
240
|
'outline': 'none'
|
|
206
241
|
},
|
|
207
242
|
'.nv-button.emphasis-low:focus-visible, .nv-button.emphasis-low:has(:focus-visible)': {
|
|
208
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
243
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
209
244
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
210
245
|
},
|
|
211
246
|
'.nv-button.emphasis-low:disabled:not([disabled=false])': {
|
|
@@ -213,6 +248,11 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
213
248
|
'cursor': 'not-allowed',
|
|
214
249
|
'boxShadow': 'none'
|
|
215
250
|
},
|
|
251
|
+
'.nv-button.emphasis-low.active': {
|
|
252
|
+
'background': 'var(--components-button-low-background-active)',
|
|
253
|
+
'border': '1px solid var(--components-button-low-border-active)',
|
|
254
|
+
'color': 'var(--components-button-low-text-active)'
|
|
255
|
+
},
|
|
216
256
|
'.nv-button.emphasis-low.danger': {
|
|
217
257
|
'background': 'var(--components-button-destructive-low-background)',
|
|
218
258
|
'border': '1px solid var(--components-button-destructive-low-border)',
|
|
@@ -227,7 +267,7 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
227
267
|
'outline': 'none'
|
|
228
268
|
},
|
|
229
269
|
'.nv-button.emphasis-low.danger:focus-visible, .nv-button.emphasis-low.danger:has(:focus-visible)': {
|
|
230
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
270
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
231
271
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
232
272
|
},
|
|
233
273
|
'.nv-button.emphasis-lower': {
|
|
@@ -240,11 +280,16 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
240
280
|
'border': '1px solid var(--components-button-lower-border)',
|
|
241
281
|
'color': 'var(--components-button-lower-text-hover)'
|
|
242
282
|
},
|
|
283
|
+
'.nv-button.emphasis-lower:active': {
|
|
284
|
+
'background': 'var(--components-button-lower-background-active)',
|
|
285
|
+
'border': '1px solid var(--components-button-lower-border-active)',
|
|
286
|
+
'color': 'var(--components-button-lower-text-active)'
|
|
287
|
+
},
|
|
243
288
|
'.nv-button.emphasis-lower:focus, .nv-button.emphasis-lower:focus-within': {
|
|
244
289
|
'outline': 'none'
|
|
245
290
|
},
|
|
246
291
|
'.nv-button.emphasis-lower:focus-visible, .nv-button.emphasis-lower:has(:focus-visible)': {
|
|
247
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
292
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
248
293
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
249
294
|
},
|
|
250
295
|
'.nv-button.emphasis-lower:disabled:not([disabled=false])': {
|
|
@@ -252,6 +297,11 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
252
297
|
'cursor': 'not-allowed',
|
|
253
298
|
'boxShadow': 'none'
|
|
254
299
|
},
|
|
300
|
+
'.nv-button.emphasis-lower.active': {
|
|
301
|
+
'background': 'var(--components-button-lower-background-active)',
|
|
302
|
+
'border': '1px solid var(--components-button-lower-border-active)',
|
|
303
|
+
'color': 'var(--components-button-lower-text-active)'
|
|
304
|
+
},
|
|
255
305
|
'.nv-button.emphasis-lower.danger': {
|
|
256
306
|
'background': 'var(--components-button-destructive-lower-background)',
|
|
257
307
|
'border': '1px solid var(--components-button-destructive-lower-border)',
|
|
@@ -266,7 +316,7 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
266
316
|
'outline': 'none'
|
|
267
317
|
},
|
|
268
318
|
'.nv-button.emphasis-lower.danger:focus-visible, .nv-button.emphasis-lower.danger:has(:focus-visible)': {
|
|
269
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
319
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
270
320
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
271
321
|
},
|
|
272
322
|
'.nv-button.fluid': {
|
|
@@ -280,10 +330,71 @@ export const NOVA_TAILWIND_COMPONENTS = {
|
|
|
280
330
|
'.nv-link:hover': {
|
|
281
331
|
'color': 'var(--color-interaction-link-high-text-hover)'
|
|
282
332
|
},
|
|
333
|
+
'.nv-sidenav .nv-link, .nv-navbar .nv-link, .nv-tabs .nv-link': {
|
|
334
|
+
'display': 'flex',
|
|
335
|
+
'alignItems': 'center',
|
|
336
|
+
'color': 'var(--color-interaction-container-neutral-text)',
|
|
337
|
+
'backgroundColor': 'var(--color-interaction-container-neutral-background)',
|
|
338
|
+
'textDecoration': 'none',
|
|
339
|
+
'fontWeight': '500',
|
|
340
|
+
'padding': 'var(--spacing-2) var(--spacing-3)',
|
|
341
|
+
'columnGap': 'var(--spacing-2)'
|
|
342
|
+
},
|
|
343
|
+
'.nv-tabs': {
|
|
344
|
+
'display': 'flex',
|
|
345
|
+
'flex': '1 1 0%',
|
|
346
|
+
'alignItems': 'center',
|
|
347
|
+
'borderBottom': '1px solid var(--color-content-low-border)',
|
|
348
|
+
'columnGap': 'var(--spacing-0-5)'
|
|
349
|
+
},
|
|
283
350
|
'.nv-tabs .nv-link': {
|
|
284
|
-
'
|
|
351
|
+
'borderStyle': 'solid',
|
|
352
|
+
'borderColor': 'transparent',
|
|
353
|
+
'borderWidth': '0 0 2px 0'
|
|
354
|
+
},
|
|
355
|
+
'.nv-tabs .nv-link:hover': {
|
|
356
|
+
'color': 'var(--color-interaction-container-branded-low-text-hover)',
|
|
357
|
+
'borderColor': 'transparent',
|
|
358
|
+
'backgroundColor': 'transparent'
|
|
359
|
+
},
|
|
360
|
+
'.nv-tabs .nv-link.active': {
|
|
361
|
+
'color': 'var(--color-interaction-container-branded-low-text-active)',
|
|
362
|
+
'borderColor': 'var(--color-interaction-container-branded-low-border-active)',
|
|
363
|
+
'backgroundColor': 'transparent'
|
|
364
|
+
},
|
|
365
|
+
'.nv-navbar .nv-link, .nv-sidenav .nv-link': {
|
|
366
|
+
'border': 'solid 0 transparent',
|
|
367
|
+
'borderRadius': 'var(--radius-rounded-md)'
|
|
368
|
+
},
|
|
369
|
+
'.nv-navbar .nv-link:hover, .nv-sidenav .nv-link:hover': {
|
|
370
|
+
'color': 'var(--color-interaction-container-neutral-text-hover)',
|
|
371
|
+
'borderColor': 'var(--color-interaction-container-neutral-border-hover)',
|
|
372
|
+
'backgroundColor': 'var(--color-interaction-container-neutral-background-hover)'
|
|
373
|
+
},
|
|
374
|
+
'.nv-navbar .nv-link.active, .nv-navbar .nv-link.router-link-active, .nv-sidenav .nv-link.active, .nv-sidenav .nv-link.router-link-active': {
|
|
375
|
+
'color': 'var(--color-interaction-container-neutral-text-active)',
|
|
376
|
+
'borderColor': 'var(--color-interaction-container-neutral-text-active)',
|
|
377
|
+
'backgroundColor': 'var(--color-interaction-container-neutral-background-active)'
|
|
378
|
+
},
|
|
379
|
+
'.nv-sidenav .collapsible .nv-link': {
|
|
380
|
+
'justifyContent': 'space-between'
|
|
381
|
+
},
|
|
382
|
+
'.nv-sidenav .collapsible .nv-link .nv-iconbutton': {
|
|
383
|
+
'width': '20px !important',
|
|
384
|
+
'height': '20px !important'
|
|
385
|
+
},
|
|
386
|
+
'.nv-link .nv-badge': {
|
|
387
|
+
'borderRadius': 'var(--radius-rounded-full)',
|
|
388
|
+
'width': 'var(--spacing-5)',
|
|
389
|
+
'display': 'flex',
|
|
390
|
+
'alignItems': 'center',
|
|
391
|
+
'justifyContent': 'center',
|
|
392
|
+
'fontSize': 'var(--font-size-xs)',
|
|
393
|
+
'color': 'var(--color-feedback-neutral-high-icon)',
|
|
394
|
+
'backgroundColor': 'var(--color-feedback-neutral-high-background)'
|
|
285
395
|
},
|
|
286
|
-
'.nv-
|
|
287
|
-
'
|
|
396
|
+
'.nv-link.disabled': {
|
|
397
|
+
'opacity': '0.5',
|
|
398
|
+
'cursor': 'not-allowed'
|
|
288
399
|
}
|
|
289
400
|
};
|
package/dist/js/mccs_dark.d.ts
CHANGED
|
@@ -50,6 +50,8 @@ export const ColorInteractionLinkInvertedTextHover : string;
|
|
|
50
50
|
export const ColorInteractionLinkInvertedIcon : string;
|
|
51
51
|
export const ColorInteractionLinkInvertedIconHover : string;
|
|
52
52
|
export const ColorBlack : string;
|
|
53
|
+
export const ColorWhite : string;
|
|
54
|
+
export const ColorTransparent : string;
|
|
53
55
|
export const ColorLevel10Background : string;
|
|
54
56
|
export const ColorLevel15Background : string;
|
|
55
57
|
export const ColorLevel20Background : string;
|
|
@@ -186,6 +188,8 @@ export const ColorRainbow10Text : string;
|
|
|
186
188
|
export const ColorDontUseBorder : string;
|
|
187
189
|
export const ColorDontUseContent : string;
|
|
188
190
|
export const ColorDontUseBackground : string;
|
|
191
|
+
export const OpacityDisabled : string;
|
|
192
|
+
export const OpacityDisabled2 : string;
|
|
189
193
|
export const ShadowColorOpacity0 : string;
|
|
190
194
|
export const ShadowColorOpacity1 : string;
|
|
191
195
|
export const ShadowColorOpacity2 : string;
|
|
@@ -212,7 +216,6 @@ export const ShadowYAxisLg2 : string;
|
|
|
212
216
|
export const ShadowYAxisXl1 : string;
|
|
213
217
|
export const ShadowYAxisXl2 : string;
|
|
214
218
|
export const ShadowYAxis2xl : string;
|
|
215
|
-
export const ComponentsWpfComponents2 : string;
|
|
216
219
|
export const ComponentsButtonHighBorder : string;
|
|
217
220
|
export const ComponentsButtonHighBorderHover : string;
|
|
218
221
|
export const ComponentsButtonHighBorderActive : string;
|
|
@@ -324,17 +327,21 @@ export const ComponentsListNativeItemBackgroundDefault : string;
|
|
|
324
327
|
export const ComponentsListNativeItemBackgroundHover : string;
|
|
325
328
|
export const ComponentsListNativeItemBackgroundDisabled : string;
|
|
326
329
|
export const ComponentsListNativeItemBackgroundTitle : string;
|
|
327
|
-
export const
|
|
328
|
-
export const
|
|
329
|
-
export const
|
|
330
|
-
export const
|
|
331
|
-
export const
|
|
332
|
-
export const
|
|
333
|
-
export const
|
|
334
|
-
export const
|
|
335
|
-
export const
|
|
336
|
-
export const
|
|
337
|
-
export const
|
|
330
|
+
export const ComponentsListDropdownBackground : string;
|
|
331
|
+
export const ComponentsListDropdownHeaderBackground : string;
|
|
332
|
+
export const ComponentsListDropdownItemLabelDefault : string;
|
|
333
|
+
export const ComponentsListDropdownItemLabelHover : string;
|
|
334
|
+
export const ComponentsListDropdownItemLabelDisabled : string;
|
|
335
|
+
export const ComponentsListDropdownItemDescriptionDefault : string;
|
|
336
|
+
export const ComponentsListDropdownItemDescriptionHover : string;
|
|
337
|
+
export const ComponentsListDropdownItemDescriptionDisabled : string;
|
|
338
|
+
export const ComponentsListDropdownItemBackgroundDefault : string;
|
|
339
|
+
export const ComponentsListDropdownItemBackgroundHover : string;
|
|
340
|
+
export const ComponentsListDropdownItemBackgroundDisabled : string;
|
|
341
|
+
export const ComponentsListDropdownItemBackgroundTitle : string;
|
|
342
|
+
export const ComponentsListDropdownItemTitleContent : string;
|
|
343
|
+
export const ComponentsListDropdownSeparator : string;
|
|
344
|
+
export const ComponentsListDropdownBorder : string;
|
|
338
345
|
export const ComponentsLoaderWhiteBackground : string;
|
|
339
346
|
export const ComponentsLoaderWhiteForeground : string;
|
|
340
347
|
export const ComponentsLoaderBrandBackground : string;
|
|
@@ -418,6 +425,16 @@ export const ComponentsAvatarContent7 : string;
|
|
|
418
425
|
export const ComponentsAvatarContent8 : string;
|
|
419
426
|
export const ComponentsAvatarContent9 : string;
|
|
420
427
|
export const ComponentsAvatarContent10 : string;
|
|
428
|
+
export const ComponentsFieldTimeBackgroundDefault : string;
|
|
429
|
+
export const ComponentsFieldTimeBackgroundHover : string;
|
|
430
|
+
export const ComponentsFieldTimeBackgroundActive : string;
|
|
431
|
+
export const ComponentsFieldTimeTextDefault : string;
|
|
432
|
+
export const ComponentsFieldTimeTextHover : string;
|
|
433
|
+
export const ComponentsFieldTimeTextActive : string;
|
|
434
|
+
export const ComponentsFieldTimeBorderActive : string;
|
|
435
|
+
export const ComponentsBreadcrumbText : string;
|
|
436
|
+
export const ComponentsBreadcrumbTextActive : string;
|
|
437
|
+
export const ComponentsBreadcrumbTextHover : string;
|
|
421
438
|
export const ComponentsNotificationInformationBackground : string;
|
|
422
439
|
export const ComponentsNotificationInformationIcon : string;
|
|
423
440
|
export const ComponentsNotificationInformationBorder : string;
|
|
@@ -435,14 +452,6 @@ export const ComponentsNotificationSuccessIcon : string;
|
|
|
435
452
|
export const ComponentsNotificationNeutralBackground : string;
|
|
436
453
|
export const ComponentsNotificationNeutralBorder : string;
|
|
437
454
|
export const ComponentsNotificationNeutralIcon : string;
|
|
438
|
-
export const ComponentsPopoverBackground : string;
|
|
439
|
-
export const ComponentsPopoverBorder : string;
|
|
440
|
-
export const ComponentsPopoverText : string;
|
|
441
|
-
export const ComponentsPopoverSupportingText : string;
|
|
442
|
-
export const ComponentsTooltipBackground : string;
|
|
443
|
-
export const ComponentsTooltipBorder : string;
|
|
444
|
-
export const ComponentsTooltipText : string;
|
|
445
|
-
export const ComponentsTooltipSupportingText : string;
|
|
446
455
|
export const ComponentsMenuContextualBackground : string;
|
|
447
456
|
export const ComponentsMenuContextualBorder : string;
|
|
448
457
|
export const ComponentsMenuContextualItemBackground : string;
|
|
@@ -451,3 +460,11 @@ export const ComponentsMenuContextualItemShortcut : string;
|
|
|
451
460
|
export const ComponentsMenuContextualItemContent : string;
|
|
452
461
|
export const ComponentsMenuContextualItemContentDisabled : string;
|
|
453
462
|
export const ComponentsMenuContextualItemContentHover : string;
|
|
463
|
+
export const ComponentsPopoverBackground : string;
|
|
464
|
+
export const ComponentsPopoverBorder : string;
|
|
465
|
+
export const ComponentsPopoverText : string;
|
|
466
|
+
export const ComponentsPopoverSupportingText : string;
|
|
467
|
+
export const ComponentsTooltipBackground : string;
|
|
468
|
+
export const ComponentsTooltipBorder : string;
|
|
469
|
+
export const ComponentsTooltipText : string;
|
|
470
|
+
export const ComponentsTooltipSupportingText : string;
|