@oslokommune/punkt-react 15.0.0 → 15.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/CHANGELOG.md CHANGED
@@ -5,6 +5,42 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
5
5
 
6
6
  ---
7
7
 
8
+ ## [15.0.2](https://github.com/oslokommune/punkt/compare/15.0.1...15.0.2) (2026-02-13)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ Ingen
15
+
16
+ ### Bug Fixes
17
+ * Header openedMenu kan ikke endres utenfra etter render (#3245).
18
+
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
26
+ ## [15.0.1](https://github.com/oslokommune/punkt/compare/15.0.0...15.0.1) (2026-02-12)
27
+
28
+ ### ⚠ BREAKING CHANGES
29
+ Ingen
30
+
31
+ ### Features
32
+ Ingen
33
+
34
+ ### Bug Fixes
35
+ * Datepicker i React, onChange trenger React ChangeEvent, ikke native Event (#3244).
36
+
37
+
38
+ ### Chores
39
+ Ingen
40
+
41
+ ---
42
+
43
+
8
44
  ## [15.0.0](https://github.com/oslokommune/punkt/compare/14.5.4...15.0.0) (2026-02-12)
9
45
 
10
46
  ### ⚠ BREAKING CHANGES
package/dist/index.d.ts CHANGED
@@ -288,7 +288,7 @@ export declare interface IPktDatepicker extends Omit<InputHTMLAttributes<HTMLInp
288
288
  tagText?: string;
289
289
  useWrapper?: boolean;
290
290
  strings?: IDatepickerStrings;
291
- onChange?: (e: Event) => void;
291
+ onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
292
292
  onValueChange?: (values: string[]) => void;
293
293
  className?: string;
294
294
  }