@varlet/ui 3.18.0-alpha.1781276267923 → 3.18.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.18.0-alpha.1781276267923",
3
+ "version": "3.18.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/icons": "3.18.0-alpha.1781276267923",
48
- "@varlet/shared": "3.18.0-alpha.1781276267923",
49
- "@varlet/use": "3.18.0-alpha.1781276267923"
47
+ "@varlet/icons": "3.18.0",
48
+ "@varlet/shared": "3.18.0",
49
+ "@varlet/use": "3.18.0"
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.18.0-alpha.1781276267923",
66
- "@varlet/ui": "3.18.0-alpha.1781276267923",
67
- "@varlet/touch-emulator": "3.18.0-alpha.1781276267923"
65
+ "@varlet/cli": "3.18.0",
66
+ "@varlet/ui": "3.18.0",
67
+ "@varlet/touch-emulator": "3.18.0"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "vue": "^3.2.0"
package/types/paper.d.ts CHANGED
@@ -5,6 +5,8 @@ export declare const paperProps: Record<keyof PaperProps, any>
5
5
 
6
6
  export type PaperSurface = 'low'
7
7
 
8
+ export type PaperVariant = 'standard' | 'outlined' | 'filled'
9
+
8
10
  export interface PaperRipple {
9
11
  disabled?: boolean
10
12
  color?: string
@@ -23,6 +25,7 @@ export interface PaperProps extends BasicAttributes {
23
25
  height?: string | number
24
26
  round?: boolean
25
27
  inline?: boolean
28
+ variant?: PaperVariant
26
29
  surface?: PaperSurface
27
30
  hoverable?: boolean | PaperHoverable
28
31
  onClick?: ListenerProp<(e: Event) => void>
@@ -167,6 +167,7 @@ interface BaseStyleVars {
167
167
  '--button-large-font-size'?: string
168
168
  '--card-background'?: string
169
169
  '--card-surface-low-background'?: string
170
+ '--card-outlined-background'?: string
170
171
  '--card-filled-background'?: string
171
172
  '--card-padding'?: string
172
173
  '--card-border-radius'?: string
@@ -304,9 +305,15 @@ interface BaseStyleVars {
304
305
  '--data-table-resize-trigger-color'?: string
305
306
  '--data-table-fixed-shadow-color'?: string
306
307
  '--data-table-border-radius'?: string
307
- '--data-table-cell-padding'?: string
308
- '--data-table-selection-cell-padding'?: string
309
- '--data-table-expand-cell-padding'?: string
308
+ '--data-table-cell-normal-padding'?: string
309
+ '--data-table-cell-small-padding'?: string
310
+ '--data-table-cell-large-padding'?: string
311
+ '--data-table-selection-cell-normal-padding'?: string
312
+ '--data-table-selection-cell-small-padding'?: string
313
+ '--data-table-selection-cell-large-padding'?: string
314
+ '--data-table-expand-cell-normal-padding'?: string
315
+ '--data-table-expand-cell-small-padding'?: string
316
+ '--data-table-expand-cell-large-padding'?: string
310
317
  '--data-table-cell-font-size'?: string
311
318
  '--data-table-header-font-size'?: string
312
319
  '--data-table-header-font-weight'?: string
@@ -558,6 +565,9 @@ interface BaseStyleVars {
558
565
  '--pagination-quick-jumper-margin'?: string
559
566
  '--paper-background'?: string
560
567
  '--paper-surface-low-background'?: string
568
+ '--paper-outlined-background'?: string
569
+ '--paper-filled-background'?: string
570
+ '--paper-outline-color'?: string
561
571
  '--paper-border-radius'?: string
562
572
  '--picker-background'?: string
563
573
  '--picker-toolbar-height'?: string