snail.vue 2.0.18 → 2.0.20
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 +112 -153
- package/dist/snail.vue.js +291 -296
- package/dist/snail.vue.umd.js +289 -294
- package/dist/styles/snail.vue.vue.css +23 -23
- package/package.json +2 -2
package/dist/snail.vue.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as snail_core from 'snail.core';
|
|
2
2
|
import { DateFormat, DateValue, TimeValue, IScope, RunResult, IAsyncScope } from 'snail.core';
|
|
3
3
|
import * as snail_view from 'snail.view';
|
|
4
|
-
import { BaseStyle, HeightStyle, FlexBoxStyle, WidthStyle, BorderStyle, PaddingStyle, MarginStyle } from 'snail.view';
|
|
4
|
+
import { ScrollbarOptions, ScrollStatus, BaseStyle, HeightStyle, FlexBoxStyle, WidthStyle, BorderStyle, PaddingStyle, MarginStyle } from 'snail.view';
|
|
5
5
|
import * as vue from 'vue';
|
|
6
6
|
import { Component, ShallowRef, Ref, WatchSource, App } from 'vue';
|
|
7
7
|
|
|
@@ -380,27 +380,29 @@ type FooterEvents = {
|
|
|
380
380
|
/**
|
|
381
381
|
* 滚动视图配置选项
|
|
382
382
|
*/
|
|
383
|
-
type ScrollOptions = {
|
|
383
|
+
type ScrollOptions = ScrollbarOptions & {};
|
|
384
|
+
/**
|
|
385
|
+
* 滚动视图对外暴露方法
|
|
386
|
+
*/
|
|
387
|
+
type ScrollExpose = {
|
|
384
388
|
/**
|
|
385
|
-
*
|
|
386
|
-
*
|
|
387
|
-
* - true 支持滚动
|
|
389
|
+
* 获取滚动状态信息
|
|
390
|
+
* @returns
|
|
388
391
|
*/
|
|
389
|
-
|
|
392
|
+
getStatus(): ScrollStatus;
|
|
390
393
|
/**
|
|
391
|
-
*
|
|
392
|
-
* -
|
|
393
|
-
*
|
|
394
|
+
* 进行滚动操作
|
|
395
|
+
* - 在当前的滚动条位置基础上,滚动指定单位
|
|
396
|
+
* @param left 水平滚动单位;null、undefined 表示水平不滚动;小于0向左滚动;大于0向右滚动
|
|
397
|
+
* @param top 垂直滚动单位;null、undefined 表示垂直不滚动;小于0向上滚动;大于0向下滚动
|
|
394
398
|
*/
|
|
395
|
-
|
|
399
|
+
scroll(left?: number, top?: number): void;
|
|
396
400
|
/**
|
|
397
|
-
*
|
|
398
|
-
*
|
|
399
|
-
*
|
|
400
|
-
* - mini :迷你尺寸,宽度 4px
|
|
401
|
-
* - none :无,不显示滚动条,但仍然能够滚动
|
|
401
|
+
* 滚动到指定位置
|
|
402
|
+
* @param left 水平滚动条位置;null、undefined 表示水平不滚动
|
|
403
|
+
* @param top 垂直滚动条位置;null、undefined 表示垂直不滚动
|
|
402
404
|
*/
|
|
403
|
-
|
|
405
|
+
scrollTo(left?: number, top?: number): void;
|
|
404
406
|
};
|
|
405
407
|
/**
|
|
406
408
|
* 滚动视图事件
|
|
@@ -433,44 +435,6 @@ type ScrollEvents = {
|
|
|
433
435
|
*/
|
|
434
436
|
bottom: [];
|
|
435
437
|
};
|
|
436
|
-
/**
|
|
437
|
-
* 滚动视图状态
|
|
438
|
-
* - 缓存起来 和下次滚动做比对,触发对应事件
|
|
439
|
-
*/
|
|
440
|
-
type ScrollStatus = {
|
|
441
|
-
/**
|
|
442
|
-
* 水平滚动条是否显示
|
|
443
|
-
*/
|
|
444
|
-
xbar: boolean;
|
|
445
|
-
/**
|
|
446
|
-
* 垂直滚动条是否显示
|
|
447
|
-
*/
|
|
448
|
-
ybar: boolean;
|
|
449
|
-
/**
|
|
450
|
-
* 滚动到【左侧】了
|
|
451
|
-
*/
|
|
452
|
-
left: boolean;
|
|
453
|
-
/**
|
|
454
|
-
* 滚动到【右侧】了
|
|
455
|
-
*/
|
|
456
|
-
right: boolean;
|
|
457
|
-
/**
|
|
458
|
-
* 滚动到【顶部】了
|
|
459
|
-
*/
|
|
460
|
-
top: boolean;
|
|
461
|
-
/**
|
|
462
|
-
* 滚动到【底部】了
|
|
463
|
-
*/
|
|
464
|
-
bottom: boolean;
|
|
465
|
-
/**
|
|
466
|
-
* 滚动视图宽度
|
|
467
|
-
*/
|
|
468
|
-
scrollwidth: number;
|
|
469
|
-
/**
|
|
470
|
-
* 滚动视图高度
|
|
471
|
-
*/
|
|
472
|
-
scrollheight: number;
|
|
473
|
-
};
|
|
474
438
|
|
|
475
439
|
/**
|
|
476
440
|
* 包裹组件 相关实体
|
|
@@ -784,7 +748,7 @@ type TreeNodeSlotOptions<Node> = {
|
|
|
784
748
|
/**
|
|
785
749
|
* Table配置选项
|
|
786
750
|
*/
|
|
787
|
-
type TableOptions = ScrollOptions & {
|
|
751
|
+
type TableOptions = Pick<ScrollOptions, "scroll" | "barSize"> & {
|
|
788
752
|
/**
|
|
789
753
|
* 是否启用表格边框
|
|
790
754
|
*/
|
|
@@ -1241,11 +1205,11 @@ type FlexOptions = {
|
|
|
1241
1205
|
* - - start(默认值) 主轴起点对齐
|
|
1242
1206
|
* - - end 主轴终点对齐
|
|
1243
1207
|
* - - center 主轴居中对齐
|
|
1244
|
-
* - -
|
|
1245
|
-
* - -
|
|
1246
|
-
* - -
|
|
1208
|
+
* - - between 主轴两端对齐,项目之间间隔平均分布
|
|
1209
|
+
* - - around 主轴每个项目两侧间隔平均分布
|
|
1210
|
+
* - - evenly 主轴每个项目之间间隔平均分布
|
|
1247
1211
|
*/
|
|
1248
|
-
|
|
1212
|
+
main?: "start" | "end" | "center" | "between" | "around" | "evenly";
|
|
1249
1213
|
/**
|
|
1250
1214
|
* 交叉轴对齐方式
|
|
1251
1215
|
* - css属性:align-items
|
|
@@ -1256,7 +1220,7 @@ type FlexOptions = {
|
|
|
1256
1220
|
* - - center 交叉轴居中对齐
|
|
1257
1221
|
* - - baseline 交叉轴第一行文字基线对齐
|
|
1258
1222
|
*/
|
|
1259
|
-
|
|
1223
|
+
cross?: "start" | "end" | "center" | "stretch" | "baseline";
|
|
1260
1224
|
/**
|
|
1261
1225
|
* 多行时的交叉轴对齐方式
|
|
1262
1226
|
* - css属性:align-content
|
|
@@ -1265,11 +1229,11 @@ type FlexOptions = {
|
|
|
1265
1229
|
* - - start 交叉轴起点对齐
|
|
1266
1230
|
* - - end 交叉轴终点对齐
|
|
1267
1231
|
* - - center 交叉轴居中对齐
|
|
1268
|
-
* - -
|
|
1269
|
-
* - -
|
|
1270
|
-
* - -
|
|
1232
|
+
* - - between 交叉轴两端对齐,行之间间隔平均分布
|
|
1233
|
+
* - - around 交叉轴每行两侧间隔平均分布
|
|
1234
|
+
* - - evenly 交叉轴每行之间间隔平均分布
|
|
1271
1235
|
*/
|
|
1272
|
-
|
|
1236
|
+
content?: "start" | "end" | "center" | "stretch" | "between" | "around" | "evenly";
|
|
1273
1237
|
/**
|
|
1274
1238
|
* 启用子项修复
|
|
1275
1239
|
* - 在`justify-content`启用`space-`相关属性时,子项之间会有间隔,当子项数量较少时,可能出现空间过大的问题,特别时多行的最后一样时
|
|
@@ -1302,14 +1266,7 @@ type FlexOptions = {
|
|
|
1302
1266
|
/**
|
|
1303
1267
|
* 弹性容器组件 配置选项
|
|
1304
1268
|
*/
|
|
1305
|
-
type ElasticOptions = {
|
|
1306
|
-
/**
|
|
1307
|
-
* 支持滚动的方向
|
|
1308
|
-
* - x :支持水平方向滚动,内容超出时出横向滚动条
|
|
1309
|
-
* - y :支持垂直方向滚动,内容超出时出纵向滚动条
|
|
1310
|
-
* - both :支持水平和垂直方向滚动,内容超出时出横向纵向滚动条
|
|
1311
|
-
*/
|
|
1312
|
-
scroll: "x" | "y" | "both";
|
|
1269
|
+
type ElasticOptions = ScrollOptions & {
|
|
1313
1270
|
/**
|
|
1314
1271
|
* 滚动条弹簧效果
|
|
1315
1272
|
* - x 仅在x轴方向上启用弹簧效果
|
|
@@ -1329,45 +1286,11 @@ type ElasticOptions = {
|
|
|
1329
1286
|
* - 满足上拉加载条件后,触发`more`事件,处理完成后调用resolve函数,通知完成加载数据操作
|
|
1330
1287
|
*/
|
|
1331
1288
|
upMore?: boolean;
|
|
1332
|
-
/**
|
|
1333
|
-
* 滚动条尺寸
|
|
1334
|
-
* - normal :常规,10px
|
|
1335
|
-
* - small :小尺寸,宽度 6px
|
|
1336
|
-
* - mini :迷你尺寸,宽度 4px
|
|
1337
|
-
* - none :无,不显示滚动条,但仍然能够滚动
|
|
1338
|
-
*/
|
|
1339
|
-
barSize?: "normal" | "small" | "mini" | "none";
|
|
1340
1289
|
};
|
|
1341
1290
|
/**
|
|
1342
1291
|
* 弹性容器组件 事件监听
|
|
1343
1292
|
*/
|
|
1344
|
-
type ElasticEvents = {
|
|
1345
|
-
/**
|
|
1346
|
-
* 【x轴方向】滚动条变化时
|
|
1347
|
-
* @param show 是否显示。true 滚动条显示;false 滚动条隐藏
|
|
1348
|
-
*/
|
|
1349
|
-
xbar: [show: boolean];
|
|
1350
|
-
/**
|
|
1351
|
-
* 【y轴方向】滚动条变化时
|
|
1352
|
-
* @param show 是否显示。true 滚动条显示;false 滚动条隐藏
|
|
1353
|
-
*/
|
|
1354
|
-
ybar: [show: boolean];
|
|
1355
|
-
/**
|
|
1356
|
-
* 【y轴方向】滚到【最顶部】了
|
|
1357
|
-
*/
|
|
1358
|
-
top: [];
|
|
1359
|
-
/**
|
|
1360
|
-
* 【x轴方向】滚到【最右侧】了
|
|
1361
|
-
*/
|
|
1362
|
-
right: [];
|
|
1363
|
-
/**
|
|
1364
|
-
* 【y轴方向】滚到【最底部】了
|
|
1365
|
-
*/
|
|
1366
|
-
bottom: [];
|
|
1367
|
-
/**
|
|
1368
|
-
* 【x轴方向】滚到【最左侧】了
|
|
1369
|
-
*/
|
|
1370
|
-
left: [];
|
|
1293
|
+
type ElasticEvents = ScrollEvents & {
|
|
1371
1294
|
/**
|
|
1372
1295
|
* 刷新数据
|
|
1373
1296
|
* - 配合 `downRefresh`实现下拉刷新功能
|
|
@@ -1382,42 +1305,21 @@ type ElasticEvents = {
|
|
|
1382
1305
|
more: [resolve: () => void];
|
|
1383
1306
|
};
|
|
1384
1307
|
/**
|
|
1385
|
-
*
|
|
1386
|
-
* - 缓存滚动状态 和下次做比对,触发对应事件
|
|
1308
|
+
* 弹性组件 对外暴露属性接口
|
|
1387
1309
|
*/
|
|
1388
|
-
type
|
|
1310
|
+
type ElasticExpose = {
|
|
1389
1311
|
/**
|
|
1390
|
-
*
|
|
1312
|
+
* 加载刷新数据
|
|
1313
|
+
* - 触发下拉刷新数据
|
|
1314
|
+
* @returns 异步任务对象,外部感知任务执行完成
|
|
1391
1315
|
*/
|
|
1392
|
-
|
|
1316
|
+
loadRefresh(): Promise<void>;
|
|
1393
1317
|
/**
|
|
1394
|
-
*
|
|
1318
|
+
* 加载更多数据
|
|
1319
|
+
* - 触发上拉加载更多数据
|
|
1320
|
+
* @returns 异步任务对象,外部感知任务执行完成
|
|
1395
1321
|
*/
|
|
1396
|
-
|
|
1397
|
-
/**
|
|
1398
|
-
* 滚动到【左侧】了
|
|
1399
|
-
*/
|
|
1400
|
-
left: boolean;
|
|
1401
|
-
/**
|
|
1402
|
-
* 滚动到【右侧】了
|
|
1403
|
-
*/
|
|
1404
|
-
right: boolean;
|
|
1405
|
-
/**
|
|
1406
|
-
* 滚动到【顶部】了
|
|
1407
|
-
*/
|
|
1408
|
-
top: boolean;
|
|
1409
|
-
/**
|
|
1410
|
-
* 滚动到【底部】了
|
|
1411
|
-
*/
|
|
1412
|
-
bottom: boolean;
|
|
1413
|
-
/**
|
|
1414
|
-
* 滚动视图宽度
|
|
1415
|
-
*/
|
|
1416
|
-
scrollwidth: number;
|
|
1417
|
-
/**
|
|
1418
|
-
* 滚动视图高度
|
|
1419
|
-
*/
|
|
1420
|
-
scrollheight: number;
|
|
1322
|
+
loadMore(): Promise<void>;
|
|
1421
1323
|
};
|
|
1422
1324
|
/**
|
|
1423
1325
|
* 弹性组件的弹簧状态信息
|
|
@@ -3060,18 +2962,72 @@ declare const components: {
|
|
|
3060
2962
|
};
|
|
3061
2963
|
});
|
|
3062
2964
|
Elastic: {
|
|
3063
|
-
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<ElasticOptions> & Readonly<{
|
|
2965
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<ElasticOptions> & Readonly<{
|
|
2966
|
+
onLeft?: () => any;
|
|
2967
|
+
onRight?: () => any;
|
|
2968
|
+
onTop?: () => any;
|
|
2969
|
+
onBottom?: () => any;
|
|
2970
|
+
onXbar?: (show: boolean) => any;
|
|
2971
|
+
onYbar?: (show: boolean) => any;
|
|
2972
|
+
onRefresh?: (resolve: () => void) => any;
|
|
2973
|
+
onMore?: (resolve: () => void) => any;
|
|
2974
|
+
}>, {
|
|
2975
|
+
loadRefresh(): Promise<void>;
|
|
2976
|
+
loadMore(): Promise<void>;
|
|
2977
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2978
|
+
left: () => any;
|
|
2979
|
+
right: () => any;
|
|
2980
|
+
top: () => any;
|
|
2981
|
+
bottom: () => any;
|
|
2982
|
+
xbar: (show: boolean) => any;
|
|
2983
|
+
ybar: (show: boolean) => any;
|
|
2984
|
+
refresh: (resolve: () => void) => any;
|
|
2985
|
+
more: (resolve: () => void) => any;
|
|
2986
|
+
}, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
3064
2987
|
P: {};
|
|
3065
2988
|
B: {};
|
|
3066
2989
|
D: {};
|
|
3067
2990
|
C: {};
|
|
3068
2991
|
M: {};
|
|
3069
2992
|
Defaults: {};
|
|
3070
|
-
}, Readonly<ElasticOptions> & Readonly<{
|
|
2993
|
+
}, Readonly<ElasticOptions> & Readonly<{
|
|
2994
|
+
onLeft?: () => any;
|
|
2995
|
+
onRight?: () => any;
|
|
2996
|
+
onTop?: () => any;
|
|
2997
|
+
onBottom?: () => any;
|
|
2998
|
+
onXbar?: (show: boolean) => any;
|
|
2999
|
+
onYbar?: (show: boolean) => any;
|
|
3000
|
+
onRefresh?: (resolve: () => void) => any;
|
|
3001
|
+
onMore?: (resolve: () => void) => any;
|
|
3002
|
+
}>, {
|
|
3003
|
+
loadRefresh(): Promise<void>;
|
|
3004
|
+
loadMore(): Promise<void>;
|
|
3005
|
+
}, {}, {}, {}, {}>;
|
|
3071
3006
|
__isFragment?: never;
|
|
3072
3007
|
__isTeleport?: never;
|
|
3073
3008
|
__isSuspense?: never;
|
|
3074
|
-
} & vue.ComponentOptionsBase<Readonly<ElasticOptions> & Readonly<{
|
|
3009
|
+
} & vue.ComponentOptionsBase<Readonly<ElasticOptions> & Readonly<{
|
|
3010
|
+
onLeft?: () => any;
|
|
3011
|
+
onRight?: () => any;
|
|
3012
|
+
onTop?: () => any;
|
|
3013
|
+
onBottom?: () => any;
|
|
3014
|
+
onXbar?: (show: boolean) => any;
|
|
3015
|
+
onYbar?: (show: boolean) => any;
|
|
3016
|
+
onRefresh?: (resolve: () => void) => any;
|
|
3017
|
+
onMore?: (resolve: () => void) => any;
|
|
3018
|
+
}>, {
|
|
3019
|
+
loadRefresh(): Promise<void>;
|
|
3020
|
+
loadMore(): Promise<void>;
|
|
3021
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3022
|
+
left: () => any;
|
|
3023
|
+
right: () => any;
|
|
3024
|
+
top: () => any;
|
|
3025
|
+
bottom: () => any;
|
|
3026
|
+
xbar: (show: boolean) => any;
|
|
3027
|
+
ybar: (show: boolean) => any;
|
|
3028
|
+
refresh: (resolve: () => void) => any;
|
|
3029
|
+
more: (resolve: () => void) => any;
|
|
3030
|
+
}, string, {}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
3075
3031
|
$slots: {
|
|
3076
3032
|
'down-refresh'?: (props: {}) => any;
|
|
3077
3033
|
} & {
|
|
@@ -3176,7 +3132,7 @@ declare const components: {
|
|
|
3176
3132
|
$slots: SlotsType<Pick<LayoutOptions, "left" | "right" | "main" | "top" | "bottom">>;
|
|
3177
3133
|
});
|
|
3178
3134
|
Scroll: {
|
|
3179
|
-
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<
|
|
3135
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<snail_view.ScrollbarOptions> & Readonly<{
|
|
3180
3136
|
onLeft?: () => any;
|
|
3181
3137
|
onRight?: () => any;
|
|
3182
3138
|
onTop?: () => any;
|
|
@@ -3184,8 +3140,9 @@ declare const components: {
|
|
|
3184
3140
|
onXbar?: (show: boolean) => any;
|
|
3185
3141
|
onYbar?: (show: boolean) => any;
|
|
3186
3142
|
}>, {
|
|
3187
|
-
|
|
3188
|
-
|
|
3143
|
+
getStatus(): snail_view.ScrollStatus;
|
|
3144
|
+
scroll(left?: number, top?: number): void;
|
|
3145
|
+
scrollTo(left?: number, top?: number): void;
|
|
3189
3146
|
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3190
3147
|
left: () => any;
|
|
3191
3148
|
right: () => any;
|
|
@@ -3193,14 +3150,14 @@ declare const components: {
|
|
|
3193
3150
|
bottom: () => any;
|
|
3194
3151
|
xbar: (show: boolean) => any;
|
|
3195
3152
|
ybar: (show: boolean) => any;
|
|
3196
|
-
}, vue.PublicProps, {},
|
|
3153
|
+
}, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
3197
3154
|
P: {};
|
|
3198
3155
|
B: {};
|
|
3199
3156
|
D: {};
|
|
3200
3157
|
C: {};
|
|
3201
3158
|
M: {};
|
|
3202
3159
|
Defaults: {};
|
|
3203
|
-
}, Readonly<
|
|
3160
|
+
}, Readonly<snail_view.ScrollbarOptions> & Readonly<{
|
|
3204
3161
|
onLeft?: () => any;
|
|
3205
3162
|
onRight?: () => any;
|
|
3206
3163
|
onTop?: () => any;
|
|
@@ -3208,13 +3165,14 @@ declare const components: {
|
|
|
3208
3165
|
onXbar?: (show: boolean) => any;
|
|
3209
3166
|
onYbar?: (show: boolean) => any;
|
|
3210
3167
|
}>, {
|
|
3211
|
-
|
|
3212
|
-
|
|
3168
|
+
getStatus(): snail_view.ScrollStatus;
|
|
3169
|
+
scroll(left?: number, top?: number): void;
|
|
3170
|
+
scrollTo(left?: number, top?: number): void;
|
|
3213
3171
|
}, {}, {}, {}, {}>;
|
|
3214
3172
|
__isFragment?: never;
|
|
3215
3173
|
__isTeleport?: never;
|
|
3216
3174
|
__isSuspense?: never;
|
|
3217
|
-
} & vue.ComponentOptionsBase<Readonly<
|
|
3175
|
+
} & vue.ComponentOptionsBase<Readonly<snail_view.ScrollbarOptions> & Readonly<{
|
|
3218
3176
|
onLeft?: () => any;
|
|
3219
3177
|
onRight?: () => any;
|
|
3220
3178
|
onTop?: () => any;
|
|
@@ -3222,8 +3180,9 @@ declare const components: {
|
|
|
3222
3180
|
onXbar?: (show: boolean) => any;
|
|
3223
3181
|
onYbar?: (show: boolean) => any;
|
|
3224
3182
|
}>, {
|
|
3225
|
-
|
|
3226
|
-
|
|
3183
|
+
getStatus(): snail_view.ScrollStatus;
|
|
3184
|
+
scroll(left?: number, top?: number): void;
|
|
3185
|
+
scrollTo(left?: number, top?: number): void;
|
|
3227
3186
|
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3228
3187
|
left: () => any;
|
|
3229
3188
|
right: () => any;
|
|
@@ -3322,7 +3281,7 @@ declare const components: {
|
|
|
3322
3281
|
};
|
|
3323
3282
|
});
|
|
3324
3283
|
Table: {
|
|
3325
|
-
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<TableOptions> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, vue.PublicProps, {},
|
|
3284
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<TableOptions> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
3326
3285
|
P: {};
|
|
3327
3286
|
B: {};
|
|
3328
3287
|
D: {};
|
|
@@ -3548,4 +3507,4 @@ declare const components: {
|
|
|
3548
3507
|
};
|
|
3549
3508
|
|
|
3550
3509
|
export { MOTION, components, getBuiltinIcon, mount, onAppCreated, triggerAppCreated, usePicker, usePopup, useReactive, useTreeContext };
|
|
3551
|
-
export type { ButtonOptions, ChangeEvents, ChooseEvents, ChooseItem, ChooseOptions, ClickEvents, CloseEvents, ComponentBindOptions, ComponentOptions, ConfirmAreaOptions, ConfirmOptions, DatePickerDayItem, DatePickerMonthItem, DatePickerOptions, DatePickerYearItem, DatetimeDisabledOptions, DatetimePickerEvents, DeleteEvents, DialogHandle, DialogOptions, DisabledOptions, DragVerifyInfo, DragVerifyOptions, ElasticEvents,
|
|
3510
|
+
export type { ButtonOptions, ChangeEvents, ChooseEvents, ChooseItem, ChooseOptions, ClickEvents, CloseEvents, ComponentBindOptions, ComponentOptions, ConfirmAreaOptions, ConfirmOptions, DatePickerDayItem, DatePickerMonthItem, DatePickerOptions, DatePickerYearItem, DatetimeDisabledOptions, DatetimePickerEvents, DeleteEvents, DialogHandle, DialogOptions, DisabledOptions, DragVerifyInfo, DragVerifyOptions, ElasticEvents, ElasticExpose, ElasticOptions, ElasticSpringStatus, EmitterType, EmptyOptions, EventsType, FlexOptions, FoldEvents, FoldOptions, 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, 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 };
|