@oslokommune/punkt-react 16.13.1 → 16.13.3
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,23 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [16.13.3](https://github.com/oslokommune/punkt/compare/16.13.2...16.13.3) (2026-05-08)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
Ingen
|
|
18
|
+
|
|
19
|
+
### Chores
|
|
20
|
+
Ingen
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
|
|
8
25
|
## [16.11.1](https://github.com/oslokommune/punkt/compare/16.11.0...16.11.1) (2026-04-30)
|
|
9
26
|
|
|
10
27
|
### ⚠ 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
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslokommune/punkt-react",
|
|
3
|
-
"version": "16.13.
|
|
3
|
+
"version": "16.13.3",
|
|
4
4
|
"description": "React komponentbibliotek til Punkt, et designsystem laget av Oslo Origo",
|
|
5
5
|
"homepage": "https://punkt.oslo.kommune.no",
|
|
6
6
|
"author": "Team Designsystem, Oslo Origo",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@lit-labs/ssr-dom-shim": "^1.2.1",
|
|
41
41
|
"@lit/react": "^1.0.7",
|
|
42
|
-
"@oslokommune/punkt-elements": "^16.13.
|
|
42
|
+
"@oslokommune/punkt-elements": "^16.13.2",
|
|
43
43
|
"classnames": "^2.5.1",
|
|
44
44
|
"prettier": "^3.3.3",
|
|
45
45
|
"react-hook-form": "^7.53.0"
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@eslint/compat": "^2.0.2",
|
|
50
50
|
"@eslint/eslintrc": "^3.3.3",
|
|
51
51
|
"@eslint/js": "^9.37.0",
|
|
52
|
-
"@oslokommune/punkt-assets": "^16.13.
|
|
53
|
-
"@oslokommune/punkt-css": "^16.13.
|
|
52
|
+
"@oslokommune/punkt-assets": "^16.13.2",
|
|
53
|
+
"@oslokommune/punkt-css": "^16.13.3",
|
|
54
54
|
"@testing-library/jest-dom": "^6.5.0",
|
|
55
55
|
"@testing-library/react": "^16.0.1",
|
|
56
56
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"url": "https://github.com/oslokommune/punkt/issues"
|
|
110
110
|
},
|
|
111
111
|
"license": "MIT",
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "0a14763e4a1d49a5c8dccf51dc0dfc08a6d05cb1"
|
|
113
113
|
}
|
|
@@ -5,8 +5,8 @@ import { ChangeEvent, createElement, forwardRef, HTMLProps, ReactNode } from 're
|
|
|
5
5
|
import { PktButton } from '../button/Button'
|
|
6
6
|
|
|
7
7
|
interface SearchSuggestion {
|
|
8
|
-
title?: string
|
|
9
|
-
text?: string
|
|
8
|
+
title?: string | ReactNode
|
|
9
|
+
text?: string | ReactNode
|
|
10
10
|
href?: string
|
|
11
11
|
onClick?: () => void
|
|
12
12
|
}
|