snail.vue 2.0.31 → 2.0.32
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/snail.vue.d.ts +155 -129
- package/dist/snail.vue.js +332 -291
- package/dist/snail.vue.umd.js +330 -289
- package/dist/styles/snail.vue.vue.css +5 -5
- package/package.json +2 -2
package/dist/snail.vue.d.ts
CHANGED
|
@@ -920,6 +920,7 @@ declare function usePopup(): IPopupManager & IScope;
|
|
|
920
920
|
/**
|
|
921
921
|
* 滚动选择器 相关实体
|
|
922
922
|
*/
|
|
923
|
+
|
|
923
924
|
/**
|
|
924
925
|
* 滚动选择器 组件配置选项
|
|
925
926
|
*/
|
|
@@ -934,6 +935,15 @@ type ScrollPickerOptions = {
|
|
|
934
935
|
*/
|
|
935
936
|
value?: string;
|
|
936
937
|
};
|
|
938
|
+
/**
|
|
939
|
+
* 滚动选择器 组件弹窗时配置选项
|
|
940
|
+
*/
|
|
941
|
+
type ScrollPickerPopupOptions = TitleOptions & {
|
|
942
|
+
/**
|
|
943
|
+
* 禁用【清空】按钮
|
|
944
|
+
*/
|
|
945
|
+
clearDisabled?: boolean;
|
|
946
|
+
};
|
|
937
947
|
/**
|
|
938
948
|
* 滚动选择器的一个滚动选项
|
|
939
949
|
*/
|
|
@@ -944,9 +954,9 @@ type ScrollPickItem = {
|
|
|
944
954
|
*/
|
|
945
955
|
code: string;
|
|
946
956
|
/**
|
|
947
|
-
*
|
|
957
|
+
* 选项名称
|
|
948
958
|
*/
|
|
949
|
-
|
|
959
|
+
name: string;
|
|
950
960
|
/**
|
|
951
961
|
* 是否禁用
|
|
952
962
|
* - 为true,表示禁用此选项,不能被选中
|
|
@@ -1140,7 +1150,7 @@ interface IPickerManager {
|
|
|
1140
1150
|
* @param options
|
|
1141
1151
|
* @returns 异步任务,可销毁选择组件;可接受组件选择值
|
|
1142
1152
|
*/
|
|
1143
|
-
showScroll(options: ScrollPickerOptions): IAsyncScope<string>;
|
|
1153
|
+
showScroll(options: ScrollPickerOptions & ScrollPickerPopupOptions): IAsyncScope<string>;
|
|
1144
1154
|
}
|
|
1145
1155
|
/**
|
|
1146
1156
|
* 选择器弹窗配置选项
|
|
@@ -1180,6 +1190,106 @@ type PickerExtend = {
|
|
|
1180
1190
|
picker: IPickerManager;
|
|
1181
1191
|
};
|
|
1182
1192
|
|
|
1193
|
+
/**
|
|
1194
|
+
* 可操作项组件 的配置选项
|
|
1195
|
+
* - disabled 为true时,不响应操作项触发
|
|
1196
|
+
*/
|
|
1197
|
+
type ActionOptions = DisabledOptions & ValueOptions<string> & {
|
|
1198
|
+
/**
|
|
1199
|
+
* 可用操作项
|
|
1200
|
+
*/
|
|
1201
|
+
actions: ActionItem[];
|
|
1202
|
+
/**
|
|
1203
|
+
* 操作项触发模式
|
|
1204
|
+
* - icon (默认值)点击图标弹出操作项
|
|
1205
|
+
* - press 长摁直接弹出操作项,此时隐藏触发icon
|
|
1206
|
+
* - whole 整体触发:action组件点击时弹出操作项
|
|
1207
|
+
*/
|
|
1208
|
+
mode?: "icon" | "whole" | "press";
|
|
1209
|
+
/**
|
|
1210
|
+
* 触发图标相关配置
|
|
1211
|
+
* - hover (默认值)鼠标移入显示一个触发图标,点击图标弹出操作项
|
|
1212
|
+
* - always 始终显示一个触发图标,点击图标弹出操作项
|
|
1213
|
+
*/
|
|
1214
|
+
icon?: "hover" | "always";
|
|
1215
|
+
/**
|
|
1216
|
+
* 选择操作项时的弹出方式
|
|
1217
|
+
* - follow 跟随模式:跟随弹窗效果
|
|
1218
|
+
* - picker 选择器模式:滚动选择器效果
|
|
1219
|
+
*/
|
|
1220
|
+
popup?: "follow" | "picker";
|
|
1221
|
+
/**
|
|
1222
|
+
* 跟随弹窗配置
|
|
1223
|
+
* - mode 为 `follow`时生效
|
|
1224
|
+
*/
|
|
1225
|
+
follow?: Pick<FollowPositionOptions, "followX" | "followY" | "spaceX" | "spaceY">;
|
|
1226
|
+
};
|
|
1227
|
+
/**
|
|
1228
|
+
* 操作项集合 组件渲染配置选项
|
|
1229
|
+
*/
|
|
1230
|
+
type ActionItemsOptions = {
|
|
1231
|
+
/**
|
|
1232
|
+
* 展示模式
|
|
1233
|
+
* - horizontal 水平展示
|
|
1234
|
+
* - vertical 垂直展示
|
|
1235
|
+
*/
|
|
1236
|
+
mode: "horizontal" | "vertical";
|
|
1237
|
+
/**
|
|
1238
|
+
* 要渲染的操作项
|
|
1239
|
+
*/
|
|
1240
|
+
actions: ActionItem[];
|
|
1241
|
+
};
|
|
1242
|
+
/**
|
|
1243
|
+
* 一个操作项的配置
|
|
1244
|
+
*/
|
|
1245
|
+
type ActionItem = {
|
|
1246
|
+
/**
|
|
1247
|
+
* 操作项编码
|
|
1248
|
+
* - 确保唯一
|
|
1249
|
+
*/
|
|
1250
|
+
code: string;
|
|
1251
|
+
/**
|
|
1252
|
+
* 操作项名称
|
|
1253
|
+
* - 确保唯一
|
|
1254
|
+
*/
|
|
1255
|
+
name: string;
|
|
1256
|
+
/**
|
|
1257
|
+
* 操作项颜色
|
|
1258
|
+
*/
|
|
1259
|
+
color?: string;
|
|
1260
|
+
/**
|
|
1261
|
+
* 操作项移入时颜色
|
|
1262
|
+
*/
|
|
1263
|
+
hoverColor?: string;
|
|
1264
|
+
/**
|
|
1265
|
+
* 操作项图标
|
|
1266
|
+
*/
|
|
1267
|
+
icon?: Pick<IconOptions, "type" | "size" | "title">;
|
|
1268
|
+
};
|
|
1269
|
+
/**
|
|
1270
|
+
* 可操作向组件 插槽句柄
|
|
1271
|
+
*/
|
|
1272
|
+
type ActionSlotHandle = {
|
|
1273
|
+
/**
|
|
1274
|
+
* 操作项是否激活显示
|
|
1275
|
+
*/
|
|
1276
|
+
isActived(): boolean;
|
|
1277
|
+
/**
|
|
1278
|
+
* 触发操作项显示
|
|
1279
|
+
*/
|
|
1280
|
+
trigger(): void;
|
|
1281
|
+
};
|
|
1282
|
+
/**
|
|
1283
|
+
* 可操作项组件 的事件
|
|
1284
|
+
*/
|
|
1285
|
+
type ActionEvents = {
|
|
1286
|
+
/**
|
|
1287
|
+
* 操作项激活时
|
|
1288
|
+
* @param code 操作项的code
|
|
1289
|
+
*/
|
|
1290
|
+
trigger: [code: string];
|
|
1291
|
+
};
|
|
1292
|
+
|
|
1183
1293
|
/**
|
|
1184
1294
|
* 树形 数据相关的基础实体结构
|
|
1185
1295
|
* 1、封装一些基础实体;如树形节点数据结构
|
|
@@ -2565,94 +2675,6 @@ type ButtonOptions = TitleOptions & {
|
|
|
2565
2675
|
type: "primary" | "default" | "link";
|
|
2566
2676
|
};
|
|
2567
2677
|
|
|
2568
|
-
/**
|
|
2569
|
-
* 可操作项组件 的配置选项
|
|
2570
|
-
* - disabled 为true时,不响应操作项触发
|
|
2571
|
-
*/
|
|
2572
|
-
type ActionOptions = DisabledOptions & {
|
|
2573
|
-
/**
|
|
2574
|
-
* 触发方式
|
|
2575
|
-
* - always :始终显示一个触发图标,点击图标弹出操作项
|
|
2576
|
-
* - hover:鼠标移入显示一个触发图标,点击图标弹出操作项
|
|
2577
|
-
* - long-press:长摁直接弹出操作项
|
|
2578
|
-
*/
|
|
2579
|
-
trigger: "always" | "hover" | "long-press";
|
|
2580
|
-
/**
|
|
2581
|
-
* 显示模式
|
|
2582
|
-
* - popup:弹出显示操作项
|
|
2583
|
-
* - inline:内联显示操作项
|
|
2584
|
-
*/
|
|
2585
|
-
/**
|
|
2586
|
-
* 可用操作项
|
|
2587
|
-
*/
|
|
2588
|
-
actions: ActionItem[];
|
|
2589
|
-
} & Pick<FollowPositionOptions, "followX" | "followY" | "spaceX" | "spaceY">;
|
|
2590
|
-
/**
|
|
2591
|
-
* 操作项集合 组件渲染配置选项
|
|
2592
|
-
*/
|
|
2593
|
-
type ActionItemsOptions = {
|
|
2594
|
-
/**
|
|
2595
|
-
* 展示模式
|
|
2596
|
-
* - horizontal 水平展示
|
|
2597
|
-
* - vertical 垂直展示
|
|
2598
|
-
*/
|
|
2599
|
-
mode: "horizontal" | "vertical";
|
|
2600
|
-
/**
|
|
2601
|
-
* 要渲染的操作项
|
|
2602
|
-
*/
|
|
2603
|
-
actions: ActionItem[];
|
|
2604
|
-
};
|
|
2605
|
-
/**
|
|
2606
|
-
* 一个操作项的配置
|
|
2607
|
-
*/
|
|
2608
|
-
type ActionItem = {
|
|
2609
|
-
/**
|
|
2610
|
-
* 操作项编码
|
|
2611
|
-
* - 确保唯一
|
|
2612
|
-
*/
|
|
2613
|
-
code: string;
|
|
2614
|
-
/**
|
|
2615
|
-
* 操作项名称
|
|
2616
|
-
* - 确保唯一
|
|
2617
|
-
*/
|
|
2618
|
-
name: string;
|
|
2619
|
-
/**
|
|
2620
|
-
* 操作项颜色
|
|
2621
|
-
*/
|
|
2622
|
-
color?: string;
|
|
2623
|
-
/**
|
|
2624
|
-
* 操作项移入时颜色
|
|
2625
|
-
*/
|
|
2626
|
-
hoverColor?: string;
|
|
2627
|
-
/**
|
|
2628
|
-
* 操作项图标
|
|
2629
|
-
*/
|
|
2630
|
-
icon?: Pick<IconOptions, "type" | "size" | "title">;
|
|
2631
|
-
};
|
|
2632
|
-
/**
|
|
2633
|
-
* 可操作向组件 插槽句柄
|
|
2634
|
-
*/
|
|
2635
|
-
type ActionSlotHandle = {
|
|
2636
|
-
/**
|
|
2637
|
-
* 操作项是否激活显示
|
|
2638
|
-
*/
|
|
2639
|
-
isActived(): boolean;
|
|
2640
|
-
/**
|
|
2641
|
-
* 触发操作项显示
|
|
2642
|
-
*/
|
|
2643
|
-
trigger(): void;
|
|
2644
|
-
};
|
|
2645
|
-
/**
|
|
2646
|
-
* 可操作项组件 的事件
|
|
2647
|
-
*/
|
|
2648
|
-
type ActionEvents = {
|
|
2649
|
-
/**
|
|
2650
|
-
* 操作项激活时
|
|
2651
|
-
* @param code 操作项的code
|
|
2652
|
-
*/
|
|
2653
|
-
trigger: [code: string];
|
|
2654
|
-
};
|
|
2655
|
-
|
|
2656
2678
|
/**
|
|
2657
2679
|
* 输入框配置选项
|
|
2658
2680
|
* - title 将作为 输入框标题区域文本;不传入则不展示 标题区域,仅展示输入框
|
|
@@ -2953,41 +2975,6 @@ declare const MOTION: Readonly<{
|
|
|
2953
2975
|
declare function usePicker(): IPickerManager & IScope;
|
|
2954
2976
|
|
|
2955
2977
|
declare const components: {
|
|
2956
|
-
Action: {
|
|
2957
|
-
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<ActionOptions> & Readonly<{
|
|
2958
|
-
onTrigger?: (code: string) => any;
|
|
2959
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2960
|
-
trigger: (code: string) => any;
|
|
2961
|
-
}, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
2962
|
-
P: {};
|
|
2963
|
-
B: {};
|
|
2964
|
-
D: {};
|
|
2965
|
-
C: {};
|
|
2966
|
-
M: {};
|
|
2967
|
-
Defaults: {};
|
|
2968
|
-
}, Readonly<ActionOptions> & Readonly<{
|
|
2969
|
-
onTrigger?: (code: string) => any;
|
|
2970
|
-
}>, {}, {}, {}, {}, {}>;
|
|
2971
|
-
__isFragment?: never;
|
|
2972
|
-
__isTeleport?: never;
|
|
2973
|
-
__isSuspense?: never;
|
|
2974
|
-
} & vue.ComponentOptionsBase<Readonly<ActionOptions> & Readonly<{
|
|
2975
|
-
onTrigger?: (code: string) => any;
|
|
2976
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2977
|
-
trigger: (code: string) => any;
|
|
2978
|
-
}, string, {}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
2979
|
-
$slots: {
|
|
2980
|
-
default?: (props: {
|
|
2981
|
-
isActived(): boolean;
|
|
2982
|
-
trigger(): void;
|
|
2983
|
-
}) => any;
|
|
2984
|
-
} & {
|
|
2985
|
-
trigger?: (props: {
|
|
2986
|
-
isActived(): boolean;
|
|
2987
|
-
trigger(): void;
|
|
2988
|
-
}) => any;
|
|
2989
|
-
};
|
|
2990
|
-
});
|
|
2991
2978
|
Button: {
|
|
2992
2979
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<ButtonOptions> & Readonly<{
|
|
2993
2980
|
onClick?: (evt?: MouseEvent | TouchEvent | PointerEvent) => any;
|
|
@@ -3745,6 +3732,41 @@ declare const components: {
|
|
|
3745
3732
|
default?: (props: {}) => any;
|
|
3746
3733
|
};
|
|
3747
3734
|
});
|
|
3735
|
+
Action: {
|
|
3736
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<ActionOptions> & Readonly<{
|
|
3737
|
+
onTrigger?: (code: string) => any;
|
|
3738
|
+
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3739
|
+
trigger: (code: string) => any;
|
|
3740
|
+
}, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
3741
|
+
P: {};
|
|
3742
|
+
B: {};
|
|
3743
|
+
D: {};
|
|
3744
|
+
C: {};
|
|
3745
|
+
M: {};
|
|
3746
|
+
Defaults: {};
|
|
3747
|
+
}, Readonly<ActionOptions> & Readonly<{
|
|
3748
|
+
onTrigger?: (code: string) => any;
|
|
3749
|
+
}>, {}, {}, {}, {}, {}>;
|
|
3750
|
+
__isFragment?: never;
|
|
3751
|
+
__isTeleport?: never;
|
|
3752
|
+
__isSuspense?: never;
|
|
3753
|
+
} & vue.ComponentOptionsBase<Readonly<ActionOptions> & Readonly<{
|
|
3754
|
+
onTrigger?: (code: string) => any;
|
|
3755
|
+
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3756
|
+
trigger: (code: string) => any;
|
|
3757
|
+
}, string, {}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
3758
|
+
$slots: {
|
|
3759
|
+
default?: (props: {
|
|
3760
|
+
isActived(): boolean;
|
|
3761
|
+
trigger(): void;
|
|
3762
|
+
}) => any;
|
|
3763
|
+
} & {
|
|
3764
|
+
trigger?: (props: {
|
|
3765
|
+
isActived(): boolean;
|
|
3766
|
+
trigger(): void;
|
|
3767
|
+
}) => any;
|
|
3768
|
+
};
|
|
3769
|
+
});
|
|
3748
3770
|
FlashNumber: vue.DefineComponent<{
|
|
3749
3771
|
value?: string | number;
|
|
3750
3772
|
}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{
|
|
@@ -3775,11 +3797,15 @@ declare const components: {
|
|
|
3775
3797
|
}> & Readonly<{
|
|
3776
3798
|
onChange?: (newValue: string, oldValue?: string) => any;
|
|
3777
3799
|
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
3778
|
-
ScrollPicker: vue.DefineComponent<ScrollPickerOptions & TitleOptions &
|
|
3800
|
+
ScrollPicker: vue.DefineComponent<ScrollPickerOptions & TitleOptions & {
|
|
3801
|
+
clearDisabled?: boolean;
|
|
3802
|
+
} & Partial<PopupHandle<string> & {
|
|
3779
3803
|
onBeforeClose(fn: (data?: string) => false | undefined | Promise<false | undefined>): void;
|
|
3780
3804
|
} & PopupStatusOptions & PickerExtend>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3781
3805
|
select: (code: string) => any;
|
|
3782
|
-
}, string, vue.PublicProps, Readonly<ScrollPickerOptions & TitleOptions &
|
|
3806
|
+
}, string, vue.PublicProps, Readonly<ScrollPickerOptions & TitleOptions & {
|
|
3807
|
+
clearDisabled?: boolean;
|
|
3808
|
+
} & Partial<PopupHandle<string> & {
|
|
3783
3809
|
onBeforeClose(fn: (data?: string) => false | undefined | Promise<false | undefined>): void;
|
|
3784
3810
|
} & PopupStatusOptions & PickerExtend>> & Readonly<{
|
|
3785
3811
|
onSelect?: (code: string) => any;
|
|
@@ -3847,4 +3873,4 @@ declare const components: {
|
|
|
3847
3873
|
};
|
|
3848
3874
|
|
|
3849
3875
|
export { MOTION, components, getBuiltinIcon, mount, onAppCreated, triggerAppCreated, usePicker, usePopup, useReactive, useTreeContext };
|
|
3850
|
-
export type { ActionEvents, ActionItem, ActionItemsOptions, ActionOptions, ActionSlotHandle, ButtonOptions, ChangeEvents, ChooseEvents, ChooseItem, ChooseOptions, ClickEvents, CloseEvents, ComponentBindOptions, ComponentOptions, ConfirmAreaOptions, ConfirmOptions, DatePickerDayItem, DatePickerMonthItem, DatePickerOptions, DatePickerYearItem, DatetimeDisabledOptions, DatetimePickerEvents, DeleteEvents, DialogHandle, DialogOptions, DialogWrapperHandle, DisabledOptions, DragVerifyInfo, DragVerifyOptions, ElasticEvents, ElasticExpose, ElasticOptions, ElasticSpringStatus, EmitterType, EmptyOptions, EventsType, FlexOptions, FoldEvents, FoldOptions, FoldSlotHandle, FoldStatus, FollowElectResult, FollowExtend, FollowHandle, FollowOptions, FollowPositionOptions, FollowStrategy, FollowStrategyOptions, FooterEvents, FooterOptions, HeaderEvents, HeaderOptions, INumberFormatter, IPickerManager, IPopupManager, IReactiveManager, ISelectContext, ITreeBaseContext, IconOptions, IconType, InputEvents, InputOptions, LayoutAraeOptions, LayoutAreaItem, LayoutOptions, LoadingOptions, MessageOptions, MotionEffectOptions, MotionOptions, MoveEvents, NumberBaseOptions, NumberEvents, NumberFormatResult, NumberOptions, PickerExtend, PickerPopupOptions, PlaceholderOptions, PopupDescriptor, PopupHandle, PopupOptions, PopupStatus, PopupStatusOptions, PropsType, ReactiveVar, ReadonlyOptions, ScrollEvents, ScrollExpose, ScrollOptions, ScrollPickItem, ScrollPickerEvents, ScrollPickerOptions, SearchEvents, SearchOptions, SelectBaseEvents, SelectBaseOptions, SelectEvents, SelectItem, SelectNodeEvents, SelectNodeOptions, SelectOptions, SelectPopupEvents, SelectPopupExtend, SelectPopupOptions, SelectSlotOptions, SlotsType, SortEvent, SortEvents, SortGroupHook, SortGroupOptions, SortOptions, SwitchEvents, SwitchOptions, TableColOptions, TableOptions, TableRowOptions, TextareaEvents, TextareaOptions, TimePickerHourItem, TimePickerMinuteItem, TimePickerOptions, TimePickerSecondItem, TitleOptions, ToastOptions, TreeEvents, TreeNode, TreeNodeEvents, TreeNodeExtend, TreeNodeModel, TreeNodeOptions, TreeNodeRenderOptions, TreeNodeSlotOptions, TreeOptions, TreeSearchResult, ValueOptions, WrapperEvents, WrapperOptions };
|
|
3876
|
+
export type { ActionEvents, ActionItem, ActionItemsOptions, ActionOptions, ActionSlotHandle, ButtonOptions, ChangeEvents, ChooseEvents, ChooseItem, ChooseOptions, ClickEvents, CloseEvents, ComponentBindOptions, ComponentOptions, ConfirmAreaOptions, ConfirmOptions, DatePickerDayItem, DatePickerMonthItem, DatePickerOptions, DatePickerYearItem, DatetimeDisabledOptions, DatetimePickerEvents, DeleteEvents, DialogHandle, DialogOptions, DialogWrapperHandle, DisabledOptions, DragVerifyInfo, DragVerifyOptions, ElasticEvents, ElasticExpose, ElasticOptions, ElasticSpringStatus, EmitterType, EmptyOptions, EventsType, FlexOptions, FoldEvents, FoldOptions, FoldSlotHandle, FoldStatus, FollowElectResult, FollowExtend, FollowHandle, FollowOptions, FollowPositionOptions, FollowStrategy, FollowStrategyOptions, FooterEvents, FooterOptions, HeaderEvents, HeaderOptions, INumberFormatter, IPickerManager, IPopupManager, IReactiveManager, ISelectContext, ITreeBaseContext, IconOptions, IconType, InputEvents, InputOptions, LayoutAraeOptions, LayoutAreaItem, LayoutOptions, LoadingOptions, MessageOptions, MotionEffectOptions, MotionOptions, MoveEvents, NumberBaseOptions, NumberEvents, NumberFormatResult, NumberOptions, PickerExtend, PickerPopupOptions, PlaceholderOptions, PopupDescriptor, PopupHandle, PopupOptions, PopupStatus, PopupStatusOptions, PropsType, ReactiveVar, ReadonlyOptions, ScrollEvents, ScrollExpose, ScrollOptions, ScrollPickItem, ScrollPickerEvents, ScrollPickerOptions, ScrollPickerPopupOptions, SearchEvents, SearchOptions, SelectBaseEvents, SelectBaseOptions, SelectEvents, SelectItem, SelectNodeEvents, SelectNodeOptions, SelectOptions, SelectPopupEvents, SelectPopupExtend, SelectPopupOptions, SelectSlotOptions, SlotsType, SortEvent, SortEvents, SortGroupHook, SortGroupOptions, SortOptions, SwitchEvents, SwitchOptions, TableColOptions, TableOptions, TableRowOptions, TextareaEvents, TextareaOptions, TimePickerHourItem, TimePickerMinuteItem, TimePickerOptions, TimePickerSecondItem, TitleOptions, ToastOptions, TreeEvents, TreeNode, TreeNodeEvents, TreeNodeExtend, TreeNodeModel, TreeNodeOptions, TreeNodeRenderOptions, TreeNodeSlotOptions, TreeOptions, TreeSearchResult, ValueOptions, WrapperEvents, WrapperOptions };
|