@midas-ds/components 8.3.0 → 9.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 +12 -0
- package/README.md +4 -4
- package/index.cjs +28 -28
- package/index.css +1 -1
- package/index.js +1286 -1286
- package/package.json +1 -1
- package/textfield/TextArea.d.ts +4 -1
- package/textfield/TextField.d.ts +2 -0
- package/theme/index.d.ts +32 -30
- package/theme/tokens.d.ts +38 -30
- package/theme.cjs +1 -1
- package/theme.js +2 -2
- package/tokens-CzvFRHfr.cjs +1 -0
- package/{tokens-CEzXihhV.js → tokens-n8UPYzPD.js} +39 -35
- package/utils/storybook.d.ts +1 -0
- package/tokens-B6mMZ0T6.cjs +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# 9.0.0
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **info-banner:** add correct line-height ([#540](https://github.com/migrationsverket/midas/pull/540))
|
|
6
|
+
- **grid:** prevent midas classnames to get overwritten ([#541](https://github.com/migrationsverket/midas/pull/541))
|
|
7
|
+
- **textfield:** merge textfield and input/textarea native dom props ([#499](https://github.com/migrationsverket/midas/pull/499))
|
|
8
|
+
|
|
9
|
+
### Documentation Changes
|
|
10
|
+
|
|
11
|
+
- **toast:** fix local example in storybook ([#542](https://github.com/migrationsverket/midas/pull/542))
|
|
12
|
+
|
|
1
13
|
## 8.3.0
|
|
2
14
|
|
|
3
15
|
### 🚀 Features
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
React component library implementing Midas Design System (Migrationsverket)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
---
|
|
6
6
|
|
|
7
7
|
## Getting started
|
|
8
8
|
|
|
@@ -11,6 +11,7 @@ Add `@midas-ds/components` to your project:
|
|
|
11
11
|
```
|
|
12
12
|
npm install @midas-ds/components
|
|
13
13
|
```
|
|
14
|
+
|
|
14
15
|
And then import the components you need:
|
|
15
16
|
|
|
16
17
|
```
|
|
@@ -19,7 +20,6 @@ import {Button, Checkbox, etc} from '@midas-ds/components'
|
|
|
19
20
|
|
|
20
21
|
## Documentation
|
|
21
22
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
* Component API documentation on [Storybook](https://designsystem.migrationsverket.se/storybook/).
|
|
23
|
+
- See the full design system documentation on [Midas](https://designsystem.migrationsverket.se/) (Swedish).
|
|
25
24
|
|
|
25
|
+
- Component API documentation on [Storybook](https://main--6810d578d5507438df0f0d22.chromatic.com).
|