@oslokommune/punkt-react 13.1.0 → 13.1.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 +18 -0
- package/dist/index.d.ts +1 -0
- package/package.json +4 -4
- package/src/components/datepicker/Datepicker.tsx +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [13.1.1](https://github.com/oslokommune/punkt/compare/13.1.0...13.1.1) (2025-07-09)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* Legg til tagText i Combobox (#2695).
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
8
26
|
## [13.1.0](https://github.com/oslokommune/punkt/compare/13.0.4...13.1.0) (2025-07-08)
|
|
9
27
|
|
|
10
28
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -199,6 +199,7 @@ export declare interface IPktDatepicker extends InputHTMLAttributes<HTMLInputEle
|
|
|
199
199
|
requiredText?: string;
|
|
200
200
|
optionalTag?: boolean;
|
|
201
201
|
optionalText?: string;
|
|
202
|
+
tagText?: string;
|
|
202
203
|
useWrapper?: boolean;
|
|
203
204
|
helptext?: string | ReactNode | ReactNode[];
|
|
204
205
|
helptextDropdown?: string | ReactNode | ReactNode[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslokommune/punkt-react",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.2",
|
|
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",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@lit-labs/ssr-dom-shim": "^1.2.1",
|
|
40
40
|
"@lit/react": "^1.0.7",
|
|
41
|
-
"@oslokommune/punkt-elements": "^13.1.
|
|
41
|
+
"@oslokommune/punkt-elements": "^13.1.2",
|
|
42
42
|
"angular-html-parser": "^6.0.2",
|
|
43
43
|
"html-format": "^1.1.7",
|
|
44
44
|
"prettier": "^3.3.3",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
|
|
51
51
|
"@oslokommune/punkt-assets": "^13.0.0",
|
|
52
|
-
"@oslokommune/punkt-css": "^13.
|
|
52
|
+
"@oslokommune/punkt-css": "^13.1.2",
|
|
53
53
|
"@testing-library/jest-dom": "^6.5.0",
|
|
54
54
|
"@testing-library/react": "^16.0.1",
|
|
55
55
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"url": "https://github.com/oslokommune/punkt/issues"
|
|
113
113
|
},
|
|
114
114
|
"license": "MIT",
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "cb98f3d45e891775f449eb4b78b3ae8cab40725f"
|
|
116
116
|
}
|
|
@@ -34,6 +34,7 @@ export interface IPktDatepicker extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
34
34
|
requiredText?: string
|
|
35
35
|
optionalTag?: boolean
|
|
36
36
|
optionalText?: string
|
|
37
|
+
tagText?: string
|
|
37
38
|
useWrapper?: boolean
|
|
38
39
|
helptext?: string | ReactNode | ReactNode[]
|
|
39
40
|
helptextDropdown?: string | ReactNode | ReactNode[]
|