@innovaccer/design-system 2.30.1 → 2.31.1

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,82 @@
1
+ ## 2.31.1 (2024-04-19)
2
+
3
+ ### Highlights
4
+
5
+ - fix(table): update table selection behaviour in sync table (aa39ac56)
6
+
7
+ ### Breaking changes
8
+
9
+ NA
10
+
11
+ ### Migration guide
12
+
13
+ NA
14
+
15
+ ### Deprecations
16
+
17
+ NA
18
+
19
+ ### Features
20
+
21
+ NA
22
+
23
+ ### Fixes
24
+
25
+ - fix(table): update table selection behaviour in sync table (aa39ac56)
26
+
27
+ ### Improvements
28
+
29
+ NA
30
+
31
+ ### Documentation
32
+
33
+ NA
34
+
35
+ ---
36
+
37
+ ## 2.31.0 (2024-04-15)
38
+
39
+ ### Highlights
40
+
41
+ - feat(table): add persistent selection support in table (7c07d6ac)
42
+ - feat(listbox): update list item states with updated opacity token (d426a36e)
43
+ - feat(table): update states of table with new opacity tokens (4a23a7e5)
44
+
45
+ ### Breaking changes
46
+
47
+ NA
48
+
49
+ ### Migration guide
50
+
51
+ NA
52
+
53
+ ### Deprecations
54
+
55
+ NA
56
+
57
+ ### Features
58
+
59
+ - feat(table): add persistent selection support in table (7c07d6ac)
60
+ - feat(listbox): update list item states with updated opacity token (d426a36e)
61
+ - feat(table): update states of table with new opacity tokens (4a23a7e5)
62
+
63
+ ### Fixes
64
+
65
+ - fix(editableDropdown): popover open issue with custom type on option selection (ba4fecff)
66
+ - fix(tooltip): fix spelling mistakes in tooltip (777c9dd9)
67
+
68
+ ### Improvements
69
+
70
+ NA
71
+
72
+ ### Documentation
73
+
74
+ - docs(listbox): update the listbox state documentation (32ddf640)
75
+ - docs(combobox): update option state documentation in combobox (81e55b64)
76
+ - docs(opacity): add new opacity token guidelines (a533ce73)
77
+
78
+ ---
79
+
1
80
  ## 2.30.1 (2024-04-03)
2
81
 
3
82
  ### Highlights
@@ -3555,11 +3555,12 @@ body {
3555
3555
 
3556
3556
  .Grid--resource .Grid-row--body:active,
3557
3557
  .Grid--resource .Grid-row--body:active .Grid-cellGroup {
3558
- background: var(--warning-lightest) !important;
3558
+ background: var(--secondary-lighter);
3559
3559
  }
3560
3560
 
3561
3561
  .Grid--resource .Grid-row--body:focus {
3562
- outline-color: var(--warning);
3562
+ box-shadow: var(--shadow-spread) rgba(213, 213, 213, 0.16);
3563
+ outline: none;
3563
3564
  }
3564
3565
 
3565
3566
  .Grid--pinned {
@@ -3671,6 +3672,8 @@ body {
3671
3672
  flex-shrink: 0;
3672
3673
  box-sizing: border-box;
3673
3674
  background: var(--white);
3675
+ transition: var(--duration--fast-02) var(--standard-productive-curve);
3676
+ transition-delay: var(--duration--fast-01);
3674
3677
  }
3675
3678
 
3676
3679
  .Grid-row--body {
@@ -3679,7 +3682,24 @@ body {
3679
3682
 
3680
3683
  .Grid-row--selected,
3681
3684
  .Grid-row--selected .Grid-cellGroup {
3682
- background: var(--warning-lightest) !important;
3685
+ background: rgba(220, 236, 249, 0.48);
3686
+ transition: var(--duration--fast-02) var(--standard-productive-curve);
3687
+ }
3688
+
3689
+ .Grid-row--selected:hover,
3690
+ .Grid-row--selected .Grid-cellGroup:hover {
3691
+ background: rgba(151, 197, 240, 0.48) !important;
3692
+ }
3693
+
3694
+ .Grid-row--selected:active,
3695
+ .Grid-row--selected .Grid-cellGroup:active {
3696
+ background: var(--primary-lighter) !important;
3697
+ }
3698
+
3699
+ .Grid-row--selected:focus,
3700
+ .Grid-row--selected .Grid-cellGroup:focus {
3701
+ outline: none;
3702
+ box-shadow: var(--shadow-spread) rgba(0, 112, 221, 0.16);
3683
3703
  }
3684
3704
 
3685
3705
  .Grid-rowWrapper:last-child .Grid-row--body {
@@ -3758,7 +3778,7 @@ body {
3758
3778
  } */
3759
3779
 
3760
3780
  .Grid-row--disabled {
3761
- opacity: 0.4;
3781
+ opacity: var(--opacity-40);
3762
3782
  pointer-events: none;
3763
3783
  }
3764
3784
 
@@ -4797,11 +4817,24 @@ body {
4797
4817
  }
4798
4818
 
4799
4819
  .Listbox-item--option:active {
4800
- background: rgba(255, 245, 199, 0.6);
4820
+ background: var(--secondary-lighter);
4801
4821
  }
4802
4822
 
4803
4823
  .Listbox-item--selected {
4804
- background: rgba(255, 245, 199, 0.6);
4824
+ background: rgba(220, 236, 249, 0.48);
4825
+ }
4826
+
4827
+ .Listbox-item--selected:hover {
4828
+ background: rgba(151, 197, 240, 0.48);
4829
+ }
4830
+
4831
+ .Listbox-item--selected:focus,
4832
+ .Listbox-item--selected:focus-visible {
4833
+ outline: 3px auto rgba(0, 112, 221, 0.16);
4834
+ }
4835
+
4836
+ .Listbox-item--selected:active {
4837
+ background: var(--primary-lighter);
4805
4838
  }
4806
4839
 
4807
4840
  /* Listbox type - resource */
@@ -4820,11 +4853,11 @@ body {
4820
4853
  }
4821
4854
 
4822
4855
  .Listbox-item--resource:active {
4823
- background: rgba(255, 245, 199, 0.6);
4856
+ background: var(--secondary-lighter);
4824
4857
  }
4825
4858
 
4826
4859
  .Listbox-item--activated {
4827
- background: rgba(255, 245, 199, 0.6);
4860
+ background: var(--primary-lightest);
4828
4861
  }
4829
4862
 
4830
4863
  /* Listbox type - description */
@@ -4837,7 +4870,7 @@ body {
4837
4870
  /* Listbox type - disabled */
4838
4871
 
4839
4872
  .Listbox-item--disabled {
4840
- opacity: 0.4;
4873
+ opacity: var(--opacity-40);
4841
4874
  pointer-events: none;
4842
4875
  }
4843
4876
 
@@ -6892,6 +6925,24 @@ body {
6892
6925
  border-top: var(--border);
6893
6926
  }
6894
6927
 
6928
+ .Table-Header--Divider {
6929
+ height: var(--spacing-xl);
6930
+ }
6931
+
6932
+ .Table-Header-Label--hide {
6933
+ -webkit-animation: fadeOut var(--duration--fast-02) var(--exit-productive-curve);
6934
+ animation: fadeOut var(--duration--fast-02) var(--exit-productive-curve);
6935
+ -webkit-animation-fill-mode: forwards;
6936
+ animation-fill-mode: forwards;
6937
+ }
6938
+
6939
+ .Table-Header-Label--show {
6940
+ -webkit-animation: fadeIn var(--duration--moderate-01) var(--entrance-productive-curve);
6941
+ animation: fadeIn var(--duration--moderate-01) var(--entrance-productive-curve);
6942
+ -webkit-animation-fill-mode: forwards;
6943
+ animation-fill-mode: forwards;
6944
+ }
6945
+
6895
6946
  /* tabs */
6896
6947
 
6897
6948
  .TabsWrapper {