ep-lib-ts 0.1.2 → 0.1.4
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/basics/EpBadge.vue.d.ts +38 -0
- package/dist/components/basics/EpCard.vue.d.ts +95 -0
- package/dist/components/basics/EpDivider.vue.d.ts +51 -0
- package/dist/components/basics/EpFlex.vue.d.ts +9 -0
- package/dist/components/basics/EpImg.vue.d.ts +76 -0
- package/dist/components/basics/EpSection.vue.d.ts +84 -0
- package/dist/components/basics/EpSpinner.vue.d.ts +32 -0
- package/dist/components/basics/EpTable.vue.d.ts +24 -0
- package/dist/components/basics/EpText.vue.d.ts +30 -0
- package/dist/components/charts/EpBarChart.vue.d.ts +82 -0
- package/dist/components/educationals/EpEdu.vue.d.ts +80 -0
- package/dist/components/educationals/EpReading.vue.d.ts +151 -0
- package/dist/components/educationals/EpScope.vue.d.ts +14 -0
- package/dist/components/interactions/EpAccordeon.vue.d.ts +54 -0
- package/dist/components/interactions/EpContentSlider.vue.d.ts +2 -0
- package/dist/components/interactions/EpModal.vue.d.ts +70 -0
- package/dist/components/interactions/EpQuestion.vue.d.ts +2 -0
- package/dist/components/interactions/EpTabs.vue.d.ts +2 -0
- package/dist/components/medias/EpAudio.vue.d.ts +79 -0
- package/dist/components/medias/EpCarousel.vue.d.ts +32 -0
- package/dist/components/medias/EpIframe.vue.d.ts +58 -0
- package/dist/components/medias/EpLink.vue.d.ts +73 -0
- package/dist/components/medias/EpSoftware.vue.d.ts +88 -0
- package/dist/components/medias/EpSvg.vue.d.ts +2 -0
- package/dist/components/medias/EpTerm.vue.d.ts +80 -0
- package/dist/components/medias/EpTimeLine.vue.d.ts +2 -0
- package/dist/components/medias/EpVideo.vue.d.ts +64 -0
- package/dist/components/medias/EpVideoPanopto.vue.d.ts +64 -0
- package/dist/components/signages/EpAlert.vue.d.ts +63 -0
- package/dist/components/signages/EpHeader.vue.d.ts +101 -0
- package/dist/components/signages/EpQuote.vue.d.ts +39 -0
- package/dist/components/tools/BgAudio.vue.d.ts +14 -0
- package/dist/components/tools/DisplayBox.vue.d.ts +17 -0
- package/dist/ep-lib-ts.js +15397 -87
- package/dist/ep-lib-ts.umd.cjs +744 -13
- package/dist/index.d.ts +33 -1
- package/dist/style.css +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
title: {
|
|
3
|
+
type: import("vue").PropType<string | null>;
|
|
4
|
+
required: true;
|
|
5
|
+
default: null;
|
|
6
|
+
};
|
|
7
|
+
type: {
|
|
8
|
+
type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
compact: {
|
|
12
|
+
type: import("vue").PropType<boolean>;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
mandateLevel: {
|
|
16
|
+
type: import("vue").PropType<string>;
|
|
17
|
+
};
|
|
18
|
+
intentions: {
|
|
19
|
+
type: import("vue").PropType<string>;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
hideIcon: {
|
|
23
|
+
type: import("vue").PropType<boolean>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
url: {
|
|
27
|
+
type: import("vue").PropType<string>;
|
|
28
|
+
};
|
|
29
|
+
year: {
|
|
30
|
+
type: import("vue").PropType<string>;
|
|
31
|
+
};
|
|
32
|
+
author: {
|
|
33
|
+
type: import("vue").PropType<string>;
|
|
34
|
+
};
|
|
35
|
+
cover: {
|
|
36
|
+
type: import("vue").PropType<string>;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
container: {
|
|
40
|
+
type: import("vue").PropType<string>;
|
|
41
|
+
};
|
|
42
|
+
editor: {
|
|
43
|
+
type: import("vue").PropType<string>;
|
|
44
|
+
};
|
|
45
|
+
pages: {
|
|
46
|
+
type: import("vue").PropType<string>;
|
|
47
|
+
};
|
|
48
|
+
more: {
|
|
49
|
+
type: import("vue").PropType<boolean>;
|
|
50
|
+
};
|
|
51
|
+
version_link: {
|
|
52
|
+
type: import("vue").PropType<null>;
|
|
53
|
+
};
|
|
54
|
+
hideCover: {
|
|
55
|
+
type: import("vue").PropType<boolean>;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
labelcard: {
|
|
59
|
+
type: import("vue").PropType<string>;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
labelBtb: {
|
|
63
|
+
type: import("vue").PropType<string>;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
labelIntentions: {
|
|
67
|
+
type: import("vue").PropType<string>;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
71
|
+
title: {
|
|
72
|
+
type: import("vue").PropType<string | null>;
|
|
73
|
+
required: true;
|
|
74
|
+
default: null;
|
|
75
|
+
};
|
|
76
|
+
type: {
|
|
77
|
+
type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
compact: {
|
|
81
|
+
type: import("vue").PropType<boolean>;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
mandateLevel: {
|
|
85
|
+
type: import("vue").PropType<string>;
|
|
86
|
+
};
|
|
87
|
+
intentions: {
|
|
88
|
+
type: import("vue").PropType<string>;
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
91
|
+
hideIcon: {
|
|
92
|
+
type: import("vue").PropType<boolean>;
|
|
93
|
+
default: boolean;
|
|
94
|
+
};
|
|
95
|
+
url: {
|
|
96
|
+
type: import("vue").PropType<string>;
|
|
97
|
+
};
|
|
98
|
+
year: {
|
|
99
|
+
type: import("vue").PropType<string>;
|
|
100
|
+
};
|
|
101
|
+
author: {
|
|
102
|
+
type: import("vue").PropType<string>;
|
|
103
|
+
};
|
|
104
|
+
cover: {
|
|
105
|
+
type: import("vue").PropType<string>;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
108
|
+
container: {
|
|
109
|
+
type: import("vue").PropType<string>;
|
|
110
|
+
};
|
|
111
|
+
editor: {
|
|
112
|
+
type: import("vue").PropType<string>;
|
|
113
|
+
};
|
|
114
|
+
pages: {
|
|
115
|
+
type: import("vue").PropType<string>;
|
|
116
|
+
};
|
|
117
|
+
more: {
|
|
118
|
+
type: import("vue").PropType<boolean>;
|
|
119
|
+
};
|
|
120
|
+
version_link: {
|
|
121
|
+
type: import("vue").PropType<null>;
|
|
122
|
+
};
|
|
123
|
+
hideCover: {
|
|
124
|
+
type: import("vue").PropType<boolean>;
|
|
125
|
+
default: boolean;
|
|
126
|
+
};
|
|
127
|
+
labelcard: {
|
|
128
|
+
type: import("vue").PropType<string>;
|
|
129
|
+
default: string;
|
|
130
|
+
};
|
|
131
|
+
labelBtb: {
|
|
132
|
+
type: import("vue").PropType<string>;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
135
|
+
labelIntentions: {
|
|
136
|
+
type: import("vue").PropType<string>;
|
|
137
|
+
default: string;
|
|
138
|
+
};
|
|
139
|
+
}>>, {
|
|
140
|
+
title: string | null;
|
|
141
|
+
type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error";
|
|
142
|
+
compact: boolean;
|
|
143
|
+
intentions: string;
|
|
144
|
+
hideIcon: boolean;
|
|
145
|
+
cover: string;
|
|
146
|
+
hideCover: boolean;
|
|
147
|
+
labelcard: string;
|
|
148
|
+
labelBtb: string;
|
|
149
|
+
labelIntentions: string;
|
|
150
|
+
}, {}>;
|
|
151
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
title: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
title: {
|
|
8
|
+
type: import("vue").PropType<string>;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
title: string;
|
|
13
|
+
}, {}>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
title: {
|
|
3
|
+
type: import("vue").PropType<string | null>;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
type: {
|
|
7
|
+
type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error" | "question" | "tip">;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
outlined: {
|
|
11
|
+
type: import("vue").PropType<boolean>;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
icon: {
|
|
15
|
+
type: import("vue").PropType<string | null>;
|
|
16
|
+
};
|
|
17
|
+
open: {
|
|
18
|
+
type: import("vue").PropType<boolean>;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
title: {
|
|
23
|
+
type: import("vue").PropType<string | null>;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
type: {
|
|
27
|
+
type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error" | "question" | "tip">;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
outlined: {
|
|
31
|
+
type: import("vue").PropType<boolean>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
icon: {
|
|
35
|
+
type: import("vue").PropType<string | null>;
|
|
36
|
+
};
|
|
37
|
+
open: {
|
|
38
|
+
type: import("vue").PropType<boolean>;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
title: string | null;
|
|
43
|
+
type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error" | "question" | "tip";
|
|
44
|
+
outlined: boolean;
|
|
45
|
+
open: boolean;
|
|
46
|
+
}, {}>, {
|
|
47
|
+
default?(_: {}): any;
|
|
48
|
+
}>;
|
|
49
|
+
export default _default;
|
|
50
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
51
|
+
new (): {
|
|
52
|
+
$slots: S;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
@@ -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,70 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
title: {
|
|
3
|
+
type: import("vue").PropType<string | null>;
|
|
4
|
+
default: null;
|
|
5
|
+
};
|
|
6
|
+
size: {
|
|
7
|
+
type: import("vue").PropType<"default" | "compact" | "comfortable">;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
subtitle: {
|
|
11
|
+
type: import("vue").PropType<string | null>;
|
|
12
|
+
default: null;
|
|
13
|
+
};
|
|
14
|
+
icon: {
|
|
15
|
+
type: import("vue").PropType<string | null>;
|
|
16
|
+
default: null;
|
|
17
|
+
};
|
|
18
|
+
modelValue: {
|
|
19
|
+
type: import("vue").PropType<boolean>;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
persistent: {
|
|
23
|
+
type: import("vue").PropType<boolean>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
+
"update:modelValue": (modelValue: boolean) => void;
|
|
28
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
title: {
|
|
30
|
+
type: import("vue").PropType<string | null>;
|
|
31
|
+
default: null;
|
|
32
|
+
};
|
|
33
|
+
size: {
|
|
34
|
+
type: import("vue").PropType<"default" | "compact" | "comfortable">;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
subtitle: {
|
|
38
|
+
type: import("vue").PropType<string | null>;
|
|
39
|
+
default: null;
|
|
40
|
+
};
|
|
41
|
+
icon: {
|
|
42
|
+
type: import("vue").PropType<string | null>;
|
|
43
|
+
default: null;
|
|
44
|
+
};
|
|
45
|
+
modelValue: {
|
|
46
|
+
type: import("vue").PropType<boolean>;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
persistent: {
|
|
50
|
+
type: import("vue").PropType<boolean>;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
}>> & {
|
|
54
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
55
|
+
}, {
|
|
56
|
+
title: string | null;
|
|
57
|
+
size: "default" | "compact" | "comfortable";
|
|
58
|
+
subtitle: string | null;
|
|
59
|
+
icon: string | null;
|
|
60
|
+
modelValue: boolean;
|
|
61
|
+
persistent: boolean;
|
|
62
|
+
}, {}>, {
|
|
63
|
+
default?(_: {}): any;
|
|
64
|
+
}>;
|
|
65
|
+
export default _default;
|
|
66
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
67
|
+
new (): {
|
|
68
|
+
$slots: S;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
@@ -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,79 @@
|
|
|
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;
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
}, {}>;
|
|
32
|
+
export default _default;
|
|
@@ -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,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;
|