@varlet/ui 3.5.2 → 3.5.4-alpha.1727864204645
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/card/Card.mjs +9 -1
- package/es/card/card.css +1 -1
- package/es/card/props.mjs +7 -2
- package/es/date-picker/DatePicker.mjs +6 -5
- package/es/date-picker/date-picker.css +1 -1
- package/es/date-picker/src/day-picker-panel.mjs +1 -0
- package/es/date-picker/src/month-picker-panel.mjs +8 -7
- package/es/date-picker/src/year-picker-panel.mjs +11 -8
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/style.css +1 -1
- package/es/themes/dark/card.mjs +1 -0
- package/es/themes/md3-dark/card.mjs +1 -0
- package/es/themes/md3-light/card.mjs +1 -0
- package/es/time-picker/TimePicker.mjs +27 -14
- package/es/time-picker/timePicker.css +1 -1
- package/es/varlet.esm.js +2174 -2154
- package/highlight/web-types.en-US.json +10 -1
- package/highlight/web-types.zh-CN.json +10 -10
- package/lib/style.css +1 -1
- package/lib/varlet.cjs.js +72 -37
- package/package.json +7 -7
- package/types/card.d.ts +10 -1
- package/types/styleVars.d.ts +4 -0
- package/umd/varlet.js +7 -7
|
@@ -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": "3.5.
|
|
4
|
+
"version": "3.5.4-alpha.1727864204645",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -1338,6 +1338,15 @@
|
|
|
1338
1338
|
{
|
|
1339
1339
|
"name": "var-card",
|
|
1340
1340
|
"attributes": [
|
|
1341
|
+
{
|
|
1342
|
+
"name": "variant",
|
|
1343
|
+
"description": "The variant of Card, optional value is `standard` `outlined` `filled`",
|
|
1344
|
+
"default": "standard",
|
|
1345
|
+
"value": {
|
|
1346
|
+
"type": "string",
|
|
1347
|
+
"kind": "expression"
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1341
1350
|
{
|
|
1342
1351
|
"name": "title",
|
|
1343
1352
|
"description": "The title of Card",
|
|
@@ -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": "3.5.
|
|
4
|
+
"version": "3.5.4-alpha.1727864204645",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -1398,6 +1398,15 @@
|
|
|
1398
1398
|
{
|
|
1399
1399
|
"name": "var-card",
|
|
1400
1400
|
"attributes": [
|
|
1401
|
+
{
|
|
1402
|
+
"name": "variant",
|
|
1403
|
+
"description": "卡片外观,可选值 `standard` `outlined` `filled`",
|
|
1404
|
+
"default": "standard",
|
|
1405
|
+
"value": {
|
|
1406
|
+
"type": "string",
|
|
1407
|
+
"kind": "expression"
|
|
1408
|
+
}
|
|
1409
|
+
},
|
|
1401
1410
|
{
|
|
1402
1411
|
"name": "title",
|
|
1403
1412
|
"description": "卡片标题",
|
|
@@ -1461,15 +1470,6 @@
|
|
|
1461
1470
|
"kind": "expression"
|
|
1462
1471
|
}
|
|
1463
1472
|
},
|
|
1464
|
-
{
|
|
1465
|
-
"name": "outline",
|
|
1466
|
-
"description": "是否使用外边框",
|
|
1467
|
-
"default": "false",
|
|
1468
|
-
"value": {
|
|
1469
|
-
"type": "boolean",
|
|
1470
|
-
"kind": "expression"
|
|
1471
|
-
}
|
|
1472
|
-
},
|
|
1473
1473
|
{
|
|
1474
1474
|
"name": "alt",
|
|
1475
1475
|
"description": "替代文本,和 img 标签原生属性一致",
|