@ledgerhq/lumen-ui-react 0.1.21 → 0.1.22
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 +121 -121
- package/dist/lib/Components/ListItem/ListItem.d.ts +2 -2
- package/dist/lib/Components/ListItem/ListItem.d.ts.map +1 -1
- package/dist/lib/Components/ListItem/ListItem.js +87 -51
- package/dist/lib/Components/ListItem/types.d.ts +9 -9
- package/dist/lib/Components/ListItem/types.d.ts.map +1 -1
- package/dist/lib/Components/MediaButton/MediaButton.d.ts +30 -0
- package/dist/lib/Components/MediaButton/MediaButton.d.ts.map +1 -0
- package/dist/lib/Components/{TriggerButton/TriggerButton.js → MediaButton/MediaButton.js} +24 -23
- package/dist/lib/Components/MediaButton/index.d.ts +3 -0
- package/dist/lib/Components/MediaButton/index.d.ts.map +1 -0
- package/dist/lib/Components/{TriggerButton → MediaButton}/types.d.ts +9 -4
- package/dist/lib/Components/MediaButton/types.d.ts.map +1 -0
- package/dist/lib/Components/Popover/Popover.d.ts +1 -1
- package/dist/lib/Components/Popover/Popover.d.ts.map +1 -1
- package/dist/lib/Components/Popover/Popover.js +36 -34
- package/dist/lib/Components/Popover/types.d.ts +11 -1
- package/dist/lib/Components/Popover/types.d.ts.map +1 -1
- package/dist/lib/Components/Select/Select.d.ts +2 -3
- package/dist/lib/Components/Select/Select.d.ts.map +1 -1
- package/dist/lib/Components/Select/Select.js +132 -139
- package/dist/lib/Components/Select/index.d.ts +1 -1
- package/dist/lib/Components/Select/index.d.ts.map +1 -1
- package/dist/lib/Components/Select/types.d.ts +2 -10
- package/dist/lib/Components/Select/types.d.ts.map +1 -1
- package/dist/lib/Components/ThemeProvider/ThemeProvider.d.ts +7 -0
- package/dist/lib/Components/ThemeProvider/ThemeProvider.d.ts.map +1 -1
- package/dist/lib/Components/ThemeProvider/ThemeProvider.js +24 -18
- package/dist/lib/Components/ThemeProvider/ThemeProvider.types.d.ts +7 -1
- package/dist/lib/Components/ThemeProvider/ThemeProvider.types.d.ts.map +1 -1
- package/dist/lib/Components/ThemeProvider/useRootColorModeSideEffect.d.ts +10 -5
- package/dist/lib/Components/ThemeProvider/useRootColorModeSideEffect.d.ts.map +1 -1
- package/dist/lib/Components/ThemeProvider/useRootColorModeSideEffect.js +22 -21
- package/dist/lib/Components/index.d.ts +1 -1
- package/dist/lib/Components/index.d.ts.map +1 -1
- package/dist/package.json +3 -2
- package/package.json +2 -1
- package/dist/lib/Components/TriggerButton/TriggerButton.d.ts +0 -30
- package/dist/lib/Components/TriggerButton/TriggerButton.d.ts.map +0 -1
- package/dist/lib/Components/TriggerButton/index.d.ts +0 -3
- package/dist/lib/Components/TriggerButton/index.d.ts.map +0 -1
- package/dist/lib/Components/TriggerButton/types.d.ts.map +0 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { jsxs as t, jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { useDisabledContext as
|
|
3
|
-
import { Slot as
|
|
4
|
-
import { cva as
|
|
5
|
-
import { baseButtonVariants as
|
|
6
|
-
import { ChevronDown as
|
|
7
|
-
const
|
|
2
|
+
import { useDisabledContext as u, cn as b } from "../../../libs/utils-shared/dist/index.js";
|
|
3
|
+
import { Slot as x, Slottable as T } from "@radix-ui/react-slot";
|
|
4
|
+
import { cva as z } from "class-variance-authority";
|
|
5
|
+
import { baseButtonVariants as g } from "../Button/BaseButton.js";
|
|
6
|
+
import { ChevronDown as v } from "../../Symbols/Icons/ChevronDown.js";
|
|
7
|
+
const N = z("gap-8 body-2-semi-bold", {
|
|
8
8
|
variants: {
|
|
9
9
|
size: {
|
|
10
10
|
sm: "",
|
|
@@ -31,45 +31,46 @@ const v = b("gap-8 body-2-semi-bold", {
|
|
|
31
31
|
}), S = ({
|
|
32
32
|
ref: i,
|
|
33
33
|
className: p,
|
|
34
|
-
appearance:
|
|
35
|
-
size:
|
|
36
|
-
disabled:
|
|
34
|
+
appearance: l = "gray",
|
|
35
|
+
size: m = "md",
|
|
36
|
+
disabled: r = !1,
|
|
37
37
|
asChild: n = !1,
|
|
38
38
|
icon: s,
|
|
39
39
|
iconType: c = "flat",
|
|
40
|
+
hideChevron: d = !1,
|
|
40
41
|
children: o,
|
|
41
|
-
...
|
|
42
|
+
...f
|
|
42
43
|
}) => {
|
|
43
|
-
const a =
|
|
44
|
-
consumerName: "
|
|
45
|
-
mergeWith: { disabled:
|
|
46
|
-
}),
|
|
44
|
+
const a = u({
|
|
45
|
+
consumerName: "MediaButton",
|
|
46
|
+
mergeWith: { disabled: r }
|
|
47
|
+
}), y = s ? c : "none";
|
|
47
48
|
return /* @__PURE__ */ t(
|
|
48
|
-
n ?
|
|
49
|
+
n ? x : "button",
|
|
49
50
|
{
|
|
50
51
|
ref: i,
|
|
51
|
-
className:
|
|
52
|
-
|
|
53
|
-
appearance:
|
|
52
|
+
className: b(
|
|
53
|
+
g({
|
|
54
|
+
appearance: l,
|
|
54
55
|
disabled: a,
|
|
55
56
|
loading: !1
|
|
56
57
|
}),
|
|
57
|
-
|
|
58
|
+
N({ size: m, iconType: y }),
|
|
58
59
|
p
|
|
59
60
|
),
|
|
60
61
|
"data-disabled": a || void 0,
|
|
61
62
|
disabled: a,
|
|
62
|
-
...
|
|
63
|
+
...f,
|
|
63
64
|
children: [
|
|
64
65
|
s && /* @__PURE__ */ e("span", { className: "shrink-0", children: s }),
|
|
65
66
|
/* @__PURE__ */ t("span", { className: "flex items-center gap-2", children: [
|
|
66
|
-
n ? /* @__PURE__ */ e(
|
|
67
|
-
/* @__PURE__ */ e(
|
|
67
|
+
n ? /* @__PURE__ */ e(T, { children: o }) : /* @__PURE__ */ e("span", { className: "line-clamp-1 text-left", children: o }),
|
|
68
|
+
!d && /* @__PURE__ */ e(v, { size: 20 })
|
|
68
69
|
] })
|
|
69
70
|
]
|
|
70
71
|
}
|
|
71
72
|
);
|
|
72
73
|
};
|
|
73
74
|
export {
|
|
74
|
-
S as
|
|
75
|
+
S as MediaButton
|
|
75
76
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/MediaButton/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,cAAc,SAAS,CAAC"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { ComponentPropsWithRef, ReactNode } from 'react';
|
|
2
2
|
import { BaseButtonProps } from '../Button/types';
|
|
3
|
-
export type
|
|
3
|
+
export type MediaButtonProps = {
|
|
4
4
|
/**
|
|
5
|
-
* The visual style of the
|
|
5
|
+
* The visual style of the media button.
|
|
6
6
|
* @default 'gray'
|
|
7
7
|
*/
|
|
8
8
|
appearance?: 'gray' | 'transparent' | 'no-background';
|
|
9
9
|
/**
|
|
10
|
-
* The size variant of the
|
|
10
|
+
* The size variant of the media button.
|
|
11
11
|
* @default 'md'
|
|
12
12
|
*/
|
|
13
13
|
size?: 'sm' | 'md';
|
|
@@ -26,7 +26,12 @@ export type TriggerButtonProps = {
|
|
|
26
26
|
*/
|
|
27
27
|
iconType?: 'flat' | 'rounded';
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* When true, hides the trailing chevron indicator.
|
|
30
|
+
* @default false
|
|
31
|
+
*/
|
|
32
|
+
hideChevron?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* The label content of the media button.
|
|
30
35
|
*/
|
|
31
36
|
children: ReactNode;
|
|
32
37
|
} & Pick<BaseButtonProps, 'disabled' | 'className' | 'asChild'> & ComponentPropsWithRef<'button'>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/MediaButton/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAC9D,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,aAAa,GAAG,eAAe,CAAC;IACtD;;;OAGG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB;;;OAGG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;CACrB,GAAG,IAAI,CAAC,eAAe,EAAE,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC,GAC7D,qBAAqB,CAAC,QAAQ,CAAC,CAAC"}
|
|
@@ -34,7 +34,7 @@ declare const PopoverTrigger: <Payload>({ handle, payload, render, className, ..
|
|
|
34
34
|
*
|
|
35
35
|
* @see {@link https://ldls.vercel.app/?path=/docs/components-popover-overview--docs Storybook}
|
|
36
36
|
*/
|
|
37
|
-
declare const PopoverContent: ({ side, sideOffset, align, width, className, children, }: PopoverContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
declare const PopoverContent: ({ side, sideOffset, align, width, initialFocus, className, children, }: PopoverContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
38
38
|
/**
|
|
39
39
|
* Creates a handle for connecting a `Popover` with detached `PopoverTrigger` components.
|
|
40
40
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Popover/Popover.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAGrE,OAAO,KAAK,EACV,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EAEpB,MAAM,SAAS,CAAC;AA4CjB;;;;;;;;;;;;;;;;;;;GAmBG;AACH,QAAA,MAAM,OAAO,GAAI,OAAO,EAAG,iEAOxB,YAAY,CAAC,OAAO,CAAC,4CAcvB,CAAC;AAEF;;;;;GAKG;AACH,QAAA,MAAM,cAAc,GAAI,OAAO,EAAG,kDAM/B,mBAAmB,CAAC,OAAO,CAAC,4CAS9B,CAAC;AAEF;;;;;GAKG;AACH,QAAA,MAAM,cAAc,GAAI,
|
|
1
|
+
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Popover/Popover.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAGrE,OAAO,KAAK,EACV,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EAEpB,MAAM,SAAS,CAAC;AA4CjB;;;;;;;;;;;;;;;;;;;GAmBG;AACH,QAAA,MAAM,OAAO,GAAI,OAAO,EAAG,iEAOxB,YAAY,CAAC,OAAO,CAAC,4CAcvB,CAAC;AAEF;;;;;GAKG;AACH,QAAA,MAAM,cAAc,GAAI,OAAO,EAAG,kDAM/B,mBAAmB,CAAC,OAAO,CAAC,4CAS9B,CAAC;AAEF;;;;;GAKG;AACH,QAAA,MAAM,cAAc,GAAI,wEAQrB,mBAAmB,4CA+BrB,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,QAAA,MAAM,mBAAmB,sCAAgC,CAAC;AAE1D,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,mBAAmB,EAAE,CAAC"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { jsx as t, jsxs as
|
|
2
|
-
import { createSafeContext as
|
|
3
|
-
import { cva as
|
|
4
|
-
import { createPopoverHandle as
|
|
5
|
-
import { PopoverRoot as
|
|
6
|
-
import { PopoverTrigger as
|
|
7
|
-
import { PopoverPortal as
|
|
8
|
-
import { PopoverBackdrop as
|
|
9
|
-
import { PopoverPositioner as
|
|
10
|
-
import { PopoverPopup as
|
|
11
|
-
const [
|
|
1
|
+
import { jsx as t, jsxs as m } from "react/jsx-runtime";
|
|
2
|
+
import { createSafeContext as l, cn as p } from "../../../libs/utils-shared/dist/index.js";
|
|
3
|
+
import { cva as v } from "class-variance-authority";
|
|
4
|
+
import { createPopoverHandle as c } from "../../../node_modules/@base-ui/react/esm/popover/store/PopoverHandle.js";
|
|
5
|
+
import { PopoverRoot as f } from "../../../node_modules/@base-ui/react/esm/popover/root/PopoverRoot.js";
|
|
6
|
+
import { PopoverTrigger as P } from "../../../node_modules/@base-ui/react/esm/popover/trigger/PopoverTrigger.js";
|
|
7
|
+
import { PopoverPortal as u } from "../../../node_modules/@base-ui/react/esm/popover/portal/PopoverPortal.js";
|
|
8
|
+
import { PopoverBackdrop as g } from "../../../node_modules/@base-ui/react/esm/popover/backdrop/PopoverBackdrop.js";
|
|
9
|
+
import { PopoverPositioner as h } from "../../../node_modules/@base-ui/react/esm/popover/positioner/PopoverPositioner.js";
|
|
10
|
+
import { PopoverPopup as x } from "../../../node_modules/@base-ui/react/esm/popover/popup/PopoverPopup.js";
|
|
11
|
+
const [b, y] = l("Popover"), C = v(
|
|
12
12
|
["overflow-hidden rounded-md bg-canvas-sheet p-16 outline-none", "shadow-xl"],
|
|
13
13
|
{
|
|
14
14
|
variants: {
|
|
@@ -39,19 +39,19 @@ const [x, b] = m("Popover"), y = l(
|
|
|
39
39
|
width: "fit"
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
-
),
|
|
42
|
+
), w = p(
|
|
43
43
|
"fixed inset-0 z-dialog-overlay bg-canvas-overlay-subtle",
|
|
44
44
|
"data-open:animate-fade-in",
|
|
45
45
|
"data-closed:animate-fade-out"
|
|
46
|
-
),
|
|
46
|
+
), B = ({
|
|
47
47
|
open: o,
|
|
48
48
|
defaultOpen: a,
|
|
49
49
|
onOpenChange: r,
|
|
50
50
|
overlay: e = !1,
|
|
51
51
|
handle: n,
|
|
52
52
|
children: i
|
|
53
|
-
}) => /* @__PURE__ */ t(
|
|
54
|
-
|
|
53
|
+
}) => /* @__PURE__ */ t(b, { value: { overlay: e }, children: /* @__PURE__ */ t(
|
|
54
|
+
f,
|
|
55
55
|
{
|
|
56
56
|
open: o,
|
|
57
57
|
defaultOpen: a,
|
|
@@ -60,14 +60,14 @@ const [x, b] = m("Popover"), y = l(
|
|
|
60
60
|
handle: n,
|
|
61
61
|
children: i
|
|
62
62
|
}
|
|
63
|
-
) }),
|
|
63
|
+
) }), O = ({
|
|
64
64
|
handle: o,
|
|
65
65
|
payload: a,
|
|
66
66
|
render: r,
|
|
67
67
|
className: e,
|
|
68
68
|
...n
|
|
69
69
|
}) => /* @__PURE__ */ t(
|
|
70
|
-
|
|
70
|
+
P,
|
|
71
71
|
{
|
|
72
72
|
"data-slot": "popover-trigger",
|
|
73
73
|
handle: o,
|
|
@@ -76,28 +76,29 @@ const [x, b] = m("Popover"), y = l(
|
|
|
76
76
|
className: p("data-popup-open:z-menu", e),
|
|
77
77
|
...n
|
|
78
78
|
}
|
|
79
|
-
),
|
|
79
|
+
), V = ({
|
|
80
80
|
side: o = "bottom",
|
|
81
81
|
sideOffset: a = 8,
|
|
82
82
|
align: r = "start",
|
|
83
83
|
width: e = "fit",
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
initialFocus: n = !1,
|
|
85
|
+
className: i,
|
|
86
|
+
children: s
|
|
86
87
|
}) => {
|
|
87
|
-
const { overlay:
|
|
88
|
+
const { overlay: d } = y({
|
|
88
89
|
consumerName: "PopoverContent",
|
|
89
90
|
contextRequired: !0
|
|
90
91
|
});
|
|
91
|
-
return /* @__PURE__ */
|
|
92
|
-
|
|
93
|
-
|
|
92
|
+
return /* @__PURE__ */ m(u, { children: [
|
|
93
|
+
d && /* @__PURE__ */ t(
|
|
94
|
+
g,
|
|
94
95
|
{
|
|
95
96
|
"data-slot": "popover-overlay",
|
|
96
|
-
className:
|
|
97
|
+
className: w
|
|
97
98
|
}
|
|
98
99
|
),
|
|
99
100
|
/* @__PURE__ */ t(
|
|
100
|
-
|
|
101
|
+
h,
|
|
101
102
|
{
|
|
102
103
|
"data-slot": "popover-positioner",
|
|
103
104
|
className: "z-menu",
|
|
@@ -105,20 +106,21 @@ const [x, b] = m("Popover"), y = l(
|
|
|
105
106
|
sideOffset: a,
|
|
106
107
|
align: r,
|
|
107
108
|
children: /* @__PURE__ */ t(
|
|
108
|
-
|
|
109
|
+
x,
|
|
109
110
|
{
|
|
110
111
|
"data-slot": "popover-content",
|
|
111
|
-
|
|
112
|
-
|
|
112
|
+
initialFocus: n,
|
|
113
|
+
className: p(C({ width: e, side: o }), i),
|
|
114
|
+
children: s
|
|
113
115
|
}
|
|
114
116
|
)
|
|
115
117
|
}
|
|
116
118
|
)
|
|
117
119
|
] });
|
|
118
|
-
},
|
|
120
|
+
}, A = c;
|
|
119
121
|
export {
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
B as Popover,
|
|
123
|
+
V as PopoverContent,
|
|
124
|
+
O as PopoverTrigger,
|
|
125
|
+
A as createPopoverHandle
|
|
124
126
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PopoverRootChangeEventDetails, Popover as PopoverNamespace } from '@base-ui/react/popover';
|
|
2
|
-
import { ComponentPropsWithRef, ReactNode } from 'react';
|
|
2
|
+
import { ComponentPropsWithRef, ReactNode, RefObject } from 'react';
|
|
3
3
|
type PopoverHandle<Payload> = PopoverNamespace.Handle<Payload>;
|
|
4
4
|
export type PopoverWidth = 'fit' | 'fixed';
|
|
5
5
|
export type PopoverSide = 'top' | 'right' | 'bottom' | 'left';
|
|
@@ -110,6 +110,16 @@ export type PopoverContentProps = {
|
|
|
110
110
|
* @default 'fit'
|
|
111
111
|
*/
|
|
112
112
|
width?: PopoverWidth;
|
|
113
|
+
/**
|
|
114
|
+
* Determines the element to focus when the popover is opened.
|
|
115
|
+
*
|
|
116
|
+
* - `false`: Do not move focus.
|
|
117
|
+
* - `true`: Move focus based on the default behavior (first tabbable element or popup).
|
|
118
|
+
* - `RefObject`: Move focus to the ref element.
|
|
119
|
+
*
|
|
120
|
+
* @default false
|
|
121
|
+
*/
|
|
122
|
+
initialFocus?: boolean | RefObject<HTMLElement | null>;
|
|
113
123
|
/**
|
|
114
124
|
* Additional CSS class names to apply to the popup panel.
|
|
115
125
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Popover/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,6BAA6B,EAC7B,OAAO,IAAI,gBAAgB,EAC5B,MAAM,wBAAwB,CAAC;AAChC,OAAO,KAAK,EAAE,qBAAqB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Popover/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,6BAA6B,EAC7B,OAAO,IAAI,gBAAgB,EAC5B,MAAM,wBAAwB,CAAC;AAChC,OAAO,KAAK,EAAE,qBAAqB,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEzE,KAAK,aAAa,CAAC,OAAO,IAAI,gBAAgB,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;AAE/D,MAAM,MAAM,YAAY,GAAG,KAAK,GAAG,OAAO,CAAC;AAC3C,MAAM,MAAM,WAAW,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;AAC9D,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;AAEtD;;;;;GAKG;AACH,MAAM,MAAM,YAAY,CAAC,OAAO,GAAG,OAAO,IAAI;IAC5C;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IAEf;;;;;OAKG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;;;;OAKG;IACH,YAAY,CAAC,EAAE,CACb,IAAI,EAAE,OAAO,EACb,YAAY,EAAE,6BAA6B,KACxC,IAAI,CAAC;IAEV;;;;;;;OAOG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;;OAGG;IACH,MAAM,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;IAEhC;;;OAGG;IACH,QAAQ,CAAC,EAAE,SAAS,GAAG,CAAC,CAAC,GAAG,EAAE;QAAE,OAAO,EAAE,OAAO,GAAG,SAAS,CAAA;KAAE,KAAK,SAAS,CAAC,CAAC;CAC/E,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,mBAAmB,CAAC,OAAO,GAAG,OAAO,IAAI;IACnD;;;OAGG;IACH,MAAM,CAAC,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;IAEhC;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;;;;OAKG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;CACnD,GAAG,IAAI,CAAC,qBAAqB,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,CAAC;AAEtD;;;;;GAKG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAChC;;;;;OAKG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;OAKG;IACH,KAAK,CAAC,EAAE,YAAY,CAAC;IAErB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,YAAY,CAAC;IAErB;;;;;;;;OAQG;IACH,YAAY,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IAEvD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SelectProps, SelectTriggerProps, SelectContentProps, SelectListProps, SelectSearchProps, SelectItemTextProps, SelectItemProps, SelectItemContentProps, SelectItemDescriptionProps, SelectSeparatorProps, SelectEmptyStateProps
|
|
1
|
+
import { SelectProps, SelectTriggerProps, SelectContentProps, SelectListProps, SelectSearchProps, SelectItemTextProps, SelectItemProps, SelectItemContentProps, SelectItemDescriptionProps, SelectSeparatorProps, SelectEmptyStateProps } from './types';
|
|
2
2
|
declare function Select({ value, defaultValue, onValueChange, disabled: disabledProp, items, filter, filteredItems, searchValue: searchValueProp, defaultSearchValue, onSearchValueChange, open, defaultOpen, onOpenChange, name, required, children, }: SelectProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
declare const SelectTrigger: ({ render, disabled, ...props }: SelectTriggerProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
declare const SelectContent: ({ ref, className, children, side, sideOffset, align, autoFocusSearch, ...props }: SelectContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,6 +10,5 @@ declare const SelectItemContent: ({ ref, className, children, ...props }: Select
|
|
|
10
10
|
declare const SelectItemDescription: ({ ref, className, children, ...props }: SelectItemDescriptionProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
declare const SelectSearch: ({ className, placeholder, errorMessage, "aria-invalid": ariaInvalid, suffix, onClear, hideClearButton, }: SelectSearchProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
declare const SelectEmptyState: ({ ref, className, title, description, ...props }: SelectEmptyStateProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
|
|
14
|
-
export { Select, SelectTrigger, SelectContent, SelectSearch, SelectList, SelectItemText, SelectItemContent, SelectItemDescription, SelectItem, SelectSeparator, SelectEmptyState, SelectTriggerButton, };
|
|
13
|
+
export { Select, SelectTrigger, SelectContent, SelectSearch, SelectList, SelectItemText, SelectItemContent, SelectItemDescription, SelectItem, SelectSeparator, SelectEmptyState, };
|
|
15
14
|
//# sourceMappingURL=Select.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Select/Select.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Select/Select.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAEV,WAAW,EACX,kBAAkB,EAClB,kBAAkB,EAClB,eAAe,EACf,iBAAiB,EAEjB,mBAAmB,EACnB,eAAe,EACf,sBAAsB,EACtB,0BAA0B,EAC1B,oBAAoB,EACpB,qBAAqB,EACtB,MAAM,SAAS,CAAC;AAGjB,iBAAS,MAAM,CAAC,EACd,KAAK,EACL,YAAY,EACZ,aAAa,EACb,QAAQ,EAAE,YAAY,EACtB,KAAK,EACL,MAAM,EACN,aAAa,EACb,WAAW,EAAE,eAAe,EAC5B,kBAAkB,EAClB,mBAAmB,EACnB,IAAI,EACJ,WAAW,EACX,YAAY,EACZ,IAAI,EACJ,QAAQ,EACR,QAAQ,GACT,EAAE,WAAW,2CAsDb;AA6DD,QAAA,MAAM,aAAa,GAAI,gCAAgC,kBAAkB,4CAmBxE,CAAC;AAgCF,QAAA,MAAM,aAAa,GAAI,kFASpB,kBAAkB,4CAoBpB,CAAC;AAEF,QAAA,MAAM,UAAU,GAAI,0CAKjB,eAAe,4CA+BjB,CAAC;AAqBF,QAAA,MAAM,UAAU,GAAI,wCAKjB,eAAe,4CAYjB,CAAC;AAEF,QAAA,MAAM,eAAe,GAAI,8BAItB,oBAAoB,4CAEtB,CAAC;AAEF,QAAA,MAAM,cAAc,GAAI,8BAA8B,mBAAmB,4CAOxE,CAAC;AAEF,QAAA,MAAM,iBAAiB,GAAI,wCAKxB,sBAAsB,4CASxB,CAAC;AAEF,QAAA,MAAM,qBAAqB,GAAI,wCAK5B,0BAA0B,4CAa5B,CAAC;AAEF,QAAA,MAAM,YAAY,GAAI,0GAQnB,iBAAiB,4CAyBnB,CAAC;AAEF,QAAA,MAAM,gBAAgB,GAAI,kDAMvB,qBAAqB,4CAcvB,CAAC;AAEF,OAAO,EACL,MAAM,EACN,aAAa,EACb,aAAa,EACb,YAAY,EACZ,UAAU,EACV,cAAc,EACd,iBAAiB,EACjB,qBAAqB,EACrB,UAAU,EACV,eAAe,EACf,gBAAgB,GACjB,CAAC"}
|