@juspay/svelte-ui-components 2.80.9 → 2.80.10
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.
|
@@ -982,6 +982,7 @@
|
|
|
982
982
|
flex-direction: column;
|
|
983
983
|
min-width: var(--drp-panel-min-width, 320px);
|
|
984
984
|
max-width: var(--drp-panel-max-width, 760px);
|
|
985
|
+
max-height: var(--drp-panel-max-height, calc(100dvh - 80px));
|
|
985
986
|
overflow: hidden;
|
|
986
987
|
}
|
|
987
988
|
|
|
@@ -998,6 +999,9 @@
|
|
|
998
999
|
.drp-panel-inner {
|
|
999
1000
|
display: flex;
|
|
1000
1001
|
flex-direction: row;
|
|
1002
|
+
flex: 1;
|
|
1003
|
+
min-height: 0;
|
|
1004
|
+
overflow-y: auto;
|
|
1001
1005
|
}
|
|
1002
1006
|
|
|
1003
1007
|
/* ── Sidebar ── */
|
|
@@ -1139,7 +1143,10 @@
|
|
|
1139
1143
|
--calendar-box-shadow: none;
|
|
1140
1144
|
--calendar-background: transparent;
|
|
1141
1145
|
--calendar-padding: 0;
|
|
1142
|
-
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
/* Suppress Calendar's own header in dual-month mode; single mode keeps it for navigation */
|
|
1149
|
+
:global(.drp-months-row .drp-calendar-embedded) {
|
|
1143
1150
|
--calendar-header-display: none;
|
|
1144
1151
|
}
|
|
1145
1152
|
|