@norges-domstoler/dds-components 0.0.0-dev-20260605084306 → 0.0.0-dev-20260608085907
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 +12 -15
- 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 {
|
|
@@ -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
|
}
|