@avenue-ticketing/ui 0.8.0 → 0.10.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/react/datetime-picker.js +1 -4
- package/dist/react/datetime-picker.js.map +1 -1
- package/dist/react/dialog.js +1 -1
- package/dist/react/dialog.js.map +1 -1
- package/dist/react/dropdown.d.ts +4 -0
- package/dist/react/dropdown.js +106 -10
- package/dist/react/dropdown.js.map +1 -1
- package/dist/react/popover.js +1 -4
- package/dist/react/popover.js.map +1 -1
- package/dist/react/select.d.ts +2 -0
- package/dist/react/select.js +92 -6
- package/dist/react/select.js.map +1 -1
- package/dist/react/sheet.js +1 -1
- package/dist/react/sheet.js.map +1 -1
- package/dist/react/table-pagination.js +92 -6
- package/dist/react/table-pagination.js.map +1 -1
- package/dist/react/table-view/column-menu.js +92 -6
- package/dist/react/table-view/column-menu.js.map +1 -1
- package/dist/react/table-view/index.js +92 -6
- package/dist/react/table-view/index.js.map +1 -1
- package/dist/react/tooltip.js +0 -8
- package/dist/react/tooltip.js.map +1 -1
- package/package.json +1 -1
|
@@ -4771,7 +4771,7 @@ function PopoverMobileBottomSheetPortal({
|
|
|
4771
4771
|
"div",
|
|
4772
4772
|
{
|
|
4773
4773
|
className: cn(
|
|
4774
|
-
"fixed inset-0 bg-black/40 dark:bg-
|
|
4774
|
+
"fixed inset-0 bg-black/40 dark:bg-primary/4",
|
|
4775
4775
|
isAnimating ? "opacity-100" : "opacity-0"
|
|
4776
4776
|
),
|
|
4777
4777
|
style: {
|
|
@@ -4907,9 +4907,6 @@ function computePosition(trigger, popover, side, align, offset, viewportPadding)
|
|
|
4907
4907
|
left = flippedLeft;
|
|
4908
4908
|
}
|
|
4909
4909
|
}
|
|
4910
|
-
const layoutHeight = maxHeight ?? contentHeight;
|
|
4911
|
-
left = Math.max(pad, Math.min(left, vw - pw - pad));
|
|
4912
|
-
top = Math.max(pad, Math.min(top, vh - layoutHeight - pad));
|
|
4913
4910
|
return { top, left, side: effectiveSide, maxHeight };
|
|
4914
4911
|
}
|
|
4915
4912
|
var ARROW_SIZE = 6;
|