@varlet/ui 2.18.3-alpha.1699111361708 → 2.18.3
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/button/Button.mjs +4 -3
- package/es/button/button.css +1 -1
- package/es/date-picker/DatePicker.mjs +106 -21
- package/es/date-picker/date-picker.css +1 -1
- package/es/date-picker/src/panel-header.mjs +2 -0
- package/es/date-picker/src/year-picker-panel.mjs +253 -56
- package/es/date-picker/style/index.mjs +1 -0
- package/es/image-preview/ImagePreview.mjs +19 -12
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/style.css +1 -1
- package/es/utils/elements.mjs +7 -6
- package/es/varlet.esm.js +6101 -5916
- package/highlight/web-types.en-US.json +7 -3
- package/highlight/web-types.zh-CN.json +7 -3
- package/lib/style.css +1 -1
- package/lib/varlet.cjs.js +574 -292
- package/package.json +7 -7
- package/types/datePicker.d.ts +4 -4
- package/umd/varlet.js +6 -6
|
@@ -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.18.3
|
|
4
|
+
"version": "2.18.3",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -1999,7 +1999,7 @@
|
|
|
1999
1999
|
},
|
|
2000
2000
|
{
|
|
2001
2001
|
"name": "type",
|
|
2002
|
-
"description": "Picker type, optional values `date` `month`",
|
|
2002
|
+
"description": "Picker type, optional values `date` `month` `year`",
|
|
2003
2003
|
"default": "date",
|
|
2004
2004
|
"value": {
|
|
2005
2005
|
"type": "string",
|
|
@@ -5014,7 +5014,7 @@
|
|
|
5014
5014
|
{
|
|
5015
5015
|
"name": "track-color",
|
|
5016
5016
|
"description": "Color of the progress track",
|
|
5017
|
-
"default": "
|
|
5017
|
+
"default": "-",
|
|
5018
5018
|
"value": {
|
|
5019
5019
|
"type": "string",
|
|
5020
5020
|
"kind": "expression"
|
|
@@ -7424,6 +7424,10 @@
|
|
|
7424
7424
|
{
|
|
7425
7425
|
"name": "preview",
|
|
7426
7426
|
"description": "Triggered when a file is previewed"
|
|
7427
|
+
},
|
|
7428
|
+
{
|
|
7429
|
+
"name": "click-action",
|
|
7430
|
+
"description": "Intercept click behavior of upload button"
|
|
7427
7431
|
}
|
|
7428
7432
|
],
|
|
7429
7433
|
"slots": [
|
|
@@ -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.18.3
|
|
4
|
+
"version": "2.18.3",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -2158,7 +2158,7 @@
|
|
|
2158
2158
|
},
|
|
2159
2159
|
{
|
|
2160
2160
|
"name": "type",
|
|
2161
|
-
"description": "选择器类型,可选值为 `date month`",
|
|
2161
|
+
"description": "选择器类型,可选值为 `date month year`",
|
|
2162
2162
|
"default": "date",
|
|
2163
2163
|
"value": {
|
|
2164
2164
|
"type": "string",
|
|
@@ -5182,7 +5182,7 @@
|
|
|
5182
5182
|
{
|
|
5183
5183
|
"name": "track-color",
|
|
5184
5184
|
"description": "`progress` 轨道的颜色",
|
|
5185
|
-
"default": "
|
|
5185
|
+
"default": "-",
|
|
5186
5186
|
"value": {
|
|
5187
5187
|
"type": "string",
|
|
5188
5188
|
"kind": "expression"
|
|
@@ -7760,6 +7760,10 @@
|
|
|
7760
7760
|
{
|
|
7761
7761
|
"name": "preview",
|
|
7762
7762
|
"description": "文件预览时触发"
|
|
7763
|
+
},
|
|
7764
|
+
{
|
|
7765
|
+
"name": "click-action",
|
|
7766
|
+
"description": "拦截上传按钮的点击行为"
|
|
7763
7767
|
}
|
|
7764
7768
|
],
|
|
7765
7769
|
"slots": [
|