@navikt/ds-react 5.0.1 → 5.0.2
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/_docs.json +1 -1
- package/esm/modal/Modal.d.ts +1 -1
- package/package.json +2 -2
- package/src/modal/Modal.tsx +1 -1
package/_docs.json
CHANGED
package/esm/modal/Modal.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export interface ModalProps extends React.DialogHTMLAttributes<HTMLDialogElement
|
|
|
48
48
|
/**
|
|
49
49
|
* @default fit-content (up to 700px)
|
|
50
50
|
* */
|
|
51
|
-
width?: "medium" | "small" | number | string
|
|
51
|
+
width?: "medium" | "small" | number | `${number}${string}`;
|
|
52
52
|
/**
|
|
53
53
|
* User defined classname for modal
|
|
54
54
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navikt/ds-react",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"description": "Aksel react-components for NAV designsystem",
|
|
5
5
|
"author": "Aksel | NAV designsystem team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@floating-ui/react": "0.24.1",
|
|
41
|
-
"@navikt/aksel-icons": "^5.0.
|
|
41
|
+
"@navikt/aksel-icons": "^5.0.2",
|
|
42
42
|
"@radix-ui/react-tabs": "1.0.0",
|
|
43
43
|
"@radix-ui/react-toggle-group": "1.0.0",
|
|
44
44
|
"clsx": "^1.2.1",
|
package/src/modal/Modal.tsx
CHANGED