carbon-react 104.52.2 → 104.53.2
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/esm/__spec_helper__/test-utils.d.ts +1 -0
- package/esm/__spec_helper__/test-utils.js +19 -6
- package/esm/components/dialog/dialog.style.js +10 -7
- package/esm/components/flat-table/flat-table-row/flat-table-row.style.js +1 -1
- package/esm/components/select/multi-select/multi-select.component.js +5 -6
- package/esm/style/themes/aegean/aegean-theme.config.d.ts +0 -8
- package/esm/style/themes/aegean/aegean-theme.config.js +0 -10
- package/esm/style/themes/base/base-theme.config.d.ts +19 -313
- package/esm/style/themes/base/base-theme.config.js +4 -330
- package/esm/style/themes/base/index.d.ts +2 -304
- package/esm/style/themes/mint/mint-theme.config.d.ts +0 -7
- package/esm/style/themes/mint/mint-theme.config.js +0 -7
- package/esm/style/themes/sage/index.d.ts +1 -242
- package/esm/style/themes/sage/index.js +1 -1
- package/lib/__spec_helper__/test-utils.d.ts +1 -0
- package/lib/__spec_helper__/test-utils.js +23 -6
- package/lib/components/dialog/dialog.style.js +10 -7
- package/lib/components/flat-table/flat-table-row/flat-table-row.style.js +1 -1
- package/lib/components/select/multi-select/multi-select.component.js +5 -6
- package/lib/style/themes/aegean/aegean-theme.config.d.ts +0 -8
- package/lib/style/themes/aegean/aegean-theme.config.js +0 -13
- package/lib/style/themes/base/base-theme.config.d.ts +19 -313
- package/lib/style/themes/base/base-theme.config.js +7 -332
- package/lib/style/themes/base/index.d.ts +2 -304
- package/lib/style/themes/mint/mint-theme.config.d.ts +0 -7
- package/lib/style/themes/mint/mint-theme.config.js +0 -7
- package/lib/style/themes/sage/index.d.ts +1 -242
- package/lib/style/themes/sage/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
declare function _default(palette: any): {
|
|
2
2
|
name: string;
|
|
3
3
|
colors: {
|
|
4
|
-
base: any;
|
|
5
4
|
primary: any;
|
|
6
5
|
secondary: any;
|
|
7
6
|
tertiary: any;
|
|
8
|
-
whiteMix: any;
|
|
9
|
-
hoveredTabKeyline: any;
|
|
10
|
-
disabled: any;
|
|
11
7
|
loadingBarBackground: any;
|
|
12
8
|
};
|
|
13
|
-
stepSequence: {
|
|
14
|
-
completedText: any;
|
|
15
|
-
};
|
|
16
9
|
readonly compatibility: {
|
|
17
10
|
colorsActionMajor500: any;
|
|
18
11
|
colorsActionMajor600: any;
|
|
@@ -9,18 +9,11 @@ var _default = palette => {
|
|
|
9
9
|
return {
|
|
10
10
|
name: "mint",
|
|
11
11
|
colors: {
|
|
12
|
-
base: palette.productGreen,
|
|
13
12
|
primary: palette.productGreenShade(23.5),
|
|
14
13
|
secondary: palette.productGreenShade(41),
|
|
15
14
|
tertiary: palette.productGreenShade(61),
|
|
16
|
-
whiteMix: palette.productGreenTint(90),
|
|
17
|
-
hoveredTabKeyline: palette.productGreenTint(30),
|
|
18
|
-
disabled: palette.productGreenTint(40),
|
|
19
15
|
loadingBarBackground: palette.productGreenTint(70)
|
|
20
16
|
},
|
|
21
|
-
stepSequence: {
|
|
22
|
-
completedText: palette.productGreenShade(23)
|
|
23
|
-
},
|
|
24
17
|
|
|
25
18
|
get compatibility() {
|
|
26
19
|
return {
|
|
@@ -374,251 +374,10 @@ declare var _default: {
|
|
|
374
374
|
whiteOpacity: (opacity: number) => string;
|
|
375
375
|
};
|
|
376
376
|
spacing: number;
|
|
377
|
-
space:
|
|
377
|
+
space: string[];
|
|
378
378
|
colors: import("../base").Colors;
|
|
379
|
-
anchorNavigation: {
|
|
380
|
-
divider: string;
|
|
381
|
-
navItemHoverBackground: string;
|
|
382
|
-
};
|
|
383
|
-
accordion: {
|
|
384
|
-
border: string;
|
|
385
|
-
background: string;
|
|
386
|
-
};
|
|
387
|
-
tileSelect: {
|
|
388
|
-
border: string;
|
|
389
|
-
disabledBackground: string;
|
|
390
|
-
hoverBackground: string;
|
|
391
|
-
descriptionColor: string;
|
|
392
|
-
disabledText: string;
|
|
393
|
-
};
|
|
394
|
-
batchSelection: {
|
|
395
|
-
lightTheme: string;
|
|
396
|
-
};
|
|
397
|
-
hr: {
|
|
398
|
-
background: string;
|
|
399
|
-
};
|
|
400
|
-
editor: {
|
|
401
|
-
border: string;
|
|
402
|
-
counter: string;
|
|
403
|
-
placeholder: string;
|
|
404
|
-
button: {
|
|
405
|
-
hover: string;
|
|
406
|
-
};
|
|
407
|
-
toolbar: {
|
|
408
|
-
background: string;
|
|
409
|
-
};
|
|
410
|
-
};
|
|
411
|
-
menu: {
|
|
412
|
-
focus: string;
|
|
413
|
-
divider: string;
|
|
414
|
-
itemColor: string;
|
|
415
|
-
itemColorDisabled: string;
|
|
416
|
-
light: {
|
|
417
|
-
background: string;
|
|
418
|
-
selected: string;
|
|
419
|
-
divider: string;
|
|
420
|
-
title: string;
|
|
421
|
-
};
|
|
422
|
-
dark: {
|
|
423
|
-
divider: string;
|
|
424
|
-
submenuBackground: string;
|
|
425
|
-
selected: string;
|
|
426
|
-
title: string;
|
|
427
|
-
searchIcon: string;
|
|
428
|
-
searchIconHover: string;
|
|
429
|
-
};
|
|
430
|
-
};
|
|
431
|
-
form: {
|
|
432
|
-
invalid: string;
|
|
433
|
-
};
|
|
434
|
-
card: {
|
|
435
|
-
footerBackground: string;
|
|
436
|
-
footerBorder: string;
|
|
437
|
-
};
|
|
438
|
-
carousel: {
|
|
439
|
-
activeSelectorBackground: string;
|
|
440
|
-
inactiveSelectorBackground: string;
|
|
441
|
-
};
|
|
442
|
-
flatTable: {
|
|
443
|
-
light: {
|
|
444
|
-
headerBackground: string;
|
|
445
|
-
border: string;
|
|
446
|
-
};
|
|
447
|
-
dark: {
|
|
448
|
-
headerBackground: string;
|
|
449
|
-
border: string;
|
|
450
|
-
};
|
|
451
|
-
subRow: {
|
|
452
|
-
background: string;
|
|
453
|
-
shadow: string;
|
|
454
|
-
};
|
|
455
|
-
transparentWhite: {
|
|
456
|
-
headerBackground: string;
|
|
457
|
-
border: string;
|
|
458
|
-
};
|
|
459
|
-
transparentBase: {
|
|
460
|
-
headerBackground: string;
|
|
461
|
-
border: string;
|
|
462
|
-
};
|
|
463
|
-
drawerSidebar: {
|
|
464
|
-
headerBackground: string;
|
|
465
|
-
hover: string;
|
|
466
|
-
highlighted: string;
|
|
467
|
-
selected: string;
|
|
468
|
-
};
|
|
469
|
-
hover: string;
|
|
470
|
-
headerIconColor: string;
|
|
471
|
-
selected: string;
|
|
472
|
-
highlighted: string;
|
|
473
|
-
};
|
|
474
|
-
help: {
|
|
475
|
-
color: string;
|
|
476
|
-
hover: string;
|
|
477
|
-
};
|
|
478
|
-
pod: {
|
|
479
|
-
border: string;
|
|
480
|
-
secondaryBackground: string;
|
|
481
|
-
tertiaryBackground: string;
|
|
482
|
-
tileBackground: string;
|
|
483
|
-
footerBackground: string;
|
|
484
|
-
hoverBackground: string;
|
|
485
|
-
};
|
|
486
|
-
text: {
|
|
487
|
-
color: string;
|
|
488
|
-
placeholder: string;
|
|
489
|
-
size: string;
|
|
490
|
-
};
|
|
491
|
-
readOnly: {
|
|
492
|
-
textboxBackground: string;
|
|
493
|
-
textboxBorder: string;
|
|
494
|
-
textboxText: string;
|
|
495
|
-
};
|
|
496
|
-
content: {
|
|
497
|
-
secondaryColor: string;
|
|
498
|
-
};
|
|
499
379
|
disabled: {
|
|
500
|
-
border: string;
|
|
501
|
-
button: string;
|
|
502
|
-
disabled: string;
|
|
503
|
-
input: string;
|
|
504
|
-
text: string;
|
|
505
|
-
buttonText: string;
|
|
506
|
-
background: string;
|
|
507
|
-
switch: string;
|
|
508
|
-
};
|
|
509
|
-
draggableItem: {
|
|
510
|
-
border: string;
|
|
511
|
-
};
|
|
512
|
-
checkable: {
|
|
513
|
-
checked: string;
|
|
514
|
-
};
|
|
515
|
-
table: {
|
|
516
|
-
primary: string;
|
|
517
|
-
secondary: string;
|
|
518
|
-
tertiary: string;
|
|
519
|
-
header: string;
|
|
520
|
-
hover: string;
|
|
521
|
-
selected: string;
|
|
522
|
-
zebra: string;
|
|
523
|
-
dragging: string;
|
|
524
|
-
};
|
|
525
|
-
drawer: {
|
|
526
|
-
background: string;
|
|
527
|
-
divider: string;
|
|
528
|
-
};
|
|
529
|
-
pager: {
|
|
530
|
-
active: string;
|
|
531
|
-
disabled: string;
|
|
532
|
-
alternate: string;
|
|
533
|
-
};
|
|
534
|
-
icon: {
|
|
535
|
-
default: string;
|
|
536
|
-
defaultHover: string;
|
|
537
|
-
onLightBackground: string;
|
|
538
|
-
onLightBackgroundHover: string;
|
|
539
|
-
disabled: string;
|
|
540
|
-
};
|
|
541
|
-
popoverContainer: {
|
|
542
|
-
iconColor: string;
|
|
543
|
-
};
|
|
544
|
-
navigationBar: {
|
|
545
|
-
light: {
|
|
546
|
-
background: string;
|
|
547
|
-
borderBottom: string;
|
|
548
|
-
};
|
|
549
|
-
dark: {
|
|
550
|
-
background: string;
|
|
551
|
-
borderBottom: string;
|
|
552
|
-
};
|
|
553
|
-
black: {
|
|
554
|
-
background: string;
|
|
555
|
-
};
|
|
556
|
-
white: {
|
|
557
|
-
borderBottom: string;
|
|
558
|
-
};
|
|
559
|
-
};
|
|
560
|
-
numeralDate: {
|
|
561
|
-
passive: string;
|
|
562
|
-
error: string;
|
|
563
|
-
};
|
|
564
|
-
portrait: {
|
|
565
|
-
border: string;
|
|
566
380
|
background: string;
|
|
567
|
-
initials: string;
|
|
568
|
-
};
|
|
569
|
-
picklist: {
|
|
570
|
-
locked: string;
|
|
571
|
-
lockedContent: string;
|
|
572
|
-
lockedText: string;
|
|
573
|
-
};
|
|
574
|
-
pill: {
|
|
575
|
-
neutral: string;
|
|
576
|
-
warning: string;
|
|
577
|
-
neutralBackgroundFocus: string;
|
|
578
|
-
warningButtonFocus: string;
|
|
579
|
-
errorButtonFocus: string;
|
|
580
|
-
};
|
|
581
|
-
search: {
|
|
582
|
-
active: string;
|
|
583
|
-
button: string;
|
|
584
|
-
passive: string;
|
|
585
|
-
icon: string;
|
|
586
|
-
iconHover: string;
|
|
587
|
-
searchActive: string;
|
|
588
|
-
darkVariantPlaceholder: string;
|
|
589
|
-
darkVariantBorder: string;
|
|
590
|
-
darkVariantText: string;
|
|
591
|
-
iconDarkVariant: string;
|
|
592
|
-
iconDarkVariantHover: string;
|
|
593
|
-
};
|
|
594
|
-
select: {
|
|
595
|
-
border: string;
|
|
596
|
-
selected: string;
|
|
597
|
-
optionHeader: string;
|
|
598
|
-
tableHeaderBorder: string;
|
|
599
|
-
};
|
|
600
|
-
shadows: {
|
|
601
|
-
depth1: string;
|
|
602
|
-
depth2: string;
|
|
603
|
-
depth3: string;
|
|
604
|
-
depth4: string;
|
|
605
|
-
cards: string;
|
|
606
|
-
cardsIE: string;
|
|
607
|
-
};
|
|
608
|
-
switch: {
|
|
609
|
-
off: string;
|
|
610
|
-
};
|
|
611
|
-
tile: {
|
|
612
|
-
border: string;
|
|
613
|
-
footerBackground: string;
|
|
614
|
-
separator: string;
|
|
615
|
-
};
|
|
616
|
-
tab: {
|
|
617
|
-
background: string;
|
|
618
|
-
altHover: string;
|
|
619
|
-
};
|
|
620
|
-
note: {
|
|
621
|
-
timeStamp: string;
|
|
622
381
|
};
|
|
623
382
|
zIndex: {
|
|
624
383
|
smallOverlay: number;
|