@zeedhi/zd-avatar-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/avatar-vue.es.js +35782 -68799
- package/dist/types/components/Avatar.d.ts +39 -12
- package/package.json +3 -3
|
@@ -11,6 +11,7 @@ export declare const ZdAvatarProps: {
|
|
|
11
11
|
};
|
|
12
12
|
avatarSlot: {
|
|
13
13
|
type: () => IComponentRender[];
|
|
14
|
+
watch: boolean;
|
|
14
15
|
};
|
|
15
16
|
color: {
|
|
16
17
|
type: StringConstructor;
|
|
@@ -47,16 +48,20 @@ export declare const ZdAvatarProps: {
|
|
|
47
48
|
isArray(arg: any): arg is any[];
|
|
48
49
|
readonly prototype: any[];
|
|
49
50
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
50
|
-
from<
|
|
51
|
-
from<
|
|
52
|
-
from<
|
|
53
|
-
of<
|
|
51
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
52
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
53
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
54
|
+
of<T>(...items: T[]): T[];
|
|
55
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
56
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
54
57
|
readonly [Symbol.species]: ArrayConstructor;
|
|
55
58
|
})[];
|
|
56
59
|
default(): never[];
|
|
60
|
+
watch: boolean;
|
|
57
61
|
};
|
|
58
62
|
component: {
|
|
59
63
|
type: StringConstructor;
|
|
64
|
+
watch: boolean;
|
|
60
65
|
};
|
|
61
66
|
allowDuplicate: {
|
|
62
67
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -81,10 +86,12 @@ export declare const ZdAvatarProps: {
|
|
|
81
86
|
directives: {
|
|
82
87
|
type: ObjectConstructor;
|
|
83
88
|
default(): {};
|
|
89
|
+
watch: boolean;
|
|
84
90
|
};
|
|
85
91
|
events: {
|
|
86
92
|
type: ObjectConstructor;
|
|
87
93
|
default(): {};
|
|
94
|
+
watch: boolean;
|
|
88
95
|
};
|
|
89
96
|
instanceObject: {
|
|
90
97
|
type: ObjectConstructor;
|
|
@@ -96,6 +103,7 @@ export declare const ZdAvatarProps: {
|
|
|
96
103
|
keyMap: {
|
|
97
104
|
type: ObjectConstructor;
|
|
98
105
|
default(): {};
|
|
106
|
+
watch: boolean;
|
|
99
107
|
};
|
|
100
108
|
light: {
|
|
101
109
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -107,6 +115,7 @@ export declare const ZdAvatarProps: {
|
|
|
107
115
|
};
|
|
108
116
|
parent: {
|
|
109
117
|
type: ObjectConstructor;
|
|
118
|
+
watch: boolean;
|
|
110
119
|
};
|
|
111
120
|
tabStop: {
|
|
112
121
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -127,6 +136,7 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
127
136
|
};
|
|
128
137
|
avatarSlot: {
|
|
129
138
|
type: () => IComponentRender[];
|
|
139
|
+
watch: boolean;
|
|
130
140
|
};
|
|
131
141
|
color: {
|
|
132
142
|
type: StringConstructor;
|
|
@@ -163,16 +173,20 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
163
173
|
isArray(arg: any): arg is any[];
|
|
164
174
|
readonly prototype: any[];
|
|
165
175
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
166
|
-
from<
|
|
167
|
-
from<
|
|
168
|
-
from<
|
|
169
|
-
of<
|
|
176
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
177
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
178
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
179
|
+
of<T>(...items: T[]): T[];
|
|
180
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
181
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
170
182
|
readonly [Symbol.species]: ArrayConstructor;
|
|
171
183
|
})[];
|
|
172
184
|
default(): never[];
|
|
185
|
+
watch: boolean;
|
|
173
186
|
};
|
|
174
187
|
component: {
|
|
175
188
|
type: StringConstructor;
|
|
189
|
+
watch: boolean;
|
|
176
190
|
};
|
|
177
191
|
allowDuplicate: {
|
|
178
192
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -197,10 +211,12 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
197
211
|
directives: {
|
|
198
212
|
type: ObjectConstructor;
|
|
199
213
|
default(): {};
|
|
214
|
+
watch: boolean;
|
|
200
215
|
};
|
|
201
216
|
events: {
|
|
202
217
|
type: ObjectConstructor;
|
|
203
218
|
default(): {};
|
|
219
|
+
watch: boolean;
|
|
204
220
|
};
|
|
205
221
|
instanceObject: {
|
|
206
222
|
type: ObjectConstructor;
|
|
@@ -212,6 +228,7 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
212
228
|
keyMap: {
|
|
213
229
|
type: ObjectConstructor;
|
|
214
230
|
default(): {};
|
|
231
|
+
watch: boolean;
|
|
215
232
|
};
|
|
216
233
|
light: {
|
|
217
234
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -223,6 +240,7 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
223
240
|
};
|
|
224
241
|
parent: {
|
|
225
242
|
type: ObjectConstructor;
|
|
243
|
+
watch: boolean;
|
|
226
244
|
};
|
|
227
245
|
tabStop: {
|
|
228
246
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -248,6 +266,7 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
248
266
|
};
|
|
249
267
|
avatarSlot: {
|
|
250
268
|
type: () => IComponentRender[];
|
|
269
|
+
watch: boolean;
|
|
251
270
|
};
|
|
252
271
|
color: {
|
|
253
272
|
type: StringConstructor;
|
|
@@ -284,16 +303,20 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
284
303
|
isArray(arg: any): arg is any[];
|
|
285
304
|
readonly prototype: any[];
|
|
286
305
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
287
|
-
from<
|
|
288
|
-
from<
|
|
289
|
-
from<
|
|
290
|
-
of<
|
|
306
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
307
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
308
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
309
|
+
of<T>(...items: T[]): T[];
|
|
310
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
311
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
291
312
|
readonly [Symbol.species]: ArrayConstructor;
|
|
292
313
|
})[];
|
|
293
314
|
default(): never[];
|
|
315
|
+
watch: boolean;
|
|
294
316
|
};
|
|
295
317
|
component: {
|
|
296
318
|
type: StringConstructor;
|
|
319
|
+
watch: boolean;
|
|
297
320
|
};
|
|
298
321
|
allowDuplicate: {
|
|
299
322
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -318,10 +341,12 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
318
341
|
directives: {
|
|
319
342
|
type: ObjectConstructor;
|
|
320
343
|
default(): {};
|
|
344
|
+
watch: boolean;
|
|
321
345
|
};
|
|
322
346
|
events: {
|
|
323
347
|
type: ObjectConstructor;
|
|
324
348
|
default(): {};
|
|
349
|
+
watch: boolean;
|
|
325
350
|
};
|
|
326
351
|
instanceObject: {
|
|
327
352
|
type: ObjectConstructor;
|
|
@@ -333,6 +358,7 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
333
358
|
keyMap: {
|
|
334
359
|
type: ObjectConstructor;
|
|
335
360
|
default(): {};
|
|
361
|
+
watch: boolean;
|
|
336
362
|
};
|
|
337
363
|
light: {
|
|
338
364
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -344,6 +370,7 @@ declare const avatarComponent: import('vue').DefineComponent<import('vue').Extra
|
|
|
344
370
|
};
|
|
345
371
|
parent: {
|
|
346
372
|
type: ObjectConstructor;
|
|
373
|
+
watch: boolean;
|
|
347
374
|
};
|
|
348
375
|
tabStop: {
|
|
349
376
|
type: (BooleanConstructor | StringConstructor)[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/zd-avatar-vue",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Powered by Zeedhi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@vue/tsconfig": "^0.7.0",
|
|
34
34
|
"@zeedhi/common": "^3.0.0",
|
|
35
35
|
"@zeedhi/vuetify": "^3.0.0",
|
|
36
|
-
"@zeedhi/zd-avatar-common": "^3.0
|
|
36
|
+
"@zeedhi/zd-avatar-common": "^3.1.0",
|
|
37
37
|
"sass": "^1.83.0",
|
|
38
38
|
"typescript": "~5.6.2",
|
|
39
39
|
"vite": "^6.0.1",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"env": {
|
|
46
46
|
"NODE_ENV": "production"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "b273885caf868183ee88ef3a3eea427c7695584f"
|
|
49
49
|
}
|