@innovaccer/design-system 4.14.0 → 4.16.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 CHANGED
@@ -1,3 +1,76 @@
1
+ ## 4.16.0 (2025-11-03)
2
+
3
+ ### Highlights
4
+
5
+ - feat(select): add outlined styleType in select (b88c025d)
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
+ - feat(select): add outlined styleType in select (b88c025d)
22
+
23
+ ### Fixes
24
+
25
+ NA
26
+
27
+ ### Improvements
28
+
29
+ NA
30
+
31
+ ### Documentation
32
+
33
+ NA
34
+
35
+ ---
36
+
37
+ ## 4.15.0 (2025-10-21)
38
+
39
+ ### Highlights
40
+
41
+ - feat(button): add outlined styleType in existing button (15ef566b)
42
+ - test: update CI to test deployed site with latest DS (16af6a7b)
43
+
44
+ ### Breaking changes
45
+
46
+ NA
47
+
48
+ ### Migration guide
49
+
50
+ NA
51
+
52
+ ### Deprecations
53
+
54
+ NA
55
+
56
+ ### Features
57
+
58
+ - feat(button): add outlined styleType in existing button (15ef566b)
59
+
60
+ ### Fixes
61
+
62
+ NA
63
+
64
+ ### Improvements
65
+
66
+ - test: update CI to test deployed site with latest DS (16af6a7b)
67
+
68
+ ### Documentation
69
+
70
+ NA
71
+
72
+ ---
73
+
1
74
  ## 4.14.0 (2025-09-30)
2
75
 
3
76
  ### Highlights
@@ -1640,6 +1640,124 @@ body {
1640
1640
  text-overflow: ellipsis;
1641
1641
  }
1642
1642
 
1643
+ /* outlined button styles */
1644
+
1645
+ .Button-outlined--basic {
1646
+ border: var(--border);
1647
+ color: var(--inverse);
1648
+ background: transparent;
1649
+ }
1650
+
1651
+ .Button-outlined--basic:hover {
1652
+ background: var(--secondary-lighter);
1653
+ border: var(--border-width-2-5) solid var(--inverse-lightest);
1654
+ }
1655
+
1656
+ .Button-outlined--basic:active {
1657
+ background: var(--secondary);
1658
+ border: var(--border-width-2-5) solid var(--inverse-lightest);
1659
+ }
1660
+
1661
+ .Button-outlined--basic:focus {
1662
+ border: var(--border-width-2-5) solid var(--primary);
1663
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
1664
+ }
1665
+
1666
+ .Button-outlined--basic:disabled {
1667
+ color: var(--inverse-lightest);
1668
+ background: transparent;
1669
+ border: var(--border-width-2-5) solid var(--secondary);
1670
+ }
1671
+
1672
+ .Button-outlined--selected {
1673
+ background: var(--primary-ultra-light);
1674
+ color: var(--primary-dark);
1675
+ border: var(--border-width-2-5) solid var(--primary-lighter);
1676
+ }
1677
+
1678
+ .Button-outlined--selected:hover {
1679
+ background: var(--primary-lightest);
1680
+ border: var(--border-width-2-5) solid var(--primary-lighter);
1681
+ }
1682
+
1683
+ .Button-outlined--selected:active {
1684
+ background: var(--primary-lighter);
1685
+ color: var(--primary-darker);
1686
+ border: var(--border-width-2-5) solid var(--primary);
1687
+ }
1688
+
1689
+ .Button-outlined--selected:focus {
1690
+ color: var(--primary-dark);
1691
+ border: var(--border-width-2-5) solid var(--primary);
1692
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
1693
+ }
1694
+
1695
+ .Button-outlined--selected:disabled {
1696
+ background: var(--primary-ultra-light);
1697
+ color: var(--primary-lighter);
1698
+ border: var(--border-width-2-5) solid var(--primary-lightest);
1699
+ }
1700
+
1701
+ .Button-outlined--primary {
1702
+ background: transparent;
1703
+ border: var(--border-width-2-5) solid var(--primary);
1704
+ color: var(--primary);
1705
+ mix-blend-mode: multiply;
1706
+ }
1707
+
1708
+ .Button-outlined--primary:hover {
1709
+ background: var(--primary-ultra-light);
1710
+ border: var(--border-width-2-5) solid var(--primary-dark);
1711
+ color: var(--primary-dark);
1712
+ }
1713
+
1714
+ .Button-outlined--primary:active {
1715
+ background: var(--primary-lightest);
1716
+ border: var(--border-width-2-5) solid var(--primary-dark);
1717
+ color: var(--primary-dark);
1718
+ }
1719
+
1720
+ .Button-outlined--primary:focus {
1721
+ border: var(--border-width-2-5) solid var(--primary);
1722
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
1723
+ }
1724
+
1725
+ .Button-outlined--primary:disabled {
1726
+ background: transparent;
1727
+ color: var(--primary-lighter);
1728
+ border: var(--border-width-2-5) solid var(--primary-lighter);
1729
+ }
1730
+
1731
+ .Button-outlined--alert {
1732
+ background: transparent;
1733
+ border: var(--border-width-2-5) solid var(--alert);
1734
+ color: var(--alert);
1735
+ mix-blend-mode: multiply;
1736
+ }
1737
+
1738
+ .Button-outlined--alert:hover {
1739
+ background: var(--alert-ultra-light);
1740
+ border: var(--border-width-2-5) solid var(--alert-dark);
1741
+ color: var(--alert-dark);
1742
+ }
1743
+
1744
+ .Button-outlined--alert:active {
1745
+ background: var(--alert-lightest);
1746
+ border: var(--border-width-2-5) solid var(--alert-dark);
1747
+ color: var(--alert-dark);
1748
+ }
1749
+
1750
+ .Button-outlined--alert:focus {
1751
+ border: var(--border-width-2-5) solid var(--alert);
1752
+ box-shadow: var(--shadow-spread) var(--alert-shadow);
1753
+ }
1754
+
1755
+ .Button-outlined--alert:disabled {
1756
+ background: transparent;
1757
+ color: var(--alert-lighter);
1758
+ border: var(--border-width-2-5) solid var(--alert-lighter);
1759
+ }
1760
+
1643
1761
  /* calendar */
1644
1762
 
1645
1763
  .Calendar-wrapper {
@@ -6909,33 +7027,71 @@ body {
6909
7027
  justify-content: space-between;
6910
7028
  padding-top: unset;
6911
7029
  padding-bottom: unset;
7030
+ transition: var(--duration--fast-01) var(--standard-productive-curve);
7031
+ }
7032
+
7033
+ .Select-trigger--filled {
6912
7034
  background: var(--secondary-light);
6913
7035
  color: var(--text);
6914
- transition: var(--duration--fast-01) var(--standard-productive-curve);
6915
7036
  }
6916
7037
 
6917
- .Select-trigger:disabled {
7038
+ .Select-trigger--filled:disabled {
6918
7039
  background: var(--secondary-lighter);
6919
7040
  color: var(--text-disabled);
6920
7041
  pointer-events: none;
6921
7042
  }
6922
7043
 
6923
- .Select-trigger:active,
6924
- .Select-trigger--open {
7044
+ .Select-trigger--filled:active,
7045
+ .Select-trigger--filledOpen {
6925
7046
  background-color: var(--secondary-dark) !important;
6926
7047
  color: var(--text) !important;
6927
7048
  animation-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
6928
7049
  animation-duration: 120ms;
6929
7050
  }
6930
7051
 
6931
- .Select-trigger:hover {
7052
+ .Select-trigger--filled:hover {
6932
7053
  background: var(--secondary);
6933
7054
  color: var(--text);
6934
7055
  }
6935
7056
 
6936
- .Select-trigger:focus {
7057
+ .Select-trigger--filled:focus {
7058
+ border: var(--border-width-2-5) solid var(--primary);
6937
7059
  background-color: var(--secondary-light);
6938
- box-shadow: var(--shadow-spread) var(--secondary-shadow);
7060
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
7061
+ }
7062
+
7063
+ /* styleType Outlined */
7064
+
7065
+ .Select-trigger--outlined {
7066
+ background: var(--white);
7067
+ color: var(--text);
7068
+ border: var(--border);
7069
+ }
7070
+
7071
+ .Select-trigger--outlined:hover {
7072
+ background: var(--secondary-lighter);
7073
+ color: var(--inverse);
7074
+ border: var(--border-width-2-5) solid var(--secondary-dark);
7075
+ }
7076
+
7077
+ .Select-trigger--outlined:focus {
7078
+ border: var(--border-width-2-5) solid var(--primary);
7079
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
7080
+ }
7081
+
7082
+ .Select-trigger--outlined:active,
7083
+ .Select-trigger--outlinedOpen {
7084
+ color: var(--inverse) !important;
7085
+ background: var(--secondary) !important;
7086
+ border: var(--border-width-2-5) solid var(--inverse-lightest) !important;
7087
+ animation-timing-function: var(--entrance-productive-curve);
7088
+ animation-duration: var(--duration--fast-02);
7089
+ }
7090
+
7091
+ .Select-trigger--outlined:disabled {
7092
+ color: var(--inverse-lightest) !important;
7093
+ background: var(--secondary-lightest) !important;
7094
+ border: var(--border-width-2-5) solid var(--secondary-lighter) !important;
6939
7095
  }
6940
7096
 
6941
7097
  .Select-inputWrapper {
@@ -6979,10 +7135,14 @@ body {
6979
7135
  padding-left: var(--spacing-30);
6980
7136
  }
6981
7137
 
6982
- .Select-trigger--placeholder {
7138
+ .Select-trigger--filledPlaceholder {
6983
7139
  color: var(--text);
6984
7140
  }
6985
7141
 
7142
+ .Select-trigger--outlinedPlaceholder {
7143
+ color: var(--inverse-lighter);
7144
+ }
7145
+
6986
7146
  .Select-trigger--icon {
6987
7147
  padding-left: var(--spacing-20);
6988
7148
  }
@@ -7048,6 +7208,11 @@ body {
7048
7208
  font-weight: var(--font-weight-medium);
7049
7209
  }
7050
7210
 
7211
+ .Select-trigger--error {
7212
+ border: var(--border-width-2-5) solid var(--alert) !important;
7213
+ box-shadow: var(--shadow-spread) var(--alert-shadow);
7214
+ }
7215
+
7051
7216
  .Selection-card {
7052
7217
  border-radius: var(--border-radius-10);
7053
7218
  position: relative;
@@ -7438,6 +7603,10 @@ body {
7438
7603
  stroke: var(--white);
7439
7604
  }
7440
7605
 
7606
+ .Circle--alert {
7607
+ stroke: var(--alert);
7608
+ }
7609
+
7441
7610
  .StatusHint {
7442
7611
  display: flex;
7443
7612
  flex-direction: row;