@innovaccer/design-system 5.0.0-13 → 5.0.0-15

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 CHANGED
@@ -1,3 +1,49 @@
1
+ ## 4.12.0 (2025-08-14)
2
+
3
+ ### Highlights
4
+
5
+ - feat(table): add custom header cell renderer with sorting state support (9fb78957)
6
+ - feat(verticalNav): add support for custom option renderer in vertical nav (fcbcb87f)
7
+ - feat(select): add inline label support for small size select trigger (9f476ce7)
8
+ - feat(table): add support for custom label in table header (404b440b)
9
+ - feat(link): add story for icon support in link component (01d658b2)
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(table): add custom header cell renderer with sorting state support (9fb78957)
26
+ - feat(verticalNav): add support for custom option renderer in vertical nav (fcbcb87f)
27
+ - feat(select): add inline label support for small size select trigger (9f476ce7)
28
+ - feat(table): add support for custom label in table header (404b440b)
29
+ - feat(link): add story for icon support in link component (01d658b2)
30
+
31
+ ### Fixes
32
+
33
+ - fix(table): fix extra api call on sorting in infinite scroll (00f3a26b)
34
+ - fix(table): fix visibility of background cell for pinned columns (29d91d9b)
35
+ - fix(table): update spacing of checkbox for loading state (45109d69)
36
+
37
+ ### Improvements
38
+
39
+ NA
40
+
41
+ ### Documentation
42
+
43
+ - docs(icon): update appearance section for the Icon component (d9c04fa6)
44
+
45
+ ---
46
+
1
47
  ## 4.11.2 (2025-07-28)
2
48
 
3
49
  ### Highlights
@@ -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 {
@@ -5028,6 +5037,8 @@ body {
5028
5037
  height: var(--font-height-m);
5029
5038
  padding-top: var(--spacing-10);
5030
5039
  padding-bottom: var(--spacing-10);
5040
+ padding-left: var(--spacing-20);
5041
+ padding-right: var(--spacing-20);
5031
5042
  }
5032
5043
 
5033
5044
  .Input--regular {
@@ -5131,6 +5142,12 @@ body {
5131
5142
  font-size: var(--font-size-m);
5132
5143
  }
5133
5144
 
5145
+ .Input-input--tiny {
5146
+ line-height: var(--font-height-s);
5147
+ font-size: var(--font-size-s);
5148
+ font-weight: var(--font-weight-medium);
5149
+ }
5150
+
5134
5151
  .Input-icon {
5135
5152
  display: flex;
5136
5153
  align-content: center;
@@ -5199,6 +5216,7 @@ body {
5199
5216
  font-weight: var(--font-weight-medium);
5200
5217
  transition: var(--duration--fast-01) var(--standard-productive-curve);
5201
5218
  box-sizing: border-box;
5219
+ border-bottom: var(--border-width-2-5) solid transparent;
5202
5220
  }
5203
5221
 
5204
5222
  .Link:focus-visible {
@@ -5551,6 +5569,10 @@ body {
5551
5569
  box-sizing: border-box;
5552
5570
  }
5553
5571
 
5572
+ .Message--small {
5573
+ padding: var(--spacing-20);
5574
+ }
5575
+
5554
5576
  .Message--alert {
5555
5577
  border-color: var(--alert);
5556
5578
  background-color: rgba(217, 55, 55, 0.04);
@@ -5571,11 +5593,16 @@ body {
5571
5593
  background-color: rgba(240, 125, 0, 0.04);
5572
5594
  }
5573
5595
 
5574
- .Message-icon {
5596
+ .Message-icon--regular {
5575
5597
  margin-right: var(--spacing-40);
5576
5598
  padding-top: var(--spacing-05);
5577
5599
  }
5578
5600
 
5601
+ .Message-icon--small {
5602
+ margin-right: var(--spacing-20);
5603
+ padding-top: var(--spacing-05) !important;
5604
+ }
5605
+
5579
5606
  .Message-icon--withTitle {
5580
5607
  padding-top: var(--spacing-10);
5581
5608
  }
@@ -5584,10 +5611,22 @@ body {
5584
5611
  color: var(--accent1);
5585
5612
  }
5586
5613
 
5587
- .Message-heading {
5614
+ .Message-heading--regular {
5588
5615
  margin-bottom: var(--spacing-10);
5589
5616
  }
5590
5617
 
5618
+ .Message-heading--small {
5619
+ font-size: var(--font-size);
5620
+ line-height: var(--font-height);
5621
+ margin-bottom: var(--spacing-05);
5622
+ }
5623
+
5624
+ .Message-text--small {
5625
+ font-size: var(--font-size-s);
5626
+ line-height: var(--font-height-s);
5627
+ font-weight: var(--font-weight-medium);
5628
+ }
5629
+
5591
5630
  .Message-heading--alert,
5592
5631
  .Message-text--alert {
5593
5632
  color: var(--alert-darker) !important;
@@ -5611,9 +5650,16 @@ body {
5611
5650
  .Message-actions {
5612
5651
  display: flex;
5613
5652
  align-items: center;
5653
+ }
5654
+
5655
+ .Message-actions--regular {
5614
5656
  margin-top: var(--spacing-30);
5615
5657
  }
5616
5658
 
5659
+ .Message-actions--small {
5660
+ margin-top: var(--spacing-10);
5661
+ }
5662
+
5617
5663
  .Meta {
5618
5664
  display: flex;
5619
5665
  flex-direction: row;
@@ -5712,8 +5758,8 @@ body {
5712
5758
  box-sizing: border-box;
5713
5759
  border-radius: var(--border-radius-10);
5714
5760
  border: var(--border);
5715
- padding-right: var(--spacing-10);
5716
5761
  background: var(--white);
5762
+ overflow: hidden;
5717
5763
  transition: var(--duration--fast-01) var(--standard-productive-curve);
5718
5764
  }
5719
5765
 
@@ -5727,6 +5773,11 @@ body {
5727
5773
  padding-left: var(--spacing-40);
5728
5774
  }
5729
5775
 
5776
+ .MetricInput--small {
5777
+ height: var(--spacing-60);
5778
+ padding-left: var(--spacing-20);
5779
+ }
5780
+
5730
5781
  .MetricInput:hover {
5731
5782
  background: var(--secondary-lightest);
5732
5783
  cursor: text;
@@ -5791,6 +5842,17 @@ body {
5791
5842
  font-size: var(--font-size-m);
5792
5843
  }
5793
5844
 
5845
+ .MetricInput-input--regular {
5846
+ line-height: var(--font-height);
5847
+ font-size: var(--font-size);
5848
+ }
5849
+
5850
+ .MetricInput-input--small {
5851
+ line-height: var(--font-height-s);
5852
+ font-size: var(--font-size-s);
5853
+ font-weight: var(--font-weight-medium);
5854
+ }
5855
+
5794
5856
  .MetricInput-input::-moz-placeholder {
5795
5857
  color: var(--inverse-lighter);
5796
5858
  }
@@ -5821,6 +5883,10 @@ body {
5821
5883
  line-height: var(--font-height-m);
5822
5884
  }
5823
5885
 
5886
+ .MetricInput-icon--small {
5887
+ margin-right: var(--spacing-10);
5888
+ }
5889
+
5824
5890
  .MetricInput-input::-webkit-inner-spin-button,
5825
5891
  .MetricInput-input::-webkit-outer-spin-button {
5826
5892
  -webkit-appearance: none;
@@ -5829,16 +5895,55 @@ body {
5829
5895
  margin: 0;
5830
5896
  }
5831
5897
 
5832
- .MetricInput-arrowIcon--large {
5833
- height: var(--spacing-40);
5834
- width: var(--spacing-40);
5835
- border-radius: var(--border-radius-05);
5898
+ .MetricInput-arrowIcons {
5899
+ border-left: var(--border);
5900
+ box-sizing: border-box;
5901
+ border-radius: 0;
5902
+ background: transparent;
5903
+ display: flex;
5904
+ flex-direction: column;
5905
+ height: 100%;
5906
+ flex-shrink: 0;
5907
+ overflow: hidden;
5836
5908
  }
5837
5909
 
5838
- .MetricInput-arrowIcon--regular {
5839
- height: var(--spacing-30);
5840
- width: var(--spacing-30);
5841
- border-radius: var(--border-radius-05);
5910
+ .MetricInput-arrowButton {
5911
+ height: 50%;
5912
+ border: none;
5913
+ background: var(--secondary-light);
5914
+ color: var(--inverse);
5915
+ cursor: pointer;
5916
+ display: flex;
5917
+ align-items: center;
5918
+ justify-content: center;
5919
+ padding: 0;
5920
+ margin: 0;
5921
+ -webkit-user-select: none;
5922
+ -moz-user-select: none;
5923
+ user-select: none;
5924
+ overflow: hidden;
5925
+ }
5926
+
5927
+ .MetricInput-arrowButton:hover {
5928
+ background: var(--secondary);
5929
+ }
5930
+
5931
+ .MetricInput-arrowButton:active {
5932
+ background: var(--secondary-dark);
5933
+ }
5934
+
5935
+ .MetricInput-arrowButton:focus {
5936
+ outline: 0;
5937
+ box-shadow: var(--shadow-spread) var(--secondary-shadow);
5938
+ }
5939
+
5940
+ .MetricInput-arrowIcons--small,
5941
+ .MetricInput-arrowIcons--regular {
5942
+ width: 20px;
5943
+ }
5944
+
5945
+ .MetricInput-arrowIcons--large {
5946
+ width: var(--spacing-60);
5842
5947
  }
5843
5948
 
5844
5949
  @keyframes modal-open {
@@ -7259,6 +7364,7 @@ body {
7259
7364
  flex-direction: row;
7260
7365
  width: -moz-fit-content;
7261
7366
  width: fit-content;
7367
+ align-items: center;
7262
7368
  }
7263
7369
 
7264
7370
  .StatusHint-icon {
@@ -7266,8 +7372,6 @@ body {
7266
7372
  border-radius: var(--border-radius-full);
7267
7373
  height: var(--spacing-20);
7268
7374
  width: var(--spacing-20);
7269
- margin-right: var(--spacing-20);
7270
- margin-top: var(--spacing-15);
7271
7375
  }
7272
7376
 
7273
7377
  .StatusHint--alert {
@@ -7755,6 +7859,12 @@ body {
7755
7859
  resize: both;
7756
7860
  }
7757
7861
 
7862
+ .Textarea--small {
7863
+ font-size: var(--font-size-s);
7864
+ font-weight: var(--font-weight-medium);
7865
+ line-height: var(--font-height-s);
7866
+ }
7867
+
7758
7868
  /* toast */
7759
7869
 
7760
7870
  .Toast {
@@ -7984,6 +8094,10 @@ body {
7984
8094
  transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
7985
8095
  }
7986
8096
 
8097
+ .Tooltip--small {
8098
+ line-height: var(--font-height-s);
8099
+ }
8100
+
7987
8101
  .Tooltip-text {
7988
8102
  word-break: break-word;
7989
8103
  -webkit-hyphens: auto;