ep-lib-ts 0.0.7 → 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 (100) hide show
  1. package/dist/components/basics/EpBadge.vue.d.ts +38 -0
  2. package/dist/components/basics/EpBtn.vue.d.ts +108 -0
  3. package/dist/components/basics/EpCard.vue.d.ts +95 -0
  4. package/dist/components/basics/EpChip.vue.d.ts +72 -0
  5. package/dist/components/basics/EpDivider.vue.d.ts +51 -4
  6. package/dist/components/basics/EpFlex.vue.d.ts +9 -0
  7. package/dist/components/basics/EpIcon.vue.d.ts +37 -4
  8. package/dist/components/basics/EpImg.vue.d.ts +76 -0
  9. package/dist/components/basics/EpSection.vue.d.ts +84 -0
  10. package/dist/components/basics/EpSpinner.vue.d.ts +32 -0
  11. package/dist/components/basics/EpTable.vue.d.ts +24 -0
  12. package/dist/components/basics/EpText.vue.d.ts +30 -0
  13. package/dist/components/charts/EpBarChart.vue.d.ts +82 -0
  14. package/dist/components/charts/EpLineChart.vue.d.ts +82 -0
  15. package/dist/components/charts/EpPieChart.vue.d.ts +2 -0
  16. package/dist/components/educationals/EpEdu.vue.d.ts +80 -0
  17. package/dist/components/educationals/EpReading.vue.d.ts +151 -0
  18. package/dist/components/educationals/EpScope.vue.d.ts +14 -0
  19. package/dist/components/interactions/EpAccordeon.vue.d.ts +53 -4
  20. package/dist/components/interactions/EpContentSlider.vue.d.ts +2 -0
  21. package/dist/components/interactions/EpModal.vue.d.ts +70 -0
  22. package/dist/components/interactions/EpQuestion.vue.d.ts +2 -0
  23. package/dist/components/interactions/EpTabs.vue.d.ts +2 -0
  24. package/dist/components/medias/EpAudio.vue.d.ts +79 -0
  25. package/dist/components/medias/EpCarousel.vue.d.ts +32 -0
  26. package/dist/components/medias/EpIframe.vue.d.ts +58 -0
  27. package/dist/components/medias/EpKatex.vue.d.ts +52 -0
  28. package/dist/components/medias/EpLink.vue.d.ts +73 -0
  29. package/dist/components/medias/EpSoftware.vue.d.ts +88 -0
  30. package/dist/components/medias/EpSvg.vue.d.ts +2 -0
  31. package/dist/components/medias/EpTerm.vue.d.ts +80 -0
  32. package/dist/components/medias/EpTimeLine.vue.d.ts +2 -0
  33. package/dist/components/medias/EpVideo.vue.d.ts +64 -0
  34. package/dist/components/medias/EpVideoPanopto.vue.d.ts +64 -0
  35. package/dist/components/signages/EpAlert.vue.d.ts +63 -4
  36. package/dist/components/signages/EpHeader.vue.d.ts +101 -0
  37. package/dist/components/signages/EpQuote.vue.d.ts +39 -0
  38. package/dist/components/tools/BgAudio.vue.d.ts +14 -0
  39. package/dist/components/tools/DisplayBox.vue.d.ts +17 -0
  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/style.css +1 -0
  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/EpDivider.vue.d.ts.map +0 -1
  92. package/dist/components/basics/EpIcon.vue.d.ts.map +0 -1
  93. package/dist/components/index.d.ts +0 -38
  94. package/dist/components/interactions/EpAccordeon.vue.d.ts.map +0 -1
  95. package/dist/components/main.d.ts +0 -7
  96. package/dist/components/signages/EpAlert.vue.d.ts.map +0 -1
  97. package/dist/ep-lib-ts.cjs.js +0 -1
  98. package/dist/ep-lib-ts.es.js +0 -392
  99. package/dist/ep-lib-ts.umd.js +0 -2
  100. package/dist/index.css +0 -1
@@ -0,0 +1,58 @@
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;
@@ -0,0 +1,52 @@
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
+ }, {}>;
52
+ export default _default;
@@ -0,0 +1,73 @@
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;
@@ -0,0 +1,88 @@
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;
@@ -0,0 +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<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,80 @@
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;
@@ -0,0 +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<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,64 @@
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;
@@ -0,0 +1,64 @@
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,63 @@
1
- import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/signages/EpAlert.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/signages/EpAlert.vue?vue&type=script&setup=true&lang.ts";
3
- export default _sfc_main;
4
- //# sourceMappingURL=EpAlert.vue.d.ts.map
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string | null>;
4
+ default: null;
5
+ };
6
+ type: {
7
+ type: import("vue").PropType<"base" | "info" | "warning" | "success" | "error" | "question" | "tip">;
8
+ default: string;
9
+ };
10
+ outlined: {
11
+ type: import("vue").PropType<boolean>;
12
+ default: boolean;
13
+ };
14
+ compact: {
15
+ type: import("vue").PropType<boolean>;
16
+ };
17
+ icon: {
18
+ type: import("vue").PropType<string | null>;
19
+ default: null;
20
+ };
21
+ noIcon: {
22
+ type: import("vue").PropType<boolean>;
23
+ default: 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 | null>;
28
+ default: null;
29
+ };
30
+ type: {
31
+ type: import("vue").PropType<"base" | "info" | "warning" | "success" | "error" | "question" | "tip">;
32
+ default: string;
33
+ };
34
+ outlined: {
35
+ type: import("vue").PropType<boolean>;
36
+ default: boolean;
37
+ };
38
+ compact: {
39
+ type: import("vue").PropType<boolean>;
40
+ };
41
+ icon: {
42
+ type: import("vue").PropType<string | null>;
43
+ default: null;
44
+ };
45
+ noIcon: {
46
+ type: import("vue").PropType<boolean>;
47
+ default: boolean;
48
+ };
49
+ }>>, {
50
+ title: string | null;
51
+ type: "base" | "info" | "warning" | "success" | "error" | "question" | "tip";
52
+ outlined: boolean;
53
+ icon: string | null;
54
+ noIcon: boolean;
55
+ }, {}>, {
56
+ default?(_: {}): any;
57
+ }>;
58
+ export default _default;
59
+ type __VLS_WithTemplateSlots<T, S> = T & {
60
+ new (): {
61
+ $slots: S;
62
+ };
63
+ };
@@ -0,0 +1,101 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string | null>;
4
+ default: null;
5
+ };
6
+ color: {
7
+ type: import("vue").PropType<string | null>;
8
+ default: null;
9
+ };
10
+ height: {
11
+ type: import("vue").PropType<string | null>;
12
+ default: null;
13
+ };
14
+ subtitle: {
15
+ type: import("vue").PropType<string | null>;
16
+ };
17
+ icon: {
18
+ type: import("vue").PropType<string | null>;
19
+ default: null;
20
+ };
21
+ src: {
22
+ type: import("vue").PropType<string | null>;
23
+ default: null;
24
+ };
25
+ taxonomyLevel: {
26
+ type: import("vue").PropType<string | null>;
27
+ };
28
+ courseCode: {
29
+ type: import("vue").PropType<string | null>;
30
+ };
31
+ courseTitle: {
32
+ type: import("vue").PropType<string | null>;
33
+ };
34
+ synchrone: {
35
+ type: import("vue").PropType<boolean>;
36
+ default: boolean;
37
+ };
38
+ duration: {
39
+ type: import("vue").PropType<string | null>;
40
+ default: null;
41
+ };
42
+ assessment: {
43
+ type: import("vue").PropType<string | null>;
44
+ default: null;
45
+ };
46
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
47
+ title: {
48
+ type: import("vue").PropType<string | null>;
49
+ default: null;
50
+ };
51
+ color: {
52
+ type: import("vue").PropType<string | null>;
53
+ default: null;
54
+ };
55
+ height: {
56
+ type: import("vue").PropType<string | null>;
57
+ default: null;
58
+ };
59
+ subtitle: {
60
+ type: import("vue").PropType<string | null>;
61
+ };
62
+ icon: {
63
+ type: import("vue").PropType<string | null>;
64
+ default: null;
65
+ };
66
+ src: {
67
+ type: import("vue").PropType<string | null>;
68
+ default: null;
69
+ };
70
+ taxonomyLevel: {
71
+ type: import("vue").PropType<string | null>;
72
+ };
73
+ courseCode: {
74
+ type: import("vue").PropType<string | null>;
75
+ };
76
+ courseTitle: {
77
+ type: import("vue").PropType<string | null>;
78
+ };
79
+ synchrone: {
80
+ type: import("vue").PropType<boolean>;
81
+ default: boolean;
82
+ };
83
+ duration: {
84
+ type: import("vue").PropType<string | null>;
85
+ default: null;
86
+ };
87
+ assessment: {
88
+ type: import("vue").PropType<string | null>;
89
+ default: null;
90
+ };
91
+ }>>, {
92
+ title: string | null;
93
+ color: string | null;
94
+ height: string | null;
95
+ icon: string | null;
96
+ src: string | null;
97
+ synchrone: boolean;
98
+ duration: string | null;
99
+ assessment: string | null;
100
+ }, {}>;
101
+ export default _default;