@oslokommune/punkt-react 13.18.1 → 13.18.3
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 +1 -0
- package/dist/punkt-react.es.js +364 -356
- package/dist/punkt-react.umd.js +85 -85
- package/package.json +3 -3
- package/src/components/combobox/Combobox.tsx +1 -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
|
+
## [13.18.2](https://github.com/oslokommune/punkt/compare/13.18.1...13.18.2) (2026-01-12)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* useWrapper false funker ikke i enkelte tilfeller (#3163).
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
8
26
|
## [13.18.1](https://github.com/oslokommune/punkt/compare/13.18.0...13.18.1) (2026-01-09)
|
|
9
27
|
|
|
10
28
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -202,6 +202,7 @@ export declare interface IPktCombobox extends ExtendedCombobox {
|
|
|
202
202
|
onFocus?: FocusEventHandler<HTMLSelectElement>;
|
|
203
203
|
onValueChange?: (e: CustomEvent) => void;
|
|
204
204
|
onToggleHelpText?: (e: CustomEvent) => void;
|
|
205
|
+
useWrapper?: boolean;
|
|
205
206
|
}
|
|
206
207
|
|
|
207
208
|
declare interface IPktConsent extends IPktConsent_2 {
|