@varlet/ui 3.12.3 → 3.13.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varlet/ui",
3
- "version": "3.12.3",
3
+ "version": "3.13.0",
4
4
  "description": "A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.",
5
5
  "keywords": [
6
6
  "Vue3",
@@ -44,9 +44,9 @@
44
44
  "@popperjs/core": "^2.11.6",
45
45
  "dayjs": "^1.10.4",
46
46
  "decimal.js": "^10.2.1",
47
- "@varlet/shared": "3.12.3",
48
- "@varlet/icons": "3.12.3",
49
- "@varlet/use": "3.12.3"
47
+ "@varlet/icons": "3.13.0",
48
+ "@varlet/shared": "3.13.0",
49
+ "@varlet/use": "3.13.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/node": "^18.7.20",
@@ -62,9 +62,9 @@
62
62
  "vue": "3.5.21",
63
63
  "vue-router": "4.5.1",
64
64
  "zod": "^3.23.8",
65
- "@varlet/cli": "3.12.3",
66
- "@varlet/touch-emulator": "3.12.3",
67
- "@varlet/ui": "3.12.3"
65
+ "@varlet/ui": "3.13.0",
66
+ "@varlet/touch-emulator": "3.13.0",
67
+ "@varlet/cli": "3.13.0"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "vue": "^3.2.0"
@@ -424,6 +424,32 @@ interface BaseStyleVars {
424
424
  '--field-decorator-outlined-small-placeholder-space'?: string
425
425
  '--field-decorator-outlined-small-icon-margin-top'?: string
426
426
  '--field-decorator-outlined-small-icon-margin-bottom'?: string
427
+ '--field-decorator-filled-background-color'?: string
428
+ '--field-decorator-filled-border-radius'?: string
429
+ '--field-decorator-filled-normal-placeholder-hint-top'?: string
430
+ '--field-decorator-filled-normal-margin-top'?: string
431
+ '--field-decorator-filled-normal-margin-bottom'?: string
432
+ '--field-decorator-filled-normal-hint-center-margin-top'?: string
433
+ '--field-decorator-filled-normal-hint-margin-top'?: string
434
+ '--field-decorator-filled-normal-non-hint-margin-top'?: string
435
+ '--field-decorator-filled-normal-non-hint-margin-bottom'?: string
436
+ '--field-decorator-filled-normal-padding-left'?: string
437
+ '--field-decorator-filled-normal-padding-right'?: string
438
+ '--field-decorator-filled-normal-placeholder-space'?: string
439
+ '--field-decorator-filled-normal-icon-margin-top'?: string
440
+ '--field-decorator-filled-normal-icon-margin-bottom'?: string
441
+ '--field-decorator-filled-small-placeholder-hint-top'?: string
442
+ '--field-decorator-filled-small-margin-top'?: string
443
+ '--field-decorator-filled-small-margin-bottom'?: string
444
+ '--field-decorator-filled-small-hint-center-margin-top'?: string
445
+ '--field-decorator-filled-small-hint-margin-top'?: string
446
+ '--field-decorator-filled-small-padding-left'?: string
447
+ '--field-decorator-filled-small-padding-right'?: string
448
+ '--field-decorator-filled-small-placeholder-space'?: string
449
+ '--field-decorator-filled-small-icon-margin-top'?: string
450
+ '--field-decorator-filled-small-icon-margin-bottom'?: string
451
+ '--field-decorator-filled-small-non-hint-margin-top'?: string
452
+ '--field-decorator-filled-small-non-hint-margin-bottom'?: string
427
453
  '--input-input-height'?: string
428
454
  '--input-input-font-size'?: string
429
455
  '--input-textarea-height'?: string
@@ -14,7 +14,7 @@ export type Size = 'normal' | 'mini' | 'small' | 'large'
14
14
 
15
15
  export type Direction = 'horizontal' | 'vertical'
16
16
 
17
- export type Variant = 'outlined' | 'standard'
17
+ export type Variant = 'outlined' | 'standard' | 'filled'
18
18
 
19
19
  export type ListenerProp<F> = F | F[]
20
20