@innovaccer/design-system 4.13.0 → 4.14.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 +37 -0
- package/css/dist/index.css +10 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/variables/index.css +10 -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/esm/index.js +172 -172
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +172 -172
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +10 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
|
1
|
+
## 4.14.0 (2025-09-30)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(tokens): add ultra light tokens in the css (967398fa)
|
|
6
|
+
- fix(metricInput): fix metric input arrowbutton while ESM build (3de747c6)
|
|
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(tokens): add ultra light tokens in the css (967398fa)
|
|
23
|
+
|
|
24
|
+
### Fixes
|
|
25
|
+
|
|
26
|
+
- fix(metricInput): fix metric input arrowbutton while ESM build (3de747c6)
|
|
27
|
+
|
|
28
|
+
### Improvements
|
|
29
|
+
|
|
30
|
+
NA
|
|
31
|
+
|
|
32
|
+
### Documentation
|
|
33
|
+
|
|
34
|
+
NA
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
1
38
|
## 4.13.0 (2025-09-22)
|
|
2
39
|
|
|
3
40
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -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);
|