@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 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
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare const Badge: React.FC<React.HTMLAttributes<HTMLSpanElement>>;
@@ -0,0 +1 @@
1
+ export declare const BadgeContainer: React.FC<React.HTMLAttributes<HTMLSpanElement>>;
@@ -0,0 +1,2 @@
1
+ export { Badge } from './Badge';
2
+ export { BadgeContainer } from './BadgeContainer';