@oslokommune/punkt-react 16.13.2 → 16.14.0
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 +35 -0
- package/dist/index.d.ts +2 -2
- package/dist/punkt-react.es.js +1120 -1066
- package/dist/punkt-react.umd.js +235 -234
- package/package.json +4 -4
- package/src/components/inputwrapper/InputWrapper.tsx +4 -1
- package/src/components/searchinput/SearchInput.tsx +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,41 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [16.14.0](https://github.com/oslokommune/punkt/compare/16.13.3...16.14.0) (2026-05-08)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
* Differensiere focus-visible mellom mus/touch og tastatur/tab (#3460).
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
Ingen
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [16.13.3](https://github.com/oslokommune/punkt/compare/16.13.2...16.13.3) (2026-05-08)
|
|
27
|
+
|
|
28
|
+
### ⚠ BREAKING CHANGES
|
|
29
|
+
Ingen
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
Ingen
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
Ingen
|
|
36
|
+
|
|
37
|
+
### Chores
|
|
38
|
+
Ingen
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
|
|
8
43
|
## [16.11.1](https://github.com/oslokommune/punkt/compare/16.11.0...16.11.1) (2026-04-30)
|
|
9
44
|
|
|
10
45
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -1152,8 +1152,8 @@ declare interface Representing {
|
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
1154
|
declare interface SearchSuggestion {
|
|
1155
|
-
title?: string;
|
|
1156
|
-
text?: string;
|
|
1155
|
+
title?: string | ReactNode;
|
|
1156
|
+
text?: string | ReactNode;
|
|
1157
1157
|
href?: string;
|
|
1158
1158
|
onClick?: () => void;
|
|
1159
1159
|
}
|