@norges-domstoler/dds-components 20.0.0 → 20.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 +20 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +13 -4
- package/dist/index.d.ts +13 -4
- package/dist/index.js +43 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +68 -32
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -444,6 +444,22 @@
|
|
|
444
444
|
.utilStyles_invisible {
|
|
445
445
|
visibility: hidden;
|
|
446
446
|
}
|
|
447
|
+
.utilStyles_center-absolute {
|
|
448
|
+
position: absolute;
|
|
449
|
+
left: 50%;
|
|
450
|
+
top: 50%;
|
|
451
|
+
transform: translate(-50%, -50%);
|
|
452
|
+
}
|
|
453
|
+
.utilStyles_center-absolute-y {
|
|
454
|
+
position: absolute;
|
|
455
|
+
top: 50%;
|
|
456
|
+
transform: translate(0, -50%);
|
|
457
|
+
}
|
|
458
|
+
.utilStyles_center-absolute-x {
|
|
459
|
+
position: absolute;
|
|
460
|
+
left: 50%;
|
|
461
|
+
transform: translate(-50%, 0);
|
|
462
|
+
}
|
|
447
463
|
|
|
448
464
|
/* src/components/helpers/Backdrop/Backdrop.module.css */
|
|
449
465
|
.Backdrop_backdrop {
|
|
@@ -1122,6 +1138,10 @@
|
|
|
1122
1138
|
align-items: center;
|
|
1123
1139
|
font-size: calc(var(--dds-font-lineheight-x1) * 1em);
|
|
1124
1140
|
}
|
|
1141
|
+
.OverflowMenu_button-loading {
|
|
1142
|
+
cursor: not-allowed;
|
|
1143
|
+
position: relative;
|
|
1144
|
+
}
|
|
1125
1145
|
.OverflowMenu_divider {
|
|
1126
1146
|
margin-inline: var(--dds-spacing-x0-5);
|
|
1127
1147
|
margin-block: var(--dds-spacing-x0);
|