@innovaccer/design-system 2.30.0 → 2.30.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 +36 -0
- package/css/dist/index.css +14 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/variables/index.css +14 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +3 -3
- package/dist/core/components/css-utilities/designTokens/Data.d.ts +4 -0
- package/dist/index.esm.js +4 -4
- package/dist/index.js +4 -4
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
## 2.30.1 (2024-04-03)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(opacity): add new tokens for opacity (460fb565)
|
|
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(opacity): add new tokens for opacity (460fb565)
|
|
22
|
+
|
|
23
|
+
### Fixes
|
|
24
|
+
|
|
25
|
+
- fix(table): global action button alignment (5a04afaa)
|
|
26
|
+
|
|
27
|
+
### Improvements
|
|
28
|
+
|
|
29
|
+
NA
|
|
30
|
+
|
|
31
|
+
### Documentation
|
|
32
|
+
|
|
33
|
+
- docs(docs): add menu component documentation (088a90e4)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
## 2.30.0 (2024-04-01)
|
|
2
38
|
|
|
3
39
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -272,6 +272,20 @@
|
|
|
272
272
|
--duration--moderate-02: 240ms;
|
|
273
273
|
--duration--slow-01: 400ms;
|
|
274
274
|
--duration--slow-02: 720ms;
|
|
275
|
+
|
|
276
|
+
/**** Opacity ****/
|
|
277
|
+
--opacity-0: 0;
|
|
278
|
+
--opacity-4: 0.04;
|
|
279
|
+
--opacity-8: 0.08;
|
|
280
|
+
--opacity-12: 0.12;
|
|
281
|
+
--opacity-16: 0.16;
|
|
282
|
+
--opacity-24: 0.24;
|
|
283
|
+
--opacity-32: 0.32;
|
|
284
|
+
--opacity-40: 0.4;
|
|
285
|
+
--opacity-48: 0.48;
|
|
286
|
+
--opacity-64: 0.64;
|
|
287
|
+
--opacity-80: 0.8;
|
|
288
|
+
--opacity-100: 1;
|
|
275
289
|
}
|
|
276
290
|
|
|
277
291
|
/* fallback */
|