@volverjs/ui-vue 0.0.5 → 0.0.6-beta.1

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,36 @@
1
+ export declare const defaultArgs: {
2
+ imgSrc: string;
3
+ };
4
+ export declare const argTypes: {
5
+ default: {
6
+ description: string;
7
+ control: {
8
+ type: string;
9
+ };
10
+ table: {
11
+ category: string;
12
+ type: {
13
+ summary: string;
14
+ };
15
+ };
16
+ };
17
+ modifiers: {
18
+ options: string[];
19
+ type: {
20
+ summary: string[];
21
+ };
22
+ description: string;
23
+ control: {
24
+ type: string;
25
+ };
26
+ };
27
+ imgSrc: {
28
+ type: {
29
+ summary: string;
30
+ };
31
+ control: {
32
+ type: string;
33
+ };
34
+ description: string;
35
+ };
36
+ };
@@ -0,0 +1,2 @@
1
+ import type { PlayAttributes } from '@/test/types';
2
+ export declare function defaultTest({ canvasElement, args }: PlayAttributes): Promise<void>;
@@ -11,6 +11,9 @@ declare global {
11
11
  interface Matchers<R> {
12
12
  toHaveClass: (className: string | string[], expected?: HTMLElement) => CustomMatcherResult;
13
13
  }
14
+ interface Matchers<R> {
15
+ toHaveImgChild: (imgTag: string, expected?: HTMLElement) => CustomMatcherResult;
16
+ }
14
17
  }
15
18
  }
16
19
  export { expect };
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.5",
22
+ "version": "0.0.6-beta.1",
23
23
  "engines": {
24
24
  "node": ">= 16.x"
25
25
  },
@@ -154,6 +154,9 @@
154
154
  "vv-action": [
155
155
  "dist/components/VvAction/VvAction.vue.d.ts"
156
156
  ],
157
+ "vv-avatar": [
158
+ "dist/components/VvAvatar/VvAvatar.vue.d.ts"
159
+ ],
157
160
  "vv-badge": [
158
161
  "dist/components/VvBadge/VvBadge.vue.d.ts"
159
162
  ],
@@ -275,6 +278,11 @@
275
278
  "import": "./dist/components/VvAction/VvAction.es.js",
276
279
  "default": "./dist/components/VvAction/VvAction.umd.js"
277
280
  },
281
+ "./vv-avatar": {
282
+ "types": "./dist/components/VvAvatar/VvAvatar.vue.d.ts",
283
+ "import": "./dist/components/VvAvatar/VvAvatar.es.js",
284
+ "default": "./dist/components/VvAvatar/VvAvatar.umd.js"
285
+ },
278
286
  "./vv-badge": {
279
287
  "types": "./dist/components/VvBadge/VvBadge.vue.d.ts",
280
288
  "import": "./dist/components/VvBadge/VvBadge.es.js",