@oslokommune/punkt-react 3.4.0 → 3.4.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
+ ## [3.4.2](https://github.com/oslokommune/punkt/compare/3.4.1...3.4.2) (2023-05-04)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ Ingen
15
+
16
+ ### Bug Fixes
17
+ * [825](https://github.com/oslokommune/punkt/issues/825) Ref og tester i button og alert.
18
+
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
26
+ ## [3.4.1](https://github.com/oslokommune/punkt/compare/3.4.0...3.4.1) (2023-05-04)
27
+
28
+ ### ⚠ BREAKING CHANGES
29
+ Ingen
30
+
31
+ ### Features
32
+ Ingen
33
+
34
+ ### Bug Fixes
35
+ * [828](https://github.com/oslokommune/punkt/issues/828) Fiks lint i react.
36
+
37
+
38
+ ### Chores
39
+ Ingen
40
+
41
+ ---
42
+
43
+
8
44
  ## [3.4.0](https://github.com/oslokommune/punkt/compare/3.3.1...3.4.0) (2023-05-04)
9
45
 
10
46
  ### ⚠ BREAKING CHANGES
@@ -7,4 +7,4 @@ export interface IPktAlert extends React.HTMLAttributes<HTMLDivElement> {
7
7
  date?: string;
8
8
  ariaLive?: 'off' | 'polite' | 'assertive';
9
9
  }
10
- export declare const PktAlert: React.FC<IPktAlert>;
10
+ export declare const PktAlert: React.ForwardRefExoticComponent<IPktAlert & React.RefAttributes<HTMLDivElement>>;
package/dist/index.d.ts CHANGED
@@ -4,9 +4,9 @@ export { PktHeader } from './header/Header';
4
4
  export { PktInput } from './input/Input';
5
5
  export { PktLinkCard } from './linkcard/LinkCard';
6
6
  export { PktMessagebox } from './messagebox/Messagebox';
7
- export { PktTextarea } from './textarea/Textarea';
8
7
  export { PktRadio } from './radio/Radio';
9
8
  export { PktRadioGroup } from './radioGroup/RadioGroup';
10
9
  export { PktTable } from './table/Table';
11
10
  export { PktTableData } from './table/TableData';
12
11
  export { PktTableHeader } from './table/TableHeader';
12
+ export { PktTextarea } from './textarea/Textarea';