@erst-vg/vg-design-wrapper 1.0.12 → 2.0.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/src/App.vue.d.ts +1 -1
  3. package/dist/src/VgDesign.vue.d.ts +2 -2
  4. package/dist/src/components/VgAccordion.vue.d.ts +6 -6
  5. package/dist/src/components/VgButton.vue.d.ts +4 -4
  6. package/dist/src/components/VgButtons.vue.d.ts +1 -1
  7. package/dist/src/components/VgCard.vue.d.ts +4 -4
  8. package/dist/src/components/VgCardGroup.vue.d.ts +4 -4
  9. package/dist/src/components/VgDesignWrapper.vue.d.ts +1 -1
  10. package/dist/src/components/VgIcon.vue.d.ts +4 -4
  11. package/dist/src/components/VgKalturaVideo.vue.d.ts +39 -0
  12. package/dist/src/components/VgListe.vue.d.ts +6 -6
  13. package/dist/src/components/VgListeCard.vue.d.ts +4 -4
  14. package/dist/src/components/VgLoginButton.vue.d.ts +1 -1
  15. package/dist/src/components/VgPagination.vue.d.ts +5 -5
  16. package/dist/src/components/VgVideo.vue.d.ts +28 -0
  17. package/dist/src/components/VgVideoToolVideo.vue.d.ts +39 -0
  18. package/dist/src/components/VgVimeoVideo.vue.d.ts +39 -0
  19. package/dist/src/index.d.ts +2 -1
  20. package/dist/tests/unit/components/VgKalturaVideo.spec.d.ts +1 -0
  21. package/dist/tests/unit/components/VgVideo.spec.d.ts +1 -0
  22. package/dist/tests/unit/components/VgVideoToolVideo.spec.d.ts +1 -0
  23. package/dist/tests/unit/components/VgVimeoVideo.spec.d.ts +1 -0
  24. package/dist/vg-design-wrapper.js +3820 -1856
  25. package/dist/vg-design-wrapper.umd.cjs +68 -63
  26. package/package.json +30 -33
  27. package/src/assets/icons/agenda.svg +3 -0
  28. package/src/assets/icons/breadcrumbArrow.svg +1 -1
  29. package/src/components/VgAccordion.vue +2 -2
  30. package/src/components/VgCard.vue +1 -1
  31. package/src/components/VgDesignWrapper.vue +7 -10
  32. package/src/components/VgIcon.vue +1 -1
  33. package/src/components/VgKalturaVideo.vue +70 -0
  34. package/src/components/VgListe.vue +1 -1
  35. package/src/components/VgListeCard.vue +1 -1
  36. package/src/components/VgLoginButton.vue +1 -1
  37. package/src/components/VgVideo.vue +65 -0
  38. package/src/components/VgVideoToolVideo.vue +70 -0
  39. package/src/components/VgVimeoVideo.vue +64 -0
  40. package/src/styles/custom/_vgAccordion.scss +1 -0
  41. package/src/styles/custom/_vgVideo.scss +86 -0
  42. package/src/styles/custom/_vgVideoFrame.scss +9 -0
  43. package/src/styles/utility.scss +2 -0
  44. package/src/styles/vg/_vg-colors.scss +3 -0
  45. package/src/styles/vg/accordion/_vg-accordion.scss +32 -1
  46. package/src/styles/vg/buttons/_vg-buttons.scss +9 -2
  47. package/src/styles/vg/card/_vg-cardText.scss +3 -0
  48. package/src/styles/vg/card/_vg-udvidedecardgrupper.scss +51 -5
  49. package/src/styles/vg/mixins/_vg-mediaquery-helpers.scss +16 -9
  50. package/src/styles/vg/pagination/_vg-pagination.scss +2 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ### 2.0.1 (December 2025)
4
+
5
+ - Mindre designjusteringer til accordions.
6
+ - Rettelse af tekst i loginknap.
7
+
8
+ ### 2.0.0 (Oktober 2025)
9
+
10
+ - BREAKING: Opgradering af Vue, TypeScript og SCSS.
11
+ - Eksporterer utility.scss i node_modules til brug af applikationer.
12
+ - Giver adgang til farvevariable og media-query mixins.
13
+ - Kan benyttes med `@use '@erst-vg/vg-design-wrapper/styles/utility' as *;`
14
+
3
15
  ### 1.0.11 (Juni 2025)
4
16
 
5
17
  - Mindre designjusteringer til VgLoginButton.vue
@@ -1,2 +1,2 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,6 +1,6 @@
1
1
  declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
2
  "icon-list": (...args: any[]) => void;
3
- }, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{}>> & {
3
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
4
  "onIcon-list"?: ((...args: any[]) => any) | undefined;
5
- }, {}, {}>;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
6
6
  export default _default;
@@ -13,7 +13,7 @@ declare function __VLS_template(): {
13
13
  index: number;
14
14
  }): any;
15
15
  };
16
- declare const __VLS_component: import('vue').DefineComponent<{
16
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
17
17
  accordions: {
18
18
  type: PropType<any>;
19
19
  default: null;
@@ -31,10 +31,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
31
31
  type: PropType<"h1" | "h2" | "h3" | "h4" | "h5" | "h6">;
32
32
  default: string;
33
33
  };
34
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
34
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
35
35
  toggle: (...args: any[]) => void;
36
36
  "toggle-bulk": (...args: any[]) => void;
37
- }, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
37
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
38
38
  accordions: {
39
39
  type: PropType<any>;
40
40
  default: null;
@@ -52,15 +52,15 @@ declare const __VLS_component: import('vue').DefineComponent<{
52
52
  type: PropType<"h1" | "h2" | "h3" | "h4" | "h5" | "h6">;
53
53
  default: string;
54
54
  };
55
- }>> & {
55
+ }>> & Readonly<{
56
56
  onToggle?: ((...args: any[]) => any) | undefined;
57
57
  "onToggle-bulk"?: ((...args: any[]) => any) | undefined;
58
- }, {
58
+ }>, {
59
59
  accordions: any;
60
60
  id: string;
61
61
  bulk: boolean;
62
62
  heading: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
63
- }, {}>;
63
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
64
64
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
65
65
  export default _default;
66
66
 
@@ -1,21 +1,21 @@
1
1
  declare function __VLS_template(): {
2
2
  default?(_: {}): any;
3
3
  };
4
- declare const __VLS_component: import('vue').DefineComponent<{
4
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
5
  icon: {
6
6
  type: StringConstructor;
7
7
  required: false;
8
8
  default: string;
9
9
  };
10
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
10
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
11
11
  icon: {
12
12
  type: StringConstructor;
13
13
  required: false;
14
14
  default: string;
15
15
  };
16
- }>>, {
16
+ }>> & Readonly<{}>, {
17
17
  icon: string;
18
- }, {}>;
18
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
19
19
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
20
20
  export default _default;
21
21
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,2 +1,2 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -2,7 +2,7 @@ import { PropType } from 'vue';
2
2
  declare function __VLS_template(): {
3
3
  text?(_: {}): any;
4
4
  };
5
- declare const __VLS_component: import('vue').DefineComponent<{
5
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
6
6
  billede: {
7
7
  type: PropType<{
8
8
  url: string;
@@ -34,7 +34,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
34
34
  }>;
35
35
  required: true;
36
36
  };
37
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
37
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
38
38
  billede: {
39
39
  type: PropType<{
40
40
  url: string;
@@ -66,7 +66,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
66
66
  }>;
67
67
  required: true;
68
68
  };
69
- }>>, {
69
+ }>> & Readonly<{}>, {
70
70
  label: string;
71
71
  billede: {
72
72
  url: string;
@@ -74,7 +74,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
74
74
  };
75
75
  showBilleder: boolean;
76
76
  linkText: string;
77
- }, {}>;
77
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
78
78
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
79
79
  export default _default;
80
80
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,21 +1,21 @@
1
1
  declare function __VLS_template(): {
2
2
  default?(_: {}): any;
3
3
  };
4
- declare const __VLS_component: import('vue').DefineComponent<{
4
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
5
  titel: {
6
6
  type: StringConstructor;
7
7
  required: false;
8
8
  default: undefined;
9
9
  };
10
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
10
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
11
11
  titel: {
12
12
  type: StringConstructor;
13
13
  required: false;
14
14
  default: undefined;
15
15
  };
16
- }>>, {
16
+ }>> & Readonly<{}>, {
17
17
  titel: string;
18
- }, {}>;
18
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
19
19
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
20
20
  export default _default;
21
21
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,7 +1,7 @@
1
1
  declare function __VLS_template(): {
2
2
  default?(_: {}): any;
3
3
  };
4
- declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
5
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
6
6
  export default _default;
7
7
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,4 +1,4 @@
1
- declare const _default: import('vue').DefineComponent<{
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
2
  icon: {
3
3
  type: StringConstructor;
4
4
  required: true;
@@ -11,7 +11,7 @@ declare const _default: import('vue').DefineComponent<{
11
11
  type: StringConstructor;
12
12
  default: undefined;
13
13
  };
14
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
14
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
15
  icon: {
16
16
  type: StringConstructor;
17
17
  required: true;
@@ -24,8 +24,8 @@ declare const _default: import('vue').DefineComponent<{
24
24
  type: StringConstructor;
25
25
  default: undefined;
26
26
  };
27
- }>>, {
27
+ }>> & Readonly<{}>, {
28
28
  focusable: string;
29
29
  title: string;
30
- }, {}>;
30
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
31
31
  export default _default;
@@ -0,0 +1,39 @@
1
+ declare function __VLS_template(): {
2
+ preview?(_: {
3
+ thumbnailUrl: string;
4
+ }): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
7
+ src: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ alt: {
12
+ type: StringConstructor;
13
+ required: true;
14
+ };
15
+ playVideo: {
16
+ type: BooleanConstructor;
17
+ required: true;
18
+ };
19
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
20
+ src: {
21
+ type: StringConstructor;
22
+ required: true;
23
+ };
24
+ alt: {
25
+ type: StringConstructor;
26
+ required: true;
27
+ };
28
+ playVideo: {
29
+ type: BooleanConstructor;
30
+ required: true;
31
+ };
32
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
33
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
34
+ export default _default;
35
+ type __VLS_WithTemplateSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
@@ -3,7 +3,7 @@ declare function __VLS_template(): {
3
3
  default?(_: {}): any;
4
4
  spinner?(_: {}): any;
5
5
  };
6
- declare const __VLS_component: import('vue').DefineComponent<{
6
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
7
7
  titel: {
8
8
  type: StringConstructor;
9
9
  required: false;
@@ -21,9 +21,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
21
21
  type: PropType<any>;
22
22
  required: true;
23
23
  };
24
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
24
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
25
  "load-slice": (...args: any[]) => void;
26
- }, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
26
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
27
27
  titel: {
28
28
  type: StringConstructor;
29
29
  required: false;
@@ -41,12 +41,12 @@ declare const __VLS_component: import('vue').DefineComponent<{
41
41
  type: PropType<any>;
42
42
  required: true;
43
43
  };
44
- }>> & {
44
+ }>> & Readonly<{
45
45
  "onLoad-slice"?: ((...args: any[]) => any) | undefined;
46
- }, {
46
+ }>, {
47
47
  titel: string;
48
48
  useSpinner: boolean;
49
- }, {}>;
49
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
50
50
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
51
51
  export default _default;
52
52
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,7 +1,7 @@
1
1
  declare function __VLS_template(): {
2
2
  default?(_: {}): any;
3
3
  };
4
- declare const __VLS_component: import('vue').DefineComponent<{
4
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
5
  label: {
6
6
  type: StringConstructor;
7
7
  required: false;
@@ -11,7 +11,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
11
11
  type: StringConstructor;
12
12
  required: true;
13
13
  };
14
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
14
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
15
  label: {
16
16
  type: StringConstructor;
17
17
  required: false;
@@ -21,9 +21,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
21
21
  type: StringConstructor;
22
22
  required: true;
23
23
  };
24
- }>>, {
24
+ }>> & Readonly<{}>, {
25
25
  label: string;
26
- }, {}>;
26
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
27
27
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
28
28
  export default _default;
29
29
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,2 +1,2 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,4 +1,4 @@
1
- declare const _default: import('vue').DefineComponent<{
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
2
  currentPage: {
3
3
  type: NumberConstructor;
4
4
  required: true;
@@ -7,9 +7,9 @@ declare const _default: import('vue').DefineComponent<{
7
7
  type: NumberConstructor;
8
8
  required: true;
9
9
  };
10
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
11
  toPage: (...args: any[]) => void;
12
- }, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
12
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
13
  currentPage: {
14
14
  type: NumberConstructor;
15
15
  required: true;
@@ -18,7 +18,7 @@ declare const _default: import('vue').DefineComponent<{
18
18
  type: NumberConstructor;
19
19
  required: true;
20
20
  };
21
- }>> & {
21
+ }>> & Readonly<{
22
22
  onToPage?: ((...args: any[]) => any) | undefined;
23
- }, {}, {}>;
23
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
24
24
  export default _default;
@@ -0,0 +1,28 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ src: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ alt: {
7
+ type: StringConstructor;
8
+ required: true;
9
+ };
10
+ cookiebanner: {
11
+ type: StringConstructor;
12
+ required: true;
13
+ };
14
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
+ src: {
16
+ type: StringConstructor;
17
+ required: true;
18
+ };
19
+ alt: {
20
+ type: StringConstructor;
21
+ required: true;
22
+ };
23
+ cookiebanner: {
24
+ type: StringConstructor;
25
+ required: true;
26
+ };
27
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
28
+ export default _default;
@@ -0,0 +1,39 @@
1
+ declare function __VLS_template(): {
2
+ preview?(_: {
3
+ thumbnailUrl: string;
4
+ }): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
7
+ src: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ alt: {
12
+ type: StringConstructor;
13
+ required: true;
14
+ };
15
+ playVideo: {
16
+ type: BooleanConstructor;
17
+ required: true;
18
+ };
19
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
20
+ src: {
21
+ type: StringConstructor;
22
+ required: true;
23
+ };
24
+ alt: {
25
+ type: StringConstructor;
26
+ required: true;
27
+ };
28
+ playVideo: {
29
+ type: BooleanConstructor;
30
+ required: true;
31
+ };
32
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
33
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
34
+ export default _default;
35
+ type __VLS_WithTemplateSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
@@ -0,0 +1,39 @@
1
+ declare function __VLS_template(): {
2
+ preview?(_: {
3
+ thumbnailUrl: string;
4
+ }): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
7
+ src: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ alt: {
12
+ type: StringConstructor;
13
+ required: true;
14
+ };
15
+ playVideo: {
16
+ type: BooleanConstructor;
17
+ required: true;
18
+ };
19
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
20
+ src: {
21
+ type: StringConstructor;
22
+ required: true;
23
+ };
24
+ alt: {
25
+ type: StringConstructor;
26
+ required: true;
27
+ };
28
+ playVideo: {
29
+ type: BooleanConstructor;
30
+ required: true;
31
+ };
32
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
33
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
34
+ export default _default;
35
+ type __VLS_WithTemplateSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
@@ -9,4 +9,5 @@ import { default as VgListe } from './components/VgListe.vue';
9
9
  import { default as VgListeCard } from './components/VgListeCard.vue';
10
10
  import { default as VgLoginButton } from './components/VgLoginButton.vue';
11
11
  import { default as VgPagination } from './components/VgPagination.vue';
12
- export { VgAccordion, VgButton, VgButtons, VgCard, VgCardGroup, VgDesignWrapper, VgIcon, VgListe, VgListeCard, VgLoginButton, VgPagination };
12
+ import { default as VgVideo } from './components/VgVideo.vue';
13
+ export { VgAccordion, VgButton, VgButtons, VgCard, VgCardGroup, VgDesignWrapper, VgIcon, VgListe, VgListeCard, VgLoginButton, VgPagination, VgVideo };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};