@varlet/ui 2.19.0 → 2.19.2-alpha.1700587187860

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/lib/varlet.cjs.js CHANGED
@@ -25011,9 +25011,9 @@ const skeleton = "";
25011
25011
  const SkeletonSfc = "";
25012
25012
  const slider = "";
25013
25013
  const SliderSfc = "";
25014
+ const SnackbarSfc = "";
25014
25015
  const snackbar = "";
25015
25016
  const coreSfc = "";
25016
- const SnackbarSfc = "";
25017
25017
  const space = "";
25018
25018
  const step = "";
25019
25019
  const StepSfc = "";
@@ -25040,7 +25040,7 @@ const uploader = "";
25040
25040
  const UploaderSfc = "";
25041
25041
  const watermark = "";
25042
25042
  const WatermarkSfc = "";
25043
- const version = "2.19.0";
25043
+ const version = "2.19.2-alpha.1700587187860";
25044
25044
  function install(app) {
25045
25045
  stdin_default$3k.install && app.use(stdin_default$3k);
25046
25046
  stdin_default$3i.install && app.use(stdin_default$3i);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varlet/ui",
3
- "version": "2.19.0",
3
+ "version": "2.19.2-alpha.1700587187860",
4
4
  "description": "A material like components library",
5
5
  "main": "lib/varlet.cjs.js",
6
6
  "module": "es/index.mjs",
@@ -48,9 +48,9 @@
48
48
  "@popperjs/core": "^2.11.6",
49
49
  "dayjs": "^1.10.4",
50
50
  "decimal.js": "^10.2.1",
51
- "@varlet/icons": "2.19.0",
52
- "@varlet/shared": "2.19.0",
53
- "@varlet/use": "2.19.0"
51
+ "@varlet/icons": "2.19.2-alpha.1700587187860",
52
+ "@varlet/use": "2.19.2-alpha.1700587187860",
53
+ "@varlet/shared": "2.19.2-alpha.1700587187860"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@vue/runtime-core": "3.3.4",
@@ -66,9 +66,9 @@
66
66
  "typescript": "^5.1.5",
67
67
  "vue": "3.3.4",
68
68
  "vue-router": "4.2.0",
69
- "@varlet/cli": "2.19.0",
70
- "@varlet/touch-emulator": "2.19.0",
71
- "@varlet/ui": "2.19.0"
69
+ "@varlet/ui": "2.19.2-alpha.1700587187860",
70
+ "@varlet/cli": "2.19.2-alpha.1700587187860",
71
+ "@varlet/touch-emulator": "2.19.2-alpha.1700587187860"
72
72
  },
73
73
  "scripts": {
74
74
  "dev": "varlet-cli dev",
package/types/index.d.ts CHANGED
@@ -75,6 +75,7 @@ export * from './step'
75
75
  export * from './steps'
76
76
  export * from './sticky'
77
77
  export * from './styleProvider'
78
+ export * from './styleVars'
78
79
  export * from './swipe'
79
80
  export * from './swipeItem'
80
81
  export * from './switch'
@@ -162,6 +163,7 @@ declare module 'vue' {
162
163
  VarSteps: typeof import('@varlet/ui')['_StepsComponent']
163
164
  VarSticky: typeof import('@varlet/ui')['_StickyComponent']
164
165
  VarStyleProvider: typeof import('@varlet/ui')['_StyleProviderComponent']
166
+ VarStyleVars: typeof import('@varlet/ui')['_StyleVarsComponent']
165
167
  VarSwipe: typeof import('@varlet/ui')['_SwipeComponent']
166
168
  VarSwipeItem: typeof import('@varlet/ui')['_SwipeItemComponent']
167
169
  VarSwitch: typeof import('@varlet/ui')['_SwitchComponent']
@@ -1,9 +1,10 @@
1
1
  import { VarComponent, BasicAttributes, SetPropsDefaults } from './varComponent'
2
2
  import { App, VNode } from 'vue'
3
+ import { StyleVars as ExtractedStyleVars } from './styleVars'
3
4
 
4
5
  export declare const styleProviderProps: Record<keyof StyleProviderProps, any>
5
6
 
6
- export type StyleVars = Record<string, string>
7
+ export type StyleVars = ExtractedStyleVars
7
8
 
8
9
  export interface StyleProviderProps extends BasicAttributes {
9
10
  styleVars?: StyleVars