@varlet/ui 3.20.5 → 3.20.6

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.20.5",
3
+ "version": "3.20.6",
4
4
  "description": "A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.",
5
5
  "keywords": [
6
6
  "Vue3",
@@ -31,7 +31,7 @@
31
31
  "unpkg": "umd/varlet.js",
32
32
  "module": "es/index.mjs",
33
33
  "typings": "types/index.d.ts",
34
- "style": "umd/style.css",
34
+ "style": "es/varlet.css",
35
35
  "files": [
36
36
  "json",
37
37
  "lib",
@@ -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/icons": "3.20.5",
48
- "@varlet/shared": "3.20.5",
49
- "@varlet/use": "3.20.5"
47
+ "@varlet/use": "3.20.6",
48
+ "@varlet/icons": "3.20.6",
49
+ "@varlet/shared": "3.20.6"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/node": "^20.19.0",
@@ -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.20.5",
66
- "@varlet/touch-emulator": "3.20.5",
67
- "@varlet/ui": "3.20.5"
65
+ "@varlet/cli": "3.20.6",
66
+ "@varlet/ui": "3.20.6",
67
+ "@varlet/touch-emulator": "3.20.6"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "vue": "^3.2.0"
package/types/paper.d.ts CHANGED
@@ -17,6 +17,10 @@ export interface PaperHoverable {
17
17
  color?: string
18
18
  }
19
19
 
20
+ export interface PaperActive {
21
+ color?: string
22
+ }
23
+
20
24
  export interface PaperProps extends BasicAttributes {
21
25
  elevation?: boolean | number | string
22
26
  ripple?: boolean | PaperRipple
@@ -28,6 +32,8 @@ export interface PaperProps extends BasicAttributes {
28
32
  variant?: PaperVariant
29
33
  surface?: PaperSurface
30
34
  hoverable?: boolean | PaperHoverable
35
+ active?: boolean | PaperActive
36
+ disabled?: boolean
31
37
  onClick?: ListenerProp<(e: Event) => void>
32
38
  }
33
39
 
@@ -579,6 +579,8 @@ interface BaseStyleVars {
579
579
  '--paper-filled-background'?: string
580
580
  '--paper-outline-color'?: string
581
581
  '--paper-border-radius'?: string
582
+ '--paper-active-color'?: string
583
+ '--paper-active-opacity'?: string
582
584
  '--picker-background'?: string
583
585
  '--picker-toolbar-height'?: string
584
586
  '--picker-confirm-button-text-color'?: string