@norges-domstoler/dds-components 19.0.0 → 19.2.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/dist/index.css +15 -3
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +20 -3
- package/dist/index.d.ts +20 -3
- package/dist/index.js +80 -21
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +113 -50
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.css
CHANGED
|
@@ -3557,7 +3557,6 @@
|
|
|
3557
3557
|
cursor: pointer;
|
|
3558
3558
|
border-bottom: 2px solid transparent;
|
|
3559
3559
|
color: var(--dds-color-text-medium);
|
|
3560
|
-
padding: var(--dds-spacing-x0-5);
|
|
3561
3560
|
background: var(--dds-color-surface-default);
|
|
3562
3561
|
border-top-left-radius: var(--dds-border-radius-button);
|
|
3563
3562
|
border-top-right-radius: var(--dds-border-radius-button);
|
|
@@ -3574,13 +3573,26 @@
|
|
|
3574
3573
|
background-color: var(--dds-color-surface-hover-default);
|
|
3575
3574
|
}
|
|
3576
3575
|
}
|
|
3576
|
+
.Tabs_tab--medium--row {
|
|
3577
|
+
padding: var(--dds-spacing-x0-75) var(--dds-spacing-x1) var(--dds-spacing-x0-5);
|
|
3578
|
+
gap: var(--dds-spacing-x0-5);
|
|
3579
|
+
}
|
|
3580
|
+
.Tabs_tab--small--row {
|
|
3581
|
+
padding: var(--dds-spacing-x0-25) var(--dds-spacing-x0-75);
|
|
3582
|
+
gap: var(--dds-spacing-x0-125);
|
|
3583
|
+
}
|
|
3584
|
+
.Tabs_tab--medium--column {
|
|
3585
|
+
padding: var(--dds-spacing-x0-5) var(--dds-spacing-x1);
|
|
3586
|
+
gap: var(--dds-spacing-x0-25);
|
|
3587
|
+
}
|
|
3588
|
+
.Tabs_tab--small--column {
|
|
3589
|
+
padding: var(--dds-spacing-x0-25) var(--dds-spacing-x0-75);
|
|
3590
|
+
}
|
|
3577
3591
|
.Tabs_tab--row {
|
|
3578
3592
|
flex-direction: row;
|
|
3579
|
-
gap: var(--dds-spacing-x0-5);
|
|
3580
3593
|
}
|
|
3581
3594
|
.Tabs_tab--column {
|
|
3582
3595
|
flex-direction: column;
|
|
3583
|
-
gap: var(--dds-spacing-x0-25);
|
|
3584
3596
|
}
|
|
3585
3597
|
.Tabs_tab--active {
|
|
3586
3598
|
color: var(--dds-color-text-default);
|