impact-nova 1.3.0 → 1.5.2
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/README.md +49 -0
- package/dist/components/layout/dashboard-layout.d.ts +15 -1
- package/dist/components/ui/accordion-nested-list/accordion-nested-list.js +65 -64
- package/dist/components/ui/accordion.js +38 -34
- package/dist/components/ui/ag-grid-react/cell-renderers/badge-cell-renderer.js +1 -1
- package/dist/components/ui/ag-grid-react/cell-renderers/cell-renderer-utils.d.ts +58 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/cell-renderer-utils.js +104 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/input-cell-editor.js +62 -54
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/split-cell-editor.d.ts +4 -6
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/split-cell-editor.js +54 -68
- package/dist/components/ui/ag-grid-react/cell-renderers/index.d.ts +3 -1
- package/dist/components/ui/ag-grid-react/cell-renderers/index.js +33 -27
- package/dist/components/ui/ag-grid-react/cell-renderers/input-display-renderer.d.ts +3 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/input-display-renderer.js +28 -12
- package/dist/components/ui/ag-grid-react/cell-renderers/link-with-batch-cell-renderer.d.ts +2 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/link-with-batch-cell-renderer.js +45 -44
- package/dist/components/ui/ag-grid-react/cell-renderers/split-cell-renderer.d.ts +4 -6
- package/dist/components/ui/ag-grid-react/cell-renderers/split-cell-renderer.js +23 -37
- package/dist/components/ui/ag-grid-react/cell-renderers/types.d.ts +33 -17
- package/dist/components/ui/ag-grid-react/editable-utils.d.ts +27 -0
- package/dist/components/ui/ag-grid-react/editable-utils.js +62 -0
- package/dist/components/ui/ag-grid-react/headers/advanced-filter/advanced-filter-dialog.js +99 -98
- package/dist/components/ui/ag-grid-react/headers/advanced-filter/column-filter-section.js +110 -143
- package/dist/components/ui/ag-grid-react/headers/column-menu/column-settings-menu.js +72 -69
- package/dist/components/ui/ag-grid-react/headers/components/header-info.js +36 -35
- package/dist/components/ui/ag-grid-react/headers/components/info-modal.js +14 -12
- package/dist/components/ui/ag-grid-react/headers/custom-header.js +111 -110
- package/dist/components/ui/ag-grid-react/headers/header-search-input.js +204 -203
- package/dist/components/ui/alert.js +62 -58
- package/dist/components/ui/breadcrumb.js +81 -74
- package/dist/components/ui/calendar.js +354 -354
- package/dist/components/ui/chart/chart.js +63 -62
- package/dist/components/ui/chips.js +42 -38
- package/dist/components/ui/command-palette/command-palette-context.d.ts +52 -0
- package/dist/components/ui/command-palette/command-palette-context.js +110 -0
- package/dist/components/ui/command-palette/command-palette.d.ts +67 -0
- package/dist/components/ui/command-palette/command-palette.js +402 -0
- package/dist/components/ui/command-palette/index.d.ts +23 -0
- package/dist/components/ui/command-palette/index.js +44 -0
- package/dist/components/ui/command-palette/kbd.d.ts +28 -0
- package/dist/components/ui/command-palette/kbd.js +52 -0
- package/dist/components/ui/command-palette/shortcut-registry.d.ts +68 -0
- package/dist/components/ui/command-palette/shortcut-registry.js +183 -0
- package/dist/components/ui/command-palette/shortcut-scope-provider.d.ts +55 -0
- package/dist/components/ui/command-palette/shortcut-scope-provider.js +55 -0
- package/dist/components/ui/command-palette/shortcut-settings.d.ts +27 -0
- package/dist/components/ui/command-palette/shortcut-settings.js +266 -0
- package/dist/components/ui/command-palette/use-browser-shortcuts.d.ts +32 -0
- package/dist/components/ui/command-palette/use-browser-shortcuts.js +48 -0
- package/dist/components/ui/command-palette/use-global-shortcut.d.ts +3 -0
- package/dist/components/ui/command-palette/use-global-shortcut.js +7 -0
- package/dist/components/ui/command-palette/use-shortcut.d.ts +47 -0
- package/dist/components/ui/command-palette/use-shortcut.js +49 -0
- package/dist/components/ui/command-palette/utils.d.ts +119 -0
- package/dist/components/ui/command-palette/utils.js +248 -0
- package/dist/components/ui/data-table/data-table-column-list.js +87 -86
- package/dist/components/ui/data-table/data-table-format-options.js +45 -44
- package/dist/components/ui/data-table/data-table-view-options.js +39 -38
- package/dist/components/ui/date-picker/date-picker.js +89 -87
- package/dist/components/ui/date-picker/date-range-picker.js +140 -138
- package/dist/components/ui/date-picker/month-picker.js +82 -81
- package/dist/components/ui/date-picker/month-range-picker.js +108 -105
- package/dist/components/ui/date-picker/multi-date-picker.js +68 -66
- package/dist/components/ui/date-picker/multi-month-picker.js +59 -58
- package/dist/components/ui/date-picker/multi-week-picker.js +80 -78
- package/dist/components/ui/date-picker/week-picker.js +117 -115
- package/dist/components/ui/date-picker/week-range-picker.js +166 -164
- package/dist/components/ui/dialog.js +78 -73
- package/dist/components/ui/drawer.js +71 -66
- package/dist/components/ui/file-upload.js +131 -127
- package/dist/components/ui/filter-panel/filter-panel.js +98 -94
- package/dist/components/ui/filter-strip/filter-strip.js +95 -91
- package/dist/components/ui/filter-strip/filter-summary.js +91 -90
- package/dist/components/ui/header.js +57 -53
- package/dist/components/ui/horizontal-scroller/horizontal-scroller.js +78 -76
- package/dist/components/ui/loader.js +17 -16
- package/dist/components/ui/nested-list/components/NestedListHeader.d.ts +1 -0
- package/dist/components/ui/nested-list/components/NestedListHeader.js +51 -48
- package/dist/components/ui/nested-list/components/SortableItem.js +60 -59
- package/dist/components/ui/nested-list/nested-list.js +184 -182
- package/dist/components/ui/notification-panel/notification-panel.js +60 -53
- package/dist/components/ui/popover.js +45 -40
- package/dist/components/ui/prompt.js +90 -86
- package/dist/components/ui/select/select.js +206 -209
- package/dist/components/ui/sheet.d.ts +1 -0
- package/dist/components/ui/sheet.js +50 -48
- package/dist/components/ui/sidebar.js +273 -267
- package/dist/components/ui/stepper.js +75 -63
- package/dist/components/ui/tag.js +48 -44
- package/dist/components/ui/toast.js +46 -41
- package/dist/i18n/ImpactNovaI18nContext.d.ts +21 -0
- package/dist/i18n/ImpactNovaI18nContext.js +76 -0
- package/dist/i18n/defaultMessages.d.ts +231 -0
- package/dist/i18n/defaultMessages.js +206 -0
- package/dist/i18n/getDateFnsLocale.d.ts +11 -0
- package/dist/i18n/getDateFnsLocale.js +21 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/locales/de.d.ts +2 -0
- package/dist/i18n/locales/de.js +206 -0
- package/dist/i18n/locales/es.d.ts +2 -0
- package/dist/i18n/locales/es.js +206 -0
- package/dist/i18n/locales/hi.d.ts +2 -0
- package/dist/i18n/locales/hi.js +206 -0
- package/dist/i18n/locales/index.d.ts +4 -0
- package/dist/i18n/locales/kn.d.ts +2 -0
- package/dist/i18n/locales/kn.js +206 -0
- package/dist/icons/assets/boxAdd.svg.js +5 -0
- package/dist/icons/assets/boxed.svg.js +5 -0
- package/dist/icons/assets/trolley.svg.js +5 -0
- package/dist/icons/assets/unlocked.svg.js +5 -0
- package/dist/icons/index.d.ts +4 -0
- package/dist/icons/index.js +179 -171
- package/dist/impact-nova.css +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +232 -172
- package/package.json +36 -4
- package/dist/components/ui/ag-grid-react/cell-renderers/types.js +0 -74
package/dist/index.js
CHANGED
|
@@ -1,115 +1,134 @@
|
|
|
1
1
|
/* empty css */
|
|
2
2
|
import * as o from "./icons/index.js";
|
|
3
3
|
import { AccordionNestedList as a } from "./components/ui/accordion-nested-list/accordion-nested-list.js";
|
|
4
|
-
import { Accordion as n, AccordionContent as p, AccordionItem as l, AccordionTrigger as
|
|
5
|
-
import { AlertDialog as f, AlertDialogAction as s, AlertDialogCancel as c, AlertDialogContent as u, AlertDialogDescription as x, AlertDialogFooter as
|
|
6
|
-
import { Alert as
|
|
7
|
-
import { Avatar as
|
|
4
|
+
import { Accordion as n, AccordionContent as p, AccordionItem as l, AccordionTrigger as m } from "./components/ui/accordion.js";
|
|
5
|
+
import { AlertDialog as f, AlertDialogAction as s, AlertDialogCancel as c, AlertDialogContent as u, AlertDialogDescription as x, AlertDialogFooter as S, AlertDialogHeader as g, AlertDialogOverlay as D, AlertDialogPortal as b, AlertDialogTitle as C, AlertDialogTrigger as T } from "./components/ui/alert-dialog.js";
|
|
6
|
+
import { Alert as h, AlertDescription as I, AlertIcon as A, AlertTitle as M, alertVariants as y } from "./components/ui/alert.js";
|
|
7
|
+
import { Avatar as w, AvatarFallback as v, AvatarImage as B, avatarVariants as k } from "./components/ui/avatar.js";
|
|
8
8
|
import { Badge as L, badgeVariants as N } from "./components/ui/badge.js";
|
|
9
|
-
import { Breadcrumb as
|
|
10
|
-
import { ButtonGroup as
|
|
9
|
+
import { Breadcrumb as G, BreadcrumbArrowSeparator as V, BreadcrumbEllipsis as E, BreadcrumbHeader as O, BreadcrumbItem as U, BreadcrumbLink as _, BreadcrumbList as z, BreadcrumbPage as K, BreadcrumbSeparator as W, HomeIcon as q } from "./components/ui/breadcrumb.js";
|
|
10
|
+
import { ButtonGroup as j, buttonGroupVariants as J } from "./components/ui/button-group.js";
|
|
11
11
|
import { Button as X } from "./components/ui/button.js";
|
|
12
12
|
import { Calendar as $, CalendarDayButton as ee } from "./components/ui/calendar.js";
|
|
13
13
|
import { Card as re, CardContent as te, CardDescription as ae, CardFooter as ie, CardHeader as ne, CardTitle as pe } from "./components/ui/card.js";
|
|
14
|
-
import { Chart as
|
|
14
|
+
import { Chart as me, ChartActions as de, ChartContainer as fe, ChartContent as se, ChartFullScreen as ce, ChartHeader as ue, ChartTitle as xe } from "./components/ui/chart/chart.js";
|
|
15
15
|
import { getBaseChartOptions as ge } from "./components/ui/chart/chart.utils.js";
|
|
16
16
|
import { Checkbox as be } from "./components/ui/checkbox.js";
|
|
17
17
|
import { Chip as Te, chipVariants as Pe } from "./components/ui/chips.js";
|
|
18
|
-
import { DatePicker as
|
|
19
|
-
import { MonthPicker as
|
|
20
|
-
import { MonthRangePicker as
|
|
18
|
+
import { DatePicker as Ie } from "./components/ui/date-picker/date-picker.js";
|
|
19
|
+
import { MonthPicker as Me } from "./components/ui/date-picker/month-picker.js";
|
|
20
|
+
import { MonthRangePicker as Fe } from "./components/ui/date-picker/month-range-picker.js";
|
|
21
21
|
import { DateRangePicker as ve } from "./components/ui/date-picker/date-range-picker.js";
|
|
22
|
-
import { WeekPicker as
|
|
22
|
+
import { WeekPicker as ke } from "./components/ui/date-picker/week-picker.js";
|
|
23
23
|
import { WeekRangePicker as Le } from "./components/ui/date-picker/week-range-picker.js";
|
|
24
|
-
import { MultiDatePicker as
|
|
25
|
-
import { MultiMonthPicker as
|
|
24
|
+
import { MultiDatePicker as Re } from "./components/ui/date-picker/multi-date-picker.js";
|
|
25
|
+
import { MultiMonthPicker as Ve } from "./components/ui/date-picker/multi-month-picker.js";
|
|
26
26
|
import { MultiWeekPicker as Oe } from "./components/ui/date-picker/multi-week-picker.js";
|
|
27
|
-
import { Dialog as _e, DialogBody as
|
|
27
|
+
import { Dialog as _e, DialogBody as ze, DialogClose as Ke, DialogContent as We, DialogDescription as qe, DialogFooter as Ze, DialogHeader as je, DialogOverlay as Je, DialogPortal as Qe, DialogTitle as Xe, DialogTrigger as Ye } from "./components/ui/dialog.js";
|
|
28
28
|
import { Drawer as eo, DrawerClose as oo, DrawerContent as ro, DrawerDescription as to, DrawerFooter as ao, DrawerHeader as io, DrawerOverlay as no, DrawerPortal as po, DrawerTitle as lo, DrawerTrigger as mo } from "./components/ui/drawer.js";
|
|
29
|
-
import { DropdownMenu as so, DropdownMenuCheckboxItem as co, DropdownMenuContent as uo, DropdownMenuFooter as xo, DropdownMenuGroup as
|
|
30
|
-
import { DynamicLayout as
|
|
31
|
-
import { EmptyContainer as
|
|
32
|
-
import { FileUpload as
|
|
33
|
-
import { FilterPanel as
|
|
29
|
+
import { DropdownMenu as so, DropdownMenuCheckboxItem as co, DropdownMenuContent as uo, DropdownMenuFooter as xo, DropdownMenuGroup as So, DropdownMenuItem as go, DropdownMenuLabel as Do, DropdownMenuPortal as bo, DropdownMenuRadioGroup as Co, DropdownMenuRadioItem as To, DropdownMenuSeparator as Po, DropdownMenuShortcut as ho, DropdownMenuSub as Io, DropdownMenuSubContent as Ao, DropdownMenuSubTrigger as Mo, DropdownMenuTrigger as yo } from "./components/ui/dropdown-menu.js";
|
|
30
|
+
import { DynamicLayout as wo, dynamicLayoutVariants as vo } from "./components/ui/dynamic-layout.js";
|
|
31
|
+
import { EmptyContainer as ko, EmptyContainerAction as Ho, EmptyContainerDescription as Lo, EmptyContainerImage as No, EmptyContainerTitle as Ro } from "./components/ui/empty-container.js";
|
|
32
|
+
import { FileUpload as Vo, FileUploadClose as Eo, FileUploadContent as Oo, FileUploadDescription as Uo, FileUploadDropZone as _o, FileUploadFooter as zo, FileUploadHeader as Ko, FileUploadItem as Wo, FileUploadList as qo, FileUploadTitle as Zo } from "./components/ui/file-upload.js";
|
|
33
|
+
import { FilterPanel as Jo, FilterPanelBody as Qo, FilterPanelFooter as Xo, FilterPanelHeader as Yo, FilterPanelSidebar as $o } from "./components/ui/filter-panel/filter-panel.js";
|
|
34
34
|
import { FilterStrip as or } from "./components/ui/filter-strip/filter-strip.js";
|
|
35
|
-
import { Header as tr, HeaderBotButton as ar, HeaderLeft as ir, HeaderLogo as nr, HeaderRight as pr, HeaderSeparator as lr, HeaderTitle as
|
|
35
|
+
import { Header as tr, HeaderBotButton as ar, HeaderLeft as ir, HeaderLogo as nr, HeaderRight as pr, HeaderSeparator as lr, HeaderTitle as mr, NotificationIconButton as dr } from "./components/ui/header.js";
|
|
36
36
|
import { HoverCard as sr, HoverCardContent as cr, HoverCardTrigger as ur } from "./components/ui/hover-card.js";
|
|
37
|
-
import { Input as
|
|
38
|
-
import { Loader as
|
|
37
|
+
import { Input as Sr } from "./components/ui/input.js";
|
|
38
|
+
import { Loader as Dr, loaderVariants as br } from "./components/ui/loader.js";
|
|
39
39
|
import { NestedList as Tr } from "./components/ui/nested-list/nested-list.js";
|
|
40
|
-
import { SelectionMode as
|
|
41
|
-
import { NotificationPanel as
|
|
42
|
-
import { NotificationEmpty as
|
|
43
|
-
import { NotificationItem as
|
|
44
|
-
import { Popover as
|
|
40
|
+
import { SelectionMode as hr } from "./components/ui/types/nested-list.types.js";
|
|
41
|
+
import { NotificationPanel as Ar, NotificationPanelBody as Mr, NotificationPanelContent as yr, NotificationPanelFooter as Fr, NotificationPanelHeader as wr, useNotificationContext as vr } from "./components/ui/notification-panel/notification-panel.js";
|
|
42
|
+
import { NotificationEmpty as kr, NotificationGroup as Hr, NotificationList as Lr } from "./components/ui/notification-panel/notification-list.js";
|
|
43
|
+
import { NotificationItem as Rr, NotificationItemActions as Gr, NotificationItemContent as Vr, NotificationItemDescription as Er, NotificationItemIcon as Or, NotificationItemTitle as Ur } from "./components/ui/notification-panel/notification-item.js";
|
|
44
|
+
import { Popover as zr, PopoverAnchor as Kr, PopoverBody as Wr, PopoverClose as qr, PopoverContent as Zr, PopoverFooter as jr, PopoverHeader as Jr, PopoverTitle as Qr, PopoverTrigger as Xr } from "./components/ui/popover.js";
|
|
45
45
|
import { Portal as $r } from "./components/ui/portal.js";
|
|
46
46
|
import { Progress as ot, Progress as rt } from "./components/ui/progress.js";
|
|
47
47
|
import { Prompt as at, PromptClose as it, promptVariants as nt } from "./components/ui/prompt.js";
|
|
48
|
-
import { RadioGroup as lt, RadioGroupItem as
|
|
48
|
+
import { RadioGroup as lt, RadioGroupItem as mt } from "./components/ui/radio-group.js";
|
|
49
49
|
import { default as ft } from "./components/ui/select/select.js";
|
|
50
|
-
import { cx as ct, getIndeterminateState as ut, getLeafOptions as xt, getSelectedCount as
|
|
50
|
+
import { cx as ct, getIndeterminateState as ut, getLeafOptions as xt, getSelectedCount as St, getSequence as gt, isInvertedSelection as Dt, isOptionArray as bt, isSelected as Ct } from "./components/ui/select/utils/select.js";
|
|
51
51
|
import { Separator as Pt } from "./components/ui/separator.js";
|
|
52
|
-
import { Sheet as
|
|
53
|
-
import { Sidebar as
|
|
54
|
-
import { Skeleton as
|
|
52
|
+
import { Sheet as It, SheetBody as At, SheetClose as Mt, SheetContent as yt, SheetDescription as Ft, SheetFooter as wt, SheetHeader as vt, SheetOverlay as Bt, SheetPortal as kt, SheetTitle as Ht, SheetTrigger as Lt } from "./components/ui/sheet.js";
|
|
53
|
+
import { Sidebar as Rt, SidebarContent as Gt, SidebarFooter as Vt, SidebarGroup as Et, SidebarGroupAction as Ot, SidebarGroupContent as Ut, SidebarGroupLabel as _t, SidebarHeader as zt, SidebarInput as Kt, SidebarInset as Wt, SidebarLogout as qt, SidebarMenu as Zt, SidebarMenuAction as jt, SidebarMenuBadge as Jt, SidebarMenuButton as Qt, SidebarMenuCollapsible as Xt, SidebarMenuItem as Yt, SidebarMenuSkeleton as $t, SidebarMenuSub as ea, SidebarMenuSubButton as oa, SidebarMenuSubItem as ra, SidebarProvider as ta, SidebarRail as aa, SidebarSeparator as ia, SidebarTrigger as na, useSidebar as pa } from "./components/ui/sidebar.js";
|
|
54
|
+
import { Skeleton as ma } from "./components/ui/skeleton.js";
|
|
55
55
|
import { Slider as fa } from "./components/ui/slider.js";
|
|
56
56
|
import { SmartInput as ca } from "./components/ui/smart-input.js";
|
|
57
|
-
import { Stepper as xa, stepVariants as
|
|
57
|
+
import { Stepper as xa, stepVariants as Sa, stepperVariants as ga } from "./components/ui/stepper.js";
|
|
58
58
|
import { Switch as ba } from "./components/ui/switch.js";
|
|
59
|
-
import { Tabs as Ta, TabsContent as Pa, TabsImage as
|
|
60
|
-
import { TagGroup as
|
|
61
|
-
import { Tag as va, tagVariants as
|
|
62
|
-
import { Textarea as
|
|
63
|
-
import { Toast as Na, ToastAction as
|
|
64
|
-
import { Toaster as
|
|
65
|
-
import { toast as
|
|
66
|
-
import { Tooltip as
|
|
59
|
+
import { Tabs as Ta, TabsContent as Pa, TabsImage as ha, TabsList as Ia, TabsTrigger as Aa } from "./components/ui/tabs.js";
|
|
60
|
+
import { TagGroup as ya, tagGroupVariants as Fa } from "./components/ui/tag-group.js";
|
|
61
|
+
import { Tag as va, tagVariants as Ba } from "./components/ui/tag.js";
|
|
62
|
+
import { Textarea as Ha } from "./components/ui/textarea.js";
|
|
63
|
+
import { Toast as Na, ToastAction as Ra, ToastClose as Ga, ToastDescription as Va, ToastProvider as Ea, ToastTitle as Oa, ToastViewport as Ua } from "./components/ui/toast.js";
|
|
64
|
+
import { Toaster as za } from "./components/ui/toaster.js";
|
|
65
|
+
import { toast as Wa, useToast as qa } from "./hooks/use-toast.js";
|
|
66
|
+
import { Tooltip as ja, TooltipContent as Ja, TooltipProvider as Qa, TooltipTrigger as Xa } from "./components/ui/tooltip.js";
|
|
67
67
|
import { DataTable as $a, DataTableContent as ei, DataTableToolbar as oi } from "./components/ui/data-table/data-table.js";
|
|
68
68
|
import { DataTableColumnList as ti } from "./components/ui/data-table/data-table-column-list.js";
|
|
69
69
|
import { DataTableContext as ii, useDataTable as ni } from "./components/ui/data-table/data-table-context.js";
|
|
70
70
|
import { DataTableFormatOptions as li } from "./components/ui/data-table/data-table-format-options.js";
|
|
71
|
-
import { DataTableSheet as
|
|
71
|
+
import { DataTableSheet as di, DataTableSheetContent as fi, DataTableSheetHeader as si, DataTableSheetTrigger as ci } from "./components/ui/data-table/data-table-sheet.js";
|
|
72
72
|
import { DataTableViewOptions as xi } from "./components/ui/data-table/data-table-view-options.js";
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
73
|
+
import { BROWSER_SHORTCUTS as gi, fuzzyFilter as Di, fuzzyScore as bi, getBrowserShortcutInfo as Ci, getKeySymbol as Ti, isMac as Pi, isReservedShortcut as hi, keybindingFromEvent as Ii, keybindingToString as Ai, keybindingToSymbols as Mi, keybindingsEqual as yi, matchesKeybinding as Fi, parseKeybinding as wi, scopePriority as vi } from "./components/ui/command-palette/utils.js";
|
|
74
|
+
import { ShortcutRegistry as ki } from "./components/ui/command-palette/shortcut-registry.js";
|
|
75
|
+
import { CommandPaletteProvider as Li, useCommandPalette as Ni } from "./components/ui/command-palette/command-palette-context.js";
|
|
76
|
+
import { useShortcut as Gi } from "./components/ui/command-palette/use-shortcut.js";
|
|
77
|
+
import { useGlobalShortcut as Ei } from "./components/ui/command-palette/use-global-shortcut.js";
|
|
78
|
+
import { useBrowserShortcuts as Ui } from "./components/ui/command-palette/use-browser-shortcuts.js";
|
|
79
|
+
import { ShortcutScopeProvider as zi } from "./components/ui/command-palette/shortcut-scope-provider.js";
|
|
80
|
+
import { CommandPalette as Wi, CommandPaletteEmpty as qi, CommandPaletteFooter as Zi, CommandPaletteGroup as ji, CommandPaletteInput as Ji, CommandPaletteItem as Qi, CommandPaletteList as Xi, CommandPaletteSeparator as Yi, CommandPaletteShortcut as $i } from "./components/ui/command-palette/command-palette.js";
|
|
81
|
+
import { Kbd as on } from "./components/ui/command-palette/kbd.js";
|
|
82
|
+
import { ShortcutSettings as tn } from "./components/ui/command-palette/shortcut-settings.js";
|
|
83
|
+
import { AG_GRID_VALUE_FORMATTERS as nn } from "./components/ui/ag-grid-react/value-formatters.js";
|
|
84
|
+
import { processBackendColumnDefs as ln } from "./components/ui/ag-grid-react/process-backend-columndefs.js";
|
|
85
|
+
import { addRowDataEditableCheck as dn } from "./components/ui/ag-grid-react/editable-utils.js";
|
|
86
|
+
import { SplitCellRenderer as sn } from "./components/ui/ag-grid-react/cell-renderers/split-cell-renderer.js";
|
|
87
|
+
import { ImpactNovaI18nProvider as un, useImpactNovaI18n as xn } from "./i18n/ImpactNovaI18nContext.js";
|
|
88
|
+
import { de as gn } from "./i18n/locales/de.js";
|
|
89
|
+
import { defaultMessages as bn } from "./i18n/defaultMessages.js";
|
|
90
|
+
import { es as Tn } from "./i18n/locales/es.js";
|
|
91
|
+
import { getDateFnsLocale as hn, getIntlLocale as In } from "./i18n/getDateFnsLocale.js";
|
|
92
|
+
import { hi as Mn } from "./i18n/locales/hi.js";
|
|
93
|
+
import { kn as Fn } from "./i18n/locales/kn.js";
|
|
76
94
|
export {
|
|
77
|
-
|
|
95
|
+
nn as AG_GRID_VALUE_FORMATTERS,
|
|
78
96
|
n as Accordion,
|
|
79
97
|
p as AccordionContent,
|
|
80
98
|
l as AccordionItem,
|
|
81
99
|
a as AccordionNestedList,
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
100
|
+
m as AccordionTrigger,
|
|
101
|
+
h as Alert,
|
|
102
|
+
I as AlertDescription,
|
|
85
103
|
f as AlertDialog,
|
|
86
104
|
s as AlertDialogAction,
|
|
87
105
|
c as AlertDialogCancel,
|
|
88
106
|
u as AlertDialogContent,
|
|
89
107
|
x as AlertDialogDescription,
|
|
90
|
-
|
|
108
|
+
S as AlertDialogFooter,
|
|
91
109
|
g as AlertDialogHeader,
|
|
92
|
-
|
|
110
|
+
D as AlertDialogOverlay,
|
|
93
111
|
b as AlertDialogPortal,
|
|
94
112
|
C as AlertDialogTitle,
|
|
95
113
|
T as AlertDialogTrigger,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
114
|
+
A as AlertIcon,
|
|
115
|
+
M as AlertTitle,
|
|
116
|
+
w as Avatar,
|
|
99
117
|
v as AvatarFallback,
|
|
100
|
-
|
|
118
|
+
B as AvatarImage,
|
|
119
|
+
gi as BROWSER_SHORTCUTS,
|
|
101
120
|
L as Badge,
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
121
|
+
G as Breadcrumb,
|
|
122
|
+
V as BreadcrumbArrowSeparator,
|
|
123
|
+
E as BreadcrumbEllipsis,
|
|
105
124
|
O as BreadcrumbHeader,
|
|
106
|
-
|
|
125
|
+
U as BreadcrumbItem,
|
|
107
126
|
_ as BreadcrumbLink,
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
127
|
+
z as BreadcrumbList,
|
|
128
|
+
K as BreadcrumbPage,
|
|
129
|
+
W as BreadcrumbSeparator,
|
|
111
130
|
X as Button,
|
|
112
|
-
|
|
131
|
+
j as ButtonGroup,
|
|
113
132
|
$ as Calendar,
|
|
114
133
|
ee as CalendarDayButton,
|
|
115
134
|
re as Card,
|
|
@@ -118,8 +137,8 @@ export {
|
|
|
118
137
|
ie as CardFooter,
|
|
119
138
|
ne as CardHeader,
|
|
120
139
|
pe as CardTitle,
|
|
121
|
-
|
|
122
|
-
|
|
140
|
+
me as Chart,
|
|
141
|
+
de as ChartActions,
|
|
123
142
|
fe as ChartContainer,
|
|
124
143
|
se as ChartContent,
|
|
125
144
|
ce as ChartFullScreen,
|
|
@@ -127,27 +146,37 @@ export {
|
|
|
127
146
|
xe as ChartTitle,
|
|
128
147
|
be as Checkbox,
|
|
129
148
|
Te as Chip,
|
|
149
|
+
Wi as CommandPalette,
|
|
150
|
+
qi as CommandPaletteEmpty,
|
|
151
|
+
Zi as CommandPaletteFooter,
|
|
152
|
+
ji as CommandPaletteGroup,
|
|
153
|
+
Ji as CommandPaletteInput,
|
|
154
|
+
Qi as CommandPaletteItem,
|
|
155
|
+
Xi as CommandPaletteList,
|
|
156
|
+
Li as CommandPaletteProvider,
|
|
157
|
+
Yi as CommandPaletteSeparator,
|
|
158
|
+
$i as CommandPaletteShortcut,
|
|
130
159
|
$a as DataTable,
|
|
131
160
|
ti as DataTableColumnList,
|
|
132
161
|
ei as DataTableContent,
|
|
133
162
|
ii as DataTableContext,
|
|
134
163
|
li as DataTableFormatOptions,
|
|
135
|
-
|
|
164
|
+
di as DataTableSheet,
|
|
136
165
|
fi as DataTableSheetContent,
|
|
137
166
|
si as DataTableSheetHeader,
|
|
138
167
|
ci as DataTableSheetTrigger,
|
|
139
168
|
oi as DataTableToolbar,
|
|
140
169
|
xi as DataTableViewOptions,
|
|
141
|
-
|
|
170
|
+
Ie as DatePicker,
|
|
142
171
|
ve as DateRangePicker,
|
|
143
172
|
_e as Dialog,
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
173
|
+
ze as DialogBody,
|
|
174
|
+
Ke as DialogClose,
|
|
175
|
+
We as DialogContent,
|
|
176
|
+
qe as DialogDescription,
|
|
177
|
+
Ze as DialogFooter,
|
|
178
|
+
je as DialogHeader,
|
|
179
|
+
Je as DialogOverlay,
|
|
151
180
|
Qe as DialogPortal,
|
|
152
181
|
Xe as DialogTitle,
|
|
153
182
|
Ye as DialogTrigger,
|
|
@@ -165,35 +194,35 @@ export {
|
|
|
165
194
|
co as DropdownMenuCheckboxItem,
|
|
166
195
|
uo as DropdownMenuContent,
|
|
167
196
|
xo as DropdownMenuFooter,
|
|
168
|
-
|
|
197
|
+
So as DropdownMenuGroup,
|
|
169
198
|
go as DropdownMenuItem,
|
|
170
|
-
|
|
199
|
+
Do as DropdownMenuLabel,
|
|
171
200
|
bo as DropdownMenuPortal,
|
|
172
201
|
Co as DropdownMenuRadioGroup,
|
|
173
202
|
To as DropdownMenuRadioItem,
|
|
174
203
|
Po as DropdownMenuSeparator,
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
204
|
+
ho as DropdownMenuShortcut,
|
|
205
|
+
Io as DropdownMenuSub,
|
|
206
|
+
Ao as DropdownMenuSubContent,
|
|
207
|
+
Mo as DropdownMenuSubTrigger,
|
|
208
|
+
yo as DropdownMenuTrigger,
|
|
209
|
+
wo as DynamicLayout,
|
|
210
|
+
ko as EmptyContainer,
|
|
211
|
+
Ho as EmptyContainerAction,
|
|
183
212
|
Lo as EmptyContainerDescription,
|
|
184
213
|
No as EmptyContainerImage,
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
214
|
+
Ro as EmptyContainerTitle,
|
|
215
|
+
Vo as FileUpload,
|
|
216
|
+
Eo as FileUploadClose,
|
|
188
217
|
Oo as FileUploadContent,
|
|
189
|
-
|
|
218
|
+
Uo as FileUploadDescription,
|
|
190
219
|
_o as FileUploadDropZone,
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
220
|
+
zo as FileUploadFooter,
|
|
221
|
+
Ko as FileUploadHeader,
|
|
222
|
+
Wo as FileUploadItem,
|
|
223
|
+
qo as FileUploadList,
|
|
224
|
+
Zo as FileUploadTitle,
|
|
225
|
+
Jo as FilterPanel,
|
|
197
226
|
Qo as FilterPanelBody,
|
|
198
227
|
Xo as FilterPanelFooter,
|
|
199
228
|
Yo as FilterPanelHeader,
|
|
@@ -205,42 +234,44 @@ export {
|
|
|
205
234
|
nr as HeaderLogo,
|
|
206
235
|
pr as HeaderRight,
|
|
207
236
|
lr as HeaderSeparator,
|
|
208
|
-
|
|
209
|
-
|
|
237
|
+
mr as HeaderTitle,
|
|
238
|
+
q as HomeIcon,
|
|
210
239
|
sr as HoverCard,
|
|
211
240
|
cr as HoverCardContent,
|
|
212
241
|
ur as HoverCardTrigger,
|
|
213
242
|
o as Icons,
|
|
214
|
-
|
|
215
|
-
Sr as
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
243
|
+
un as ImpactNovaI18nProvider,
|
|
244
|
+
Sr as Input,
|
|
245
|
+
on as Kbd,
|
|
246
|
+
Dr as Loader,
|
|
247
|
+
Me as MonthPicker,
|
|
248
|
+
Fe as MonthRangePicker,
|
|
249
|
+
Re as MultiDatePicker,
|
|
250
|
+
Ve as MultiMonthPicker,
|
|
220
251
|
Oe as MultiWeekPicker,
|
|
221
252
|
Tr as NestedList,
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
253
|
+
kr as NotificationEmpty,
|
|
254
|
+
Hr as NotificationGroup,
|
|
255
|
+
dr as NotificationIconButton,
|
|
256
|
+
Rr as NotificationItem,
|
|
257
|
+
Gr as NotificationItemActions,
|
|
258
|
+
Vr as NotificationItemContent,
|
|
259
|
+
Er as NotificationItemDescription,
|
|
229
260
|
Or as NotificationItemIcon,
|
|
230
|
-
|
|
261
|
+
Ur as NotificationItemTitle,
|
|
231
262
|
Lr as NotificationList,
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
263
|
+
Ar as NotificationPanel,
|
|
264
|
+
Mr as NotificationPanelBody,
|
|
265
|
+
yr as NotificationPanelContent,
|
|
266
|
+
Fr as NotificationPanelFooter,
|
|
267
|
+
wr as NotificationPanelHeader,
|
|
268
|
+
zr as Popover,
|
|
269
|
+
Kr as PopoverAnchor,
|
|
270
|
+
Wr as PopoverBody,
|
|
271
|
+
qr as PopoverClose,
|
|
272
|
+
Zr as PopoverContent,
|
|
273
|
+
jr as PopoverFooter,
|
|
274
|
+
Jr as PopoverHeader,
|
|
244
275
|
Qr as PopoverTitle,
|
|
245
276
|
Xr as PopoverTrigger,
|
|
246
277
|
$r as Portal,
|
|
@@ -249,35 +280,38 @@ export {
|
|
|
249
280
|
at as Prompt,
|
|
250
281
|
it as PromptClose,
|
|
251
282
|
lt as RadioGroup,
|
|
252
|
-
|
|
283
|
+
mt as RadioGroupItem,
|
|
253
284
|
ft as Select,
|
|
254
|
-
|
|
285
|
+
hr as SelectionMode,
|
|
255
286
|
Pt as Separator,
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
287
|
+
It as Sheet,
|
|
288
|
+
At as SheetBody,
|
|
289
|
+
Mt as SheetClose,
|
|
290
|
+
yt as SheetContent,
|
|
291
|
+
Ft as SheetDescription,
|
|
292
|
+
wt as SheetFooter,
|
|
262
293
|
vt as SheetHeader,
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
294
|
+
Bt as SheetOverlay,
|
|
295
|
+
kt as SheetPortal,
|
|
296
|
+
Ht as SheetTitle,
|
|
266
297
|
Lt as SheetTrigger,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
298
|
+
ki as ShortcutRegistry,
|
|
299
|
+
zi as ShortcutScopeProvider,
|
|
300
|
+
tn as ShortcutSettings,
|
|
301
|
+
Rt as Sidebar,
|
|
302
|
+
Gt as SidebarContent,
|
|
303
|
+
Vt as SidebarFooter,
|
|
304
|
+
Et as SidebarGroup,
|
|
271
305
|
Ot as SidebarGroupAction,
|
|
272
|
-
|
|
306
|
+
Ut as SidebarGroupContent,
|
|
273
307
|
_t as SidebarGroupLabel,
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
308
|
+
zt as SidebarHeader,
|
|
309
|
+
Kt as SidebarInput,
|
|
310
|
+
Wt as SidebarInset,
|
|
311
|
+
qt as SidebarLogout,
|
|
312
|
+
Zt as SidebarMenu,
|
|
313
|
+
jt as SidebarMenuAction,
|
|
314
|
+
Jt as SidebarMenuBadge,
|
|
281
315
|
Qt as SidebarMenuButton,
|
|
282
316
|
Xt as SidebarMenuCollapsible,
|
|
283
317
|
Yt as SidebarMenuItem,
|
|
@@ -289,59 +323,85 @@ export {
|
|
|
289
323
|
aa as SidebarRail,
|
|
290
324
|
ia as SidebarSeparator,
|
|
291
325
|
na as SidebarTrigger,
|
|
292
|
-
|
|
326
|
+
ma as Skeleton,
|
|
293
327
|
fa as Slider,
|
|
294
328
|
ca as SmartInput,
|
|
295
|
-
|
|
329
|
+
sn as SplitCellRenderer,
|
|
296
330
|
xa as Stepper,
|
|
297
331
|
ba as Switch,
|
|
298
332
|
Ta as Tabs,
|
|
299
333
|
Pa as TabsContent,
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
334
|
+
ha as TabsImage,
|
|
335
|
+
Ia as TabsList,
|
|
336
|
+
Aa as TabsTrigger,
|
|
303
337
|
va as Tag,
|
|
304
|
-
|
|
305
|
-
|
|
338
|
+
ya as TagGroup,
|
|
339
|
+
Ha as Textarea,
|
|
306
340
|
Na as Toast,
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
341
|
+
Ra as ToastAction,
|
|
342
|
+
Ga as ToastClose,
|
|
343
|
+
Va as ToastDescription,
|
|
344
|
+
Ea as ToastProvider,
|
|
311
345
|
Oa as ToastTitle,
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
346
|
+
Ua as ToastViewport,
|
|
347
|
+
za as Toaster,
|
|
348
|
+
ja as Tooltip,
|
|
349
|
+
Ja as TooltipContent,
|
|
316
350
|
Qa as TooltipProvider,
|
|
317
351
|
Xa as TooltipTrigger,
|
|
318
|
-
|
|
352
|
+
ke as WeekPicker,
|
|
319
353
|
Le as WeekRangePicker,
|
|
320
|
-
|
|
321
|
-
y as
|
|
354
|
+
dn as addRowDataEditableCheck,
|
|
355
|
+
y as alertVariants,
|
|
356
|
+
k as avatarVariants,
|
|
322
357
|
N as badgeVariants,
|
|
323
|
-
|
|
358
|
+
J as buttonGroupVariants,
|
|
324
359
|
Pe as chipVariants,
|
|
325
360
|
ct as cx,
|
|
361
|
+
gn as de,
|
|
362
|
+
bn as defaultMessages,
|
|
326
363
|
vo as dynamicLayoutVariants,
|
|
364
|
+
Tn as es,
|
|
365
|
+
Di as fuzzyFilter,
|
|
366
|
+
bi as fuzzyScore,
|
|
327
367
|
ge as getBaseChartOptions,
|
|
368
|
+
Ci as getBrowserShortcutInfo,
|
|
369
|
+
hn as getDateFnsLocale,
|
|
328
370
|
ut as getIndeterminateState,
|
|
371
|
+
In as getIntlLocale,
|
|
372
|
+
Ti as getKeySymbol,
|
|
329
373
|
xt as getLeafOptions,
|
|
330
|
-
|
|
374
|
+
St as getSelectedCount,
|
|
331
375
|
gt as getSequence,
|
|
332
|
-
|
|
376
|
+
Mn as hi,
|
|
377
|
+
Dt as isInvertedSelection,
|
|
378
|
+
Pi as isMac,
|
|
333
379
|
bt as isOptionArray,
|
|
380
|
+
hi as isReservedShortcut,
|
|
334
381
|
Ct as isSelected,
|
|
382
|
+
Ii as keybindingFromEvent,
|
|
383
|
+
Ai as keybindingToString,
|
|
384
|
+
Mi as keybindingToSymbols,
|
|
385
|
+
yi as keybindingsEqual,
|
|
386
|
+
Fn as kn,
|
|
335
387
|
br as loaderVariants,
|
|
336
|
-
|
|
388
|
+
Fi as matchesKeybinding,
|
|
389
|
+
wi as parseKeybinding,
|
|
390
|
+
ln as processBackendColumnDefs,
|
|
337
391
|
nt as promptVariants,
|
|
338
|
-
|
|
392
|
+
vi as scopePriority,
|
|
393
|
+
Sa as stepVariants,
|
|
339
394
|
ga as stepperVariants,
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
395
|
+
Fa as tagGroupVariants,
|
|
396
|
+
Ba as tagVariants,
|
|
397
|
+
Wa as toast,
|
|
398
|
+
Ui as useBrowserShortcuts,
|
|
399
|
+
Ni as useCommandPalette,
|
|
343
400
|
ni as useDataTable,
|
|
401
|
+
Ei as useGlobalShortcut,
|
|
402
|
+
xn as useImpactNovaI18n,
|
|
344
403
|
vr as useNotificationContext,
|
|
404
|
+
Gi as useShortcut,
|
|
345
405
|
pa as useSidebar,
|
|
346
|
-
|
|
406
|
+
qa as useToast
|
|
347
407
|
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
1
|
{
|
|
3
2
|
"name": "impact-nova",
|
|
4
|
-
"version": "1.
|
|
5
|
-
"description": "Enterprise-grade React design system built with React 19, Vite, Tailwind CSS, and Radix UI.
|
|
3
|
+
"version": "1.5.2",
|
|
4
|
+
"description": "Enterprise-grade React design system built with React 19, Vite, Tailwind CSS, and Radix UI. Built-in internationalization (i18n) and comprehensive UI component library for scalable, accessible, and performant applications.",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"main": "./dist/index.js",
|
|
8
7
|
"module": "./dist/index.js",
|
|
@@ -28,6 +27,11 @@
|
|
|
28
27
|
"enterprise",
|
|
29
28
|
"accessibility",
|
|
30
29
|
"a11y",
|
|
30
|
+
"i18n",
|
|
31
|
+
"internationalization",
|
|
32
|
+
"localization",
|
|
33
|
+
"l10n",
|
|
34
|
+
"multi-language",
|
|
31
35
|
"ui-components",
|
|
32
36
|
"react-components",
|
|
33
37
|
"shadcn",
|
|
@@ -84,6 +88,26 @@
|
|
|
84
88
|
"import": "./dist/index.js"
|
|
85
89
|
},
|
|
86
90
|
"./dist/impact-nova.css": "./dist/impact-nova.css",
|
|
91
|
+
"./locale": {
|
|
92
|
+
"types": "./dist/i18n/locales/index.d.ts",
|
|
93
|
+
"import": "./dist/i18n/locales/index.js"
|
|
94
|
+
},
|
|
95
|
+
"./locale/de": {
|
|
96
|
+
"types": "./dist/i18n/locales/de.d.ts",
|
|
97
|
+
"import": "./dist/i18n/locales/de.js"
|
|
98
|
+
},
|
|
99
|
+
"./locale/es": {
|
|
100
|
+
"types": "./dist/i18n/locales/es.d.ts",
|
|
101
|
+
"import": "./dist/i18n/locales/es.js"
|
|
102
|
+
},
|
|
103
|
+
"./locale/hi": {
|
|
104
|
+
"types": "./dist/i18n/locales/hi.d.ts",
|
|
105
|
+
"import": "./dist/i18n/locales/hi.js"
|
|
106
|
+
},
|
|
107
|
+
"./locale/kn": {
|
|
108
|
+
"types": "./dist/i18n/locales/kn.d.ts",
|
|
109
|
+
"import": "./dist/i18n/locales/kn.js"
|
|
110
|
+
},
|
|
87
111
|
"./icons": {
|
|
88
112
|
"types": "./dist/icons/index.d.ts",
|
|
89
113
|
"import": "./dist/icons/index.js"
|
|
@@ -308,6 +332,10 @@
|
|
|
308
332
|
"types": "./dist/components/ui/data-table/index.d.ts",
|
|
309
333
|
"import": "./dist/components/ui/data-table/index.js"
|
|
310
334
|
},
|
|
335
|
+
"./command-palette": {
|
|
336
|
+
"types": "./dist/components/ui/command-palette/index.d.ts",
|
|
337
|
+
"import": "./dist/components/ui/command-palette/index.js"
|
|
338
|
+
},
|
|
311
339
|
"./tailwind.config": {
|
|
312
340
|
"types": "./tailwind.config.d.ts",
|
|
313
341
|
"import": "./tailwind.config.js",
|
|
@@ -492,11 +520,15 @@
|
|
|
492
520
|
],
|
|
493
521
|
"tailwind.config": [
|
|
494
522
|
"tailwind.config.d.ts"
|
|
523
|
+
],
|
|
524
|
+
"command-palette": [
|
|
525
|
+
"dist/components/ui/command-palette/index.d.ts"
|
|
495
526
|
]
|
|
496
527
|
}
|
|
497
528
|
},
|
|
498
529
|
"scripts": {
|
|
499
530
|
"dev": "vite",
|
|
531
|
+
"prepublishOnly": "npm run build",
|
|
500
532
|
"build": "tsc -b && vite build",
|
|
501
533
|
"lint": "eslint .",
|
|
502
534
|
"preview": "vite preview",
|
|
@@ -582,4 +614,4 @@
|
|
|
582
614
|
"react": "^19.2.0",
|
|
583
615
|
"react-dom": "^19.2.0"
|
|
584
616
|
}
|
|
585
|
-
}
|
|
617
|
+
}
|