@underverse-ui/underverse 1.0.170 → 1.0.171
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 +31 -2
- package/dist/index.cjs +3420 -3130
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +69 -1
- package/dist/index.d.ts +69 -1
- package/dist/index.js +3060 -2773
- package/dist/index.js.map +1 -1
- package/package.json +6 -3
- package/scripts/copy-stickers.mjs +64 -0
- package/stickers/cool_monkey/excited.png +0 -0
- package/stickers/cool_monkey/hear.png +0 -0
- package/stickers/cool_monkey/see.png +0 -0
- package/stickers/cool_monkey/speak.png +0 -0
- package/stickers/cute_bunny/heart.png +0 -0
- package/stickers/cute_bunny/shy.png +0 -0
- package/stickers/cute_bunny/sleepy.png +0 -0
- package/stickers/cute_bunny/wink.png +0 -0
- package/stickers/cute_cat/cry.png +0 -0
- package/stickers/cute_cat/laugh.png +0 -0
- package/stickers/cute_cat/love.png +0 -0
- package/stickers/cute_cat/wave.png +0 -0
- package/stickers/cute_dog/angry.png +0 -0
- package/stickers/cute_dog/cool.png +0 -0
- package/stickers/cute_dog/excited.png +0 -0
- package/stickers/cute_dog/sad.png +0 -0
- package/stickers/memoji_apple/heart_eyes.png +0 -0
- package/stickers/memoji_apple/mind_blown.png +0 -0
- package/stickers/memoji_apple/sunglasses.png +0 -0
- package/stickers/memoji_apple/thumbs_up.png +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -251,6 +251,34 @@ declare function setEmojiBaseUrl(url: string): void;
|
|
|
251
251
|
*/
|
|
252
252
|
declare function getEmojiImageUrl(unified: string): string;
|
|
253
253
|
|
|
254
|
+
interface StickerPickerProps {
|
|
255
|
+
onStickerSelect: (sticker: {
|
|
256
|
+
id: string;
|
|
257
|
+
name: string;
|
|
258
|
+
packId: string;
|
|
259
|
+
url: string;
|
|
260
|
+
}) => void;
|
|
261
|
+
className?: string;
|
|
262
|
+
searchPlaceholder?: string;
|
|
263
|
+
emptyText?: string;
|
|
264
|
+
emptyHint?: string;
|
|
265
|
+
showSearch?: boolean;
|
|
266
|
+
showPackNav?: boolean;
|
|
267
|
+
columns?: number;
|
|
268
|
+
maxHeight?: string;
|
|
269
|
+
}
|
|
270
|
+
declare const StickerPicker: React__default.FC<StickerPickerProps>;
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Configure a custom base URL for loading sticker image assets.
|
|
274
|
+
* Defaults to `/stickers`.
|
|
275
|
+
*/
|
|
276
|
+
declare function setStickerBaseUrl(url: string): void;
|
|
277
|
+
/**
|
|
278
|
+
* Resolves the final image URL for a given pack and sticker ID.
|
|
279
|
+
*/
|
|
280
|
+
declare function getStickerImageUrl(packId: string, stickerId: string): string;
|
|
281
|
+
|
|
254
282
|
/** Public props for the `TagInput` component. */
|
|
255
283
|
interface TagInputProps {
|
|
256
284
|
/** Danh sách tags hiện tại */
|
|
@@ -3653,6 +3681,11 @@ declare const underverseMessages: {
|
|
|
3653
3681
|
noResults: string;
|
|
3654
3682
|
tryDifferentSearch: string;
|
|
3655
3683
|
};
|
|
3684
|
+
stickerPicker: {
|
|
3685
|
+
searchPlaceholder: string;
|
|
3686
|
+
noResults: string;
|
|
3687
|
+
tryDifferentSearch: string;
|
|
3688
|
+
};
|
|
3656
3689
|
emojiSuggestion: {
|
|
3657
3690
|
title: string;
|
|
3658
3691
|
noResults: string;
|
|
@@ -4064,6 +4097,11 @@ declare const underverseMessages: {
|
|
|
4064
4097
|
noResults: string;
|
|
4065
4098
|
tryDifferentSearch: string;
|
|
4066
4099
|
};
|
|
4100
|
+
stickerPicker: {
|
|
4101
|
+
searchPlaceholder: string;
|
|
4102
|
+
noResults: string;
|
|
4103
|
+
tryDifferentSearch: string;
|
|
4104
|
+
};
|
|
4067
4105
|
emojiSuggestion: {
|
|
4068
4106
|
title: string;
|
|
4069
4107
|
noResults: string;
|
|
@@ -4475,6 +4513,11 @@ declare const underverseMessages: {
|
|
|
4475
4513
|
noResults: string;
|
|
4476
4514
|
tryDifferentSearch: string;
|
|
4477
4515
|
};
|
|
4516
|
+
stickerPicker: {
|
|
4517
|
+
searchPlaceholder: string;
|
|
4518
|
+
noResults: string;
|
|
4519
|
+
tryDifferentSearch: string;
|
|
4520
|
+
};
|
|
4478
4521
|
emojiSuggestion: {
|
|
4479
4522
|
title: string;
|
|
4480
4523
|
noResults: string;
|
|
@@ -4886,6 +4929,11 @@ declare const underverseMessages: {
|
|
|
4886
4929
|
noResults: string;
|
|
4887
4930
|
tryDifferentSearch: string;
|
|
4888
4931
|
};
|
|
4932
|
+
stickerPicker: {
|
|
4933
|
+
searchPlaceholder: string;
|
|
4934
|
+
noResults: string;
|
|
4935
|
+
tryDifferentSearch: string;
|
|
4936
|
+
};
|
|
4889
4937
|
emojiSuggestion: {
|
|
4890
4938
|
title: string;
|
|
4891
4939
|
noResults: string;
|
|
@@ -5300,6 +5348,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5300
5348
|
noResults: string;
|
|
5301
5349
|
tryDifferentSearch: string;
|
|
5302
5350
|
};
|
|
5351
|
+
stickerPicker: {
|
|
5352
|
+
searchPlaceholder: string;
|
|
5353
|
+
noResults: string;
|
|
5354
|
+
tryDifferentSearch: string;
|
|
5355
|
+
};
|
|
5303
5356
|
emojiSuggestion: {
|
|
5304
5357
|
title: string;
|
|
5305
5358
|
noResults: string;
|
|
@@ -5710,6 +5763,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5710
5763
|
noResults: string;
|
|
5711
5764
|
tryDifferentSearch: string;
|
|
5712
5765
|
};
|
|
5766
|
+
stickerPicker: {
|
|
5767
|
+
searchPlaceholder: string;
|
|
5768
|
+
noResults: string;
|
|
5769
|
+
tryDifferentSearch: string;
|
|
5770
|
+
};
|
|
5713
5771
|
emojiSuggestion: {
|
|
5714
5772
|
title: string;
|
|
5715
5773
|
noResults: string;
|
|
@@ -6120,6 +6178,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6120
6178
|
noResults: string;
|
|
6121
6179
|
tryDifferentSearch: string;
|
|
6122
6180
|
};
|
|
6181
|
+
stickerPicker: {
|
|
6182
|
+
searchPlaceholder: string;
|
|
6183
|
+
noResults: string;
|
|
6184
|
+
tryDifferentSearch: string;
|
|
6185
|
+
};
|
|
6123
6186
|
emojiSuggestion: {
|
|
6124
6187
|
title: string;
|
|
6125
6188
|
noResults: string;
|
|
@@ -6530,6 +6593,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6530
6593
|
noResults: string;
|
|
6531
6594
|
tryDifferentSearch: string;
|
|
6532
6595
|
};
|
|
6596
|
+
stickerPicker: {
|
|
6597
|
+
searchPlaceholder: string;
|
|
6598
|
+
noResults: string;
|
|
6599
|
+
tryDifferentSearch: string;
|
|
6600
|
+
};
|
|
6533
6601
|
emojiSuggestion: {
|
|
6534
6602
|
title: string;
|
|
6535
6603
|
noResults: string;
|
|
@@ -6696,4 +6764,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6696
6764
|
};
|
|
6697
6765
|
};
|
|
6698
6766
|
|
|
6699
|
-
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, type BottomSheetProps, 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, type DrawerProps, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, type GlobalI18nConfig, 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, type SheetProps, SidebarSheet, type SidebarSheetProps, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, type SlideOverProps, 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 UEditorFontFamilyOption, type UEditorFontSizeOption, type UEditorInlineUploadedItem, type UEditorLetterSpacingOption, type UEditorLineHeightOption, 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, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getEmojiImageUrl, getEmojiUnifiedCode, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, setEmojiBaseUrl, shadcnAnimationStyles, underverseMessages, useFormField, useGlobalI18n, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
|
6767
|
+
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, type BottomSheetProps, 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, type DrawerProps, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, type GlobalI18nConfig, 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, type SheetProps, SidebarSheet, type SidebarSheetProps, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, type SlideOverProps, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, StickerPicker, type StickerPickerProps, 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 UEditorFontFamilyOption, type UEditorFontSizeOption, type UEditorInlineUploadedItem, type UEditorLetterSpacingOption, type UEditorLineHeightOption, 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, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getEmojiImageUrl, getEmojiUnifiedCode, getStickerImageUrl, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, setEmojiBaseUrl, setStickerBaseUrl, shadcnAnimationStyles, underverseMessages, useFormField, useGlobalI18n, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
package/dist/index.d.ts
CHANGED
|
@@ -251,6 +251,34 @@ declare function setEmojiBaseUrl(url: string): void;
|
|
|
251
251
|
*/
|
|
252
252
|
declare function getEmojiImageUrl(unified: string): string;
|
|
253
253
|
|
|
254
|
+
interface StickerPickerProps {
|
|
255
|
+
onStickerSelect: (sticker: {
|
|
256
|
+
id: string;
|
|
257
|
+
name: string;
|
|
258
|
+
packId: string;
|
|
259
|
+
url: string;
|
|
260
|
+
}) => void;
|
|
261
|
+
className?: string;
|
|
262
|
+
searchPlaceholder?: string;
|
|
263
|
+
emptyText?: string;
|
|
264
|
+
emptyHint?: string;
|
|
265
|
+
showSearch?: boolean;
|
|
266
|
+
showPackNav?: boolean;
|
|
267
|
+
columns?: number;
|
|
268
|
+
maxHeight?: string;
|
|
269
|
+
}
|
|
270
|
+
declare const StickerPicker: React__default.FC<StickerPickerProps>;
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Configure a custom base URL for loading sticker image assets.
|
|
274
|
+
* Defaults to `/stickers`.
|
|
275
|
+
*/
|
|
276
|
+
declare function setStickerBaseUrl(url: string): void;
|
|
277
|
+
/**
|
|
278
|
+
* Resolves the final image URL for a given pack and sticker ID.
|
|
279
|
+
*/
|
|
280
|
+
declare function getStickerImageUrl(packId: string, stickerId: string): string;
|
|
281
|
+
|
|
254
282
|
/** Public props for the `TagInput` component. */
|
|
255
283
|
interface TagInputProps {
|
|
256
284
|
/** Danh sách tags hiện tại */
|
|
@@ -3653,6 +3681,11 @@ declare const underverseMessages: {
|
|
|
3653
3681
|
noResults: string;
|
|
3654
3682
|
tryDifferentSearch: string;
|
|
3655
3683
|
};
|
|
3684
|
+
stickerPicker: {
|
|
3685
|
+
searchPlaceholder: string;
|
|
3686
|
+
noResults: string;
|
|
3687
|
+
tryDifferentSearch: string;
|
|
3688
|
+
};
|
|
3656
3689
|
emojiSuggestion: {
|
|
3657
3690
|
title: string;
|
|
3658
3691
|
noResults: string;
|
|
@@ -4064,6 +4097,11 @@ declare const underverseMessages: {
|
|
|
4064
4097
|
noResults: string;
|
|
4065
4098
|
tryDifferentSearch: string;
|
|
4066
4099
|
};
|
|
4100
|
+
stickerPicker: {
|
|
4101
|
+
searchPlaceholder: string;
|
|
4102
|
+
noResults: string;
|
|
4103
|
+
tryDifferentSearch: string;
|
|
4104
|
+
};
|
|
4067
4105
|
emojiSuggestion: {
|
|
4068
4106
|
title: string;
|
|
4069
4107
|
noResults: string;
|
|
@@ -4475,6 +4513,11 @@ declare const underverseMessages: {
|
|
|
4475
4513
|
noResults: string;
|
|
4476
4514
|
tryDifferentSearch: string;
|
|
4477
4515
|
};
|
|
4516
|
+
stickerPicker: {
|
|
4517
|
+
searchPlaceholder: string;
|
|
4518
|
+
noResults: string;
|
|
4519
|
+
tryDifferentSearch: string;
|
|
4520
|
+
};
|
|
4478
4521
|
emojiSuggestion: {
|
|
4479
4522
|
title: string;
|
|
4480
4523
|
noResults: string;
|
|
@@ -4886,6 +4929,11 @@ declare const underverseMessages: {
|
|
|
4886
4929
|
noResults: string;
|
|
4887
4930
|
tryDifferentSearch: string;
|
|
4888
4931
|
};
|
|
4932
|
+
stickerPicker: {
|
|
4933
|
+
searchPlaceholder: string;
|
|
4934
|
+
noResults: string;
|
|
4935
|
+
tryDifferentSearch: string;
|
|
4936
|
+
};
|
|
4889
4937
|
emojiSuggestion: {
|
|
4890
4938
|
title: string;
|
|
4891
4939
|
noResults: string;
|
|
@@ -5300,6 +5348,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5300
5348
|
noResults: string;
|
|
5301
5349
|
tryDifferentSearch: string;
|
|
5302
5350
|
};
|
|
5351
|
+
stickerPicker: {
|
|
5352
|
+
searchPlaceholder: string;
|
|
5353
|
+
noResults: string;
|
|
5354
|
+
tryDifferentSearch: string;
|
|
5355
|
+
};
|
|
5303
5356
|
emojiSuggestion: {
|
|
5304
5357
|
title: string;
|
|
5305
5358
|
noResults: string;
|
|
@@ -5710,6 +5763,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5710
5763
|
noResults: string;
|
|
5711
5764
|
tryDifferentSearch: string;
|
|
5712
5765
|
};
|
|
5766
|
+
stickerPicker: {
|
|
5767
|
+
searchPlaceholder: string;
|
|
5768
|
+
noResults: string;
|
|
5769
|
+
tryDifferentSearch: string;
|
|
5770
|
+
};
|
|
5713
5771
|
emojiSuggestion: {
|
|
5714
5772
|
title: string;
|
|
5715
5773
|
noResults: string;
|
|
@@ -6120,6 +6178,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6120
6178
|
noResults: string;
|
|
6121
6179
|
tryDifferentSearch: string;
|
|
6122
6180
|
};
|
|
6181
|
+
stickerPicker: {
|
|
6182
|
+
searchPlaceholder: string;
|
|
6183
|
+
noResults: string;
|
|
6184
|
+
tryDifferentSearch: string;
|
|
6185
|
+
};
|
|
6123
6186
|
emojiSuggestion: {
|
|
6124
6187
|
title: string;
|
|
6125
6188
|
noResults: string;
|
|
@@ -6530,6 +6593,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6530
6593
|
noResults: string;
|
|
6531
6594
|
tryDifferentSearch: string;
|
|
6532
6595
|
};
|
|
6596
|
+
stickerPicker: {
|
|
6597
|
+
searchPlaceholder: string;
|
|
6598
|
+
noResults: string;
|
|
6599
|
+
tryDifferentSearch: string;
|
|
6600
|
+
};
|
|
6533
6601
|
emojiSuggestion: {
|
|
6534
6602
|
title: string;
|
|
6535
6603
|
noResults: string;
|
|
@@ -6696,4 +6764,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6696
6764
|
};
|
|
6697
6765
|
};
|
|
6698
6766
|
|
|
6699
|
-
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, type BottomSheetProps, 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, type DrawerProps, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, type GlobalI18nConfig, 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, type SheetProps, SidebarSheet, type SidebarSheetProps, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, type SlideOverProps, 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 UEditorFontFamilyOption, type UEditorFontSizeOption, type UEditorInlineUploadedItem, type UEditorLetterSpacingOption, type UEditorLineHeightOption, 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, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getEmojiImageUrl, getEmojiUnifiedCode, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, setEmojiBaseUrl, shadcnAnimationStyles, underverseMessages, useFormField, useGlobalI18n, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
|
6767
|
+
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, type BottomSheetProps, 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, type DrawerProps, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, type GlobalI18nConfig, 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, type SheetProps, SidebarSheet, type SidebarSheetProps, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, type SlideOverProps, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, StickerPicker, type StickerPickerProps, 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 UEditorFontFamilyOption, type UEditorFontSizeOption, type UEditorInlineUploadedItem, type UEditorLetterSpacingOption, type UEditorLineHeightOption, 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, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getEmojiImageUrl, getEmojiUnifiedCode, getStickerImageUrl, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, setEmojiBaseUrl, setStickerBaseUrl, shadcnAnimationStyles, underverseMessages, useFormField, useGlobalI18n, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|