ep-lib-ts 0.1.5 → 0.1.7
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/components/charts/EpBarChart.vue.d.ts +82 -0
- package/dist/components/charts/EpLineChart.vue.d.ts +82 -0
- package/dist/components/charts/EpPieChart.vue.d.ts +2 -0
- package/dist/components/educationals/EpResource.vue.d.ts +2 -0
- package/dist/components/medias/EpLinkVersion.vue.d.ts +2 -0
- package/dist/ep-lib-ts.js +4813 -4652
- package/dist/ep-lib-ts.umd.cjs +31 -31
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
- package/src/components/charts/EpBarChart.vue +2 -2
- package/src/components/charts/EpLineChart.vue +1 -2
- package/src/components/educationals/EpEdu.vue +4 -4
- package/src/components/educationals/EpResource.vue +8 -0
- package/src/components/medias/EpLinkVersion.vue +8 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
interface Serie {
|
|
2
|
+
name: string;
|
|
3
|
+
data: (string | number)[];
|
|
4
|
+
}
|
|
5
|
+
interface Options {
|
|
6
|
+
xaxis: {
|
|
7
|
+
categories: (number | string)[];
|
|
8
|
+
convertedCatToNumeric?: boolean;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import("vue").DefineComponent<{
|
|
12
|
+
source: {
|
|
13
|
+
type: import("vue").PropType<string>;
|
|
14
|
+
};
|
|
15
|
+
title: {
|
|
16
|
+
type: import("vue").PropType<string>;
|
|
17
|
+
};
|
|
18
|
+
id: {
|
|
19
|
+
type: import("vue").PropType<string>;
|
|
20
|
+
};
|
|
21
|
+
type: {
|
|
22
|
+
type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
|
|
23
|
+
};
|
|
24
|
+
center: {
|
|
25
|
+
type: import("vue").PropType<boolean>;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
mandateLevel: {
|
|
29
|
+
type: import("vue").PropType<string | null>;
|
|
30
|
+
};
|
|
31
|
+
intentions: {
|
|
32
|
+
type: import("vue").PropType<string>;
|
|
33
|
+
};
|
|
34
|
+
hideIcon: {
|
|
35
|
+
type: import("vue").PropType<boolean>;
|
|
36
|
+
};
|
|
37
|
+
series: {
|
|
38
|
+
type: import("vue").PropType<Serie[]>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
options: {
|
|
42
|
+
type: import("vue").PropType<Options>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
+
source: {
|
|
47
|
+
type: import("vue").PropType<string>;
|
|
48
|
+
};
|
|
49
|
+
title: {
|
|
50
|
+
type: import("vue").PropType<string>;
|
|
51
|
+
};
|
|
52
|
+
id: {
|
|
53
|
+
type: import("vue").PropType<string>;
|
|
54
|
+
};
|
|
55
|
+
type: {
|
|
56
|
+
type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
|
|
57
|
+
};
|
|
58
|
+
center: {
|
|
59
|
+
type: import("vue").PropType<boolean>;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
mandateLevel: {
|
|
63
|
+
type: import("vue").PropType<string | null>;
|
|
64
|
+
};
|
|
65
|
+
intentions: {
|
|
66
|
+
type: import("vue").PropType<string>;
|
|
67
|
+
};
|
|
68
|
+
hideIcon: {
|
|
69
|
+
type: import("vue").PropType<boolean>;
|
|
70
|
+
};
|
|
71
|
+
series: {
|
|
72
|
+
type: import("vue").PropType<Serie[]>;
|
|
73
|
+
required: true;
|
|
74
|
+
};
|
|
75
|
+
options: {
|
|
76
|
+
type: import("vue").PropType<Options>;
|
|
77
|
+
required: true;
|
|
78
|
+
};
|
|
79
|
+
}>>, {
|
|
80
|
+
center: boolean;
|
|
81
|
+
}, {}>;
|
|
82
|
+
export default _default;
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
interface Serie {
|
|
2
|
+
name: string;
|
|
3
|
+
data: (string | number)[];
|
|
4
|
+
}
|
|
5
|
+
interface Options {
|
|
6
|
+
xaxis: {
|
|
7
|
+
categories: (number | string)[];
|
|
8
|
+
convertedCatToNumeric?: boolean;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import("vue").DefineComponent<{
|
|
12
|
+
source: {
|
|
13
|
+
type: import("vue").PropType<string>;
|
|
14
|
+
};
|
|
15
|
+
title: {
|
|
16
|
+
type: import("vue").PropType<string>;
|
|
17
|
+
};
|
|
18
|
+
id: {
|
|
19
|
+
type: import("vue").PropType<string>;
|
|
20
|
+
};
|
|
21
|
+
type: {
|
|
22
|
+
type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
|
|
23
|
+
};
|
|
24
|
+
center: {
|
|
25
|
+
type: import("vue").PropType<boolean>;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
mandateLevel: {
|
|
29
|
+
type: import("vue").PropType<string | null>;
|
|
30
|
+
};
|
|
31
|
+
intentions: {
|
|
32
|
+
type: import("vue").PropType<string>;
|
|
33
|
+
};
|
|
34
|
+
hideIcon: {
|
|
35
|
+
type: import("vue").PropType<boolean>;
|
|
36
|
+
};
|
|
37
|
+
series: {
|
|
38
|
+
type: import("vue").PropType<Serie[]>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
options: {
|
|
42
|
+
type: import("vue").PropType<Options>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
+
source: {
|
|
47
|
+
type: import("vue").PropType<string>;
|
|
48
|
+
};
|
|
49
|
+
title: {
|
|
50
|
+
type: import("vue").PropType<string>;
|
|
51
|
+
};
|
|
52
|
+
id: {
|
|
53
|
+
type: import("vue").PropType<string>;
|
|
54
|
+
};
|
|
55
|
+
type: {
|
|
56
|
+
type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
|
|
57
|
+
};
|
|
58
|
+
center: {
|
|
59
|
+
type: import("vue").PropType<boolean>;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
mandateLevel: {
|
|
63
|
+
type: import("vue").PropType<string | null>;
|
|
64
|
+
};
|
|
65
|
+
intentions: {
|
|
66
|
+
type: import("vue").PropType<string>;
|
|
67
|
+
};
|
|
68
|
+
hideIcon: {
|
|
69
|
+
type: import("vue").PropType<boolean>;
|
|
70
|
+
};
|
|
71
|
+
series: {
|
|
72
|
+
type: import("vue").PropType<Serie[]>;
|
|
73
|
+
required: true;
|
|
74
|
+
};
|
|
75
|
+
options: {
|
|
76
|
+
type: import("vue").PropType<Options>;
|
|
77
|
+
required: true;
|
|
78
|
+
};
|
|
79
|
+
}>>, {
|
|
80
|
+
center: boolean;
|
|
81
|
+
}, {}>;
|
|
82
|
+
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,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,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;
|