@proj-airi/ui 0.9.0-alpha.2 → 0.9.0-alpha.3
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/package.json
CHANGED
|
@@ -71,9 +71,11 @@ function toDisplayValue(value: T): string {
|
|
|
71
71
|
:side-offset="4"
|
|
72
72
|
:avoid-collisions="true"
|
|
73
73
|
:class="[
|
|
74
|
-
// NOTICE:
|
|
75
|
-
//
|
|
76
|
-
|
|
74
|
+
// NOTICE: DialogContent/DialogOverlay use z-[9999], and DrawerContent uses z-[1000].
|
|
75
|
+
// ComboboxContent must render above these layers so that dropdowns inside
|
|
76
|
+
// Dialog/Drawer are not hidden behind the overlay or dismissed unexpectedly.
|
|
77
|
+
// Read more at: https://github.com/moeru-ai/airi/issues/1136
|
|
78
|
+
'z-[10010]',
|
|
77
79
|
'w-full min-w-[160px] overflow-hidden rounded-xl shadow-sm border will-change-[opacity,transform]',
|
|
78
80
|
'data-[side=top]:animate-slideDownAndFade data-[side=right]:animate-slideLeftAndFade data-[side=bottom]:animate-slideUpAndFade data-[side=left]:animate-slideRightAndFade',
|
|
79
81
|
'bg-white dark:bg-neutral-900',
|