snail.vue 2.0.15 → 2.0.17
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 +320 -37
- package/dist/snail.vue.js +621 -266
- package/dist/snail.vue.umd.js +618 -263
- package/dist/styles/snail.vue.vue.css +34 -28
- package/package.json +2 -2
package/dist/snail.vue.d.ts
CHANGED
|
@@ -1204,6 +1204,232 @@ type FoldEvents = {
|
|
|
1204
1204
|
change: [status: FoldStatus];
|
|
1205
1205
|
};
|
|
1206
1206
|
|
|
1207
|
+
/**
|
|
1208
|
+
* 弹性布局组件配置选项
|
|
1209
|
+
*/
|
|
1210
|
+
type FlexOptions = {
|
|
1211
|
+
/**
|
|
1212
|
+
* 主轴方向
|
|
1213
|
+
* - css属性:flex-direction
|
|
1214
|
+
* - 取值范围:
|
|
1215
|
+
* - - row(默认值) 水平主轴,起点在左端
|
|
1216
|
+
* - - row-reverse 水平主轴,起点在右端
|
|
1217
|
+
* - - column 垂直主轴,起点在上沿
|
|
1218
|
+
* - - column-reverse 垂直主轴,起点在下沿
|
|
1219
|
+
*/
|
|
1220
|
+
direction?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
1221
|
+
/**
|
|
1222
|
+
* 是否换行
|
|
1223
|
+
* - css属性:flex-wrap
|
|
1224
|
+
* - 取值范围:
|
|
1225
|
+
* - - nowrap(默认值) 不换行,所有 flex 项都排在一行
|
|
1226
|
+
* - - wrap 换行,第一行在上方
|
|
1227
|
+
* - - wrap-reverse 换行,第一行在下方
|
|
1228
|
+
*/
|
|
1229
|
+
wrap?: "nowrap" | "wrap" | "wrap-reverse";
|
|
1230
|
+
/**
|
|
1231
|
+
* 行与列之间的间隙(网格间距)
|
|
1232
|
+
* - css属性:gap
|
|
1233
|
+
* - row-gap、column-gap的缩写
|
|
1234
|
+
* - 举例:gap: "10px 20px" 表示行间距为10px,列间距为20px;gap: "10px" 表示行间距和列间距都为10px
|
|
1235
|
+
*/
|
|
1236
|
+
gap?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* 主轴对齐方式
|
|
1239
|
+
* - css属性:justify-content
|
|
1240
|
+
* - 取值范围:
|
|
1241
|
+
* - - start(默认值) 主轴起点对齐
|
|
1242
|
+
* - - end 主轴终点对齐
|
|
1243
|
+
* - - center 主轴居中对齐
|
|
1244
|
+
* - - space-between 主轴两端对齐,项目之间间隔平均分布
|
|
1245
|
+
* - - space-around 主轴每个项目两侧间隔平均分布
|
|
1246
|
+
* - - space-evenly 主轴每个项目之间间隔平均分布
|
|
1247
|
+
*/
|
|
1248
|
+
justifyContent?: "start" | "end" | "center" | "space-between" | "space-around" | "space-evenly";
|
|
1249
|
+
/**
|
|
1250
|
+
* 交叉轴对齐方式
|
|
1251
|
+
* - css属性:align-items
|
|
1252
|
+
* - 取值范围:
|
|
1253
|
+
* - - stretch(默认值) 交叉轴拉伸对齐(如果项目未设置高度或设为 auto,将占满整个交叉轴)
|
|
1254
|
+
* - - start 交叉轴起点对齐
|
|
1255
|
+
* - - end 交叉轴终点对齐
|
|
1256
|
+
* - - center 交叉轴居中对齐
|
|
1257
|
+
* - - baseline 交叉轴第一行文字基线对齐
|
|
1258
|
+
*/
|
|
1259
|
+
alignItems?: "start" | "end" | "center" | "stretch" | "baseline";
|
|
1260
|
+
/**
|
|
1261
|
+
* 多行时的交叉轴对齐方式
|
|
1262
|
+
* - css属性:align-content
|
|
1263
|
+
* - 取值范围:
|
|
1264
|
+
* - - stretch(默认值) 交叉轴拉伸对齐(如果项目未设置高度或设为 auto,将占满整个交叉轴)
|
|
1265
|
+
* - - start 交叉轴起点对齐
|
|
1266
|
+
* - - end 交叉轴终点对齐
|
|
1267
|
+
* - - center 交叉轴居中对齐
|
|
1268
|
+
* - - space-between 交叉轴两端对齐,行之间间隔平均分布
|
|
1269
|
+
* - - space-around 交叉轴每行两侧间隔平均分布
|
|
1270
|
+
* - - space-evenly 交叉轴每行之间间隔平均分布
|
|
1271
|
+
*/
|
|
1272
|
+
alignContent?: "start" | "end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
|
|
1273
|
+
/**
|
|
1274
|
+
* 启用子项修复
|
|
1275
|
+
* - 在`justify-content`启用`space-`相关属性时,子项之间会有间隔,当子项数量较少时,可能出现空间过大的问题,特别时多行的最后一样时
|
|
1276
|
+
* - 启动后,会基于子项数量补全最后一行缺失的子项数量,来修复空间过大的问题
|
|
1277
|
+
* - 推荐仅在所有子项主轴方向尺寸一样时,否则修复可能不准确
|
|
1278
|
+
*/
|
|
1279
|
+
repairItem?: boolean;
|
|
1280
|
+
/**
|
|
1281
|
+
* flex容器的子项数量
|
|
1282
|
+
* - 配合 `repairSpace` 构建修复空间的子项数量
|
|
1283
|
+
* - 当 `repairSpace` 启用时,自动监听子项数量变化来动态调整修复空间的子项数量;不启用时忽略
|
|
1284
|
+
*/
|
|
1285
|
+
itemCount?: number;
|
|
1286
|
+
/**
|
|
1287
|
+
* flex容器的子项标签名
|
|
1288
|
+
* - 配合 `repairSpace` 构建修复空间的子项元素标签名
|
|
1289
|
+
* - 默认值为`div`,即子项元素为`<div>`标签
|
|
1290
|
+
* - 可配置为其他标签名,如`span`,则子项元素为`<span>`标签
|
|
1291
|
+
*/
|
|
1292
|
+
itemTag?: string;
|
|
1293
|
+
/**
|
|
1294
|
+
* flex容器的子项类样式名
|
|
1295
|
+
* - 配合 `repairSpace` 构建修复空间的子项元素类样式名
|
|
1296
|
+
* - 推荐设置为一个固定值的类样式名,如`flex-item`,来方便用户通过该类样式名来设置子项元素的样式
|
|
1297
|
+
* - 构建的子项,会自动追加一个 "repair-item”的类样式名,来方便用户通过该类样式名来设置修复空间子项元素的样式
|
|
1298
|
+
*/
|
|
1299
|
+
itemClass?: string;
|
|
1300
|
+
};
|
|
1301
|
+
|
|
1302
|
+
/**
|
|
1303
|
+
* 弹性容器组件 配置选项
|
|
1304
|
+
*/
|
|
1305
|
+
type ElasticOptions = {
|
|
1306
|
+
/**
|
|
1307
|
+
* 支持滚动的方向
|
|
1308
|
+
* - x :支持水平方向滚动,内容超出时出横向滚动条
|
|
1309
|
+
* - y :支持垂直方向滚动,内容超出时出纵向滚动条
|
|
1310
|
+
* - both :支持水平和垂直方向滚动,内容超出时出横向纵向滚动条
|
|
1311
|
+
*/
|
|
1312
|
+
scroll: "x" | "y" | "both";
|
|
1313
|
+
/**
|
|
1314
|
+
* 滚动条弹簧效果
|
|
1315
|
+
* - x 仅在x轴方向上启用弹簧效果
|
|
1316
|
+
* - y 仅在y轴方向上启用弹簧效果
|
|
1317
|
+
* - both :同时启用x轴和y轴的弹簧效果
|
|
1318
|
+
*/
|
|
1319
|
+
spring?: "x" | "y" | "both";
|
|
1320
|
+
/**
|
|
1321
|
+
* 是否启用【下拉刷新】功能
|
|
1322
|
+
* - `spring` 为 `y/both`时生效
|
|
1323
|
+
* - 满足下拉刷新条件后,触发`refresh`事件,处理完成后调用resolve函数,通知完成刷新数据操作
|
|
1324
|
+
*/
|
|
1325
|
+
downRefresh?: boolean;
|
|
1326
|
+
/**
|
|
1327
|
+
* 是否启用【上拉加载】功能
|
|
1328
|
+
* - `spring` 为 `y/both`时生效
|
|
1329
|
+
* - 满足上拉加载条件后,触发`more`事件,处理完成后调用resolve函数,通知完成加载数据操作
|
|
1330
|
+
*/
|
|
1331
|
+
upMore?: boolean;
|
|
1332
|
+
/**
|
|
1333
|
+
* 滚动条尺寸
|
|
1334
|
+
* - normal :常规,10px
|
|
1335
|
+
* - small :小尺寸,宽度 6px
|
|
1336
|
+
* - mini :迷你尺寸,宽度 4px
|
|
1337
|
+
* - none :无,不显示滚动条,但仍然能够滚动
|
|
1338
|
+
*/
|
|
1339
|
+
barSize?: "normal" | "small" | "mini" | "none";
|
|
1340
|
+
};
|
|
1341
|
+
/**
|
|
1342
|
+
* 弹性容器组件 事件监听
|
|
1343
|
+
*/
|
|
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: [];
|
|
1371
|
+
/**
|
|
1372
|
+
* 刷新数据
|
|
1373
|
+
* - 配合 `downRefresh`实现下拉刷新功能
|
|
1374
|
+
* @param resolve 处理完成后调用resolve函数,通知完成刷新数据操作
|
|
1375
|
+
*/
|
|
1376
|
+
refresh: [resolve: () => void];
|
|
1377
|
+
/**
|
|
1378
|
+
* 加载更多
|
|
1379
|
+
* - 配合 `upMore`实现上拉加载功能
|
|
1380
|
+
* @param resolve 处理完成后调用resolve函数,通知完成加载数据操作
|
|
1381
|
+
*/
|
|
1382
|
+
more: [resolve: () => void];
|
|
1383
|
+
};
|
|
1384
|
+
/**
|
|
1385
|
+
* 弹性组件的滚动状态信息
|
|
1386
|
+
* - 缓存滚动状态 和下次做比对,触发对应事件
|
|
1387
|
+
*/
|
|
1388
|
+
type ElasticScrollStatus = {
|
|
1389
|
+
/**
|
|
1390
|
+
* 水平滚动条是否显示
|
|
1391
|
+
*/
|
|
1392
|
+
xbar: boolean;
|
|
1393
|
+
/**
|
|
1394
|
+
* 垂直滚动条是否显示
|
|
1395
|
+
*/
|
|
1396
|
+
ybar: boolean;
|
|
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;
|
|
1421
|
+
};
|
|
1422
|
+
/**
|
|
1423
|
+
* 弹性组件的弹簧状态信息
|
|
1424
|
+
*/
|
|
1425
|
+
type ElasticSpringStatus = {
|
|
1426
|
+
x: number | undefined;
|
|
1427
|
+
/**
|
|
1428
|
+
* y轴方向的橡皮筋效果偏移量
|
|
1429
|
+
*/
|
|
1430
|
+
y: number | undefined;
|
|
1431
|
+
};
|
|
1432
|
+
|
|
1207
1433
|
/**
|
|
1208
1434
|
* 选项菜单 基础配置选项
|
|
1209
1435
|
*/
|
|
@@ -1677,52 +1903,52 @@ type NumberEvents = ChangeEvents<number> & {
|
|
|
1677
1903
|
*/
|
|
1678
1904
|
type IconOptions = TitleOptions & {
|
|
1679
1905
|
/**
|
|
1680
|
-
*
|
|
1906
|
+
* 是否为自定义图标
|
|
1907
|
+
* - 为true时,外部通过插槽自己绘制图标
|
|
1908
|
+
* - 为false时,使用`type`值绘制对应的内置图标
|
|
1909
|
+
* - 默认false
|
|
1681
1910
|
*/
|
|
1682
|
-
|
|
1911
|
+
custom?: boolean;
|
|
1683
1912
|
/**
|
|
1684
|
-
*
|
|
1685
|
-
* -
|
|
1686
|
-
* - 为空则默认“0 0 1024 1024”
|
|
1913
|
+
* 内置的图标类型
|
|
1914
|
+
* - `custom`为false时生效
|
|
1687
1915
|
*/
|
|
1688
|
-
|
|
1689
|
-
/**
|
|
1690
|
-
* 图标颜色
|
|
1691
|
-
*/
|
|
1692
|
-
color?: string;
|
|
1693
|
-
/**
|
|
1694
|
-
* 鼠标移入时的图标颜色
|
|
1695
|
-
*/
|
|
1696
|
-
hoverColor?: string;
|
|
1916
|
+
type?: IconType;
|
|
1697
1917
|
/**
|
|
1698
|
-
*
|
|
1918
|
+
* 是否是按钮图标
|
|
1919
|
+
* - true时,鼠标移入时 cursor:pointer;
|
|
1699
1920
|
*/
|
|
1700
|
-
|
|
1921
|
+
button?: boolean;
|
|
1701
1922
|
/**
|
|
1702
|
-
*
|
|
1703
|
-
* -
|
|
1704
|
-
*
|
|
1923
|
+
* 图标大小
|
|
1924
|
+
* - 可指定对象,如 { width: 24, height: 24 },则图标大小为 24 * 24
|
|
1925
|
+
* - 可指定数字,如 24,则图标大小为 24 * 24
|
|
1926
|
+
* - 默认 24
|
|
1705
1927
|
*/
|
|
1706
|
-
|
|
1928
|
+
size?: number | {
|
|
1929
|
+
width?: number;
|
|
1930
|
+
height?: number;
|
|
1931
|
+
};
|
|
1707
1932
|
/**
|
|
1708
|
-
*
|
|
1709
|
-
* - 配合 stroke 使用,完成图标加粗效果等
|
|
1710
|
-
* @see https://developer.mozilla.org/zh-CN/docs/Web/SVG/Reference/Attribute/stroke-width
|
|
1933
|
+
* 图标颜色
|
|
1711
1934
|
*/
|
|
1712
|
-
|
|
1935
|
+
color?: string;
|
|
1713
1936
|
/**
|
|
1714
|
-
*
|
|
1715
|
-
* - 等效 svg-path的d属性
|
|
1716
|
-
* - 仅在type为 custom 时生效
|
|
1717
|
-
* - 若为数组,则表示多条绘制路径
|
|
1937
|
+
* 鼠标移入时的图标颜色
|
|
1718
1938
|
*/
|
|
1719
|
-
|
|
1939
|
+
hoverColor?: string;
|
|
1720
1940
|
/**
|
|
1721
1941
|
* 旋转角度
|
|
1722
1942
|
* - 默认0
|
|
1723
1943
|
* - 通过:transform: rotate(1.06); 实现
|
|
1724
1944
|
*/
|
|
1725
1945
|
rotate?: number;
|
|
1946
|
+
/**
|
|
1947
|
+
* 图形伸展
|
|
1948
|
+
* - svg.viewBox 属性
|
|
1949
|
+
* - 为空则默认“0 0 1024 1024”
|
|
1950
|
+
*/
|
|
1951
|
+
viewBox?: string;
|
|
1726
1952
|
};
|
|
1727
1953
|
/**
|
|
1728
1954
|
* 图标类型
|
|
@@ -1744,9 +1970,8 @@ type IconOptions = TitleOptions & {
|
|
|
1744
1970
|
* - - plus 加号
|
|
1745
1971
|
* - - subtract 减号
|
|
1746
1972
|
* - - grip 紧握图标,垂直方向,一般用于拖动句柄
|
|
1747
|
-
* - - custom 自定义图标:此时IconOptions.draw属性传入绘制路径
|
|
1748
1973
|
*/
|
|
1749
|
-
type IconType = "success" | "error" | "warn" | "close" | "trash" | "download" | "print" | "edit" | "arrow" | "datepicker" | "timepicker" | "plus" | "subtract" | "grip"
|
|
1974
|
+
type IconType = "success" | "error" | "warn" | "close" | "trash" | "download" | "print" | "edit" | "arrow" | "datepicker" | "timepicker" | "plus" | "subtract" | "grip";
|
|
1750
1975
|
|
|
1751
1976
|
/**
|
|
1752
1977
|
* 检查选项 数据结构
|
|
@@ -2042,12 +2267,11 @@ declare function triggerAppCreated(app: App, type?: AppType): App;
|
|
|
2042
2267
|
*/
|
|
2043
2268
|
|
|
2044
2269
|
/**
|
|
2045
|
-
*
|
|
2270
|
+
* 获取内置图标绘制路径
|
|
2046
2271
|
* @param iconType 图标类型
|
|
2047
|
-
* @param draw 绘制路径;自定义时生效
|
|
2048
2272
|
* @returns 图标路径
|
|
2049
2273
|
*/
|
|
2050
|
-
declare function
|
|
2274
|
+
declare function getBuiltinIcon(iconType: IconType): string[];
|
|
2051
2275
|
|
|
2052
2276
|
/**
|
|
2053
2277
|
* 动态加载组件 组件配置选项
|
|
@@ -2682,7 +2906,23 @@ declare const components: {
|
|
|
2682
2906
|
default?: (props: {}) => any;
|
|
2683
2907
|
};
|
|
2684
2908
|
});
|
|
2685
|
-
Icon:
|
|
2909
|
+
Icon: {
|
|
2910
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<IconOptions> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, vue.PublicProps, {}, true, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
2911
|
+
P: {};
|
|
2912
|
+
B: {};
|
|
2913
|
+
D: {};
|
|
2914
|
+
C: {};
|
|
2915
|
+
M: {};
|
|
2916
|
+
Defaults: {};
|
|
2917
|
+
}, Readonly<IconOptions> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
2918
|
+
__isFragment?: never;
|
|
2919
|
+
__isTeleport?: never;
|
|
2920
|
+
__isSuspense?: never;
|
|
2921
|
+
} & vue.ComponentOptionsBase<Readonly<IconOptions> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
2922
|
+
$slots: {
|
|
2923
|
+
default?: (props: {}) => any;
|
|
2924
|
+
};
|
|
2925
|
+
});
|
|
2686
2926
|
Input: vue.DefineComponent<ReadonlyOptions & PlaceholderOptions & TitleOptions & {
|
|
2687
2927
|
type?: "text" | "number" | "password";
|
|
2688
2928
|
required?: boolean;
|
|
@@ -2819,6 +3059,44 @@ declare const components: {
|
|
|
2819
3059
|
[x: number]: (props: any) => any;
|
|
2820
3060
|
};
|
|
2821
3061
|
});
|
|
3062
|
+
Elastic: {
|
|
3063
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<ElasticOptions> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
3064
|
+
P: {};
|
|
3065
|
+
B: {};
|
|
3066
|
+
D: {};
|
|
3067
|
+
C: {};
|
|
3068
|
+
M: {};
|
|
3069
|
+
Defaults: {};
|
|
3070
|
+
}, Readonly<ElasticOptions> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
3071
|
+
__isFragment?: never;
|
|
3072
|
+
__isTeleport?: never;
|
|
3073
|
+
__isSuspense?: never;
|
|
3074
|
+
} & vue.ComponentOptionsBase<Readonly<ElasticOptions> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
3075
|
+
$slots: {
|
|
3076
|
+
'down-refresh'?: (props: {}) => any;
|
|
3077
|
+
} & {
|
|
3078
|
+
default?: (props: {}) => any;
|
|
3079
|
+
} & {
|
|
3080
|
+
'up-more'?: (props: {}) => any;
|
|
3081
|
+
};
|
|
3082
|
+
});
|
|
3083
|
+
Flex: {
|
|
3084
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<FlexOptions> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, vue.PublicProps, {}, true, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
3085
|
+
P: {};
|
|
3086
|
+
B: {};
|
|
3087
|
+
D: {};
|
|
3088
|
+
C: {};
|
|
3089
|
+
M: {};
|
|
3090
|
+
Defaults: {};
|
|
3091
|
+
}, Readonly<FlexOptions> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
3092
|
+
__isFragment?: never;
|
|
3093
|
+
__isTeleport?: never;
|
|
3094
|
+
__isSuspense?: never;
|
|
3095
|
+
} & vue.ComponentOptionsBase<Readonly<FlexOptions> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
3096
|
+
$slots: {
|
|
3097
|
+
default?: (props: {}) => any;
|
|
3098
|
+
};
|
|
3099
|
+
});
|
|
2822
3100
|
Fold: {
|
|
2823
3101
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<Readonly<DisabledOptions & TitleOptions & {
|
|
2824
3102
|
subtitle?: string;
|
|
@@ -3189,6 +3467,11 @@ declare const components: {
|
|
|
3189
3467
|
default?: (props: {}) => any;
|
|
3190
3468
|
};
|
|
3191
3469
|
});
|
|
3470
|
+
FlashNumber: vue.DefineComponent<{
|
|
3471
|
+
value?: string | number;
|
|
3472
|
+
}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{
|
|
3473
|
+
value?: string | number;
|
|
3474
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
3192
3475
|
DatePicker: vue.DefineComponent<ReadonlyOptions & {
|
|
3193
3476
|
value?: string;
|
|
3194
3477
|
format?: snail_core.DateFormat;
|
|
@@ -3264,5 +3547,5 @@ declare const components: {
|
|
|
3264
3547
|
});
|
|
3265
3548
|
};
|
|
3266
3549
|
|
|
3267
|
-
export { MOTION, components,
|
|
3268
|
-
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, EmitterType, EmptyOptions, EventsType, 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, ScrollOptions, ScrollStatus, 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 };
|
|
3550
|
+
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, ElasticOptions, ElasticScrollStatus, 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, ScrollOptions, ScrollStatus, 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 };
|