@varlet/ui 3.8.4 → 3.8.6-alpha.1738773989240
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/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/pagination/Pagination.mjs +47 -47
- package/es/pagination/pagination.css +1 -1
- package/es/radio/Radio.mjs +65 -64
- package/es/radio-group/RadioGroup.mjs +29 -32
- package/es/radio-group/props.mjs +4 -0
- package/es/snackbar/style/index.mjs +1 -1
- package/es/style.css +1 -1
- package/es/themes/dark/pagination.mjs +3 -2
- package/es/themes/md3-dark/pagination.mjs +3 -2
- package/es/themes/md3-light/pagination.mjs +3 -2
- package/es/varlet.esm.js +1851 -1849
- package/highlight/web-types.en-US.json +10 -1
- package/highlight/web-types.zh-CN.json +10 -1
- package/lib/style.css +1 -1
- package/lib/varlet.cjs.js +217 -212
- package/package.json +8 -8
- package/types/radioGroup.d.ts +1 -0
- package/types/styleVars.d.ts +3 -0
- package/umd/varlet.js +8 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varlet/ui",
|
|
3
|
-
"version": "3.8.
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "3.8.6-alpha.1738773989240",
|
|
4
|
+
"description": "A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Vue3",
|
|
7
7
|
"Mobile",
|
|
@@ -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.8.
|
|
48
|
-
"@varlet/
|
|
49
|
-
"@varlet/
|
|
47
|
+
"@varlet/icons": "3.8.6-alpha.1738773989240",
|
|
48
|
+
"@varlet/use": "3.8.6-alpha.1738773989240",
|
|
49
|
+
"@varlet/shared": "3.8.6-alpha.1738773989240"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/node": "^18.7.18",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"vue": "3.4.21",
|
|
63
63
|
"vue-router": "4.2.0",
|
|
64
64
|
"zod": "^3.23.8",
|
|
65
|
-
"@varlet/cli": "3.8.
|
|
66
|
-
"@varlet/
|
|
67
|
-
"@varlet/
|
|
65
|
+
"@varlet/cli": "3.8.6-alpha.1738773989240",
|
|
66
|
+
"@varlet/ui": "3.8.6-alpha.1738773989240",
|
|
67
|
+
"@varlet/touch-emulator": "3.8.6-alpha.1738773989240"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"vue": "^3.2.0"
|
package/types/radioGroup.d.ts
CHANGED
package/types/styleVars.d.ts
CHANGED
|
@@ -482,11 +482,14 @@ interface BaseStyleVars {
|
|
|
482
482
|
'--pagination-item-height'?: string
|
|
483
483
|
'--pagination-item-margin'?: string
|
|
484
484
|
'--pagination-item-border-radius'?: string
|
|
485
|
+
'--pagination-item-background'?: string
|
|
486
|
+
'--pagination-item-simple-border-radius'?: string
|
|
485
487
|
'--pagination-input-width'?: string
|
|
486
488
|
'--pagination-disabled-color'?: string
|
|
487
489
|
'--pagination-bg-disabled-color'?: string
|
|
488
490
|
'--pagination-size-line-height'?: string
|
|
489
491
|
'--pagination-size-padding'?: string
|
|
492
|
+
'--pagination-quick-jumper-margin'?: string
|
|
490
493
|
'--paper-background'?: string
|
|
491
494
|
'--paper-border-radius'?: string
|
|
492
495
|
'--picker-background'?: string
|