@varlet/ui 2.9.6 → 2.10.0-alpha.1682067841655

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.
Files changed (45) hide show
  1. package/es/fab/Fab.mjs +3 -5
  2. package/es/field-decorator/FieldDecorator.mjs +196 -0
  3. package/es/field-decorator/FieldDecoratorSfc.css +0 -0
  4. package/es/field-decorator/fieldDecorator.css +1 -0
  5. package/es/field-decorator/props.mjs +81 -0
  6. package/es/field-decorator/style/index.mjs +4 -0
  7. package/es/icon/icon.css +1 -1
  8. package/es/index.bundle.mjs +1 -1
  9. package/es/index.mjs +1 -1
  10. package/es/input/Input.mjs +173 -161
  11. package/es/input/input.css +1 -1
  12. package/es/input/props.mjs +7 -33
  13. package/es/input/style/index.mjs +2 -1
  14. package/es/menu/usePopover.mjs +2 -2
  15. package/es/option/Option.mjs +0 -3
  16. package/es/option/option.css +1 -1
  17. package/es/select/Select.mjs +104 -145
  18. package/es/select/props.mjs +7 -33
  19. package/es/select/select.css +1 -1
  20. package/es/select/style/index.mjs +1 -0
  21. package/es/snackbar/Snackbar.mjs +1 -0
  22. package/es/snackbar/core.mjs +4 -0
  23. package/es/snackbar/index.mjs +18 -3
  24. package/es/snackbar/props.mjs +1 -1
  25. package/es/snackbar/style/index.mjs +1 -1
  26. package/es/sticky/Sticky.mjs +2 -2
  27. package/es/style.css +1 -1
  28. package/es/swipe/Swipe.mjs +1 -1
  29. package/es/tabs/Tabs.mjs +1 -1
  30. package/es/themes/dark/fieldDecorator.mjs +4 -0
  31. package/es/themes/dark/index.mjs +2 -2
  32. package/es/themes/dark/select.mjs +0 -2
  33. package/es/utils/components.mjs +42 -9
  34. package/es/varlet.esm.js +6876 -6683
  35. package/highlight/web-types.en-US.json +23 -1
  36. package/highlight/web-types.zh-CN.json +41 -1
  37. package/lib/style.css +1 -1
  38. package/lib/varlet.cjs.js +1200 -979
  39. package/package.json +6 -6
  40. package/types/input.d.ts +5 -1
  41. package/types/select.d.ts +5 -1
  42. package/types/snackbar.d.ts +6 -1
  43. package/types/varComponent.d.ts +2 -0
  44. package/umd/varlet.js +5 -5
  45. package/es/themes/dark/input.mjs +0 -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.9.6",
4
+ "version": "2.10.0-alpha.1682067841655",
5
5
  "name": "VARLET",
6
6
  "contributions": {
7
7
  "html": {
@@ -3152,6 +3152,24 @@
3152
3152
  "kind": "expression"
3153
3153
  }
3154
3154
  },
3155
+ {
3156
+ "name": "size",
3157
+ "description": "Input size, The optional value is `small`",
3158
+ "default": "-",
3159
+ "value": {
3160
+ "type": "string",
3161
+ "kind": "expression"
3162
+ }
3163
+ },
3164
+ {
3165
+ "name": "variant",
3166
+ "description": "Input variants, The optional value is `standard` `outlined`",
3167
+ "default": "standard",
3168
+ "value": {
3169
+ "type": "string",
3170
+ "kind": "expression"
3171
+ }
3172
+ },
3155
3173
  {
3156
3174
  "name": "maxlength",
3157
3175
  "description": "Maxlength",
@@ -5410,6 +5428,10 @@
5410
5428
  "name": "default",
5411
5429
  "description": "`Snackbar` content message"
5412
5430
  },
5431
+ {
5432
+ "name": "icon",
5433
+ "description": "`Snackbar` icon"
5434
+ },
5413
5435
  {
5414
5436
  "name": "action",
5415
5437
  "description": "`Snackbar` action of right"
@@ -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.9.6",
4
+ "version": "2.10.0-alpha.1682067841655",
5
5
  "name": "VARLET",
6
6
  "contributions": {
7
7
  "html": {
@@ -3324,6 +3324,24 @@
3324
3324
  "kind": "expression"
3325
3325
  }
3326
3326
  },
3327
+ {
3328
+ "name": "size",
3329
+ "description": "输入框尺寸,可选值 `small`",
3330
+ "default": "-",
3331
+ "value": {
3332
+ "type": "string",
3333
+ "kind": "expression"
3334
+ }
3335
+ },
3336
+ {
3337
+ "name": "variant",
3338
+ "description": "输入框风格, 可选值为 `standard` `outlined`",
3339
+ "default": "standard",
3340
+ "value": {
3341
+ "type": "string",
3342
+ "kind": "expression"
3343
+ }
3344
+ },
3327
3345
  {
3328
3346
  "name": "maxlength",
3329
3347
  "description": "最大长度",
@@ -5122,6 +5140,24 @@
5122
5140
  "kind": "expression"
5123
5141
  }
5124
5142
  },
5143
+ {
5144
+ "name": "size",
5145
+ "description": "选择框尺寸,可选值 `small`",
5146
+ "default": "-",
5147
+ "value": {
5148
+ "type": "string",
5149
+ "kind": "expression"
5150
+ }
5151
+ },
5152
+ {
5153
+ "name": "variant",
5154
+ "description": "选择框风格, 可选值为 `standard` `outlined`",
5155
+ "default": "standard",
5156
+ "value": {
5157
+ "type": "string",
5158
+ "kind": "expression"
5159
+ }
5160
+ },
5125
5161
  {
5126
5162
  "name": "placeholder",
5127
5163
  "description": "占位符",
@@ -5727,6 +5763,10 @@
5727
5763
  "name": "default",
5728
5764
  "description": "`Snackbar` 内容"
5729
5765
  },
5766
+ {
5767
+ "name": "icon",
5768
+ "description": "`Snackbar` 图标"
5769
+ },
5730
5770
  {
5731
5771
  "name": "action",
5732
5772
  "description": "`Snackbar` 右边动作区"