zkit-ui 1.0.0
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/README.md +267 -0
- package/dist/ComponentLibProvider.d.ts +15 -0
- package/dist/ComponentLibProvider.d.ts.map +1 -0
- package/dist/ComponentLibProvider.js +18 -0
- package/dist/assets/animations/spinner.json +1 -0
- package/dist/assets/icons/check.svg +4 -0
- package/dist/assets/icons/toast/error.webp +0 -0
- package/dist/assets/icons/toast/success.webp +0 -0
- package/dist/assets/icons/toast/warning.webp +0 -0
- package/dist/config.d.ts +16 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +42 -0
- package/dist/i18n/I18nProvider.d.ts +11 -0
- package/dist/i18n/I18nProvider.d.ts.map +1 -0
- package/dist/i18n/I18nProvider.js +84 -0
- package/dist/i18n/locale.d.ts +7 -0
- package/dist/i18n/locale.d.ts.map +1 -0
- package/dist/i18n/locale.js +87 -0
- package/dist/i18n/locales/de.d.ts +51 -0
- package/dist/i18n/locales/de.d.ts.map +1 -0
- package/dist/i18n/locales/de.js +62 -0
- package/dist/i18n/locales/en-US.d.ts +51 -0
- package/dist/i18n/locales/en-US.d.ts.map +1 -0
- package/dist/i18n/locales/en-US.js +62 -0
- package/dist/i18n/locales/index.d.ts +9 -0
- package/dist/i18n/locales/index.d.ts.map +1 -0
- package/dist/i18n/locales/index.js +23 -0
- package/dist/i18n/locales/ja.d.ts +51 -0
- package/dist/i18n/locales/ja.d.ts.map +1 -0
- package/dist/i18n/locales/ja.js +62 -0
- package/dist/i18n/locales/zh-CN.d.ts +51 -0
- package/dist/i18n/locales/zh-CN.d.ts.map +1 -0
- package/dist/i18n/locales/zh-CN.js +62 -0
- package/dist/i18n/locales/zh-TW.d.ts +51 -0
- package/dist/i18n/locales/zh-TW.d.ts.map +1 -0
- package/dist/i18n/locales/zh-TW.js +62 -0
- package/dist/i18n/types.d.ts +11 -0
- package/dist/i18n/types.d.ts.map +1 -0
- package/dist/i18n/types.js +2 -0
- package/dist/i18n/useI18n.d.ts +2 -0
- package/dist/i18n/useI18n.d.ts.map +1 -0
- package/dist/i18n/useI18n.js +41 -0
- package/dist/index.d.ts +57 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +90 -0
- package/dist/services/ActionDialogService/ActionDialog.d.ts +4 -0
- package/dist/services/ActionDialogService/ActionDialog.d.ts.map +1 -0
- package/dist/services/ActionDialogService/ActionDialog.js +531 -0
- package/dist/services/ActionDialogService/index.d.ts +4 -0
- package/dist/services/ActionDialogService/index.d.ts.map +1 -0
- package/dist/services/ActionDialogService/index.js +8 -0
- package/dist/services/ActionDialogService/service.d.ts +7 -0
- package/dist/services/ActionDialogService/service.d.ts.map +1 -0
- package/dist/services/ActionDialogService/service.js +309 -0
- package/dist/services/ActionDialogService/shared.d.ts +17 -0
- package/dist/services/ActionDialogService/shared.d.ts.map +1 -0
- package/dist/services/ActionDialogService/shared.js +167 -0
- package/dist/services/ActionDialogService/types.d.ts +160 -0
- package/dist/services/ActionDialogService/types.d.ts.map +1 -0
- package/dist/services/ActionDialogService/types.js +2 -0
- package/dist/services/CardToastService/index.d.ts +115 -0
- package/dist/services/CardToastService/index.d.ts.map +1 -0
- package/dist/services/CardToastService/index.js +899 -0
- package/dist/services/ImagePreviewService/index.d.ts +179 -0
- package/dist/services/ImagePreviewService/index.d.ts.map +1 -0
- package/dist/services/ImagePreviewService/index.js +1383 -0
- package/dist/services/LoadingService/index.d.ts +146 -0
- package/dist/services/LoadingService/index.d.ts.map +1 -0
- package/dist/services/LoadingService/index.js +827 -0
- package/dist/services/PermissionPurposeDialogService/index.d.ts +99 -0
- package/dist/services/PermissionPurposeDialogService/index.d.ts.map +1 -0
- package/dist/services/PermissionPurposeDialogService/index.js +360 -0
- package/dist/services/PickerService/index.d.ts +128 -0
- package/dist/services/PickerService/index.d.ts.map +1 -0
- package/dist/services/PickerService/index.js +250 -0
- package/dist/theme/ThemeProvider.d.ts +15 -0
- package/dist/theme/ThemeProvider.d.ts.map +1 -0
- package/dist/theme/ThemeProvider.js +61 -0
- package/dist/theme/defaultTheme.d.ts +3 -0
- package/dist/theme/defaultTheme.d.ts.map +1 -0
- package/dist/theme/defaultTheme.js +28 -0
- package/dist/theme/mergeTheme.d.ts +3 -0
- package/dist/theme/mergeTheme.d.ts.map +1 -0
- package/dist/theme/mergeTheme.js +19 -0
- package/dist/theme/types.d.ts +17 -0
- package/dist/theme/types.d.ts.map +1 -0
- package/dist/theme/types.js +2 -0
- package/dist/theme/useTheme.d.ts +2 -0
- package/dist/theme/useTheme.d.ts.map +1 -0
- package/dist/theme/useTheme.js +46 -0
- package/dist/ui/Accordion/index.d.ts +99 -0
- package/dist/ui/Accordion/index.d.ts.map +1 -0
- package/dist/ui/Accordion/index.js +777 -0
- package/dist/ui/AddressCascader/index.d.ts +58 -0
- package/dist/ui/AddressCascader/index.d.ts.map +1 -0
- package/dist/ui/AddressCascader/index.js +710 -0
- package/dist/ui/BetweenTime/index.d.ts +82 -0
- package/dist/ui/BetweenTime/index.d.ts.map +1 -0
- package/dist/ui/BetweenTime/index.js +702 -0
- package/dist/ui/Button/index.d.ts +93 -0
- package/dist/ui/Button/index.d.ts.map +1 -0
- package/dist/ui/Button/index.js +832 -0
- package/dist/ui/Checkbox/index.d.ts +103 -0
- package/dist/ui/Checkbox/index.d.ts.map +1 -0
- package/dist/ui/Checkbox/index.js +694 -0
- package/dist/ui/DatePicker/index.d.ts +5 -0
- package/dist/ui/DatePicker/index.d.ts.map +1 -0
- package/dist/ui/DatePicker/index.js +157 -0
- package/dist/ui/DatePicker/types.d.ts +99 -0
- package/dist/ui/DatePicker/types.d.ts.map +1 -0
- package/dist/ui/DatePicker/types.js +2 -0
- package/dist/ui/DatePicker/utils.d.ts +32 -0
- package/dist/ui/DatePicker/utils.d.ts.map +1 -0
- package/dist/ui/DatePicker/utils.js +316 -0
- package/dist/ui/LinkedScroll/index.d.ts +78 -0
- package/dist/ui/LinkedScroll/index.d.ts.map +1 -0
- package/dist/ui/LinkedScroll/index.js +470 -0
- package/dist/ui/LoadingSpinner/index.d.ts +8 -0
- package/dist/ui/LoadingSpinner/index.d.ts.map +1 -0
- package/dist/ui/LoadingSpinner/index.js +122 -0
- package/dist/ui/Picker/actionBar.d.ts +14 -0
- package/dist/ui/Picker/actionBar.d.ts.map +1 -0
- package/dist/ui/Picker/actionBar.js +28 -0
- package/dist/ui/Picker/index.d.ts +5 -0
- package/dist/ui/Picker/index.d.ts.map +1 -0
- package/dist/ui/Picker/index.js +412 -0
- package/dist/ui/Picker/types.d.ts +80 -0
- package/dist/ui/Picker/types.d.ts.map +1 -0
- package/dist/ui/Picker/types.js +2 -0
- package/dist/ui/Picker/utils.d.ts +27 -0
- package/dist/ui/Picker/utils.d.ts.map +1 -0
- package/dist/ui/Picker/utils.js +182 -0
- package/dist/ui/Radio/index.d.ts +95 -0
- package/dist/ui/Radio/index.d.ts.map +1 -0
- package/dist/ui/Radio/index.js +633 -0
- package/dist/ui/Sheet/index.d.ts +12 -0
- package/dist/ui/Sheet/index.d.ts.map +1 -0
- package/dist/ui/Sheet/index.js +832 -0
- package/dist/ui/Sheet/nativeBottom.d.ts +52 -0
- package/dist/ui/Sheet/nativeBottom.d.ts.map +1 -0
- package/dist/ui/Sheet/nativeBottom.js +442 -0
- package/dist/ui/Sheet/nativeBottom.web.d.ts +18 -0
- package/dist/ui/Sheet/nativeBottom.web.d.ts.map +1 -0
- package/dist/ui/Sheet/nativeBottom.web.js +46 -0
- package/dist/ui/Sheet/slots.d.ts +5 -0
- package/dist/ui/Sheet/slots.d.ts.map +1 -0
- package/dist/ui/Sheet/slots.js +40 -0
- package/dist/ui/Sheet/types.d.ts +131 -0
- package/dist/ui/Sheet/types.d.ts.map +1 -0
- package/dist/ui/Sheet/types.js +2 -0
- package/dist/ui/SliderCaptcha/index.d.ts +57 -0
- package/dist/ui/SliderCaptcha/index.d.ts.map +1 -0
- package/dist/ui/SliderCaptcha/index.js +586 -0
- package/dist/ui/Switch/index.d.ts +72 -0
- package/dist/ui/Switch/index.d.ts.map +1 -0
- package/dist/ui/Switch/index.js +671 -0
- package/dist/ui/Text/index.d.ts +41 -0
- package/dist/ui/Text/index.d.ts.map +1 -0
- package/dist/ui/Text/index.js +325 -0
- package/dist/ui/TextInput/TextInputPrimitive.d.ts +8 -0
- package/dist/ui/TextInput/TextInputPrimitive.d.ts.map +1 -0
- package/dist/ui/TextInput/TextInputPrimitive.js +54 -0
- package/dist/ui/TextInput/index.d.ts +89 -0
- package/dist/ui/TextInput/index.d.ts.map +1 -0
- package/dist/ui/TextInput/index.js +545 -0
- package/dist/ui/WheelColumn/ZKitWheelPickerNativeComponent.d.ts +39 -0
- package/dist/ui/WheelColumn/ZKitWheelPickerNativeComponent.d.ts.map +1 -0
- package/dist/ui/WheelColumn/ZKitWheelPickerNativeComponent.js +60 -0
- package/dist/ui/WheelColumn/constants.d.ts +2 -0
- package/dist/ui/WheelColumn/constants.d.ts.map +1 -0
- package/dist/ui/WheelColumn/constants.js +4 -0
- package/dist/ui/WheelColumn/index.d.ts +59 -0
- package/dist/ui/WheelColumn/index.d.ts.map +1 -0
- package/dist/ui/WheelColumn/index.js +547 -0
- package/ios/ZKitWheelPicker.h +18 -0
- package/ios/ZKitWheelPicker.mm +230 -0
- package/ios/ZKitWheelPickerLabel.h +10 -0
- package/ios/ZKitWheelPickerLabel.mm +31 -0
- package/ios/ZKitWheelPickerManager.h +5 -0
- package/ios/ZKitWheelPickerManager.mm +53 -0
- package/package.json +75 -0
- package/react-native.config.js +10 -0
- package/src/ComponentLibProvider.tsx +56 -0
- package/src/assets/animations/spinner.json +1 -0
- package/src/assets/icons/check.svg +4 -0
- package/src/assets/icons/toast/error.webp +0 -0
- package/src/assets/icons/toast/success.webp +0 -0
- package/src/assets/icons/toast/warning.webp +0 -0
- package/src/config.ts +65 -0
- package/src/i18n/I18nProvider.tsx +69 -0
- package/src/i18n/locale.ts +108 -0
- package/src/i18n/locales/de.ts +67 -0
- package/src/i18n/locales/en-US.ts +67 -0
- package/src/i18n/locales/index.ts +19 -0
- package/src/i18n/locales/ja.ts +67 -0
- package/src/i18n/locales/zh-CN.ts +67 -0
- package/src/i18n/locales/zh-TW.ts +67 -0
- package/src/i18n/types.ts +21 -0
- package/src/i18n/useI18n.ts +7 -0
- package/src/index.ts +395 -0
- package/src/services/ActionDialogService/ActionDialog.tsx +756 -0
- package/src/services/ActionDialogService/README.md +146 -0
- package/src/services/ActionDialogService/index.tsx +39 -0
- package/src/services/ActionDialogService/service.tsx +355 -0
- package/src/services/ActionDialogService/shared.ts +204 -0
- package/src/services/ActionDialogService/types.ts +197 -0
- package/src/services/CardToastService/README.md +128 -0
- package/src/services/CardToastService/index.tsx +1284 -0
- package/src/services/ImagePreviewService/README.md +67 -0
- package/src/services/ImagePreviewService/index.tsx +2148 -0
- package/src/services/LoadingService/README.md +128 -0
- package/src/services/LoadingService/index.tsx +1113 -0
- package/src/services/PermissionPurposeDialogService/README.md +80 -0
- package/src/services/PermissionPurposeDialogService/index.tsx +449 -0
- package/src/services/PickerService/README.md +154 -0
- package/src/services/PickerService/index.tsx +410 -0
- package/src/theme/ThemeProvider.tsx +40 -0
- package/src/theme/defaultTheme.ts +30 -0
- package/src/theme/mergeTheme.ts +16 -0
- package/src/theme/types.ts +36 -0
- package/src/theme/useTheme.ts +10 -0
- package/src/types/svg.d.ts +9 -0
- package/src/types/vant-area-data.d.ts +19 -0
- package/src/ui/Accordion/README.md +67 -0
- package/src/ui/Accordion/index.tsx +1221 -0
- package/src/ui/AddressCascader/README.md +144 -0
- package/src/ui/AddressCascader/index.tsx +1084 -0
- package/src/ui/BetweenTime/README.md +490 -0
- package/src/ui/BetweenTime/index.tsx +1001 -0
- package/src/ui/Button/README.md +186 -0
- package/src/ui/Button/index.tsx +1356 -0
- package/src/ui/Checkbox/README.md +211 -0
- package/src/ui/Checkbox/index.tsx +1231 -0
- package/src/ui/DatePicker/README.md +117 -0
- package/src/ui/DatePicker/index.tsx +295 -0
- package/src/ui/DatePicker/types.ts +115 -0
- package/src/ui/DatePicker/utils.ts +405 -0
- package/src/ui/LinkedScroll/README.md +55 -0
- package/src/ui/LinkedScroll/index.tsx +809 -0
- package/src/ui/LoadingSpinner/index.tsx +104 -0
- package/src/ui/Picker/README.md +190 -0
- package/src/ui/Picker/actionBar.tsx +70 -0
- package/src/ui/Picker/index.tsx +694 -0
- package/src/ui/Picker/types.ts +94 -0
- package/src/ui/Picker/utils.ts +239 -0
- package/src/ui/Radio/README.md +207 -0
- package/src/ui/Radio/index.tsx +1117 -0
- package/src/ui/Sheet/README.md +82 -0
- package/src/ui/Sheet/index.tsx +1163 -0
- package/src/ui/Sheet/nativeBottom.tsx +683 -0
- package/src/ui/Sheet/nativeBottom.web.tsx +40 -0
- package/src/ui/Sheet/slots.tsx +75 -0
- package/src/ui/Sheet/types.ts +195 -0
- package/src/ui/SliderCaptcha/README.md +61 -0
- package/src/ui/SliderCaptcha/index.tsx +816 -0
- package/src/ui/Switch/README.md +143 -0
- package/src/ui/Switch/index.tsx +1092 -0
- package/src/ui/Text/README.md +157 -0
- package/src/ui/Text/index.tsx +450 -0
- package/src/ui/TextInput/README.md +197 -0
- package/src/ui/TextInput/TextInputPrimitive.tsx +44 -0
- package/src/ui/TextInput/index.tsx +942 -0
- package/src/ui/WheelColumn/README.md +104 -0
- package/src/ui/WheelColumn/ZKitWheelPickerNativeComponent.tsx +68 -0
- package/src/ui/WheelColumn/constants.ts +1 -0
- package/src/ui/WheelColumn/index.tsx +826 -0
- package/zkit-ui.podspec +19 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
export { Button } from './ui/Button/index';
|
|
2
|
+
export type {
|
|
3
|
+
ButtonBorder,
|
|
4
|
+
ButtonBorderStyle,
|
|
5
|
+
ButtonColors,
|
|
6
|
+
ButtonGradient,
|
|
7
|
+
ButtonGradientDirection,
|
|
8
|
+
ButtonGradientPoint,
|
|
9
|
+
ButtonIconPlacement,
|
|
10
|
+
ButtonLayout,
|
|
11
|
+
ButtonLoadingMode,
|
|
12
|
+
ButtonPressEffect,
|
|
13
|
+
ButtonProps,
|
|
14
|
+
ButtonRef,
|
|
15
|
+
ButtonShape,
|
|
16
|
+
ButtonShadow,
|
|
17
|
+
ButtonShadowConfig,
|
|
18
|
+
ButtonShadowSize,
|
|
19
|
+
ButtonSize,
|
|
20
|
+
ButtonTone,
|
|
21
|
+
ButtonVariant,
|
|
22
|
+
} from './ui/Button/index';
|
|
23
|
+
export { LoadingSpinner } from './ui/LoadingSpinner/index';
|
|
24
|
+
export type { LoadingSpinnerProps } from './ui/LoadingSpinner/index';
|
|
25
|
+
export { Checkbox, CheckboxGroup, CheckboxIndicator } from './ui/Checkbox/index';
|
|
26
|
+
export type {
|
|
27
|
+
CheckboxCheckedState,
|
|
28
|
+
CheckboxColors,
|
|
29
|
+
CheckboxGroupAlign,
|
|
30
|
+
CheckboxGroupOrientation,
|
|
31
|
+
CheckboxGroupProps,
|
|
32
|
+
CheckboxIndicatorProps,
|
|
33
|
+
CheckboxLabelPlacement,
|
|
34
|
+
CheckboxLayout,
|
|
35
|
+
CheckboxProps,
|
|
36
|
+
CheckboxRef,
|
|
37
|
+
CheckboxShape,
|
|
38
|
+
CheckboxSize,
|
|
39
|
+
CheckboxSlotProps,
|
|
40
|
+
CheckboxTone,
|
|
41
|
+
CheckboxValue,
|
|
42
|
+
CheckboxVariant,
|
|
43
|
+
} from './ui/Checkbox/index';
|
|
44
|
+
export { Text } from './ui/Text/index';
|
|
45
|
+
export type {
|
|
46
|
+
TextProps,
|
|
47
|
+
TextRef,
|
|
48
|
+
TextSize,
|
|
49
|
+
TextSizeValue,
|
|
50
|
+
TextTone,
|
|
51
|
+
TextTruncate,
|
|
52
|
+
TextVariant,
|
|
53
|
+
TextWeight,
|
|
54
|
+
} from './ui/Text/index';
|
|
55
|
+
export { TextInput, TextInputPrimitive } from './ui/TextInput/index';
|
|
56
|
+
export type {
|
|
57
|
+
TextInputColors,
|
|
58
|
+
TextInputLayout,
|
|
59
|
+
TextInputPrimitiveProps,
|
|
60
|
+
TextInputPrimitiveRef,
|
|
61
|
+
TextInputProps,
|
|
62
|
+
TextInputRef,
|
|
63
|
+
TextInputSize,
|
|
64
|
+
TextInputStatus,
|
|
65
|
+
TextInputTone,
|
|
66
|
+
TextInputVariant,
|
|
67
|
+
} from './ui/TextInput/index';
|
|
68
|
+
export {
|
|
69
|
+
Sheet,
|
|
70
|
+
SheetContent,
|
|
71
|
+
SheetFooter,
|
|
72
|
+
SheetHeader,
|
|
73
|
+
} from './ui/Sheet/index';
|
|
74
|
+
export type {
|
|
75
|
+
SheetAnimationConfig,
|
|
76
|
+
SheetBackdropConfig,
|
|
77
|
+
SheetCloseCompleteDetails,
|
|
78
|
+
SheetCloseOptions,
|
|
79
|
+
SheetCloseReason,
|
|
80
|
+
SheetContentProps,
|
|
81
|
+
SheetDetent,
|
|
82
|
+
SheetDetentChangePayload,
|
|
83
|
+
SheetFooterProps,
|
|
84
|
+
SheetHandleConfig,
|
|
85
|
+
SheetHeaderProps,
|
|
86
|
+
SheetNativeProps,
|
|
87
|
+
SheetOpenChangeDetails,
|
|
88
|
+
SheetOpenChangeReason,
|
|
89
|
+
SheetOpenCompleteDetails,
|
|
90
|
+
SheetOpenOptions,
|
|
91
|
+
SheetOpenReason,
|
|
92
|
+
SheetPlacement,
|
|
93
|
+
SheetProps,
|
|
94
|
+
SheetRef,
|
|
95
|
+
SheetRenderContext,
|
|
96
|
+
SheetSafeAreaEdges,
|
|
97
|
+
SheetSize,
|
|
98
|
+
SheetState,
|
|
99
|
+
} from './ui/Sheet/index';
|
|
100
|
+
export {
|
|
101
|
+
Accordion,
|
|
102
|
+
AccordionContent,
|
|
103
|
+
AccordionIndicator,
|
|
104
|
+
AccordionItem,
|
|
105
|
+
AccordionTrigger,
|
|
106
|
+
} from './ui/Accordion/index';
|
|
107
|
+
export type {
|
|
108
|
+
AccordionAnimationConfig,
|
|
109
|
+
AccordionContentProps,
|
|
110
|
+
AccordionIndicatorProps,
|
|
111
|
+
AccordionItemState,
|
|
112
|
+
AccordionItemProps,
|
|
113
|
+
AccordionMountStrategy,
|
|
114
|
+
AccordionMultipleProps,
|
|
115
|
+
AccordionPressEffect,
|
|
116
|
+
AccordionProps,
|
|
117
|
+
AccordionSingleProps,
|
|
118
|
+
AccordionSize,
|
|
119
|
+
AccordionSlot,
|
|
120
|
+
AccordionTone,
|
|
121
|
+
AccordionTriggerProps,
|
|
122
|
+
AccordionTriggerRenderState,
|
|
123
|
+
AccordionType,
|
|
124
|
+
AccordionValue,
|
|
125
|
+
AccordionVariant,
|
|
126
|
+
} from './ui/Accordion/index';
|
|
127
|
+
export { BetweenTime } from './ui/BetweenTime/index';
|
|
128
|
+
export type { BetweenTimeProps } from './ui/BetweenTime/index';
|
|
129
|
+
export { Picker } from './ui/Picker/index';
|
|
130
|
+
export type {
|
|
131
|
+
PickerChangePayload,
|
|
132
|
+
PickerColumnHeaderContext,
|
|
133
|
+
PickerConfirmPayload,
|
|
134
|
+
PickerDraftChangePayload,
|
|
135
|
+
PickerHandle,
|
|
136
|
+
PickerOption,
|
|
137
|
+
PickerPrimitiveValue,
|
|
138
|
+
PickerProps,
|
|
139
|
+
PickerSelection,
|
|
140
|
+
PickerTriggerContext,
|
|
141
|
+
PickerValue,
|
|
142
|
+
PickerValueMode,
|
|
143
|
+
} from './ui/Picker/index';
|
|
144
|
+
export {
|
|
145
|
+
WheelColumn,
|
|
146
|
+
WHEEL_AREA_HEIGHT,
|
|
147
|
+
WHEEL_AREA_VERTICAL_INSET,
|
|
148
|
+
WHEEL_ITEM_HEIGHT,
|
|
149
|
+
WHEEL_VIEWPORT_HEIGHT,
|
|
150
|
+
WHEEL_VISIBLE_ITEMS,
|
|
151
|
+
} from './ui/WheelColumn/index';
|
|
152
|
+
export type {
|
|
153
|
+
WheelColumnChangePayload,
|
|
154
|
+
WheelColumnChangeSource,
|
|
155
|
+
WheelColumnHandle,
|
|
156
|
+
WheelColumnOption,
|
|
157
|
+
WheelColumnProps,
|
|
158
|
+
WheelColumnValue,
|
|
159
|
+
WheelOption,
|
|
160
|
+
} from './ui/WheelColumn/index';
|
|
161
|
+
export { AddressCascader } from './ui/AddressCascader/index';
|
|
162
|
+
export type {
|
|
163
|
+
AddressCascaderChangePayload,
|
|
164
|
+
AddressCascaderConfirmPayload,
|
|
165
|
+
AddressCascaderHandle,
|
|
166
|
+
AddressCascaderOption,
|
|
167
|
+
AddressCascaderProps,
|
|
168
|
+
AddressCascaderRenderContext,
|
|
169
|
+
AddressCascaderValue,
|
|
170
|
+
} from './ui/AddressCascader/index';
|
|
171
|
+
export { DatePicker } from './ui/DatePicker/index';
|
|
172
|
+
export type {
|
|
173
|
+
DatePickerChangePayload,
|
|
174
|
+
DatePickerColumn,
|
|
175
|
+
DatePickerColumnHeaderContext,
|
|
176
|
+
DatePickerConfirmPayload,
|
|
177
|
+
DatePickerDisableContext,
|
|
178
|
+
DatePickerDraftChangePayload,
|
|
179
|
+
DatePickerHandle,
|
|
180
|
+
DatePickerInput,
|
|
181
|
+
DatePickerLabelFormat,
|
|
182
|
+
DatePickerOption,
|
|
183
|
+
DatePickerParts,
|
|
184
|
+
DatePickerPrecision,
|
|
185
|
+
DatePickerProps,
|
|
186
|
+
DatePickerRenderContext,
|
|
187
|
+
DatePickerSelection,
|
|
188
|
+
DatePickerValue,
|
|
189
|
+
} from './ui/DatePicker/index';
|
|
190
|
+
export { Switch } from './ui/Switch/index';
|
|
191
|
+
export type {
|
|
192
|
+
SwitchColors,
|
|
193
|
+
SwitchLabelPlacement,
|
|
194
|
+
SwitchLayout,
|
|
195
|
+
SwitchProps,
|
|
196
|
+
SwitchRef,
|
|
197
|
+
SwitchSize,
|
|
198
|
+
SwitchSlotProps,
|
|
199
|
+
SwitchStateText,
|
|
200
|
+
SwitchTone,
|
|
201
|
+
} from './ui/Switch/index';
|
|
202
|
+
export { SliderCaptcha } from './ui/SliderCaptcha/index';
|
|
203
|
+
export type {
|
|
204
|
+
SliderCaptchaChallenge,
|
|
205
|
+
SliderCaptchaErrorInfo,
|
|
206
|
+
SliderCaptchaErrorStage,
|
|
207
|
+
SliderCaptchaLoadReason,
|
|
208
|
+
SliderCaptchaProps,
|
|
209
|
+
SliderCaptchaStatus,
|
|
210
|
+
SliderCaptchaTexts,
|
|
211
|
+
SliderCaptchaVerifyPayload,
|
|
212
|
+
SliderCaptchaVerifyResult,
|
|
213
|
+
} from './ui/SliderCaptcha/index';
|
|
214
|
+
export { Radio, RadioGroup, RadioIndicator } from './ui/Radio/index';
|
|
215
|
+
export type {
|
|
216
|
+
RadioColors,
|
|
217
|
+
RadioGroupAlign,
|
|
218
|
+
RadioGroupOrientation,
|
|
219
|
+
RadioGroupProps,
|
|
220
|
+
RadioIndicatorProps,
|
|
221
|
+
RadioLabelPlacement,
|
|
222
|
+
RadioLayout,
|
|
223
|
+
RadioProps,
|
|
224
|
+
RadioRef,
|
|
225
|
+
RadioSize,
|
|
226
|
+
RadioSlotProps,
|
|
227
|
+
RadioTone,
|
|
228
|
+
RadioValue,
|
|
229
|
+
RadioVariant,
|
|
230
|
+
} from './ui/Radio/index';
|
|
231
|
+
export { LinkedScroll } from './ui/LinkedScroll/index';
|
|
232
|
+
export type {
|
|
233
|
+
LinkedScrollChangeMeta,
|
|
234
|
+
LinkedScrollChangeSource,
|
|
235
|
+
LinkedScrollItem,
|
|
236
|
+
LinkedScrollMenuItemRenderContext,
|
|
237
|
+
LinkedScrollProps,
|
|
238
|
+
LinkedScrollSectionRenderContext,
|
|
239
|
+
LinkedScrollValue,
|
|
240
|
+
} from './ui/LinkedScroll/index';
|
|
241
|
+
export { ThemeProvider } from './theme/ThemeProvider';
|
|
242
|
+
export { useTheme } from './theme/useTheme';
|
|
243
|
+
export type { Theme, ThemeOverride } from './theme/types';
|
|
244
|
+
export { configureComponentLib } from './config';
|
|
245
|
+
export type { ComponentLibConfig, ComponentLibI18nConfig } from './config';
|
|
246
|
+
export {
|
|
247
|
+
BUILTIN_I18N_LOCALES,
|
|
248
|
+
DEFAULT_I18N_LOCALE,
|
|
249
|
+
resolveBuiltinLocale,
|
|
250
|
+
resolveSystemBuiltinLocale,
|
|
251
|
+
} from './i18n/locale';
|
|
252
|
+
export type { BuiltinI18nLocale } from './i18n/locale';
|
|
253
|
+
export { I18nProvider } from './i18n/I18nProvider';
|
|
254
|
+
export { useI18n } from './i18n/useI18n';
|
|
255
|
+
export type {
|
|
256
|
+
I18nContextValue,
|
|
257
|
+
I18nMessages,
|
|
258
|
+
I18nMissingKeyPolicy,
|
|
259
|
+
I18nTranslate,
|
|
260
|
+
I18nTranslateParams,
|
|
261
|
+
} from './i18n/types';
|
|
262
|
+
export { ComponentLibProvider } from './ComponentLibProvider';
|
|
263
|
+
export type { ComponentLibProviderProps } from './ComponentLibProvider';
|
|
264
|
+
export { pickerService, PickerServiceProvider } from './services/PickerService/index';
|
|
265
|
+
export type {
|
|
266
|
+
AddressPickerResult,
|
|
267
|
+
BetweenTimePickerResult,
|
|
268
|
+
DatePickerResult,
|
|
269
|
+
PickOptions,
|
|
270
|
+
PickDateOptions,
|
|
271
|
+
PickAddressOptions,
|
|
272
|
+
PickBetweenTimeOptions,
|
|
273
|
+
PickerResult,
|
|
274
|
+
} from './services/PickerService/index';
|
|
275
|
+
export { toast, ToastProvider } from './services/CardToastService/index';
|
|
276
|
+
export type {
|
|
277
|
+
ToastAction,
|
|
278
|
+
ToastActionContext,
|
|
279
|
+
ToastCustomOptions,
|
|
280
|
+
ToastDefaults,
|
|
281
|
+
ToastDismissReason,
|
|
282
|
+
ToastHandle,
|
|
283
|
+
ToastIconRenderContext,
|
|
284
|
+
ToastItem,
|
|
285
|
+
ToastOpenChangeMeta,
|
|
286
|
+
ToastOpenChangeReason,
|
|
287
|
+
ToastOptions,
|
|
288
|
+
ToastPlacement,
|
|
289
|
+
ToastProviderProps,
|
|
290
|
+
ToastRenderContext,
|
|
291
|
+
ToastService,
|
|
292
|
+
ToastShortcutOptions,
|
|
293
|
+
ToastStrategy,
|
|
294
|
+
ToastTone,
|
|
295
|
+
ToastUpdateOptions,
|
|
296
|
+
} from './services/CardToastService/index';
|
|
297
|
+
export { ActionDialog, actionDialog, ActionDialogProvider } from './services/ActionDialogService/index';
|
|
298
|
+
export type {
|
|
299
|
+
ActionDialogAction,
|
|
300
|
+
ActionDialogActionContext,
|
|
301
|
+
ActionDialogActionPressResult,
|
|
302
|
+
ActionDialogActionResult,
|
|
303
|
+
ActionDialogActionRole,
|
|
304
|
+
ActionDialogActionTone,
|
|
305
|
+
ActionDialogActionVariant,
|
|
306
|
+
ActionDialogAlertOptions,
|
|
307
|
+
ActionDialogCollisionStrategy,
|
|
308
|
+
ActionDialogColors,
|
|
309
|
+
ActionDialogConfirmOptions,
|
|
310
|
+
ActionDialogDismissOptions,
|
|
311
|
+
ActionDialogDismissReason,
|
|
312
|
+
ActionDialogDismissResult,
|
|
313
|
+
ActionDialogFooterLayout,
|
|
314
|
+
ActionDialogFooterOptions,
|
|
315
|
+
ActionDialogFooterRenderContext,
|
|
316
|
+
ActionDialogHandle,
|
|
317
|
+
ActionDialogHostMode,
|
|
318
|
+
ActionDialogKeyboardOptions,
|
|
319
|
+
ActionDialogLabels,
|
|
320
|
+
ActionDialogLayerOptions,
|
|
321
|
+
ActionDialogLayoutOptions,
|
|
322
|
+
ActionDialogMotion,
|
|
323
|
+
ActionDialogOpenChangeMeta,
|
|
324
|
+
ActionDialogOpenChangeReason,
|
|
325
|
+
ActionDialogOpenOptions,
|
|
326
|
+
ActionDialogProps,
|
|
327
|
+
ActionDialogRef,
|
|
328
|
+
ActionDialogResolvedAction,
|
|
329
|
+
ActionDialogResolvedFooterLayout,
|
|
330
|
+
ActionDialogResult,
|
|
331
|
+
ActionDialogSemanticActionOptions,
|
|
332
|
+
ActionDialogService,
|
|
333
|
+
ActionDialogSnapshot,
|
|
334
|
+
} from './services/ActionDialogService/index';
|
|
335
|
+
export { loading, LoadingProvider } from './services/LoadingService/index';
|
|
336
|
+
export type {
|
|
337
|
+
LoadingColors,
|
|
338
|
+
LoadingDefaults,
|
|
339
|
+
LoadingDismissReason,
|
|
340
|
+
LoadingHandle,
|
|
341
|
+
LoadingIconRenderContext,
|
|
342
|
+
LoadingInput,
|
|
343
|
+
LoadingItem,
|
|
344
|
+
LoadingLabels,
|
|
345
|
+
LoadingLiveRegion,
|
|
346
|
+
LoadingOpenChangeMeta,
|
|
347
|
+
LoadingOpenChangeReason,
|
|
348
|
+
LoadingPromiseErrorInput,
|
|
349
|
+
LoadingPromiseOptions,
|
|
350
|
+
LoadingPromiseResultInput,
|
|
351
|
+
LoadingProviderProps,
|
|
352
|
+
LoadingRenderContext,
|
|
353
|
+
LoadingResolvedDefaults,
|
|
354
|
+
LoadingResultInput,
|
|
355
|
+
LoadingResultOptions,
|
|
356
|
+
LoadingService,
|
|
357
|
+
LoadingShowOptions,
|
|
358
|
+
LoadingSnapshot,
|
|
359
|
+
LoadingStatus,
|
|
360
|
+
LoadingUpdateOptions,
|
|
361
|
+
} from './services/LoadingService/index';
|
|
362
|
+
export {
|
|
363
|
+
permissionPurposeDialog,
|
|
364
|
+
PermissionPurposeDialogProvider,
|
|
365
|
+
} from './services/PermissionPurposeDialogService/index';
|
|
366
|
+
export type {
|
|
367
|
+
PermissionPurpose,
|
|
368
|
+
PermissionPurposeDialogHandle,
|
|
369
|
+
PermissionPurposeDialogOptions,
|
|
370
|
+
} from './services/PermissionPurposeDialogService/index';
|
|
371
|
+
export { imagePreview, ImagePreview, ImagePreviewProvider } from './services/ImagePreviewService/index';
|
|
372
|
+
export type {
|
|
373
|
+
ImagePreviewChangeMeta,
|
|
374
|
+
ImagePreviewChangeReason,
|
|
375
|
+
ImagePreviewCloseReason,
|
|
376
|
+
ImagePreviewColors,
|
|
377
|
+
ImagePreviewImage,
|
|
378
|
+
ImagePreviewImageDescriptor,
|
|
379
|
+
ImagePreviewImageProps,
|
|
380
|
+
ImagePreviewInteractions,
|
|
381
|
+
ImagePreviewLabels,
|
|
382
|
+
ImagePreviewOpenChangeMeta,
|
|
383
|
+
ImagePreviewOpenChangeReason,
|
|
384
|
+
ImagePreviewOpenOptions,
|
|
385
|
+
ImagePreviewPrefetchCachePolicy,
|
|
386
|
+
ImagePreviewProps,
|
|
387
|
+
ImagePreviewRef,
|
|
388
|
+
ImagePreviewRenderContext,
|
|
389
|
+
ImagePreviewResolvedImage,
|
|
390
|
+
ImagePreviewResult,
|
|
391
|
+
ImagePreviewServiceHandle,
|
|
392
|
+
ImagePreviewServiceSnapshot,
|
|
393
|
+
ImagePreviewSource,
|
|
394
|
+
ImagePreviewTapBehavior,
|
|
395
|
+
} from './services/ImagePreviewService/index';
|