@oslokommune/punkt-react 12.3.12 → 12.3.14

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
+ ## [12.3.14](https://github.com/oslokommune/punkt/compare/12.3.13...12.3.14) (2024-10-15)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ Ingen
15
+
16
+ ### Bug Fixes
17
+ * PktDatepicker, Fiks datoer langt tilbake i tid (#1957).
18
+
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
26
+ ## [12.3.13](https://github.com/oslokommune/punkt/compare/12.3.12...12.3.13) (2024-10-15)
27
+
28
+ ### ⚠ BREAKING CHANGES
29
+ Ingen
30
+
31
+ ### Features
32
+ Ingen
33
+
34
+ ### Bug Fixes
35
+ * Fiks manglende IPktElements i React-bygg (#1956).
36
+
37
+
38
+ ### Chores
39
+ Ingen
40
+
41
+ ---
42
+
43
+
8
44
  ## [12.3.11](https://github.com/oslokommune/punkt/compare/12.3.10...12.3.11) (2024-10-15)
9
45
 
10
46
  ### ⚠ BREAKING CHANGES
package/dist/index.d.ts CHANGED
@@ -9,8 +9,6 @@ import { HTMLProps } from 'react';
9
9
  import { InputHTMLAttributes } from 'react';
10
10
  import { JSX as JSX_2 } from 'react/jsx-runtime';
11
11
  import { LegacyRef } from 'react';
12
- import { PktElType } from '../../interfaces/IPktElements';
13
- import { PktEventWithTarget } from '../../interfaces/IPktElements';
14
12
  import * as React_2 from 'react';
15
13
  import { ReactElement } from 'react';
16
14
  import { ReactNode } from 'react';
@@ -549,6 +547,16 @@ export declare const PktCheckbox: default_2.ForwardRefExoticComponent<IPktCheckb
549
547
 
550
548
  export declare const PktDatepicker: FC<IPktDatepicker>;
551
549
 
550
+ declare interface PktElType {
551
+ className?: string;
552
+ children?: default_2.ReactNode | default_2.ReactNode[];
553
+ ref?: default_2.RefObject<HTMLElement> | default_2.LegacyRef<HTMLElement>;
554
+ }
555
+
556
+ declare interface PktEventWithTarget extends Event {
557
+ target: EventTarget & HTMLInputElement;
558
+ }
559
+
552
560
  export declare const PktFooter: default_2.FC<IPktFooter>;
553
561
 
554
562
  export declare const PktFooterSimple: default_2.FC<IPktFooterSimple>;