@oslokommune/punkt-react 0.22.2 → 0.23.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 +19 -0
- package/README.md +0 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.23.0](https://github.com/oslokommune/punkt/compare/v0.22.4...v0.23.0) (2023-02-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* build!: Publisere Punkt v1 igjen :rocket: (#678) ([cb3bf71](https://github.com/oslokommune/punkt/commit/cb3bf7104db6507a5ce4d45982141c1c2eba3659)), closes [#678](https://github.com/oslokommune/punkt/issues/678)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
* Helt nytt oppsett for Punkt v1, nytt AWS-oppsett, nye domener, med å ta i bruke lerna for monorepo, nye GH workflow, og ny måte å kjøre oppgaver på.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [0.22.4](https://github.com/oslokommune/punkt/compare/v0.22.3...v0.22.4) (2023-02-27)
|
|
21
|
+
|
|
22
|
+
**Note:** Version bump only for package @oslokommune/punkt-react
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.22.2](https://github.com/oslokommune/punkt/compare/v0.22.1...v0.22.2) (2023-02-26)
|
|
7
26
|
|
|
8
27
|
|
package/README.md
CHANGED
|
@@ -7,7 +7,6 @@ Dette repoet inneholder Punkt sine UI-komponenter for React. Komponentene er lag
|
|
|
7
7
|
Se punkt-react i bruk i en [Vite-app med React og TypeScript](https://stackblitz.com/edit/vitejs-vite-ep2eyk?file=src/App.tsx).
|
|
8
8
|
|
|
9
9
|
## 📝 Forutsetninger
|
|
10
|
-
|
|
11
10
|
Peer dependencies:
|
|
12
11
|
- nodejs `16.15`
|
|
13
12
|
- react `>= 18`
|
|
@@ -17,13 +16,11 @@ Peer dependencies:
|
|
|
17
16
|
## 🚀 Kom i gang - npm
|
|
18
17
|
|
|
19
18
|
### 1. Installer komponentbiblioteket
|
|
20
|
-
|
|
21
19
|
```sh
|
|
22
20
|
npm add @oslokommune/punkt-react
|
|
23
21
|
```
|
|
24
22
|
|
|
25
23
|
### 2. Importer komponentene
|
|
26
|
-
|
|
27
24
|
```js
|
|
28
25
|
// src/App.tsx
|
|
29
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslokommune/punkt-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
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",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"react-dom": "^18.2.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@oslokommune/punkt-assets": "^0.
|
|
38
|
-
"@oslokommune/punkt-css": "^0.
|
|
37
|
+
"@oslokommune/punkt-assets": "^0.23.0",
|
|
38
|
+
"@oslokommune/punkt-css": "^0.23.0",
|
|
39
39
|
"@testing-library/react": "^14.0.0",
|
|
40
40
|
"@types/jest": "^29.4.0",
|
|
41
41
|
"@types/node": "^18.14.1",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
"vite-plugin-dts": "^2.0.2"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"@oslokommune/punkt-assets": ">=0.
|
|
58
|
-
"@oslokommune/punkt-css": ">=0.
|
|
57
|
+
"@oslokommune/punkt-assets": ">=1.0.0",
|
|
58
|
+
"@oslokommune/punkt-css": ">=1.0.0",
|
|
59
59
|
"react": ">=18.2.0",
|
|
60
60
|
"react-dom": ">=18.2.0"
|
|
61
61
|
},
|
|
62
62
|
"engines": {
|
|
63
|
-
"node": ">=16.
|
|
63
|
+
"node": ">=16.0.0"
|
|
64
64
|
},
|
|
65
65
|
"private": false,
|
|
66
66
|
"publishConfig": {
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"url": "https://github.com/oslokommune/punkt/issues"
|
|
85
85
|
},
|
|
86
86
|
"license": "MIT",
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "ef83c8dadbc152bb52668dcb688f65b2431a94aa"
|
|
88
88
|
}
|