@underverse-ui/underverse 1.0.67 → 1.0.69
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/api-reference.json +16 -2
- package/dist/index.cjs +2553 -2705
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +19 -57
- package/dist/index.d.ts +19 -57
- package/dist/index.js +2289 -2454
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2597,14 +2597,14 @@ declare const VARIANT_STYLES_ALERT: {
|
|
|
2597
2597
|
error: string;
|
|
2598
2598
|
};
|
|
2599
2599
|
|
|
2600
|
-
type Locale
|
|
2600
|
+
type Locale = "en" | "vi" | "ko" | "ja";
|
|
2601
2601
|
type Translations = Record<string, Record<string, string | Record<string, string>>>;
|
|
2602
2602
|
interface TranslationProviderProps {
|
|
2603
2603
|
children: React$1.ReactNode;
|
|
2604
2604
|
/** Current locale. Defaults to "en" */
|
|
2605
|
-
locale?: Locale
|
|
2605
|
+
locale?: Locale;
|
|
2606
2606
|
/** Custom translations to merge with defaults */
|
|
2607
|
-
translations?: Partial<Record<Locale
|
|
2607
|
+
translations?: Partial<Record<Locale, Translations>>;
|
|
2608
2608
|
}
|
|
2609
2609
|
/**
|
|
2610
2610
|
* TranslationProvider for Underverse UI components.
|
|
@@ -2651,60 +2651,22 @@ declare const useUnderverseTranslations: (namespace: string) => (key: string) =>
|
|
|
2651
2651
|
*
|
|
2652
2652
|
* @returns The current locale ("en" or "vi")
|
|
2653
2653
|
*/
|
|
2654
|
-
declare const useUnderverseLocale: () => Locale
|
|
2655
|
-
|
|
2656
|
-
/**
|
|
2657
|
-
* Translation adapter for Underverse UI components.
|
|
2658
|
-
*
|
|
2659
|
-
* This module provides a unified translation interface that:
|
|
2660
|
-
* 1. Uses next-intl when available (for Next.js projects)
|
|
2661
|
-
* 2. Falls back to @underverse-ui/underverse's internal translations
|
|
2662
|
-
*
|
|
2663
|
-
* Components should import from this file instead of directly from next-intl
|
|
2664
|
-
* to ensure compatibility with both Next.js and React projects.
|
|
2665
|
-
*/
|
|
2654
|
+
declare const useUnderverseLocale: () => Locale;
|
|
2666
2655
|
|
|
2667
|
-
|
|
2668
|
-
interface UnderverseProviderProps {
|
|
2656
|
+
interface NextIntlAdapterProps {
|
|
2669
2657
|
children: React$1.ReactNode;
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2658
|
+
locale?: string | null;
|
|
2659
|
+
messages?: Record<string, unknown> | null;
|
|
2660
|
+
}
|
|
2661
|
+
declare function NextIntlAdapter({ children, locale, messages }: NextIntlAdapterProps): react_jsx_runtime.JSX.Element;
|
|
2662
|
+
declare const UnderverseNextIntlProvider: typeof NextIntlAdapter;
|
|
2663
|
+
|
|
2664
|
+
type LegacyTranslations = Record<string, Record<string, string | Record<string, string>>>;
|
|
2665
|
+
interface UnderverseProviderProps extends Omit<TranslationProviderProps, "translations"> {
|
|
2666
|
+
translations?: LegacyTranslations;
|
|
2674
2667
|
}
|
|
2675
|
-
/**
|
|
2676
|
-
* UnderverseProvider for standalone React usage (without next-intl).
|
|
2677
|
-
* Wrap your app with this provider to enable translations.
|
|
2678
|
-
*
|
|
2679
|
-
* @example
|
|
2680
|
-
* ```tsx
|
|
2681
|
-
* // For React (Vite, CRA, etc.) - without next-intl
|
|
2682
|
-
* import { UnderverseProvider, DatePicker } from "@underverse-ui/underverse";
|
|
2683
|
-
*
|
|
2684
|
-
* function App() {
|
|
2685
|
-
* return (
|
|
2686
|
-
* <UnderverseProvider locale="vi">
|
|
2687
|
-
* <DatePicker onChange={(date) => console.log(date)} />
|
|
2688
|
-
* </UnderverseProvider>
|
|
2689
|
-
* );
|
|
2690
|
-
* }
|
|
2691
|
-
* ```
|
|
2692
|
-
*/
|
|
2693
2668
|
declare const UnderverseProvider: React$1.FC<UnderverseProviderProps>;
|
|
2694
|
-
/**
|
|
2695
|
-
* Smart translation hook that works with both next-intl and standalone React.
|
|
2696
|
-
*
|
|
2697
|
-
* Priority:
|
|
2698
|
-
* 1. next-intl (if available and in NextIntlClientProvider)
|
|
2699
|
-
* 2. UnderverseProvider context
|
|
2700
|
-
* 3. English fallback defaults
|
|
2701
|
-
*
|
|
2702
|
-
* @param namespace - The translation namespace (e.g., "DatePicker", "Common")
|
|
2703
|
-
*/
|
|
2704
2669
|
declare function useTranslations(namespace: string): (key: string, params?: Record<string, unknown>) => string;
|
|
2705
|
-
/**
|
|
2706
|
-
* Smart locale hook that works with both next-intl and standalone React.
|
|
2707
|
-
*/
|
|
2708
2670
|
declare function useLocale(): Locale;
|
|
2709
2671
|
|
|
2710
2672
|
declare const ForceInternalTranslationsProvider: React$1.FC<{
|
|
@@ -2712,7 +2674,7 @@ declare const ForceInternalTranslationsProvider: React$1.FC<{
|
|
|
2712
2674
|
}>;
|
|
2713
2675
|
/**
|
|
2714
2676
|
* Smart translation hook that:
|
|
2715
|
-
* 1. Uses
|
|
2677
|
+
* 1. Uses NextIntlAdapter if available and not forced to use internal
|
|
2716
2678
|
* 2. Falls back to internal TranslationContext
|
|
2717
2679
|
* 3. Falls back to English defaults if no provider is available
|
|
2718
2680
|
*
|
|
@@ -2721,7 +2683,7 @@ declare const ForceInternalTranslationsProvider: React$1.FC<{
|
|
|
2721
2683
|
*
|
|
2722
2684
|
* @example
|
|
2723
2685
|
* ```tsx
|
|
2724
|
-
* // Works in Next.js with
|
|
2686
|
+
* // Works in Next.js with <NextIntlAdapter />
|
|
2725
2687
|
* // Works in React without next-intl
|
|
2726
2688
|
* // Works without any provider (English fallback)
|
|
2727
2689
|
* const t = useSmartTranslations("DatePicker");
|
|
@@ -2731,13 +2693,13 @@ declare const ForceInternalTranslationsProvider: React$1.FC<{
|
|
|
2731
2693
|
declare function useSmartTranslations(namespace: string): (key: string) => string;
|
|
2732
2694
|
/**
|
|
2733
2695
|
* Smart locale hook that:
|
|
2734
|
-
* 1. Uses
|
|
2696
|
+
* 1. Uses NextIntlAdapter if available
|
|
2735
2697
|
* 2. Falls back to internal TranslationContext
|
|
2736
2698
|
* 3. Falls back to "en" if no provider is available
|
|
2737
2699
|
*
|
|
2738
2700
|
* @returns The current locale
|
|
2739
2701
|
*/
|
|
2740
|
-
declare function useSmartLocale(): Locale
|
|
2702
|
+
declare function useSmartLocale(): Locale;
|
|
2741
2703
|
|
|
2742
2704
|
type UEditorUploadImageForSaveResult = string | ({
|
|
2743
2705
|
url: string;
|
|
@@ -4643,4 +4605,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4643
4605
|
};
|
|
4644
4606
|
};
|
|
4645
4607
|
|
|
4646
|
-
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type CarouselEffectOptions, type CarouselEffectPreset, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale
|
|
4608
|
+
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type CarouselEffectOptions, type CarouselEffectPreset, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NextIntlAdapter, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, type ScrollAreaProps, SearchInput, type SearchInputProps, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderProps, type TableProps, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type TextareaProps, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, UEditor, type UEditorInlineUploadedItem, UEditorPrepareContentForSaveError, type UEditorPrepareContentForSaveOptions, type UEditorPrepareContentForSaveResult, type UEditorProps, type UEditorRef, type UEditorUploadImageForSave, type UEditorUploadImageForSaveResult, type UEditorVariant, type UnderverseLocale, UnderverseNextIntlProvider, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UploadedImage, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VIETNAM_HOLIDAYS, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
package/dist/index.d.ts
CHANGED
|
@@ -2597,14 +2597,14 @@ declare const VARIANT_STYLES_ALERT: {
|
|
|
2597
2597
|
error: string;
|
|
2598
2598
|
};
|
|
2599
2599
|
|
|
2600
|
-
type Locale
|
|
2600
|
+
type Locale = "en" | "vi" | "ko" | "ja";
|
|
2601
2601
|
type Translations = Record<string, Record<string, string | Record<string, string>>>;
|
|
2602
2602
|
interface TranslationProviderProps {
|
|
2603
2603
|
children: React$1.ReactNode;
|
|
2604
2604
|
/** Current locale. Defaults to "en" */
|
|
2605
|
-
locale?: Locale
|
|
2605
|
+
locale?: Locale;
|
|
2606
2606
|
/** Custom translations to merge with defaults */
|
|
2607
|
-
translations?: Partial<Record<Locale
|
|
2607
|
+
translations?: Partial<Record<Locale, Translations>>;
|
|
2608
2608
|
}
|
|
2609
2609
|
/**
|
|
2610
2610
|
* TranslationProvider for Underverse UI components.
|
|
@@ -2651,60 +2651,22 @@ declare const useUnderverseTranslations: (namespace: string) => (key: string) =>
|
|
|
2651
2651
|
*
|
|
2652
2652
|
* @returns The current locale ("en" or "vi")
|
|
2653
2653
|
*/
|
|
2654
|
-
declare const useUnderverseLocale: () => Locale
|
|
2655
|
-
|
|
2656
|
-
/**
|
|
2657
|
-
* Translation adapter for Underverse UI components.
|
|
2658
|
-
*
|
|
2659
|
-
* This module provides a unified translation interface that:
|
|
2660
|
-
* 1. Uses next-intl when available (for Next.js projects)
|
|
2661
|
-
* 2. Falls back to @underverse-ui/underverse's internal translations
|
|
2662
|
-
*
|
|
2663
|
-
* Components should import from this file instead of directly from next-intl
|
|
2664
|
-
* to ensure compatibility with both Next.js and React projects.
|
|
2665
|
-
*/
|
|
2654
|
+
declare const useUnderverseLocale: () => Locale;
|
|
2666
2655
|
|
|
2667
|
-
|
|
2668
|
-
interface UnderverseProviderProps {
|
|
2656
|
+
interface NextIntlAdapterProps {
|
|
2669
2657
|
children: React$1.ReactNode;
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2658
|
+
locale?: string | null;
|
|
2659
|
+
messages?: Record<string, unknown> | null;
|
|
2660
|
+
}
|
|
2661
|
+
declare function NextIntlAdapter({ children, locale, messages }: NextIntlAdapterProps): react_jsx_runtime.JSX.Element;
|
|
2662
|
+
declare const UnderverseNextIntlProvider: typeof NextIntlAdapter;
|
|
2663
|
+
|
|
2664
|
+
type LegacyTranslations = Record<string, Record<string, string | Record<string, string>>>;
|
|
2665
|
+
interface UnderverseProviderProps extends Omit<TranslationProviderProps, "translations"> {
|
|
2666
|
+
translations?: LegacyTranslations;
|
|
2674
2667
|
}
|
|
2675
|
-
/**
|
|
2676
|
-
* UnderverseProvider for standalone React usage (without next-intl).
|
|
2677
|
-
* Wrap your app with this provider to enable translations.
|
|
2678
|
-
*
|
|
2679
|
-
* @example
|
|
2680
|
-
* ```tsx
|
|
2681
|
-
* // For React (Vite, CRA, etc.) - without next-intl
|
|
2682
|
-
* import { UnderverseProvider, DatePicker } from "@underverse-ui/underverse";
|
|
2683
|
-
*
|
|
2684
|
-
* function App() {
|
|
2685
|
-
* return (
|
|
2686
|
-
* <UnderverseProvider locale="vi">
|
|
2687
|
-
* <DatePicker onChange={(date) => console.log(date)} />
|
|
2688
|
-
* </UnderverseProvider>
|
|
2689
|
-
* );
|
|
2690
|
-
* }
|
|
2691
|
-
* ```
|
|
2692
|
-
*/
|
|
2693
2668
|
declare const UnderverseProvider: React$1.FC<UnderverseProviderProps>;
|
|
2694
|
-
/**
|
|
2695
|
-
* Smart translation hook that works with both next-intl and standalone React.
|
|
2696
|
-
*
|
|
2697
|
-
* Priority:
|
|
2698
|
-
* 1. next-intl (if available and in NextIntlClientProvider)
|
|
2699
|
-
* 2. UnderverseProvider context
|
|
2700
|
-
* 3. English fallback defaults
|
|
2701
|
-
*
|
|
2702
|
-
* @param namespace - The translation namespace (e.g., "DatePicker", "Common")
|
|
2703
|
-
*/
|
|
2704
2669
|
declare function useTranslations(namespace: string): (key: string, params?: Record<string, unknown>) => string;
|
|
2705
|
-
/**
|
|
2706
|
-
* Smart locale hook that works with both next-intl and standalone React.
|
|
2707
|
-
*/
|
|
2708
2670
|
declare function useLocale(): Locale;
|
|
2709
2671
|
|
|
2710
2672
|
declare const ForceInternalTranslationsProvider: React$1.FC<{
|
|
@@ -2712,7 +2674,7 @@ declare const ForceInternalTranslationsProvider: React$1.FC<{
|
|
|
2712
2674
|
}>;
|
|
2713
2675
|
/**
|
|
2714
2676
|
* Smart translation hook that:
|
|
2715
|
-
* 1. Uses
|
|
2677
|
+
* 1. Uses NextIntlAdapter if available and not forced to use internal
|
|
2716
2678
|
* 2. Falls back to internal TranslationContext
|
|
2717
2679
|
* 3. Falls back to English defaults if no provider is available
|
|
2718
2680
|
*
|
|
@@ -2721,7 +2683,7 @@ declare const ForceInternalTranslationsProvider: React$1.FC<{
|
|
|
2721
2683
|
*
|
|
2722
2684
|
* @example
|
|
2723
2685
|
* ```tsx
|
|
2724
|
-
* // Works in Next.js with
|
|
2686
|
+
* // Works in Next.js with <NextIntlAdapter />
|
|
2725
2687
|
* // Works in React without next-intl
|
|
2726
2688
|
* // Works without any provider (English fallback)
|
|
2727
2689
|
* const t = useSmartTranslations("DatePicker");
|
|
@@ -2731,13 +2693,13 @@ declare const ForceInternalTranslationsProvider: React$1.FC<{
|
|
|
2731
2693
|
declare function useSmartTranslations(namespace: string): (key: string) => string;
|
|
2732
2694
|
/**
|
|
2733
2695
|
* Smart locale hook that:
|
|
2734
|
-
* 1. Uses
|
|
2696
|
+
* 1. Uses NextIntlAdapter if available
|
|
2735
2697
|
* 2. Falls back to internal TranslationContext
|
|
2736
2698
|
* 3. Falls back to "en" if no provider is available
|
|
2737
2699
|
*
|
|
2738
2700
|
* @returns The current locale
|
|
2739
2701
|
*/
|
|
2740
|
-
declare function useSmartLocale(): Locale
|
|
2702
|
+
declare function useSmartLocale(): Locale;
|
|
2741
2703
|
|
|
2742
2704
|
type UEditorUploadImageForSaveResult = string | ({
|
|
2743
2705
|
url: string;
|
|
@@ -4643,4 +4605,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4643
4605
|
};
|
|
4644
4606
|
};
|
|
4645
4607
|
|
|
4646
|
-
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type CarouselEffectOptions, type CarouselEffectPreset, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale
|
|
4608
|
+
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type CarouselEffectOptions, type CarouselEffectPreset, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NextIntlAdapter, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, type ScrollAreaProps, SearchInput, type SearchInputProps, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderProps, type TableProps, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type TextareaProps, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, UEditor, type UEditorInlineUploadedItem, UEditorPrepareContentForSaveError, type UEditorPrepareContentForSaveOptions, type UEditorPrepareContentForSaveResult, type UEditorProps, type UEditorRef, type UEditorUploadImageForSave, type UEditorUploadImageForSaveResult, type UEditorVariant, type UnderverseLocale, UnderverseNextIntlProvider, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UploadedImage, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VIETNAM_HOLIDAYS, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|