@oslokommune/punkt-react 3.3.1 → 3.4.1
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 +37 -0
- package/dist/button/Button.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/punkt-react.es.js +241 -240
- package/dist/punkt-react.umd.js +9 -9
- package/package.json +4 -2
- package/src/components/alert/Alert.tsx +1 -0
- package/src/components/button/Button.tsx +35 -30
- package/src/components/header/Header.tsx +1 -2
- package/src/components/index.ts +1 -1
- package/src/components/linkcard/LinkCard.test.tsx +4 -4
- package/src/components/messagebox/Messagebox.tsx +1 -1
- package/src/components/radioGroup/RadioGroup.tsx +1 -0
- package/src/components/table/Table.test.tsx +1 -1
- package/src/components/table/Table.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,43 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [3.4.1](https://github.com/oslokommune/punkt/compare/3.4.0...3.4.1) (2023-05-04)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* [828](https://github.com/oslokommune/punkt/issues/828) Fiks lint i react.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [3.4.0](https://github.com/oslokommune/punkt/compare/3.3.1...3.4.0) (2023-05-04)
|
|
27
|
+
|
|
28
|
+
### ⚠ BREAKING CHANGES
|
|
29
|
+
Ingen
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
* [825](https://github.com/oslokommune/punkt/issues/825) Legg til forward ref på React-knapp. Legger til forward ref på React-knapp for bedre tilgjengelighet og funksjonalitet
|
|
33
|
+
Installerer og konfigurerer to nye biblioteker for linting for å forbedre kodekvaliteten og vedlikeholdet
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
Ingen
|
|
38
|
+
|
|
39
|
+
### Chores
|
|
40
|
+
Ingen
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
|
|
8
45
|
## [3.2.1](https://github.com/oslokommune/punkt/compare/3.2.0...3.2.1) (2023-04-20)
|
|
9
46
|
|
|
10
47
|
### ⚠ BREAKING CHANGES
|
package/dist/button/Button.d.ts
CHANGED
|
@@ -9,4 +9,4 @@ export interface IPktButton extends React.ButtonHTMLAttributes<HTMLButtonElement
|
|
|
9
9
|
state?: 'normal' | 'focus' | 'hover' | 'active';
|
|
10
10
|
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
11
11
|
}
|
|
12
|
-
export declare const PktButton: React.
|
|
12
|
+
export declare const PktButton: React.ForwardRefExoticComponent<IPktButton & React.RefAttributes<HTMLButtonElement>>;
|
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';
|