welcome-ui 0.0.0-dev.1762114810912 → 0.0.0-dev.1763386521897
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/Alert.css +1 -1
- package/dist/Alert.js +84 -87
- package/dist/CloseButton.css +1 -1
- package/dist/CloseButton.js +12 -12
- package/dist/Icon.js +8 -4
- package/dist/Link.js +19 -18
- package/dist/Pagination.css +1 -1
- package/dist/Pagination.js +155 -76
- package/dist/StickyNote.css +1 -0
- package/dist/StickyNote.js +42 -0
- package/dist/Tag.css +1 -1
- package/dist/Tag.js +40 -40
- package/dist/Toast.css +1 -1
- package/dist/Toast.js +286 -222
- package/dist/theme.css +1 -1
- package/dist/types/components/Alert/components/Buttons.d.ts +3 -0
- package/dist/types/components/Alert/components/Title.d.ts +2 -0
- package/dist/types/components/Alert/index.d.ts +4 -3
- package/dist/types/components/Alert/types.d.ts +3 -9
- package/dist/types/components/Icon/icons.d.ts +2 -2
- package/dist/types/components/Pagination/types.d.ts +11 -0
- package/dist/types/components/StickyNote/components/Button.d.ts +2 -0
- package/dist/types/components/StickyNote/components/Title.d.ts +2 -0
- package/dist/types/components/StickyNote/index.d.ts +5 -0
- package/dist/types/components/StickyNote/index.test.d.ts +1 -0
- package/dist/types/components/StickyNote/types.d.ts +15 -0
- package/dist/types/components/Toast/components/Growl.d.ts +2 -0
- package/dist/types/components/Toast/index.d.ts +4 -1
- package/dist/types/components/Toast/types.d.ts +8 -9
- package/dist/types/theme/types.d.ts +233 -218
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export type ToastOptions = {
|
|
|
8
8
|
onClose?: () => void;
|
|
9
9
|
position?: ToastPosition;
|
|
10
10
|
};
|
|
11
|
-
export type ToastVariant = '
|
|
11
|
+
export type ToastVariant = 'error' | 'info' | 'success' | 'warning';
|
|
12
12
|
export type ToastWrapperProps = {
|
|
13
13
|
toast: CustomToastOptions & Toast;
|
|
14
14
|
updateHeight: (toastId: string, height: number) => void;
|
|
@@ -17,20 +17,19 @@ type CustomToastOptions = {
|
|
|
17
17
|
onClose?: () => void;
|
|
18
18
|
};
|
|
19
19
|
interface GrowlOptions {
|
|
20
|
-
|
|
20
|
+
cta?: JSX.Element;
|
|
21
|
+
duration?: ToastOptions['duration'];
|
|
21
22
|
hasCloseButton?: boolean;
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
onClose?: ToastOptions['onClose'];
|
|
24
|
+
showProgressBar?: boolean;
|
|
24
25
|
variant?: ToastVariant;
|
|
25
26
|
}
|
|
26
27
|
interface SnackbarOptions {
|
|
27
|
-
/** add correct separator for call to action
|
|
28
|
-
* use SnackbarAction
|
|
29
|
-
*/
|
|
30
28
|
cta?: JSX.Element;
|
|
29
|
+
duration?: ToastOptions['duration'];
|
|
31
30
|
hasCloseButton?: boolean;
|
|
32
|
-
|
|
33
|
-
onClose?:
|
|
31
|
+
hideProgressBar?: boolean;
|
|
32
|
+
onClose?: ToastOptions['onClose'];
|
|
34
33
|
variant?: ToastVariant;
|
|
35
34
|
}
|
|
36
35
|
export {};
|
|
@@ -213,186 +213,160 @@ export type ThemeVariables = {
|
|
|
213
213
|
'--components-colors-card-color-border-hover': string;
|
|
214
214
|
'--components-colors-card-color-icon-default': string;
|
|
215
215
|
'--components-colors-card-color-icon-hover': string;
|
|
216
|
-
'--components-colors-
|
|
217
|
-
'--components-colors-
|
|
218
|
-
'--components-colors-
|
|
219
|
-
'--components-colors-
|
|
220
|
-
'--components-colors-
|
|
221
|
-
'--components-colors-
|
|
222
|
-
'--components-colors-tag-color-background-
|
|
223
|
-
'--components-colors-tag-color-background-
|
|
224
|
-
'--components-colors-tag-color-background-
|
|
225
|
-
'--components-colors-tag-color-background-
|
|
226
|
-
'--components-colors-tag-color-background-
|
|
227
|
-
'--components-colors-tag-color-background-
|
|
228
|
-
'--components-colors-tag-color-background-
|
|
229
|
-
'--components-colors-tag-color-background-
|
|
230
|
-
'--components-colors-tag-color-background-
|
|
231
|
-
'--components-colors-tag-color-background-
|
|
232
|
-
'--components-colors-tag-color-background-
|
|
233
|
-
'--components-colors-tag-color-background-
|
|
234
|
-
'--components-colors-tag-color-background-
|
|
235
|
-
'--components-colors-tag-color-background-
|
|
236
|
-
'--components-colors-tag-color-background-
|
|
237
|
-
'--components-colors-tag-color-background-
|
|
238
|
-
'--components-colors-tag-color-background-
|
|
239
|
-
'--components-colors-tag-color-background-
|
|
240
|
-
'--components-colors-tag-color-background-
|
|
241
|
-
'--components-colors-tag-color-background-
|
|
242
|
-
'--components-colors-tag-color-background-
|
|
243
|
-
'--components-colors-tag-color-background-
|
|
244
|
-
'--components-colors-tag-color-background-
|
|
245
|
-
'--components-colors-tag-color-background-
|
|
246
|
-
'--components-colors-tag-color-background-
|
|
247
|
-
'--components-colors-tag-color-background-
|
|
248
|
-
'--components-colors-tag-color-background-
|
|
249
|
-
'--components-colors-tag-color-background-
|
|
250
|
-
'--components-colors-tag-color-background-
|
|
251
|
-
'--components-colors-tag-color-background-
|
|
252
|
-
'--components-colors-tag-color-background-
|
|
253
|
-
'--components-colors-tag-color-background-
|
|
254
|
-
'--components-colors-tag-color-background-
|
|
255
|
-
'--components-colors-tag-color-background-
|
|
256
|
-
'--components-colors-tag-color-background-
|
|
257
|
-
'--components-colors-tag-color-background-
|
|
258
|
-
'--components-colors-tag-color-background-
|
|
259
|
-
'--components-colors-tag-color-background-
|
|
260
|
-
'--components-colors-tag-color-background-
|
|
261
|
-
'--components-colors-tag-color-background-
|
|
262
|
-
'--components-colors-tag-color-background-
|
|
263
|
-
'--components-colors-tag-color-background-
|
|
264
|
-
'--components-colors-tag-color-background-
|
|
265
|
-
'--components-colors-tag-color-background-
|
|
266
|
-
'--components-colors-tag-color-background-
|
|
267
|
-
'--components-colors-tag-color-background-
|
|
268
|
-
'--components-colors-tag-color-background-
|
|
269
|
-
'--components-colors-tag-color-background-
|
|
216
|
+
'--components-colors-drawer-body-color-background-default': string;
|
|
217
|
+
'--components-colors-drawer-color-text-title': string;
|
|
218
|
+
'--components-colors-drawer-color-text-description': string;
|
|
219
|
+
'--components-colors-drawer-color-border-default': string;
|
|
220
|
+
'--components-colors-drawer-color-border-hover': string;
|
|
221
|
+
'--components-colors-drawer-color-icon-default': string;
|
|
222
|
+
'--components-colors-tag-color-background-brand-default': string;
|
|
223
|
+
'--components-colors-tag-color-background-brand-hover': string;
|
|
224
|
+
'--components-colors-tag-color-background-brand-disabled': string;
|
|
225
|
+
'--components-colors-tag-color-background-brand-ai-default': string;
|
|
226
|
+
'--components-colors-tag-color-background-brand-ai-hover': string;
|
|
227
|
+
'--components-colors-tag-color-background-brand-ai-disabled': string;
|
|
228
|
+
'--components-colors-tag-color-background-warm-default': string;
|
|
229
|
+
'--components-colors-tag-color-background-warm-hover': string;
|
|
230
|
+
'--components-colors-tag-color-background-warm-disabled': string;
|
|
231
|
+
'--components-colors-tag-color-background-warm-ai-default': string;
|
|
232
|
+
'--components-colors-tag-color-background-warm-ai-hover': string;
|
|
233
|
+
'--components-colors-tag-color-background-warm-ai-disabled': string;
|
|
234
|
+
'--components-colors-tag-color-background-green-default': string;
|
|
235
|
+
'--components-colors-tag-color-background-green-hover': string;
|
|
236
|
+
'--components-colors-tag-color-background-green-disabled': string;
|
|
237
|
+
'--components-colors-tag-color-background-green-ai-default': string;
|
|
238
|
+
'--components-colors-tag-color-background-green-ai-hover': string;
|
|
239
|
+
'--components-colors-tag-color-background-green-ai-disabled': string;
|
|
240
|
+
'--components-colors-tag-color-background-teal-default': string;
|
|
241
|
+
'--components-colors-tag-color-background-teal-hover': string;
|
|
242
|
+
'--components-colors-tag-color-background-teal-disabled': string;
|
|
243
|
+
'--components-colors-tag-color-background-teal-ai-default': string;
|
|
244
|
+
'--components-colors-tag-color-background-teal-ai-hover': string;
|
|
245
|
+
'--components-colors-tag-color-background-teal-ai-disabled': string;
|
|
246
|
+
'--components-colors-tag-color-background-blue-default': string;
|
|
247
|
+
'--components-colors-tag-color-background-blue-hover': string;
|
|
248
|
+
'--components-colors-tag-color-background-blue-disabled': string;
|
|
249
|
+
'--components-colors-tag-color-background-blue-ai-default': string;
|
|
250
|
+
'--components-colors-tag-color-background-blue-ai-hover': string;
|
|
251
|
+
'--components-colors-tag-color-background-blue-ai-disabled': string;
|
|
252
|
+
'--components-colors-tag-color-background-violet-default': string;
|
|
253
|
+
'--components-colors-tag-color-background-violet-hover': string;
|
|
254
|
+
'--components-colors-tag-color-background-violet-disabled': string;
|
|
255
|
+
'--components-colors-tag-color-background-violet-ai-default': string;
|
|
256
|
+
'--components-colors-tag-color-background-violet-ai-hover': string;
|
|
257
|
+
'--components-colors-tag-color-background-violet-ai-disabled': string;
|
|
258
|
+
'--components-colors-tag-color-background-pink-default': string;
|
|
259
|
+
'--components-colors-tag-color-background-pink-hover': string;
|
|
260
|
+
'--components-colors-tag-color-background-pink-disabled': string;
|
|
261
|
+
'--components-colors-tag-color-background-pink-ai-default': string;
|
|
262
|
+
'--components-colors-tag-color-background-pink-ai-hover': string;
|
|
263
|
+
'--components-colors-tag-color-background-pink-ai-disabled': string;
|
|
264
|
+
'--components-colors-tag-color-background-orange-default': string;
|
|
265
|
+
'--components-colors-tag-color-background-orange-hover': string;
|
|
266
|
+
'--components-colors-tag-color-background-orange-disabled': string;
|
|
267
|
+
'--components-colors-tag-color-background-orange-ai-default': string;
|
|
268
|
+
'--components-colors-tag-color-background-orange-ai-hover': string;
|
|
269
|
+
'--components-colors-tag-color-background-orange-ai-disabled': string;
|
|
270
|
+
'--components-colors-tag-color-background-red-default': string;
|
|
271
|
+
'--components-colors-tag-color-background-red-hover': string;
|
|
272
|
+
'--components-colors-tag-color-background-red-disabled': string;
|
|
273
|
+
'--components-colors-tag-color-background-red-ai-default': string;
|
|
274
|
+
'--components-colors-tag-color-background-red-ai-hover': string;
|
|
275
|
+
'--components-colors-tag-color-background-red-ai-disabled': string;
|
|
270
276
|
'--components-colors-tag-color-background-dash-default': string;
|
|
271
277
|
'--components-colors-tag-color-background-dash-hover': string;
|
|
272
278
|
'--components-colors-tag-color-background-dash-disabled': string;
|
|
273
|
-
'--components-colors-tag-color-
|
|
274
|
-
'--components-colors-tag-color-
|
|
275
|
-
'--components-colors-tag-color-
|
|
276
|
-
'--components-colors-tag-color-text-
|
|
277
|
-
'--components-colors-tag-color-text-
|
|
278
|
-
'--components-colors-tag-color-text-
|
|
279
|
-
'--components-colors-tag-color-text-
|
|
280
|
-
'--components-colors-tag-color-text-
|
|
281
|
-
'--components-colors-tag-color-text-
|
|
282
|
-
'--components-colors-tag-color-text-
|
|
283
|
-
'--components-colors-tag-color-text-
|
|
284
|
-
'--components-colors-tag-color-text-
|
|
285
|
-
'--components-colors-tag-color-text-
|
|
286
|
-
'--components-colors-tag-color-text-
|
|
287
|
-
'--components-colors-tag-color-text-
|
|
288
|
-
'--components-colors-tag-color-text-
|
|
289
|
-
'--components-colors-tag-color-text-
|
|
290
|
-
'--components-colors-tag-color-text-
|
|
291
|
-
'--components-colors-tag-color-text-
|
|
292
|
-
'--components-colors-tag-color-text-
|
|
293
|
-
'--components-colors-tag-color-text-
|
|
294
|
-
'--components-colors-tag-color-text-
|
|
295
|
-
'--components-colors-tag-color-text-
|
|
296
|
-
'--components-colors-tag-color-text-
|
|
297
|
-
'--components-colors-tag-color-text-
|
|
298
|
-
'--components-colors-tag-color-text-
|
|
299
|
-
'--components-colors-tag-color-text-
|
|
300
|
-
'--components-colors-tag-color-text-blue-dark-disabled': string;
|
|
301
|
-
'--components-colors-tag-color-text-blue-light-default': string;
|
|
302
|
-
'--components-colors-tag-color-text-blue-light-hover': string;
|
|
303
|
-
'--components-colors-tag-color-text-blue-light-disabled': string;
|
|
304
|
-
'--components-colors-tag-color-text-violet-dark-default': string;
|
|
305
|
-
'--components-colors-tag-color-text-violet-dark-hover': string;
|
|
306
|
-
'--components-colors-tag-color-text-violet-dark-disabled': string;
|
|
307
|
-
'--components-colors-tag-color-text-violet-light-default': string;
|
|
308
|
-
'--components-colors-tag-color-text-violet-light-hover': string;
|
|
309
|
-
'--components-colors-tag-color-text-violet-light-disabled': string;
|
|
310
|
-
'--components-colors-tag-color-text-pink-dark-default': string;
|
|
311
|
-
'--components-colors-tag-color-text-pink-dark-hover': string;
|
|
312
|
-
'--components-colors-tag-color-text-pink-dark-disabled': string;
|
|
313
|
-
'--components-colors-tag-color-text-pink-light-default': string;
|
|
314
|
-
'--components-colors-tag-color-text-pink-light-hover': string;
|
|
315
|
-
'--components-colors-tag-color-text-pink-light-disabled': string;
|
|
316
|
-
'--components-colors-tag-color-text-orange-dark-default': string;
|
|
317
|
-
'--components-colors-tag-color-text-orange-dark-hover': string;
|
|
318
|
-
'--components-colors-tag-color-text-orange-dark-disabled': string;
|
|
319
|
-
'--components-colors-tag-color-text-orange-light-default': string;
|
|
320
|
-
'--components-colors-tag-color-text-orange-light-hover': string;
|
|
321
|
-
'--components-colors-tag-color-text-orange-light-disabled': string;
|
|
322
|
-
'--components-colors-tag-color-text-red-dark-default': string;
|
|
323
|
-
'--components-colors-tag-color-text-red-dark-hover': string;
|
|
324
|
-
'--components-colors-tag-color-text-red-dark-disabled': string;
|
|
325
|
-
'--components-colors-tag-color-text-red-light-default': string;
|
|
326
|
-
'--components-colors-tag-color-text-red-light-hover': string;
|
|
327
|
-
'--components-colors-tag-color-text-red-light-disabled': string;
|
|
279
|
+
'--components-colors-tag-color-text-brand-default': string;
|
|
280
|
+
'--components-colors-tag-color-text-brand-hover': string;
|
|
281
|
+
'--components-colors-tag-color-text-brand-disabled': string;
|
|
282
|
+
'--components-colors-tag-color-text-warm-default': string;
|
|
283
|
+
'--components-colors-tag-color-text-warm-hover': string;
|
|
284
|
+
'--components-colors-tag-color-text-warm-disabled': string;
|
|
285
|
+
'--components-colors-tag-color-text-green-default': string;
|
|
286
|
+
'--components-colors-tag-color-text-green-hover': string;
|
|
287
|
+
'--components-colors-tag-color-text-green-disabled': string;
|
|
288
|
+
'--components-colors-tag-color-text-teal-default': string;
|
|
289
|
+
'--components-colors-tag-color-text-teal-hover': string;
|
|
290
|
+
'--components-colors-tag-color-text-teal-disabled': string;
|
|
291
|
+
'--components-colors-tag-color-text-blue-default': string;
|
|
292
|
+
'--components-colors-tag-color-text-blue-hover': string;
|
|
293
|
+
'--components-colors-tag-color-text-blue-disabled': string;
|
|
294
|
+
'--components-colors-tag-color-text-violet-default': string;
|
|
295
|
+
'--components-colors-tag-color-text-violet-hover': string;
|
|
296
|
+
'--components-colors-tag-color-text-violet-disabled': string;
|
|
297
|
+
'--components-colors-tag-color-text-pink-default': string;
|
|
298
|
+
'--components-colors-tag-color-text-pink-hover': string;
|
|
299
|
+
'--components-colors-tag-color-text-pink-disabled': string;
|
|
300
|
+
'--components-colors-tag-color-text-orange-default': string;
|
|
301
|
+
'--components-colors-tag-color-text-orange-hover': string;
|
|
302
|
+
'--components-colors-tag-color-text-orange-disabled': string;
|
|
303
|
+
'--components-colors-tag-color-text-red-default': string;
|
|
304
|
+
'--components-colors-tag-color-text-red-hover': string;
|
|
305
|
+
'--components-colors-tag-color-text-red-disabled': string;
|
|
328
306
|
'--components-colors-tag-color-text-dash-default': string;
|
|
329
307
|
'--components-colors-tag-color-text-dash-hover': string;
|
|
330
308
|
'--components-colors-tag-color-text-dash-disabled': string;
|
|
331
|
-
'--components-colors-tag-color-
|
|
332
|
-
'--components-colors-tag-color-
|
|
333
|
-
'--components-colors-tag-color-
|
|
309
|
+
'--components-colors-tag-color-icon-brand-default': string;
|
|
310
|
+
'--components-colors-tag-color-icon-brand-hover': string;
|
|
311
|
+
'--components-colors-tag-color-icon-brand-disabled': string;
|
|
312
|
+
'--components-colors-tag-color-icon-brand-ai-default': string;
|
|
313
|
+
'--components-colors-tag-color-icon-brand-ai-hover': string;
|
|
314
|
+
'--components-colors-tag-color-icon-brand-ai-disabled': string;
|
|
315
|
+
'--components-colors-tag-color-icon-warm-default': string;
|
|
316
|
+
'--components-colors-tag-color-icon-warm-hover': string;
|
|
317
|
+
'--components-colors-tag-color-icon-warm-disabled': string;
|
|
318
|
+
'--components-colors-tag-color-icon-warm-ai-default': string;
|
|
319
|
+
'--components-colors-tag-color-icon-warm-ai-hover': string;
|
|
320
|
+
'--components-colors-tag-color-icon-warm-ai-disabled': string;
|
|
321
|
+
'--components-colors-tag-color-icon-green-default': string;
|
|
322
|
+
'--components-colors-tag-color-icon-green-hover': string;
|
|
323
|
+
'--components-colors-tag-color-icon-green-disabled': string;
|
|
324
|
+
'--components-colors-tag-color-icon-green-ai-default': string;
|
|
325
|
+
'--components-colors-tag-color-icon-green-ai-hover': string;
|
|
326
|
+
'--components-colors-tag-color-icon-green-ai-disabled': string;
|
|
327
|
+
'--components-colors-tag-color-icon-teal-default': string;
|
|
328
|
+
'--components-colors-tag-color-icon-teal-hover': string;
|
|
329
|
+
'--components-colors-tag-color-icon-teal-disabled': string;
|
|
330
|
+
'--components-colors-tag-color-icon-teal-ai-default': string;
|
|
331
|
+
'--components-colors-tag-color-icon-teal-ai-hover': string;
|
|
332
|
+
'--components-colors-tag-color-icon-teal-ai-disabled': string;
|
|
333
|
+
'--components-colors-tag-color-icon-blue-default': string;
|
|
334
|
+
'--components-colors-tag-color-icon-blue-hover': string;
|
|
335
|
+
'--components-colors-tag-color-icon-blue-disabled': string;
|
|
336
|
+
'--components-colors-tag-color-icon-blue-ai-default': string;
|
|
337
|
+
'--components-colors-tag-color-icon-blue-ai-hover': string;
|
|
338
|
+
'--components-colors-tag-color-icon-blue-ai-disabled': string;
|
|
339
|
+
'--components-colors-tag-color-icon-violet-default': string;
|
|
340
|
+
'--components-colors-tag-color-icon-violet-hover': string;
|
|
341
|
+
'--components-colors-tag-color-icon-violet-disabled': string;
|
|
342
|
+
'--components-colors-tag-color-icon-violet-ai-default': string;
|
|
343
|
+
'--components-colors-tag-color-icon-violet-ai-hover': string;
|
|
344
|
+
'--components-colors-tag-color-icon-violet-ai-disabled': string;
|
|
345
|
+
'--components-colors-tag-color-icon-pink-default': string;
|
|
346
|
+
'--components-colors-tag-color-icon-pink-hover': string;
|
|
347
|
+
'--components-colors-tag-color-icon-pink-disabled': string;
|
|
348
|
+
'--components-colors-tag-color-icon-pink-ai-default': string;
|
|
349
|
+
'--components-colors-tag-color-icon-pink-ai-hover': string;
|
|
350
|
+
'--components-colors-tag-color-icon-pink-ai-disabled': string;
|
|
351
|
+
'--components-colors-tag-color-icon-orange-default': string;
|
|
352
|
+
'--components-colors-tag-color-icon-orange-hover': string;
|
|
353
|
+
'--components-colors-tag-color-icon-orange-disabled': string;
|
|
354
|
+
'--components-colors-tag-color-icon-orange-ai-default': string;
|
|
355
|
+
'--components-colors-tag-color-icon-orange-ai-hover': string;
|
|
356
|
+
'--components-colors-tag-color-icon-orange-ai-disabled': string;
|
|
357
|
+
'--components-colors-tag-color-icon-red-default': string;
|
|
358
|
+
'--components-colors-tag-color-icon-red-hover': string;
|
|
359
|
+
'--components-colors-tag-color-icon-red-disabled': string;
|
|
360
|
+
'--components-colors-tag-color-icon-red-ai-default': string;
|
|
361
|
+
'--components-colors-tag-color-icon-red-ai-hover': string;
|
|
362
|
+
'--components-colors-tag-color-icon-red-ai-disabled': string;
|
|
363
|
+
'--components-colors-tag-color-icon-dash-default': string;
|
|
364
|
+
'--components-colors-tag-color-icon-dash-hover': string;
|
|
365
|
+
'--components-colors-tag-color-icon-dash-disabled': string;
|
|
334
366
|
'--components-colors-tag-color-border-default': string;
|
|
335
367
|
'--components-colors-tag-color-border-dash-default': string;
|
|
336
368
|
'--components-colors-tag-color-border-dash-hover': string;
|
|
337
369
|
'--components-colors-tag-color-border-dash-disabled': string;
|
|
338
|
-
'--components-colors-tag-color-icon-brand-dark-default': string;
|
|
339
|
-
'--components-colors-tag-color-icon-brand-dark-hover': string;
|
|
340
|
-
'--components-colors-tag-color-icon-brand-dark-disabled': string;
|
|
341
|
-
'--components-colors-tag-color-icon-brand-light-default': string;
|
|
342
|
-
'--components-colors-tag-color-icon-brand-light-hover': string;
|
|
343
|
-
'--components-colors-tag-color-icon-brand-light-disabled': string;
|
|
344
|
-
'--components-colors-tag-color-icon-warm-dark-default': string;
|
|
345
|
-
'--components-colors-tag-color-icon-warm-dark-hover': string;
|
|
346
|
-
'--components-colors-tag-color-icon-warm-dark-disabled': string;
|
|
347
|
-
'--components-colors-tag-color-icon-warm-light-default': string;
|
|
348
|
-
'--components-colors-tag-color-icon-warm-light-hover': string;
|
|
349
|
-
'--components-colors-tag-color-icon-warm-light-disabled': string;
|
|
350
|
-
'--components-colors-tag-color-icon-green-dark-default': string;
|
|
351
|
-
'--components-colors-tag-color-icon-green-dark-disabled': string;
|
|
352
|
-
'--components-colors-tag-color-icon-green-light-default': string;
|
|
353
|
-
'--components-colors-tag-color-icon-green-light-disabled': string;
|
|
354
|
-
'--components-colors-tag-color-icon-teal-dark-default': string;
|
|
355
|
-
'--components-colors-tag-color-icon-teal-dark-hover': string;
|
|
356
|
-
'--components-colors-tag-color-icon-teal-dark-disabled': string;
|
|
357
|
-
'--components-colors-tag-color-icon-teal-light-default': string;
|
|
358
|
-
'--components-colors-tag-color-icon-teal-light-hover': string;
|
|
359
|
-
'--components-colors-tag-color-icon-teal-light-disabled': string;
|
|
360
|
-
'--components-colors-tag-color-icon-blue-dark-default': string;
|
|
361
|
-
'--components-colors-tag-color-icon-blue-dark-hover': string;
|
|
362
|
-
'--components-colors-tag-color-icon-blue-dark-disabled': string;
|
|
363
|
-
'--components-colors-tag-color-icon-blue-light-default': string;
|
|
364
|
-
'--components-colors-tag-color-icon-blue-light-hover': string;
|
|
365
|
-
'--components-colors-tag-color-icon-blue-light-disabled': string;
|
|
366
|
-
'--components-colors-tag-color-icon-violet-dark-default': string;
|
|
367
|
-
'--components-colors-tag-color-icon-violet-dark-hover': string;
|
|
368
|
-
'--components-colors-tag-color-icon-violet-dark-disabled': string;
|
|
369
|
-
'--components-colors-tag-color-icon-violet-light-default': string;
|
|
370
|
-
'--components-colors-tag-color-icon-violet-light-hover': string;
|
|
371
|
-
'--components-colors-tag-color-icon-violet-light-disabled': string;
|
|
372
|
-
'--components-colors-tag-color-icon-pink-dark-default': string;
|
|
373
|
-
'--components-colors-tag-color-icon-pink-dark-hover': string;
|
|
374
|
-
'--components-colors-tag-color-icon-pink-dark-disabled': string;
|
|
375
|
-
'--components-colors-tag-color-icon-pink-light-default': string;
|
|
376
|
-
'--components-colors-tag-color-icon-pink-light-hover': string;
|
|
377
|
-
'--components-colors-tag-color-icon-pink-light-disabled': string;
|
|
378
|
-
'--components-colors-tag-color-icon-orange-dark-default': string;
|
|
379
|
-
'--components-colors-tag-color-icon-orange-dark-hover': string;
|
|
380
|
-
'--components-colors-tag-color-icon-orange-dark-disabled': string;
|
|
381
|
-
'--components-colors-tag-color-icon-orange-light-default': string;
|
|
382
|
-
'--components-colors-tag-color-icon-orange-light-hover': string;
|
|
383
|
-
'--components-colors-tag-color-icon-orange-light-disabled': string;
|
|
384
|
-
'--components-colors-tag-color-icon-red-dark-default': string;
|
|
385
|
-
'--components-colors-tag-color-icon-red-dark-hover': string;
|
|
386
|
-
'--components-colors-tag-color-icon-red-dark-disabled': string;
|
|
387
|
-
'--components-colors-tag-color-icon-red-light-default': string;
|
|
388
|
-
'--components-colors-tag-color-icon-red-light-hover': string;
|
|
389
|
-
'--components-colors-tag-color-icon-red-light-disabled': string;
|
|
390
|
-
'--components-colors-tag-color-icon-dash-default': string;
|
|
391
|
-
'--components-colors-tag-color-icon-dash-hover': string;
|
|
392
|
-
'--components-colors-tag-color-icon-dash-disabled': string;
|
|
393
|
-
'--components-colors-tag-color-icon-ai-default': string;
|
|
394
|
-
'--components-colors-tag-color-icon-ai-hover': string;
|
|
395
|
-
'--components-colors-tag-color-icon-ai-disabled': string;
|
|
396
370
|
'--components-colors-window-header-action-color-background-common-default': string;
|
|
397
371
|
'--components-colors-window-header-action-color-background-common-hover': string;
|
|
398
372
|
'--components-colors-window-header-action-color-background-common-pressed': string;
|
|
@@ -424,43 +398,50 @@ export type ThemeVariables = {
|
|
|
424
398
|
'--components-colors-dropdown-menu-item-color-background-default': string;
|
|
425
399
|
'--components-colors-dropdown-menu-item-color-background-hover': string;
|
|
426
400
|
'--components-colors-dropdown-menu-item-color-background-disabled': string;
|
|
427
|
-
'--components-colors-dropdown-menu-item-color-text': string;
|
|
401
|
+
'--components-colors-dropdown-menu-item-color-text-content-default': string;
|
|
402
|
+
'--components-colors-dropdown-menu-item-color-text-content-hover': string;
|
|
403
|
+
'--components-colors-dropdown-menu-item-color-text-content-disabled': string;
|
|
404
|
+
'--components-colors-dropdown-menu-item-color-text-description-default': string;
|
|
405
|
+
'--components-colors-dropdown-menu-item-color-text-description-hover': string;
|
|
406
|
+
'--components-colors-dropdown-menu-item-color-text-description-disabled': string;
|
|
428
407
|
'--components-colors-dropdown-menu-item-color-icon-default': string;
|
|
429
408
|
'--components-colors-dropdown-menu-item-color-icon-hover': string;
|
|
430
409
|
'--components-colors-dropdown-menu-item-color-icon-disabled': string;
|
|
431
410
|
'--components-colors-dropdown-menu-color-background-default': string;
|
|
432
411
|
'--components-colors-dropdown-menu-color-border-default': string;
|
|
412
|
+
'--components-colors-dropdown-menu-color-border-hover': string;
|
|
433
413
|
'--components-colors-latency-color-background-progress': string;
|
|
434
414
|
'--components-colors-latency-color-background-bar': string;
|
|
435
|
-
'--components-colors-
|
|
436
|
-
'--components-colors-
|
|
437
|
-
'--components-colors-
|
|
438
|
-
'--components-colors-
|
|
439
|
-
'--components-colors-
|
|
440
|
-
'--components-colors-
|
|
441
|
-
'--components-colors-
|
|
442
|
-
'--components-colors-
|
|
443
|
-
'--components-colors-
|
|
444
|
-
'--components-colors-
|
|
445
|
-
'--components-colors-
|
|
446
|
-
'--components-colors-
|
|
447
|
-
'--components-colors-
|
|
448
|
-
'--components-colors-
|
|
449
|
-
'--components-colors-
|
|
450
|
-
'--components-colors-
|
|
451
|
-
'--components-colors-
|
|
452
|
-
'--components-colors-
|
|
453
|
-
'--components-colors-
|
|
454
|
-
'--components-colors-
|
|
455
|
-
'--components-colors-
|
|
456
|
-
'--components-colors-
|
|
457
|
-
'--components-colors-
|
|
458
|
-
'--components-colors-
|
|
459
|
-
'--components-colors-
|
|
460
|
-
'--components-colors-
|
|
461
|
-
'--components-colors-
|
|
462
|
-
'--components-colors-
|
|
463
|
-
'--components-colors-
|
|
415
|
+
'--components-colors-alert-icon-color-background-brand': string;
|
|
416
|
+
'--components-colors-alert-icon-color-background-information': string;
|
|
417
|
+
'--components-colors-alert-icon-color-background-warning': string;
|
|
418
|
+
'--components-colors-alert-icon-color-background-danger': string;
|
|
419
|
+
'--components-colors-alert-icon-color-background-success': string;
|
|
420
|
+
'--components-colors-alert-icon-color-icon-brand': string;
|
|
421
|
+
'--components-colors-alert-icon-color-icon-information': string;
|
|
422
|
+
'--components-colors-alert-icon-color-icon-warning': string;
|
|
423
|
+
'--components-colors-alert-icon-color-icon-danger': string;
|
|
424
|
+
'--components-colors-alert-icon-color-icon-success': string;
|
|
425
|
+
'--components-colors-alert-icon-color-icon-ai': string;
|
|
426
|
+
'--components-colors-alert-color-background-brand': string;
|
|
427
|
+
'--components-colors-alert-color-background-information': string;
|
|
428
|
+
'--components-colors-alert-color-background-success': string;
|
|
429
|
+
'--components-colors-alert-color-background-warning': string;
|
|
430
|
+
'--components-colors-alert-color-background-danger': string;
|
|
431
|
+
'--components-colors-alert-color-background-ai': string;
|
|
432
|
+
'--components-colors-alert-color-text-brand-title': string;
|
|
433
|
+
'--components-colors-alert-color-text-brand-body': string;
|
|
434
|
+
'--components-colors-alert-color-text-information-title': string;
|
|
435
|
+
'--components-colors-alert-color-text-information-body': string;
|
|
436
|
+
'--components-colors-alert-color-text-success-title': string;
|
|
437
|
+
'--components-colors-alert-color-text-success-body': string;
|
|
438
|
+
'--components-colors-alert-color-text-warning-title': string;
|
|
439
|
+
'--components-colors-alert-color-text-warning-body': string;
|
|
440
|
+
'--components-colors-alert-color-text-danger-title': string;
|
|
441
|
+
'--components-colors-alert-color-text-danger-body': string;
|
|
442
|
+
'--components-colors-alert-color-text-ai-title': string;
|
|
443
|
+
'--components-colors-alert-color-text-ai-body': string;
|
|
444
|
+
'--components-colors-alert-color-icon-default': string;
|
|
464
445
|
'--components-colors-growl-icon-color-background-information': string;
|
|
465
446
|
'--components-colors-growl-icon-color-background-success': string;
|
|
466
447
|
'--components-colors-growl-icon-color-background-warning': string;
|
|
@@ -476,6 +457,12 @@ export type ThemeVariables = {
|
|
|
476
457
|
'--components-colors-growl-color-border-hover': string;
|
|
477
458
|
'--components-colors-growl-color-icon-default': string;
|
|
478
459
|
'--components-colors-growl-color-icon-hover': string;
|
|
460
|
+
'--components-colors-modal-color-background-default': string;
|
|
461
|
+
'--components-colors-modal-color-text-title': string;
|
|
462
|
+
'--components-colors-modal-color-text-body': string;
|
|
463
|
+
'--components-colors-modal-color-border-default': string;
|
|
464
|
+
'--components-colors-modal-color-border-hover': string;
|
|
465
|
+
'--components-colors-modal-color-icon-default': string;
|
|
479
466
|
'--components-colors-tooltip-color-background': string;
|
|
480
467
|
'--components-colors-tooltip-color-border': string;
|
|
481
468
|
'--components-colors-tooltip-color-text': string;
|
|
@@ -501,6 +488,7 @@ export type ThemeVariables = {
|
|
|
501
488
|
'--components-colors-sticky-note-color-background-pink': string;
|
|
502
489
|
'--components-colors-sticky-note-color-background-orange': string;
|
|
503
490
|
'--components-colors-sticky-note-color-border-default': string;
|
|
491
|
+
'--components-colors-sticky-note-color-text-title': string;
|
|
504
492
|
'--components-colors-sticky-note-color-text-body-brand': string;
|
|
505
493
|
'--components-colors-sticky-note-color-text-body-green': string;
|
|
506
494
|
'--components-colors-sticky-note-color-text-body-teal': string;
|
|
@@ -508,7 +496,6 @@ export type ThemeVariables = {
|
|
|
508
496
|
'--components-colors-sticky-note-color-text-body-violet': string;
|
|
509
497
|
'--components-colors-sticky-note-color-text-body-pink': string;
|
|
510
498
|
'--components-colors-sticky-note-color-text-body-orange': string;
|
|
511
|
-
'--components-colors-sticky-note-color-text-title': string;
|
|
512
499
|
'--components-colors-toast-icon-color-background-information': string;
|
|
513
500
|
'--components-colors-toast-icon-color-background-success': string;
|
|
514
501
|
'--components-colors-toast-icon-color-background-warning': string;
|
|
@@ -716,6 +703,13 @@ export type ThemeVariables = {
|
|
|
716
703
|
'--components-dimensions-badge-border-radius-lg': string;
|
|
717
704
|
'--components-dimensions-badge-border-radius-md': string;
|
|
718
705
|
'--components-dimensions-badge-border-radius-sm': string;
|
|
706
|
+
'--components-dimensions-drawer-size-width-lg': string;
|
|
707
|
+
'--components-dimensions-drawer-size-width-md': string;
|
|
708
|
+
'--components-dimensions-drawer-size-width-sm': string;
|
|
709
|
+
'--components-dimensions-drawer-body-padding-inline': string;
|
|
710
|
+
'--components-dimensions-drawer-body-padding-block': string;
|
|
711
|
+
'--components-dimensions-drawer-border-radius': string;
|
|
712
|
+
'--components-dimensions-drawer-border-width': string;
|
|
719
713
|
'--components-dimensions-card-action-dismiss-size-icon-lg': string;
|
|
720
714
|
'--components-dimensions-card-action-dismiss-size-icon-md': string;
|
|
721
715
|
'--components-dimensions-card-action-dismiss-size-icon-sm': string;
|
|
@@ -733,6 +727,10 @@ export type ThemeVariables = {
|
|
|
733
727
|
'--components-dimensions-card-padding-block-md': string;
|
|
734
728
|
'--components-dimensions-card-padding-block-sm': string;
|
|
735
729
|
'--components-dimensions-card-gap-title': string;
|
|
730
|
+
'--components-dimensions-card-gap-actions': string;
|
|
731
|
+
'--components-dimensions-card-gap-footer-lg': string;
|
|
732
|
+
'--components-dimensions-card-gap-footer-md': string;
|
|
733
|
+
'--components-dimensions-card-gap-footer-sm': string;
|
|
736
734
|
'--components-dimensions-card-gap-content-lg': string;
|
|
737
735
|
'--components-dimensions-card-gap-content-md': string;
|
|
738
736
|
'--components-dimensions-card-gap-content-sm': string;
|
|
@@ -746,7 +744,8 @@ export type ThemeVariables = {
|
|
|
746
744
|
'--components-dimensions-tag-padding-block-md': string;
|
|
747
745
|
'--components-dimensions-tag-gap-content': string;
|
|
748
746
|
'--components-dimensions-tag-border-radius': string;
|
|
749
|
-
'--components-dimensions-tag-border-width': string;
|
|
747
|
+
'--components-dimensions-tag-border-width-default': string;
|
|
748
|
+
'--components-dimensions-tag-border-width-ai': string;
|
|
750
749
|
'--components-dimensions-window-header-action-size-container': string;
|
|
751
750
|
'--components-dimensions-window-header-action-size-icon': string;
|
|
752
751
|
'--components-dimensions-window-header-action-border-radius': string;
|
|
@@ -768,28 +767,36 @@ export type ThemeVariables = {
|
|
|
768
767
|
'--components-dimensions-window-body-padding-block-xl': string;
|
|
769
768
|
'--components-dimensions-window-border-radius': string;
|
|
770
769
|
'--components-dimensions-window-border-width': string;
|
|
771
|
-
'--components-dimensions-dropdown-menu-
|
|
772
|
-
'--components-dimensions-dropdown-menu-
|
|
770
|
+
'--components-dimensions-dropdown-menu-divider-padding-block-lg': string;
|
|
771
|
+
'--components-dimensions-dropdown-menu-divider-padding-block-md': string;
|
|
772
|
+
'--components-dimensions-dropdown-menu-item-padding-inline-lg': string;
|
|
773
|
+
'--components-dimensions-dropdown-menu-item-padding-inline-md': string;
|
|
774
|
+
'--components-dimensions-dropdown-menu-item-padding-block-lg': string;
|
|
775
|
+
'--components-dimensions-dropdown-menu-item-padding-block-md': string;
|
|
773
776
|
'--components-dimensions-dropdown-menu-item-gap-content': string;
|
|
774
777
|
'--components-dimensions-dropdown-menu-item-border-radius': string;
|
|
775
778
|
'--components-dimensions-dropdown-menu-size-icon': string;
|
|
776
|
-
'--components-dimensions-dropdown-menu-padding-inline': string;
|
|
777
|
-
'--components-dimensions-dropdown-menu-padding-
|
|
779
|
+
'--components-dimensions-dropdown-menu-padding-inline-lg': string;
|
|
780
|
+
'--components-dimensions-dropdown-menu-padding-inline-md': string;
|
|
781
|
+
'--components-dimensions-dropdown-menu-padding-block-lg': string;
|
|
782
|
+
'--components-dimensions-dropdown-menu-padding-block-md': string;
|
|
778
783
|
'--components-dimensions-dropdown-menu-gap-content': string;
|
|
779
784
|
'--components-dimensions-dropdown-menu-border-radius': string;
|
|
780
785
|
'--components-dimensions-dropdown-menu-border-width': string;
|
|
781
|
-
'--components-dimensions-
|
|
782
|
-
'--components-dimensions-
|
|
783
|
-
'--components-dimensions-
|
|
784
|
-
'--components-dimensions-
|
|
785
|
-
'--components-dimensions-
|
|
786
|
-
'--components-dimensions-
|
|
787
|
-
'--components-dimensions-
|
|
788
|
-
'--components-dimensions-
|
|
789
|
-
'--components-dimensions-
|
|
790
|
-
'--components-dimensions-
|
|
791
|
-
'--components-dimensions-
|
|
792
|
-
'--components-dimensions-
|
|
786
|
+
'--components-dimensions-alert-icon-padding-inline': string;
|
|
787
|
+
'--components-dimensions-alert-icon-padding-block': string;
|
|
788
|
+
'--components-dimensions-alert-icon-border-radius': string;
|
|
789
|
+
'--components-dimensions-alert-border-radius': string;
|
|
790
|
+
'--components-dimensions-alert-border-width-ai': string;
|
|
791
|
+
'--components-dimensions-alert-gap-actions-lg': string;
|
|
792
|
+
'--components-dimensions-alert-gap-actions-md': string;
|
|
793
|
+
'--components-dimensions-alert-gap-content-lg': string;
|
|
794
|
+
'--components-dimensions-alert-gap-content-md': string;
|
|
795
|
+
'--components-dimensions-alert-padding-inline-lg': string;
|
|
796
|
+
'--components-dimensions-alert-padding-inline-md': string;
|
|
797
|
+
'--components-dimensions-alert-padding-block-lg': string;
|
|
798
|
+
'--components-dimensions-alert-padding-block-md': string;
|
|
799
|
+
'--components-dimensions-alert-size-icon': string;
|
|
793
800
|
'--components-dimensions-growl-icon-size-icon': string;
|
|
794
801
|
'--components-dimensions-growl-icon-padding-inline': string;
|
|
795
802
|
'--components-dimensions-growl-icon-padding-block': string;
|
|
@@ -827,6 +834,14 @@ export type ThemeVariables = {
|
|
|
827
834
|
'--components-dimensions-sticky-note-gap-content': string;
|
|
828
835
|
'--components-dimensions-sticky-note-border-radius': string;
|
|
829
836
|
'--components-dimensions-sticky-note-border-width': string;
|
|
837
|
+
'--components-dimensions-modal-size-width-lg': string;
|
|
838
|
+
'--components-dimensions-modal-size-width-md': string;
|
|
839
|
+
'--components-dimensions-modal-size-width-sm': string;
|
|
840
|
+
'--components-dimensions-modal-border-radius': string;
|
|
841
|
+
'--components-dimensions-modal-border-width': string;
|
|
842
|
+
'--components-dimensions-modal-padding-inline': string;
|
|
843
|
+
'--components-dimensions-modal-padding-block': string;
|
|
844
|
+
'--components-dimensions-modal-gap-content': string;
|
|
830
845
|
'--components-dimensions-field-gap-label': string;
|
|
831
846
|
'--components-dimensions-field-gap-assistive': string;
|
|
832
847
|
'--components-dimensions-label-size-leading': string;
|