@ambersecurityinc/ui 0.1.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.
@@ -0,0 +1,354 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import React, { ReactNode, CSSProperties, HTMLAttributes } from 'react';
3
+
4
+ interface AppShellProps {
5
+ /** Sidebar element (typically <Sidebar />) */
6
+ sidebar?: ReactNode;
7
+ /** Header element (typically <Header />) */
8
+ header?: ReactNode;
9
+ /** Main page content */
10
+ children: ReactNode;
11
+ className?: string;
12
+ style?: CSSProperties;
13
+ }
14
+ /**
15
+ * Top-level dashboard shell providing sidebar + header + main content layout.
16
+ *
17
+ * Relies on CSS custom properties (design tokens) set by ThemeProvider.
18
+ */
19
+ declare function AppShell({ sidebar, header, children, className, style, }: AppShellProps): react_jsx_runtime.JSX.Element;
20
+
21
+ interface SidebarProps {
22
+ /** Whether the sidebar is collapsed to icon-only mode */
23
+ collapsed?: boolean;
24
+ /** Toggle collapsed state */
25
+ onToggle?: () => void;
26
+ /** Slot rendered at the top (e.g. tenant switcher / logo) */
27
+ header?: ReactNode;
28
+ /** Navigation items and section groups */
29
+ children: ReactNode;
30
+ className?: string;
31
+ style?: CSSProperties;
32
+ /** Controls mobile overlay visibility */
33
+ mobileOpen?: boolean;
34
+ /** Called when the mobile overlay should close */
35
+ onMobileClose?: () => void;
36
+ }
37
+ /**
38
+ * Collapsible sidebar with mobile overlay support.
39
+ *
40
+ * Desktop: renders inline, toggles between full and collapsed widths.
41
+ * Mobile (<768px): renders as an overlay with backdrop.
42
+ */
43
+ declare function Sidebar({ collapsed, onToggle, header, children, className, style, mobileOpen, onMobileClose, }: SidebarProps): react_jsx_runtime.JSX.Element;
44
+ interface SidebarSectionProps {
45
+ /** Section heading label — hidden when sidebar is collapsed */
46
+ title?: string;
47
+ children: ReactNode;
48
+ className?: string;
49
+ style?: CSSProperties;
50
+ }
51
+ declare function SidebarSection({ title, children, className, style: customStyle, }: SidebarSectionProps): react_jsx_runtime.JSX.Element;
52
+
53
+ interface Breadcrumb {
54
+ label: string;
55
+ href?: string;
56
+ }
57
+ interface HeaderProps {
58
+ /** Breadcrumb trail rendered left-to-right */
59
+ breadcrumbs?: Breadcrumb[];
60
+ /** Slot for action buttons (e.g. notifications, create button) */
61
+ actions?: ReactNode;
62
+ /** Slot for user avatar / profile menu trigger */
63
+ avatar?: ReactNode;
64
+ className?: string;
65
+ style?: CSSProperties;
66
+ }
67
+ /**
68
+ * Application header with breadcrumb navigation, action buttons slot,
69
+ * and user avatar slot.
70
+ */
71
+ declare function Header({ breadcrumbs, actions, avatar, className, style, }: HeaderProps): react_jsx_runtime.JSX.Element;
72
+
73
+ type BadgeVariant = "success" | "warning" | "error" | "info" | "accent" | "neutral";
74
+ type BadgeSize = "sm" | "md";
75
+ interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
76
+ /** Visual style of the badge. */
77
+ variant: BadgeVariant;
78
+ /** Size of the badge. Defaults to "md". */
79
+ size?: BadgeSize;
80
+ children: ReactNode;
81
+ className?: string;
82
+ style?: CSSProperties;
83
+ }
84
+ declare function Badge({ variant, size, children, className, style, ...rest }: BadgeProps): react_jsx_runtime.JSX.Element;
85
+
86
+ type SortDirection = "asc" | "desc";
87
+ interface DataTableColumn<T> {
88
+ /** Unique key identifying the column (must match a key on T, or be arbitrary when using render). */
89
+ key: string;
90
+ /** Header label. */
91
+ header: string;
92
+ /** Whether the column is sortable. */
93
+ sortable?: boolean;
94
+ /** Custom cell renderer. Receives the full row. */
95
+ render?: (row: T, rowIndex: number) => ReactNode;
96
+ }
97
+ interface DataTableProps<T> extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
98
+ /** Column definitions. */
99
+ columns: DataTableColumn<T>[];
100
+ /** Row data array. */
101
+ data: T[];
102
+ /** Show loading skeleton instead of data. */
103
+ loading?: boolean;
104
+ /** Content displayed when data is empty and not loading. */
105
+ emptyState?: ReactNode;
106
+ /** Enable row selection checkboxes. */
107
+ selectable?: boolean;
108
+ /** Currently selected row indices. */
109
+ selectedRows?: Set<number>;
110
+ /** Callback when selection changes. */
111
+ onSelectionChange?: (selected: Set<number>) => void;
112
+ /** Currently sorted column key. */
113
+ sortKey?: string;
114
+ /** Current sort direction. */
115
+ sortDirection?: SortDirection;
116
+ /** Callback when a sortable column header is clicked. */
117
+ onSort?: (key: string, direction: SortDirection) => void;
118
+ /** Opaque cursor value representing the current page. */
119
+ cursor?: string | null;
120
+ /** Callback to request a page change. Receives "next" or "prev" as direction and the current cursor. */
121
+ onPageChange?: (direction: "next" | "prev", currentCursor: string | null) => void;
122
+ /** Rows per page. Used only for skeleton row count when loading. */
123
+ pageSize?: number;
124
+ className?: string;
125
+ style?: CSSProperties;
126
+ }
127
+ declare function DataTable<T extends Record<string, unknown>>({ columns, data, loading, emptyState, selectable, selectedRows, onSelectionChange, sortKey, sortDirection, onSort, cursor, onPageChange, pageSize, className, style, ...rest }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
128
+
129
+ interface EmptyStateProps extends HTMLAttributes<HTMLDivElement> {
130
+ /** Optional icon element rendered above the title. */
131
+ icon?: ReactNode;
132
+ /** Primary heading for the empty state. */
133
+ title: string;
134
+ /** Supporting description text. */
135
+ description?: string;
136
+ /** Action element (typically a button) rendered below the description. */
137
+ action?: ReactNode;
138
+ className?: string;
139
+ style?: CSSProperties;
140
+ }
141
+ declare function EmptyState({ icon, title, description, action, className, style, ...rest }: EmptyStateProps): react_jsx_runtime.JSX.Element;
142
+
143
+ interface SkeletonProps extends HTMLAttributes<HTMLDivElement> {
144
+ /** Shape of the skeleton placeholder. */
145
+ variant: "rect" | "circle" | "text";
146
+ /** Width in px or CSS value. Defaults vary by variant. */
147
+ width?: number | string;
148
+ /** Height in px or CSS value. Defaults vary by variant. */
149
+ height?: number | string;
150
+ /** Number of text lines to render (only used when variant is "text"). */
151
+ lines?: number;
152
+ className?: string;
153
+ style?: CSSProperties;
154
+ }
155
+ declare function Skeleton({ variant, width, height, lines, className, style, ...rest }: SkeletonProps): react_jsx_runtime.JSX.Element;
156
+
157
+ interface StatCardProps extends HTMLAttributes<HTMLDivElement> {
158
+ /** Descriptive label shown above the value. */
159
+ label: string;
160
+ /** Primary metric value. */
161
+ value: string | number;
162
+ /** Numeric change indicator. Positive = up, negative = down. */
163
+ delta?: number;
164
+ /** Text shown next to the delta value. */
165
+ deltaLabel?: string;
166
+ /** Optional icon element rendered in the top-right. */
167
+ icon?: ReactNode;
168
+ className?: string;
169
+ style?: CSSProperties;
170
+ }
171
+ declare function StatCard({ label, value, delta, deltaLabel, icon, className, style, ...rest }: StatCardProps): react_jsx_runtime.JSX.Element;
172
+
173
+ type ToastVariant = "success" | "error" | "warning" | "info";
174
+ interface ToastProps {
175
+ /** Visual variant */
176
+ variant?: ToastVariant;
177
+ /** Toast message content */
178
+ message: string;
179
+ /** Called when the toast should be removed */
180
+ onDismiss: () => void;
181
+ /** Additional CSS class name */
182
+ className?: string;
183
+ /** Additional inline styles */
184
+ style?: CSSProperties;
185
+ }
186
+ declare function Toast({ variant, message, onDismiss, className, style, }: ToastProps): JSX.Element;
187
+
188
+ /** Options passed when creating a toast */
189
+ interface ToastOptions {
190
+ /** Visual variant (default: "info") */
191
+ variant?: ToastVariant;
192
+ /** Auto-dismiss duration in ms (default: 5000, 0 to disable) */
193
+ duration?: number;
194
+ }
195
+ interface ToastContextValue {
196
+ /** Show a toast notification */
197
+ toast: (message: string, options?: ToastOptions) => void;
198
+ }
199
+ interface ToastProviderProps {
200
+ children: ReactNode;
201
+ }
202
+ declare function ToastProvider({ children }: ToastProviderProps): JSX.Element;
203
+ declare function useToast(): ToastContextValue;
204
+
205
+ interface ModalProps {
206
+ /** Whether the modal is open */
207
+ open: boolean;
208
+ /** Called when the modal requests to close */
209
+ onClose: () => void;
210
+ /** Optional modal title rendered in a header */
211
+ title?: string;
212
+ /** Modal body content */
213
+ children: ReactNode;
214
+ /** Optional footer content (e.g. action buttons) */
215
+ footer?: ReactNode;
216
+ /** Additional CSS class name */
217
+ className?: string;
218
+ /** Additional inline styles applied to the modal panel */
219
+ style?: CSSProperties;
220
+ }
221
+ declare function Modal({ open, onClose, title, children, footer, className, style, }: ModalProps): JSX.Element | null;
222
+
223
+ interface ConfirmDialogProps {
224
+ /** Whether the dialog is open */
225
+ open: boolean;
226
+ /** Called when the dialog requests to close (cancel or backdrop/escape) */
227
+ onClose: () => void;
228
+ /** Called when the user confirms */
229
+ onConfirm: () => void;
230
+ /** Dialog title */
231
+ title: string;
232
+ /** Optional description text */
233
+ description?: string;
234
+ /** Label for the confirm button (default: "Confirm") */
235
+ confirmLabel?: string;
236
+ /** Label for the cancel button (default: "Cancel") */
237
+ cancelLabel?: string;
238
+ /** Renders the confirm button in a destructive (red) style */
239
+ destructive?: boolean;
240
+ /** Shows a loading state on the confirm button and disables both buttons */
241
+ loading?: boolean;
242
+ /** Additional CSS class name passed to the underlying Modal */
243
+ className?: string;
244
+ /** Additional inline styles passed to the underlying Modal */
245
+ style?: CSSProperties;
246
+ }
247
+ declare function ConfirmDialog({ open, onClose, onConfirm, title, description, confirmLabel, cancelLabel, destructive, loading, className, style, }: ConfirmDialogProps): JSX.Element | null;
248
+
249
+ interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> {
250
+ type?: "text" | "password" | "search" | "email" | "url" | "tel" | "number";
251
+ label?: string;
252
+ helperText?: string;
253
+ error?: string | boolean;
254
+ iconLeft?: React.ReactNode;
255
+ iconRight?: React.ReactNode;
256
+ }
257
+ declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
258
+
259
+ interface SelectOption {
260
+ value: string;
261
+ label: string;
262
+ }
263
+ interface SelectProps extends Omit<React.SelectHTMLAttributes<HTMLSelectElement>, "children"> {
264
+ label?: string;
265
+ error?: string | boolean;
266
+ helperText?: string;
267
+ options: SelectOption[];
268
+ placeholder?: string;
269
+ }
270
+ declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSelectElement>>;
271
+
272
+ type ButtonVariant = "primary" | "secondary" | "ghost" | "danger";
273
+ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
274
+ variant?: ButtonVariant;
275
+ icon?: React.ReactNode;
276
+ loading?: boolean;
277
+ }
278
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
279
+
280
+ interface ToggleProps {
281
+ checked: boolean;
282
+ onChange: (checked: boolean) => void;
283
+ label?: string;
284
+ disabled?: boolean;
285
+ className?: string;
286
+ style?: React.CSSProperties;
287
+ }
288
+ declare const Toggle: React.FC<ToggleProps>;
289
+
290
+ interface CheckboxProps {
291
+ checked: boolean;
292
+ onChange: (checked: boolean) => void;
293
+ label?: string;
294
+ disabled?: boolean;
295
+ indeterminate?: boolean;
296
+ className?: string;
297
+ style?: React.CSSProperties;
298
+ }
299
+ declare const Checkbox: React.FC<CheckboxProps>;
300
+
301
+ interface Tab {
302
+ key: string;
303
+ label: string;
304
+ disabled?: boolean;
305
+ }
306
+ interface TabsProps {
307
+ /** The list of tabs to render. */
308
+ tabs: Tab[];
309
+ /** The `key` of the currently active tab. */
310
+ activeKey: string;
311
+ /** Called when the user selects a tab. */
312
+ onChange: (key: string) => void;
313
+ className?: string;
314
+ style?: CSSProperties;
315
+ }
316
+ /**
317
+ * Horizontal tab bar with an active indicator.
318
+ *
319
+ * Keyboard navigation: Arrow-Left / Arrow-Right to move focus between tabs,
320
+ * Home / End to jump to first / last tab. Disabled tabs are skipped.
321
+ */
322
+ declare function Tabs({ tabs, activeKey, onChange, className, style }: TabsProps): react_jsx_runtime.JSX.Element;
323
+
324
+ interface DropdownItem {
325
+ key: string;
326
+ label: string;
327
+ icon?: ReactNode;
328
+ disabled?: boolean;
329
+ danger?: boolean;
330
+ }
331
+ interface DropdownProps {
332
+ /** The element that toggles the menu. */
333
+ trigger: ReactNode;
334
+ /** Menu items. */
335
+ items: DropdownItem[];
336
+ /** Called when an enabled item is selected. */
337
+ onSelect: (key: string) => void;
338
+ /** Horizontal alignment of the menu relative to the trigger. @default 'left' */
339
+ align?: "left" | "right";
340
+ className?: string;
341
+ style?: CSSProperties;
342
+ }
343
+ /**
344
+ * Dropdown menu with a configurable trigger element.
345
+ *
346
+ * Keyboard navigation:
347
+ * - Arrow-Down / Arrow-Up to move highlight
348
+ * - Enter / Space to select the highlighted item
349
+ * - Escape to close
350
+ * - Typing a character focuses the first item whose label starts with that character
351
+ */
352
+ declare function Dropdown({ trigger, items, onSelect, align, className, style, }: DropdownProps): react_jsx_runtime.JSX.Element;
353
+
354
+ export { AppShell, type AppShellProps, Badge, type BadgeProps, type BadgeSize, type BadgeVariant, type Breadcrumb, Button, type ButtonProps, type ButtonVariant, Checkbox, type CheckboxProps, ConfirmDialog, type ConfirmDialogProps, DataTable, type DataTableColumn, type DataTableProps, Dropdown, type DropdownItem, type DropdownProps, EmptyState, type EmptyStateProps, Header, type HeaderProps, Input, type InputProps, Modal, type ModalProps, Select, type SelectOption, type SelectProps, Sidebar, type SidebarProps, SidebarSection, type SidebarSectionProps, Skeleton, type SkeletonProps, type SortDirection, StatCard, type StatCardProps, type Tab, Tabs, type TabsProps, Toast, type ToastContextValue, type ToastOptions, type ToastProps, ToastProvider, type ToastProviderProps, type ToastVariant, Toggle, type ToggleProps, useToast };
@@ -0,0 +1,92 @@
1
+ 'use strict';
2
+
3
+ var chunk2NDCSOJ6_js = require('./chunk-2NDCSOJ6.js');
4
+
5
+
6
+
7
+ Object.defineProperty(exports, "AppShell", {
8
+ enumerable: true,
9
+ get: function () { return chunk2NDCSOJ6_js.AppShell; }
10
+ });
11
+ Object.defineProperty(exports, "Badge", {
12
+ enumerable: true,
13
+ get: function () { return chunk2NDCSOJ6_js.Badge; }
14
+ });
15
+ Object.defineProperty(exports, "Button", {
16
+ enumerable: true,
17
+ get: function () { return chunk2NDCSOJ6_js.Button; }
18
+ });
19
+ Object.defineProperty(exports, "Checkbox", {
20
+ enumerable: true,
21
+ get: function () { return chunk2NDCSOJ6_js.Checkbox; }
22
+ });
23
+ Object.defineProperty(exports, "ConfirmDialog", {
24
+ enumerable: true,
25
+ get: function () { return chunk2NDCSOJ6_js.ConfirmDialog; }
26
+ });
27
+ Object.defineProperty(exports, "DataTable", {
28
+ enumerable: true,
29
+ get: function () { return chunk2NDCSOJ6_js.DataTable; }
30
+ });
31
+ Object.defineProperty(exports, "Dropdown", {
32
+ enumerable: true,
33
+ get: function () { return chunk2NDCSOJ6_js.Dropdown; }
34
+ });
35
+ Object.defineProperty(exports, "EmptyState", {
36
+ enumerable: true,
37
+ get: function () { return chunk2NDCSOJ6_js.EmptyState; }
38
+ });
39
+ Object.defineProperty(exports, "Header", {
40
+ enumerable: true,
41
+ get: function () { return chunk2NDCSOJ6_js.Header; }
42
+ });
43
+ Object.defineProperty(exports, "Input", {
44
+ enumerable: true,
45
+ get: function () { return chunk2NDCSOJ6_js.Input; }
46
+ });
47
+ Object.defineProperty(exports, "Modal", {
48
+ enumerable: true,
49
+ get: function () { return chunk2NDCSOJ6_js.Modal; }
50
+ });
51
+ Object.defineProperty(exports, "Select", {
52
+ enumerable: true,
53
+ get: function () { return chunk2NDCSOJ6_js.Select; }
54
+ });
55
+ Object.defineProperty(exports, "Sidebar", {
56
+ enumerable: true,
57
+ get: function () { return chunk2NDCSOJ6_js.Sidebar; }
58
+ });
59
+ Object.defineProperty(exports, "SidebarSection", {
60
+ enumerable: true,
61
+ get: function () { return chunk2NDCSOJ6_js.SidebarSection; }
62
+ });
63
+ Object.defineProperty(exports, "Skeleton", {
64
+ enumerable: true,
65
+ get: function () { return chunk2NDCSOJ6_js.Skeleton; }
66
+ });
67
+ Object.defineProperty(exports, "StatCard", {
68
+ enumerable: true,
69
+ get: function () { return chunk2NDCSOJ6_js.StatCard; }
70
+ });
71
+ Object.defineProperty(exports, "Tabs", {
72
+ enumerable: true,
73
+ get: function () { return chunk2NDCSOJ6_js.Tabs; }
74
+ });
75
+ Object.defineProperty(exports, "Toast", {
76
+ enumerable: true,
77
+ get: function () { return chunk2NDCSOJ6_js.Toast; }
78
+ });
79
+ Object.defineProperty(exports, "ToastProvider", {
80
+ enumerable: true,
81
+ get: function () { return chunk2NDCSOJ6_js.ToastProvider; }
82
+ });
83
+ Object.defineProperty(exports, "Toggle", {
84
+ enumerable: true,
85
+ get: function () { return chunk2NDCSOJ6_js.Toggle; }
86
+ });
87
+ Object.defineProperty(exports, "useToast", {
88
+ enumerable: true,
89
+ get: function () { return chunk2NDCSOJ6_js.useToast; }
90
+ });
91
+ //# sourceMappingURL=components.js.map
92
+ //# sourceMappingURL=components.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"components.js"}
@@ -0,0 +1,3 @@
1
+ export { AppShell, Badge, Button, Checkbox, ConfirmDialog, DataTable, Dropdown, EmptyState, Header, Input, Modal, Select, Sidebar, SidebarSection, Skeleton, StatCard, Tabs, Toast, ToastProvider, Toggle, useToast } from './chunk-ADYBFXWS.mjs';
2
+ //# sourceMappingURL=components.mjs.map
3
+ //# sourceMappingURL=components.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"components.mjs"}
@@ -0,0 +1,4 @@
1
+ export { DARK, FONTS, LIGHT, RADIUS, SPACING, T, Theme, ThemeProvider, TokenKey, useTheme } from './tokens.mjs';
2
+ export { AppShell, AppShellProps, Badge, BadgeProps, BadgeSize, BadgeVariant, Breadcrumb, Button, ButtonProps, ButtonVariant, Checkbox, CheckboxProps, ConfirmDialog, ConfirmDialogProps, DataTable, DataTableColumn, DataTableProps, Dropdown, DropdownItem, DropdownProps, EmptyState, EmptyStateProps, Header, HeaderProps, Input, InputProps, Modal, ModalProps, Select, SelectOption, SelectProps, Sidebar, SidebarProps, SidebarSection, SidebarSectionProps, Skeleton, SkeletonProps, SortDirection, StatCard, StatCardProps, Tab, Tabs, TabsProps, Toast, ToastContextValue, ToastOptions, ToastProps, ToastProvider, ToastProviderProps, ToastVariant, Toggle, ToggleProps, useToast } from './components.mjs';
3
+ import 'react';
4
+ import 'react/jsx-runtime';
@@ -0,0 +1,4 @@
1
+ export { DARK, FONTS, LIGHT, RADIUS, SPACING, T, Theme, ThemeProvider, TokenKey, useTheme } from './tokens.js';
2
+ export { AppShell, AppShellProps, Badge, BadgeProps, BadgeSize, BadgeVariant, Breadcrumb, Button, ButtonProps, ButtonVariant, Checkbox, CheckboxProps, ConfirmDialog, ConfirmDialogProps, DataTable, DataTableColumn, DataTableProps, Dropdown, DropdownItem, DropdownProps, EmptyState, EmptyStateProps, Header, HeaderProps, Input, InputProps, Modal, ModalProps, Select, SelectOption, SelectProps, Sidebar, SidebarProps, SidebarSection, SidebarSectionProps, Skeleton, SkeletonProps, SortDirection, StatCard, StatCardProps, Tab, Tabs, TabsProps, Toast, ToastContextValue, ToastOptions, ToastProps, ToastProvider, ToastProviderProps, ToastVariant, Toggle, ToggleProps, useToast } from './components.js';
3
+ import 'react';
4
+ import 'react/jsx-runtime';
package/dist/index.js ADDED
@@ -0,0 +1,125 @@
1
+ 'use strict';
2
+
3
+ var chunkE4FQ57CA_js = require('./chunk-E4FQ57CA.js');
4
+ var chunk2NDCSOJ6_js = require('./chunk-2NDCSOJ6.js');
5
+
6
+
7
+
8
+ Object.defineProperty(exports, "DARK", {
9
+ enumerable: true,
10
+ get: function () { return chunkE4FQ57CA_js.DARK; }
11
+ });
12
+ Object.defineProperty(exports, "FONTS", {
13
+ enumerable: true,
14
+ get: function () { return chunkE4FQ57CA_js.FONTS; }
15
+ });
16
+ Object.defineProperty(exports, "LIGHT", {
17
+ enumerable: true,
18
+ get: function () { return chunkE4FQ57CA_js.LIGHT; }
19
+ });
20
+ Object.defineProperty(exports, "RADIUS", {
21
+ enumerable: true,
22
+ get: function () { return chunkE4FQ57CA_js.RADIUS; }
23
+ });
24
+ Object.defineProperty(exports, "SPACING", {
25
+ enumerable: true,
26
+ get: function () { return chunkE4FQ57CA_js.SPACING; }
27
+ });
28
+ Object.defineProperty(exports, "T", {
29
+ enumerable: true,
30
+ get: function () { return chunkE4FQ57CA_js.T; }
31
+ });
32
+ Object.defineProperty(exports, "ThemeProvider", {
33
+ enumerable: true,
34
+ get: function () { return chunkE4FQ57CA_js.ThemeProvider; }
35
+ });
36
+ Object.defineProperty(exports, "useTheme", {
37
+ enumerable: true,
38
+ get: function () { return chunkE4FQ57CA_js.useTheme; }
39
+ });
40
+ Object.defineProperty(exports, "AppShell", {
41
+ enumerable: true,
42
+ get: function () { return chunk2NDCSOJ6_js.AppShell; }
43
+ });
44
+ Object.defineProperty(exports, "Badge", {
45
+ enumerable: true,
46
+ get: function () { return chunk2NDCSOJ6_js.Badge; }
47
+ });
48
+ Object.defineProperty(exports, "Button", {
49
+ enumerable: true,
50
+ get: function () { return chunk2NDCSOJ6_js.Button; }
51
+ });
52
+ Object.defineProperty(exports, "Checkbox", {
53
+ enumerable: true,
54
+ get: function () { return chunk2NDCSOJ6_js.Checkbox; }
55
+ });
56
+ Object.defineProperty(exports, "ConfirmDialog", {
57
+ enumerable: true,
58
+ get: function () { return chunk2NDCSOJ6_js.ConfirmDialog; }
59
+ });
60
+ Object.defineProperty(exports, "DataTable", {
61
+ enumerable: true,
62
+ get: function () { return chunk2NDCSOJ6_js.DataTable; }
63
+ });
64
+ Object.defineProperty(exports, "Dropdown", {
65
+ enumerable: true,
66
+ get: function () { return chunk2NDCSOJ6_js.Dropdown; }
67
+ });
68
+ Object.defineProperty(exports, "EmptyState", {
69
+ enumerable: true,
70
+ get: function () { return chunk2NDCSOJ6_js.EmptyState; }
71
+ });
72
+ Object.defineProperty(exports, "Header", {
73
+ enumerable: true,
74
+ get: function () { return chunk2NDCSOJ6_js.Header; }
75
+ });
76
+ Object.defineProperty(exports, "Input", {
77
+ enumerable: true,
78
+ get: function () { return chunk2NDCSOJ6_js.Input; }
79
+ });
80
+ Object.defineProperty(exports, "Modal", {
81
+ enumerable: true,
82
+ get: function () { return chunk2NDCSOJ6_js.Modal; }
83
+ });
84
+ Object.defineProperty(exports, "Select", {
85
+ enumerable: true,
86
+ get: function () { return chunk2NDCSOJ6_js.Select; }
87
+ });
88
+ Object.defineProperty(exports, "Sidebar", {
89
+ enumerable: true,
90
+ get: function () { return chunk2NDCSOJ6_js.Sidebar; }
91
+ });
92
+ Object.defineProperty(exports, "SidebarSection", {
93
+ enumerable: true,
94
+ get: function () { return chunk2NDCSOJ6_js.SidebarSection; }
95
+ });
96
+ Object.defineProperty(exports, "Skeleton", {
97
+ enumerable: true,
98
+ get: function () { return chunk2NDCSOJ6_js.Skeleton; }
99
+ });
100
+ Object.defineProperty(exports, "StatCard", {
101
+ enumerable: true,
102
+ get: function () { return chunk2NDCSOJ6_js.StatCard; }
103
+ });
104
+ Object.defineProperty(exports, "Tabs", {
105
+ enumerable: true,
106
+ get: function () { return chunk2NDCSOJ6_js.Tabs; }
107
+ });
108
+ Object.defineProperty(exports, "Toast", {
109
+ enumerable: true,
110
+ get: function () { return chunk2NDCSOJ6_js.Toast; }
111
+ });
112
+ Object.defineProperty(exports, "ToastProvider", {
113
+ enumerable: true,
114
+ get: function () { return chunk2NDCSOJ6_js.ToastProvider; }
115
+ });
116
+ Object.defineProperty(exports, "Toggle", {
117
+ enumerable: true,
118
+ get: function () { return chunk2NDCSOJ6_js.Toggle; }
119
+ });
120
+ Object.defineProperty(exports, "useToast", {
121
+ enumerable: true,
122
+ get: function () { return chunk2NDCSOJ6_js.useToast; }
123
+ });
124
+ //# sourceMappingURL=index.js.map
125
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
package/dist/index.mjs ADDED
@@ -0,0 +1,4 @@
1
+ export { DARK, FONTS, LIGHT, RADIUS, SPACING, T, ThemeProvider, useTheme } from './chunk-I5MLI7LI.mjs';
2
+ export { AppShell, Badge, Button, Checkbox, ConfirmDialog, DataTable, Dropdown, EmptyState, Header, Input, Modal, Select, Sidebar, SidebarSection, Skeleton, StatCard, Tabs, Toast, ToastProvider, Toggle, useToast } from './chunk-ADYBFXWS.mjs';
3
+ //# sourceMappingURL=index.mjs.map
4
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs"}