@norges-domstoler/dds-components 0.0.0-dev-20260605084306 → 0.0.0-dev-20260608090013
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 +17 -19
- package/dist/index.css.map +1 -1
- package/dist/index.js +27 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.css
CHANGED
|
@@ -535,11 +535,11 @@
|
|
|
535
535
|
overflow-y: auto;
|
|
536
536
|
}
|
|
537
537
|
.utilStyles_visibility-transition {
|
|
538
|
-
--dds-
|
|
538
|
+
--dds-visibility-transition: visibility 0.4s;
|
|
539
539
|
--dds-opacity-transition: opacity var(--dds-motion-surface);
|
|
540
540
|
opacity: 0;
|
|
541
541
|
@media (prefers-reduced-motion: no-preference) {
|
|
542
|
-
transition: var(--dds-
|
|
542
|
+
transition: var(--dds-visibility-transition), var(--dds-opacity-transition);
|
|
543
543
|
}
|
|
544
544
|
}
|
|
545
545
|
.utilStyles_visibility-transition--open {
|
|
@@ -1887,7 +1887,7 @@
|
|
|
1887
1887
|
}
|
|
1888
1888
|
}
|
|
1889
1889
|
.Button_button--xsmall {
|
|
1890
|
-
height: var(--dds-size-height-input-xsmall);
|
|
1890
|
+
min-height: var(--dds-size-height-input-xsmall);
|
|
1891
1891
|
padding-block: var(--dds-spacing-x0-125);
|
|
1892
1892
|
&.Button_just-text {
|
|
1893
1893
|
padding-inline: var(--dds-spacing-x0-5);
|
|
@@ -1910,7 +1910,7 @@
|
|
|
1910
1910
|
}
|
|
1911
1911
|
}
|
|
1912
1912
|
.Button_button--small {
|
|
1913
|
-
height: var(--dds-size-height-input-small);
|
|
1913
|
+
min-height: var(--dds-size-height-input-small);
|
|
1914
1914
|
padding-block: var(--dds-spacing-x0-25);
|
|
1915
1915
|
&.Button_just-text {
|
|
1916
1916
|
padding-inline: var(--dds-spacing-x0-75);
|
|
@@ -1933,7 +1933,7 @@
|
|
|
1933
1933
|
}
|
|
1934
1934
|
}
|
|
1935
1935
|
.Button_button--medium {
|
|
1936
|
-
height: var(--dds-size-height-input-medium);
|
|
1936
|
+
min-height: var(--dds-size-height-input-medium);
|
|
1937
1937
|
padding-block: var(--dds-spacing-x0-5);
|
|
1938
1938
|
&.Button_just-text {
|
|
1939
1939
|
padding-inline: var(--dds-spacing-x1);
|
|
@@ -1956,7 +1956,7 @@
|
|
|
1956
1956
|
}
|
|
1957
1957
|
}
|
|
1958
1958
|
.Button_button--large {
|
|
1959
|
-
height: var(--dds-size-height-input-large);
|
|
1959
|
+
min-height: var(--dds-size-height-input-large);
|
|
1960
1960
|
padding-block: var(--dds-spacing-x0-75);
|
|
1961
1961
|
&.Button_just-text {
|
|
1962
1962
|
padding-inline: var(--dds-spacing-x1-5);
|
|
@@ -2581,9 +2581,6 @@ input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
|
2581
2581
|
height: 0;
|
|
2582
2582
|
width: 0;
|
|
2583
2583
|
}
|
|
2584
|
-
.DateInput_clear-button--inactive {
|
|
2585
|
-
visibility: hidden;
|
|
2586
|
-
}
|
|
2587
2584
|
.DateInput_icon-wrapper--disabled,
|
|
2588
2585
|
.DateInput_popover-button:disabled {
|
|
2589
2586
|
color: var(--dds-color-icon-subtle);
|
|
@@ -2652,20 +2649,23 @@ input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
|
2652
2649
|
color: var(--dds-color-text-default);
|
|
2653
2650
|
}
|
|
2654
2651
|
}
|
|
2655
|
-
.DateInput_calendar__cell-button--
|
|
2656
|
-
|
|
2657
|
-
border-color: var(--dds-color-surface-action-selected);
|
|
2658
|
-
color: var(--dds-color-text-on-action);
|
|
2659
|
-
}
|
|
2660
|
-
.DateInput_calendar__cell-button--unavailable {
|
|
2652
|
+
.DateInput_calendar__cell-button--unavailable,
|
|
2653
|
+
.DateInput_calendar__cell-button--unavailable:hover {
|
|
2661
2654
|
background-color: var(--dds-color-surface-field-disabled);
|
|
2662
2655
|
border-color: var(--dds-color-surface-field-disabled);
|
|
2663
2656
|
color: var(--dds-color-text-subtle);
|
|
2664
2657
|
cursor: not-allowed;
|
|
2665
2658
|
text-decoration: line-through;
|
|
2666
2659
|
}
|
|
2660
|
+
.DateInput_calendar__cell-button--selected,
|
|
2661
|
+
.DateInput_calendar__cell-button--selected:hover {
|
|
2662
|
+
background-color: var(--dds-color-surface-action-selected);
|
|
2663
|
+
border-color: var(--dds-color-surface-action-selected);
|
|
2664
|
+
color: var(--dds-color-text-on-action);
|
|
2665
|
+
font-weight: var(--dds-font-weight-bold);
|
|
2666
|
+
}
|
|
2667
2667
|
.DateInput_calendar__cell-button--unavailable--today {
|
|
2668
|
-
border-color: var(--dds-color-
|
|
2668
|
+
border-color: var(--dds-color-border-default);
|
|
2669
2669
|
text-decoration: underline line-through;
|
|
2670
2670
|
}
|
|
2671
2671
|
|
|
@@ -3760,9 +3760,6 @@ input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
|
3760
3760
|
display: inline-grid;
|
|
3761
3761
|
align-content: center;
|
|
3762
3762
|
}
|
|
3763
|
-
.Pagination_list__item--hidden {
|
|
3764
|
-
visibility: hidden;
|
|
3765
|
-
}
|
|
3766
3763
|
.Pagination_indicators {
|
|
3767
3764
|
grid-auto-flow: column;
|
|
3768
3765
|
}
|
|
@@ -4376,6 +4373,7 @@ input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
|
4376
4373
|
cursor: pointer;
|
|
4377
4374
|
background-color: var(--dds-color-surface-default);
|
|
4378
4375
|
border: 1px solid;
|
|
4376
|
+
height: 100%;
|
|
4379
4377
|
@media (prefers-reduced-motion: no-preference) {
|
|
4380
4378
|
transition:
|
|
4381
4379
|
border-color var(--dds-motion-micro-state),
|