ep-lib-ts 0.1.2 → 0.1.3

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 (38) hide show
  1. package/dist/components/basics/EpBadge.vue.d.ts +38 -0
  2. package/dist/components/basics/EpCard.vue.d.ts +95 -0
  3. package/dist/components/basics/EpDivider.vue.d.ts +51 -0
  4. package/dist/components/basics/EpFlex.vue.d.ts +9 -0
  5. package/dist/components/basics/EpImg.vue.d.ts +76 -0
  6. package/dist/components/basics/EpSection.vue.d.ts +84 -0
  7. package/dist/components/basics/EpSpinner.vue.d.ts +32 -0
  8. package/dist/components/basics/EpTable.vue.d.ts +24 -0
  9. package/dist/components/basics/EpText.vue.d.ts +30 -0
  10. package/dist/components/educationals/EpEdu.vue.d.ts +80 -0
  11. package/dist/components/educationals/EpReading.vue.d.ts +151 -0
  12. package/dist/components/educationals/EpScope.vue.d.ts +14 -0
  13. package/dist/components/interactions/EpAccordeon.vue.d.ts +54 -0
  14. package/dist/components/interactions/EpContentSlider.vue.d.ts +2 -0
  15. package/dist/components/interactions/EpModal.vue.d.ts +70 -0
  16. package/dist/components/interactions/EpQuestion.vue.d.ts +2 -0
  17. package/dist/components/interactions/EpTabs.vue.d.ts +2 -0
  18. package/dist/components/medias/EpAudio.vue.d.ts +79 -0
  19. package/dist/components/medias/EpCarousel.vue.d.ts +32 -0
  20. package/dist/components/medias/EpIframe.vue.d.ts +58 -0
  21. package/dist/components/medias/EpLink.vue.d.ts +73 -0
  22. package/dist/components/medias/EpSoftware.vue.d.ts +88 -0
  23. package/dist/components/medias/EpSvg.vue.d.ts +2 -0
  24. package/dist/components/medias/EpTerm.vue.d.ts +80 -0
  25. package/dist/components/medias/EpTimeLine.vue.d.ts +2 -0
  26. package/dist/components/medias/EpVideo.vue.d.ts +64 -0
  27. package/dist/components/medias/EpVideoPanopto.vue.d.ts +64 -0
  28. package/dist/components/signages/EpAlert.vue.d.ts +63 -0
  29. package/dist/components/signages/EpHeader.vue.d.ts +101 -0
  30. package/dist/components/signages/EpQuote.vue.d.ts +39 -0
  31. package/dist/components/tools/BgAudio.vue.d.ts +14 -0
  32. package/dist/components/tools/DisplayBox.vue.d.ts +17 -0
  33. package/dist/ep-lib-ts.js +6397 -88
  34. package/dist/ep-lib-ts.umd.cjs +42 -10
  35. package/dist/index.d.ts +32 -1
  36. package/dist/main.d.ts +34 -0
  37. package/dist/style.css +1 -0
  38. package/package.json +1 -1
@@ -0,0 +1,38 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ color: {
3
+ type: import("vue").PropType<string>;
4
+ default: string;
5
+ };
6
+ iconPath: {
7
+ type: import("vue").PropType<string | null>;
8
+ default: null;
9
+ };
10
+ outlined: {
11
+ type: import("vue").PropType<boolean>;
12
+ };
13
+ square: {
14
+ type: import("vue").PropType<boolean>;
15
+ default: boolean;
16
+ };
17
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18
+ color: {
19
+ type: import("vue").PropType<string>;
20
+ default: string;
21
+ };
22
+ iconPath: {
23
+ type: import("vue").PropType<string | null>;
24
+ default: null;
25
+ };
26
+ outlined: {
27
+ type: import("vue").PropType<boolean>;
28
+ };
29
+ square: {
30
+ type: import("vue").PropType<boolean>;
31
+ default: boolean;
32
+ };
33
+ }>>, {
34
+ color: string;
35
+ iconPath: string | null;
36
+ square: boolean;
37
+ }, {}>;
38
+ export default _default;
@@ -0,0 +1,95 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ flat: {
3
+ type: import("vue").PropType<boolean>;
4
+ default: boolean;
5
+ };
6
+ title: {
7
+ type: import("vue").PropType<string | null>;
8
+ default: null;
9
+ };
10
+ color: {
11
+ type: import("vue").PropType<string | null>;
12
+ default: null;
13
+ };
14
+ outlined: {
15
+ type: import("vue").PropType<boolean>;
16
+ default: boolean;
17
+ };
18
+ subtitle: {
19
+ type: import("vue").PropType<string | null>;
20
+ default: null;
21
+ };
22
+ icon: {
23
+ type: import("vue").PropType<string | null>;
24
+ default: null;
25
+ };
26
+ src: {
27
+ type: import("vue").PropType<string | null>;
28
+ default: null;
29
+ };
30
+ maxWidth: {
31
+ type: import("vue").PropType<string>;
32
+ default: string;
33
+ };
34
+ density: {
35
+ type: import("vue").PropType<"default" | "compact" | "comfortable">;
36
+ default: string;
37
+ };
38
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
39
+ flat: {
40
+ type: import("vue").PropType<boolean>;
41
+ default: boolean;
42
+ };
43
+ title: {
44
+ type: import("vue").PropType<string | null>;
45
+ default: null;
46
+ };
47
+ color: {
48
+ type: import("vue").PropType<string | null>;
49
+ default: null;
50
+ };
51
+ outlined: {
52
+ type: import("vue").PropType<boolean>;
53
+ default: boolean;
54
+ };
55
+ subtitle: {
56
+ type: import("vue").PropType<string | null>;
57
+ default: null;
58
+ };
59
+ icon: {
60
+ type: import("vue").PropType<string | null>;
61
+ default: null;
62
+ };
63
+ src: {
64
+ type: import("vue").PropType<string | null>;
65
+ default: null;
66
+ };
67
+ maxWidth: {
68
+ type: import("vue").PropType<string>;
69
+ default: string;
70
+ };
71
+ density: {
72
+ type: import("vue").PropType<"default" | "compact" | "comfortable">;
73
+ default: string;
74
+ };
75
+ }>>, {
76
+ flat: boolean;
77
+ title: string | null;
78
+ color: string | null;
79
+ outlined: boolean;
80
+ subtitle: string | null;
81
+ icon: string | null;
82
+ src: string | null;
83
+ maxWidth: string;
84
+ density: "default" | "compact" | "comfortable";
85
+ }, {}>, {
86
+ "card-header"?(_: {}): any;
87
+ default?(_: {}): any;
88
+ "card-actions"?(_: {}): any;
89
+ }>;
90
+ export default _default;
91
+ type __VLS_WithTemplateSlots<T, S> = T & {
92
+ new (): {
93
+ $slots: S;
94
+ };
95
+ };
@@ -0,0 +1,51 @@
1
+ import type Border from '../../types/Border';
2
+ declare const _default: import("vue").DefineComponent<{
3
+ color: {
4
+ type: import("vue").PropType<string | null>;
5
+ default: null;
6
+ };
7
+ size: {
8
+ type: import("vue").PropType<Border>;
9
+ default: string;
10
+ };
11
+ icon: {
12
+ type: import("vue").PropType<string | null>;
13
+ default: null;
14
+ };
15
+ inset: {
16
+ type: import("vue").PropType<boolean>;
17
+ default: boolean;
18
+ };
19
+ margin: {
20
+ type: import("vue").PropType<string>;
21
+ default: string;
22
+ };
23
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
24
+ color: {
25
+ type: import("vue").PropType<string | null>;
26
+ default: null;
27
+ };
28
+ size: {
29
+ type: import("vue").PropType<Border>;
30
+ default: string;
31
+ };
32
+ icon: {
33
+ type: import("vue").PropType<string | null>;
34
+ default: null;
35
+ };
36
+ inset: {
37
+ type: import("vue").PropType<boolean>;
38
+ default: boolean;
39
+ };
40
+ margin: {
41
+ type: import("vue").PropType<string>;
42
+ default: string;
43
+ };
44
+ }>>, {
45
+ color: string | null;
46
+ size: Border;
47
+ icon: string | null;
48
+ inset: boolean;
49
+ margin: string;
50
+ }, {}>;
51
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -0,0 +1,76 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ caption: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ title: {
6
+ type: import("vue").PropType<string>;
7
+ };
8
+ height: {
9
+ type: import("vue").PropType<string | number>;
10
+ };
11
+ width: {
12
+ type: import("vue").PropType<string | number>;
13
+ };
14
+ src: {
15
+ type: import("vue").PropType<string>;
16
+ required: true;
17
+ };
18
+ alt: {
19
+ type: import("vue").PropType<string>;
20
+ default: string;
21
+ };
22
+ thumbnail: {
23
+ type: import("vue").PropType<boolean>;
24
+ default: boolean;
25
+ };
26
+ bib: {
27
+ type: import("vue").PropType<string>;
28
+ };
29
+ gallery: {
30
+ type: import("vue").PropType<boolean>;
31
+ };
32
+ cols: {
33
+ type: import("vue").PropType<string | number>;
34
+ default: string;
35
+ };
36
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
37
+ caption: {
38
+ type: import("vue").PropType<string>;
39
+ };
40
+ title: {
41
+ type: import("vue").PropType<string>;
42
+ };
43
+ height: {
44
+ type: import("vue").PropType<string | number>;
45
+ };
46
+ width: {
47
+ type: import("vue").PropType<string | number>;
48
+ };
49
+ src: {
50
+ type: import("vue").PropType<string>;
51
+ required: true;
52
+ };
53
+ alt: {
54
+ type: import("vue").PropType<string>;
55
+ default: string;
56
+ };
57
+ thumbnail: {
58
+ type: import("vue").PropType<boolean>;
59
+ default: boolean;
60
+ };
61
+ bib: {
62
+ type: import("vue").PropType<string>;
63
+ };
64
+ gallery: {
65
+ type: import("vue").PropType<boolean>;
66
+ };
67
+ cols: {
68
+ type: import("vue").PropType<string | number>;
69
+ default: string;
70
+ };
71
+ }>>, {
72
+ alt: string;
73
+ thumbnail: boolean;
74
+ cols: string | number;
75
+ }, {}>;
76
+ export default _default;
@@ -0,0 +1,84 @@
1
+ declare const _default: __VLS_WithTemplateSlots<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
+ };
13
+ prependIcon: {
14
+ type: import("vue").PropType<string | null>;
15
+ };
16
+ subtitle: {
17
+ type: import("vue").PropType<string | null>;
18
+ };
19
+ src: {
20
+ type: import("vue").PropType<string | null>;
21
+ };
22
+ iconSize: {
23
+ type: import("vue").PropType<string | number>;
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
+ };
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 | null>;
40
+ default: null;
41
+ };
42
+ color: {
43
+ type: import("vue").PropType<string | null>;
44
+ default: null;
45
+ };
46
+ height: {
47
+ type: import("vue").PropType<string | null>;
48
+ };
49
+ prependIcon: {
50
+ type: import("vue").PropType<string | null>;
51
+ };
52
+ subtitle: {
53
+ type: import("vue").PropType<string | null>;
54
+ };
55
+ src: {
56
+ type: import("vue").PropType<string | null>;
57
+ };
58
+ iconSize: {
59
+ type: import("vue").PropType<string | number>;
60
+ };
61
+ taxonomyLevel: {
62
+ type: import("vue").PropType<string | null>;
63
+ };
64
+ courseCode: {
65
+ type: import("vue").PropType<string | null>;
66
+ };
67
+ courseTitle: {
68
+ type: import("vue").PropType<string | null>;
69
+ };
70
+ synchrone: {
71
+ type: import("vue").PropType<boolean>;
72
+ };
73
+ }>>, {
74
+ title: string | null;
75
+ color: string | null;
76
+ }, {}>, {
77
+ default?(_: {}): any;
78
+ }>;
79
+ export default _default;
80
+ type __VLS_WithTemplateSlots<T, S> = T & {
81
+ new (): {
82
+ $slots: S;
83
+ };
84
+ };
@@ -0,0 +1,32 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ color: {
3
+ type: import("vue").PropType<string>;
4
+ default: string;
5
+ };
6
+ size: {
7
+ type: import("vue").PropType<number>;
8
+ default: number;
9
+ };
10
+ dots: {
11
+ type: import("vue").PropType<boolean>;
12
+ default: boolean;
13
+ };
14
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
+ color: {
16
+ type: import("vue").PropType<string>;
17
+ default: string;
18
+ };
19
+ size: {
20
+ type: import("vue").PropType<number>;
21
+ default: number;
22
+ };
23
+ dots: {
24
+ type: import("vue").PropType<boolean>;
25
+ default: boolean;
26
+ };
27
+ }>>, {
28
+ color: string;
29
+ size: number;
30
+ dots: boolean;
31
+ }, {}>;
32
+ export default _default;
@@ -0,0 +1,24 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ arrayContent: {
6
+ type: import("vue").PropType<string[][]>;
7
+ required: true;
8
+ };
9
+ headers: {
10
+ type: import("vue").PropType<string[] | null>;
11
+ };
12
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
13
+ title: {
14
+ type: import("vue").PropType<string>;
15
+ };
16
+ arrayContent: {
17
+ type: import("vue").PropType<string[][]>;
18
+ required: true;
19
+ };
20
+ headers: {
21
+ type: import("vue").PropType<string[] | null>;
22
+ };
23
+ }>>, {}, {}>;
24
+ export default _default;
@@ -0,0 +1,30 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: import("vue").PropType<string>;
4
+ };
5
+ compact: {
6
+ type: import("vue").PropType<boolean>;
7
+ };
8
+ glossary: {
9
+ type: import("vue").PropType<any[]>;
10
+ };
11
+ content: {
12
+ type: import("vue").PropType<string>;
13
+ required: true;
14
+ };
15
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
16
+ title: {
17
+ type: import("vue").PropType<string>;
18
+ };
19
+ compact: {
20
+ type: import("vue").PropType<boolean>;
21
+ };
22
+ glossary: {
23
+ type: import("vue").PropType<any[]>;
24
+ };
25
+ content: {
26
+ type: import("vue").PropType<string>;
27
+ required: true;
28
+ };
29
+ }>>, {}, {}>;
30
+ export default _default;
@@ -0,0 +1,80 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ flat: {
3
+ type: import("vue").PropType<boolean>;
4
+ default: boolean;
5
+ };
6
+ title: {
7
+ type: import("vue").PropType<string | null>;
8
+ default: null;
9
+ };
10
+ type: {
11
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
12
+ default: string;
13
+ };
14
+ subtitle: {
15
+ type: import("vue").PropType<string | null>;
16
+ };
17
+ icon: {
18
+ type: import("vue").PropType<string>;
19
+ };
20
+ synchrone: {
21
+ type: import("vue").PropType<boolean>;
22
+ };
23
+ mandateLevel: {
24
+ type: import("vue").PropType<string | null>;
25
+ };
26
+ intentions: {
27
+ type: import("vue").PropType<string>;
28
+ };
29
+ hideIcon: {
30
+ type: import("vue").PropType<boolean>;
31
+ default: boolean;
32
+ };
33
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
34
+ flat: {
35
+ type: import("vue").PropType<boolean>;
36
+ default: boolean;
37
+ };
38
+ title: {
39
+ type: import("vue").PropType<string | null>;
40
+ default: null;
41
+ };
42
+ type: {
43
+ type: import("vue").PropType<"base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error">;
44
+ default: string;
45
+ };
46
+ subtitle: {
47
+ type: import("vue").PropType<string | null>;
48
+ };
49
+ icon: {
50
+ type: import("vue").PropType<string>;
51
+ };
52
+ synchrone: {
53
+ type: import("vue").PropType<boolean>;
54
+ };
55
+ mandateLevel: {
56
+ type: import("vue").PropType<string | null>;
57
+ };
58
+ intentions: {
59
+ type: import("vue").PropType<string>;
60
+ };
61
+ hideIcon: {
62
+ type: import("vue").PropType<boolean>;
63
+ default: boolean;
64
+ };
65
+ }>>, {
66
+ flat: boolean;
67
+ title: string | null;
68
+ type: "base" | "primary" | "secondary" | "accent" | "info" | "warning" | "success" | "error";
69
+ hideIcon: boolean;
70
+ }, {}>, {
71
+ intentions?(_: {}): any;
72
+ content?(_: {}): any;
73
+ actions?(_: {}): any;
74
+ }>;
75
+ export default _default;
76
+ type __VLS_WithTemplateSlots<T, S> = T & {
77
+ new (): {
78
+ $slots: S;
79
+ };
80
+ };
@@ -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;