@facter/ds-core 1.33.5 → 1.33.6
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.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/index.d.mts +0 -2788
- package/dist/index.d.ts +0 -2788
- package/dist/themes/index.d.mts +0 -62
- package/dist/themes/index.d.ts +0 -62
- package/dist/themes/tailwind-preset.d.mts +0 -19
- package/dist/themes/tailwind-preset.d.ts +0 -19
package/dist/index.js
CHANGED
|
@@ -652,12 +652,13 @@ var Select = React10__namespace.forwardRef(
|
|
|
652
652
|
SelectPrimitive__namespace.Content,
|
|
653
653
|
{
|
|
654
654
|
className: cn(
|
|
655
|
-
"relative z-50
|
|
655
|
+
"relative z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md",
|
|
656
656
|
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2"
|
|
657
657
|
),
|
|
658
658
|
position: "popper",
|
|
659
659
|
sideOffset: 4,
|
|
660
|
-
|
|
660
|
+
style: { maxHeight: "var(--radix-select-content-available-height, 300px)" },
|
|
661
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Viewport, { className: "p-1", style: { maxHeight: "inherit" }, children })
|
|
661
662
|
}
|
|
662
663
|
) })
|
|
663
664
|
] });
|