@pos-360/horizon 0.24.0 → 0.25.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/{chunk-VELIN34G.js → chunk-3LLPK34Q.js} +160 -78
- package/dist/chunk-3LLPK34Q.js.map +1 -0
- package/dist/{chunk-252FLGXZ.mjs → chunk-BEC5OZB2.mjs} +12 -10
- package/dist/chunk-BEC5OZB2.mjs.map +1 -0
- package/dist/{chunk-3TY2CM2C.mjs → chunk-BFDGIY6V.mjs} +157 -79
- package/dist/chunk-BFDGIY6V.mjs.map +1 -0
- package/dist/{chunk-GF46A2DX.js → chunk-FBYLMSO3.js} +12 -10
- package/dist/chunk-FBYLMSO3.js.map +1 -0
- package/dist/enhanced.d.mts +56 -2
- package/dist/enhanced.d.ts +56 -2
- package/dist/enhanced.js +43 -27
- package/dist/enhanced.mjs +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +146 -130
- package/dist/index.mjs +2 -2
- package/dist/primitives.d.mts +8 -2
- package/dist/primitives.d.ts +8 -2
- package/dist/primitives.js +103 -103
- package/dist/primitives.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-252FLGXZ.mjs.map +0 -1
- package/dist/chunk-3TY2CM2C.mjs.map +0 -1
- package/dist/chunk-GF46A2DX.js.map +0 -1
- package/dist/chunk-VELIN34G.js.map +0 -1
package/dist/enhanced.d.ts
CHANGED
|
@@ -38,7 +38,8 @@ interface DashboardPanelProps {
|
|
|
38
38
|
children: ReactNode;
|
|
39
39
|
}
|
|
40
40
|
interface TrendData {
|
|
41
|
-
|
|
41
|
+
/** Percentage change. `null` means comparison denominator was zero — render as "N/A" or "New". */
|
|
42
|
+
value: number | null;
|
|
42
43
|
direction: "up" | "down" | "neutral";
|
|
43
44
|
label?: string;
|
|
44
45
|
}
|
|
@@ -230,6 +231,59 @@ interface DashboardContextValue {
|
|
|
230
231
|
declare const useDashboardContext: () => DashboardContextValue;
|
|
231
232
|
declare const Dashboard: React$1.ForwardRefExoticComponent<DashboardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
232
233
|
|
|
234
|
+
/**
|
|
235
|
+
* Intrinsic row heights for KpiCard components at the Dashboard default rowHeight=40.
|
|
236
|
+
* Use these to calculate DashboardPanel rowSpan programmatically.
|
|
237
|
+
*
|
|
238
|
+
* @example
|
|
239
|
+
* const rowSpan = PANEL_HEADER_ROWS + KPI_CARD_ROWS.group + Math.ceil(chartHeight / 40) + 1;
|
|
240
|
+
*/
|
|
241
|
+
declare const KPI_CARD_ROWS: {
|
|
242
|
+
/** A single standard KpiCard (~80px) */
|
|
243
|
+
readonly standard: 2;
|
|
244
|
+
/** The featured/hero variant (~110px) */
|
|
245
|
+
readonly featured: 3;
|
|
246
|
+
/**
|
|
247
|
+
* A KpiCardGroup with one featured card + one row of supporting cards (~250px).
|
|
248
|
+
* Add 2 for each additional row of supporting cards.
|
|
249
|
+
*/
|
|
250
|
+
readonly group: 6;
|
|
251
|
+
};
|
|
252
|
+
/** Header row cost of a LargePanel (title + controls bar, ~56px). */
|
|
253
|
+
declare const LARGE_PANEL_HEADER_ROWS = 1;
|
|
254
|
+
interface KpiCardProps {
|
|
255
|
+
/** Unique identifier — required when used inside KpiCardGroup */
|
|
256
|
+
id?: string;
|
|
257
|
+
label: string;
|
|
258
|
+
value: number | string;
|
|
259
|
+
prefix?: string;
|
|
260
|
+
suffix?: string;
|
|
261
|
+
trend?: TrendData;
|
|
262
|
+
size?: "sm" | "md" | "lg";
|
|
263
|
+
/**
|
|
264
|
+
* Hero metric treatment — open display, no card box, large typography.
|
|
265
|
+
* Prefer using `KpiCardGroup` with `featured` prop to guarantee
|
|
266
|
+
* only one card is featured at a time.
|
|
267
|
+
*/
|
|
268
|
+
featured?: boolean;
|
|
269
|
+
className?: string;
|
|
270
|
+
}
|
|
271
|
+
interface KpiCardGroupProps {
|
|
272
|
+
cards: (KpiCardProps & {
|
|
273
|
+
id: string;
|
|
274
|
+
})[];
|
|
275
|
+
/**
|
|
276
|
+
* ID of the one card to feature. Only one card can be featured at a time —
|
|
277
|
+
* this prop makes that constraint explicit and enforceable.
|
|
278
|
+
*/
|
|
279
|
+
featured?: string;
|
|
280
|
+
columns?: 2 | 3 | 4 | 5;
|
|
281
|
+
gap?: number;
|
|
282
|
+
className?: string;
|
|
283
|
+
}
|
|
284
|
+
declare function KpiCardGroup({ cards, featured, columns, gap, className, }: KpiCardGroupProps): react_jsx_runtime.JSX.Element;
|
|
285
|
+
declare function KpiCard({ label, value, prefix, suffix, trend, size, featured, className, }: KpiCardProps): react_jsx_runtime.JSX.Element;
|
|
286
|
+
|
|
233
287
|
declare const DashboardPanel: React$1.ForwardRefExoticComponent<DashboardPanelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
234
288
|
|
|
235
289
|
declare const CompactPanel: React$1.ForwardRefExoticComponent<CompactPanelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -458,4 +512,4 @@ declare const SideNavFooter: React$1.ForwardRefExoticComponent<SideNavFooterProp
|
|
|
458
512
|
|
|
459
513
|
declare const useSideNavContext: () => SideNavContextValue;
|
|
460
514
|
|
|
461
|
-
export { type AccentColor, AnimatedButton, type AnimatedButtonProps, type BarChartData, type Breakpoint, type ChartConfig, ChartRenderer, CompactPanel, type CompactPanelProps, Dashboard, DashboardPanel, type DashboardPanelProps, type DashboardProps, type DashboardTableRow, type DonutChartData, Input, type InputProps, LargePanel, type LargePanelChartProps, type LargePanelProps, type LargePanelStatsProps, type LargePanelTableProps, type LineChartData, MediumPanel, type MediumPanelProps, type MediumPanelTableProps, type ResponsiveValue, SideNav, type SideNavContextValue, SideNavFooter, type SideNavFooterProps, SideNavHeader, type SideNavHeaderProps, SideNavItem, type SideNavItemData, type SideNavItemProps, type SideNavProps, SideNavSection, type SideNavSectionData, type SideNavSectionProps, type StatData, StatDisplay, type TableCellValue, type TableColumn, type TableConfig, type TablePagination, TableRenderer, type Template, TemplateSelector, type TemplateSelectorProps, TextButton, type TextButtonProps, type TrendData, useDashboardContext, useSideNavContext };
|
|
515
|
+
export { type AccentColor, AnimatedButton, type AnimatedButtonProps, type BarChartData, type Breakpoint, type ChartConfig, ChartRenderer, CompactPanel, type CompactPanelProps, Dashboard, DashboardPanel, type DashboardPanelProps, type DashboardProps, type DashboardTableRow, type DonutChartData, Input, type InputProps, KPI_CARD_ROWS, KpiCard, KpiCardGroup, type KpiCardGroupProps, type KpiCardProps, LARGE_PANEL_HEADER_ROWS, LargePanel, type LargePanelChartProps, type LargePanelProps, type LargePanelStatsProps, type LargePanelTableProps, type LineChartData, MediumPanel, type MediumPanelProps, type MediumPanelTableProps, type ResponsiveValue, SideNav, type SideNavContextValue, SideNavFooter, type SideNavFooterProps, SideNavHeader, type SideNavHeaderProps, SideNavItem, type SideNavItemData, type SideNavItemProps, type SideNavProps, SideNavSection, type SideNavSectionData, type SideNavSectionProps, type StatData, StatDisplay, type TableCellValue, type TableColumn, type TableConfig, type TablePagination, TableRenderer, type Template, TemplateSelector, type TemplateSelectorProps, TextButton, type TextButtonProps, type TrendData, useDashboardContext, useSideNavContext };
|
package/dist/enhanced.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk3LLPK34Q_js = require('./chunk-3LLPK34Q.js');
|
|
4
4
|
require('./chunk-5XF7Y25B.js');
|
|
5
5
|
require('./chunk-GGM3MDFM.js');
|
|
6
6
|
|
|
@@ -8,107 +8,123 @@ require('./chunk-GGM3MDFM.js');
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "AnimatedButton", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunk3LLPK34Q_js.AnimatedButton; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "ChartRenderer", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunk3LLPK34Q_js.ChartRenderer; }
|
|
16
16
|
});
|
|
17
17
|
Object.defineProperty(exports, "CompactPanel", {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunk3LLPK34Q_js.CompactPanel; }
|
|
20
20
|
});
|
|
21
21
|
Object.defineProperty(exports, "Dashboard", {
|
|
22
22
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
23
|
+
get: function () { return chunk3LLPK34Q_js.Dashboard; }
|
|
24
24
|
});
|
|
25
25
|
Object.defineProperty(exports, "DashboardPanel", {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunk3LLPK34Q_js.DashboardPanel; }
|
|
28
28
|
});
|
|
29
29
|
Object.defineProperty(exports, "Globe", {
|
|
30
30
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
31
|
+
get: function () { return chunk3LLPK34Q_js.Globe; }
|
|
32
32
|
});
|
|
33
33
|
Object.defineProperty(exports, "Input", {
|
|
34
34
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
35
|
+
get: function () { return chunk3LLPK34Q_js.Input; }
|
|
36
|
+
});
|
|
37
|
+
Object.defineProperty(exports, "KPI_CARD_ROWS", {
|
|
38
|
+
enumerable: true,
|
|
39
|
+
get: function () { return chunk3LLPK34Q_js.KPI_CARD_ROWS; }
|
|
40
|
+
});
|
|
41
|
+
Object.defineProperty(exports, "KpiCard", {
|
|
42
|
+
enumerable: true,
|
|
43
|
+
get: function () { return chunk3LLPK34Q_js.KpiCard; }
|
|
44
|
+
});
|
|
45
|
+
Object.defineProperty(exports, "KpiCardGroup", {
|
|
46
|
+
enumerable: true,
|
|
47
|
+
get: function () { return chunk3LLPK34Q_js.KpiCardGroup; }
|
|
48
|
+
});
|
|
49
|
+
Object.defineProperty(exports, "LARGE_PANEL_HEADER_ROWS", {
|
|
50
|
+
enumerable: true,
|
|
51
|
+
get: function () { return chunk3LLPK34Q_js.LARGE_PANEL_HEADER_ROWS; }
|
|
36
52
|
});
|
|
37
53
|
Object.defineProperty(exports, "LargePanel", {
|
|
38
54
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
55
|
+
get: function () { return chunk3LLPK34Q_js.LargePanel; }
|
|
40
56
|
});
|
|
41
57
|
Object.defineProperty(exports, "MediumPanel", {
|
|
42
58
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
59
|
+
get: function () { return chunk3LLPK34Q_js.MediumPanel; }
|
|
44
60
|
});
|
|
45
61
|
Object.defineProperty(exports, "Moon", {
|
|
46
62
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
63
|
+
get: function () { return chunk3LLPK34Q_js.Moon; }
|
|
48
64
|
});
|
|
49
65
|
Object.defineProperty(exports, "Orbit", {
|
|
50
66
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
67
|
+
get: function () { return chunk3LLPK34Q_js.Orbit; }
|
|
52
68
|
});
|
|
53
69
|
Object.defineProperty(exports, "Rocket", {
|
|
54
70
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
71
|
+
get: function () { return chunk3LLPK34Q_js.Rocket; }
|
|
56
72
|
});
|
|
57
73
|
Object.defineProperty(exports, "SideNav", {
|
|
58
74
|
enumerable: true,
|
|
59
|
-
get: function () { return
|
|
75
|
+
get: function () { return chunk3LLPK34Q_js.SideNav; }
|
|
60
76
|
});
|
|
61
77
|
Object.defineProperty(exports, "SideNavFooter", {
|
|
62
78
|
enumerable: true,
|
|
63
|
-
get: function () { return
|
|
79
|
+
get: function () { return chunk3LLPK34Q_js.SideNavFooter; }
|
|
64
80
|
});
|
|
65
81
|
Object.defineProperty(exports, "SideNavHeader", {
|
|
66
82
|
enumerable: true,
|
|
67
|
-
get: function () { return
|
|
83
|
+
get: function () { return chunk3LLPK34Q_js.SideNavHeader; }
|
|
68
84
|
});
|
|
69
85
|
Object.defineProperty(exports, "SideNavItem", {
|
|
70
86
|
enumerable: true,
|
|
71
|
-
get: function () { return
|
|
87
|
+
get: function () { return chunk3LLPK34Q_js.SideNavItem; }
|
|
72
88
|
});
|
|
73
89
|
Object.defineProperty(exports, "SideNavSection", {
|
|
74
90
|
enumerable: true,
|
|
75
|
-
get: function () { return
|
|
91
|
+
get: function () { return chunk3LLPK34Q_js.SideNavSection; }
|
|
76
92
|
});
|
|
77
93
|
Object.defineProperty(exports, "Sparkles", {
|
|
78
94
|
enumerable: true,
|
|
79
|
-
get: function () { return
|
|
95
|
+
get: function () { return chunk3LLPK34Q_js.Sparkles; }
|
|
80
96
|
});
|
|
81
97
|
Object.defineProperty(exports, "Star", {
|
|
82
98
|
enumerable: true,
|
|
83
|
-
get: function () { return
|
|
99
|
+
get: function () { return chunk3LLPK34Q_js.Star; }
|
|
84
100
|
});
|
|
85
101
|
Object.defineProperty(exports, "StatDisplay", {
|
|
86
102
|
enumerable: true,
|
|
87
|
-
get: function () { return
|
|
103
|
+
get: function () { return chunk3LLPK34Q_js.StatDisplay; }
|
|
88
104
|
});
|
|
89
105
|
Object.defineProperty(exports, "TableRenderer", {
|
|
90
106
|
enumerable: true,
|
|
91
|
-
get: function () { return
|
|
107
|
+
get: function () { return chunk3LLPK34Q_js.TableRenderer; }
|
|
92
108
|
});
|
|
93
109
|
Object.defineProperty(exports, "TemplateSelector", {
|
|
94
110
|
enumerable: true,
|
|
95
|
-
get: function () { return
|
|
111
|
+
get: function () { return chunk3LLPK34Q_js.TemplateSelector; }
|
|
96
112
|
});
|
|
97
113
|
Object.defineProperty(exports, "TextButton", {
|
|
98
114
|
enumerable: true,
|
|
99
|
-
get: function () { return
|
|
115
|
+
get: function () { return chunk3LLPK34Q_js.TextButton; }
|
|
100
116
|
});
|
|
101
117
|
Object.defineProperty(exports, "Toast", {
|
|
102
118
|
enumerable: true,
|
|
103
|
-
get: function () { return
|
|
119
|
+
get: function () { return chunk3LLPK34Q_js.Toast; }
|
|
104
120
|
});
|
|
105
121
|
Object.defineProperty(exports, "useDashboardContext", {
|
|
106
122
|
enumerable: true,
|
|
107
|
-
get: function () { return
|
|
123
|
+
get: function () { return chunk3LLPK34Q_js.useDashboardContext; }
|
|
108
124
|
});
|
|
109
125
|
Object.defineProperty(exports, "useSideNavContext", {
|
|
110
126
|
enumerable: true,
|
|
111
|
-
get: function () { return
|
|
127
|
+
get: function () { return chunk3LLPK34Q_js.useSideNavContext; }
|
|
112
128
|
});
|
|
113
129
|
//# sourceMappingURL=enhanced.js.map
|
|
114
130
|
//# sourceMappingURL=enhanced.js.map
|
package/dist/enhanced.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AnimatedButton, ChartRenderer, CompactPanel, Dashboard, DashboardPanel, Globe, Input, LargePanel, MediumPanel, Moon, Orbit, Rocket, SideNav, SideNavFooter, SideNavHeader, SideNavItem, SideNavSection, Sparkles, Star, StatDisplay, TableRenderer, TemplateSelector, TextButton, Toast, useDashboardContext, useSideNavContext } from './chunk-
|
|
1
|
+
export { AnimatedButton, ChartRenderer, CompactPanel, Dashboard, DashboardPanel, Globe, Input, KPI_CARD_ROWS, KpiCard, KpiCardGroup, LARGE_PANEL_HEADER_ROWS, LargePanel, MediumPanel, Moon, Orbit, Rocket, SideNav, SideNavFooter, SideNavHeader, SideNavItem, SideNavSection, Sparkles, Star, StatDisplay, TableRenderer, TemplateSelector, TextButton, Toast, useDashboardContext, useSideNavContext } from './chunk-BFDGIY6V.mjs';
|
|
2
2
|
import './chunk-UQ66UPWH.mjs';
|
|
3
3
|
import './chunk-WFBSFUC6.mjs';
|
|
4
4
|
//# sourceMappingURL=enhanced.mjs.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { ActionColumn, Badge, BadgeProps, Button, ButtonProps, Caption, CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, CodeProps, ColumnDef, ColumnSelection, ColumnSelectionProps, ComparisonPeriod, DEFAULT_COMPARISON_PERIODS, DEFAULT_PRESETS, DateRange, DateRangePicker, DateRangePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormControlProps, FormDescription, FormDescriptionProps, FormField, FormFieldProps, FormLabel, FormLabelProps, FormMessage, FormMessageProps, FormProps, Heading, HeadingProps, Label, LabelProps, PeriodComparisonSelector, PeriodComparisonSelectorProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PresetOption, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, SwitchProps, Table, TableBody, TableCaption, TableCell, TableCellProps, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, TabsVariant, Text, TextProps, Textarea, TextareaProps, Toggle, ToggleOption, ToggleProps, ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection } from './primitives.mjs';
|
|
1
|
+
export { ActionColumn, Badge, BadgeProps, Button, ButtonProps, Caption, CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, CodeProps, ColumnDef, ColumnSelection, ColumnSelectionProps, ComparisonPeriod, DEFAULT_COMPARISON_PERIODS, DEFAULT_PRESETS, DateRange, DateRangePicker, DateRangePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormControlProps, FormDescription, FormDescriptionProps, FormField, FormFieldProps, FormLabel, FormLabelProps, FormMessage, FormMessageProps, FormProps, Heading, HeadingProps, Label, LabelProps, PeriodComparisonSelector, PeriodComparisonSelectorProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PresetOption, PresetSection, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, SwitchProps, Table, TableBody, TableCaption, TableCell, TableCellProps, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, TabsVariant, Text, TextProps, Textarea, TextareaProps, Toggle, ToggleOption, ToggleProps, ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection } from './primitives.mjs';
|
|
2
2
|
export { T as Tooltip, a as TooltipProps, b as TooltipVariant } from './tooltip-wUBttbwG.mjs';
|
|
3
|
-
export { AccentColor, AnimatedButton, AnimatedButtonProps, BarChartData, Breakpoint, ChartConfig, ChartRenderer, CompactPanel, CompactPanelProps, Dashboard, DashboardPanel, DashboardPanelProps, DashboardProps, DashboardTableRow, DonutChartData, Input, InputProps, LargePanel, LargePanelChartProps, LargePanelProps, LargePanelStatsProps, LargePanelTableProps, LineChartData, MediumPanel, MediumPanelProps, MediumPanelTableProps, ResponsiveValue, SideNav, SideNavContextValue, SideNavFooter, SideNavFooterProps, SideNavHeader, SideNavHeaderProps, SideNavItem, SideNavItemData, SideNavItemProps, SideNavProps, SideNavSection, SideNavSectionData, SideNavSectionProps, StatData, StatDisplay, TableCellValue, TableColumn, TableConfig, TablePagination, TableRenderer, Template, TemplateSelector, TemplateSelectorProps, TextButton, TextButtonProps, TrendData, useDashboardContext, useSideNavContext } from './enhanced.mjs';
|
|
3
|
+
export { AccentColor, AnimatedButton, AnimatedButtonProps, BarChartData, Breakpoint, ChartConfig, ChartRenderer, CompactPanel, CompactPanelProps, Dashboard, DashboardPanel, DashboardPanelProps, DashboardProps, DashboardTableRow, DonutChartData, Input, InputProps, KPI_CARD_ROWS, KpiCard, KpiCardGroup, KpiCardGroupProps, KpiCardProps, LARGE_PANEL_HEADER_ROWS, LargePanel, LargePanelChartProps, LargePanelProps, LargePanelStatsProps, LargePanelTableProps, LineChartData, MediumPanel, MediumPanelProps, MediumPanelTableProps, ResponsiveValue, SideNav, SideNavContextValue, SideNavFooter, SideNavFooterProps, SideNavHeader, SideNavHeaderProps, SideNavItem, SideNavItemData, SideNavItemProps, SideNavProps, SideNavSection, SideNavSectionData, SideNavSectionProps, StatData, StatDisplay, TableCellValue, TableColumn, TableConfig, TablePagination, TableRenderer, Template, TemplateSelector, TemplateSelectorProps, TextButton, TextButtonProps, TrendData, useDashboardContext, useSideNavContext } from './enhanced.mjs';
|
|
4
4
|
export { T as Toast, a as ToastProps } from './toast-cr-vEOyB.mjs';
|
|
5
5
|
export { ArrowRightIcon, ArrowRightIconHandle, ArrowRightIconProps, CheckIcon, CheckIconHandle, CheckIconProps, PlusIcon, PlusIconHandle, PlusIconProps, SendIcon, SendIconHandle, SendIconProps, TrashIcon, TrashIconHandle, TrashIconProps } from './animated-icons.mjs';
|
|
6
6
|
export { ToastData, useToast } from './hooks.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { ActionColumn, Badge, BadgeProps, Button, ButtonProps, Caption, CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, CodeProps, ColumnDef, ColumnSelection, ColumnSelectionProps, ComparisonPeriod, DEFAULT_COMPARISON_PERIODS, DEFAULT_PRESETS, DateRange, DateRangePicker, DateRangePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormControlProps, FormDescription, FormDescriptionProps, FormField, FormFieldProps, FormLabel, FormLabelProps, FormMessage, FormMessageProps, FormProps, Heading, HeadingProps, Label, LabelProps, PeriodComparisonSelector, PeriodComparisonSelectorProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PresetOption, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, SwitchProps, Table, TableBody, TableCaption, TableCell, TableCellProps, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, TabsVariant, Text, TextProps, Textarea, TextareaProps, Toggle, ToggleOption, ToggleProps, ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection } from './primitives.js';
|
|
1
|
+
export { ActionColumn, Badge, BadgeProps, Button, ButtonProps, Caption, CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, CodeProps, ColumnDef, ColumnSelection, ColumnSelectionProps, ComparisonPeriod, DEFAULT_COMPARISON_PERIODS, DEFAULT_PRESETS, DateRange, DateRangePicker, DateRangePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormControlProps, FormDescription, FormDescriptionProps, FormField, FormFieldProps, FormLabel, FormLabelProps, FormMessage, FormMessageProps, FormProps, Heading, HeadingProps, Label, LabelProps, PeriodComparisonSelector, PeriodComparisonSelectorProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PresetOption, PresetSection, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, SwitchProps, Table, TableBody, TableCaption, TableCell, TableCellProps, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, TabsVariant, Text, TextProps, Textarea, TextareaProps, Toggle, ToggleOption, ToggleProps, ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection } from './primitives.js';
|
|
2
2
|
export { T as Tooltip, a as TooltipProps, b as TooltipVariant } from './tooltip-wUBttbwG.js';
|
|
3
|
-
export { AccentColor, AnimatedButton, AnimatedButtonProps, BarChartData, Breakpoint, ChartConfig, ChartRenderer, CompactPanel, CompactPanelProps, Dashboard, DashboardPanel, DashboardPanelProps, DashboardProps, DashboardTableRow, DonutChartData, Input, InputProps, LargePanel, LargePanelChartProps, LargePanelProps, LargePanelStatsProps, LargePanelTableProps, LineChartData, MediumPanel, MediumPanelProps, MediumPanelTableProps, ResponsiveValue, SideNav, SideNavContextValue, SideNavFooter, SideNavFooterProps, SideNavHeader, SideNavHeaderProps, SideNavItem, SideNavItemData, SideNavItemProps, SideNavProps, SideNavSection, SideNavSectionData, SideNavSectionProps, StatData, StatDisplay, TableCellValue, TableColumn, TableConfig, TablePagination, TableRenderer, Template, TemplateSelector, TemplateSelectorProps, TextButton, TextButtonProps, TrendData, useDashboardContext, useSideNavContext } from './enhanced.js';
|
|
3
|
+
export { AccentColor, AnimatedButton, AnimatedButtonProps, BarChartData, Breakpoint, ChartConfig, ChartRenderer, CompactPanel, CompactPanelProps, Dashboard, DashboardPanel, DashboardPanelProps, DashboardProps, DashboardTableRow, DonutChartData, Input, InputProps, KPI_CARD_ROWS, KpiCard, KpiCardGroup, KpiCardGroupProps, KpiCardProps, LARGE_PANEL_HEADER_ROWS, LargePanel, LargePanelChartProps, LargePanelProps, LargePanelStatsProps, LargePanelTableProps, LineChartData, MediumPanel, MediumPanelProps, MediumPanelTableProps, ResponsiveValue, SideNav, SideNavContextValue, SideNavFooter, SideNavFooterProps, SideNavHeader, SideNavHeaderProps, SideNavItem, SideNavItemData, SideNavItemProps, SideNavProps, SideNavSection, SideNavSectionData, SideNavSectionProps, StatData, StatDisplay, TableCellValue, TableColumn, TableConfig, TablePagination, TableRenderer, Template, TemplateSelector, TemplateSelectorProps, TextButton, TextButtonProps, TrendData, useDashboardContext, useSideNavContext } from './enhanced.js';
|
|
4
4
|
export { T as Toast, a as ToastProps } from './toast-cr-vEOyB.js';
|
|
5
5
|
export { ArrowRightIcon, ArrowRightIconHandle, ArrowRightIconProps, CheckIcon, CheckIconHandle, CheckIconProps, PlusIcon, PlusIconHandle, PlusIconProps, SendIcon, SendIconHandle, SendIconProps, TrashIcon, TrashIconHandle, TrashIconProps } from './animated-icons.js';
|
|
6
6
|
export { ToastData, useToast } from './hooks.js';
|