@cyberpunk-vue/components 1.13.13 → 1.13.15
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/dropdown/index.d.ts +30 -0
- package/dist/dropdown/src/dropdown.d.ts +8 -0
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +4230 -4205
- package/dist/select/index.d.ts +30 -0
- package/dist/select/src/select.d.ts +16 -0
- package/dist/select/src/select.vue.d.ts +18 -0
- package/package.json +4 -4
package/dist/dropdown/index.d.ts
CHANGED
|
@@ -65,6 +65,14 @@ export declare const CpDropdown: import('../utils').SFCWithInstall<{
|
|
|
65
65
|
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
66
66
|
readonly default: "body";
|
|
67
67
|
};
|
|
68
|
+
readonly zIndex: {
|
|
69
|
+
readonly type: NumberConstructor;
|
|
70
|
+
readonly default: 2000;
|
|
71
|
+
};
|
|
72
|
+
readonly stackPriority: {
|
|
73
|
+
readonly type: NumberConstructor;
|
|
74
|
+
readonly default: undefined;
|
|
75
|
+
};
|
|
68
76
|
readonly maxHeight: {
|
|
69
77
|
readonly type: NumberConstructor;
|
|
70
78
|
readonly default: 256;
|
|
@@ -107,6 +115,8 @@ export declare const CpDropdown: import('../utils').SFCWithInstall<{
|
|
|
107
115
|
visibleChange: (visible: boolean) => void;
|
|
108
116
|
}, import('vue').PublicProps, {
|
|
109
117
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
118
|
+
readonly zIndex: number;
|
|
119
|
+
readonly stackPriority: number;
|
|
110
120
|
readonly width: string | number;
|
|
111
121
|
readonly color: string;
|
|
112
122
|
readonly variant: import('../select').SelectVariant;
|
|
@@ -204,6 +214,14 @@ export declare const CpDropdown: import('../utils').SFCWithInstall<{
|
|
|
204
214
|
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
205
215
|
readonly default: "body";
|
|
206
216
|
};
|
|
217
|
+
readonly zIndex: {
|
|
218
|
+
readonly type: NumberConstructor;
|
|
219
|
+
readonly default: 2000;
|
|
220
|
+
};
|
|
221
|
+
readonly stackPriority: {
|
|
222
|
+
readonly type: NumberConstructor;
|
|
223
|
+
readonly default: undefined;
|
|
224
|
+
};
|
|
207
225
|
readonly maxHeight: {
|
|
208
226
|
readonly type: NumberConstructor;
|
|
209
227
|
readonly default: 256;
|
|
@@ -239,6 +257,8 @@ export declare const CpDropdown: import('../utils').SFCWithInstall<{
|
|
|
239
257
|
blur: () => void;
|
|
240
258
|
}, {}, {}, {}, {
|
|
241
259
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
260
|
+
readonly zIndex: number;
|
|
261
|
+
readonly stackPriority: number;
|
|
242
262
|
readonly width: string | number;
|
|
243
263
|
readonly color: string;
|
|
244
264
|
readonly variant: import('../select').SelectVariant;
|
|
@@ -328,6 +348,14 @@ export declare const CpDropdown: import('../utils').SFCWithInstall<{
|
|
|
328
348
|
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
329
349
|
readonly default: "body";
|
|
330
350
|
};
|
|
351
|
+
readonly zIndex: {
|
|
352
|
+
readonly type: NumberConstructor;
|
|
353
|
+
readonly default: 2000;
|
|
354
|
+
};
|
|
355
|
+
readonly stackPriority: {
|
|
356
|
+
readonly type: NumberConstructor;
|
|
357
|
+
readonly default: undefined;
|
|
358
|
+
};
|
|
331
359
|
readonly maxHeight: {
|
|
332
360
|
readonly type: NumberConstructor;
|
|
333
361
|
readonly default: 256;
|
|
@@ -370,6 +398,8 @@ export declare const CpDropdown: import('../utils').SFCWithInstall<{
|
|
|
370
398
|
visibleChange: (visible: boolean) => void;
|
|
371
399
|
}, string, {
|
|
372
400
|
readonly size: import('@cyberpunk-vue/hooks').Size;
|
|
401
|
+
readonly zIndex: number;
|
|
402
|
+
readonly stackPriority: number;
|
|
373
403
|
readonly width: string | number;
|
|
374
404
|
readonly color: string;
|
|
375
405
|
readonly variant: import('../select').SelectVariant;
|
|
@@ -79,6 +79,14 @@ export declare const dropdownProps: {
|
|
|
79
79
|
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
80
80
|
readonly default: "body";
|
|
81
81
|
};
|
|
82
|
+
readonly zIndex: {
|
|
83
|
+
readonly type: NumberConstructor;
|
|
84
|
+
readonly default: 2000;
|
|
85
|
+
};
|
|
86
|
+
readonly stackPriority: {
|
|
87
|
+
readonly type: NumberConstructor;
|
|
88
|
+
readonly default: undefined;
|
|
89
|
+
};
|
|
82
90
|
readonly maxHeight: {
|
|
83
91
|
readonly type: NumberConstructor;
|
|
84
92
|
readonly default: 256;
|