@oslokommune/punkt-react 12.3.2 → 12.3.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 CHANGED
@@ -5,6 +5,24 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
5
5
 
6
6
  ---
7
7
 
8
+ ## [12.3.3](https://github.com/oslokommune/punkt/compare/12.3.2...12.3.3) (2024-10-04)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ Ingen
15
+
16
+ ### Bug Fixes
17
+ * PktLink mangler `target` (#1944).
18
+
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
8
26
  ## [12.3.0](https://github.com/oslokommune/punkt/compare/12.2.0...12.3.0) (2024-10-03)
9
27
 
10
28
  ### ⚠ BREAKING CHANGES
package/dist/index.d.ts CHANGED
@@ -236,6 +236,7 @@ declare interface IPktLink extends PktElType {
236
236
  iconName?: string | undefined;
237
237
  iconPosition?: string | undefined;
238
238
  external?: boolean;
239
+ target?: string | null;
239
240
  onClick?: (e: CustomEvent) => void;
240
241
  children?: default_2.ReactNode | default_2.ReactNode[];
241
242
  }