@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@proj-airi/ui",
3
3
  "type": "module",
4
- "version": "0.9.0-alpha.2",
4
+ "version": "0.9.0-alpha.3",
5
5
  "description": "A collection of UI components that used by Project AIRI",
6
6
  "author": {
7
7
  "name": "Moeru AI Project AIRI Team",
@@ -71,9 +71,11 @@ function toDisplayValue(value: T): string {
71
71
  :side-offset="4"
72
72
  :avoid-collisions="true"
73
73
  :class="[
74
- // NOTICE: DrawerContent is z-[1000], here we choose `1010`
75
- // Read more at: https://github.com/moeru-ai/airi/blob/0fddd043f2b213f441f3998c52dca1d24acb8405/packages/stage-ui/src/components/scenarios/dialogs/audio-input/hearing-config-dialog.vue#L62C8-L62C21
76
- 'z-[1010]',
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',