@underverse-ui/underverse 0.2.25 → 0.2.27
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 +1551 -1267
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +43 -1
- package/dist/index.d.ts +43 -1
- package/dist/index.js +1495 -1213
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -185,6 +185,48 @@ interface NumberInputProps extends Omit<InputProps, "type" | "value" | "onChange
|
|
|
185
185
|
}
|
|
186
186
|
declare const NumberInput: React__default.ForwardRefExoticComponent<NumberInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
187
187
|
|
|
188
|
+
interface TagInputProps {
|
|
189
|
+
/** Danh sách tags hiện tại */
|
|
190
|
+
value: string[];
|
|
191
|
+
/** Callback khi danh sách tags thay đổi */
|
|
192
|
+
onChange: (tags: string[]) => void;
|
|
193
|
+
/** Callback khi user muốn tìm kiếm (Ctrl+Enter hoặc click Search) */
|
|
194
|
+
onSearch: (tags: string[]) => void;
|
|
195
|
+
/** Callback when all tags are cleared */
|
|
196
|
+
onClear?: () => void;
|
|
197
|
+
/** Placeholder khi chưa có tags */
|
|
198
|
+
placeholder?: string;
|
|
199
|
+
/** Placeholder khi đã có tags */
|
|
200
|
+
placeholderWithTags?: string;
|
|
201
|
+
/** Label hiển thị phía trên input */
|
|
202
|
+
label?: string;
|
|
203
|
+
/** Ẩn nút Search */
|
|
204
|
+
hideSearchButton?: boolean;
|
|
205
|
+
/** Ẩn nút Clear All */
|
|
206
|
+
hideClearButton?: boolean;
|
|
207
|
+
/** Custom class cho container */
|
|
208
|
+
className?: string;
|
|
209
|
+
/** Size: 'sm' | 'md' | 'lg' */
|
|
210
|
+
size?: "sm" | "md" | "lg";
|
|
211
|
+
/** Disabled state */
|
|
212
|
+
disabled?: boolean;
|
|
213
|
+
/** Loading state - hiển thị spinner trên nút Search */
|
|
214
|
+
loading?: boolean;
|
|
215
|
+
/** Maximum number of tags allowed */
|
|
216
|
+
maxTags?: number;
|
|
217
|
+
/** i18n labels - no external dependency required */
|
|
218
|
+
labels?: {
|
|
219
|
+
search?: string;
|
|
220
|
+
clearAll?: string;
|
|
221
|
+
placeholder?: string;
|
|
222
|
+
placeholderWithTags?: string;
|
|
223
|
+
moreCount?: string;
|
|
224
|
+
};
|
|
225
|
+
/** Maximum visible tags before showing "+N more" badge */
|
|
226
|
+
maxVisibleTags?: number;
|
|
227
|
+
}
|
|
228
|
+
declare const TagInput: React__default.ForwardRefExoticComponent<TagInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
229
|
+
|
|
188
230
|
interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
189
231
|
label?: string;
|
|
190
232
|
error?: string;
|
|
@@ -1903,4 +1945,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
1903
1945
|
};
|
|
1904
1946
|
};
|
|
1905
1947
|
|
|
1906
|
-
export { AccessDenied, Alert, Avatar, Badge, Badge as BadgeBase, 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, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, 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, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PillTabs, Popover, Progress, PulseBadge, 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, StatusBadge, StepProgress, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, type UnderverseLocale, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn, getUnderverseMessages, underverseMessages, useFormField, useToast };
|
|
1948
|
+
export { AccessDenied, Alert, Avatar, Badge, Badge as BadgeBase, 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, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, 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, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PillTabs, Popover, Progress, PulseBadge, 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, StatusBadge, StepProgress, 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, type UnderverseLocale, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn, getUnderverseMessages, underverseMessages, useFormField, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -185,6 +185,48 @@ interface NumberInputProps extends Omit<InputProps, "type" | "value" | "onChange
|
|
|
185
185
|
}
|
|
186
186
|
declare const NumberInput: React__default.ForwardRefExoticComponent<NumberInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
187
187
|
|
|
188
|
+
interface TagInputProps {
|
|
189
|
+
/** Danh sách tags hiện tại */
|
|
190
|
+
value: string[];
|
|
191
|
+
/** Callback khi danh sách tags thay đổi */
|
|
192
|
+
onChange: (tags: string[]) => void;
|
|
193
|
+
/** Callback khi user muốn tìm kiếm (Ctrl+Enter hoặc click Search) */
|
|
194
|
+
onSearch: (tags: string[]) => void;
|
|
195
|
+
/** Callback when all tags are cleared */
|
|
196
|
+
onClear?: () => void;
|
|
197
|
+
/** Placeholder khi chưa có tags */
|
|
198
|
+
placeholder?: string;
|
|
199
|
+
/** Placeholder khi đã có tags */
|
|
200
|
+
placeholderWithTags?: string;
|
|
201
|
+
/** Label hiển thị phía trên input */
|
|
202
|
+
label?: string;
|
|
203
|
+
/** Ẩn nút Search */
|
|
204
|
+
hideSearchButton?: boolean;
|
|
205
|
+
/** Ẩn nút Clear All */
|
|
206
|
+
hideClearButton?: boolean;
|
|
207
|
+
/** Custom class cho container */
|
|
208
|
+
className?: string;
|
|
209
|
+
/** Size: 'sm' | 'md' | 'lg' */
|
|
210
|
+
size?: "sm" | "md" | "lg";
|
|
211
|
+
/** Disabled state */
|
|
212
|
+
disabled?: boolean;
|
|
213
|
+
/** Loading state - hiển thị spinner trên nút Search */
|
|
214
|
+
loading?: boolean;
|
|
215
|
+
/** Maximum number of tags allowed */
|
|
216
|
+
maxTags?: number;
|
|
217
|
+
/** i18n labels - no external dependency required */
|
|
218
|
+
labels?: {
|
|
219
|
+
search?: string;
|
|
220
|
+
clearAll?: string;
|
|
221
|
+
placeholder?: string;
|
|
222
|
+
placeholderWithTags?: string;
|
|
223
|
+
moreCount?: string;
|
|
224
|
+
};
|
|
225
|
+
/** Maximum visible tags before showing "+N more" badge */
|
|
226
|
+
maxVisibleTags?: number;
|
|
227
|
+
}
|
|
228
|
+
declare const TagInput: React__default.ForwardRefExoticComponent<TagInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
229
|
+
|
|
188
230
|
interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
189
231
|
label?: string;
|
|
190
232
|
error?: string;
|
|
@@ -1903,4 +1945,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
1903
1945
|
};
|
|
1904
1946
|
};
|
|
1905
1947
|
|
|
1906
|
-
export { AccessDenied, Alert, Avatar, Badge, Badge as BadgeBase, 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, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, 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, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PillTabs, Popover, Progress, PulseBadge, 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, StatusBadge, StepProgress, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, Textarea, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, type UnderverseLocale, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn, getUnderverseMessages, underverseMessages, useFormField, useToast };
|
|
1948
|
+
export { AccessDenied, Alert, Avatar, Badge, Badge as BadgeBase, 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, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, 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, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, MiniProgress, Modal, MultiCombobox, type MultiComboboxProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, PageLoading, Pagination, type PaginationProps, PasswordInput, PillTabs, Popover, Progress, PulseBadge, 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, StatusBadge, StepProgress, 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, type UnderverseLocale, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn, getUnderverseMessages, underverseMessages, useFormField, useToast };
|