@telepix-lab/telepix-ui 0.4.1 → 0.4.2
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/cjs/client.js +1 -1
- package/dist/esm/client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/client.js
CHANGED
|
@@ -12401,7 +12401,7 @@ const SelectTrigger = ({ placeholder, variant = "outline", size = "regular", ico
|
|
|
12401
12401
|
};
|
|
12402
12402
|
const SelectContent = ({ children, viewportClassName, ...rest }) => {
|
|
12403
12403
|
const { className, position, sideOffset, ...otherProps } = rest;
|
|
12404
|
-
return (jsxRuntime.jsx(Portal$1, { children: jsxRuntime.jsx(Content2$1, { position: "popper", sideOffset: 7, className: cn("p-2 min-w-[var(--radix-select-trigger-width)] border border-border-overlay rounded-lg bg-page-l1 shadow-medium", className), ...otherProps, children: jsxRuntime.jsx(Viewport, { className: cn("flex flex-col gap-1", viewportClassName), children: children }) }) }));
|
|
12404
|
+
return (jsxRuntime.jsx(Portal$1, { children: jsxRuntime.jsx(Content2$1, { position: "popper", sideOffset: 7, className: cn("p-2 min-w-[var(--radix-select-trigger-width)] border border-border-overlay rounded-lg bg-page-l1 shadow-medium", className), asChild: true, ...otherProps, children: jsxRuntime.jsx("div", { className: "z-10", children: jsxRuntime.jsx(Viewport, { className: cn("flex flex-col gap-1", viewportClassName), children: children }) }) }) }));
|
|
12405
12405
|
};
|
|
12406
12406
|
const SelectGroup = Group;
|
|
12407
12407
|
const SelectLabel = (props) => {
|
package/dist/esm/client.js
CHANGED
|
@@ -12381,7 +12381,7 @@ const SelectTrigger = ({ placeholder, variant = "outline", size = "regular", ico
|
|
|
12381
12381
|
};
|
|
12382
12382
|
const SelectContent = ({ children, viewportClassName, ...rest }) => {
|
|
12383
12383
|
const { className, position, sideOffset, ...otherProps } = rest;
|
|
12384
|
-
return (jsx(Portal$1, { children: jsx(Content2$1, { position: "popper", sideOffset: 7, className: cn("p-2 min-w-[var(--radix-select-trigger-width)] border border-border-overlay rounded-lg bg-page-l1 shadow-medium", className), ...otherProps, children: jsx(Viewport, { className: cn("flex flex-col gap-1", viewportClassName), children: children }) }) }));
|
|
12384
|
+
return (jsx(Portal$1, { children: jsx(Content2$1, { position: "popper", sideOffset: 7, className: cn("p-2 min-w-[var(--radix-select-trigger-width)] border border-border-overlay rounded-lg bg-page-l1 shadow-medium", className), asChild: true, ...otherProps, children: jsx("div", { className: "z-10", children: jsx(Viewport, { className: cn("flex flex-col gap-1", viewportClassName), children: children }) }) }) }));
|
|
12385
12385
|
};
|
|
12386
12386
|
const SelectGroup = Group;
|
|
12387
12387
|
const SelectLabel = (props) => {
|