@fileverse/ui 4.1.7-patch-1 → 4.1.7-patch-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/index.es.d.ts +3 -1
- package/dist/index.es.js +13 -5
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
|
@@ -620,7 +620,9 @@ export declare interface SegmentedControlProps extends default_2.AllHTMLAttribut
|
|
|
620
620
|
|
|
621
621
|
export declare const Select: React_2.FC<SelectPrimitive.SelectProps>;
|
|
622
622
|
|
|
623
|
-
export declare const SelectContent: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> &
|
|
623
|
+
export declare const SelectContent: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
624
|
+
showScrollButtons?: boolean;
|
|
625
|
+
} & React_2.RefAttributes<HTMLDivElement>>;
|
|
624
626
|
|
|
625
627
|
export declare const SelectGroup: React_2.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
626
628
|
|
package/dist/index.es.js
CHANGED
|
@@ -42992,10 +42992,18 @@ const Gy = y.forwardRef(({ className: e, ...t }, n) => /* @__PURE__ */ l.jsx(
|
|
|
42992
42992
|
));
|
|
42993
42993
|
Gy.displayName = Op.displayName;
|
|
42994
42994
|
const gc = y.forwardRef(
|
|
42995
|
-
({
|
|
42995
|
+
({
|
|
42996
|
+
className: e,
|
|
42997
|
+
children: t,
|
|
42998
|
+
position: n = "popper",
|
|
42999
|
+
sideOffset: a,
|
|
43000
|
+
alignOffset: o,
|
|
43001
|
+
showScrollButtons: r = !0,
|
|
43002
|
+
...s
|
|
43003
|
+
}, c) => /* @__PURE__ */ l.jsx(nke, { children: /* @__PURE__ */ l.jsxs(
|
|
42996
43004
|
Pp,
|
|
42997
43005
|
{
|
|
42998
|
-
ref:
|
|
43006
|
+
ref: c,
|
|
42999
43007
|
className: I(
|
|
43000
43008
|
"relative z-50 max-h-96 overflow-hidden rounded-md border color-border-default color-bg-default color-text-default shadow-elevation-3 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",
|
|
43001
43009
|
n === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
|
|
@@ -43004,9 +43012,9 @@ const gc = y.forwardRef(
|
|
|
43004
43012
|
position: n,
|
|
43005
43013
|
sideOffset: a,
|
|
43006
43014
|
alignOffset: o,
|
|
43007
|
-
...
|
|
43015
|
+
...s,
|
|
43008
43016
|
children: [
|
|
43009
|
-
/* @__PURE__ */ l.jsx(Wy, {}),
|
|
43017
|
+
r && /* @__PURE__ */ l.jsx(Wy, {}),
|
|
43010
43018
|
/* @__PURE__ */ l.jsx(
|
|
43011
43019
|
ake,
|
|
43012
43020
|
{
|
|
@@ -43017,7 +43025,7 @@ const gc = y.forwardRef(
|
|
|
43017
43025
|
children: t
|
|
43018
43026
|
}
|
|
43019
43027
|
),
|
|
43020
|
-
/* @__PURE__ */ l.jsx(Gy, {})
|
|
43028
|
+
r && /* @__PURE__ */ l.jsx(Gy, {})
|
|
43021
43029
|
]
|
|
43022
43030
|
}
|
|
43023
43031
|
) })
|