@zeedhi/zd-user-info-vue 3.0.3 → 3.1.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/dist/types/components/UserInfo.d.ts +54 -12
- package/dist/user-info-vue.es.js +16537 -50110
- package/package.json +3 -3
|
@@ -3,25 +3,31 @@ import { IComponentRender } from '@zeedhi/common';
|
|
|
3
3
|
export declare const ZdUserInfoProps: {
|
|
4
4
|
activator: {
|
|
5
5
|
type: ObjectConstructor;
|
|
6
|
+
watch: boolean;
|
|
6
7
|
};
|
|
7
8
|
avatarProps: {
|
|
8
9
|
type: ObjectConstructor;
|
|
9
10
|
default: () => {};
|
|
11
|
+
watch: boolean;
|
|
10
12
|
};
|
|
11
13
|
bottomSlot: {
|
|
12
14
|
type: () => IComponentRender[];
|
|
13
15
|
default: () => never[];
|
|
16
|
+
watch: boolean;
|
|
14
17
|
};
|
|
15
18
|
centerSlot: {
|
|
16
19
|
type: () => IComponentRender[];
|
|
20
|
+
watch: boolean;
|
|
17
21
|
};
|
|
18
22
|
topSlot: {
|
|
19
23
|
type: () => IComponentRender[];
|
|
20
24
|
default: () => never[];
|
|
25
|
+
watch: boolean;
|
|
21
26
|
};
|
|
22
27
|
headerSlot: {
|
|
23
28
|
type: () => IComponentRender[];
|
|
24
29
|
default: () => never[];
|
|
30
|
+
watch: boolean;
|
|
25
31
|
};
|
|
26
32
|
user: {
|
|
27
33
|
type: StringConstructor;
|
|
@@ -99,16 +105,20 @@ export declare const ZdUserInfoProps: {
|
|
|
99
105
|
isArray(arg: any): arg is any[];
|
|
100
106
|
readonly prototype: any[];
|
|
101
107
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
102
|
-
from<
|
|
103
|
-
from<
|
|
104
|
-
from<
|
|
105
|
-
of<
|
|
108
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
109
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
110
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
111
|
+
of<T>(...items: T[]): T[];
|
|
112
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
113
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
106
114
|
readonly [Symbol.species]: ArrayConstructor;
|
|
107
115
|
})[];
|
|
108
116
|
default(): never[];
|
|
117
|
+
watch: boolean;
|
|
109
118
|
};
|
|
110
119
|
component: {
|
|
111
120
|
type: StringConstructor;
|
|
121
|
+
watch: boolean;
|
|
112
122
|
};
|
|
113
123
|
allowDuplicate: {
|
|
114
124
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -133,10 +143,12 @@ export declare const ZdUserInfoProps: {
|
|
|
133
143
|
directives: {
|
|
134
144
|
type: ObjectConstructor;
|
|
135
145
|
default(): {};
|
|
146
|
+
watch: boolean;
|
|
136
147
|
};
|
|
137
148
|
events: {
|
|
138
149
|
type: ObjectConstructor;
|
|
139
150
|
default(): {};
|
|
151
|
+
watch: boolean;
|
|
140
152
|
};
|
|
141
153
|
instanceObject: {
|
|
142
154
|
type: ObjectConstructor;
|
|
@@ -148,6 +160,7 @@ export declare const ZdUserInfoProps: {
|
|
|
148
160
|
keyMap: {
|
|
149
161
|
type: ObjectConstructor;
|
|
150
162
|
default(): {};
|
|
163
|
+
watch: boolean;
|
|
151
164
|
};
|
|
152
165
|
light: {
|
|
153
166
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -159,6 +172,7 @@ export declare const ZdUserInfoProps: {
|
|
|
159
172
|
};
|
|
160
173
|
parent: {
|
|
161
174
|
type: ObjectConstructor;
|
|
175
|
+
watch: boolean;
|
|
162
176
|
};
|
|
163
177
|
tabStop: {
|
|
164
178
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -171,25 +185,31 @@ export declare const ZdUserInfoProps: {
|
|
|
171
185
|
declare const userInfoComponent: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
172
186
|
activator: {
|
|
173
187
|
type: ObjectConstructor;
|
|
188
|
+
watch: boolean;
|
|
174
189
|
};
|
|
175
190
|
avatarProps: {
|
|
176
191
|
type: ObjectConstructor;
|
|
177
192
|
default: () => {};
|
|
193
|
+
watch: boolean;
|
|
178
194
|
};
|
|
179
195
|
bottomSlot: {
|
|
180
196
|
type: () => IComponentRender[];
|
|
181
197
|
default: () => never[];
|
|
198
|
+
watch: boolean;
|
|
182
199
|
};
|
|
183
200
|
centerSlot: {
|
|
184
201
|
type: () => IComponentRender[];
|
|
202
|
+
watch: boolean;
|
|
185
203
|
};
|
|
186
204
|
topSlot: {
|
|
187
205
|
type: () => IComponentRender[];
|
|
188
206
|
default: () => never[];
|
|
207
|
+
watch: boolean;
|
|
189
208
|
};
|
|
190
209
|
headerSlot: {
|
|
191
210
|
type: () => IComponentRender[];
|
|
192
211
|
default: () => never[];
|
|
212
|
+
watch: boolean;
|
|
193
213
|
};
|
|
194
214
|
user: {
|
|
195
215
|
type: StringConstructor;
|
|
@@ -267,16 +287,20 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
267
287
|
isArray(arg: any): arg is any[];
|
|
268
288
|
readonly prototype: any[];
|
|
269
289
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
270
|
-
from<
|
|
271
|
-
from<
|
|
272
|
-
from<
|
|
273
|
-
of<
|
|
290
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
291
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
292
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
293
|
+
of<T>(...items: T[]): T[];
|
|
294
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
295
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
274
296
|
readonly [Symbol.species]: ArrayConstructor;
|
|
275
297
|
})[];
|
|
276
298
|
default(): never[];
|
|
299
|
+
watch: boolean;
|
|
277
300
|
};
|
|
278
301
|
component: {
|
|
279
302
|
type: StringConstructor;
|
|
303
|
+
watch: boolean;
|
|
280
304
|
};
|
|
281
305
|
allowDuplicate: {
|
|
282
306
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -301,10 +325,12 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
301
325
|
directives: {
|
|
302
326
|
type: ObjectConstructor;
|
|
303
327
|
default(): {};
|
|
328
|
+
watch: boolean;
|
|
304
329
|
};
|
|
305
330
|
events: {
|
|
306
331
|
type: ObjectConstructor;
|
|
307
332
|
default(): {};
|
|
333
|
+
watch: boolean;
|
|
308
334
|
};
|
|
309
335
|
instanceObject: {
|
|
310
336
|
type: ObjectConstructor;
|
|
@@ -316,6 +342,7 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
316
342
|
keyMap: {
|
|
317
343
|
type: ObjectConstructor;
|
|
318
344
|
default(): {};
|
|
345
|
+
watch: boolean;
|
|
319
346
|
};
|
|
320
347
|
light: {
|
|
321
348
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -327,6 +354,7 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
327
354
|
};
|
|
328
355
|
parent: {
|
|
329
356
|
type: ObjectConstructor;
|
|
357
|
+
watch: boolean;
|
|
330
358
|
};
|
|
331
359
|
tabStop: {
|
|
332
360
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -384,25 +412,31 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
384
412
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
385
413
|
activator: {
|
|
386
414
|
type: ObjectConstructor;
|
|
415
|
+
watch: boolean;
|
|
387
416
|
};
|
|
388
417
|
avatarProps: {
|
|
389
418
|
type: ObjectConstructor;
|
|
390
419
|
default: () => {};
|
|
420
|
+
watch: boolean;
|
|
391
421
|
};
|
|
392
422
|
bottomSlot: {
|
|
393
423
|
type: () => IComponentRender[];
|
|
394
424
|
default: () => never[];
|
|
425
|
+
watch: boolean;
|
|
395
426
|
};
|
|
396
427
|
centerSlot: {
|
|
397
428
|
type: () => IComponentRender[];
|
|
429
|
+
watch: boolean;
|
|
398
430
|
};
|
|
399
431
|
topSlot: {
|
|
400
432
|
type: () => IComponentRender[];
|
|
401
433
|
default: () => never[];
|
|
434
|
+
watch: boolean;
|
|
402
435
|
};
|
|
403
436
|
headerSlot: {
|
|
404
437
|
type: () => IComponentRender[];
|
|
405
438
|
default: () => never[];
|
|
439
|
+
watch: boolean;
|
|
406
440
|
};
|
|
407
441
|
user: {
|
|
408
442
|
type: StringConstructor;
|
|
@@ -480,16 +514,20 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
480
514
|
isArray(arg: any): arg is any[];
|
|
481
515
|
readonly prototype: any[];
|
|
482
516
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
483
|
-
from<
|
|
484
|
-
from<
|
|
485
|
-
from<
|
|
486
|
-
of<
|
|
517
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
518
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
519
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
520
|
+
of<T>(...items: T[]): T[];
|
|
521
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
522
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
487
523
|
readonly [Symbol.species]: ArrayConstructor;
|
|
488
524
|
})[];
|
|
489
525
|
default(): never[];
|
|
526
|
+
watch: boolean;
|
|
490
527
|
};
|
|
491
528
|
component: {
|
|
492
529
|
type: StringConstructor;
|
|
530
|
+
watch: boolean;
|
|
493
531
|
};
|
|
494
532
|
allowDuplicate: {
|
|
495
533
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -514,10 +552,12 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
514
552
|
directives: {
|
|
515
553
|
type: ObjectConstructor;
|
|
516
554
|
default(): {};
|
|
555
|
+
watch: boolean;
|
|
517
556
|
};
|
|
518
557
|
events: {
|
|
519
558
|
type: ObjectConstructor;
|
|
520
559
|
default(): {};
|
|
560
|
+
watch: boolean;
|
|
521
561
|
};
|
|
522
562
|
instanceObject: {
|
|
523
563
|
type: ObjectConstructor;
|
|
@@ -529,6 +569,7 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
529
569
|
keyMap: {
|
|
530
570
|
type: ObjectConstructor;
|
|
531
571
|
default(): {};
|
|
572
|
+
watch: boolean;
|
|
532
573
|
};
|
|
533
574
|
light: {
|
|
534
575
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -540,6 +581,7 @@ declare const userInfoComponent: import('vue').DefineComponent<import('vue').Ext
|
|
|
540
581
|
};
|
|
541
582
|
parent: {
|
|
542
583
|
type: ObjectConstructor;
|
|
584
|
+
watch: boolean;
|
|
543
585
|
};
|
|
544
586
|
tabStop: {
|
|
545
587
|
type: (BooleanConstructor | StringConstructor)[];
|