@midas-ds/components 6.1.0 → 6.2.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 +16 -0
- package/badge/Badge.d.ts +2 -0
- package/badge/BadgeContainer.d.ts +1 -0
- package/badge/index.d.ts +2 -0
- package/index.cjs +28 -28
- package/index.css +1 -1
- package/index.d.ts +1 -0
- package/index.js +3690 -3652
- package/package.json +1 -1
- package/theme/index.d.ts +0 -2
- package/theme/tokens.d.ts +0 -2
- package/theme.cjs +1 -1
- package/theme.js +2 -2
- package/{tokens-Ce2Sj8HD.js → tokens-DeYazHS9.js} +17 -19
- package/tokens-DzCqA9U7.cjs +1 -0
- package/tokens-DZsQgihc.cjs +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 6.2.0
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **badge:** 🆕 new component - badge to indicate user of unread items
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- **theme:** update icon-secondary with new value for dark mode
|
|
10
|
+
- **date-picker:** add disabled style to divider
|
|
11
|
+
- **theme:** update more tokens in tokens.ts
|
|
12
|
+
- **theme:** update some tokens to new naming convention
|
|
13
|
+
- **tabs:** fix dark mode on tabs and example on docweb
|
|
14
|
+
- **theme:** change the token value to icon secondary
|
|
15
|
+
- **link-button:** fix secondary border and icon color in dark mode
|
|
16
|
+
|
|
1
17
|
## 6.1.0
|
|
2
18
|
|
|
3
19
|
### 🚀 Features
|
package/badge/Badge.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BadgeContainer: React.FC<React.HTMLAttributes<HTMLSpanElement>>;
|
package/badge/index.d.ts
ADDED