@ledgerhq/lumen-ui-react 0.1.23 → 0.1.25
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 +163 -154
- package/dist/lib/Components/DotCount/DotCount.d.ts +6 -0
- package/dist/lib/Components/DotCount/DotCount.d.ts.map +1 -0
- package/dist/lib/Components/DotCount/DotCount.js +92 -0
- package/dist/lib/Components/DotCount/index.d.ts +3 -0
- package/dist/lib/Components/DotCount/index.d.ts.map +1 -0
- package/dist/lib/Components/DotCount/types.d.ts +39 -0
- package/dist/lib/Components/DotCount/types.d.ts.map +1 -0
- package/dist/lib/Components/DotIcon/DotIcon.d.ts +32 -0
- package/dist/lib/Components/DotIcon/DotIcon.d.ts.map +1 -0
- package/dist/lib/Components/DotIcon/DotIcon.js +97 -0
- package/dist/lib/Components/DotIcon/index.d.ts +3 -0
- package/dist/lib/Components/DotIcon/index.d.ts.map +1 -0
- package/dist/lib/Components/DotIcon/types.d.ts +42 -0
- package/dist/lib/Components/DotIcon/types.d.ts.map +1 -0
- package/dist/lib/Components/DotIndicator/DotIndicator.d.ts +6 -0
- package/dist/lib/Components/DotIndicator/DotIndicator.d.ts.map +1 -0
- package/dist/lib/Components/DotIndicator/DotIndicator.js +66 -0
- package/dist/lib/Components/DotIndicator/index.d.ts +3 -0
- package/dist/lib/Components/DotIndicator/index.d.ts.map +1 -0
- package/dist/lib/Components/DotIndicator/types.d.ts +24 -0
- package/dist/lib/Components/DotIndicator/types.d.ts.map +1 -0
- package/dist/lib/Components/DotSymbol/DotSymbol.d.ts.map +1 -1
- package/dist/lib/Components/DotSymbol/DotSymbol.js +2 -1
- package/dist/lib/Components/MediaImage/MediaImage.d.ts.map +1 -1
- package/dist/lib/Components/MediaImage/MediaImage.js +8 -7
- package/dist/lib/Components/MediaImage/types.d.ts +1 -1
- package/dist/lib/Components/MediaImage/types.d.ts.map +1 -1
- package/dist/lib/Components/Select/Select.d.ts +4 -4
- package/dist/lib/Components/Select/Select.d.ts.map +1 -1
- package/dist/lib/Components/Select/Select.js +135 -126
- package/dist/lib/Components/Select/SelectContext.d.ts +1 -0
- package/dist/lib/Components/Select/SelectContext.d.ts.map +1 -1
- 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 +20 -14
- package/dist/lib/Components/Select/types.d.ts.map +1 -1
- package/dist/lib/Components/Select/useSelectItems/useSelectItems.d.ts +10 -9
- package/dist/lib/Components/Select/useSelectItems/useSelectItems.d.ts.map +1 -1
- package/dist/lib/Components/Select/useSelectItems/useSelectItems.js +16 -15
- package/dist/lib/Components/Select/utils/groupItems.d.ts +8 -2
- package/dist/lib/Components/Select/utils/groupItems.d.ts.map +1 -1
- package/dist/lib/Components/Select/utils/groupItems.js +13 -11
- package/dist/lib/Components/Select/utils/index.d.ts +1 -1
- package/dist/lib/Components/Select/utils/index.d.ts.map +1 -1
- package/dist/lib/Components/Tag/Tag.d.ts.map +1 -1
- package/dist/lib/Components/Tag/Tag.js +15 -14
- package/dist/lib/Components/Tag/types.d.ts +1 -1
- package/dist/lib/Components/Tag/types.d.ts.map +1 -1
- package/dist/lib/Components/ThemeProvider/ThemeProvider.d.ts +1 -1
- package/dist/lib/Components/ThemeProvider/ThemeProvider.d.ts.map +1 -1
- package/dist/lib/Components/index.d.ts +3 -0
- package/dist/lib/Components/index.d.ts.map +1 -1
- package/dist/package.json +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/DotIcon/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,EACP,cAAc,EACd,wBAAwB,EACxB,kBAAkB,GACnB,MAAM,WAAW,CAAC;AACnB,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ComponentPropsWithRef, ComponentType, ReactNode } from 'react';
|
|
2
|
+
import { IconSize } from '../Icon';
|
|
3
|
+
export type DotIconSize = 16 | 20 | 24;
|
|
4
|
+
export type DotIconPin = 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end';
|
|
5
|
+
export type DotIconAppearance = 'success' | 'muted' | 'error';
|
|
6
|
+
export type DotIconProps = {
|
|
7
|
+
/**
|
|
8
|
+
* Icon component to render inside the dot.
|
|
9
|
+
*/
|
|
10
|
+
icon: ComponentType<{
|
|
11
|
+
size?: IconSize;
|
|
12
|
+
className?: string;
|
|
13
|
+
}>;
|
|
14
|
+
/**
|
|
15
|
+
* Semantic color of the dot background.
|
|
16
|
+
*/
|
|
17
|
+
appearance: DotIconAppearance;
|
|
18
|
+
/**
|
|
19
|
+
* Corner placement of the dot indicator.
|
|
20
|
+
* @default 'bottom-end'
|
|
21
|
+
*/
|
|
22
|
+
pin?: DotIconPin;
|
|
23
|
+
/**
|
|
24
|
+
* The size of the dot indicator in pixels.
|
|
25
|
+
* @default 20
|
|
26
|
+
*/
|
|
27
|
+
size?: DotIconSize;
|
|
28
|
+
/**
|
|
29
|
+
* The shape of the dot indicator.
|
|
30
|
+
* @default 'circle'
|
|
31
|
+
*/
|
|
32
|
+
shape?: 'square' | 'circle';
|
|
33
|
+
/**
|
|
34
|
+
* Additional custom CSS classes to apply to the wrapper.
|
|
35
|
+
*/
|
|
36
|
+
className?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The wrapped component (e.g. MediaImage or Spot).
|
|
39
|
+
*/
|
|
40
|
+
children?: ReactNode;
|
|
41
|
+
} & Omit<ComponentPropsWithRef<'div'>, 'children'>;
|
|
42
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/DotIcon/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAC7E,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,MAAM,MAAM,WAAW,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;AAEvC,MAAM,MAAM,UAAU,GAClB,WAAW,GACX,SAAS,GACT,cAAc,GACd,YAAY,CAAC;AAEjB,MAAM,MAAM,iBAAiB,GAAG,SAAS,GAAG,OAAO,GAAG,OAAO,CAAC;AAE9D,MAAM,MAAM,YAAY,GAAG;IACzB;;OAEG;IACH,IAAI,EAAE,aAAa,CAAC;QAAE,IAAI,CAAC,EAAE,QAAQ,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC7D;;OAEG;IACH,UAAU,EAAE,iBAAiB,CAAC;IAC9B;;;OAGG;IACH,GAAG,CAAC,EAAE,UAAU,CAAC;IACjB;;;OAGG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB;;;OAGG;IACH,KAAK,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC5B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,GAAG,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DotIndicatorProps } from './types';
|
|
2
|
+
export declare function DotIndicator({ size, appearance, disabled: disabledProp, children, className, 'aria-label': ariaLabel, ref, ...props }: DotIndicatorProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare namespace DotIndicator {
|
|
4
|
+
var displayName: string;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=DotIndicator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DotIndicator.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/DotIndicator/DotIndicator.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAyBjD,wBAAgB,YAAY,CAAC,EAC3B,IAAW,EACX,UAAmB,EACnB,QAAQ,EAAE,YAAoB,EAC9B,QAAQ,EACR,SAAS,EACT,YAAY,EAAE,SAAS,EACvB,GAAG,EACH,GAAG,KAAK,EACT,EAAE,iBAAiB,2CAyBnB;yBAlCe,YAAY"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { jsxs as m, jsx as b } from "react/jsx-runtime";
|
|
2
|
+
import { useDisabledContext as p, cn as i } from "../../../libs/utils-shared/dist/index.js";
|
|
3
|
+
import { cva as f } from "class-variance-authority";
|
|
4
|
+
const u = f("pointer-events-none rounded-full", {
|
|
5
|
+
variants: {
|
|
6
|
+
size: {
|
|
7
|
+
xs: "size-10",
|
|
8
|
+
sm: "size-12",
|
|
9
|
+
md: "size-16"
|
|
10
|
+
},
|
|
11
|
+
appearance: {
|
|
12
|
+
base: "bg-interactive",
|
|
13
|
+
red: "bg-error-strong"
|
|
14
|
+
},
|
|
15
|
+
disabled: {
|
|
16
|
+
true: "bg-disabled",
|
|
17
|
+
false: ""
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
defaultVariants: {
|
|
21
|
+
size: "sm",
|
|
22
|
+
appearance: "base",
|
|
23
|
+
disabled: !1
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
function v({
|
|
27
|
+
size: t = "sm",
|
|
28
|
+
appearance: r = "base",
|
|
29
|
+
disabled: n = !1,
|
|
30
|
+
children: e,
|
|
31
|
+
className: d,
|
|
32
|
+
"aria-label": a,
|
|
33
|
+
ref: o,
|
|
34
|
+
...l
|
|
35
|
+
}) {
|
|
36
|
+
const c = p({
|
|
37
|
+
consumerName: "DotIndicator",
|
|
38
|
+
mergeWith: { disabled: n }
|
|
39
|
+
}), s = !!e;
|
|
40
|
+
return /* @__PURE__ */ m(
|
|
41
|
+
"div",
|
|
42
|
+
{
|
|
43
|
+
ref: o,
|
|
44
|
+
className: i(s && "relative inline-flex w-fit", d),
|
|
45
|
+
...l,
|
|
46
|
+
children: [
|
|
47
|
+
/* @__PURE__ */ b(
|
|
48
|
+
"div",
|
|
49
|
+
{
|
|
50
|
+
"aria-label": a,
|
|
51
|
+
"aria-hidden": !a || void 0,
|
|
52
|
+
className: i(
|
|
53
|
+
u({ size: t, appearance: r, disabled: c }),
|
|
54
|
+
s && "absolute top-0 right-0 z-1"
|
|
55
|
+
)
|
|
56
|
+
}
|
|
57
|
+
),
|
|
58
|
+
e
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
v.displayName = "DotIndicator";
|
|
64
|
+
export {
|
|
65
|
+
v as DotIndicator
|
|
66
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/DotIndicator/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ComponentPropsWithRef, ReactNode } from 'react';
|
|
2
|
+
export type DotIndicatorProps = {
|
|
3
|
+
/**
|
|
4
|
+
* The size of the dot indicator.
|
|
5
|
+
* @default 'sm'
|
|
6
|
+
*/
|
|
7
|
+
size?: 'xs' | 'sm' | 'md';
|
|
8
|
+
/**
|
|
9
|
+
* The appearance of the dot indicator.
|
|
10
|
+
* @default 'base'
|
|
11
|
+
*/
|
|
12
|
+
appearance?: 'base' | 'red';
|
|
13
|
+
/**
|
|
14
|
+
* Whether the dot indicator should show a disabled appearance.
|
|
15
|
+
* @default false
|
|
16
|
+
*/
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Can be used as a wrapper to any component in case you wish to overlay a dot indicator on top of it.
|
|
20
|
+
* If provided, it'll pin the dot indicator to the top-right of the child component passed.
|
|
21
|
+
*/
|
|
22
|
+
children?: ReactNode;
|
|
23
|
+
} & Omit<ComponentPropsWithRef<'div'>, 'children'>;
|
|
24
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/DotIndicator/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE9D,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;;OAGG;IACH,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IAC5B;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,GAAG,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DotSymbol.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/DotSymbol/DotSymbol.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EAAgB,cAAc,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAiD3E,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,cAAc,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"DotSymbol.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/DotSymbol/DotSymbol.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EAAgB,cAAc,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAiD3E,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,cAAc,EAAE,aAAa,CAU7D,CAAC;AAEX,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,QAAQ,EAAE,aAAa,CAMjD,CAAC;AAmBX;;;;;;;;;;GAUG;AACH,eAAO,MAAM,SAAS;oFAWnB,cAAc;;CA4BhB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MediaImage.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/MediaImage/MediaImage.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"MediaImage.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/MediaImage/MediaImage.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AA2B/C;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,UAAU,GAAI,iEASxB,eAAe,4CA8BjB,CAAC"}
|
|
@@ -15,7 +15,8 @@ const h = {
|
|
|
15
15
|
32: "size-32 rounded-sm",
|
|
16
16
|
40: "size-40 rounded-md",
|
|
17
17
|
48: "size-48 rounded-md",
|
|
18
|
-
56: "size-56 rounded-lg"
|
|
18
|
+
56: "size-56 rounded-lg",
|
|
19
|
+
64: "size-64 rounded-lg"
|
|
19
20
|
},
|
|
20
21
|
shape: {
|
|
21
22
|
square: "",
|
|
@@ -26,26 +27,26 @@ const h = {
|
|
|
26
27
|
)
|
|
27
28
|
}, j = ({
|
|
28
29
|
ref: o,
|
|
29
|
-
className:
|
|
30
|
+
className: i,
|
|
30
31
|
src: e,
|
|
31
|
-
alt:
|
|
32
|
+
alt: a,
|
|
32
33
|
size: d = 48,
|
|
33
34
|
shape: t = "square",
|
|
34
35
|
imgLoading: n = "eager",
|
|
35
36
|
...l
|
|
36
37
|
}) => {
|
|
37
|
-
const [
|
|
38
|
+
const [u, s] = z(!1), m = !e || u;
|
|
38
39
|
return g(() => {
|
|
39
40
|
s(!1);
|
|
40
41
|
}, [e]), /* @__PURE__ */ r(
|
|
41
42
|
"div",
|
|
42
43
|
{
|
|
43
44
|
ref: o,
|
|
44
|
-
className: c(h.root({ size: d, shape: t }),
|
|
45
|
+
className: c(h.root({ size: d, shape: t }), i),
|
|
45
46
|
role: "img",
|
|
46
|
-
"aria-label":
|
|
47
|
+
"aria-label": a,
|
|
47
48
|
...l,
|
|
48
|
-
children:
|
|
49
|
+
children: m ? /* @__PURE__ */ r("span", { className: "text-muted select-none", "aria-hidden": "true" }) : /* @__PURE__ */ r(
|
|
49
50
|
"img",
|
|
50
51
|
{
|
|
51
52
|
src: e,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentPropsWithRef } from 'react';
|
|
2
|
-
export type MediaImageSize = 12 | 16 | 20 | 24 | 32 | 40 | 48 | 56;
|
|
2
|
+
export type MediaImageSize = 12 | 16 | 20 | 24 | 32 | 40 | 48 | 56 | 64;
|
|
3
3
|
export type MediaImageShape = 'square' | 'circle';
|
|
4
4
|
export type MediaImageProps = {
|
|
5
5
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/MediaImage/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,OAAO,CAAC;AAEnD,MAAM,MAAM,cAAc,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/MediaImage/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,OAAO,CAAC;AAEnD,MAAM,MAAM,cAAc,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;AAExE,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAElD,MAAM,MAAM,eAAe,GAAG;IAC5B;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;;OAGG;IACH,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB;;;OAGG;IACH,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;;;;;OAMG;IACH,UAAU,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC9B;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,qBAAqB,CAAC,KAAK,CAAC,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { SelectProps, SelectTriggerProps, SelectContentProps, SelectListProps, SelectSearchProps, SelectItemTextProps, SelectItemProps, SelectItemContentProps, SelectItemDescriptionProps, SelectSeparatorProps, SelectEmptyStateProps } from './types';
|
|
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;
|
|
1
|
+
import { MetaShape, SelectProps, SelectTriggerProps, SelectContentProps, SelectListProps, SelectSearchProps, SelectItemTextProps, SelectItemProps, SelectItemContentProps, SelectItemDescriptionProps, SelectSeparatorProps, SelectEmptyStateProps } from './types';
|
|
2
|
+
declare function Select<TMeta extends MetaShape = MetaShape>({ value, defaultValue, onValueChange, disabled: disabledProp, items, filter, filteredItems, searchValue: searchValueProp, defaultSearchValue, onSearchValueChange, open, defaultOpen, onOpenChange, name, required, children, }: Readonly<SelectProps<TMeta>>): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
declare const SelectTrigger: ({ render, disabled, ...props }: SelectTriggerProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
declare const SelectContent: ({ ref, className, children, side, sideOffset, align,
|
|
5
|
-
declare const SelectList: ({ ref, className, renderItem, ...props }: SelectListProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare const SelectContent: ({ ref, className, children, side, sideOffset, align, initialFocus, ...props }: SelectContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare const SelectList: <TMeta extends MetaShape = MetaShape>({ ref, className, renderItem, ...props }: SelectListProps<TMeta>) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
declare const SelectItem: ({ ref, className, children, ...props }: SelectItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
declare const SelectSeparator: ({ ref, className, ...props }: SelectSeparatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
declare const SelectItemText: ({ ref, className, ...props }: SelectItemTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Select/Select.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../src/lib/Components/Select/Select.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EACV,SAAS,EAET,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;AAIjB,iBAAS,MAAM,CAAC,KAAK,SAAS,SAAS,GAAG,SAAS,EAAE,EACnD,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,QAAQ,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,2CA0D9B;AA6DD,QAAA,MAAM,aAAa,GAAI,gCAAgC,kBAAkB,4CAmBxE,CAAC;AAgCF,QAAA,MAAM,aAAa,GAAI,+EASpB,kBAAkB,4CAoBpB,CAAC;AAEF,QAAA,MAAM,UAAU,GAAI,KAAK,SAAS,SAAS,GAAG,SAAS,EAAE,0CAKtD,eAAe,CAAC,KAAK,CAAC,4CA+BxB,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"}
|