@varlet/ui 2.16.6 → 2.16.7-alpha.1695050636971
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/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/input/input.css +1 -1
- package/es/select/select.css +1 -1
- package/es/style.css +1 -1
- package/es/swipe/Swipe.mjs +93 -7
- package/es/swipe/props.mjs +4 -0
- package/es/swipe/style/index.mjs +5 -0
- package/es/swipe/swipe.css +1 -1
- package/es/varlet.esm.js +4564 -4468
- package/highlight/web-types.en-US.json +18 -1
- package/highlight/web-types.zh-CN.json +18 -1
- package/lib/style.css +1 -1
- package/lib/varlet.cjs.js +110 -6
- package/package.json +7 -7
- package/types/swipe.d.ts +6 -0
- package/umd/varlet.js +5 -5
|
@@ -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.16.
|
|
4
|
+
"version": "2.16.7-alpha.1695050636971",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -6023,6 +6023,15 @@
|
|
|
6023
6023
|
"type": "boolean",
|
|
6024
6024
|
"kind": "expression"
|
|
6025
6025
|
}
|
|
6026
|
+
},
|
|
6027
|
+
{
|
|
6028
|
+
"name": "navigation",
|
|
6029
|
+
"description": "Whether to show navigation arrows",
|
|
6030
|
+
"default": "false",
|
|
6031
|
+
"value": {
|
|
6032
|
+
"type": "boolean | string",
|
|
6033
|
+
"kind": "expression"
|
|
6034
|
+
}
|
|
6026
6035
|
}
|
|
6027
6036
|
],
|
|
6028
6037
|
"events": [
|
|
@@ -6036,6 +6045,14 @@
|
|
|
6036
6045
|
"name": "default",
|
|
6037
6046
|
"description": "Swipe content"
|
|
6038
6047
|
},
|
|
6048
|
+
{
|
|
6049
|
+
"name": "prev",
|
|
6050
|
+
"description": "Preview page button"
|
|
6051
|
+
},
|
|
6052
|
+
{
|
|
6053
|
+
"name": "next",
|
|
6054
|
+
"description": "Next page button"
|
|
6055
|
+
},
|
|
6039
6056
|
{
|
|
6040
6057
|
"name": "indicator",
|
|
6041
6058
|
"description": "Swipe indicator content"
|
|
@@ -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.16.
|
|
4
|
+
"version": "2.16.7-alpha.1695050636971",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -6363,6 +6363,15 @@
|
|
|
6363
6363
|
"type": "boolean",
|
|
6364
6364
|
"kind": "expression"
|
|
6365
6365
|
}
|
|
6366
|
+
},
|
|
6367
|
+
{
|
|
6368
|
+
"name": "navigation",
|
|
6369
|
+
"description": "是否显示导航箭头",
|
|
6370
|
+
"default": "false",
|
|
6371
|
+
"value": {
|
|
6372
|
+
"type": "boolean | string",
|
|
6373
|
+
"kind": "expression"
|
|
6374
|
+
}
|
|
6366
6375
|
}
|
|
6367
6376
|
],
|
|
6368
6377
|
"events": [
|
|
@@ -6376,6 +6385,14 @@
|
|
|
6376
6385
|
"name": "default",
|
|
6377
6386
|
"description": "轮播内容"
|
|
6378
6387
|
},
|
|
6388
|
+
{
|
|
6389
|
+
"name": "prev",
|
|
6390
|
+
"description": "上一页按钮"
|
|
6391
|
+
},
|
|
6392
|
+
{
|
|
6393
|
+
"name": "next",
|
|
6394
|
+
"description": "下一页按钮"
|
|
6395
|
+
},
|
|
6379
6396
|
{
|
|
6380
6397
|
"name": "indicator",
|
|
6381
6398
|
"description": "指示器内容"
|