lingee-ui 0.0.4 → 0.0.6
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/button/index.css +1 -1
- package/dist/button/index.d.mts +3 -56
- package/dist/button/index.d.ts +3 -56
- package/dist/button/index.js +1 -1
- package/dist/button/index.mjs +1 -1
- package/dist/chunk-22G7TVQU.mjs +1 -0
- package/dist/chunk-3VTWGWRW.mjs +1 -0
- package/dist/chunk-BURKV6KR.js +1 -0
- package/dist/chunk-DIXO53WK.mjs +1 -0
- package/dist/{chunk-Y3757K27.js → chunk-EWZCOQ5H.js} +1 -1
- package/dist/chunk-I5FIN7UX.mjs +1 -0
- package/dist/chunk-LGFBC4UA.mjs +1 -0
- package/dist/chunk-M2SC5LED.js +1 -0
- package/dist/chunk-MUKM5CN4.js +1 -0
- package/dist/chunk-OC42BRM5.mjs +1 -0
- package/dist/chunk-T4CPHENK.js +1 -0
- package/dist/chunk-U5VI5OCN.mjs +1 -0
- package/dist/chunk-UGDPRB5F.js +1 -0
- package/dist/chunk-WJXAQ3RX.js +1 -0
- package/dist/chunk-YPES54ON.mjs +1 -0
- package/dist/chunk-ZXRCMMQM.js +1 -0
- package/dist/index-B4ySDWo5.d.mts +60 -0
- package/dist/index-B4ySDWo5.d.ts +60 -0
- package/dist/index.css +1 -1
- package/dist/index.d.mts +38 -4
- package/dist/index.d.ts +38 -4
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/dist/input/index.css +1 -1
- package/dist/input/index.js +1 -1
- package/dist/input/index.mjs +1 -1
- package/dist/popover/index.css +1 -1
- package/dist/popover/index.js +1 -1
- package/dist/popover/index.mjs +1 -1
- package/dist/switch/index.css +1 -1
- package/dist/switch/index.js +1 -1
- package/dist/switch/index.mjs +1 -1
- package/dist/tabs/index.css +1 -1
- package/dist/tabs/index.d.mts +1 -1
- package/dist/tabs/index.d.ts +1 -1
- package/dist/tabs/index.js +1 -1
- package/dist/tabs/index.mjs +1 -1
- package/dist/textarea/index.css +1 -1
- package/dist/textarea/index.js +1 -1
- package/dist/textarea/index.mjs +1 -1
- package/dist/toast/index.css +1 -1
- package/dist/toast/index.js +1 -1
- package/dist/toast/index.mjs +1 -1
- package/dist/tokens.css +1 -1
- package/dist/tooltip/index.css +1 -1
- package/dist/tooltip/index.d.mts +3 -1
- package/dist/tooltip/index.d.ts +3 -1
- package/dist/tooltip/index.js +1 -1
- package/dist/tooltip/index.mjs +1 -1
- package/package.json +28 -25
- package/dist/chunk-3S4GKEYZ.js +0 -1
- package/dist/chunk-ABUSNTD5.js +0 -1
- package/dist/chunk-AKPJCG6H.mjs +0 -1
- package/dist/chunk-BXRID4CE.mjs +0 -1
- package/dist/chunk-DGO7PR56.mjs +0 -1
- package/dist/chunk-JGDQOLZY.mjs +0 -1
- package/dist/chunk-KWM266DP.js +0 -1
- package/dist/chunk-P2VWBY5K.mjs +0 -1
- package/dist/chunk-PC42VJ3P.js +0 -1
- package/dist/chunk-PH576KBW.mjs +0 -1
- package/dist/chunk-PU26H3OJ.mjs +0 -1
- package/dist/chunk-QWCVZMAQ.mjs +0 -1
- package/dist/chunk-UQWEEWAS.js +0 -1
- package/dist/chunk-WS4NY6UV.js +0 -1
- package/dist/chunk-XZAE72IB.js +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ButtonProps } from './
|
|
2
|
-
export { Button, ButtonShape, ButtonVariant } from './
|
|
1
|
+
import { B as ButtonProps } from './index-B4ySDWo5.mjs';
|
|
2
|
+
export { a as Button, b as ButtonShape, c as ButtonSize, d as ButtonVariant } from './index-B4ySDWo5.mjs';
|
|
3
3
|
export { TabItem, Tabs, TabsProps, TabsSize, TabsVariant } from './tabs/index.mjs';
|
|
4
4
|
export { Tooltip, TooltipPlacement, TooltipProps } from './tooltip/index.mjs';
|
|
5
5
|
import { PopoverContentProps } from './popover/index.mjs';
|
|
@@ -466,6 +466,8 @@ interface DropdownProps {
|
|
|
466
466
|
onOpenChange?: (open: boolean) => void;
|
|
467
467
|
/** 是否为 modal 模式(锁定背景交互),默认 true */
|
|
468
468
|
modal?: boolean;
|
|
469
|
+
/** 整体禁用,为 true 时 Trigger 不可交互且无法打开面板 */
|
|
470
|
+
disabled?: boolean;
|
|
469
471
|
/**
|
|
470
472
|
* 快捷模式:传入菜单项数组,自动渲染 DropdownContent
|
|
471
473
|
* 与 Compound Component 互斥,传 items 时 children 作为触发器
|
|
@@ -600,8 +602,40 @@ interface DropdownSubContentProps extends Pick<PopoverContentProps, "side" | "al
|
|
|
600
602
|
/** 子菜单面板内容 */
|
|
601
603
|
children: ReactNode;
|
|
602
604
|
}
|
|
605
|
+
interface DropdownButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
|
|
606
|
+
/** 按钮文本内容 */
|
|
607
|
+
children?: ReactNode;
|
|
608
|
+
/** 前置图标 */
|
|
609
|
+
icon?: ReactNode;
|
|
610
|
+
/** 是否已有选中内容(蓝色态) */
|
|
611
|
+
selected?: boolean;
|
|
612
|
+
/** 是否展开态(箭头旋转) */
|
|
613
|
+
open?: boolean;
|
|
614
|
+
/** 是否可清除(selected 时 hover 显示 X 图标) */
|
|
615
|
+
clearable?: boolean;
|
|
616
|
+
/** 隐藏箭头图标(用于纯 toggle 按钮场景) */
|
|
617
|
+
hideArrow?: boolean;
|
|
618
|
+
/** 禁用 */
|
|
619
|
+
disabled?: boolean;
|
|
620
|
+
/** 额外类名 */
|
|
621
|
+
className?: string;
|
|
622
|
+
/** 清除回调 */
|
|
623
|
+
onClear?: (e: React$1.MouseEvent) => void;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* DropdownButton — 统一的 Dropdown/Popover 触发器按钮
|
|
628
|
+
*
|
|
629
|
+
* 两种视觉态:
|
|
630
|
+
* - Default:透明底 + 深色文字,hover 浅灰底
|
|
631
|
+
* - Selected(已选中内容):蓝色浅底 + 蓝色文字,hover 显示清除图标
|
|
632
|
+
*
|
|
633
|
+
* 展开时箭头旋转 180°(ChevronDown → ChevronUp 效果)
|
|
634
|
+
*/
|
|
635
|
+
|
|
636
|
+
declare const DropdownButton: React$1.ForwardRefExoticComponent<DropdownButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
603
637
|
|
|
604
|
-
declare function Dropdown({ children, open, defaultOpen, onOpenChange, modal, items, contentProps, selectedKeys, loading, loadingContent, emptyContent, dropdownRender, header, footer, }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
638
|
+
declare function Dropdown({ children, open, defaultOpen, onOpenChange, modal, disabled, items, contentProps, selectedKeys, loading, loadingContent, emptyContent, dropdownRender, header, footer, }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
605
639
|
declare namespace Dropdown {
|
|
606
640
|
var displayName: string;
|
|
607
641
|
}
|
|
@@ -1868,4 +1902,4 @@ declare const ScrollBar: React$1.ForwardRefExoticComponent<ScrollBarProps & Reac
|
|
|
1868
1902
|
*/
|
|
1869
1903
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1870
1904
|
|
|
1871
|
-
export { Alert, type AlertProps, type AlertType, AvatarWithGroup as Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSize, ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, ColorPicker, type ColorPickerProps, type ColorPickerSize, type CoverConfig, type CustomRequestOptions, type CustomRequestReturn, DatePicker, type DatePickerProps, type DatePickerSize, type DateRange, Dialog, type DialogConfirmOptions, type DialogProps, Divider, type DividerOrientation, type DividerProps, type DividerVariant, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemData, type DropdownItemProps, DropdownLabel, type DropdownLabelData, type DropdownLabelProps, type DropdownMenuItemData, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorData, type DropdownSeparatorProps, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Empty, type EmptyIconComponent, type EmptyProps, type EmptySize, type FileItemActions, Flex, type FlexGapSize, type FlexOrientation, type FlexProps, Form, type FormInstance, type FormItemProps, type FormLayout, type FormProps, Image, type ImagePreviewGroupProps, type ImageProps, type ImgInfo, LgSize, LingeeProvider, type LingeeProviderProps, type Locale, Pagination, type PaginationProps, type PaginationVariant, PopoverContentProps, type PreviewGroupType, type PreviewType, Progress, type ProgressProps, type ProgressStatus, type ProgressType, RadioGroup, type RadioGroupProps, RadioItem, type RadioItemProps, type RadioSize, RangePicker, type RangePickerProps, type RangePickerSize, type RejectReason, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, type SelectDropdownProps, type SelectMode, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectSize, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, Slider, type SliderProps, type SliderSize, Spin, type SpinProps, type SpinSize, type StepItem, type StepStatus, Steps, type StepsProps, type StepsSize, type StepsTitlePlacement, Table, type TableColumnType, type TableProps, type TableRowSelection, type TableSize, type TableSorterState, Tag, type TagPresetColor, type TagProps, type TagShape, type TagSize, TimePicker, type TimePickerProps, type TimePickerSize, type TimeValue, type TransformAction, type TransformType, Upload, type UploadFile, type UploadFileStatus, type UploadProps, cn, enUS, useComponentLocale, useLocale, zhCN };
|
|
1905
|
+
export { Alert, type AlertProps, type AlertType, AvatarWithGroup as Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSize, ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, ColorPicker, type ColorPickerProps, type ColorPickerSize, type CoverConfig, type CustomRequestOptions, type CustomRequestReturn, DatePicker, type DatePickerProps, type DatePickerSize, type DateRange, Dialog, type DialogConfirmOptions, type DialogProps, Divider, type DividerOrientation, type DividerProps, type DividerVariant, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, DropdownButton, type DropdownButtonProps, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemData, type DropdownItemProps, DropdownLabel, type DropdownLabelData, type DropdownLabelProps, type DropdownMenuItemData, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorData, type DropdownSeparatorProps, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Empty, type EmptyIconComponent, type EmptyProps, type EmptySize, type FileItemActions, Flex, type FlexGapSize, type FlexOrientation, type FlexProps, Form, type FormInstance, type FormItemProps, type FormLayout, type FormProps, Image, type ImagePreviewGroupProps, type ImageProps, type ImgInfo, LgSize, LingeeProvider, type LingeeProviderProps, type Locale, Pagination, type PaginationProps, type PaginationVariant, PopoverContentProps, type PreviewGroupType, type PreviewType, Progress, type ProgressProps, type ProgressStatus, type ProgressType, RadioGroup, type RadioGroupProps, RadioItem, type RadioItemProps, type RadioSize, RangePicker, type RangePickerProps, type RangePickerSize, type RejectReason, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, type SelectDropdownProps, type SelectMode, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectSize, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, Slider, type SliderProps, type SliderSize, Spin, type SpinProps, type SpinSize, type StepItem, type StepStatus, Steps, type StepsProps, type StepsSize, type StepsTitlePlacement, Table, type TableColumnType, type TableProps, type TableRowSelection, type TableSize, type TableSorterState, Tag, type TagPresetColor, type TagProps, type TagShape, type TagSize, TimePicker, type TimePickerProps, type TimePickerSize, type TimeValue, type TransformAction, type TransformType, Upload, type UploadFile, type UploadFileStatus, type UploadProps, cn, enUS, useComponentLocale, useLocale, zhCN };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ButtonProps } from './
|
|
2
|
-
export { Button, ButtonShape, ButtonVariant } from './
|
|
1
|
+
import { B as ButtonProps } from './index-B4ySDWo5.js';
|
|
2
|
+
export { a as Button, b as ButtonShape, c as ButtonSize, d as ButtonVariant } from './index-B4ySDWo5.js';
|
|
3
3
|
export { TabItem, Tabs, TabsProps, TabsSize, TabsVariant } from './tabs/index.js';
|
|
4
4
|
export { Tooltip, TooltipPlacement, TooltipProps } from './tooltip/index.js';
|
|
5
5
|
import { PopoverContentProps } from './popover/index.js';
|
|
@@ -466,6 +466,8 @@ interface DropdownProps {
|
|
|
466
466
|
onOpenChange?: (open: boolean) => void;
|
|
467
467
|
/** 是否为 modal 模式(锁定背景交互),默认 true */
|
|
468
468
|
modal?: boolean;
|
|
469
|
+
/** 整体禁用,为 true 时 Trigger 不可交互且无法打开面板 */
|
|
470
|
+
disabled?: boolean;
|
|
469
471
|
/**
|
|
470
472
|
* 快捷模式:传入菜单项数组,自动渲染 DropdownContent
|
|
471
473
|
* 与 Compound Component 互斥,传 items 时 children 作为触发器
|
|
@@ -600,8 +602,40 @@ interface DropdownSubContentProps extends Pick<PopoverContentProps, "side" | "al
|
|
|
600
602
|
/** 子菜单面板内容 */
|
|
601
603
|
children: ReactNode;
|
|
602
604
|
}
|
|
605
|
+
interface DropdownButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
|
|
606
|
+
/** 按钮文本内容 */
|
|
607
|
+
children?: ReactNode;
|
|
608
|
+
/** 前置图标 */
|
|
609
|
+
icon?: ReactNode;
|
|
610
|
+
/** 是否已有选中内容(蓝色态) */
|
|
611
|
+
selected?: boolean;
|
|
612
|
+
/** 是否展开态(箭头旋转) */
|
|
613
|
+
open?: boolean;
|
|
614
|
+
/** 是否可清除(selected 时 hover 显示 X 图标) */
|
|
615
|
+
clearable?: boolean;
|
|
616
|
+
/** 隐藏箭头图标(用于纯 toggle 按钮场景) */
|
|
617
|
+
hideArrow?: boolean;
|
|
618
|
+
/** 禁用 */
|
|
619
|
+
disabled?: boolean;
|
|
620
|
+
/** 额外类名 */
|
|
621
|
+
className?: string;
|
|
622
|
+
/** 清除回调 */
|
|
623
|
+
onClear?: (e: React$1.MouseEvent) => void;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* DropdownButton — 统一的 Dropdown/Popover 触发器按钮
|
|
628
|
+
*
|
|
629
|
+
* 两种视觉态:
|
|
630
|
+
* - Default:透明底 + 深色文字,hover 浅灰底
|
|
631
|
+
* - Selected(已选中内容):蓝色浅底 + 蓝色文字,hover 显示清除图标
|
|
632
|
+
*
|
|
633
|
+
* 展开时箭头旋转 180°(ChevronDown → ChevronUp 效果)
|
|
634
|
+
*/
|
|
635
|
+
|
|
636
|
+
declare const DropdownButton: React$1.ForwardRefExoticComponent<DropdownButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
603
637
|
|
|
604
|
-
declare function Dropdown({ children, open, defaultOpen, onOpenChange, modal, items, contentProps, selectedKeys, loading, loadingContent, emptyContent, dropdownRender, header, footer, }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
638
|
+
declare function Dropdown({ children, open, defaultOpen, onOpenChange, modal, disabled, items, contentProps, selectedKeys, loading, loadingContent, emptyContent, dropdownRender, header, footer, }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
605
639
|
declare namespace Dropdown {
|
|
606
640
|
var displayName: string;
|
|
607
641
|
}
|
|
@@ -1868,4 +1902,4 @@ declare const ScrollBar: React$1.ForwardRefExoticComponent<ScrollBarProps & Reac
|
|
|
1868
1902
|
*/
|
|
1869
1903
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1870
1904
|
|
|
1871
|
-
export { Alert, type AlertProps, type AlertType, AvatarWithGroup as Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSize, ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, ColorPicker, type ColorPickerProps, type ColorPickerSize, type CoverConfig, type CustomRequestOptions, type CustomRequestReturn, DatePicker, type DatePickerProps, type DatePickerSize, type DateRange, Dialog, type DialogConfirmOptions, type DialogProps, Divider, type DividerOrientation, type DividerProps, type DividerVariant, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemData, type DropdownItemProps, DropdownLabel, type DropdownLabelData, type DropdownLabelProps, type DropdownMenuItemData, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorData, type DropdownSeparatorProps, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Empty, type EmptyIconComponent, type EmptyProps, type EmptySize, type FileItemActions, Flex, type FlexGapSize, type FlexOrientation, type FlexProps, Form, type FormInstance, type FormItemProps, type FormLayout, type FormProps, Image, type ImagePreviewGroupProps, type ImageProps, type ImgInfo, LgSize, LingeeProvider, type LingeeProviderProps, type Locale, Pagination, type PaginationProps, type PaginationVariant, PopoverContentProps, type PreviewGroupType, type PreviewType, Progress, type ProgressProps, type ProgressStatus, type ProgressType, RadioGroup, type RadioGroupProps, RadioItem, type RadioItemProps, type RadioSize, RangePicker, type RangePickerProps, type RangePickerSize, type RejectReason, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, type SelectDropdownProps, type SelectMode, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectSize, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, Slider, type SliderProps, type SliderSize, Spin, type SpinProps, type SpinSize, type StepItem, type StepStatus, Steps, type StepsProps, type StepsSize, type StepsTitlePlacement, Table, type TableColumnType, type TableProps, type TableRowSelection, type TableSize, type TableSorterState, Tag, type TagPresetColor, type TagProps, type TagShape, type TagSize, TimePicker, type TimePickerProps, type TimePickerSize, type TimeValue, type TransformAction, type TransformType, Upload, type UploadFile, type UploadFileStatus, type UploadProps, cn, enUS, useComponentLocale, useLocale, zhCN };
|
|
1905
|
+
export { Alert, type AlertProps, type AlertType, AvatarWithGroup as Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSize, ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, ColorPicker, type ColorPickerProps, type ColorPickerSize, type CoverConfig, type CustomRequestOptions, type CustomRequestReturn, DatePicker, type DatePickerProps, type DatePickerSize, type DateRange, Dialog, type DialogConfirmOptions, type DialogProps, Divider, type DividerOrientation, type DividerProps, type DividerVariant, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, DropdownButton, type DropdownButtonProps, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemData, type DropdownItemProps, DropdownLabel, type DropdownLabelData, type DropdownLabelProps, type DropdownMenuItemData, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorData, type DropdownSeparatorProps, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Empty, type EmptyIconComponent, type EmptyProps, type EmptySize, type FileItemActions, Flex, type FlexGapSize, type FlexOrientation, type FlexProps, Form, type FormInstance, type FormItemProps, type FormLayout, type FormProps, Image, type ImagePreviewGroupProps, type ImageProps, type ImgInfo, LgSize, LingeeProvider, type LingeeProviderProps, type Locale, Pagination, type PaginationProps, type PaginationVariant, PopoverContentProps, type PreviewGroupType, type PreviewType, Progress, type ProgressProps, type ProgressStatus, type ProgressType, RadioGroup, type RadioGroupProps, RadioItem, type RadioItemProps, type RadioSize, RangePicker, type RangePickerProps, type RangePickerSize, type RejectReason, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, type SelectDropdownProps, type SelectMode, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectSize, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, Slider, type SliderProps, type SliderSize, Spin, type SpinProps, type SpinSize, type StepItem, type StepStatus, Steps, type StepsProps, type StepsSize, type StepsTitlePlacement, Table, type TableColumnType, type TableProps, type TableRowSelection, type TableSize, type TableSorterState, Tag, type TagPresetColor, type TagProps, type TagShape, type TagSize, TimePicker, type TimePickerProps, type TimePickerSize, type TimeValue, type TransformAction, type TransformType, Upload, type UploadFile, type UploadFileStatus, type UploadProps, cn, enUS, useComponentLocale, useLocale, zhCN };
|