@oslokommune/punkt-react 12.3.13 → 12.3.15
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 +36 -0
- package/dist/index.d.ts +2 -2
- package/dist/punkt-react.es.js +1248 -1240
- package/dist/punkt-react.umd.js +86 -83
- package/package.json +3 -3
- package/src/components/card/Card.tsx +2 -2
- package/src/components/preview/Preview.tsx +7 -5
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.15](https://github.com/oslokommune/punkt/compare/12.3.14...12.3.15) (2024-10-18)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* En liten Komponentbygger-endring (#1959).
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [12.3.14](https://github.com/oslokommune/punkt/compare/12.3.13...12.3.14) (2024-10-15)
|
|
27
|
+
|
|
28
|
+
### ⚠ BREAKING CHANGES
|
|
29
|
+
Ingen
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
Ingen
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
* PktDatepicker, Fiks datoer langt tilbake i tid (#1957).
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Chores
|
|
39
|
+
Ingen
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
|
|
8
44
|
## [12.3.13](https://github.com/oslokommune/punkt/compare/12.3.12...12.3.13) (2024-10-15)
|
|
9
45
|
|
|
10
46
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -113,11 +113,11 @@ declare interface IPktCard extends PktElType {
|
|
|
113
113
|
subheading?: string;
|
|
114
114
|
tags?: (Omit<IPktTag, 'closeTag'> & {
|
|
115
115
|
text: string;
|
|
116
|
-
})[];
|
|
116
|
+
})[] | string;
|
|
117
117
|
image?: {
|
|
118
118
|
src: string;
|
|
119
119
|
alt: string;
|
|
120
|
-
};
|
|
120
|
+
} | string;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
declare interface IPktCheckbox extends default_2.InputHTMLAttributes<HTMLInputElement> {
|