ep-lib-ts 0.0.8 → 0.0.9

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 (137) hide show
  1. package/dist/components/basics/EpBadge.vue.d.ts +38 -4
  2. package/dist/components/basics/EpBtn.vue.d.ts +108 -4
  3. package/dist/components/basics/EpCard.vue.d.ts +95 -4
  4. package/dist/components/basics/EpChip.vue.d.ts +72 -4
  5. package/dist/components/basics/EpDivider.vue.d.ts +51 -4
  6. package/dist/components/basics/EpFlex.vue.d.ts +9 -4
  7. package/dist/components/basics/EpIcon.vue.d.ts +37 -4
  8. package/dist/components/basics/EpImg.vue.d.ts +76 -4
  9. package/dist/components/basics/EpSection.vue.d.ts +84 -4
  10. package/dist/components/basics/EpSpinner.vue.d.ts +32 -4
  11. package/dist/components/basics/EpTable.vue.d.ts +24 -4
  12. package/dist/components/basics/EpText.vue.d.ts +30 -4
  13. package/dist/components/charts/EpBarChart.vue.d.ts +82 -4
  14. package/dist/components/charts/EpLineChart.vue.d.ts +82 -4
  15. package/dist/components/charts/EpPieChart.vue.d.ts +1 -2
  16. package/dist/components/educationals/EpEdu.vue.d.ts +80 -4
  17. package/dist/components/educationals/EpReading.vue.d.ts +151 -4
  18. package/dist/components/educationals/EpScope.vue.d.ts +14 -4
  19. package/dist/components/interactions/EpAccordeon.vue.d.ts +53 -4
  20. package/dist/components/interactions/EpContentSlider.vue.d.ts +2 -5
  21. package/dist/components/interactions/EpModal.vue.d.ts +70 -5
  22. package/dist/components/interactions/EpQuestion.vue.d.ts +1 -2
  23. package/dist/components/interactions/EpTabs.vue.d.ts +2 -0
  24. package/dist/components/medias/EpAudio.vue.d.ts +79 -4
  25. package/dist/components/medias/EpCarousel.vue.d.ts +31 -4
  26. package/dist/components/medias/EpIframe.vue.d.ts +58 -4
  27. package/dist/components/medias/EpKatex.vue.d.ts +51 -4
  28. package/dist/components/medias/EpLink.vue.d.ts +73 -4
  29. package/dist/components/medias/EpSoftware.vue.d.ts +88 -4
  30. package/dist/components/medias/EpSvg.vue.d.ts +1 -2
  31. package/dist/components/medias/EpTerm.vue.d.ts +80 -4
  32. package/dist/components/medias/EpTimeLine.vue.d.ts +1 -2
  33. package/dist/components/medias/EpVideo.vue.d.ts +64 -4
  34. package/dist/components/medias/EpVideoPanopto.vue.d.ts +64 -4
  35. package/dist/components/signages/EpAlert.vue.d.ts +63 -4
  36. package/dist/components/signages/EpHeader.vue.d.ts +101 -4
  37. package/dist/components/signages/EpQuote.vue.d.ts +39 -4
  38. package/dist/components/tools/BgAudio.vue.d.ts +14 -4
  39. package/dist/components/tools/DisplayBox.vue.d.ts +17 -4
  40. package/dist/ep-lib-ts.js +27411 -0
  41. package/dist/ep-lib-ts.umd.cjs +1005 -0
  42. package/dist/index.d.ts +37 -1
  43. package/dist/{ep-lib-ts.css → style.css} +1 -1
  44. package/package.json +25 -23
  45. package/src/components/basics/EpBadge.vue +48 -0
  46. package/src/components/basics/EpBtn.vue +100 -0
  47. package/src/components/basics/EpCard.vue +95 -0
  48. package/src/components/basics/EpChip.vue +81 -0
  49. package/src/components/basics/EpDivider.vue +40 -0
  50. package/src/components/basics/EpFlex.vue +42 -0
  51. package/src/components/basics/EpIcon.vue +25 -0
  52. package/src/components/basics/EpImg.vue +59 -0
  53. package/src/components/basics/EpSection.vue +238 -0
  54. package/src/components/basics/EpSpinner.vue +47 -0
  55. package/src/components/basics/EpTable.vue +33 -0
  56. package/src/components/basics/EpText.vue +85 -0
  57. package/src/components/charts/EpBarChart.vue +82 -0
  58. package/src/components/charts/EpLineChart.vue +92 -0
  59. package/src/components/charts/EpPieChart.vue +8 -0
  60. package/src/components/educationals/EpEdu.vue +93 -0
  61. package/src/components/educationals/EpReading.vue +234 -0
  62. package/src/components/educationals/EpScope.vue +25 -0
  63. package/src/components/forms/EpCheckbox.vue +49 -0
  64. package/src/components/forms/EpInput.vue +178 -0
  65. package/src/components/forms/EpRadio.vue +72 -0
  66. package/src/components/forms/EpSelect.vue +145 -0
  67. package/src/components/forms/EpSwitch.vue +58 -0
  68. package/src/components/forms/EpTextarea.vue +79 -0
  69. package/src/components/forms/EpToggle.vue +97 -0
  70. package/src/components/interactions/EpAccordeon.vue +88 -0
  71. package/src/components/interactions/EpContentSlider.vue +12 -0
  72. package/src/components/interactions/EpModal.vue +117 -0
  73. package/src/components/interactions/EpQuestion.vue +8 -0
  74. package/src/components/interactions/EpTabs.vue +10 -0
  75. package/src/components/medias/EpAudio.vue +83 -0
  76. package/src/components/medias/EpCarousel.vue +84 -0
  77. package/src/components/medias/EpIframe.vue +57 -0
  78. package/src/components/medias/EpKatex.vue +75 -0
  79. package/src/components/medias/EpLink.vue +62 -0
  80. package/src/components/medias/EpSoftware.vue +89 -0
  81. package/src/components/medias/EpSvg.vue +8 -0
  82. package/src/components/medias/EpTerm.vue +145 -0
  83. package/src/components/medias/EpTimeLine.vue +8 -0
  84. package/src/components/medias/EpVideo.vue +77 -0
  85. package/src/components/medias/EpVideoPanopto.vue +62 -0
  86. package/src/components/signages/EpAlert.vue +70 -0
  87. package/src/components/signages/EpHeader.vue +223 -0
  88. package/src/components/signages/EpQuote.vue +48 -0
  89. package/src/components/tools/BgAudio.vue +51 -0
  90. package/src/components/tools/DisplayBox.vue +37 -0
  91. package/dist/components/basics/EpBadge.vue.d.ts.map +0 -1
  92. package/dist/components/basics/EpBtn.vue.d.ts.map +0 -1
  93. package/dist/components/basics/EpCard.vue.d.ts.map +0 -1
  94. package/dist/components/basics/EpChip.vue.d.ts.map +0 -1
  95. package/dist/components/basics/EpDivider.vue.d.ts.map +0 -1
  96. package/dist/components/basics/EpFlex.vue.d.ts.map +0 -1
  97. package/dist/components/basics/EpIcon.vue.d.ts.map +0 -1
  98. package/dist/components/basics/EpImg.vue.d.ts.map +0 -1
  99. package/dist/components/basics/EpSection.vue.d.ts.map +0 -1
  100. package/dist/components/basics/EpSpinner.vue.d.ts.map +0 -1
  101. package/dist/components/basics/EpTable.vue.d.ts.map +0 -1
  102. package/dist/components/basics/EpText.vue.d.ts.map +0 -1
  103. package/dist/components/charts/EpBarChart.vue.d.ts.map +0 -1
  104. package/dist/components/charts/EpLineChart.vue.d.ts.map +0 -1
  105. package/dist/components/charts/EpPieChart.vue.d.ts.map +0 -1
  106. package/dist/components/educationals/EpEdu.vue.d.ts.map +0 -1
  107. package/dist/components/educationals/EpReading.vue.d.ts.map +0 -1
  108. package/dist/components/educationals/EpScope.vue.d.ts.map +0 -1
  109. package/dist/components/index.d.ts +0 -38
  110. package/dist/components/interactions/EpAccordeon.vue.d.ts.map +0 -1
  111. package/dist/components/interactions/EpContentSlider.vue.d.ts.map +0 -1
  112. package/dist/components/interactions/EpModal.vue.d.ts.map +0 -1
  113. package/dist/components/interactions/EpQuestion.vue.d.ts.map +0 -1
  114. package/dist/components/main.d.ts +0 -7
  115. package/dist/components/medias/EpAudio.vue.d.ts.map +0 -1
  116. package/dist/components/medias/EpCarousel.vue.d.ts.map +0 -1
  117. package/dist/components/medias/EpIframe.vue.d.ts.map +0 -1
  118. package/dist/components/medias/EpKatex.vue.d.ts.map +0 -1
  119. package/dist/components/medias/EpLink.vue.d.ts.map +0 -1
  120. package/dist/components/medias/EpLinkVersion.vue.d.ts +0 -3
  121. package/dist/components/medias/EpLinkVersion.vue.d.ts.map +0 -1
  122. package/dist/components/medias/EpResource.vue.d.ts +0 -3
  123. package/dist/components/medias/EpResource.vue.d.ts.map +0 -1
  124. package/dist/components/medias/EpSoftware.vue.d.ts.map +0 -1
  125. package/dist/components/medias/EpSvg.vue.d.ts.map +0 -1
  126. package/dist/components/medias/EpTerm.vue.d.ts.map +0 -1
  127. package/dist/components/medias/EpTimeLine.vue.d.ts.map +0 -1
  128. package/dist/components/medias/EpVideo.vue.d.ts.map +0 -1
  129. package/dist/components/medias/EpVideoPanopto.vue.d.ts.map +0 -1
  130. package/dist/components/signages/EpAlert.vue.d.ts.map +0 -1
  131. package/dist/components/signages/EpHeader.vue.d.ts.map +0 -1
  132. package/dist/components/signages/EpQuote.vue.d.ts.map +0 -1
  133. package/dist/components/tools/BgAudio.vue.d.ts.map +0 -1
  134. package/dist/components/tools/DisplayBox.vue.d.ts.map +0 -1
  135. package/dist/ep-lib-ts.cjs.js +0 -984
  136. package/dist/ep-lib-ts.es.js +0 -22617
  137. package/dist/ep-lib-ts.umd.js +0 -985
@@ -1,4 +1,79 @@
1
- import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpAudio.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpAudio.vue?vue&type=script&setup=true&lang.ts";
3
- export default _sfc_main;
4
- //# sourceMappingURL=EpAudio.vue.d.ts.map
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ type: {
6
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
7
+ default: string;
8
+ };
9
+ src: {
10
+ type: import("vue").PropType<string>;
11
+ required: true;
12
+ };
13
+ mandateLevel: {
14
+ type: import("vue").PropType<string | null>;
15
+ };
16
+ intentions: {
17
+ type: import("vue").PropType<string>;
18
+ };
19
+ hideIcon: {
20
+ type: import("vue").PropType<boolean>;
21
+ default: boolean;
22
+ };
23
+ labelIntentions: {
24
+ type: import("vue").PropType<string>;
25
+ default: string;
26
+ };
27
+ credits: {
28
+ type: import("vue").PropType<string>;
29
+ };
30
+ madateLevel: {
31
+ type: import("vue").PropType<string>;
32
+ };
33
+ messageError: {
34
+ type: import("vue").PropType<string>;
35
+ default: string;
36
+ };
37
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
38
+ title: {
39
+ type: import("vue").PropType<string>;
40
+ };
41
+ type: {
42
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
43
+ default: string;
44
+ };
45
+ src: {
46
+ type: import("vue").PropType<string>;
47
+ required: true;
48
+ };
49
+ mandateLevel: {
50
+ type: import("vue").PropType<string | null>;
51
+ };
52
+ intentions: {
53
+ type: import("vue").PropType<string>;
54
+ };
55
+ hideIcon: {
56
+ type: import("vue").PropType<boolean>;
57
+ default: boolean;
58
+ };
59
+ labelIntentions: {
60
+ type: import("vue").PropType<string>;
61
+ default: string;
62
+ };
63
+ credits: {
64
+ type: import("vue").PropType<string>;
65
+ };
66
+ madateLevel: {
67
+ type: import("vue").PropType<string>;
68
+ };
69
+ messageError: {
70
+ type: import("vue").PropType<string>;
71
+ default: string;
72
+ };
73
+ }>>, {
74
+ type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error";
75
+ hideIcon: boolean;
76
+ labelIntentions: string;
77
+ messageError: string;
78
+ }, {}>;
79
+ export default _default;
@@ -1,5 +1,32 @@
1
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpCarousel.vue?vue&type=script&setup=true&lang.ts";
2
- import "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpCarousel.vue?vue&type=style&index=0&scoped=b6f21f1c&lang.css";
3
- declare const _default: any;
1
+ import { MediaCarousel } from "../../types/MediaCarousel";
2
+ declare const _default: import("vue").DefineComponent<{
3
+ labelClose: {
4
+ type: import("vue").PropType<string | null>;
5
+ default: string;
6
+ };
7
+ images: {
8
+ type: import("vue").PropType<MediaCarousel[]>;
9
+ required: true;
10
+ };
11
+ labelRef: {
12
+ type: import("vue").PropType<string | null>;
13
+ default: string;
14
+ };
15
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
16
+ labelClose: {
17
+ type: import("vue").PropType<string | null>;
18
+ default: string;
19
+ };
20
+ images: {
21
+ type: import("vue").PropType<MediaCarousel[]>;
22
+ required: true;
23
+ };
24
+ labelRef: {
25
+ type: import("vue").PropType<string | null>;
26
+ default: string;
27
+ };
28
+ }>>, {
29
+ labelClose: string | null;
30
+ labelRef: string | null;
31
+ }, {}>;
4
32
  export default _default;
5
- //# sourceMappingURL=EpCarousel.vue.d.ts.map
@@ -1,4 +1,58 @@
1
- import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpIframe.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpIframe.vue?vue&type=script&setup=true&lang.ts";
3
- export default _sfc_main;
4
- //# sourceMappingURL=EpIframe.vue.d.ts.map
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ type: {
6
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
7
+ default: string;
8
+ };
9
+ big: {
10
+ type: import("vue").PropType<boolean>;
11
+ default: boolean;
12
+ };
13
+ src: {
14
+ type: import("vue").PropType<string>;
15
+ required: true;
16
+ };
17
+ mandateLevel: {
18
+ type: import("vue").PropType<string | null>;
19
+ };
20
+ intentions: {
21
+ type: import("vue").PropType<string>;
22
+ };
23
+ hideIcon: {
24
+ type: import("vue").PropType<boolean>;
25
+ default: boolean;
26
+ };
27
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
28
+ title: {
29
+ type: import("vue").PropType<string>;
30
+ };
31
+ type: {
32
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
33
+ default: string;
34
+ };
35
+ big: {
36
+ type: import("vue").PropType<boolean>;
37
+ default: boolean;
38
+ };
39
+ src: {
40
+ type: import("vue").PropType<string>;
41
+ required: true;
42
+ };
43
+ mandateLevel: {
44
+ type: import("vue").PropType<string | null>;
45
+ };
46
+ intentions: {
47
+ type: import("vue").PropType<string>;
48
+ };
49
+ hideIcon: {
50
+ type: import("vue").PropType<boolean>;
51
+ default: boolean;
52
+ };
53
+ }>>, {
54
+ type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error";
55
+ big: boolean;
56
+ hideIcon: boolean;
57
+ }, {}>;
58
+ export default _default;
@@ -1,5 +1,52 @@
1
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpKatex.vue?vue&type=script&setup=true&lang.ts";
2
- import "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpKatex.vue?vue&type=style&index=0&scoped=8d1e7f22&lang.css";
3
- declare const _default: any;
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ type: {
6
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
7
+ };
8
+ content: {
9
+ type: import("vue").PropType<string>;
10
+ required: true;
11
+ };
12
+ center: {
13
+ type: import("vue").PropType<boolean>;
14
+ default: boolean;
15
+ };
16
+ mandateLevel: {
17
+ type: import("vue").PropType<string | null>;
18
+ };
19
+ intentions: {
20
+ type: import("vue").PropType<string>;
21
+ };
22
+ hideIcon: {
23
+ type: import("vue").PropType<boolean>;
24
+ };
25
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
+ title: {
27
+ type: import("vue").PropType<string>;
28
+ };
29
+ type: {
30
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
31
+ };
32
+ content: {
33
+ type: import("vue").PropType<string>;
34
+ required: true;
35
+ };
36
+ center: {
37
+ type: import("vue").PropType<boolean>;
38
+ default: boolean;
39
+ };
40
+ mandateLevel: {
41
+ type: import("vue").PropType<string | null>;
42
+ };
43
+ intentions: {
44
+ type: import("vue").PropType<string>;
45
+ };
46
+ hideIcon: {
47
+ type: import("vue").PropType<boolean>;
48
+ };
49
+ }>>, {
50
+ center: boolean;
51
+ }, {}>;
4
52
  export default _default;
5
- //# sourceMappingURL=EpKatex.vue.d.ts.map
@@ -1,4 +1,73 @@
1
- import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpLink.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpLink.vue?vue&type=script&setup=true&lang.ts";
3
- export default _sfc_main;
4
- //# sourceMappingURL=EpLink.vue.d.ts.map
1
+ declare const _default: import("vue").DefineComponent<{
2
+ label: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ type: {
6
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
7
+ default: string;
8
+ };
9
+ href: {
10
+ type: import("vue").PropType<string>;
11
+ required: true;
12
+ };
13
+ icon: {
14
+ type: import("vue").PropType<string>;
15
+ };
16
+ mandateLevel: {
17
+ type: import("vue").PropType<string>;
18
+ };
19
+ intentions: {
20
+ type: import("vue").PropType<string>;
21
+ default: string;
22
+ };
23
+ hideIcon: {
24
+ type: import("vue").PropType<boolean>;
25
+ default: boolean;
26
+ };
27
+ labelIntentions: {
28
+ type: import("vue").PropType<string>;
29
+ default: string;
30
+ };
31
+ labelCard: {
32
+ type: import("vue").PropType<string>;
33
+ };
34
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
35
+ label: {
36
+ type: import("vue").PropType<string>;
37
+ };
38
+ type: {
39
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
40
+ default: string;
41
+ };
42
+ href: {
43
+ type: import("vue").PropType<string>;
44
+ required: true;
45
+ };
46
+ icon: {
47
+ type: import("vue").PropType<string>;
48
+ };
49
+ mandateLevel: {
50
+ type: import("vue").PropType<string>;
51
+ };
52
+ intentions: {
53
+ type: import("vue").PropType<string>;
54
+ default: string;
55
+ };
56
+ hideIcon: {
57
+ type: import("vue").PropType<boolean>;
58
+ default: boolean;
59
+ };
60
+ labelIntentions: {
61
+ type: import("vue").PropType<string>;
62
+ default: string;
63
+ };
64
+ labelCard: {
65
+ type: import("vue").PropType<string>;
66
+ };
67
+ }>>, {
68
+ type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error";
69
+ intentions: string;
70
+ hideIcon: boolean;
71
+ labelIntentions: string;
72
+ }, {}>;
73
+ export default _default;
@@ -1,4 +1,88 @@
1
- import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpSoftware.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpSoftware.vue?vue&type=script&setup=true&lang.ts";
3
- export default _sfc_main;
4
- //# sourceMappingURL=EpSoftware.vue.d.ts.map
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string>;
4
+ required: true;
5
+ };
6
+ type: {
7
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
8
+ default: string;
9
+ };
10
+ version: {
11
+ type: import("vue").PropType<string>;
12
+ };
13
+ mandateLevel: {
14
+ type: import("vue").PropType<string>;
15
+ };
16
+ intentions: {
17
+ type: import("vue").PropType<string>;
18
+ default: string;
19
+ };
20
+ hideIcon: {
21
+ type: import("vue").PropType<boolean>;
22
+ default: boolean;
23
+ };
24
+ url: {
25
+ type: import("vue").PropType<string>;
26
+ };
27
+ cover: {
28
+ type: import("vue").PropType<string>;
29
+ default: string;
30
+ };
31
+ version_link: {
32
+ type: import("vue").PropType<null>;
33
+ };
34
+ hideCover: {
35
+ type: import("vue").PropType<boolean>;
36
+ default: boolean;
37
+ };
38
+ labelCard: {
39
+ type: import("vue").PropType<string>;
40
+ };
41
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
42
+ title: {
43
+ type: import("vue").PropType<string>;
44
+ required: true;
45
+ };
46
+ type: {
47
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
48
+ default: string;
49
+ };
50
+ version: {
51
+ type: import("vue").PropType<string>;
52
+ };
53
+ mandateLevel: {
54
+ type: import("vue").PropType<string>;
55
+ };
56
+ intentions: {
57
+ type: import("vue").PropType<string>;
58
+ default: string;
59
+ };
60
+ hideIcon: {
61
+ type: import("vue").PropType<boolean>;
62
+ default: boolean;
63
+ };
64
+ url: {
65
+ type: import("vue").PropType<string>;
66
+ };
67
+ cover: {
68
+ type: import("vue").PropType<string>;
69
+ default: string;
70
+ };
71
+ version_link: {
72
+ type: import("vue").PropType<null>;
73
+ };
74
+ hideCover: {
75
+ type: import("vue").PropType<boolean>;
76
+ default: boolean;
77
+ };
78
+ labelCard: {
79
+ type: import("vue").PropType<string>;
80
+ };
81
+ }>>, {
82
+ type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error";
83
+ intentions: string;
84
+ hideIcon: boolean;
85
+ cover: string;
86
+ hideCover: boolean;
87
+ }, {}>;
88
+ export default _default;
@@ -1,3 +1,2 @@
1
- declare const _default: any;
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<{}>>, {}, {}>;
2
2
  export default _default;
3
- //# sourceMappingURL=EpSvg.vue.d.ts.map
@@ -1,4 +1,80 @@
1
- import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpTerm.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpTerm.vue?vue&type=script&setup=true&lang.ts";
3
- export default _sfc_main;
4
- //# sourceMappingURL=EpTerm.vue.d.ts.map
1
+ declare const _default: import("vue").DefineComponent<{
2
+ term: {
3
+ type: import("vue").PropType<string>;
4
+ required: true;
5
+ default: string;
6
+ };
7
+ word: {
8
+ type: import("vue").PropType<string>;
9
+ required: true;
10
+ };
11
+ definition: {
12
+ type: import("vue").PropType<string>;
13
+ required: true;
14
+ };
15
+ variations: {
16
+ type: import("vue").PropType<string>;
17
+ default: string;
18
+ };
19
+ domain: {
20
+ type: import("vue").PropType<string>;
21
+ };
22
+ graminfo: {
23
+ type: import("vue").PropType<string>;
24
+ };
25
+ relations: {
26
+ type: import("vue").PropType<string>;
27
+ default: string;
28
+ };
29
+ idrelation: {
30
+ type: import("vue").PropType<string>;
31
+ default: string;
32
+ };
33
+ labelClose: {
34
+ type: import("vue").PropType<string>;
35
+ default: string;
36
+ };
37
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
38
+ term: {
39
+ type: import("vue").PropType<string>;
40
+ required: true;
41
+ default: string;
42
+ };
43
+ word: {
44
+ type: import("vue").PropType<string>;
45
+ required: true;
46
+ };
47
+ definition: {
48
+ type: import("vue").PropType<string>;
49
+ required: true;
50
+ };
51
+ variations: {
52
+ type: import("vue").PropType<string>;
53
+ default: string;
54
+ };
55
+ domain: {
56
+ type: import("vue").PropType<string>;
57
+ };
58
+ graminfo: {
59
+ type: import("vue").PropType<string>;
60
+ };
61
+ relations: {
62
+ type: import("vue").PropType<string>;
63
+ default: string;
64
+ };
65
+ idrelation: {
66
+ type: import("vue").PropType<string>;
67
+ default: string;
68
+ };
69
+ labelClose: {
70
+ type: import("vue").PropType<string>;
71
+ default: string;
72
+ };
73
+ }>>, {
74
+ term: string;
75
+ variations: string;
76
+ relations: string;
77
+ idrelation: string;
78
+ labelClose: string;
79
+ }, {}>;
80
+ export default _default;
@@ -1,3 +1,2 @@
1
- declare const _default: any;
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<{}>>, {}, {}>;
2
2
  export default _default;
3
- //# sourceMappingURL=EpTimeLine.vue.d.ts.map
@@ -1,4 +1,64 @@
1
- import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpVideo.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpVideo.vue?vue&type=script&setup=true&lang.ts";
3
- export default _sfc_main;
4
- //# sourceMappingURL=EpVideo.vue.d.ts.map
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ type: {
6
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
7
+ default: string;
8
+ };
9
+ src: {
10
+ type: import("vue").PropType<string>;
11
+ required: true;
12
+ };
13
+ mandateLevel: {
14
+ type: import("vue").PropType<string | null>;
15
+ };
16
+ intentions: {
17
+ type: import("vue").PropType<string>;
18
+ };
19
+ hideIcon: {
20
+ type: import("vue").PropType<boolean>;
21
+ default: boolean;
22
+ };
23
+ labelIntentions: {
24
+ type: import("vue").PropType<string>;
25
+ default: string;
26
+ };
27
+ credits: {
28
+ type: import("vue").PropType<string>;
29
+ };
30
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
31
+ title: {
32
+ type: import("vue").PropType<string>;
33
+ };
34
+ type: {
35
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
36
+ default: string;
37
+ };
38
+ src: {
39
+ type: import("vue").PropType<string>;
40
+ required: true;
41
+ };
42
+ mandateLevel: {
43
+ type: import("vue").PropType<string | null>;
44
+ };
45
+ intentions: {
46
+ type: import("vue").PropType<string>;
47
+ };
48
+ hideIcon: {
49
+ type: import("vue").PropType<boolean>;
50
+ default: boolean;
51
+ };
52
+ labelIntentions: {
53
+ type: import("vue").PropType<string>;
54
+ default: string;
55
+ };
56
+ credits: {
57
+ type: import("vue").PropType<string>;
58
+ };
59
+ }>>, {
60
+ type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error";
61
+ hideIcon: boolean;
62
+ labelIntentions: string;
63
+ }, {}>;
64
+ export default _default;
@@ -1,4 +1,64 @@
1
- import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpVideoPanopto.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/medias/EpVideoPanopto.vue?vue&type=script&setup=true&lang.ts";
3
- export default _sfc_main;
4
- //# sourceMappingURL=EpVideoPanopto.vue.d.ts.map
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ type: {
6
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
7
+ default: string;
8
+ };
9
+ src: {
10
+ type: import("vue").PropType<string>;
11
+ required: true;
12
+ };
13
+ mandateLevel: {
14
+ type: import("vue").PropType<string | null>;
15
+ };
16
+ intentions: {
17
+ type: import("vue").PropType<string>;
18
+ };
19
+ hideIcon: {
20
+ type: import("vue").PropType<boolean>;
21
+ default: boolean;
22
+ };
23
+ labelIntentions: {
24
+ type: import("vue").PropType<string>;
25
+ default: string;
26
+ };
27
+ credits: {
28
+ type: import("vue").PropType<string>;
29
+ };
30
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
31
+ title: {
32
+ type: import("vue").PropType<string>;
33
+ };
34
+ type: {
35
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
36
+ default: string;
37
+ };
38
+ src: {
39
+ type: import("vue").PropType<string>;
40
+ required: true;
41
+ };
42
+ mandateLevel: {
43
+ type: import("vue").PropType<string | null>;
44
+ };
45
+ intentions: {
46
+ type: import("vue").PropType<string>;
47
+ };
48
+ hideIcon: {
49
+ type: import("vue").PropType<boolean>;
50
+ default: boolean;
51
+ };
52
+ labelIntentions: {
53
+ type: import("vue").PropType<string>;
54
+ default: string;
55
+ };
56
+ credits: {
57
+ type: import("vue").PropType<string>;
58
+ };
59
+ }>>, {
60
+ type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error";
61
+ hideIcon: boolean;
62
+ labelIntentions: string;
63
+ }, {}>;
64
+ export default _default;