@lglab/compose-ui 0.33.0 → 0.35.0
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/accordion.d.ts +6 -6
- package/dist/alert-dialog.d.ts +10 -10
- package/dist/alert-dialog.d.ts.map +1 -1
- package/dist/alert-dialog.js +2 -2
- package/dist/alert.d.ts +76 -0
- package/dist/alert.d.ts.map +1 -0
- package/dist/alert.js +176 -0
- package/dist/alert.js.map +1 -0
- package/dist/autocomplete.d.ts +13 -13
- package/dist/avatar.d.ts +5 -5
- package/dist/avatar.d.ts.map +1 -1
- package/dist/avatar.js +1 -1
- package/dist/badge.d.ts +4 -4
- package/dist/badge.d.ts.map +1 -1
- package/dist/badge.js +1 -1
- package/dist/breadcrumb.d.ts +60 -0
- package/dist/breadcrumb.d.ts.map +1 -0
- package/dist/breadcrumb.js +68 -0
- package/dist/breadcrumb.js.map +1 -0
- package/dist/button.d.ts +3 -3
- package/dist/button.js +2 -2
- package/dist/calendar.d.ts +2 -2
- package/dist/calendar.js +1 -1
- package/dist/card.d.ts +9 -9
- package/dist/card.js +1 -1
- package/dist/checkbox-group.d.ts +2 -2
- package/dist/checkbox.d.ts +3 -3
- package/dist/collapsible.d.ts +4 -4
- package/dist/collapsible.d.ts.map +1 -1
- package/dist/combobox.d.ts +25 -25
- package/dist/combobox.d.ts.map +1 -1
- package/dist/components/chart/context.d.ts +2 -2
- package/dist/components/chart/legend.d.ts +2 -2
- package/dist/components/chart/tooltip.d.ts +2 -2
- package/dist/components/table/primitives.d.ts +10 -10
- package/dist/components/table/primitives.js +1 -1
- package/dist/context-menu.d.ts +20 -20
- package/dist/context-menu.js +1 -1
- package/dist/dialog.d.ts +11 -11
- package/dist/dialog.d.ts.map +1 -1
- package/dist/dialog.js +2 -2
- package/dist/drawer.d.ts +12 -12
- package/dist/drawer.js +2 -2
- package/dist/field.d.ts +8 -8
- package/dist/fieldset.d.ts +3 -3
- package/dist/fieldset.d.ts.map +1 -1
- package/dist/form.d.ts +2 -2
- package/dist/group.d.ts +3 -3
- package/dist/group.js +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -1
- package/dist/input.d.ts +2 -2
- package/dist/menu.d.ts +20 -20
- package/dist/menu.js +1 -1
- package/dist/menubar.d.ts +21 -21
- package/dist/menubar.js +1 -1
- package/dist/meter.d.ts +6 -6
- package/dist/navigation-menu.d.ts +14 -14
- package/dist/number-field.d.ts +8 -8
- package/dist/pagination.d.ts +10 -10
- package/dist/popover.d.ts +12 -12
- package/dist/preview-card.d.ts +8 -8
- package/dist/preview-card.d.ts.map +1 -1
- package/dist/progress.d.ts +6 -6
- package/dist/radio-group.d.ts +2 -2
- package/dist/radio.d.ts +3 -3
- package/dist/radio.d.ts.map +1 -1
- package/dist/scroll-area.d.ts +7 -7
- package/dist/scroll-area.d.ts.map +1 -1
- package/dist/select.d.ts +19 -19
- package/dist/select.d.ts.map +1 -1
- package/dist/separator.d.ts +2 -2
- package/dist/separator.d.ts.map +1 -1
- package/dist/skeleton.d.ts +2 -2
- package/dist/skeleton.d.ts.map +1 -1
- package/dist/skeleton.js +1 -1
- package/dist/slider.d.ts +7 -7
- package/dist/slider.d.ts.map +1 -1
- package/dist/styles/default.css +1 -1
- package/dist/switch.d.ts +3 -3
- package/dist/switch.d.ts.map +1 -1
- package/dist/tabs.d.ts +6 -6
- package/dist/tabs.js +1 -1
- package/dist/textarea.d.ts +2 -2
- package/dist/textarea.d.ts.map +1 -1
- package/dist/toast.d.ts +10 -10
- package/dist/toast.d.ts.map +1 -1
- package/dist/toast.js +1 -1
- package/dist/toggle-group.d.ts +3 -3
- package/dist/toggle-group.d.ts.map +1 -1
- package/dist/toggle.d.ts +2 -2
- package/dist/toggle.d.ts.map +1 -1
- package/dist/toolbar.d.ts +7 -7
- package/dist/toolbar.d.ts.map +1 -1
- package/dist/tooltip.d.ts +8 -8
- package/package.json +15 -7
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as react_jsx_runtime10 from "react/jsx-runtime";
|
|
3
|
+
import { useRender } from "@base-ui/react/use-render";
|
|
4
|
+
|
|
5
|
+
//#region src/components/breadcrumb.d.ts
|
|
6
|
+
type BreadcrumbRootProps = React.ComponentProps<'nav'>;
|
|
7
|
+
declare const BreadcrumbRoot: {
|
|
8
|
+
({
|
|
9
|
+
className,
|
|
10
|
+
children,
|
|
11
|
+
...props
|
|
12
|
+
}: BreadcrumbRootProps): react_jsx_runtime10.JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
type BreadcrumbItemProps = React.ComponentProps<'li'>;
|
|
16
|
+
declare const BreadcrumbItem: {
|
|
17
|
+
({
|
|
18
|
+
className,
|
|
19
|
+
...props
|
|
20
|
+
}: BreadcrumbItemProps): react_jsx_runtime10.JSX.Element;
|
|
21
|
+
displayName: string;
|
|
22
|
+
};
|
|
23
|
+
type BreadcrumbLinkProps = useRender.ComponentProps<'a'>;
|
|
24
|
+
declare const BreadcrumbLink: {
|
|
25
|
+
({
|
|
26
|
+
className,
|
|
27
|
+
render,
|
|
28
|
+
...props
|
|
29
|
+
}: BreadcrumbLinkProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
|
|
30
|
+
displayName: string;
|
|
31
|
+
};
|
|
32
|
+
type BreadcrumbPageProps = React.ComponentProps<'span'>;
|
|
33
|
+
declare const BreadcrumbPage: {
|
|
34
|
+
({
|
|
35
|
+
className,
|
|
36
|
+
...props
|
|
37
|
+
}: BreadcrumbPageProps): react_jsx_runtime10.JSX.Element;
|
|
38
|
+
displayName: string;
|
|
39
|
+
};
|
|
40
|
+
type BreadcrumbSeparatorProps = React.ComponentProps<'li'>;
|
|
41
|
+
declare const BreadcrumbSeparator: {
|
|
42
|
+
({
|
|
43
|
+
className,
|
|
44
|
+
children,
|
|
45
|
+
...props
|
|
46
|
+
}: BreadcrumbSeparatorProps): react_jsx_runtime10.JSX.Element;
|
|
47
|
+
displayName: string;
|
|
48
|
+
};
|
|
49
|
+
type BreadcrumbEllipsisProps = React.ComponentProps<'li'>;
|
|
50
|
+
declare const BreadcrumbEllipsis: {
|
|
51
|
+
({
|
|
52
|
+
className,
|
|
53
|
+
children,
|
|
54
|
+
...props
|
|
55
|
+
}: BreadcrumbEllipsisProps): react_jsx_runtime10.JSX.Element;
|
|
56
|
+
displayName: string;
|
|
57
|
+
};
|
|
58
|
+
//#endregion
|
|
59
|
+
export { BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbRoot, type BreadcrumbRootProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps };
|
|
60
|
+
//# sourceMappingURL=breadcrumb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"breadcrumb.d.ts","names":[],"sources":["../src/components/breadcrumb.tsx"],"sourcesContent":[],"mappings":";;;;;KASK,mBAAA,GAAsB,KAAA,CAAM;cAE3B;;;;;KAAqD,sBAAmB,mBAAA,CAAA,GAAA,CAAA;EAFzE,WAAA,EAAA,MAAA;AAA0C,CAAA;KAsB1C,mBAAA,GAAsB,KAAA,CAAM,cARhC,CAAA,IAAA,CAAA;cAUK;;;;KAA2C,sBAAmB,mBAAA,CAAA,GAAA,CAAA;aAtBT,EAAA,MAAA;;KAgCtD,mBAAA,GAAsB,SAAA,CAAU,cAhCyC,CAAA,GAAA,CAAA;AAAA,cAkCxE,cAdkB,EAAA;EAElB,CAAA;IAAA,SAAA;IAAA,MAEL;IAAA,GAAA;EAAA,CAAA,EAUwD,mBAVxD,CAAA,EAU2E,KAAA,CAAA,YAV3E,CAAA,OAAA,EAAA,MAAA,GAU2E,KAAA,CAAA,qBAV3E,CAAA,GAAA,CAAA,CAAA;EAAA,WAAA,EAAA,MAAA;;KA8BI,mBAAA,GAAsB,KAAA,CAAM,cAhCgB,CAAA,MAAA,CAAA;cAkC3C,cAlC8D,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAkCnB,mBAlCmB,CAAA,EAkCA,mBAAA,CAAA,GAAA,CAAA,OAlCA;EAU/D,WAAA,EAAA,MAAA;AAA8C,CAAA;KAwC9C,wBAAA,GAA2B,KAAA,CAAM,cA1BrC,CAAA,IAAA,CAAA;cA4BK;;;;;KAIH,2BAAwB,mBAAA,CAAA,GAAA,CAAA;aA5C8B,EAAA,MAAA;;KA+DpD,uBAAA,GAA0B,KAAA,CAAM,cA/DuC,CAAA,IAAA,CAAA;cAiEtE,kBAjEsE,EAAA;EAoBvE,CAAA;IAAA,SAAA;IAAA,QAAmB;IAAA,GAAA;EAAuB,CAApB,EAiDxB,uBAjD4C,CAAA,EAiDrB,mBAAA,CAAA,GAAA,CAAA,OAjDqB;EAEzC,WAAA,EAAA,MAQL;CAAA"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { cn } from "./lib/utils.js";
|
|
2
|
+
import "react";
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
import { useRender } from "@base-ui/react/use-render";
|
|
5
|
+
|
|
6
|
+
//#region src/components/breadcrumb.tsx
|
|
7
|
+
const BreadcrumbRoot = ({ className, children, ...props }) => {
|
|
8
|
+
return /* @__PURE__ */ jsx("nav", {
|
|
9
|
+
"aria-label": "Breadcrumb",
|
|
10
|
+
className,
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsx("ol", {
|
|
13
|
+
className: cn("flex flex-wrap items-center gap-1.5 text-sm text-muted-foreground wrap-break-word sm:gap-2.5"),
|
|
14
|
+
children
|
|
15
|
+
})
|
|
16
|
+
});
|
|
17
|
+
};
|
|
18
|
+
BreadcrumbRoot.displayName = "BreadcrumbRoot";
|
|
19
|
+
const BreadcrumbItem = ({ className, ...props }) => {
|
|
20
|
+
return /* @__PURE__ */ jsx("li", {
|
|
21
|
+
className: cn("inline-flex items-center gap-1.5", className),
|
|
22
|
+
...props
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
BreadcrumbItem.displayName = "BreadcrumbItem";
|
|
26
|
+
const BreadcrumbLink = ({ className, render, ...props }) => {
|
|
27
|
+
return useRender({
|
|
28
|
+
render,
|
|
29
|
+
props: {
|
|
30
|
+
...props,
|
|
31
|
+
className: cn("flex items-center gap-1.5 text-muted-foreground transition-colors hover:text-foreground", className)
|
|
32
|
+
},
|
|
33
|
+
defaultTagName: "a"
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
BreadcrumbLink.displayName = "BreadcrumbLink";
|
|
37
|
+
const BreadcrumbPage = ({ className, ...props }) => {
|
|
38
|
+
return /* @__PURE__ */ jsx("span", {
|
|
39
|
+
"aria-current": "page",
|
|
40
|
+
className: cn("font-normal text-foreground", className),
|
|
41
|
+
...props
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
BreadcrumbPage.displayName = "BreadcrumbPage";
|
|
45
|
+
const BreadcrumbSeparator = ({ className, children, ...props }) => {
|
|
46
|
+
return /* @__PURE__ */ jsx("li", {
|
|
47
|
+
role: "presentation",
|
|
48
|
+
"aria-hidden": "true",
|
|
49
|
+
className: cn("[&>svg]:size-3.5", className),
|
|
50
|
+
...props,
|
|
51
|
+
children: children ?? "/"
|
|
52
|
+
});
|
|
53
|
+
};
|
|
54
|
+
BreadcrumbSeparator.displayName = "BreadcrumbSeparator";
|
|
55
|
+
const BreadcrumbEllipsis = ({ className, children, ...props }) => {
|
|
56
|
+
return /* @__PURE__ */ jsx("li", {
|
|
57
|
+
role: "presentation",
|
|
58
|
+
"aria-hidden": "true",
|
|
59
|
+
className: cn("flex items-center justify-center", className),
|
|
60
|
+
...props,
|
|
61
|
+
children: children ?? "..."
|
|
62
|
+
});
|
|
63
|
+
};
|
|
64
|
+
BreadcrumbEllipsis.displayName = "BreadcrumbEllipsis";
|
|
65
|
+
|
|
66
|
+
//#endregion
|
|
67
|
+
export { BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbRoot, BreadcrumbSeparator };
|
|
68
|
+
//# sourceMappingURL=breadcrumb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"breadcrumb.js","names":[],"sources":["../src/components/breadcrumb.tsx"],"sourcesContent":["import { useRender } from '@base-ui/react/use-render'\nimport * as React from 'react'\n\nimport { cn } from '../lib/utils'\n\n// ============================================================================\n// BreadcrumbRoot\n// ============================================================================\n\ntype BreadcrumbRootProps = React.ComponentProps<'nav'>\n\nconst BreadcrumbRoot = ({ className, children, ...props }: BreadcrumbRootProps) => {\n return (\n <nav aria-label='Breadcrumb' className={className} {...props}>\n <ol\n className={cn(\n 'flex flex-wrap items-center gap-1.5 text-sm text-muted-foreground wrap-break-word sm:gap-2.5',\n )}\n >\n {children}\n </ol>\n </nav>\n )\n}\n\nBreadcrumbRoot.displayName = 'BreadcrumbRoot'\n\n// ============================================================================\n// BreadcrumbItem\n// ============================================================================\n\ntype BreadcrumbItemProps = React.ComponentProps<'li'>\n\nconst BreadcrumbItem = ({ className, ...props }: BreadcrumbItemProps) => {\n return <li className={cn('inline-flex items-center gap-1.5', className)} {...props} />\n}\n\nBreadcrumbItem.displayName = 'BreadcrumbItem'\n\n// ============================================================================\n// BreadcrumbLink\n// ============================================================================\n\ntype BreadcrumbLinkProps = useRender.ComponentProps<'a'>\n\nconst BreadcrumbLink = ({ className, render, ...props }: BreadcrumbLinkProps) => {\n return useRender({\n render,\n props: {\n ...props,\n className: cn(\n 'flex items-center gap-1.5 text-muted-foreground transition-colors hover:text-foreground',\n className,\n ),\n },\n defaultTagName: 'a',\n })\n}\n\nBreadcrumbLink.displayName = 'BreadcrumbLink'\n\n// ============================================================================\n// BreadcrumbPage\n// ============================================================================\n\ntype BreadcrumbPageProps = React.ComponentProps<'span'>\n\nconst BreadcrumbPage = ({ className, ...props }: BreadcrumbPageProps) => {\n return (\n <span\n aria-current='page'\n className={cn('font-normal text-foreground', className)}\n {...props}\n />\n )\n}\n\nBreadcrumbPage.displayName = 'BreadcrumbPage'\n\n// ============================================================================\n// BreadcrumbSeparator\n// ============================================================================\n\ntype BreadcrumbSeparatorProps = React.ComponentProps<'li'>\n\nconst BreadcrumbSeparator = ({\n className,\n children,\n ...props\n}: BreadcrumbSeparatorProps) => {\n return (\n <li\n role='presentation'\n aria-hidden='true'\n className={cn('[&>svg]:size-3.5', className)}\n {...props}\n >\n {children ?? '/'}\n </li>\n )\n}\n\nBreadcrumbSeparator.displayName = 'BreadcrumbSeparator'\n\n// ============================================================================\n// BreadcrumbEllipsis\n// ============================================================================\n\ntype BreadcrumbEllipsisProps = React.ComponentProps<'li'>\n\nconst BreadcrumbEllipsis = ({\n className,\n children,\n ...props\n}: BreadcrumbEllipsisProps) => {\n return (\n <li\n role='presentation'\n aria-hidden='true'\n className={cn('flex items-center justify-center', className)}\n {...props}\n >\n {children ?? '...'}\n </li>\n )\n}\n\nBreadcrumbEllipsis.displayName = 'BreadcrumbEllipsis'\n\n// ============================================================================\n// Exports\n// ============================================================================\n\nexport {\n BreadcrumbRoot,\n BreadcrumbItem,\n BreadcrumbLink,\n BreadcrumbPage,\n BreadcrumbSeparator,\n BreadcrumbEllipsis,\n}\n\nexport type {\n BreadcrumbRootProps,\n BreadcrumbItemProps,\n BreadcrumbLinkProps,\n BreadcrumbPageProps,\n BreadcrumbSeparatorProps,\n BreadcrumbEllipsisProps,\n}\n"],"mappings":";;;;;;AAWA,MAAM,kBAAkB,EAAE,WAAW,UAAU,GAAG,YAAiC;AACjF,QACE,oBAAC;EAAI,cAAW;EAAwB;EAAW,GAAI;YACrD,oBAAC;GACC,WAAW,GACT,+FACD;GAEA;IACE;GACD;;AAIV,eAAe,cAAc;AAQ7B,MAAM,kBAAkB,EAAE,WAAW,GAAG,YAAiC;AACvE,QAAO,oBAAC;EAAG,WAAW,GAAG,oCAAoC,UAAU;EAAE,GAAI;GAAS;;AAGxF,eAAe,cAAc;AAQ7B,MAAM,kBAAkB,EAAE,WAAW,QAAQ,GAAG,YAAiC;AAC/E,QAAO,UAAU;EACf;EACA,OAAO;GACL,GAAG;GACH,WAAW,GACT,2FACA,UACD;GACF;EACD,gBAAgB;EACjB,CAAC;;AAGJ,eAAe,cAAc;AAQ7B,MAAM,kBAAkB,EAAE,WAAW,GAAG,YAAiC;AACvE,QACE,oBAAC;EACC,gBAAa;EACb,WAAW,GAAG,+BAA+B,UAAU;EACvD,GAAI;GACJ;;AAIN,eAAe,cAAc;AAQ7B,MAAM,uBAAuB,EAC3B,WACA,UACA,GAAG,YAC2B;AAC9B,QACE,oBAAC;EACC,MAAK;EACL,eAAY;EACZ,WAAW,GAAG,oBAAoB,UAAU;EAC5C,GAAI;YAEH,YAAY;GACV;;AAIT,oBAAoB,cAAc;AAQlC,MAAM,sBAAsB,EAC1B,WACA,UACA,GAAG,YAC0B;AAC7B,QACE,oBAAC;EACC,MAAK;EACL,eAAY;EACZ,WAAW,GAAG,oCAAoC,UAAU;EAC5D,GAAI;YAEH,YAAY;GACV;;AAIT,mBAAmB,cAAc"}
|
package/dist/button.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ButtonSize, ButtonVariant } from "./lib/button-variants.js";
|
|
2
|
-
import { Button as Button$1 } from "@base-ui/react/button";
|
|
3
2
|
import * as React from "react";
|
|
4
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime15 from "react/jsx-runtime";
|
|
4
|
+
import { Button as Button$1 } from "@base-ui/react/button";
|
|
5
5
|
|
|
6
6
|
//#region src/components/button.d.ts
|
|
7
7
|
type ButtonProps = React.ComponentProps<typeof Button$1> & {
|
|
@@ -18,7 +18,7 @@ declare const Button: {
|
|
|
18
18
|
disabled,
|
|
19
19
|
children,
|
|
20
20
|
...props
|
|
21
|
-
}: ButtonProps):
|
|
21
|
+
}: ButtonProps): react_jsx_runtime15.JSX.Element;
|
|
22
22
|
displayName: string;
|
|
23
23
|
};
|
|
24
24
|
//#endregion
|
package/dist/button.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
|
-
import { buttonVariants } from "./lib/button-variants.js";
|
|
4
3
|
import { cn } from "./lib/utils.js";
|
|
5
|
-
import {
|
|
4
|
+
import { buttonVariants } from "./lib/button-variants.js";
|
|
6
5
|
import "react";
|
|
7
6
|
import { jsx } from "react/jsx-runtime";
|
|
7
|
+
import { Button as Button$1 } from "@base-ui/react/button";
|
|
8
8
|
|
|
9
9
|
//#region src/components/button.tsx
|
|
10
10
|
const Button = ({ className, variant, size, disabled, children, ...props }) => {
|
package/dist/calendar.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime50 from "react/jsx-runtime";
|
|
2
2
|
import { DayPickerProps } from "react-day-picker";
|
|
3
3
|
|
|
4
4
|
//#region src/components/calendar.d.ts
|
|
@@ -10,7 +10,7 @@ declare function Calendar({
|
|
|
10
10
|
classNames,
|
|
11
11
|
captionLayout,
|
|
12
12
|
...props
|
|
13
|
-
}: CalendarProps):
|
|
13
|
+
}: CalendarProps): react_jsx_runtime50.JSX.Element;
|
|
14
14
|
declare namespace Calendar {
|
|
15
15
|
var displayName: string;
|
|
16
16
|
}
|
package/dist/calendar.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
|
-
import { buttonVariants } from "./lib/button-variants.js";
|
|
4
3
|
import { cn } from "./lib/utils.js";
|
|
4
|
+
import { buttonVariants } from "./lib/button-variants.js";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
import { DayPicker } from "react-day-picker";
|
|
7
7
|
|
package/dist/card.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
1
|
import { VariantProps } from "class-variance-authority";
|
|
3
|
-
import * as
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import * as react_jsx_runtime63 from "react/jsx-runtime";
|
|
4
4
|
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/card.d.ts
|
|
@@ -23,7 +23,7 @@ declare const CardMedia: {
|
|
|
23
23
|
({
|
|
24
24
|
className,
|
|
25
25
|
...props
|
|
26
|
-
}: CardMediaProps):
|
|
26
|
+
}: CardMediaProps): react_jsx_runtime63.JSX.Element;
|
|
27
27
|
displayName: string;
|
|
28
28
|
};
|
|
29
29
|
type CardHeaderProps = React.ComponentProps<'header'>;
|
|
@@ -34,7 +34,7 @@ declare const CardHeader: {
|
|
|
34
34
|
({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: CardHeaderProps):
|
|
37
|
+
}: CardHeaderProps): react_jsx_runtime63.JSX.Element;
|
|
38
38
|
displayName: string;
|
|
39
39
|
};
|
|
40
40
|
type HeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
@@ -51,7 +51,7 @@ declare const CardTitle: {
|
|
|
51
51
|
as: Component,
|
|
52
52
|
className,
|
|
53
53
|
...props
|
|
54
|
-
}: CardTitleProps):
|
|
54
|
+
}: CardTitleProps): react_jsx_runtime63.JSX.Element;
|
|
55
55
|
displayName: string;
|
|
56
56
|
};
|
|
57
57
|
type CardDescriptionProps = React.ComponentProps<'p'>;
|
|
@@ -62,7 +62,7 @@ declare const CardDescription: {
|
|
|
62
62
|
({
|
|
63
63
|
className,
|
|
64
64
|
...props
|
|
65
|
-
}: CardDescriptionProps):
|
|
65
|
+
}: CardDescriptionProps): react_jsx_runtime63.JSX.Element;
|
|
66
66
|
displayName: string;
|
|
67
67
|
};
|
|
68
68
|
type CardContentProps = React.ComponentProps<'div'>;
|
|
@@ -73,7 +73,7 @@ declare const CardContent: {
|
|
|
73
73
|
({
|
|
74
74
|
className,
|
|
75
75
|
...props
|
|
76
|
-
}: CardContentProps):
|
|
76
|
+
}: CardContentProps): react_jsx_runtime63.JSX.Element;
|
|
77
77
|
displayName: string;
|
|
78
78
|
};
|
|
79
79
|
type CardSectionProps = React.ComponentProps<'section'>;
|
|
@@ -85,7 +85,7 @@ declare const CardSection: {
|
|
|
85
85
|
({
|
|
86
86
|
className,
|
|
87
87
|
...props
|
|
88
|
-
}: CardSectionProps):
|
|
88
|
+
}: CardSectionProps): react_jsx_runtime63.JSX.Element;
|
|
89
89
|
displayName: string;
|
|
90
90
|
};
|
|
91
91
|
type CardFooterProps = React.ComponentProps<'footer'>;
|
|
@@ -97,7 +97,7 @@ declare const CardFooter: {
|
|
|
97
97
|
({
|
|
98
98
|
className,
|
|
99
99
|
...props
|
|
100
|
-
}: CardFooterProps):
|
|
100
|
+
}: CardFooterProps): react_jsx_runtime63.JSX.Element;
|
|
101
101
|
displayName: string;
|
|
102
102
|
};
|
|
103
103
|
//#endregion
|
package/dist/card.js
CHANGED
package/dist/checkbox-group.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime72 from "react/jsx-runtime";
|
|
3
3
|
import { CheckboxGroup } from "@base-ui/react/checkbox-group";
|
|
4
4
|
|
|
5
5
|
//#region src/components/checkbox-group.d.ts
|
|
@@ -8,7 +8,7 @@ declare const CheckboxGroupRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: CheckboxGroupRootProps):
|
|
11
|
+
}: CheckboxGroupRootProps): react_jsx_runtime72.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
//#endregion
|
package/dist/checkbox.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime70 from "react/jsx-runtime";
|
|
3
3
|
import { Checkbox } from "@base-ui/react/checkbox";
|
|
4
4
|
|
|
5
5
|
//#region src/components/checkbox.d.ts
|
|
@@ -8,7 +8,7 @@ declare const CheckboxRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: CheckboxRootProps):
|
|
11
|
+
}: CheckboxRootProps): react_jsx_runtime70.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
type CheckboxIndicatorProps = React.ComponentProps<typeof Checkbox.Indicator>;
|
|
@@ -17,7 +17,7 @@ declare const CheckboxIndicator: {
|
|
|
17
17
|
className,
|
|
18
18
|
children,
|
|
19
19
|
...props
|
|
20
|
-
}: CheckboxIndicatorProps):
|
|
20
|
+
}: CheckboxIndicatorProps): react_jsx_runtime70.JSX.Element;
|
|
21
21
|
displayName: string;
|
|
22
22
|
};
|
|
23
23
|
//#endregion
|
package/dist/collapsible.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
import { Collapsible } from "@base-ui/react/collapsible";
|
|
4
4
|
|
|
5
5
|
//#region src/components/collapsible.d.ts
|
|
@@ -8,7 +8,7 @@ declare const CollapsibleRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: CollapsibleRootProps):
|
|
11
|
+
}: CollapsibleRootProps): react_jsx_runtime0.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
type CollapsibleTriggerProps = React.ComponentProps<typeof Collapsible.Trigger>;
|
|
@@ -16,7 +16,7 @@ declare const CollapsibleTrigger: {
|
|
|
16
16
|
({
|
|
17
17
|
className,
|
|
18
18
|
...props
|
|
19
|
-
}: CollapsibleTriggerProps):
|
|
19
|
+
}: CollapsibleTriggerProps): react_jsx_runtime0.JSX.Element;
|
|
20
20
|
displayName: string;
|
|
21
21
|
};
|
|
22
22
|
type CollapsiblePanelProps = React.ComponentProps<typeof Collapsible.Panel>;
|
|
@@ -24,7 +24,7 @@ declare const CollapsiblePanel: {
|
|
|
24
24
|
({
|
|
25
25
|
className,
|
|
26
26
|
...props
|
|
27
|
-
}: CollapsiblePanelProps):
|
|
27
|
+
}: CollapsiblePanelProps): react_jsx_runtime0.JSX.Element;
|
|
28
28
|
displayName: string;
|
|
29
29
|
};
|
|
30
30
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collapsible.d.ts","names":[],"sources":["../src/components/collapsible.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,oBAAA,GAAuB,KAAA,CAAM,sBAAsB,WAAA,CAAgB;cAElE;;;;KAA4C,uBAAoB,
|
|
1
|
+
{"version":3,"file":"collapsible.d.ts","names":[],"sources":["../src/components/collapsible.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,oBAAA,GAAuB,KAAA,CAAM,sBAAsB,WAAA,CAAgB;cAElE;;;;KAA4C,uBAAoB,kBAAA,CAAA,GAAA,CAAA;EAFjE,WAAA,EAAA,MAAA;CAAoB;KAYpB,uBAAA,GAA0B,KAAA,CAAM,cAZmC,CAAA,OAYb,WAAA,CAAgB,OAZH,CAAA;cAclE,kBAd4B,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcK,uBAdL,CAAA,EAc4B,kBAAA,CAAA,GAAA,CAAA,OAd5B;EAE1C,WAAA,EAAA,MAEL;CAAA;KAyBI,qBAAA,GAAwB,KAAA,CAAM,sBAAsB,WAAA,CAAgB;cAEnE,gBA7B4C,EAAA;;IAAoB,SAAA;IAAA,GAAA;EAAA,CAAA,EA6BnB,qBA7BmB,CAAA,EA6BE,kBAAA,CAAA,GAAA,CAAA,OA7BF;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA"}
|
package/dist/combobox.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime73 from "react/jsx-runtime";
|
|
3
3
|
import { Combobox as BaseCombobox, ComboboxRootProps as ComboboxRootProps$1 } from "@base-ui/react/combobox";
|
|
4
4
|
import * as _base_ui_react0 from "@base-ui/react";
|
|
5
5
|
|
|
6
6
|
//#region src/components/combobox.d.ts
|
|
7
|
-
declare function ComboboxRoot<Value, Multiple extends boolean | undefined = false>(props: ComboboxRootProps$1<Value, Multiple>):
|
|
7
|
+
declare function ComboboxRoot<Value, Multiple extends boolean | undefined = false>(props: ComboboxRootProps$1<Value, Multiple>): react_jsx_runtime73.JSX.Element;
|
|
8
8
|
declare namespace ComboboxRoot {
|
|
9
9
|
var displayName: string;
|
|
10
10
|
}
|
|
11
11
|
type ComboboxRootProps<Value, Multiple extends boolean | undefined = false> = ComboboxRootProps$1<Value, Multiple>;
|
|
12
12
|
type ComboboxValueProps = React.ComponentProps<typeof BaseCombobox.Value>;
|
|
13
13
|
declare const ComboboxValue: {
|
|
14
|
-
(props: ComboboxValueProps):
|
|
14
|
+
(props: ComboboxValueProps): react_jsx_runtime73.JSX.Element;
|
|
15
15
|
displayName: string;
|
|
16
16
|
};
|
|
17
17
|
type ComboboxIconProps = React.ComponentProps<typeof BaseCombobox.Icon>;
|
|
@@ -19,7 +19,7 @@ declare const ComboboxIcon: {
|
|
|
19
19
|
({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: ComboboxIconProps):
|
|
22
|
+
}: ComboboxIconProps): react_jsx_runtime73.JSX.Element;
|
|
23
23
|
displayName: string;
|
|
24
24
|
};
|
|
25
25
|
type ComboboxInputProps = React.ComponentProps<typeof BaseCombobox.Input>;
|
|
@@ -27,7 +27,7 @@ declare const ComboboxInput: {
|
|
|
27
27
|
({
|
|
28
28
|
className,
|
|
29
29
|
...props
|
|
30
|
-
}: ComboboxInputProps):
|
|
30
|
+
}: ComboboxInputProps): react_jsx_runtime73.JSX.Element;
|
|
31
31
|
displayName: string;
|
|
32
32
|
};
|
|
33
33
|
type ComboboxControlProps = React.ComponentProps<'div'>;
|
|
@@ -35,7 +35,7 @@ declare const ComboboxControl: {
|
|
|
35
35
|
({
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: ComboboxControlProps):
|
|
38
|
+
}: ComboboxControlProps): react_jsx_runtime73.JSX.Element;
|
|
39
39
|
displayName: string;
|
|
40
40
|
};
|
|
41
41
|
type ComboboxClearProps = React.ComponentProps<typeof BaseCombobox.Clear>;
|
|
@@ -43,7 +43,7 @@ declare const ComboboxClear: {
|
|
|
43
43
|
({
|
|
44
44
|
className,
|
|
45
45
|
...props
|
|
46
|
-
}: ComboboxClearProps):
|
|
46
|
+
}: ComboboxClearProps): react_jsx_runtime73.JSX.Element;
|
|
47
47
|
displayName: string;
|
|
48
48
|
};
|
|
49
49
|
type ComboboxTriggerProps = React.ComponentProps<typeof BaseCombobox.Trigger>;
|
|
@@ -51,7 +51,7 @@ declare const ComboboxTrigger: {
|
|
|
51
51
|
({
|
|
52
52
|
className,
|
|
53
53
|
...props
|
|
54
|
-
}: ComboboxTriggerProps):
|
|
54
|
+
}: ComboboxTriggerProps): react_jsx_runtime73.JSX.Element;
|
|
55
55
|
displayName: string;
|
|
56
56
|
};
|
|
57
57
|
type ComboboxBackdropProps = React.ComponentProps<typeof BaseCombobox.Backdrop>;
|
|
@@ -59,12 +59,12 @@ declare const ComboboxBackdrop: {
|
|
|
59
59
|
({
|
|
60
60
|
className,
|
|
61
61
|
...props
|
|
62
|
-
}: ComboboxBackdropProps):
|
|
62
|
+
}: ComboboxBackdropProps): react_jsx_runtime73.JSX.Element;
|
|
63
63
|
displayName: string;
|
|
64
64
|
};
|
|
65
65
|
type ComboboxPortalProps = React.ComponentProps<typeof BaseCombobox.Portal>;
|
|
66
66
|
declare const ComboboxPortal: {
|
|
67
|
-
(props: ComboboxPortalProps):
|
|
67
|
+
(props: ComboboxPortalProps): react_jsx_runtime73.JSX.Element;
|
|
68
68
|
displayName: string;
|
|
69
69
|
};
|
|
70
70
|
type ComboboxPositionerProps = React.ComponentProps<typeof BaseCombobox.Positioner>;
|
|
@@ -72,7 +72,7 @@ declare const ComboboxPositioner: {
|
|
|
72
72
|
({
|
|
73
73
|
className,
|
|
74
74
|
...props
|
|
75
|
-
}: ComboboxPositionerProps):
|
|
75
|
+
}: ComboboxPositionerProps): react_jsx_runtime73.JSX.Element;
|
|
76
76
|
displayName: string;
|
|
77
77
|
};
|
|
78
78
|
type ComboboxPopupProps = React.ComponentProps<typeof BaseCombobox.Popup>;
|
|
@@ -80,7 +80,7 @@ declare const ComboboxPopup: {
|
|
|
80
80
|
({
|
|
81
81
|
className,
|
|
82
82
|
...props
|
|
83
|
-
}: ComboboxPopupProps):
|
|
83
|
+
}: ComboboxPopupProps): react_jsx_runtime73.JSX.Element;
|
|
84
84
|
displayName: string;
|
|
85
85
|
};
|
|
86
86
|
type ComboboxListProps = React.ComponentProps<typeof BaseCombobox.List>;
|
|
@@ -88,7 +88,7 @@ declare const ComboboxList: {
|
|
|
88
88
|
({
|
|
89
89
|
className,
|
|
90
90
|
...props
|
|
91
|
-
}: ComboboxListProps):
|
|
91
|
+
}: ComboboxListProps): react_jsx_runtime73.JSX.Element;
|
|
92
92
|
displayName: string;
|
|
93
93
|
};
|
|
94
94
|
type ComboboxEmptyProps = React.ComponentProps<typeof BaseCombobox.Empty>;
|
|
@@ -96,7 +96,7 @@ declare const ComboboxEmpty: {
|
|
|
96
96
|
({
|
|
97
97
|
className,
|
|
98
98
|
...props
|
|
99
|
-
}: ComboboxEmptyProps):
|
|
99
|
+
}: ComboboxEmptyProps): react_jsx_runtime73.JSX.Element;
|
|
100
100
|
displayName: string;
|
|
101
101
|
};
|
|
102
102
|
type ComboboxItemProps = React.ComponentProps<typeof BaseCombobox.Item>;
|
|
@@ -104,7 +104,7 @@ declare const ComboboxItem: {
|
|
|
104
104
|
({
|
|
105
105
|
className,
|
|
106
106
|
...props
|
|
107
|
-
}: ComboboxItemProps):
|
|
107
|
+
}: ComboboxItemProps): react_jsx_runtime73.JSX.Element;
|
|
108
108
|
displayName: string;
|
|
109
109
|
};
|
|
110
110
|
type ComboboxItemTextProps = React.ComponentProps<'span'>;
|
|
@@ -112,7 +112,7 @@ declare const ComboboxItemText: {
|
|
|
112
112
|
({
|
|
113
113
|
className,
|
|
114
114
|
...props
|
|
115
|
-
}: ComboboxItemTextProps):
|
|
115
|
+
}: ComboboxItemTextProps): react_jsx_runtime73.JSX.Element;
|
|
116
116
|
displayName: string;
|
|
117
117
|
};
|
|
118
118
|
type ComboboxItemIndicatorProps = React.ComponentProps<typeof BaseCombobox.ItemIndicator>;
|
|
@@ -120,7 +120,7 @@ declare const ComboboxItemIndicator: {
|
|
|
120
120
|
({
|
|
121
121
|
className,
|
|
122
122
|
...props
|
|
123
|
-
}: ComboboxItemIndicatorProps):
|
|
123
|
+
}: ComboboxItemIndicatorProps): react_jsx_runtime73.JSX.Element;
|
|
124
124
|
displayName: string;
|
|
125
125
|
};
|
|
126
126
|
type ComboboxGroupProps = React.ComponentProps<typeof BaseCombobox.Group>;
|
|
@@ -128,7 +128,7 @@ declare const ComboboxGroup: {
|
|
|
128
128
|
({
|
|
129
129
|
className,
|
|
130
130
|
...props
|
|
131
|
-
}: ComboboxGroupProps):
|
|
131
|
+
}: ComboboxGroupProps): react_jsx_runtime73.JSX.Element;
|
|
132
132
|
displayName: string;
|
|
133
133
|
};
|
|
134
134
|
type ComboboxGroupLabelProps = React.ComponentProps<typeof BaseCombobox.GroupLabel>;
|
|
@@ -136,12 +136,12 @@ declare const ComboboxGroupLabel: {
|
|
|
136
136
|
({
|
|
137
137
|
className,
|
|
138
138
|
...props
|
|
139
|
-
}: ComboboxGroupLabelProps):
|
|
139
|
+
}: ComboboxGroupLabelProps): react_jsx_runtime73.JSX.Element;
|
|
140
140
|
displayName: string;
|
|
141
141
|
};
|
|
142
142
|
type ComboboxCollectionProps = React.ComponentProps<typeof BaseCombobox.Collection>;
|
|
143
143
|
declare const ComboboxCollection: {
|
|
144
|
-
(props: ComboboxCollectionProps):
|
|
144
|
+
(props: ComboboxCollectionProps): react_jsx_runtime73.JSX.Element;
|
|
145
145
|
displayName: string;
|
|
146
146
|
};
|
|
147
147
|
type ComboboxSeparatorProps = React.ComponentProps<typeof BaseCombobox.Separator>;
|
|
@@ -149,7 +149,7 @@ declare const ComboboxSeparator: {
|
|
|
149
149
|
({
|
|
150
150
|
className,
|
|
151
151
|
...props
|
|
152
|
-
}: ComboboxSeparatorProps):
|
|
152
|
+
}: ComboboxSeparatorProps): react_jsx_runtime73.JSX.Element;
|
|
153
153
|
displayName: string;
|
|
154
154
|
};
|
|
155
155
|
type ComboboxStatusProps = React.ComponentProps<typeof BaseCombobox.Status>;
|
|
@@ -157,7 +157,7 @@ declare const ComboboxStatus: {
|
|
|
157
157
|
({
|
|
158
158
|
className,
|
|
159
159
|
...props
|
|
160
|
-
}: ComboboxStatusProps):
|
|
160
|
+
}: ComboboxStatusProps): react_jsx_runtime73.JSX.Element;
|
|
161
161
|
displayName: string;
|
|
162
162
|
};
|
|
163
163
|
type ComboboxChipsProps = React.ComponentProps<typeof BaseCombobox.Chips>;
|
|
@@ -167,7 +167,7 @@ declare const ComboboxChip: {
|
|
|
167
167
|
({
|
|
168
168
|
className,
|
|
169
169
|
...props
|
|
170
|
-
}: ComboboxChipProps):
|
|
170
|
+
}: ComboboxChipProps): react_jsx_runtime73.JSX.Element;
|
|
171
171
|
displayName: string;
|
|
172
172
|
};
|
|
173
173
|
type ComboboxChipRemoveProps = React.ComponentProps<typeof BaseCombobox.ChipRemove>;
|
|
@@ -175,7 +175,7 @@ declare const ComboboxChipRemove: {
|
|
|
175
175
|
({
|
|
176
176
|
className,
|
|
177
177
|
...props
|
|
178
|
-
}: ComboboxChipRemoveProps):
|
|
178
|
+
}: ComboboxChipRemoveProps): react_jsx_runtime73.JSX.Element;
|
|
179
179
|
displayName: string;
|
|
180
180
|
};
|
|
181
181
|
type ComboboxArrowProps = React.ComponentProps<typeof BaseCombobox.Arrow>;
|
|
@@ -183,7 +183,7 @@ declare const ComboboxArrow: {
|
|
|
183
183
|
({
|
|
184
184
|
className,
|
|
185
185
|
...props
|
|
186
|
-
}: ComboboxArrowProps):
|
|
186
|
+
}: ComboboxArrowProps): react_jsx_runtime73.JSX.Element;
|
|
187
187
|
displayName: string;
|
|
188
188
|
};
|
|
189
189
|
//#endregion
|
package/dist/combobox.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"combobox.d.ts","names":[],"sources":["../src/components/combobox.tsx"],"sourcesContent":[],"mappings":";;;;;;iBAeS,yEACA,oBAAsB,OAAO,YAAS,
|
|
1
|
+
{"version":3,"file":"combobox.d.ts","names":[],"sources":["../src/components/combobox.tsx"],"sourcesContent":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChartConfig } from "./types.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime301 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/components/chart/context.d.ts
|
|
6
6
|
type ChartRootProps = React.ComponentProps<'div'> & {
|
|
@@ -12,7 +12,7 @@ declare function ChartRoot({
|
|
|
12
12
|
children,
|
|
13
13
|
style,
|
|
14
14
|
...props
|
|
15
|
-
}: ChartRootProps):
|
|
15
|
+
}: ChartRootProps): react_jsx_runtime301.JSX.Element;
|
|
16
16
|
declare namespace ChartRoot {
|
|
17
17
|
var displayName: string;
|
|
18
18
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime300 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/chart/legend.d.ts
|
|
4
4
|
type ChartLegendContentProps = {
|
|
@@ -16,7 +16,7 @@ declare function ChartLegendContent({
|
|
|
16
16
|
className,
|
|
17
17
|
nameKey,
|
|
18
18
|
verticalAlign
|
|
19
|
-
}: ChartLegendContentProps):
|
|
19
|
+
}: ChartLegendContentProps): react_jsx_runtime300.JSX.Element | null;
|
|
20
20
|
declare namespace ChartLegendContent {
|
|
21
21
|
var displayName: string;
|
|
22
22
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime302 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/chart/tooltip.d.ts
|
|
5
5
|
type IndicatorType = 'dot' | 'line' | 'dashed';
|
|
@@ -49,7 +49,7 @@ declare function ChartTooltipContent({
|
|
|
49
49
|
className,
|
|
50
50
|
labelClassName,
|
|
51
51
|
formatter
|
|
52
|
-
}: ChartTooltipContentProps):
|
|
52
|
+
}: ChartTooltipContentProps): react_jsx_runtime302.JSX.Element | null;
|
|
53
53
|
declare namespace ChartTooltipContent {
|
|
54
54
|
var displayName: string;
|
|
55
55
|
}
|