@oslokommune/punkt-react 12.38.2 → 12.39.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 +18 -0
- package/dist/index.d.ts +3 -0
- package/dist/punkt-react.es.js +6184 -6168
- package/dist/punkt-react.umd.js +357 -354
- package/package.json +4 -4
- package/src/components/modal/Modal.tsx +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [12.39.0](https://github.com/oslokommune/punkt/compare/12.38.2...12.39.0) (2025-05-15)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
* Nye muligheter i Modal: Skuff og gjennomsiktig backdrop (Pluss animert åpning/lukking) (#2548).
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
Ingen
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
8
26
|
## [12.38.2](https://github.com/oslokommune/punkt/compare/12.38.1...12.38.2) (2025-05-14)
|
|
9
27
|
|
|
10
28
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -341,6 +341,9 @@ export declare interface IPktModal extends PktElType {
|
|
|
341
341
|
size?: 'small' | 'medium' | 'large';
|
|
342
342
|
removePadding?: boolean;
|
|
343
343
|
closeButtonSkin?: 'blue' | 'yellow-filled';
|
|
344
|
+
variant?: 'dialog' | 'drawer';
|
|
345
|
+
drawerPosition?: 'left' | 'right';
|
|
346
|
+
transparentBackdrop?: boolean;
|
|
344
347
|
}
|
|
345
348
|
|
|
346
349
|
export declare interface IPktProgressbar extends ExtendedProgressbar {
|