@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 +20 -0
- package/badge/Badge.d.ts +2 -0
- package/badge/BadgeContainer.d.ts +1 -0
- package/badge/index.d.ts +2 -0
- package/character-counter/CharacterCounter.d.ts +3 -0
- package/character-counter/index.d.ts +1 -0
- package/field-error/FieldError.d.ts +3 -0
- package/field-error/index.d.ts +1 -0
- package/index.cjs +29 -29
- package/index.css +1 -1
- package/index.d.ts +3 -1
- package/index.js +5416 -5416
- package/package.json +1 -1
- package/textfield/Input.d.ts +4 -0
- package/textfield/PasswordField.d.ts +3 -0
- package/textfield/TextArea.d.ts +7 -0
- package/textfield/TextField.d.ts +5 -23
- package/textfield/TextFieldBase.d.ts +18 -0
- package/textfield/index.d.ts +3 -0
- package/textfield/intl/translations.json.d.ts +85 -0
- 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/utils/intl/index.d.ts +2 -0
- package/utils/intl/useLocalizedStringFormatter.d.ts +11 -0
- package/utils/intl/useMessageFormatter.d.ts +11 -0
- package/textarea/TextArea.d.ts +0 -20
- package/textarea/index.d.ts +0 -1
- package/tokens-DZsQgihc.cjs +0 -1
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
|
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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CharacterCounter';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FieldError } from './FieldError';
|