@midas-ds/components 6.2.0 → 7.1.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/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 +2 -1
- package/index.js +6236 -6268
- 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 +7 -0
- package/theme/tokens.d.ts +7 -0
- package/theme.cjs +1 -1
- package/theme.js +4 -3
- package/{tokens-DzCqA9U7.cjs → tokens-CG8BaZyJ.cjs} +1 -1
- package/{tokens-DeYazHS9.js → tokens-XrriCAqI.js} +11 -3
- 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/utils/test.d.ts +4 -0
- package/textarea/TextArea.d.ts +0 -20
- package/textarea/index.d.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 7.1.0
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- ✨💄 add semantic z-index tokens ([#401](https://github.com/migrationsverket/midas/pull/401))
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- **date-picker:** add missing disabled styles ([10b394897](https://github.com/migrationsverket/midas/commit/10b394897))
|
|
10
|
+
- **combobox:** fix background color to input ([997eac80b](https://github.com/migrationsverket/midas/commit/997eac80b))
|
|
11
|
+
- **theme:** replace invalid text and border colors in dark mode ([3291a9cbd](https://github.com/migrationsverket/midas/commit/3291a9cbd))
|
|
12
|
+
|
|
13
|
+
# 7.0.0
|
|
14
|
+
|
|
15
|
+
This was a version bump only for components to align it with other projects, there were no code changes.
|
|
16
|
+
|
|
1
17
|
## 6.2.0
|
|
2
18
|
|
|
3
19
|
### 🚀 Features
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CharacterCounter';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FieldError } from './FieldError';
|