@midas-ds/components 6.1.0 → 7.0.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,23 @@
1
+ # 7.0.0
2
+
3
+ This was a version bump only for components to align it with other projects, there were no code changes.
4
+
5
+ ## 6.2.0
6
+
7
+ ### 🚀 Features
8
+
9
+ - **badge:** 🆕 new component - badge to indicate user of unread items
10
+
11
+ ### 🩹 Fixes
12
+
13
+ - **theme:** update icon-secondary with new value for dark mode
14
+ - **date-picker:** add disabled style to divider
15
+ - **theme:** update more tokens in tokens.ts
16
+ - **theme:** update some tokens to new naming convention
17
+ - **tabs:** fix dark mode on tabs and example on docweb
18
+ - **theme:** change the token value to icon secondary
19
+ - **link-button:** fix secondary border and icon color in dark mode
20
+
1
21
  ## 6.1.0
2
22
 
3
23
  ### 🚀 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';
@@ -0,0 +1,3 @@
1
+ import { InputProps } from 'react-aria-components';
2
+ import * as React from 'react';
3
+ export declare const CharacterCounter: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
@@ -0,0 +1 @@
1
+ export * from './CharacterCounter';
@@ -0,0 +1,3 @@
1
+ import { FieldErrorProps } from 'react-aria-components';
2
+ import * as React from 'react';
3
+ export declare const FieldError: React.ForwardRefExoticComponent<FieldErrorProps & React.RefAttributes<HTMLElement>>;
@@ -0,0 +1 @@
1
+ export { FieldError } from './FieldError';