@tekkare/auriga 0.1.167 → 0.1.169
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/module.json +1 -1
- package/dist/runtime/components/argDropdownBtn.vue +1 -1
- package/dist/runtime/components/argDropdownSelect.vue +17 -5
- package/dist/runtime/components/argDropdownSelect.vue.d.ts +18 -0
- package/dist/runtime/components/argMapsFrDepartements.vue +198 -0
- package/dist/runtime/components/argMapsFrDepartements.vue.d.ts +57 -0
- package/dist/runtime/components/argMapsFrRegions.vue +216 -0
- package/dist/runtime/components/argMapsFrRegions.vue.d.ts +57 -0
- package/dist/runtime/components/argSectionCard.vue +2 -2
- package/dist/runtime/components/argStyle.vue +1 -1
- package/dist/runtime/components/argTagsRow.vue +70 -62
- package/dist/runtime/components/argTagsRow.vue.d.ts +7 -7
- package/dist/runtime/components/argTextHighlight.vue +265 -0
- package/dist/runtime/components/argTextHighlight.vue.d.ts +113 -0
- package/dist/runtime/components/mapsFr/departementsPath.json +407 -0
- package/dist/runtime/components/mapsFr/interfaces.d.ts +123 -0
- package/dist/runtime/components/mapsFr/interfaces.mjs +125 -0
- package/dist/runtime/components/mapsFr/regionsPath.json +164 -0
- package/dist/runtime/components/oneDepartementFr.vue +64 -0
- package/dist/runtime/components/oneDepartementFr.vue.d.ts +54 -0
- package/dist/runtime/components/oneRegionFr.vue +62 -0
- package/dist/runtime/components/oneRegionFr.vue.d.ts +54 -0
- package/package.json +3 -1
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
text: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
queries: {
|
|
7
|
+
type: {
|
|
8
|
+
(arrayLength: number): string[];
|
|
9
|
+
(...items: string[]): string[];
|
|
10
|
+
new (arrayLength: number): string[];
|
|
11
|
+
new (...items: string[]): string[];
|
|
12
|
+
isArray(arg: any): arg is any[];
|
|
13
|
+
readonly prototype: any[];
|
|
14
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
15
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
16
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
17
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
18
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
19
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
20
|
+
};
|
|
21
|
+
default: null;
|
|
22
|
+
};
|
|
23
|
+
crop: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
lines: {
|
|
28
|
+
type: NumberConstructor;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
haveReadMore: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
id: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: null;
|
|
38
|
+
};
|
|
39
|
+
customReadMore: {
|
|
40
|
+
type: ObjectConstructor;
|
|
41
|
+
default: null;
|
|
42
|
+
};
|
|
43
|
+
lang: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
validator: (value: string) => boolean;
|
|
47
|
+
};
|
|
48
|
+
}, {
|
|
49
|
+
showMore: import("vue").Ref<boolean>;
|
|
50
|
+
needsMore: import("vue").ComputedRef<boolean>;
|
|
51
|
+
renderText: import("vue").ComputedRef<string>;
|
|
52
|
+
readText: import("vue").ComputedRef<Record<string, any>>;
|
|
53
|
+
toggleMore: () => void;
|
|
54
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onShowMore" | "onShowLess")[], "onShowMore" | "onShowLess", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
|
+
text: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
required: true;
|
|
58
|
+
};
|
|
59
|
+
queries: {
|
|
60
|
+
type: {
|
|
61
|
+
(arrayLength: number): string[];
|
|
62
|
+
(...items: string[]): string[];
|
|
63
|
+
new (arrayLength: number): string[];
|
|
64
|
+
new (...items: string[]): string[];
|
|
65
|
+
isArray(arg: any): arg is any[];
|
|
66
|
+
readonly prototype: any[];
|
|
67
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
68
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
69
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
70
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
71
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
72
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
73
|
+
};
|
|
74
|
+
default: null;
|
|
75
|
+
};
|
|
76
|
+
crop: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
lines: {
|
|
81
|
+
type: NumberConstructor;
|
|
82
|
+
default: number;
|
|
83
|
+
};
|
|
84
|
+
haveReadMore: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
id: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: null;
|
|
91
|
+
};
|
|
92
|
+
customReadMore: {
|
|
93
|
+
type: ObjectConstructor;
|
|
94
|
+
default: null;
|
|
95
|
+
};
|
|
96
|
+
lang: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
default: string;
|
|
99
|
+
validator: (value: string) => boolean;
|
|
100
|
+
};
|
|
101
|
+
}>> & {
|
|
102
|
+
onOnShowMore?: ((...args: any[]) => any) | undefined;
|
|
103
|
+
onOnShowLess?: ((...args: any[]) => any) | undefined;
|
|
104
|
+
}, {
|
|
105
|
+
id: string;
|
|
106
|
+
lang: string;
|
|
107
|
+
queries: string[];
|
|
108
|
+
crop: boolean;
|
|
109
|
+
lines: number;
|
|
110
|
+
haveReadMore: boolean;
|
|
111
|
+
customReadMore: Record<string, any>;
|
|
112
|
+
}, {}>;
|
|
113
|
+
export default _default;
|