@volverjs/ui-vue 0.0.6-beta.1 → 0.0.6-beta.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.
@@ -0,0 +1,56 @@
1
+ export declare const defaultArgs: {
2
+ items: ({
3
+ text: string;
4
+ imgSrc: string;
5
+ modifiers: string;
6
+ } | {
7
+ imgSrc: string;
8
+ modifiers: string;
9
+ text?: undefined;
10
+ })[];
11
+ avatarModifiers: string;
12
+ };
13
+ export declare const argTypes: {
14
+ default: {
15
+ description: string;
16
+ control: {
17
+ type: string;
18
+ };
19
+ table: {
20
+ category: string;
21
+ type: {
22
+ summary: string;
23
+ };
24
+ };
25
+ };
26
+ modifiers: {
27
+ options: string[];
28
+ type: {
29
+ summary: string[];
30
+ };
31
+ description: string;
32
+ control: {
33
+ type: string;
34
+ };
35
+ };
36
+ avatarModifiers: {
37
+ options: string[];
38
+ type: {
39
+ summary: string[];
40
+ };
41
+ description: string;
42
+ control: {
43
+ type: string;
44
+ };
45
+ };
46
+ toShow: {
47
+ control: {
48
+ type: string;
49
+ };
50
+ };
51
+ totalItems: {
52
+ control: {
53
+ type: string;
54
+ };
55
+ };
56
+ };
@@ -0,0 +1,2 @@
1
+ import type { PlayAttributes } from '@/test/types';
2
+ export declare function defaultTest({ canvasElement, args }: PlayAttributes): Promise<void>;
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "bugs": {
20
20
  "url": "https://github.com/volverjs/ui-vue/issues"
21
21
  },
22
- "version": "0.0.6-beta.1",
22
+ "version": "0.0.6-beta.2",
23
23
  "engines": {
24
24
  "node": ">= 16.x"
25
25
  },
@@ -157,6 +157,9 @@
157
157
  "vv-avatar": [
158
158
  "dist/components/VvAvatar/VvAvatar.vue.d.ts"
159
159
  ],
160
+ "vv-avatar-group": [
161
+ "dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts"
162
+ ],
160
163
  "vv-badge": [
161
164
  "dist/components/VvBadge/VvBadge.vue.d.ts"
162
165
  ],
@@ -283,6 +286,11 @@
283
286
  "import": "./dist/components/VvAvatar/VvAvatar.es.js",
284
287
  "default": "./dist/components/VvAvatar/VvAvatar.umd.js"
285
288
  },
289
+ "./vv-avatar-group": {
290
+ "types": "./dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts",
291
+ "import": "./dist/components/VvAvatarGroup/VvAvatarGroup.es.js",
292
+ "default": "./dist/components/VvAvatarGroup/VvAvatarGroup.umd.js"
293
+ },
286
294
  "./vv-badge": {
287
295
  "types": "./dist/components/VvBadge/VvBadge.vue.d.ts",
288
296
  "import": "./dist/components/VvBadge/VvBadge.es.js",