@helsenorge/designsystem-react 4.2.0 → 4.2.1
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 +16 -3
- package/components/Table/styles.module.scss +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [4.2.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv4.1.1&targetVersion=GTv4.2.0) (2023-06-22)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- helpbubble støtter linktarget for å kunne åpne linker i ny fane
|
|
6
|
+
([0ead627](https://github.com/helsenorge/designsystem/commit/0ead627d761bce7a67d1165c633f415a73d6b43e)), closes
|
|
7
|
+
[#300167](https://github.com/helsenorge/designsystem/issues/300167)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- tabell som har plass i bredden blir ikke plassert til venstre unødvendig
|
|
12
|
+
([ffbacbb](https://github.com/helsenorge/designsystem/commit/ffbacbb5ba58fceb5b2a47ef7a5148172bdd49e4))
|
|
13
|
+
|
|
1
14
|
## [4.1.1](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv4.1.0&targetVersion=GTv4.1.1) (2023-06-21)
|
|
2
15
|
|
|
3
16
|
### Bug Fixes
|
|
@@ -752,12 +765,12 @@
|
|
|
752
765
|
|
|
753
766
|
### Bug Fixes
|
|
754
767
|
|
|
755
|
-
- økt kontrast på understreking av lenker
|
|
756
|
-
([50b7fa4](https://github.com/helsenorge/designsystem/commit/50b7fa47fb44cb7d75fb877bd53e2309b35e1e21)), closes
|
|
757
|
-
[#229049](https://github.com/helsenorge/designsystem/issues/229049)
|
|
758
768
|
- panel har avstand fra tittel til badge
|
|
759
769
|
([09034c4](https://github.com/helsenorge/designsystem/commit/09034c4844408c7cfe8f65d7a1a0d82a7828c2ef)), closes
|
|
760
770
|
[#282359](https://github.com/helsenorge/designsystem/issues/282359)
|
|
771
|
+
- økt kontrast på understreking av lenker
|
|
772
|
+
([50b7fa4](https://github.com/helsenorge/designsystem/commit/50b7fa47fb44cb7d75fb877bd53e2309b35e1e21)), closes
|
|
773
|
+
[#229049](https://github.com/helsenorge/designsystem/issues/229049)
|
|
761
774
|
|
|
762
775
|
## [1.2.2](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv1.2.1&targetVersion=GTv1.2.2) (2022-08-31)
|
|
763
776
|
|
|
@@ -17,10 +17,6 @@ table .table-body .table-row {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
@mixin block {
|
|
20
|
-
.table__cell-expander {
|
|
21
|
-
display: none;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
20
|
.table__head {
|
|
25
21
|
display: none;
|
|
26
22
|
}
|
|
@@ -35,6 +31,10 @@ table .table-body .table-row {
|
|
|
35
31
|
display: block;
|
|
36
32
|
}
|
|
37
33
|
|
|
34
|
+
.table__cell-expander {
|
|
35
|
+
display: none;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
38
|
.table-row {
|
|
39
39
|
clear: both;
|
|
40
40
|
}
|