@oslokommune/punkt-react 2.0.1 → 2.0.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 +18 -0
- package/package.json +6 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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
|
+
## [2.0.3](https://github.com/oslokommune/punkt/compare/v2.0.2...v2.0.3) (2023-03-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **css:** [#703](https://github.com/oslokommune/punkt/issues/703) Rett feil på button icon-only ([#704](https://github.com/oslokommune/punkt/issues/704)) ([504daf9](https://github.com/oslokommune/punkt/commit/504daf9b71136742dac8f0c5300417b0f2ccbc91))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [2.0.2](https://github.com/oslokommune/punkt/compare/v2.0.1...v2.0.2) (2023-03-07)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **react:** Rett feil dependencies i React-pakken ([#698](https://github.com/oslokommune/punkt/issues/698)) ([0fc3093](https://github.com/oslokommune/punkt/commit/0fc309338bb511e119e2982cd04ef8a0a9fae09a))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [2.0.1](https://github.com/oslokommune/punkt/compare/v2.0.0...v2.0.1) (2023-03-07)
|
|
7
25
|
|
|
8
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslokommune/punkt-react",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.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",
|
|
@@ -27,15 +27,11 @@
|
|
|
27
27
|
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
|
|
28
28
|
"lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'",
|
|
29
29
|
"format": "prettier --write src//**/*.{ts,tsx,css} --config ./.prettierrc",
|
|
30
|
-
"preview": "vite preview"
|
|
31
|
-
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"react": "^18.2.0",
|
|
34
|
-
"react-dom": "^18.2.0"
|
|
30
|
+
"preview": "vite preview --outDir dist-app"
|
|
35
31
|
},
|
|
36
32
|
"devDependencies": {
|
|
37
33
|
"@oslokommune/punkt-assets": "^2.0.1",
|
|
38
|
-
"@oslokommune/punkt-css": "^2.0.
|
|
34
|
+
"@oslokommune/punkt-css": "^2.0.3",
|
|
39
35
|
"@testing-library/react": "^14.0.0",
|
|
40
36
|
"@types/jest": "^29.4.0",
|
|
41
37
|
"@types/node": "^18.14.1",
|
|
@@ -56,8 +52,8 @@
|
|
|
56
52
|
"peerDependencies": {
|
|
57
53
|
"@oslokommune/punkt-assets": ">=1.0.0",
|
|
58
54
|
"@oslokommune/punkt-css": ">=1.0.0",
|
|
59
|
-
"react": ">=18.
|
|
60
|
-
"react-dom": ">=18.
|
|
55
|
+
"react": ">=18.0.0",
|
|
56
|
+
"react-dom": ">=18.0.0"
|
|
61
57
|
},
|
|
62
58
|
"engines": {
|
|
63
59
|
"node": ">=16.0.0"
|
|
@@ -84,5 +80,5 @@
|
|
|
84
80
|
"url": "https://github.com/oslokommune/punkt/issues"
|
|
85
81
|
},
|
|
86
82
|
"license": "MIT",
|
|
87
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "fd6b9eca772920f7333e212c6f3f1a54410f248d"
|
|
88
84
|
}
|