@underverse-ui/underverse 0.2.53 → 0.2.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1672 -1333
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +67 -2
- package/dist/index.d.ts +67 -2
- package/dist/index.js +1678 -1340
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -447,12 +447,13 @@ interface TooltipProps {
|
|
|
447
447
|
}
|
|
448
448
|
declare const Tooltip: React$1.FC<TooltipProps>;
|
|
449
449
|
|
|
450
|
+
type PopoverPlacement = "top" | "bottom" | "left" | "right" | "top-start" | "bottom-start" | "top-end" | "bottom-end";
|
|
450
451
|
interface PopoverProps {
|
|
451
452
|
trigger: React$1.ReactElement;
|
|
452
453
|
children: React$1.ReactNode;
|
|
453
454
|
className?: string;
|
|
454
455
|
contentClassName?: string;
|
|
455
|
-
placement?:
|
|
456
|
+
placement?: PopoverPlacement;
|
|
456
457
|
modal?: boolean;
|
|
457
458
|
disabled?: boolean;
|
|
458
459
|
open?: boolean;
|
|
@@ -746,6 +747,26 @@ declare const DateRangePicker: React$1.FC<{
|
|
|
746
747
|
disablePastDates?: boolean;
|
|
747
748
|
}>;
|
|
748
749
|
|
|
750
|
+
interface DateTimePickerProps {
|
|
751
|
+
value?: Date;
|
|
752
|
+
onChange: (date: Date | undefined) => void;
|
|
753
|
+
placeholder?: string;
|
|
754
|
+
className?: string;
|
|
755
|
+
disabled?: boolean;
|
|
756
|
+
minDate?: Date;
|
|
757
|
+
maxDate?: Date;
|
|
758
|
+
/** 12 or 24 hour format */
|
|
759
|
+
format?: "12" | "24";
|
|
760
|
+
includeSeconds?: boolean;
|
|
761
|
+
label?: string;
|
|
762
|
+
required?: boolean;
|
|
763
|
+
/** Label for the "Done" button */
|
|
764
|
+
doneLabel?: string;
|
|
765
|
+
/** Label for the "Clear" button */
|
|
766
|
+
clearLabel?: string;
|
|
767
|
+
}
|
|
768
|
+
declare const DateTimePicker: React$1.FC<DateTimePickerProps>;
|
|
769
|
+
|
|
749
770
|
type TimeFormat = "24" | "12";
|
|
750
771
|
type TimePickerVariant = "default" | "compact" | "inline";
|
|
751
772
|
interface TimePickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
@@ -1179,6 +1200,8 @@ interface ListProps extends React$1.HTMLAttributes<HTMLUListElement> {
|
|
|
1179
1200
|
emptyText?: string;
|
|
1180
1201
|
/** Make items more compact */
|
|
1181
1202
|
dense?: boolean;
|
|
1203
|
+
/** Class name customization for all list items */
|
|
1204
|
+
itemClassName?: string;
|
|
1182
1205
|
}
|
|
1183
1206
|
interface ListItemProps extends React$1.HTMLAttributes<HTMLLIElement> {
|
|
1184
1207
|
as?: "li" | "div" | "a" | "button";
|
|
@@ -1209,6 +1232,8 @@ interface ListItemProps extends React$1.HTMLAttributes<HTMLLIElement> {
|
|
|
1209
1232
|
onExpandChange?: (expanded: boolean) => void;
|
|
1210
1233
|
/** Content to show when expanded */
|
|
1211
1234
|
expandContent?: React$1.ReactNode;
|
|
1235
|
+
/** Custom class for inner content container (use for padding) */
|
|
1236
|
+
contentClassName?: string;
|
|
1212
1237
|
}
|
|
1213
1238
|
declare const ListItem: React$1.ForwardRefExoticComponent<ListItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
1214
1239
|
declare const List: React$1.ForwardRefExoticComponent<ListProps & React$1.RefAttributes<HTMLUListElement>> & {
|
|
@@ -2141,6 +2166,11 @@ declare const underverseMessages: {
|
|
|
2141
2166
|
today: string;
|
|
2142
2167
|
clear: string;
|
|
2143
2168
|
};
|
|
2169
|
+
DateTimePicker: {
|
|
2170
|
+
time: string;
|
|
2171
|
+
clear: string;
|
|
2172
|
+
done: string;
|
|
2173
|
+
};
|
|
2144
2174
|
Pagination: {
|
|
2145
2175
|
navigationLabel: string;
|
|
2146
2176
|
showingResults: string;
|
|
@@ -2209,6 +2239,11 @@ declare const underverseMessages: {
|
|
|
2209
2239
|
today: string;
|
|
2210
2240
|
clear: string;
|
|
2211
2241
|
};
|
|
2242
|
+
DateTimePicker: {
|
|
2243
|
+
time: string;
|
|
2244
|
+
clear: string;
|
|
2245
|
+
done: string;
|
|
2246
|
+
};
|
|
2212
2247
|
Pagination: {
|
|
2213
2248
|
navigationLabel: string;
|
|
2214
2249
|
showingResults: string;
|
|
@@ -2277,6 +2312,11 @@ declare const underverseMessages: {
|
|
|
2277
2312
|
today: string;
|
|
2278
2313
|
clear: string;
|
|
2279
2314
|
};
|
|
2315
|
+
DateTimePicker: {
|
|
2316
|
+
time: string;
|
|
2317
|
+
clear: string;
|
|
2318
|
+
done: string;
|
|
2319
|
+
};
|
|
2280
2320
|
Pagination: {
|
|
2281
2321
|
navigationLabel: string;
|
|
2282
2322
|
showingResults: string;
|
|
@@ -2345,6 +2385,11 @@ declare const underverseMessages: {
|
|
|
2345
2385
|
today: string;
|
|
2346
2386
|
clear: string;
|
|
2347
2387
|
};
|
|
2388
|
+
DateTimePicker: {
|
|
2389
|
+
time: string;
|
|
2390
|
+
clear: string;
|
|
2391
|
+
done: string;
|
|
2392
|
+
};
|
|
2348
2393
|
Pagination: {
|
|
2349
2394
|
navigationLabel: string;
|
|
2350
2395
|
showingResults: string;
|
|
@@ -2415,6 +2460,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2415
2460
|
today: string;
|
|
2416
2461
|
clear: string;
|
|
2417
2462
|
};
|
|
2463
|
+
DateTimePicker: {
|
|
2464
|
+
time: string;
|
|
2465
|
+
clear: string;
|
|
2466
|
+
done: string;
|
|
2467
|
+
};
|
|
2418
2468
|
Pagination: {
|
|
2419
2469
|
navigationLabel: string;
|
|
2420
2470
|
showingResults: string;
|
|
@@ -2482,6 +2532,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2482
2532
|
today: string;
|
|
2483
2533
|
clear: string;
|
|
2484
2534
|
};
|
|
2535
|
+
DateTimePicker: {
|
|
2536
|
+
time: string;
|
|
2537
|
+
clear: string;
|
|
2538
|
+
done: string;
|
|
2539
|
+
};
|
|
2485
2540
|
Pagination: {
|
|
2486
2541
|
navigationLabel: string;
|
|
2487
2542
|
showingResults: string;
|
|
@@ -2549,6 +2604,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2549
2604
|
today: string;
|
|
2550
2605
|
clear: string;
|
|
2551
2606
|
};
|
|
2607
|
+
DateTimePicker: {
|
|
2608
|
+
time: string;
|
|
2609
|
+
clear: string;
|
|
2610
|
+
done: string;
|
|
2611
|
+
};
|
|
2552
2612
|
Pagination: {
|
|
2553
2613
|
navigationLabel: string;
|
|
2554
2614
|
showingResults: string;
|
|
@@ -2616,6 +2676,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2616
2676
|
today: string;
|
|
2617
2677
|
clear: string;
|
|
2618
2678
|
};
|
|
2679
|
+
DateTimePicker: {
|
|
2680
|
+
time: string;
|
|
2681
|
+
clear: string;
|
|
2682
|
+
done: string;
|
|
2683
|
+
};
|
|
2619
2684
|
Pagination: {
|
|
2620
2685
|
navigationLabel: string;
|
|
2621
2686
|
showingResults: string;
|
|
@@ -2639,4 +2704,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2639
2704
|
};
|
|
2640
2705
|
};
|
|
2641
2706
|
|
|
2642
|
-
export { AccessDenied, Alert, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, Avatar, Badge, Badge as BadgeBase, BarChart, type BarChartDataPoint, type BarChartProps, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableQuery, DatePicker, type DatePickerProps, DateRangePicker, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FloatingContacts, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GaugeChart, type GaugeChartProps, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LineChart, type LineChartDataPoint, type LineChartProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type Locale$1 as Locale, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PieChart, type PieChartDataPoint, type PieChartProps, PillTabs, Popover, Progress, PulseBadge, RadarChart, type RadarChartDataPoint, type RadarChartProps, type RadarChartSeries, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Sorter, Sparkline, type SparklineDataPoint, type SparklineProps, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, type UnderverseLocale, UnderverseProvider, type UnderverseProviderProps, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, shadcnAnimationStyles, underverseMessages, useFormField, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
|
2707
|
+
export { AccessDenied, Alert, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, Avatar, Badge, Badge as BadgeBase, BarChart, type BarChartDataPoint, type BarChartProps, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableQuery, DatePicker, type DatePickerProps, DateRangePicker, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FloatingContacts, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GaugeChart, type GaugeChartProps, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LineChart, type LineChartDataPoint, type LineChartProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type Locale$1 as Locale, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PieChart, type PieChartDataPoint, type PieChartProps, PillTabs, Popover, Progress, PulseBadge, RadarChart, type RadarChartDataPoint, type RadarChartProps, type RadarChartSeries, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Sorter, Sparkline, type SparklineDataPoint, type SparklineProps, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, type UnderverseLocale, UnderverseProvider, type UnderverseProviderProps, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, shadcnAnimationStyles, underverseMessages, useFormField, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
package/dist/index.d.ts
CHANGED
|
@@ -447,12 +447,13 @@ interface TooltipProps {
|
|
|
447
447
|
}
|
|
448
448
|
declare const Tooltip: React$1.FC<TooltipProps>;
|
|
449
449
|
|
|
450
|
+
type PopoverPlacement = "top" | "bottom" | "left" | "right" | "top-start" | "bottom-start" | "top-end" | "bottom-end";
|
|
450
451
|
interface PopoverProps {
|
|
451
452
|
trigger: React$1.ReactElement;
|
|
452
453
|
children: React$1.ReactNode;
|
|
453
454
|
className?: string;
|
|
454
455
|
contentClassName?: string;
|
|
455
|
-
placement?:
|
|
456
|
+
placement?: PopoverPlacement;
|
|
456
457
|
modal?: boolean;
|
|
457
458
|
disabled?: boolean;
|
|
458
459
|
open?: boolean;
|
|
@@ -746,6 +747,26 @@ declare const DateRangePicker: React$1.FC<{
|
|
|
746
747
|
disablePastDates?: boolean;
|
|
747
748
|
}>;
|
|
748
749
|
|
|
750
|
+
interface DateTimePickerProps {
|
|
751
|
+
value?: Date;
|
|
752
|
+
onChange: (date: Date | undefined) => void;
|
|
753
|
+
placeholder?: string;
|
|
754
|
+
className?: string;
|
|
755
|
+
disabled?: boolean;
|
|
756
|
+
minDate?: Date;
|
|
757
|
+
maxDate?: Date;
|
|
758
|
+
/** 12 or 24 hour format */
|
|
759
|
+
format?: "12" | "24";
|
|
760
|
+
includeSeconds?: boolean;
|
|
761
|
+
label?: string;
|
|
762
|
+
required?: boolean;
|
|
763
|
+
/** Label for the "Done" button */
|
|
764
|
+
doneLabel?: string;
|
|
765
|
+
/** Label for the "Clear" button */
|
|
766
|
+
clearLabel?: string;
|
|
767
|
+
}
|
|
768
|
+
declare const DateTimePicker: React$1.FC<DateTimePickerProps>;
|
|
769
|
+
|
|
749
770
|
type TimeFormat = "24" | "12";
|
|
750
771
|
type TimePickerVariant = "default" | "compact" | "inline";
|
|
751
772
|
interface TimePickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
@@ -1179,6 +1200,8 @@ interface ListProps extends React$1.HTMLAttributes<HTMLUListElement> {
|
|
|
1179
1200
|
emptyText?: string;
|
|
1180
1201
|
/** Make items more compact */
|
|
1181
1202
|
dense?: boolean;
|
|
1203
|
+
/** Class name customization for all list items */
|
|
1204
|
+
itemClassName?: string;
|
|
1182
1205
|
}
|
|
1183
1206
|
interface ListItemProps extends React$1.HTMLAttributes<HTMLLIElement> {
|
|
1184
1207
|
as?: "li" | "div" | "a" | "button";
|
|
@@ -1209,6 +1232,8 @@ interface ListItemProps extends React$1.HTMLAttributes<HTMLLIElement> {
|
|
|
1209
1232
|
onExpandChange?: (expanded: boolean) => void;
|
|
1210
1233
|
/** Content to show when expanded */
|
|
1211
1234
|
expandContent?: React$1.ReactNode;
|
|
1235
|
+
/** Custom class for inner content container (use for padding) */
|
|
1236
|
+
contentClassName?: string;
|
|
1212
1237
|
}
|
|
1213
1238
|
declare const ListItem: React$1.ForwardRefExoticComponent<ListItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
1214
1239
|
declare const List: React$1.ForwardRefExoticComponent<ListProps & React$1.RefAttributes<HTMLUListElement>> & {
|
|
@@ -2141,6 +2166,11 @@ declare const underverseMessages: {
|
|
|
2141
2166
|
today: string;
|
|
2142
2167
|
clear: string;
|
|
2143
2168
|
};
|
|
2169
|
+
DateTimePicker: {
|
|
2170
|
+
time: string;
|
|
2171
|
+
clear: string;
|
|
2172
|
+
done: string;
|
|
2173
|
+
};
|
|
2144
2174
|
Pagination: {
|
|
2145
2175
|
navigationLabel: string;
|
|
2146
2176
|
showingResults: string;
|
|
@@ -2209,6 +2239,11 @@ declare const underverseMessages: {
|
|
|
2209
2239
|
today: string;
|
|
2210
2240
|
clear: string;
|
|
2211
2241
|
};
|
|
2242
|
+
DateTimePicker: {
|
|
2243
|
+
time: string;
|
|
2244
|
+
clear: string;
|
|
2245
|
+
done: string;
|
|
2246
|
+
};
|
|
2212
2247
|
Pagination: {
|
|
2213
2248
|
navigationLabel: string;
|
|
2214
2249
|
showingResults: string;
|
|
@@ -2277,6 +2312,11 @@ declare const underverseMessages: {
|
|
|
2277
2312
|
today: string;
|
|
2278
2313
|
clear: string;
|
|
2279
2314
|
};
|
|
2315
|
+
DateTimePicker: {
|
|
2316
|
+
time: string;
|
|
2317
|
+
clear: string;
|
|
2318
|
+
done: string;
|
|
2319
|
+
};
|
|
2280
2320
|
Pagination: {
|
|
2281
2321
|
navigationLabel: string;
|
|
2282
2322
|
showingResults: string;
|
|
@@ -2345,6 +2385,11 @@ declare const underverseMessages: {
|
|
|
2345
2385
|
today: string;
|
|
2346
2386
|
clear: string;
|
|
2347
2387
|
};
|
|
2388
|
+
DateTimePicker: {
|
|
2389
|
+
time: string;
|
|
2390
|
+
clear: string;
|
|
2391
|
+
done: string;
|
|
2392
|
+
};
|
|
2348
2393
|
Pagination: {
|
|
2349
2394
|
navigationLabel: string;
|
|
2350
2395
|
showingResults: string;
|
|
@@ -2415,6 +2460,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2415
2460
|
today: string;
|
|
2416
2461
|
clear: string;
|
|
2417
2462
|
};
|
|
2463
|
+
DateTimePicker: {
|
|
2464
|
+
time: string;
|
|
2465
|
+
clear: string;
|
|
2466
|
+
done: string;
|
|
2467
|
+
};
|
|
2418
2468
|
Pagination: {
|
|
2419
2469
|
navigationLabel: string;
|
|
2420
2470
|
showingResults: string;
|
|
@@ -2482,6 +2532,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2482
2532
|
today: string;
|
|
2483
2533
|
clear: string;
|
|
2484
2534
|
};
|
|
2535
|
+
DateTimePicker: {
|
|
2536
|
+
time: string;
|
|
2537
|
+
clear: string;
|
|
2538
|
+
done: string;
|
|
2539
|
+
};
|
|
2485
2540
|
Pagination: {
|
|
2486
2541
|
navigationLabel: string;
|
|
2487
2542
|
showingResults: string;
|
|
@@ -2549,6 +2604,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2549
2604
|
today: string;
|
|
2550
2605
|
clear: string;
|
|
2551
2606
|
};
|
|
2607
|
+
DateTimePicker: {
|
|
2608
|
+
time: string;
|
|
2609
|
+
clear: string;
|
|
2610
|
+
done: string;
|
|
2611
|
+
};
|
|
2552
2612
|
Pagination: {
|
|
2553
2613
|
navigationLabel: string;
|
|
2554
2614
|
showingResults: string;
|
|
@@ -2616,6 +2676,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2616
2676
|
today: string;
|
|
2617
2677
|
clear: string;
|
|
2618
2678
|
};
|
|
2679
|
+
DateTimePicker: {
|
|
2680
|
+
time: string;
|
|
2681
|
+
clear: string;
|
|
2682
|
+
done: string;
|
|
2683
|
+
};
|
|
2619
2684
|
Pagination: {
|
|
2620
2685
|
navigationLabel: string;
|
|
2621
2686
|
showingResults: string;
|
|
@@ -2639,4 +2704,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
2639
2704
|
};
|
|
2640
2705
|
};
|
|
2641
2706
|
|
|
2642
|
-
export { AccessDenied, Alert, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, Avatar, Badge, Badge as BadgeBase, BarChart, type BarChartDataPoint, type BarChartProps, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableQuery, DatePicker, type DatePickerProps, DateRangePicker, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FloatingContacts, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GaugeChart, type GaugeChartProps, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LineChart, type LineChartDataPoint, type LineChartProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type Locale$1 as Locale, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PieChart, type PieChartDataPoint, type PieChartProps, PillTabs, Popover, Progress, PulseBadge, RadarChart, type RadarChartDataPoint, type RadarChartProps, type RadarChartSeries, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Sorter, Sparkline, type SparklineDataPoint, type SparklineProps, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, type UnderverseLocale, UnderverseProvider, type UnderverseProviderProps, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, shadcnAnimationStyles, underverseMessages, useFormField, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
|
2707
|
+
export { AccessDenied, Alert, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, Avatar, Badge, Badge as BadgeBase, BarChart, type BarChartDataPoint, type BarChartProps, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarProps, Card, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableQuery, DatePicker, type DatePickerProps, DateRangePicker, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FloatingContacts, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GaugeChart, type GaugeChartProps, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LineChart, type LineChartDataPoint, type LineChartProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type Locale$1 as Locale, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PieChart, type PieChartDataPoint, type PieChartProps, PillTabs, Popover, Progress, PulseBadge, RadarChart, type RadarChartDataPoint, type RadarChartProps, type RadarChartSeries, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Sorter, Sparkline, type SparklineDataPoint, type SparklineProps, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, type UnderverseLocale, UnderverseProvider, type UnderverseProviderProps, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, shadcnAnimationStyles, underverseMessages, useFormField, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|