@varlet/ui 2.14.2 → 2.14.3-alpha.1692871861882
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/es/checkbox/Checkbox.mjs +23 -19
- package/es/checkbox/props.mjs +6 -1
- package/es/drag/Drag.mjs +20 -27
- package/es/image-preview/ImagePreview.mjs +49 -66
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/option/Option.mjs +18 -4
- package/es/radio/Radio.mjs +5 -11
- package/es/swipe/Swipe.mjs +51 -65
- package/es/varlet.esm.js +6421 -6383
- package/highlight/web-types.en-US.json +17 -4
- package/highlight/web-types.zh-CN.json +15 -2
- package/lib/varlet.cjs.js +250 -184
- package/package.json +6 -6
- package/types/checkbox.d.ts +3 -0
- package/umd/varlet.js +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
|
-
"version": "2.14.
|
|
4
|
+
"version": "2.14.3-alpha.1692871861882",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -1229,6 +1229,15 @@
|
|
|
1229
1229
|
"kind": "expression"
|
|
1230
1230
|
}
|
|
1231
1231
|
},
|
|
1232
|
+
{
|
|
1233
|
+
"name": "disabled",
|
|
1234
|
+
"description": "Whether the disabled",
|
|
1235
|
+
"default": "false",
|
|
1236
|
+
"value": {
|
|
1237
|
+
"type": "boolean",
|
|
1238
|
+
"kind": "expression"
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
1232
1241
|
{
|
|
1233
1242
|
"name": "readonly",
|
|
1234
1243
|
"description": "Whether the readonly",
|
|
@@ -1239,8 +1248,8 @@
|
|
|
1239
1248
|
}
|
|
1240
1249
|
},
|
|
1241
1250
|
{
|
|
1242
|
-
"name": "
|
|
1243
|
-
"description": "Whether the
|
|
1251
|
+
"name": "indeterminate",
|
|
1252
|
+
"description": "Whether indeterminate status(style has the highest priority)",
|
|
1244
1253
|
"default": "false",
|
|
1245
1254
|
"value": {
|
|
1246
1255
|
"type": "boolean",
|
|
@@ -1285,6 +1294,10 @@
|
|
|
1285
1294
|
"name": "unchecked-icon",
|
|
1286
1295
|
"description": "Unchecked icon"
|
|
1287
1296
|
},
|
|
1297
|
+
{
|
|
1298
|
+
"name": "indeterminate-icon",
|
|
1299
|
+
"description": "Indeterminate icon"
|
|
1300
|
+
},
|
|
1288
1301
|
{
|
|
1289
1302
|
"name": "default",
|
|
1290
1303
|
"description": "Displayed text"
|
|
@@ -6574,7 +6587,7 @@
|
|
|
6574
6587
|
"description": "whether to show the tooltip",
|
|
6575
6588
|
"default": "false",
|
|
6576
6589
|
"value": {
|
|
6577
|
-
"type": "
|
|
6590
|
+
"type": "boolean",
|
|
6578
6591
|
"kind": "expression"
|
|
6579
6592
|
}
|
|
6580
6593
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
|
-
"version": "2.14.
|
|
4
|
+
"version": "2.14.3-alpha.1692871861882",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -1406,6 +1406,15 @@
|
|
|
1406
1406
|
"kind": "expression"
|
|
1407
1407
|
}
|
|
1408
1408
|
},
|
|
1409
|
+
{
|
|
1410
|
+
"name": "indeterminate",
|
|
1411
|
+
"description": "是否为不确定状态(样式优先级最高)",
|
|
1412
|
+
"default": "false",
|
|
1413
|
+
"value": {
|
|
1414
|
+
"type": "boolean",
|
|
1415
|
+
"kind": "expression"
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1409
1418
|
{
|
|
1410
1419
|
"name": "ripple",
|
|
1411
1420
|
"description": "是否开启水波纹",
|
|
@@ -1444,6 +1453,10 @@
|
|
|
1444
1453
|
"name": "unchecked-icon",
|
|
1445
1454
|
"description": "未选中图标"
|
|
1446
1455
|
},
|
|
1456
|
+
{
|
|
1457
|
+
"name": "indeterminate-icon",
|
|
1458
|
+
"description": "不确定状态图标"
|
|
1459
|
+
},
|
|
1447
1460
|
{
|
|
1448
1461
|
"name": "default",
|
|
1449
1462
|
"description": "显示的文本"
|
|
@@ -6914,7 +6927,7 @@
|
|
|
6914
6927
|
"description": "是否显示",
|
|
6915
6928
|
"default": "false",
|
|
6916
6929
|
"value": {
|
|
6917
|
-
"type": "
|
|
6930
|
+
"type": "boolean",
|
|
6918
6931
|
"kind": "expression"
|
|
6919
6932
|
}
|
|
6920
6933
|
},
|