@innovaccer/design-system 4.11.2 → 4.13.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/CHANGELOG.md +101 -0
- package/css/dist/index.css +209 -26
- package/css/dist/index.css.map +1 -1
- package/css/src/components/button.module.css +2 -0
- package/css/src/components/chip.module.css +10 -2
- package/css/src/components/chipInput.module.css +36 -8
- package/css/src/components/editableInput.module.css +7 -2
- package/css/src/components/input.module.css +8 -0
- package/css/src/components/label.module.css +7 -0
- package/css/src/components/link.module.css +1 -0
- package/css/src/components/menu.module.css +7 -0
- package/css/src/components/message.module.css +30 -2
- package/css/src/components/metricInput.module.css +66 -9
- package/css/src/components/select.module.css +22 -1
- package/css/src/components/statusHint.module.css +1 -2
- package/css/src/components/textarea.module.css +6 -0
- package/css/src/components/tooltip.module.css +4 -0
- package/dist/brotli/index.js +1 -1
- package/dist/brotli/index.js.br +0 -0
- package/dist/cjs/index.js +1 -1
- package/dist/core/common.type.d.ts +1 -0
- package/dist/core/components/atoms/_chip/index.d.ts +2 -1
- package/dist/core/components/atoms/badge/Badge.d.ts +2 -2
- package/dist/core/components/atoms/chip/Chip.d.ts +2 -0
- package/dist/core/components/atoms/label/Label.d.ts +2 -0
- package/dist/core/components/atoms/message/Message.d.ts +2 -0
- package/dist/core/components/atoms/metricInput/MetricInput.d.ts +1 -1
- package/dist/core/components/atoms/statusHint/StatusHint.d.ts +2 -0
- package/dist/core/components/atoms/textarea/Textarea.d.ts +2 -0
- package/dist/core/components/molecules/chipInput/ChipInput.d.ts +2 -0
- package/dist/core/components/molecules/editableChipInput/EditableChipInput.d.ts +2 -0
- package/dist/core/components/molecules/tooltip/Tooltip.d.ts +2 -0
- package/dist/core/components/organisms/grid/Cell.d.ts +7 -2
- package/dist/core/components/organisms/grid/Grid.d.ts +3 -0
- package/dist/core/components/organisms/grid/GridContext.d.ts +2 -0
- package/dist/core/components/organisms/grid/utility.d.ts +1 -0
- package/dist/core/components/organisms/menu/MenuList.d.ts +3 -0
- package/dist/core/components/organisms/select/SelectContext.d.ts +2 -1
- package/dist/core/components/organisms/table/Header.d.ts +2 -0
- package/dist/core/components/organisms/verticalNav/MenuItem.d.ts +1 -0
- package/dist/core/components/organisms/verticalNav/VerticalNav.d.ts +1 -0
- package/dist/esm/index.js +464 -280
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +505 -325
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +209 -26
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +66 -62
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,104 @@
|
|
|
1
|
+
## 4.13.0 (2025-09-22)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(editableChipInput): add small variant support in editableChipInput component (cbb07d28)
|
|
6
|
+
- feat(chipInput): add small variant support in chipInput component (48b9b85d)
|
|
7
|
+
- feat(select): add small variant support in select component (4c72ae07)
|
|
8
|
+
- feat(chip): add small variant support in chip component (e7829052)
|
|
9
|
+
- feat(button): add small variant support in button component (38052c54)
|
|
10
|
+
|
|
11
|
+
### Breaking changes
|
|
12
|
+
|
|
13
|
+
NA
|
|
14
|
+
|
|
15
|
+
### Migration guide
|
|
16
|
+
|
|
17
|
+
NA
|
|
18
|
+
|
|
19
|
+
### Deprecations
|
|
20
|
+
|
|
21
|
+
NA
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
- feat(editableChipInput): add small variant support in editableChipInput component (cbb07d28)
|
|
26
|
+
- feat(chipInput): add small variant support in chipInput component (48b9b85d)
|
|
27
|
+
- feat(select): add small variant support in select component (4c72ae07)
|
|
28
|
+
- feat(chip): add small variant support in chip component (e7829052)
|
|
29
|
+
- feat(editableInput): add small variant support in editableInput component (6e720070)
|
|
30
|
+
- feat(menu): add small variant support in menu component (f3bace0c)
|
|
31
|
+
- feat(textField): add small variant support in textField component (6a76f7aa)
|
|
32
|
+
- feat(metricInput): add small variant support in metric input component (3fa029f7)
|
|
33
|
+
- feat(input): add small variant support in input component (77730a3f)
|
|
34
|
+
- feat(textarea): add small variant support in textarea component (508e2872)
|
|
35
|
+
- feat(badge): add hover event support in badge component (10831bd1)
|
|
36
|
+
- feat(statusHint): add new small variant support in status hint (0216d7b0)
|
|
37
|
+
- feat(tooltip): add small size support in tooltip component (e0b4da4d)
|
|
38
|
+
- feat(message): add small variant support in message (8d523382)
|
|
39
|
+
- feat(button): add small variant support in button component (38052c54)
|
|
40
|
+
- feat(label): add small variant support in label component (d29c11a8)
|
|
41
|
+
|
|
42
|
+
### Fixes
|
|
43
|
+
|
|
44
|
+
NA
|
|
45
|
+
|
|
46
|
+
### Improvements
|
|
47
|
+
|
|
48
|
+
- chore: add AGENTS.md file (fbc14017)
|
|
49
|
+
|
|
50
|
+
### Documentation
|
|
51
|
+
|
|
52
|
+
NA
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## 4.12.0 (2025-08-14)
|
|
57
|
+
|
|
58
|
+
### Highlights
|
|
59
|
+
|
|
60
|
+
- feat(table): add custom header cell renderer with sorting state support (9fb78957)
|
|
61
|
+
- feat(verticalNav): add support for custom option renderer in vertical nav (fcbcb87f)
|
|
62
|
+
- feat(select): add inline label support for small size select trigger (9f476ce7)
|
|
63
|
+
- feat(table): add support for custom label in table header (404b440b)
|
|
64
|
+
- feat(link): add story for icon support in link component (01d658b2)
|
|
65
|
+
|
|
66
|
+
### Breaking changes
|
|
67
|
+
|
|
68
|
+
NA
|
|
69
|
+
|
|
70
|
+
### Migration guide
|
|
71
|
+
|
|
72
|
+
NA
|
|
73
|
+
|
|
74
|
+
### Deprecations
|
|
75
|
+
|
|
76
|
+
NA
|
|
77
|
+
|
|
78
|
+
### Features
|
|
79
|
+
|
|
80
|
+
- feat(table): add custom header cell renderer with sorting state support (9fb78957)
|
|
81
|
+
- feat(verticalNav): add support for custom option renderer in vertical nav (fcbcb87f)
|
|
82
|
+
- feat(select): add inline label support for small size select trigger (9f476ce7)
|
|
83
|
+
- feat(table): add support for custom label in table header (404b440b)
|
|
84
|
+
- feat(link): add story for icon support in link component (01d658b2)
|
|
85
|
+
|
|
86
|
+
### Fixes
|
|
87
|
+
|
|
88
|
+
- fix(table): fix extra api call on sorting in infinite scroll (00f3a26b)
|
|
89
|
+
- fix(table): fix visibility of background cell for pinned columns (29d91d9b)
|
|
90
|
+
- fix(table): update spacing of checkbox for loading state (45109d69)
|
|
91
|
+
|
|
92
|
+
### Improvements
|
|
93
|
+
|
|
94
|
+
NA
|
|
95
|
+
|
|
96
|
+
### Documentation
|
|
97
|
+
|
|
98
|
+
- docs(icon): update appearance section for the Icon component (d9c04fa6)
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
1
102
|
## 4.11.2 (2025-07-28)
|
|
2
103
|
|
|
3
104
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -679,6 +679,9 @@ body {
|
|
|
679
679
|
.Label {
|
|
680
680
|
display: inline-flex;
|
|
681
681
|
}
|
|
682
|
+
.Label--small {
|
|
683
|
+
font-size: var(--font-size-s);
|
|
684
|
+
}
|
|
682
685
|
|
|
683
686
|
.Label--withInput {
|
|
684
687
|
margin-bottom: var(--spacing-10);
|
|
@@ -699,6 +702,10 @@ body {
|
|
|
699
702
|
margin-left: var(--spacing-10);
|
|
700
703
|
}
|
|
701
704
|
|
|
705
|
+
.Label-optionalText--small {
|
|
706
|
+
font-size: var(--font-size-s);
|
|
707
|
+
}
|
|
708
|
+
|
|
702
709
|
.Label--disabled {
|
|
703
710
|
color: var(--text-disabled);
|
|
704
711
|
}
|
|
@@ -1407,6 +1414,8 @@ body {
|
|
|
1407
1414
|
padding-left: var(--spacing-20);
|
|
1408
1415
|
padding-top: var(--spacing-10);
|
|
1409
1416
|
padding-bottom: var(--spacing-10);
|
|
1417
|
+
font-size: var(--font-size-s);
|
|
1418
|
+
font-weight: var(--font-weight-medium);
|
|
1410
1419
|
}
|
|
1411
1420
|
|
|
1412
1421
|
.Button--tinySquare {
|
|
@@ -2427,7 +2436,6 @@ body {
|
|
|
2427
2436
|
box-sizing: border-box;
|
|
2428
2437
|
border-radius: var(--border-radius-30);
|
|
2429
2438
|
padding-right: var(--spacing-20);
|
|
2430
|
-
padding-left: var(--spacing-20);
|
|
2431
2439
|
padding-top: var(--spacing-05);
|
|
2432
2440
|
padding-bottom: var(--spacing-05);
|
|
2433
2441
|
width: -moz-fit-content;
|
|
@@ -2438,10 +2446,18 @@ body {
|
|
|
2438
2446
|
align-items: center;
|
|
2439
2447
|
flex-direction: row;
|
|
2440
2448
|
cursor: default;
|
|
2441
|
-
height: var(--spacing-60);
|
|
2442
2449
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
2443
2450
|
}
|
|
2444
2451
|
|
|
2452
|
+
.Chip-size--regular {
|
|
2453
|
+
height: var(--spacing-60);
|
|
2454
|
+
padding-left: var(--spacing-20);
|
|
2455
|
+
}
|
|
2456
|
+
.Chip-size--small {
|
|
2457
|
+
height: 20px;
|
|
2458
|
+
padding-left: var(--spacing-15);
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2445
2461
|
.Chip-wrapper {
|
|
2446
2462
|
display: inline-flex;
|
|
2447
2463
|
align-items: center;
|
|
@@ -2456,6 +2472,7 @@ body {
|
|
|
2456
2472
|
.Chip-icon--right {
|
|
2457
2473
|
display: flex;
|
|
2458
2474
|
align-items: center;
|
|
2475
|
+
justify-content: center;
|
|
2459
2476
|
border-radius: var(--border-radius-full);
|
|
2460
2477
|
margin-left: var(--spacing-05);
|
|
2461
2478
|
}
|
|
@@ -2643,13 +2660,21 @@ body {
|
|
|
2643
2660
|
display: flex;
|
|
2644
2661
|
border-radius: var(--border-radius-10);
|
|
2645
2662
|
box-shadow: inset 0 0 0 var(--spacing-2-5) var(--secondary);
|
|
2646
|
-
padding-left: 10px;
|
|
2647
|
-
padding-right: 10px;
|
|
2648
2663
|
background: var(--white);
|
|
2649
2664
|
cursor: text;
|
|
2650
2665
|
flex: 100%;
|
|
2651
2666
|
}
|
|
2652
2667
|
|
|
2668
|
+
.ChipInput--regular {
|
|
2669
|
+
padding-left: 10px;
|
|
2670
|
+
padding-right: 10px;
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
.ChipInput--small {
|
|
2674
|
+
padding-left: var(--spacing-20);
|
|
2675
|
+
padding-right: var(--spacing-20);
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2653
2678
|
.ChipInput:focus,
|
|
2654
2679
|
.ChipInput:focus-visible {
|
|
2655
2680
|
outline: var(--spacing-2-5) var(--primary);
|
|
@@ -2704,11 +2729,23 @@ body {
|
|
|
2704
2729
|
min-width: 15%;
|
|
2705
2730
|
flex: 0px;
|
|
2706
2731
|
box-sizing: border-box;
|
|
2732
|
+
font-family: var(--font-family);
|
|
2733
|
+
font-size: var(--font-size);
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
.ChipInput-input--small {
|
|
2737
|
+
height: 20px;
|
|
2738
|
+
margin-top: var(--spacing-05);
|
|
2739
|
+
margin-bottom: var(--spacing-05);
|
|
2740
|
+
font-size: var(--font-size-s);
|
|
2741
|
+
line-height: var(--font-height-s);
|
|
2742
|
+
font-weight: var(--font-weight-medium);
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
.ChipInput-input--regular {
|
|
2707
2746
|
height: var(--spacing-60);
|
|
2708
2747
|
margin-top: var(--spacing-10);
|
|
2709
2748
|
margin-bottom: var(--spacing-10);
|
|
2710
|
-
font-family: var(--font-family);
|
|
2711
|
-
font-size: var(--font-size);
|
|
2712
2749
|
}
|
|
2713
2750
|
|
|
2714
2751
|
.ChipInput:hover .ChipInput-input {
|
|
@@ -2720,14 +2757,22 @@ body {
|
|
|
2720
2757
|
}
|
|
2721
2758
|
|
|
2722
2759
|
.ChipInput-icon {
|
|
2723
|
-
height: var(--spacing-40);
|
|
2724
|
-
padding: var(--spacing-05);
|
|
2725
|
-
margin-left: var(--spacing-20);
|
|
2726
|
-
margin-top: var(--spacing-15);
|
|
2727
2760
|
cursor: pointer;
|
|
2728
2761
|
border-radius: var(--border-radius-full);
|
|
2729
2762
|
}
|
|
2730
2763
|
|
|
2764
|
+
.ChipInput-icon--small {
|
|
2765
|
+
margin-left: var(--spacing-15);
|
|
2766
|
+
margin-top: var(--spacing-15);
|
|
2767
|
+
height: var(--spacing-30);
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
.ChipInput-icon--regular {
|
|
2771
|
+
height: var(--spacing-40);
|
|
2772
|
+
margin-left: var(--spacing-20);
|
|
2773
|
+
margin-top: var(--spacing-20);
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2731
2776
|
.ChipInput-icon:hover {
|
|
2732
2777
|
background-color: var(--secondary);
|
|
2733
2778
|
}
|
|
@@ -3762,8 +3807,6 @@ body {
|
|
|
3762
3807
|
border: var(--border-width-2-5) solid transparent;
|
|
3763
3808
|
box-sizing: border-box;
|
|
3764
3809
|
white-space: nowrap;
|
|
3765
|
-
padding-left: var(--spacing-30);
|
|
3766
|
-
padding-right: var(--spacing-30);
|
|
3767
3810
|
display: flex;
|
|
3768
3811
|
align-items: center;
|
|
3769
3812
|
}
|
|
@@ -3771,11 +3814,18 @@ body {
|
|
|
3771
3814
|
.EditableInput-default--regular {
|
|
3772
3815
|
min-width: var(--spacing-640);
|
|
3773
3816
|
height: var(--spacing-80);
|
|
3817
|
+
padding-left: var(--spacing-30);
|
|
3818
|
+
padding-right: var(--spacing-30);
|
|
3774
3819
|
}
|
|
3775
3820
|
|
|
3776
3821
|
.EditableInput-default--tiny {
|
|
3777
3822
|
min-width: var(--spacing-240);
|
|
3778
3823
|
height: var(--spacing-60);
|
|
3824
|
+
font-size: var(--font-size-s);
|
|
3825
|
+
font-weight: var(--font-weight-medium);
|
|
3826
|
+
line-height: var(--font-height-s);
|
|
3827
|
+
padding-left: var(--spacing-20);
|
|
3828
|
+
padding-right: var(--spacing-20);
|
|
3779
3829
|
}
|
|
3780
3830
|
|
|
3781
3831
|
.EditableInput-Input--tiny {
|
|
@@ -5028,6 +5078,8 @@ body {
|
|
|
5028
5078
|
height: var(--font-height-m);
|
|
5029
5079
|
padding-top: var(--spacing-10);
|
|
5030
5080
|
padding-bottom: var(--spacing-10);
|
|
5081
|
+
padding-left: var(--spacing-20);
|
|
5082
|
+
padding-right: var(--spacing-20);
|
|
5031
5083
|
}
|
|
5032
5084
|
|
|
5033
5085
|
.Input--regular {
|
|
@@ -5131,6 +5183,12 @@ body {
|
|
|
5131
5183
|
font-size: var(--font-size-m);
|
|
5132
5184
|
}
|
|
5133
5185
|
|
|
5186
|
+
.Input-input--tiny {
|
|
5187
|
+
line-height: var(--font-height-s);
|
|
5188
|
+
font-size: var(--font-size-s);
|
|
5189
|
+
font-weight: var(--font-weight-medium);
|
|
5190
|
+
}
|
|
5191
|
+
|
|
5134
5192
|
.Input-icon {
|
|
5135
5193
|
display: flex;
|
|
5136
5194
|
align-content: center;
|
|
@@ -5199,6 +5257,7 @@ body {
|
|
|
5199
5257
|
font-weight: var(--font-weight-medium);
|
|
5200
5258
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
5201
5259
|
box-sizing: border-box;
|
|
5260
|
+
border-bottom: var(--border-width-2-5) solid transparent;
|
|
5202
5261
|
}
|
|
5203
5262
|
|
|
5204
5263
|
.Link:focus-visible {
|
|
@@ -5527,6 +5586,13 @@ body {
|
|
|
5527
5586
|
box-sizing: border-box;
|
|
5528
5587
|
}
|
|
5529
5588
|
|
|
5589
|
+
.Menu-Item--tight {
|
|
5590
|
+
padding: var(--spacing-10) var(--spacing-20);
|
|
5591
|
+
font-size: var(--font-size-s);
|
|
5592
|
+
font-weight: var(--font-weight-medium);
|
|
5593
|
+
line-height: var(--font-height-s);
|
|
5594
|
+
}
|
|
5595
|
+
|
|
5530
5596
|
.Menu-Group-Label {
|
|
5531
5597
|
display: flex;
|
|
5532
5598
|
align-items: center;
|
|
@@ -5551,6 +5617,10 @@ body {
|
|
|
5551
5617
|
box-sizing: border-box;
|
|
5552
5618
|
}
|
|
5553
5619
|
|
|
5620
|
+
.Message--small {
|
|
5621
|
+
padding: var(--spacing-20);
|
|
5622
|
+
}
|
|
5623
|
+
|
|
5554
5624
|
.Message--alert {
|
|
5555
5625
|
border-color: var(--alert);
|
|
5556
5626
|
background-color: rgba(217, 55, 55, 0.04);
|
|
@@ -5571,11 +5641,16 @@ body {
|
|
|
5571
5641
|
background-color: rgba(240, 125, 0, 0.04);
|
|
5572
5642
|
}
|
|
5573
5643
|
|
|
5574
|
-
.Message-icon {
|
|
5644
|
+
.Message-icon--regular {
|
|
5575
5645
|
margin-right: var(--spacing-40);
|
|
5576
5646
|
padding-top: var(--spacing-05);
|
|
5577
5647
|
}
|
|
5578
5648
|
|
|
5649
|
+
.Message-icon--small {
|
|
5650
|
+
margin-right: var(--spacing-20);
|
|
5651
|
+
padding-top: var(--spacing-05) !important;
|
|
5652
|
+
}
|
|
5653
|
+
|
|
5579
5654
|
.Message-icon--withTitle {
|
|
5580
5655
|
padding-top: var(--spacing-10);
|
|
5581
5656
|
}
|
|
@@ -5584,10 +5659,22 @@ body {
|
|
|
5584
5659
|
color: var(--accent1);
|
|
5585
5660
|
}
|
|
5586
5661
|
|
|
5587
|
-
.Message-heading {
|
|
5662
|
+
.Message-heading--regular {
|
|
5588
5663
|
margin-bottom: var(--spacing-10);
|
|
5589
5664
|
}
|
|
5590
5665
|
|
|
5666
|
+
.Message-heading--small {
|
|
5667
|
+
font-size: var(--font-size);
|
|
5668
|
+
line-height: var(--font-height);
|
|
5669
|
+
margin-bottom: var(--spacing-05);
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
.Message-text--small {
|
|
5673
|
+
font-size: var(--font-size-s);
|
|
5674
|
+
line-height: var(--font-height-s);
|
|
5675
|
+
font-weight: var(--font-weight-medium);
|
|
5676
|
+
}
|
|
5677
|
+
|
|
5591
5678
|
.Message-heading--alert,
|
|
5592
5679
|
.Message-text--alert {
|
|
5593
5680
|
color: var(--alert-darker) !important;
|
|
@@ -5611,9 +5698,16 @@ body {
|
|
|
5611
5698
|
.Message-actions {
|
|
5612
5699
|
display: flex;
|
|
5613
5700
|
align-items: center;
|
|
5701
|
+
}
|
|
5702
|
+
|
|
5703
|
+
.Message-actions--regular {
|
|
5614
5704
|
margin-top: var(--spacing-30);
|
|
5615
5705
|
}
|
|
5616
5706
|
|
|
5707
|
+
.Message-actions--small {
|
|
5708
|
+
margin-top: var(--spacing-10);
|
|
5709
|
+
}
|
|
5710
|
+
|
|
5617
5711
|
.Meta {
|
|
5618
5712
|
display: flex;
|
|
5619
5713
|
flex-direction: row;
|
|
@@ -5712,8 +5806,8 @@ body {
|
|
|
5712
5806
|
box-sizing: border-box;
|
|
5713
5807
|
border-radius: var(--border-radius-10);
|
|
5714
5808
|
border: var(--border);
|
|
5715
|
-
padding-right: var(--spacing-10);
|
|
5716
5809
|
background: var(--white);
|
|
5810
|
+
overflow: hidden;
|
|
5717
5811
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
5718
5812
|
}
|
|
5719
5813
|
|
|
@@ -5727,6 +5821,11 @@ body {
|
|
|
5727
5821
|
padding-left: var(--spacing-40);
|
|
5728
5822
|
}
|
|
5729
5823
|
|
|
5824
|
+
.MetricInput--small {
|
|
5825
|
+
height: var(--spacing-60);
|
|
5826
|
+
padding-left: var(--spacing-20);
|
|
5827
|
+
}
|
|
5828
|
+
|
|
5730
5829
|
.MetricInput:hover {
|
|
5731
5830
|
background: var(--secondary-lightest);
|
|
5732
5831
|
cursor: text;
|
|
@@ -5791,6 +5890,17 @@ body {
|
|
|
5791
5890
|
font-size: var(--font-size-m);
|
|
5792
5891
|
}
|
|
5793
5892
|
|
|
5893
|
+
.MetricInput-input--regular {
|
|
5894
|
+
line-height: var(--font-height);
|
|
5895
|
+
font-size: var(--font-size);
|
|
5896
|
+
}
|
|
5897
|
+
|
|
5898
|
+
.MetricInput-input--small {
|
|
5899
|
+
line-height: var(--font-height-s);
|
|
5900
|
+
font-size: var(--font-size-s);
|
|
5901
|
+
font-weight: var(--font-weight-medium);
|
|
5902
|
+
}
|
|
5903
|
+
|
|
5794
5904
|
.MetricInput-input::-moz-placeholder {
|
|
5795
5905
|
color: var(--inverse-lighter);
|
|
5796
5906
|
}
|
|
@@ -5821,6 +5931,10 @@ body {
|
|
|
5821
5931
|
line-height: var(--font-height-m);
|
|
5822
5932
|
}
|
|
5823
5933
|
|
|
5934
|
+
.MetricInput-icon--small {
|
|
5935
|
+
margin-right: var(--spacing-10);
|
|
5936
|
+
}
|
|
5937
|
+
|
|
5824
5938
|
.MetricInput-input::-webkit-inner-spin-button,
|
|
5825
5939
|
.MetricInput-input::-webkit-outer-spin-button {
|
|
5826
5940
|
-webkit-appearance: none;
|
|
@@ -5829,16 +5943,55 @@ body {
|
|
|
5829
5943
|
margin: 0;
|
|
5830
5944
|
}
|
|
5831
5945
|
|
|
5832
|
-
.MetricInput-
|
|
5833
|
-
|
|
5834
|
-
|
|
5835
|
-
border-radius:
|
|
5946
|
+
.MetricInput-arrowIcons {
|
|
5947
|
+
border-left: var(--border);
|
|
5948
|
+
box-sizing: border-box;
|
|
5949
|
+
border-radius: 0;
|
|
5950
|
+
background: transparent;
|
|
5951
|
+
display: flex;
|
|
5952
|
+
flex-direction: column;
|
|
5953
|
+
height: 100%;
|
|
5954
|
+
flex-shrink: 0;
|
|
5955
|
+
overflow: hidden;
|
|
5836
5956
|
}
|
|
5837
5957
|
|
|
5838
|
-
.MetricInput-
|
|
5839
|
-
height:
|
|
5840
|
-
|
|
5841
|
-
|
|
5958
|
+
.MetricInput-arrowButton {
|
|
5959
|
+
height: 50%;
|
|
5960
|
+
border: none;
|
|
5961
|
+
background: var(--secondary-light);
|
|
5962
|
+
color: var(--inverse);
|
|
5963
|
+
cursor: pointer;
|
|
5964
|
+
display: flex;
|
|
5965
|
+
align-items: center;
|
|
5966
|
+
justify-content: center;
|
|
5967
|
+
padding: 0;
|
|
5968
|
+
margin: 0;
|
|
5969
|
+
-webkit-user-select: none;
|
|
5970
|
+
-moz-user-select: none;
|
|
5971
|
+
user-select: none;
|
|
5972
|
+
overflow: hidden;
|
|
5973
|
+
}
|
|
5974
|
+
|
|
5975
|
+
.MetricInput-arrowButton:hover {
|
|
5976
|
+
background: var(--secondary);
|
|
5977
|
+
}
|
|
5978
|
+
|
|
5979
|
+
.MetricInput-arrowButton:active {
|
|
5980
|
+
background: var(--secondary-dark);
|
|
5981
|
+
}
|
|
5982
|
+
|
|
5983
|
+
.MetricInput-arrowButton:focus {
|
|
5984
|
+
outline: 0;
|
|
5985
|
+
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
5986
|
+
}
|
|
5987
|
+
|
|
5988
|
+
.MetricInput-arrowIcons--small,
|
|
5989
|
+
.MetricInput-arrowIcons--regular {
|
|
5990
|
+
width: 20px;
|
|
5991
|
+
}
|
|
5992
|
+
|
|
5993
|
+
.MetricInput-arrowIcons--large {
|
|
5994
|
+
width: var(--spacing-60);
|
|
5842
5995
|
}
|
|
5843
5996
|
|
|
5844
5997
|
@keyframes modal-open {
|
|
@@ -6793,7 +6946,7 @@ body {
|
|
|
6793
6946
|
|
|
6794
6947
|
.Select-trigger--small {
|
|
6795
6948
|
height: var(--spacing-60);
|
|
6796
|
-
padding-right: var(--spacing-
|
|
6949
|
+
padding-right: var(--spacing-10);
|
|
6797
6950
|
padding-left: var(--spacing-20);
|
|
6798
6951
|
}
|
|
6799
6952
|
|
|
@@ -6864,6 +7017,27 @@ body {
|
|
|
6864
7017
|
width: 100%;
|
|
6865
7018
|
}
|
|
6866
7019
|
|
|
7020
|
+
.Select-trigger--textSmall {
|
|
7021
|
+
font-size: var(--font-size-s);
|
|
7022
|
+
line-height: var(--font-height-s);
|
|
7023
|
+
font-weight: var(--font-weight-medium);
|
|
7024
|
+
}
|
|
7025
|
+
|
|
7026
|
+
.Select-option--tight {
|
|
7027
|
+
padding: var(--spacing-10) var(--spacing-20);
|
|
7028
|
+
}
|
|
7029
|
+
|
|
7030
|
+
.Select-input--tiny {
|
|
7031
|
+
padding-right: var(--spacing-10);
|
|
7032
|
+
height: var(--spacing-60);
|
|
7033
|
+
}
|
|
7034
|
+
|
|
7035
|
+
.Select-option--textTight {
|
|
7036
|
+
font-size: var(--font-size-s);
|
|
7037
|
+
line-height: var(--font-height-s);
|
|
7038
|
+
font-weight: var(--font-weight-medium);
|
|
7039
|
+
}
|
|
7040
|
+
|
|
6867
7041
|
.Selection-card {
|
|
6868
7042
|
border-radius: var(--border-radius-10);
|
|
6869
7043
|
position: relative;
|
|
@@ -7259,6 +7433,7 @@ body {
|
|
|
7259
7433
|
flex-direction: row;
|
|
7260
7434
|
width: -moz-fit-content;
|
|
7261
7435
|
width: fit-content;
|
|
7436
|
+
align-items: center;
|
|
7262
7437
|
}
|
|
7263
7438
|
|
|
7264
7439
|
.StatusHint-icon {
|
|
@@ -7266,8 +7441,6 @@ body {
|
|
|
7266
7441
|
border-radius: var(--border-radius-full);
|
|
7267
7442
|
height: var(--spacing-20);
|
|
7268
7443
|
width: var(--spacing-20);
|
|
7269
|
-
margin-right: var(--spacing-20);
|
|
7270
|
-
margin-top: var(--spacing-15);
|
|
7271
7444
|
}
|
|
7272
7445
|
|
|
7273
7446
|
.StatusHint--alert {
|
|
@@ -7755,6 +7928,12 @@ body {
|
|
|
7755
7928
|
resize: both;
|
|
7756
7929
|
}
|
|
7757
7930
|
|
|
7931
|
+
.Textarea--small {
|
|
7932
|
+
font-size: var(--font-size-s);
|
|
7933
|
+
font-weight: var(--font-weight-medium);
|
|
7934
|
+
line-height: var(--font-height-s);
|
|
7935
|
+
}
|
|
7936
|
+
|
|
7758
7937
|
/* toast */
|
|
7759
7938
|
|
|
7760
7939
|
.Toast {
|
|
@@ -7984,6 +8163,10 @@ body {
|
|
|
7984
8163
|
transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
|
|
7985
8164
|
}
|
|
7986
8165
|
|
|
8166
|
+
.Tooltip--small {
|
|
8167
|
+
line-height: var(--font-height-s);
|
|
8168
|
+
}
|
|
8169
|
+
|
|
7987
8170
|
.Tooltip-text {
|
|
7988
8171
|
word-break: break-word;
|
|
7989
8172
|
-webkit-hyphens: auto;
|