ep-lib-ts 0.1.8 → 0.1.10
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.
- package/dist/BgAudio-7556351b.js +5 -0
- package/dist/DisplayBox-15403c71.js +5 -0
- package/dist/EpAlert-2abc116f.js +5 -0
- package/dist/EpAudio-5c9dfb92.js +5 -0
- package/dist/EpBadge-234518b2.js +5 -0
- package/dist/EpBarChart-ce79ce3d.js +5 -0
- package/dist/EpBtn-3512ca60.js +5 -0
- package/dist/EpCard-84819b25.js +5 -0
- package/dist/EpCheckbox-fe632df9.js +36 -0
- package/dist/EpChip-f91aa662.js +5 -0
- package/dist/EpDivider-13d648fa.js +5 -0
- package/dist/EpEdu-fe8bc9f2.js +5 -0
- package/dist/EpFlex-c87197a7.js +5 -0
- package/dist/EpHeader-61c8da9f.js +5 -0
- package/dist/EpIcon-c85eaee3.js +5 -0
- package/dist/EpIframe-06bf6ef4.js +5 -0
- package/dist/EpImg-dc60d288.js +5 -0
- package/dist/EpInput-e2cd96a6.js +1171 -0
- package/dist/EpLineChart-76eb8203.js +5 -0
- package/dist/EpLink-ae95b58b.js +5 -0
- package/dist/EpModal-9acbf67e.js +5 -0
- package/dist/EpNothing-9a8a563a.js +10 -0
- package/dist/EpQuestion-e24fa1e7.js +5 -0
- package/dist/EpQuote-82683817.js +5 -0
- package/dist/EpRadio-6bb393b5.js +5 -0
- package/dist/EpReading-725ce633.js +5 -0
- package/dist/EpResource-3487f005.js +5 -0
- package/dist/EpScope-87682f54.js +5 -0
- package/dist/EpSection-826799f7.js +5 -0
- package/dist/EpSelect-39d82b2a.js +31 -0
- package/dist/EpSoftware-b616d8f4.js +5 -0
- package/dist/EpSpinner-b1c988e5.js +5 -0
- package/dist/EpSwitch-1eaf9d3f.js +44 -0
- package/dist/EpTable-fd10d6c4.js +5 -0
- package/dist/EpTerm-6a339de4.js +5 -0
- package/dist/EpText-75b4c821.js +5 -0
- package/dist/EpTextarea-67f751e9.js +41 -0
- package/dist/EpToggle-9755056a.js +44 -0
- package/dist/EpVideo-981c8f8d.js +5 -0
- package/dist/EpVideoPanopto-928e60df.js +5 -0
- package/dist/components/basics/EpSpinner.vue.d.ts +9 -0
- package/dist/components/basics/EpText.vue.d.ts +13 -9
- package/dist/components/educationals/EpEdu.vue.d.ts +3 -2
- package/dist/components/educationals/EpReading.vue.d.ts +5 -4
- package/dist/components/educationals/EpResource.vue.d.ts +34 -1
- package/dist/components/educationals/EpScope.vue.d.ts +9 -0
- package/dist/components/forms/EpCheckbox.vue.d.ts +72 -0
- package/dist/components/forms/EpInput.vue.d.ts +98 -0
- package/dist/components/forms/EpRadio.vue.d.ts +69 -0
- package/dist/components/forms/EpSelect.vue.d.ts +83 -0
- package/dist/components/forms/EpSwitch.vue.d.ts +81 -0
- package/dist/components/forms/EpTextarea.vue.d.ts +90 -0
- package/dist/components/forms/EpToggle.vue.d.ts +81 -0
- package/dist/components/interactions/EpQuestion.vue.d.ts +90 -1
- package/dist/components/medias/EpAudio.vue.d.ts +3 -8
- package/dist/components/medias/EpCarousel.vue.d.ts +2 -2
- package/dist/components/medias/EpLink.vue.d.ts +3 -2
- package/dist/components/medias/EpSoftware.vue.d.ts +3 -2
- package/dist/components/medias/EpVideo.vue.d.ts +3 -2
- package/dist/components/medias/EpVideoPanopto.vue.d.ts +3 -2
- package/dist/components/signages/EpAlert.vue.d.ts +10 -3
- package/dist/components/signages/EpNothing.vue.d.ts +2 -0
- package/dist/components/signages/EpQuote.vue.d.ts +9 -9
- package/dist/composables/useComponent.d.ts +6 -0
- package/dist/ep-lib-ts.js +41 -18489
- package/dist/ep-lib-ts.umd.cjs +42 -38
- package/dist/index-761c8157.js +18795 -0
- package/dist/style.css +1 -1
- package/dist/types/Answer.d.ts +15 -0
- package/dist/types/MandateLevel.d.ts +5 -0
- package/package.json +3 -2
- package/src/components/basics/EpCard.vue +1 -1
- package/src/components/basics/EpImg.vue +70 -40
- package/src/components/basics/EpSpinner.vue +35 -25
- package/src/components/basics/EpText.vue +19 -5
- package/src/components/educationals/EpEdu.vue +11 -3
- package/src/components/educationals/EpReading.vue +10 -7
- package/src/components/educationals/EpResource.vue +66 -3
- package/src/components/educationals/EpScope.vue +14 -2
- package/src/components/forms/EpRadio.vue +2 -1
- package/src/components/interactions/EpQuestion.vue +176 -4
- package/src/components/medias/EpAudio.vue +2 -2
- package/src/components/medias/EpCarousel.vue +10 -10
- package/src/components/medias/EpLink.vue +2 -1
- package/src/components/medias/EpSoftware.vue +4 -4
- package/src/components/medias/EpVideo.vue +7 -3
- package/src/components/medias/EpVideoPanopto.vue +2 -1
- package/src/components/signages/EpAlert.vue +19 -4
- package/src/components/signages/EpNothing.vue +5 -0
- package/src/components/signages/EpQuote.vue +23 -19
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MandateLevel } from '../../types/MandateLevel';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
title: {
|
|
3
4
|
type: import("vue").PropType<string>;
|
|
@@ -11,7 +12,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
12
|
type: import("vue").PropType<string>;
|
|
12
13
|
};
|
|
13
14
|
mandateLevel: {
|
|
14
|
-
type: import("vue").PropType<string>;
|
|
15
|
+
type: import("vue").PropType<string | MandateLevel | null>;
|
|
15
16
|
};
|
|
16
17
|
intentions: {
|
|
17
18
|
type: import("vue").PropType<string>;
|
|
@@ -51,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
52
|
type: import("vue").PropType<string>;
|
|
52
53
|
};
|
|
53
54
|
mandateLevel: {
|
|
54
|
-
type: import("vue").PropType<string>;
|
|
55
|
+
type: import("vue").PropType<string | MandateLevel | null>;
|
|
55
56
|
};
|
|
56
57
|
intentions: {
|
|
57
58
|
type: import("vue").PropType<string>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MandateLevel } from '../../types/MandateLevel';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
title: {
|
|
3
4
|
type: import("vue").PropType<string>;
|
|
@@ -11,7 +12,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
12
|
required: true;
|
|
12
13
|
};
|
|
13
14
|
mandateLevel: {
|
|
14
|
-
type: import("vue").PropType<string | null>;
|
|
15
|
+
type: import("vue").PropType<string | MandateLevel | null>;
|
|
15
16
|
};
|
|
16
17
|
intentions: {
|
|
17
18
|
type: import("vue").PropType<string>;
|
|
@@ -40,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
41
|
required: true;
|
|
41
42
|
};
|
|
42
43
|
mandateLevel: {
|
|
43
|
-
type: import("vue").PropType<string | null>;
|
|
44
|
+
type: import("vue").PropType<string | MandateLevel | null>;
|
|
44
45
|
};
|
|
45
46
|
intentions: {
|
|
46
47
|
type: import("vue").PropType<string>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MandateLevel } from '../../types/MandateLevel';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
title: {
|
|
3
4
|
type: import("vue").PropType<string>;
|
|
@@ -11,7 +12,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
12
|
required: true;
|
|
12
13
|
};
|
|
13
14
|
mandateLevel: {
|
|
14
|
-
type: import("vue").PropType<string | null>;
|
|
15
|
+
type: import("vue").PropType<string | MandateLevel | null>;
|
|
15
16
|
};
|
|
16
17
|
intentions: {
|
|
17
18
|
type: import("vue").PropType<string>;
|
|
@@ -40,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
41
|
required: true;
|
|
41
42
|
};
|
|
42
43
|
mandateLevel: {
|
|
43
|
-
type: import("vue").PropType<string | null>;
|
|
44
|
+
type: import("vue").PropType<string | MandateLevel | null>;
|
|
44
45
|
};
|
|
45
46
|
intentions: {
|
|
46
47
|
type: import("vue").PropType<string>;
|
|
@@ -1,10 +1,17 @@
|
|
|
1
|
+
import { TypeAlert } from "../../types/Alert";
|
|
2
|
+
interface OldType {
|
|
3
|
+
icon: string;
|
|
4
|
+
name: string;
|
|
5
|
+
type: TypeAlert;
|
|
6
|
+
color: string;
|
|
7
|
+
}
|
|
1
8
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
9
|
title: {
|
|
3
10
|
type: import("vue").PropType<string | null>;
|
|
4
11
|
default: null;
|
|
5
12
|
};
|
|
6
13
|
type: {
|
|
7
|
-
type: import("vue").PropType<"base" | "info" | "warning" | "success" | "error" | "question" | "tip">;
|
|
14
|
+
type: import("vue").PropType<"base" | "info" | "warning" | "success" | "error" | "question" | "tip" | OldType>;
|
|
8
15
|
default: string;
|
|
9
16
|
};
|
|
10
17
|
outlined: {
|
|
@@ -24,7 +31,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
24
31
|
default: null;
|
|
25
32
|
};
|
|
26
33
|
type: {
|
|
27
|
-
type: import("vue").PropType<"base" | "info" | "warning" | "success" | "error" | "question" | "tip">;
|
|
34
|
+
type: import("vue").PropType<"base" | "info" | "warning" | "success" | "error" | "question" | "tip" | OldType>;
|
|
28
35
|
default: string;
|
|
29
36
|
};
|
|
30
37
|
outlined: {
|
|
@@ -40,7 +47,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
40
47
|
};
|
|
41
48
|
}>>, {
|
|
42
49
|
title: string | null;
|
|
43
|
-
type: "base" | "info" | "warning" | "success" | "error" | "question" | "tip";
|
|
50
|
+
type: "base" | "info" | "warning" | "success" | "error" | "question" | "tip" | OldType;
|
|
44
51
|
outlined: boolean;
|
|
45
52
|
noIcon: boolean;
|
|
46
53
|
}, {}>, {
|
|
@@ -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;
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
-
|
|
2
|
+
img: {
|
|
3
3
|
type: import("vue").PropType<string | null>;
|
|
4
4
|
default: null;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
author: {
|
|
7
7
|
type: import("vue").PropType<string | null>;
|
|
8
8
|
default: null;
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
card: {
|
|
11
11
|
type: import("vue").PropType<boolean>;
|
|
12
12
|
default: boolean;
|
|
13
13
|
};
|
|
14
14
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
|
|
15
|
+
img: {
|
|
16
16
|
type: import("vue").PropType<string | null>;
|
|
17
17
|
default: null;
|
|
18
18
|
};
|
|
19
|
-
|
|
19
|
+
author: {
|
|
20
20
|
type: import("vue").PropType<string | null>;
|
|
21
21
|
default: null;
|
|
22
22
|
};
|
|
23
|
-
|
|
23
|
+
card: {
|
|
24
24
|
type: import("vue").PropType<boolean>;
|
|
25
25
|
default: boolean;
|
|
26
26
|
};
|
|
27
27
|
}>>, {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
img: string | null;
|
|
29
|
+
author: string | null;
|
|
30
|
+
card: boolean;
|
|
31
31
|
}, {}>, {
|
|
32
32
|
default?(_: {}): any;
|
|
33
33
|
}>;
|