@oslokommune/punkt-react 12.17.1 → 12.17.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,24 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
5
5
 
6
6
  ---
7
7
 
8
+ ## [12.17.2](https://github.com/oslokommune/punkt/compare/12.17.1...12.17.2) (2025-01-16)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ Ingen
15
+
16
+ ### Bug Fixes
17
+ * Videresende `data-testid` til skjemaelementer (#2128).
18
+
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
8
26
  ## [12.17.1](https://github.com/oslokommune/punkt/compare/12.17.0...12.17.1) (2025-01-15)
9
27
 
10
28
  ### ⚠ BREAKING CHANGES
package/dist/index.d.ts CHANGED
@@ -166,6 +166,8 @@ declare interface IPktDatepicker extends InputHTMLAttributes<HTMLInputElement> {
166
166
  onFocus?: FocusEventHandler<HTMLInputElement>;
167
167
  onValueChange?: (e: CustomEvent) => void;
168
168
  onToggleHelpText?: (e: CustomEvent) => void;
169
+ dataTestid?: string;
170
+ skipForwardTestid?: boolean;
169
171
  }
170
172
 
171
173
  declare interface IPktFooter extends default_2.HTMLAttributes<HTMLDivElement> {
@@ -418,6 +420,8 @@ declare interface IPktTextarea extends TextareaHTMLAttributes<HTMLTextAreaElemen
418
420
  onFocus?: FocusEventHandler<HTMLTextAreaElement>;
419
421
  onValueChange?: (e: CustomEvent) => void;
420
422
  onToggleHelpText?: (e: CustomEvent) => void;
423
+ dataTestid?: string;
424
+ skipForwardTestid?: boolean;
421
425
  }
422
426
 
423
427
  declare interface IPktTextinput extends InputHTMLAttributes<HTMLInputElement> {
@@ -449,6 +453,8 @@ declare interface IPktTextinput extends InputHTMLAttributes<HTMLInputElement> {
449
453
  onFocus?: FocusEventHandler<HTMLInputElement>;
450
454
  onValueChange?: (e: CustomEvent) => void;
451
455
  onToggleHelpText?: (e: CustomEvent) => void;
456
+ dataTestid?: string;
457
+ skipForwardTestid?: boolean;
452
458
  }
453
459
 
454
460
  declare interface IRadio extends default_2.InputHTMLAttributes<HTMLInputElement> {