@oslokommune/punkt-css 11.9.1 → 11.9.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 +36 -0
- package/dist/css/pkt-base.css +1 -1
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt-elements.css +33 -97
- package/dist/css/pkt-elements.min.css +1 -1
- package/dist/css/pkt.css +34 -98
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/base/_defaults.scss +1 -1
- package/dist/scss/elements/_button.scss +20 -61
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,42 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [11.9.3](https://github.com/oslokommune/punkt/compare/11.9.2...11.9.3) (2024-03-14)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* PktButton isLoading viser ikke spinner når `label-only` (#1583).
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [11.9.2](https://github.com/oslokommune/punkt/compare/11.9.1...11.9.2) (2024-03-12)
|
|
27
|
+
|
|
28
|
+
### ⚠ BREAKING CHANGES
|
|
29
|
+
Ingen
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
Ingen
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
* I defaults skal overflow-y være auto, ikke scroll (#1582).
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Chores
|
|
39
|
+
Ingen
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
|
|
8
44
|
## [11.9.1](https://github.com/oslokommune/punkt/compare/11.9.0...11.9.1) (2024-03-12)
|
|
9
45
|
|
|
10
46
|
### ⚠ BREAKING CHANGES
|
package/dist/css/pkt-base.css
CHANGED
|
@@ -1336,7 +1336,7 @@ body {
|
|
|
1336
1336
|
-webkit-font-smoothing: antialiased;
|
|
1337
1337
|
-moz-osx-font-smoothing: grayscale;
|
|
1338
1338
|
min-height: 100vh;
|
|
1339
|
-
overflow-y:
|
|
1339
|
+
overflow-y: auto;
|
|
1340
1340
|
line-height: 1.5;
|
|
1341
1341
|
text-rendering: optimizeSpeed;
|
|
1342
1342
|
scroll-behavior: smooth;
|