@innovaccer/design-system 4.13.0 → 4.15.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,77 @@
1
+ ## 4.15.0 (2025-10-21)
2
+
3
+ ### Highlights
4
+
5
+ - feat(button): add outlined styleType in existing button (15ef566b)
6
+ - test: update CI to test deployed site with latest DS (16af6a7b)
7
+
8
+ ### Breaking changes
9
+
10
+ NA
11
+
12
+ ### Migration guide
13
+
14
+ NA
15
+
16
+ ### Deprecations
17
+
18
+ NA
19
+
20
+ ### Features
21
+
22
+ - feat(button): add outlined styleType in existing button (15ef566b)
23
+
24
+ ### Fixes
25
+
26
+ NA
27
+
28
+ ### Improvements
29
+
30
+ - test: update CI to test deployed site with latest DS (16af6a7b)
31
+
32
+ ### Documentation
33
+
34
+ NA
35
+
36
+ ---
37
+
38
+ ## 4.14.0 (2025-09-30)
39
+
40
+ ### Highlights
41
+
42
+ - feat(tokens): add ultra light tokens in the css (967398fa)
43
+ - fix(metricInput): fix metric input arrowbutton while ESM build (3de747c6)
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(tokens): add ultra light tokens in the css (967398fa)
60
+
61
+ ### Fixes
62
+
63
+ - fix(metricInput): fix metric input arrowbutton while ESM build (3de747c6)
64
+
65
+ ### Improvements
66
+
67
+ NA
68
+
69
+ ### Documentation
70
+
71
+ NA
72
+
73
+ ---
74
+
1
75
  ## 4.13.0 (2025-09-22)
2
76
 
3
77
  ### Highlights
@@ -138,6 +138,16 @@
138
138
  --accent4-lightest: var(--nimbu-lightest);
139
139
  --inverse-lightest: var(--night-lightest);
140
140
 
141
+ /* Ultra Light */
142
+ --primary-ultra-light: #eef6fc;
143
+ --success-ultra-light: #ecf7f0;
144
+ --alert-ultra-light: #fcf1f1;
145
+ --warning-ultra-light: #fffae4;
146
+ --accent1-ultra-light: #fef3e7;
147
+ --accent2-ultra-light: #f0ecf7;
148
+ --accent3-ultra-light: #f1f3fc;
149
+ --accent4-ultra-light: #f2f9e7;
150
+
141
151
  /* shadow */
142
152
  --primary-shadow: rgba(0, 112, 221, 0.16);
143
153
  --secondary-shadow: rgba(213, 213, 213, 0.16);
@@ -1630,6 +1640,124 @@ body {
1630
1640
  text-overflow: ellipsis;
1631
1641
  }
1632
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
+
1633
1761
  /* calendar */
1634
1762
 
1635
1763
  .Calendar-wrapper {
@@ -7428,6 +7556,10 @@ body {
7428
7556
  stroke: var(--white);
7429
7557
  }
7430
7558
 
7559
+ .Circle--alert {
7560
+ stroke: var(--alert);
7561
+ }
7562
+
7431
7563
  .StatusHint {
7432
7564
  display: flex;
7433
7565
  flex-direction: row;