@cyberpunk-vue/components 1.14.1 → 1.14.2
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/dist/card/index.d.ts +3 -3
- package/dist/card/src/card.d.ts +3 -3
- package/dist/card/src/card.vue.d.ts +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +9 -8
- package/package.json +4 -4
package/dist/card/index.d.ts
CHANGED
|
@@ -68,7 +68,7 @@ export declare const CpCard: import('../utils').SFCWithInstall<{
|
|
|
68
68
|
};
|
|
69
69
|
readonly overlayColor: {
|
|
70
70
|
readonly type: StringConstructor;
|
|
71
|
-
readonly default:
|
|
71
|
+
readonly default: undefined;
|
|
72
72
|
};
|
|
73
73
|
readonly overlayBlur: {
|
|
74
74
|
readonly type: import('vue').PropType<number | string>;
|
|
@@ -260,7 +260,7 @@ export declare const CpCard: import('../utils').SFCWithInstall<{
|
|
|
260
260
|
};
|
|
261
261
|
readonly overlayColor: {
|
|
262
262
|
readonly type: StringConstructor;
|
|
263
|
-
readonly default:
|
|
263
|
+
readonly default: undefined;
|
|
264
264
|
};
|
|
265
265
|
readonly overlayBlur: {
|
|
266
266
|
readonly type: import('vue').PropType<number | string>;
|
|
@@ -443,7 +443,7 @@ export declare const CpCard: import('../utils').SFCWithInstall<{
|
|
|
443
443
|
};
|
|
444
444
|
readonly overlayColor: {
|
|
445
445
|
readonly type: StringConstructor;
|
|
446
|
-
readonly default:
|
|
446
|
+
readonly default: undefined;
|
|
447
447
|
};
|
|
448
448
|
readonly overlayBlur: {
|
|
449
449
|
readonly type: import('vue').PropType<number | string>;
|
package/dist/card/src/card.d.ts
CHANGED
|
@@ -201,12 +201,12 @@ export declare const cardProps: {
|
|
|
201
201
|
};
|
|
202
202
|
/**
|
|
203
203
|
* 覆层颜色
|
|
204
|
-
* 支持任意 CSS
|
|
205
|
-
* @default
|
|
204
|
+
* 支持任意 CSS 颜色值;不传时使用当前主题背景与卡片主题色生成
|
|
205
|
+
* @default undefined
|
|
206
206
|
*/
|
|
207
207
|
readonly overlayColor: {
|
|
208
208
|
readonly type: StringConstructor;
|
|
209
|
-
readonly default:
|
|
209
|
+
readonly default: undefined;
|
|
210
210
|
};
|
|
211
211
|
/**
|
|
212
212
|
* 覆层毛玻璃模糊程度
|
|
@@ -68,7 +68,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
68
68
|
};
|
|
69
69
|
readonly overlayColor: {
|
|
70
70
|
readonly type: StringConstructor;
|
|
71
|
-
readonly default:
|
|
71
|
+
readonly default: undefined;
|
|
72
72
|
};
|
|
73
73
|
readonly overlayBlur: {
|
|
74
74
|
readonly type: import('vue').PropType<number | string>;
|
|
@@ -214,7 +214,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
214
214
|
};
|
|
215
215
|
readonly overlayColor: {
|
|
216
216
|
readonly type: StringConstructor;
|
|
217
|
-
readonly default:
|
|
217
|
+
readonly default: undefined;
|
|
218
218
|
};
|
|
219
219
|
readonly overlayBlur: {
|
|
220
220
|
readonly type: import('vue').PropType<number | string>;
|