@tekkare/auriga 0.1.129 → 0.1.131

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 CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.129"
7
+ "version": "0.1.131"
8
8
  }
@@ -0,0 +1,141 @@
1
+ <template>
2
+ <div id="chapter_menu" class="arg_chapters_menu">
3
+ <div class="arg_menu_wrapper" :style="`top: ${headerHeight}px`">
4
+ <p class="arg_menu_title">
5
+ {{
6
+ chaptersTitle !== null
7
+ ? chaptersTitle
8
+ : lang === "en"
9
+ ? "Chapters"
10
+ : lang === "fr"
11
+ ? "Chapitres"
12
+ : "Capítulos"
13
+ }}
14
+ </p>
15
+ <ul class="arg_nav_list">
16
+ <li v-for="(chapter, index) in chaptersList" :key="index">
17
+ <p
18
+ @click="selectChapter(index, chapter.value)"
19
+ :class="index === activeChapter ? 'active' : ''"
20
+ >
21
+ {{ chapter.label }}
22
+ </p>
23
+ </li>
24
+ <div
25
+ v-show="activeChapter !== null"
26
+ class="chapters_selector"
27
+ :id="`chapters_nav_bar`"
28
+ ></div>
29
+ </ul>
30
+ </div>
31
+ </div>
32
+ </template>
33
+
34
+ <script>
35
+ import {
36
+ onMounted,
37
+ ref,
38
+ computed,
39
+ defineComponent
40
+ } from "vue";
41
+ export default defineComponent({
42
+ name: "argChaptersNav",
43
+ props: {
44
+ chaptersList: {
45
+ type: Array,
46
+ default: () => []
47
+ },
48
+ lang: {
49
+ type: String,
50
+ default: "en",
51
+ validator: (value) => {
52
+ return ["en", "fr", "es"].includes(value);
53
+ }
54
+ },
55
+ chaptersTitle: {
56
+ type: String,
57
+ default: null
58
+ },
59
+ defaultChapter: {
60
+ type: String,
61
+ value: null
62
+ }
63
+ },
64
+ emits: ["onClose"],
65
+ setup(props, { emit }) {
66
+ const activeChapter = ref(null);
67
+ const headerHeight = ref(0);
68
+ const getChaptersInPage = computed(() => {
69
+ const HTMLChapters = ref([]);
70
+ props.chaptersList.forEach((elem) => {
71
+ HTMLChapters.value.push(document.getElementById(elem.value));
72
+ });
73
+ return HTMLChapters.value;
74
+ });
75
+ onMounted(() => {
76
+ const header = document.getElementById("arg_header");
77
+ headerHeight.value = header?.offsetHeight + 8;
78
+ if (props.defaultChapter !== void 0) {
79
+ setTimeout(() => {
80
+ selectChapter(
81
+ props.chaptersList.findIndex(
82
+ (a) => a.value === props.defaultChapter
83
+ ),
84
+ props.defaultChapter
85
+ );
86
+ });
87
+ } else {
88
+ scrollChapters();
89
+ document.addEventListener("scroll", scrollChapters);
90
+ }
91
+ });
92
+ function scrollChapters() {
93
+ getChaptersInPage.value.forEach((elem) => {
94
+ if (elem !== null && isInViewport(elem)) {
95
+ activeChapter.value = props.chaptersList.findIndex(
96
+ (a) => a.value === elem.id
97
+ );
98
+ setBarPosition();
99
+ }
100
+ });
101
+ }
102
+ function getElementPosition(elementId) {
103
+ const element = document.getElementById(elementId);
104
+ if (!element)
105
+ return null;
106
+ const rect = element.getBoundingClientRect();
107
+ return rect.top + window.scrollY;
108
+ }
109
+ function isInViewport(element) {
110
+ if (!element)
111
+ return false;
112
+ const rect = element.getBoundingClientRect();
113
+ return rect.top <= getElementPosition("chapter_menu") + headerHeight.value;
114
+ }
115
+ function selectChapter(index, anchorId) {
116
+ document.removeEventListener("scroll", scrollChapters, true);
117
+ activeChapter.value = index;
118
+ setBarPosition();
119
+ const targetElement = document.getElementById(anchorId);
120
+ if (targetElement) {
121
+ const targetPosition = targetElement.offsetTop - headerHeight.value;
122
+ window.scrollTo({ top: targetPosition, behavior: "smooth" });
123
+ }
124
+ }
125
+ function setBarPosition() {
126
+ const selector = document?.getElementById(`chapters_nav_bar`);
127
+ if (selector !== null) {
128
+ if (activeChapter.value === 0) {
129
+ selector.style.transform = `translateY(${0}px)`;
130
+ } else {
131
+ selector.style.transform = `translateY(${(22 + 16) * activeChapter.value}px)`;
132
+ }
133
+ }
134
+ }
135
+ return { selectChapter, activeChapter, headerHeight };
136
+ }
137
+ });
138
+ </script>
139
+ <style scoped>
140
+ a{color:var(--primary);text-decoration:underline}.arg_chapters_menu{width:auto}.arg_menu_wrapper>ul{border-left:2px solid var(--light);display:flex;flex-direction:column;gap:16px;padding-left:8px;position:relative;scroll-behavior:smooth;white-space:nowrap;z-index:0}.arg_menu_wrapper>ul>li{align-items:center;display:flex;font-size:14px;font-style:normal;font-weight:400;line-height:160%;list-style:none;padding:0}.arg_menu_wrapper{left:0;position:sticky}.arg_nav_list a{color:var(--darkest);text-decoration:none}.arg_nav_list p:hover,li p.active{color:var(--primary)!important}.arg_chapters_menu{align-self:stretch;flex:0 0 auto}.arg_chapters_menu ul li p{cursor:pointer;text-decoration:none}.arg_menu_title{font-size:14px;font-style:normal;font-weight:700;line-height:160%}.chapters_selector{background-color:var(--primary);height:22px;left:-1px;list-style:none;position:absolute;top:0;transition:transform .3s cubic-bezier(.645,.045,.355,1);width:2px;z-index:5}
141
+ </style>
@@ -0,0 +1,48 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ chaptersList: {
3
+ type: ArrayConstructor;
4
+ default: () => never[];
5
+ };
6
+ lang: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ validator: (value: string) => boolean;
10
+ };
11
+ chaptersTitle: {
12
+ type: StringConstructor;
13
+ default: null;
14
+ };
15
+ defaultChapter: {
16
+ type: StringConstructor;
17
+ value: null;
18
+ };
19
+ }, {
20
+ selectChapter: (index: number, anchorId: string) => void;
21
+ activeChapter: import("vue").Ref<any>;
22
+ headerHeight: import("vue").Ref<number>;
23
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24
+ chaptersList: {
25
+ type: ArrayConstructor;
26
+ default: () => never[];
27
+ };
28
+ lang: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ validator: (value: string) => boolean;
32
+ };
33
+ chaptersTitle: {
34
+ type: StringConstructor;
35
+ default: null;
36
+ };
37
+ defaultChapter: {
38
+ type: StringConstructor;
39
+ value: null;
40
+ };
41
+ }>> & {
42
+ onOnClose?: ((...args: any[]) => any) | undefined;
43
+ }, {
44
+ lang: string;
45
+ chaptersList: unknown[];
46
+ chaptersTitle: string;
47
+ }, {}>;
48
+ export default _default;
@@ -0,0 +1,451 @@
1
+ <!-- eslint-disable vue/attribute-hyphenation -->
2
+ <!-- eslint-disable vue/max-attributes-per-line -->
3
+ <template>
4
+ <div>
5
+ <argBtn prefixIcon="FileXls" :loading="isLoading" @click="launchDownload">
6
+ {{ name }}
7
+ </argBtn>
8
+ </div>
9
+ </template>
10
+
11
+ <script>
12
+ import argBtn from "./argBtn.vue";
13
+ import XLSX from "xlsx-js-style";
14
+ import { ref, defineComponent } from "vue";
15
+ export default defineComponent({
16
+ name: "ArgExportXLSX",
17
+ components: { argBtn },
18
+ props: {
19
+ name: {
20
+ type: String,
21
+ default: "Export"
22
+ },
23
+ title: {
24
+ type: String,
25
+ require: true,
26
+ default: "export-tekkare"
27
+ },
28
+ kpi: {
29
+ type: Array,
30
+ default: null
31
+ },
32
+ subtitle: {
33
+ type: String,
34
+ require: false,
35
+ default: null
36
+ },
37
+ sources: {
38
+ type: Array,
39
+ require: true,
40
+ default: () => ["Source"]
41
+ },
42
+ worksheets: {
43
+ type: Array,
44
+ require: true,
45
+ default: null
46
+ },
47
+ isCustom: {
48
+ type: Boolean,
49
+ default: false
50
+ },
51
+ beforeExport: {
52
+ type: Function,
53
+ default: () => null
54
+ }
55
+ },
56
+ setup(props) {
57
+ const isLoading = ref(false);
58
+ const launchDownload = async () => {
59
+ isLoading.value = true;
60
+ if (props.beforeExport !== null) {
61
+ await props.beforeExport();
62
+ }
63
+ const pageData = [];
64
+ const emptyObject = {};
65
+ for (let i = 0; i < 26; i++) {
66
+ emptyObject[i] = " ";
67
+ }
68
+ for (let i = 0; i < 60; i++) {
69
+ pageData.push({ ...emptyObject });
70
+ }
71
+ const workbook = XLSX.utils.book_new();
72
+ const pageDeGarde = XLSX.utils.json_to_sheet(pageData);
73
+ let formattedWorksheets = null;
74
+ if (!props.isCustom) {
75
+ formattedWorksheets = props.worksheets?.map((worksheet) => {
76
+ return {
77
+ name: worksheet.name,
78
+ value: XLSX.utils.json_to_sheet(worksheet.value),
79
+ sizes: worksheet.sizes,
80
+ formatToNumber: worksheet.formatToNumber,
81
+ formatToPourcent: worksheet.formatToPourcent
82
+ };
83
+ });
84
+ } else {
85
+ formattedWorksheets = props.worksheets;
86
+ }
87
+ XLSX.utils.book_append_sheet(workbook, pageDeGarde, `Tekkare`);
88
+ if (formattedWorksheets !== null && formattedWorksheets !== void 0) {
89
+ formattedWorksheets.forEach((worksheet) => {
90
+ XLSX.utils.book_append_sheet(
91
+ workbook,
92
+ worksheet.value,
93
+ worksheet.name
94
+ );
95
+ if (worksheet.sizes !== null && worksheet.sizes !== void 0 && worksheet.sizes.length > 0) {
96
+ const columnSizes = [];
97
+ worksheet.sizes.forEach(
98
+ (column) => columnSizes.push({ wch: column })
99
+ );
100
+ worksheet.value["!cols"] = columnSizes;
101
+ }
102
+ for (let lettre = 65; lettre <= 90; lettre++) {
103
+ for (let chiffre = 1; chiffre < Object.keys(worksheet.value).length; chiffre++) {
104
+ const cellule = String.fromCharCode(lettre) + chiffre;
105
+ if (chiffre === 1 && worksheet.value[cellule] !== void 0) {
106
+ worksheet.value[cellule].s = { font: { bold: true, sz: 12 } };
107
+ }
108
+ if (worksheet.formatToNumber !== void 0 && worksheet.formatToNumber !== null && worksheet.formatToNumber.length > 0) {
109
+ worksheet.formatToNumber.forEach((columnToFormat) => {
110
+ if (String.fromCharCode(lettre) === columnToFormat && chiffre !== 1 && worksheet.value[`${columnToFormat}${chiffre}`] !== void 0) {
111
+ worksheet.value[`${columnToFormat}${chiffre}`].v > 1e3 ? worksheet.value[`${columnToFormat}${chiffre}`].z = "#,##0" : worksheet.value[`${columnToFormat}${chiffre}`].z = "#,##0.00";
112
+ }
113
+ });
114
+ }
115
+ if (worksheet.formatToPourcent !== void 0 && worksheet.formatToPourcent !== null && worksheet.formatToPourcent.length > 0) {
116
+ worksheet.formatToPourcent.forEach((columnToFormat) => {
117
+ if (String.fromCharCode(lettre) === columnToFormat && chiffre !== 1 && worksheet.value[`${columnToFormat}${chiffre}`] !== void 0) {
118
+ worksheet.value[`${columnToFormat}${chiffre}`].z = "0.00%";
119
+ }
120
+ });
121
+ }
122
+ }
123
+ }
124
+ });
125
+ }
126
+ pageDeGarde["!cols"] = [
127
+ { wch: 10 },
128
+ { wch: 10 },
129
+ { wch: 10 },
130
+ { wch: 10 },
131
+ { wch: 50 },
132
+ { wch: 50 }
133
+ ];
134
+ XLSX.utils.sheet_add_aoa(
135
+ pageDeGarde,
136
+ [
137
+ [
138
+ `This document was generated on ${(/* @__PURE__ */ new Date()).toLocaleString([], {
139
+ dateStyle: "short"
140
+ })} by`
141
+ ]
142
+ ],
143
+ {
144
+ origin: "E5"
145
+ }
146
+ );
147
+ XLSX.utils.sheet_add_aoa(pageDeGarde, [["Tekkare \u{1F49C}"]], {
148
+ origin: "E7"
149
+ });
150
+ XLSX.utils.sheet_add_aoa(
151
+ pageDeGarde,
152
+ [[`Your export currently contains :`]],
153
+ {
154
+ origin: "E11"
155
+ }
156
+ );
157
+ let currentRow = 26;
158
+ props.sources.forEach((source) => {
159
+ XLSX.utils.sheet_add_aoa(pageDeGarde, [[`${source}`]], {
160
+ origin: `E${currentRow}`
161
+ });
162
+ pageDeGarde[`E${currentRow}`].s = {
163
+ font: {
164
+ name: "Figtree",
165
+ sz: 18
166
+ },
167
+ border: {
168
+ top: { style: "dotted", color: { rgb: "FFFFFF" } },
169
+ left: { style: "dotted", color: { rgb: "FFFFFF" } },
170
+ right: { style: "dotted", color: { rgb: "FFFFFF" } },
171
+ bottom: { style: "dotted", color: { rgb: "FFFFFF" } }
172
+ },
173
+ alignment: {
174
+ vertical: "center",
175
+ horizontal: "center"
176
+ }
177
+ };
178
+ currentRow++;
179
+ });
180
+ XLSX.utils.sheet_add_aoa(
181
+ pageDeGarde,
182
+ [
183
+ [
184
+ "",
185
+ "",
186
+ "",
187
+ "",
188
+ "",
189
+ "",
190
+ "",
191
+ "",
192
+ "",
193
+ "",
194
+ "",
195
+ "",
196
+ "",
197
+ "",
198
+ "",
199
+ "",
200
+ "",
201
+ "",
202
+ "",
203
+ "",
204
+ "",
205
+ "",
206
+ "",
207
+ "",
208
+ "",
209
+ "",
210
+ "",
211
+ "",
212
+ "",
213
+ ""
214
+ ]
215
+ ],
216
+ {
217
+ origin: "A1"
218
+ }
219
+ );
220
+ if (props.kpi !== null && props.kpi !== void 0) {
221
+ XLSX.utils.sheet_add_aoa(
222
+ pageDeGarde,
223
+ [
224
+ props.kpi[1] !== null && props.kpi[1] !== void 0 ? [`${props.kpi[0].value}`, `${props.kpi[1].value}`] : [`${props.kpi[0].value}`]
225
+ ],
226
+ {
227
+ origin: "E14"
228
+ }
229
+ );
230
+ XLSX.utils.sheet_add_aoa(
231
+ pageDeGarde,
232
+ [
233
+ props.kpi[1] !== null && props.kpi[1] !== void 0 ? [`${props.kpi[0].label}`, `${props.kpi[1].label}`] : [`${props.kpi[0].label}`]
234
+ ],
235
+ {
236
+ origin: "E15"
237
+ }
238
+ );
239
+ }
240
+ if (props.kpi !== null && props.kpi !== void 0 && props.kpi.length > 2) {
241
+ XLSX.utils.sheet_add_aoa(
242
+ pageDeGarde,
243
+ [
244
+ props.kpi[3] !== null && props.kpi[3] !== void 0 ? [`${props.kpi[2].value}`, `${props.kpi[3].value}`] : [`${props.kpi[2].value}`]
245
+ ],
246
+ {
247
+ origin: "E18"
248
+ }
249
+ );
250
+ XLSX.utils.sheet_add_aoa(
251
+ pageDeGarde,
252
+ [
253
+ props.kpi[3] !== null && props.kpi[3] !== void 0 ? [`${props.kpi[2].label}`, `${props.kpi[3].label}`] : [`${props.kpi[2].label}`]
254
+ ],
255
+ {
256
+ origin: "E19"
257
+ }
258
+ );
259
+ }
260
+ if (props.subtitle !== null && props.subtitle !== void 0) {
261
+ XLSX.utils.sheet_add_aoa(pageDeGarde, [[props.subtitle]], {
262
+ origin: "E23"
263
+ });
264
+ }
265
+ const style = {
266
+ border: {
267
+ top: { style: "dotted", color: { rgb: "FFFFFF" } },
268
+ left: { style: "dotted", color: { rgb: "FFFFFF" } },
269
+ right: { style: "dotted", color: { rgb: "FFFFFF" } },
270
+ bottom: { style: "dotted", color: { rgb: "FFFFFF" } }
271
+ }
272
+ };
273
+ const firstRowStyle = {
274
+ font: {
275
+ bold: true,
276
+ sz: 14
277
+ },
278
+ border: {
279
+ top: { style: "dotted", color: { rgb: "FFFFFF" } },
280
+ left: { style: "dotted", color: { rgb: "FFFFFF" } },
281
+ right: { style: "dotted", color: { rgb: "FFFFFF" } },
282
+ bottom: { style: "dotted", color: { rgb: "FFFFFF" } }
283
+ }
284
+ };
285
+ for (let lettre = 65; lettre <= 90; lettre++) {
286
+ for (let chiffre = 1; chiffre < 60; chiffre++) {
287
+ const cellule = String.fromCharCode(lettre) + chiffre;
288
+ if (String.fromCharCode(lettre) === "1") {
289
+ pageDeGarde[cellule].s = firstRowStyle;
290
+ } else {
291
+ pageDeGarde[cellule].s = style;
292
+ }
293
+ }
294
+ }
295
+ pageDeGarde["E7"].s = {
296
+ font: {
297
+ name: "Figtree",
298
+ sz: 72,
299
+ bold: true
300
+ },
301
+ alignment: {
302
+ vertical: "center",
303
+ horizontal: "center"
304
+ },
305
+ border: {
306
+ top: { color: { rgb: "FFFFFF" } },
307
+ left: { color: { rgb: "FFFFFF" } },
308
+ right: { color: { rgb: "FFFFFF" } },
309
+ bottom: { color: { rgb: "FFFFFF" } }
310
+ }
311
+ };
312
+ const smallStyle = {
313
+ font: {
314
+ name: "Figtree",
315
+ sz: 18
316
+ },
317
+ border: {
318
+ top: { color: { rgb: "FFFFFF" } },
319
+ left: { color: { rgb: "FFFFFF" } },
320
+ right: { color: { rgb: "FFFFFF" } },
321
+ bottom: { color: { rgb: "FFFFFF" } }
322
+ }
323
+ };
324
+ const kpiStyle = {
325
+ font: {
326
+ color: { rgb: "525670" },
327
+ name: "Figtree",
328
+ sz: 16,
329
+ italic: true
330
+ },
331
+ border: {
332
+ top: { color: { rgb: "FFFFFF" } },
333
+ left: { color: { rgb: "FFFFFF" } },
334
+ right: { color: { rgb: "FFFFFF" } },
335
+ bottom: { color: { rgb: "FFFFFF" } }
336
+ },
337
+ alignment: {
338
+ vertical: "center",
339
+ horizontal: "center"
340
+ }
341
+ };
342
+ const kpiBoldStyle = {
343
+ font: {
344
+ name: "Figtree",
345
+ sz: 18,
346
+ bold: true
347
+ },
348
+ border: {
349
+ top: { color: { rgb: "FFFFFF" } },
350
+ left: { color: { rgb: "FFFFFF" } },
351
+ right: { color: { rgb: "FFFFFF" } },
352
+ bottom: { color: { rgb: "FFFFFF" } }
353
+ },
354
+ alignment: {
355
+ vertical: "center",
356
+ horizontal: "center"
357
+ }
358
+ };
359
+ pageDeGarde["E5"].s = {
360
+ font: {
361
+ name: "Figtree",
362
+ sz: 14
363
+ },
364
+ border: {
365
+ top: { color: { rgb: "FFFFFF" } },
366
+ left: { color: { rgb: "FFFFFF" } },
367
+ right: { color: { rgb: "FFFFFF" } },
368
+ bottom: { color: { rgb: "FFFFFF" } }
369
+ },
370
+ alignment: {
371
+ vertical: "center",
372
+ horizontal: "center"
373
+ }
374
+ };
375
+ pageDeGarde["E11"].s = {
376
+ ...smallStyle,
377
+ alignment: {
378
+ horizontal: "center"
379
+ }
380
+ };
381
+ pageDeGarde["E23"].s = {
382
+ font: {
383
+ name: "Figtree",
384
+ sz: 16
385
+ },
386
+ border: {
387
+ top: { style: "dotted", color: { rgb: "FFFFFF" } },
388
+ left: { style: "dotted", color: { rgb: "FFFFFF" } },
389
+ right: { style: "dotted", color: { rgb: "FFFFFF" } },
390
+ bottom: { style: "dotted", color: { rgb: "FFFFFF" } }
391
+ },
392
+ alignment: {
393
+ vertical: "center",
394
+ horizontal: "center"
395
+ }
396
+ };
397
+ pageDeGarde["E14"].s = kpiBoldStyle;
398
+ pageDeGarde["E15"].s = kpiStyle;
399
+ pageDeGarde["F14"].s = kpiBoldStyle;
400
+ pageDeGarde["F15"].s = kpiStyle;
401
+ pageDeGarde["E18"].s = kpiBoldStyle;
402
+ pageDeGarde["E19"].s = kpiStyle;
403
+ pageDeGarde["F18"].s = kpiBoldStyle;
404
+ pageDeGarde["F19"].s = kpiStyle;
405
+ for (let row = 26; row <= 40; row++) {
406
+ pageDeGarde[`E${row}`].s = {
407
+ font: {
408
+ name: "Figtree",
409
+ sz: 16
410
+ },
411
+ border: {
412
+ top: { style: "dotted", color: { rgb: "FFFFFF" } },
413
+ left: { style: "dotted", color: { rgb: "FFFFFF" } },
414
+ right: { style: "dotted", color: { rgb: "FFFFFF" } },
415
+ bottom: { style: "dotted", color: { rgb: "FFFFFF" } }
416
+ },
417
+ alignment: {
418
+ vertical: "center",
419
+ horizontal: "center"
420
+ }
421
+ };
422
+ }
423
+ pageDeGarde["!merges"] = [
424
+ { s: { r: 6, c: 4 }, e: { r: 6, c: 5 } },
425
+ { s: { r: 10, c: 4 }, e: { r: 10, c: 5 } },
426
+ { s: { r: 22, c: 4 }, e: { r: 22, c: 5 } },
427
+ { s: { r: 4, c: 4 }, e: { r: 4, c: 5 } }
428
+ ];
429
+ props.sources.forEach((source, index) => {
430
+ pageDeGarde["!merges"].push({
431
+ s: { r: 25 + index, c: 4 },
432
+ e: { r: 25 + index, c: 5 }
433
+ });
434
+ });
435
+ XLSX.writeFile(
436
+ workbook,
437
+ `${props.title}-from_${(/* @__PURE__ */ new Date()).toLocaleString([], {
438
+ dateStyle: "short"
439
+ })}.xlsx`
440
+ );
441
+ isLoading.value = false;
442
+ };
443
+ return {
444
+ launchDownload,
445
+ isLoading
446
+ };
447
+ }
448
+ });
449
+ </script>
450
+
451
+ <style scoped></style>
@@ -0,0 +1,100 @@
1
+ import type { PropType } from "vue";
2
+ interface KPIContent {
3
+ label: string;
4
+ value: any;
5
+ }
6
+ interface WorksheetContent {
7
+ name: string;
8
+ value: any;
9
+ sizes?: number[];
10
+ formatToNumber?: string[];
11
+ formatToPourcent?: string[];
12
+ }
13
+ declare const _default: import("vue").DefineComponent<{
14
+ name: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ title: {
19
+ type: StringConstructor;
20
+ require: boolean;
21
+ default: string;
22
+ };
23
+ kpi: {
24
+ type: PropType<KPIContent[]>;
25
+ default: null;
26
+ };
27
+ subtitle: {
28
+ type: StringConstructor;
29
+ require: boolean;
30
+ default: null;
31
+ };
32
+ sources: {
33
+ type: PropType<String[]>;
34
+ require: boolean;
35
+ default: () => string[];
36
+ };
37
+ worksheets: {
38
+ type: PropType<WorksheetContent[] | null>;
39
+ require: boolean;
40
+ default: null;
41
+ };
42
+ isCustom: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ beforeExport: {
47
+ type: FunctionConstructor;
48
+ default: () => null;
49
+ };
50
+ }, {
51
+ launchDownload: () => Promise<void>;
52
+ isLoading: import("vue").Ref<boolean>;
53
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
54
+ name: {
55
+ type: StringConstructor;
56
+ default: string;
57
+ };
58
+ title: {
59
+ type: StringConstructor;
60
+ require: boolean;
61
+ default: string;
62
+ };
63
+ kpi: {
64
+ type: PropType<KPIContent[]>;
65
+ default: null;
66
+ };
67
+ subtitle: {
68
+ type: StringConstructor;
69
+ require: boolean;
70
+ default: null;
71
+ };
72
+ sources: {
73
+ type: PropType<String[]>;
74
+ require: boolean;
75
+ default: () => string[];
76
+ };
77
+ worksheets: {
78
+ type: PropType<WorksheetContent[] | null>;
79
+ require: boolean;
80
+ default: null;
81
+ };
82
+ isCustom: {
83
+ type: BooleanConstructor;
84
+ default: boolean;
85
+ };
86
+ beforeExport: {
87
+ type: FunctionConstructor;
88
+ default: () => null;
89
+ };
90
+ }>>, {
91
+ name: string;
92
+ title: string;
93
+ subtitle: string;
94
+ kpi: KPIContent[];
95
+ sources: String[];
96
+ worksheets: WorksheetContent[] | null;
97
+ isCustom: boolean;
98
+ beforeExport: Function;
99
+ }, {}>;
100
+ export default _default;
@@ -121,5 +121,5 @@ export default defineComponent({
121
121
  </script>
122
122
 
123
123
  <style scoped>
124
- .justify-between{justify-content:space-between}.width-100{width:100%}.language_container{border:none;border-radius:4px;cursor:pointer;display:flex;flex-direction:column;padding:8px;position:relative;transition:background-color .3s linear,overflow .3s linear;z-index:99}.language_container.in-sidebar.open{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.language_container.close{background-color:transparent;max-height:42px;overflow:hidden}.language_container.open{overflow:visible}.language_container.open,.language_container.open.in-sidebar:hover,.language_container:not(.in-sidebar):hover{background:#fdfdff}.language_container.open{box-shadow:5px 5px 5px rgba(62,63,94,.06)}.language_container.in-sidebar:hover{background:var(--light)}.language_container:hover svg{color:var(--primary)!important}.lang_choice_container{background-color:#fdfdff;border-top:none!important;border:none;border-radius:4px;box-shadow:5px 5px 5px rgba(62,63,94,.06);display:flex;flex-direction:column;gap:4px;padding:8px 16px;position:absolute;transition:max-height .3s linear,max-width .3s linear,opacity .3s ease}.lang_choice_container.is_one{border-bottom-left-radius:0!important}.lang_choice_container.in-sidebar{left:100%;top:50%;transform:translateY(-49%)}.lang_choice_container:not(.in-sidebar){border-top-left-radius:0!important;border-top-right-radius:0!important;left:0;right:0;top:32px}.lang_choice_container.in-sidebar.open{max-width:1000px;opacity:1}.lang_choice_container.in-sidebar.close{max-width:0;opacity:0}.lang_choice_container.open:not(.in-sidebar){max-height:100px;opacity:1}.lang_choice_container.close:not(.in-sidebar){max-height:0;opacity:0}.active_lang .lang_choice_container{border-top:none!important}.lang_choice:hover{color:var(--primary)!important}.lang_choice_icon{flex-shrink:0;transition:transform .3s}.icon-rotate{transform:rotate(-180deg)}p{font-size:14px;font-style:normal;font-weight:400;line-height:160%;white-space:nowrap}.lang-choice:hover p{color:var(--primary)!important}
124
+ .justify-between{justify-content:space-between}.width-100{width:100%}.language_container{border:none;border-radius:4px;cursor:pointer;display:flex;flex-direction:column;padding:8px;position:relative;transition:background-color .3s linear,overflow .3s linear;z-index:99}.language_container.in-sidebar.open{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.language_container.close{background-color:transparent;max-height:42px;overflow:hidden}.language_container.open{overflow:visible}.language_container.open,.language_container.open.in-sidebar:hover,.language_container:not(.in-sidebar):hover{background:#fdfdff}.language_container.open{box-shadow:5px 5px 5px rgba(62,63,94,.06)}.language_container.in-sidebar:hover{background:var(--light)}.language_container:hover svg{color:var(--primary)!important}.lang_choice_container{background-color:#fdfdff;border-top:none!important;border:none;border-radius:4px;box-shadow:5px 5px 5px rgba(62,63,94,.06);display:flex;flex-direction:column;gap:4px;padding:8px 16px;position:absolute;transition:max-height .3s linear,max-width .3s linear,opacity .3s ease}.lang_choice_container.is_one{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.lang_choice_container.in-sidebar{left:100%;top:50%;transform:translateY(-49%)}.lang_choice_container:not(.in-sidebar){border-top-left-radius:0!important;border-top-right-radius:0!important;left:0;right:0;top:32px}.lang_choice_container.in-sidebar.open{max-width:1000px;opacity:1}.lang_choice_container.in-sidebar.close{max-width:0;opacity:0}.lang_choice_container.open:not(.in-sidebar){max-height:100px;opacity:1}.lang_choice_container.close:not(.in-sidebar){max-height:0;opacity:0}.active_lang .lang_choice_container{border-top:none!important}.lang_choice:hover{color:var(--primary)!important}.lang_choice_icon{flex-shrink:0;transition:transform .3s}.icon-rotate{transform:rotate(-180deg)}p{font-size:14px;font-style:normal;font-weight:400;line-height:160%;white-space:nowrap}.lang-choice:hover p{color:var(--primary)!important}
125
125
  </style>
@@ -23,5 +23,5 @@ const drawSquircle=(ctx,geom,radii,smooth,lineWidth,color)=>{const defaultFill=c
23
23
  });
24
24
  </script>
25
25
  <style>
26
- @import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");:root{--white:#fff;--darkest:#1e293b;--dark:#525670;--medium:#878ca6;--light:#dbdef0;--primary:#2176ff;--primary-hover:#0f44be;--primary-light:#d3e4ff;--accent:#2176ff;--accent-hover:#0f44be;--system-alert:#ef4444;--system-alert-hover:#d21616;--warning:#fd9147;--system-success:#22c55e;--red:#fc4229;--orange:#fda929;--yellow:#fed33e;--lime:#98d92d;--green:#45ca47;--cyan:#3ad9d8;--blue:#1dacfc;--navy:#4475fb;--purple:#a17def;--pink:#f55a8d;--lightest:#f5f5f9;--demi-fond:#f9f9fa;--small-shadow:0px 1px 2px 0px rgba(30,41,59,.1);--medium-shadow:0px 2px 4px 0px rgba(30,41,59,.1);--large-shadow:0px 6px 8px 0px rgba(30,41,59,.1);--overlay-shadow:0px 0px 40px rgba(94,92,154,.12);--button-big-shadow:3px 5px 10px rgba(62,63,94,.2);--primary-button-shadow:4px 7px 12px 0px rgba(33,118,255,.2);--secondary-button-shadow:4px 7px 12px 0px rgba(62,63,94,.2);--warning-button-shadow:4px 7px 12px 0px rgba(239,68,68,.2);--system-success-button-shadow:4px 7px 12px 0px rgba(34,197,94,.2);--rcd-purple:#6f35ef}body,input{font-family:Figtree,sans-serif!important}body{background:var(--lightest);color:var(--darkest);margin:0;text-wrap:pretty}a{color:unset;font-family:Figtree,sans-serif!important;text-decoration:none}hr{background:var(--light)!important;border:none;box-shadow:none;height:1px;margin:0}h1,h2,h3,h4,h5,h6,p{margin:0}button,h1,h2,h3,h4,h5,h6,p{font-family:Figtree,sans-serif!important}.oip_container{margin:0 auto;max-width:1080px;padding-right:58px}.main_container{display:flex;justify-content:center}.arg_page_layout{align-items:center;align-self:stretch;display:flex;flex-direction:column;gap:32px}.arg_page_full{width:100%}.arg_page_flex_full{flex-basis:100%}.arg_page_content,.arg_page_display{align-items:center;align-self:stretch;display:flex;flex-direction:column;gap:32px}.arg_page_content{padding:0 24px}.arg_scope_page_content{align-items:flex-start;display:flex;flex-direction:column;gap:32px;width:100%}.oip_filter_display,.oip_title_display{display:flex;flex-direction:column;gap:4px}.oip_kpi_big{font-size:36px;font-weight:700;line-height:42px}.oip_kpi_big,.oip_section_title{color:var(--darkest);font-style:normal}.oip_section_title{font-size:26px;font-weight:900;line-height:30px}.oip_title{font-size:24px;line-height:28px}.oip_kpi_small,.oip_title{color:var(--darkest);font-style:normal;font-weight:700}.oip_kpi_small{font-size:22px;line-height:26px}.oip_heading{font-size:20px;font-weight:900;line-height:23px}.oip_heading,.oip_subtitle{color:var(--darkest);font-style:normal}.oip_subtitle{font-size:16px;font-weight:700;line-height:19px}.oip_body_highlight{color:var(--primary);font-weight:500}.oip_body,.oip_body_highlight{font-size:14px;font-style:normal;line-height:160%}.oip_body{color:var(--darkest);font-weight:400}.oip_label{font-style:normal;font-weight:700}.oip_filter_label,.oip_label{color:var(--dark);font-size:12px;line-height:14px}.oip_filter_label{font-weight:400}.oip_title_label{color:var(--medium);line-height:normal}.oip_caption,.oip_title_label{font-size:12px;font-style:normal;font-weight:500}.oip_caption{color:var(--dark);line-height:14px}.oip_underline{color:var(--darkest);font-size:12px;font-style:normal;font-weight:400;line-height:14px}.oip_success{color:var(--system-success)!important}.oip_alert{color:var(--system-alert)!important}.oip_warning{color:var(--warning)!important}.oip_grid{display:flex;flex-wrap:wrap}.oip_grid.xs-step{gap:4px}.oip_grid.s-step{gap:8px}.oip_grid.m-step{gap:16px}.oip_grid.l-step{gap:36px}.oip_grid.xl-step{gap:72px}.oip_grid .oip_item{flex-grow:1}.oip_row{display:flex;flex-direction:row}.arg_list,.oip_list{display:flex;flex-direction:column}.oip_row.wrap{flex-wrap:wrap}.oip_row.centered{justify-content:center}.oip_row.start{justify-content:flex-start}.oip_row.end{justify-content:flex-end}.oip_row.space-between{justify-content:space-between}.oip_row.v-start{align-items:flex-start}.oip_row.v-center{align-items:center}.oip_row.v-bottom{align-items:flex-end}.oip_row.gap-4,.oip_row.gap-6{gap:4px}.oip_row.gap-8{gap:8px}.oip_row.gap-10{gap:10px}.oip_row.gap-12{gap:12px}.oip_row.gap-16{gap:16px}.oip_row.gap-20{gap:10px}.oip_row.gap-24,.oip_row.gap-28{gap:24px}.oip_row.gap-32{gap:32px}.oip_btn{align-items:center;border-radius:8px!important;cursor:pointer!important;display:flex;font-size:14px!important;font-style:normal!important;font-weight:700!important;gap:10px;justify-content:center;line-height:16px!important;-webkit-mask-image:paint(squircle);mask-image:paint(squircle);outline:none!important;padding:0 16px!important;position:relative;text-align:center;white-space:nowrap;width:-moz-fit-content;width:fit-content;--squircle-radius:8px;--squircle-smooth:1;align-self:stretch;min-height:100%}.oip_primary-fill_shadow{background:transparent;border-radius:8px;box-shadow:var(--primary-button-shadow)!important}.oip_secondary-fill_shadow{background:transparent;border-radius:8px;box-shadow:var(--secondary-button-shadow)!important}.oip_warning-fill_shadow{background:transparent;border-radius:8px;box-shadow:var(--warning-button-shadow)!important}.oip_success-fill_shadow{border-radius:8px;box-shadow:var(--system-success-button-shadow)!important}.oip_primary-fill_shadow:hover,.oip_secondary-fill_shadow:hover,.oip_success-fill_shadow:hover,.oip_warning-fill_shadow:hover{box-shadow:none!important}.oip_btn_s{display:flex;min-height:32px}.oip_btn_m{display:flex;min-height:40px}.oip_full_btn{align-self:stretch!important;flex:1 1 0}.oip_round_btn{border-radius:16px!important}.oip_primary-fill_button{background:var(--primary)!important;border:2px solid var(--primary)!important;color:var(--white)!important}.oip_primary-fill_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_primary-fill_button:focus,.oip_primary-fill_button:hover{background:var(--primary-hover)!important;border:2px solid var(--primary-hover)!important;box-shadow:none!important;color:var(--white)!important}.oip_primary-fill_button.is-disabled,.oip_primary-fill_button.is-disabled:focus,.oip_primary-fill_button.is-disabled:hover{background:var(--light)!important;border:2px solid var(--light)!important;box-shadow:none!important;color:var(--medium)!important}.oip_primary-fill_icon_button{background:var(--primary)!important;border:2px solid var(--primary)!important;box-shadow:var(--primary-button-shadow)!important;color:var(--white)!important;padding:0 6px!important}.oip_primary-fill_icon_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_primary-fill_icon_button:focus,.oip_primary-fill_icon_button:hover{background:var(--primary-hover)!important;border:2px solid var(--primary-hover)!important;box-shadow:var(--primary-button-shadow)!important;color:var(--white)!important}.oip_secondary-fill_button{background:var(--darkest)!important;border:2px solid var(--darkest)!important;box-shadow:4px 7px 12px 0 rgba(62,63,94,.2)!important;color:var(--white)!important}.oip_secondary-fill_button:focus,.oip_secondary-fill_button:hover,.oip_secondary-fill_icon_button:focus,.oip_secondary-fill_icon_button:hover{background:#21223d!important;border:2px solid #21223d!important;box-shadow:none!important}.oip_secondary-fill_button .oip_button_spinner div,.oip_secondary-fill_icon_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_secondary-fill_icon_button{background:var(--darkest)!important;border:2px solid var(--darkest)!important;box-shadow:4px 7px 12px 0 rgba(62,63,94,.2)!important;color:var(--white)!important;padding:0 6px!important}.oip_disable_button,.oip_disable_button:focus,.oip_disable_button:hover,.oip_disable_icon_button,.oip_disable_icon_button:focus,.oip_disable_icon_button:hover{background:var(--light)!important;border:2px solid var(--light)!important;box-shadow:none!important;color:var(--medium)!important;cursor:auto!important}.el-button+.el-button{margin-left:0!important}.oip_secondary-stroke_button{background:transparent!important;border:2px solid rgba(62,63,94,.2)!important;box-shadow:none!important;color:var(--darkest)!important}.oip_secondary-stroke_button:focus,.oip_secondary-stroke_button:hover,.oip_secondary-stroke_icon_button:focus,.oip_secondary-stroke_icon_button:hover{background:rgba(62,63,94,.05)!important;border:2px solid rgba(62,63,94,.2)!important;box-shadow:none!important;color:#21223d!important}.oip_secondary-stroke_button:focus .oip__button_prefix_icon,.oip_secondary-stroke_button:focus .oip__button_suffix_icon,.oip_secondary-stroke_button:hover .oip__button_prefix_icon,.oip_secondary-stroke_button:hover .oip__button_suffix_icon{stroke:var(--darkest)!important;color:var(--darkest)!important}.oip_secondary-stroke_button .oip_button_spinner div,.oip_secondary-stroke_icon_button .oip_button_spinner div{border:2px solid var(--darkest);border-color:var(--darkest) transparent transparent transparent}.oip_secondary-stroke_icon_button{background:transparent!important;border:2px solid rgba(62,63,94,.2)!important;box-shadow:none!important;color:var(--darkest)!important;padding:0 6px!important}.oip_secondary-stroke_icon_button:focus svg,.oip_secondary-stroke_icon_button:hover svg,.oip_secondary-stroke_icon_buttonn:focus svg{stroke:#21223d!important;color:#21223d!important}.oip_primary-stroke_button{background:transparent!important;border:2px solid rgba(33,118,255,.2)!important;box-shadow:none!important;color:var(--primary)!important}.oip_primary-stroke_button:focus,.oip_primary-stroke_button:hover,.oip_primary-stroke_icon_button:focus,.oip_primary-stroke_icon_button:hover{background:rgba(33,118,255,.05)!important;color:var(--primary-hover)!important}.oip_primary-stroke_button .oip_button_spinner div,.oip_primary-stroke_icon_button .oip_button_spinner div{border:2px solid var(--primary);border-color:var(--primary) transparent transparent transparent}.oip_primary-stroke_icon_button{background:transparent!important;border:2px solid rgba(33,118,255,.2)!important;box-shadow:none!important;color:var(--primary)!important;padding:0 6px!important}.oip_warning-stroke_button{background:transparent!important;border:2px solid rgba(239,68,68,.2);box-shadow:none!important;color:var(--system-alert)!important}.oip_warning-stroke_button:focus,.oip_warning-stroke_button:hover,.oip_warning-stroke_icon_button:focus,.oip_warning-stroke_icon_button:hover{background:rgba(239,68,68,.05)!important;border:2px solid rgba(251,70,84,.2)!important;color:var(--system-alert-hover)!important}.oip_warning-stroke_button .oip_button_spinner div,.oip_warning-stroke_icon_button .oip_button_spinner div{border:2px solid var(--system-alert);border-color:var(--system-alert) transparent transparent transparent}.oip_warning-stroke_button:hover .oip_button_spinner div,.oip_warning-stroke_icon_button:hover .oip_button_spinner div{border:2px solid var(--system-alert-hover);border-color:var(--system-alert-hover) transparent transparent transparent}.oip_warning-stroke_button:focus .oip__button_prefix_icon,.oip_warning-stroke_button:focus .oip__button_suffix_icon,.oip_warning-stroke_button:hover .oip__button_prefix_icon,.oip_warning-stroke_button:hover .oip__button_suffix_icon{stroke:var(--system-alert-hover)!important;color:var(--system-alert-hover)!important}.oip_warning-stroke_icon_button{background:transparent!important;border:2px solid rgba(239,68,68,.2)!important;box-shadow:none!important;color:var(--system-alert)!important;padding:0 6px!important}.oip_warning-stroke_icon_button:hover{border:2px solid rgba(251,70,84,.2)!important;color:var(--system-alert-hover)!important}.oip_warning-stroke_icon_button:hover svg{stroke:var(--system-alert-hover)!important;color:var(--system-alert-hover)!important}.oip_warning-fill_button{background:var(--system-alert)!important;border:2px solid rgba(239,68,68,.2);box-shadow:4px 7px 12px 0 rgba(239,68,68,.2)!important;color:var(--white)!important}.oip_warning-fill_button:focus,.oip_warning-fill_button:hover,.oip_warning-fill_icon_button:focus,.oip_warning-fill_icon_button:hover{background:var(--system-alert-hover)!important;border:2px solid var(--system-alert-hover)!important;box-shadow:none!important}.oip_warning-fill_button .oip_button_spinner div,.oip_warning-fill_icon_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_warning-fill_icon_button{background:var(--system-alert)!important;border:2px solid var(--system-alert)!important;box-shadow:4px 7px 12px 0 rgba(239,68,68,.2)!important;color:var(--white)!important;padding:0 6px!important}.oip_success-fill_button{background:var(--green)!important;border:2px solid var(--green)!important;box-shadow:4px 7px 12px 0 rgba(34,197,94,.2)!important;color:var(--white)!important}.oip_success-fill_button:focus,.oip_success-fill_button:hover,.oip_success-fill_icon_button:focus,.oip_success-fill_icon_button:hover{background:#069a3d!important;border:2px solid #069a3d!important;box-shadow:none!important}.oip_success-fill_button .oip_button_spinner div,.oip_success-fill_icon_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_success-fill_icon_button{background:var(--green)!important;border:2px solid var(--green)!important;box-shadow:4px 7px 12px 0 rgba(34,197,94,.2)!important;color:var(--white)!important;padding:0 6px!important}.oip_success-stroke_button{background:transparent!important;border:2px solid rgba(34,197,94,.2)!important;color:var(--system-success)!important}.oip_success-stroke_button:focus,.oip_success-stroke_button:hover,.oip_success-stroke_icon_button:focus,.oip_success-stroke_icon_button:hover{background:rgba(34,197,94,.05)!important;border:2px solid rgba(34,197,94,.2)!important;color:#069a3d!important}.oip_success-stroke_button .oip_button_spinner div,.oip_success-stroke_icon_button .oip_button_spinner div{border:2px solid var(--system-success);border-color:var(--system-success) transparent transparent transparent}.oip_success-stroke_icon_button{border:2px solid rgba(34,197,94,.2)!important;color:var(--system-success)!important;padding:0 6px!important}.oip_button_flex{flex-direction:row;gap:10px;text-wrap:pretty}.oip_button_flex,.oip_button_loading{align-items:center;display:flex;justify-content:center}.oip_button_loading{left:0;position:absolute;right:0}.oip_button_spinner{display:inline-block;height:20px;position:relative;width:20px}.oip_button_spinner div{animation:oip-spinner 1.2s cubic-bezier(.5,0,.5,1) infinite;border:2px solid transparent;border-radius:50%;border-top-color:#fff;box-sizing:border-box;display:block;height:20px;position:absolute;width:20px}.oip_button_spinner div:first-child{animation-delay:-.45s}.oip_button_spinner div:nth-child(2){animation-delay:-.3s}.oip_button_spinner div:nth-child(3){animation-delay:-.15s}@keyframes oip-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.oip_button_is_loading{visibility:hidden}.oip_tag{align-items:center;background:var(--darkest);border-radius:4px;color:var(--white);display:inline-flex;font-family:Figtree,sans-serif;font-size:12px;font-style:normal;font-weight:500;gap:8px;line-height:normal;-webkit-mask-image:paint(squircle);mask-image:paint(squircle);padding:4px 8px;width:-moz-fit-content;width:fit-content;--squircle-radius:4px;--squircle-smooth:1}.oip_tag>svg{cursor:pointer;stroke:var(--white);margin-right:-5px}.oip_tag.is_disabled{background-color:var(--white)!important;color:var(--medium)!important}.oip_tag.is_rose{background:rgba(244,63,94,.1)!important;color:#9f1239}.oip_tag.is_pink{background:rgba(236,72,153,.1)!important;color:#9d174d}.oip_tag.is_fushia{background:rgba(217,70,239,.1)!important;color:#86198f}.oip_tag.is_purple{background:rgba(168,85,247,.1)!important;color:#6b21a8}.oip_tag.is_violet{background:rgba(139,92,246,.1)!important;color:#5b21b6}.oip_tag.is_indigo{background:rgba(99,102,241,.1)!important;color:#3730a3}.oip_tag.is_blue{background:rgba(59,130,246,.1)!important;color:#1e40af}.oip_tag.is_sky{background:rgba(14,165,233,.1)!important;color:#075985}.oip_tag.is_cyan{background:rgba(6,182,212,.1)!important;color:#155e75}.oip_tag.is_teal{background:rgba(20,184,166,.1)!important;color:#115e59}.oip_tag.is_emerald{background:rgba(16,185,129,.1)!important;color:#065f46}.oip_tag.is_green{background:rgba(34,197,94,.1)!important;color:#166534}.oip_tag.is_lime{background:rgba(132,204,22,.1)!important;color:#3f6212}.oip_tag.is_yellow{background:rgba(234,179,8,.1)!important;color:#854d0e}.oip_tag.is_amber{background:rgba(245,158,11,.1)!important;color:#92400e}.oip_tag.is_orange{background:rgba(249,115,22,.1)!important;color:#9a3412}.oip_tag.is_gray{background:rgba(143,145,172,.1)!important;color:var(--darkest)!important}.oip_tag.is_gray svg{stroke:var(--dark);color:var(--dark)}.oip_tag .oip_tag__close{cursor:pointer;display:inline-block;margin-left:4px;margin-top:-2px;vertical-align:middle}.oip_card{background:var(--white);border:1px solid var(--light);border-radius:12px;box-shadow:var(--small-shadow);padding:24px}.oip_card.action:hover,.oip_table_card.action:hover{border:1px solid var(--primary)!important;box-shadow:var(--large-shadow)!important}.oip_table_card{background:var(--white);border:1px solid var(--light);border-radius:12px;box-shadow:var(--small-shadow);padding:24px 0 0}.oip_half_card{flex:1 1 50%}.oip_third_card{flex:1 1 33%}.oip_table_card .oip_card__header{padding:0 24px}.oip_card .oip_card__header{display:flex}.oip_card .oip_card__header .oip_card__header_info{flex-grow:1}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_title{align-items:baseline;display:flex}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_title h1{flex-grow:0}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_title h1 span{color:var(--accent)}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub{align-items:center;color:var(--dark)!important;display:flex;flex-wrap:wrap;margin-top:4px}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub h3,.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub p{color:var(--dark)!important}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub .oip_card__header_sub_divider{color:var(--dark)!important;margin:0 4px}.oip_card .oip_card__header .oip_card__header_buttons{display:flex;column-li:8px}@media screen and (max-width:1000px){.oip_card .oip_card__header .oip_card__header_buttons .oip_download_button,.oip_card .oip_card__header .oip_card__header_buttons .oip_see_details_button{display:none}}@media screen and (min-width:1001px){.oip_card .oip_card__header .oip_card__header_buttons .oip_small_download_button,.oip_card .oip_card__header .oip_card__header_buttons .oip_small_see_details_button{display:none}}.oip_card .oip_card__description{margin-top:32px}.oip_card .oip_card__kpi_container{display:flex;flex-wrap:wrap;gap:32px;margin-top:32px}.oip_card .oip_card__kpi_container .oip_card__kpi_caption{align-items:center;display:flex}.oip_card .oip_card__kpi_container .oip_card__kpi_caption svg{vertical-align:initial!important}.oip_card .oip_card__kpi_container .oip_card__kpi_caption .oip_card__kpi_caption_icon:first-child,.oip_card .oip_card__kpi_container .oip_card__kpi_caption h3{margin-right:4px}.oip_card__kpi .oip_underline{color:var(--dark)!important}.oip_card__kpi .oip_label{color:var(--darkest)!important}.oip_card .oip_card__kpi_container .oip_card__kpi_stats{display:flex;margin-top:16px}.oip_card .oip_card__kpi_container .oip_card__kpi_stats .oip_card__kpi_stats_indicator{border-radius:50%;box-sizing:content-box;height:24px;margin-right:8px;padding:4px;text-align:center;width:24px}.oip_card .oip_card__kpi_container .oip_card__kpi_stats .oip_card__kpi_stats_indicator.trend_up{background:rgba(50,209,117,.1)}.oip_card .oip_card__kpi_container .oip_card__kpi_stats .oip_card__kpi_stats_indicator.trend_down{background:rgba(251,70,84,.1)}.oip_card .oip_card__kpi_container .oip_card__kpi_stats h3.trend_up{color:var(--system-success)}.oip_card .oip_card__kpi_container .oip_card__kpi_stats h3.trend_down{color:var(--system-alert)}.oip_card .oip_card__kpi_divider{background:var(--light);width:1px}.oip_card__tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}.arg_tuto_content{gap:24px;height:100%}.arg_tuto_content,.oip_select_display{align-items:flex-start;display:flex;flex-direction:column}.oip_select_display{gap:4px}.arg_page{height:100%;width:100%}.arg_home_page{gap:40px}.arg_home_page,.toolbar_tab_container{align-items:flex-start;display:flex;flex-direction:column}.toolbar_tab_container{gap:24px}.toolbar_sources_display{gap:var(--s,8px)}.source_descr_display,.toolbar_sources_display{align-items:flex-start;display:flex;flex-direction:column}.source_descr_display{gap:16px}.vue-apexcharts.stepline>div>svg>foreignObject>.apexcharts-legend.apx-legend-position-bottom .apexcharts-legend-series{align-items:center;border:var(--None,1px) solid var(--Main-Light,#dbdef0);border-radius:7px;display:flex;gap:8px;padding:2px 8px}.vue-apexcharts.stepline>div>svg>foreignObject>.apexcharts-legend.apx-legend-position-bottom{bottom:-8px!important}.oip_column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1}.oip_column.narrow{flex:none;width:unset}.oip_column.is-1{flex:none;width:8.33333%}.oip_column.is-2{flex:none;width:16.66667%}.oip_column.is-3{flex:none;width:25%}.oip_column.is-4{flex:none;width:33.33333%}.oip_column.is-5{flex:none;width:41.66667%}.oip_column.is-6{flex:none;width:50%}.oip_column.is-7{flex:none;width:58.33333%}.oip_column.is-8{flex:none;width:66.66667%}.oip_column.is-9{flex:none;width:75%}.oip_column.is-10{flex:none;width:83.33333%}.oip_column.is-11{flex:none;width:91.66667%}.oip_column.is-12{flex:none;width:100%}
26
+ @import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");:root{--white:#fff;--darkest:#1e293b;--dark:#525670;--medium:#878ca6;--light:#dbdef0;--primary:#2176ff;--primary-hover:#0f44be;--primary-light:#d3e4ff;--accent:#2176ff;--accent-hover:#0f44be;--system-alert:#ef4444;--system-alert-hover:#d21616;--warning:#fd9147;--system-success:#22c55e;--red:#fc4229;--orange:#fda929;--yellow:#fed33e;--lime:#98d92d;--green:#45ca47;--cyan:#3ad9d8;--blue:#1dacfc;--navy:#4475fb;--purple:#a17def;--pink:#f55a8d;--lightest:#f5f5f9;--demi-fond:#f9f9fa;--small-shadow:0px 1px 2px 0px rgba(30,41,59,.1);--medium-shadow:0px 2px 4px 0px rgba(30,41,59,.1);--large-shadow:0px 6px 8px 0px rgba(30,41,59,.1);--overlay-shadow:0px 0px 40px rgba(94,92,154,.12);--button-big-shadow:3px 5px 10px rgba(62,63,94,.2);--primary-button-shadow:4px 7px 12px 0px rgba(33,118,255,.2);--secondary-button-shadow:4px 7px 12px 0px rgba(62,63,94,.2);--warning-button-shadow:4px 7px 12px 0px rgba(239,68,68,.2);--system-success-button-shadow:4px 7px 12px 0px rgba(34,197,94,.2);--rcd-purple:#6f35ef}*{scroll-behavior:smooth}body,input{font-family:Figtree,sans-serif!important}body{background:var(--lightest);color:var(--darkest);margin:0;text-wrap:pretty}a{color:unset;font-family:Figtree,sans-serif!important;text-decoration:none}hr{background:var(--light)!important;border:none;box-shadow:none;height:1px;margin:0}h1,h2,h3,h4,h5,h6,p{margin:0}button,h1,h2,h3,h4,h5,h6,p{font-family:Figtree,sans-serif!important}.oip_container{margin:0 auto;max-width:1080px;padding-right:58px}.main_container{display:flex;justify-content:center}.arg_page_layout{align-items:center;align-self:stretch;display:flex;flex-direction:column;gap:32px}.arg_page_full{width:100%}.arg_page_flex_full{flex-basis:100%}.arg_page_content,.arg_page_display{align-items:center;align-self:stretch;display:flex;flex-direction:column;gap:32px}.arg_page_content{padding:0 24px}.arg_scope_page_content{align-items:flex-start;display:flex;flex-direction:column;gap:32px;width:100%}.oip_filter_display,.oip_title_display{display:flex;flex-direction:column;gap:4px}.oip_kpi_big{font-size:36px;font-weight:700;line-height:42px}.oip_kpi_big,.oip_section_title{color:var(--darkest);font-style:normal}.oip_section_title{font-size:26px;font-weight:900;line-height:30px}.oip_title{font-size:24px;line-height:28px}.oip_kpi_small,.oip_title{color:var(--darkest);font-style:normal;font-weight:700}.oip_kpi_small{font-size:22px;line-height:26px}.oip_heading{font-size:20px;font-weight:900;line-height:23px}.oip_heading,.oip_subtitle{color:var(--darkest);font-style:normal}.oip_subtitle{font-size:16px;font-weight:700;line-height:19px}.oip_body_highlight{color:var(--primary);font-weight:500}.oip_body,.oip_body_highlight{font-size:14px;font-style:normal;line-height:160%}.oip_body{color:var(--darkest);font-weight:400}.oip_label{font-style:normal;font-weight:700}.oip_filter_label,.oip_label{color:var(--dark);font-size:12px;line-height:14px}.oip_filter_label{font-weight:400}.oip_title_label{color:var(--medium);line-height:normal}.oip_caption,.oip_title_label{font-size:12px;font-style:normal;font-weight:500}.oip_caption{color:var(--dark);line-height:14px}.oip_underline{color:var(--darkest);font-size:12px;font-style:normal;font-weight:400;line-height:14px}.oip_success{color:var(--system-success)!important}.oip_alert{color:var(--system-alert)!important}.oip_warning{color:var(--warning)!important}.oip_grid{display:flex;flex-wrap:wrap}.oip_grid.xs-step{gap:4px}.oip_grid.s-step{gap:8px}.oip_grid.m-step{gap:16px}.oip_grid.l-step{gap:36px}.oip_grid.xl-step{gap:72px}.oip_grid .oip_item{flex-grow:1}.oip_row{display:flex;flex-direction:row}.arg_list,.oip_list{display:flex;flex-direction:column}.oip_row.wrap{flex-wrap:wrap}.oip_row.centered{justify-content:center}.oip_row.start{justify-content:flex-start}.oip_row.end{justify-content:flex-end}.oip_row.space-between{justify-content:space-between}.oip_row.v-start{align-items:flex-start}.oip_row.v-center{align-items:center}.oip_row.v-bottom{align-items:flex-end}.oip_row.gap-4,.oip_row.gap-6{gap:4px}.oip_row.gap-8{gap:8px}.oip_row.gap-10{gap:10px}.oip_row.gap-12{gap:12px}.oip_row.gap-16{gap:16px}.oip_row.gap-20{gap:10px}.oip_row.gap-24,.oip_row.gap-28{gap:24px}.oip_row.gap-32{gap:32px}.oip_btn{align-items:center;border-radius:8px!important;cursor:pointer!important;display:flex;font-size:14px!important;font-style:normal!important;font-weight:700!important;gap:10px;justify-content:center;line-height:16px!important;-webkit-mask-image:paint(squircle);mask-image:paint(squircle);outline:none!important;padding:0 16px!important;position:relative;text-align:center;white-space:nowrap;width:-moz-fit-content;width:fit-content;--squircle-radius:8px;--squircle-smooth:1;align-self:stretch;min-height:100%}.oip_primary-fill_shadow{background:transparent;border-radius:8px;box-shadow:var(--primary-button-shadow)!important}.oip_secondary-fill_shadow{background:transparent;border-radius:8px;box-shadow:var(--secondary-button-shadow)!important}.oip_warning-fill_shadow{background:transparent;border-radius:8px;box-shadow:var(--warning-button-shadow)!important}.oip_success-fill_shadow{border-radius:8px;box-shadow:var(--system-success-button-shadow)!important}.oip_primary-fill_shadow:hover,.oip_secondary-fill_shadow:hover,.oip_success-fill_shadow:hover,.oip_warning-fill_shadow:hover{box-shadow:none!important}.oip_btn_s{display:flex;min-height:32px}.oip_btn_m{display:flex;min-height:40px}.oip_full_btn{align-self:stretch!important;flex:1 1 0}.oip_round_btn{border-radius:16px!important}.oip_primary-fill_button{background:var(--primary)!important;border:2px solid var(--primary)!important;color:var(--white)!important}.oip_primary-fill_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_primary-fill_button:focus,.oip_primary-fill_button:hover{background:var(--primary-hover)!important;border:2px solid var(--primary-hover)!important;box-shadow:none!important;color:var(--white)!important}.oip_primary-fill_button.is-disabled,.oip_primary-fill_button.is-disabled:focus,.oip_primary-fill_button.is-disabled:hover{background:var(--light)!important;border:2px solid var(--light)!important;box-shadow:none!important;color:var(--medium)!important}.oip_primary-fill_icon_button{background:var(--primary)!important;border:2px solid var(--primary)!important;box-shadow:var(--primary-button-shadow)!important;color:var(--white)!important;padding:0 6px!important}.oip_primary-fill_icon_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_primary-fill_icon_button:focus,.oip_primary-fill_icon_button:hover{background:var(--primary-hover)!important;border:2px solid var(--primary-hover)!important;box-shadow:var(--primary-button-shadow)!important;color:var(--white)!important}.oip_secondary-fill_button{background:var(--darkest)!important;border:2px solid var(--darkest)!important;box-shadow:4px 7px 12px 0 rgba(62,63,94,.2)!important;color:var(--white)!important}.oip_secondary-fill_button:focus,.oip_secondary-fill_button:hover,.oip_secondary-fill_icon_button:focus,.oip_secondary-fill_icon_button:hover{background:#21223d!important;border:2px solid #21223d!important;box-shadow:none!important}.oip_secondary-fill_button .oip_button_spinner div,.oip_secondary-fill_icon_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_secondary-fill_icon_button{background:var(--darkest)!important;border:2px solid var(--darkest)!important;box-shadow:4px 7px 12px 0 rgba(62,63,94,.2)!important;color:var(--white)!important;padding:0 6px!important}.oip_disable_button,.oip_disable_button:focus,.oip_disable_button:hover,.oip_disable_icon_button,.oip_disable_icon_button:focus,.oip_disable_icon_button:hover{background:var(--light)!important;border:2px solid var(--light)!important;box-shadow:none!important;color:var(--medium)!important;cursor:auto!important}.el-button+.el-button{margin-left:0!important}.oip_secondary-stroke_button{background:transparent!important;border:2px solid rgba(62,63,94,.2)!important;box-shadow:none!important;color:var(--darkest)!important}.oip_secondary-stroke_button:focus,.oip_secondary-stroke_button:hover,.oip_secondary-stroke_icon_button:focus,.oip_secondary-stroke_icon_button:hover{background:rgba(62,63,94,.05)!important;border:2px solid rgba(62,63,94,.2)!important;box-shadow:none!important;color:#21223d!important}.oip_secondary-stroke_button:focus .oip__button_prefix_icon,.oip_secondary-stroke_button:focus .oip__button_suffix_icon,.oip_secondary-stroke_button:hover .oip__button_prefix_icon,.oip_secondary-stroke_button:hover .oip__button_suffix_icon{stroke:var(--darkest)!important;color:var(--darkest)!important}.oip_secondary-stroke_button .oip_button_spinner div,.oip_secondary-stroke_icon_button .oip_button_spinner div{border:2px solid var(--darkest);border-color:var(--darkest) transparent transparent transparent}.oip_secondary-stroke_icon_button{background:transparent!important;border:2px solid rgba(62,63,94,.2)!important;box-shadow:none!important;color:var(--darkest)!important;padding:0 6px!important}.oip_secondary-stroke_icon_button:focus svg,.oip_secondary-stroke_icon_button:hover svg,.oip_secondary-stroke_icon_buttonn:focus svg{stroke:#21223d!important;color:#21223d!important}.oip_primary-stroke_button{background:transparent!important;border:2px solid rgba(33,118,255,.2)!important;box-shadow:none!important;color:var(--primary)!important}.oip_primary-stroke_button:focus,.oip_primary-stroke_button:hover,.oip_primary-stroke_icon_button:focus,.oip_primary-stroke_icon_button:hover{background:rgba(33,118,255,.05)!important;color:var(--primary-hover)!important}.oip_primary-stroke_button .oip_button_spinner div,.oip_primary-stroke_icon_button .oip_button_spinner div{border:2px solid var(--primary);border-color:var(--primary) transparent transparent transparent}.oip_primary-stroke_icon_button{background:transparent!important;border:2px solid rgba(33,118,255,.2)!important;box-shadow:none!important;color:var(--primary)!important;padding:0 6px!important}.oip_warning-stroke_button{background:transparent!important;border:2px solid rgba(239,68,68,.2);box-shadow:none!important;color:var(--system-alert)!important}.oip_warning-stroke_button:focus,.oip_warning-stroke_button:hover,.oip_warning-stroke_icon_button:focus,.oip_warning-stroke_icon_button:hover{background:rgba(239,68,68,.05)!important;border:2px solid rgba(251,70,84,.2)!important;color:var(--system-alert-hover)!important}.oip_warning-stroke_button .oip_button_spinner div,.oip_warning-stroke_icon_button .oip_button_spinner div{border:2px solid var(--system-alert);border-color:var(--system-alert) transparent transparent transparent}.oip_warning-stroke_button:hover .oip_button_spinner div,.oip_warning-stroke_icon_button:hover .oip_button_spinner div{border:2px solid var(--system-alert-hover);border-color:var(--system-alert-hover) transparent transparent transparent}.oip_warning-stroke_button:focus .oip__button_prefix_icon,.oip_warning-stroke_button:focus .oip__button_suffix_icon,.oip_warning-stroke_button:hover .oip__button_prefix_icon,.oip_warning-stroke_button:hover .oip__button_suffix_icon{stroke:var(--system-alert-hover)!important;color:var(--system-alert-hover)!important}.oip_warning-stroke_icon_button{background:transparent!important;border:2px solid rgba(239,68,68,.2)!important;box-shadow:none!important;color:var(--system-alert)!important;padding:0 6px!important}.oip_warning-stroke_icon_button:hover{border:2px solid rgba(251,70,84,.2)!important;color:var(--system-alert-hover)!important}.oip_warning-stroke_icon_button:hover svg{stroke:var(--system-alert-hover)!important;color:var(--system-alert-hover)!important}.oip_warning-fill_button{background:var(--system-alert)!important;border:2px solid rgba(239,68,68,.2);box-shadow:4px 7px 12px 0 rgba(239,68,68,.2)!important;color:var(--white)!important}.oip_warning-fill_button:focus,.oip_warning-fill_button:hover,.oip_warning-fill_icon_button:focus,.oip_warning-fill_icon_button:hover{background:var(--system-alert-hover)!important;border:2px solid var(--system-alert-hover)!important;box-shadow:none!important}.oip_warning-fill_button .oip_button_spinner div,.oip_warning-fill_icon_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_warning-fill_icon_button{background:var(--system-alert)!important;border:2px solid var(--system-alert)!important;box-shadow:4px 7px 12px 0 rgba(239,68,68,.2)!important;color:var(--white)!important;padding:0 6px!important}.oip_success-fill_button{background:var(--green)!important;border:2px solid var(--green)!important;box-shadow:4px 7px 12px 0 rgba(34,197,94,.2)!important;color:var(--white)!important}.oip_success-fill_button:focus,.oip_success-fill_button:hover,.oip_success-fill_icon_button:focus,.oip_success-fill_icon_button:hover{background:#069a3d!important;border:2px solid #069a3d!important;box-shadow:none!important}.oip_success-fill_button .oip_button_spinner div,.oip_success-fill_icon_button .oip_button_spinner div{border:2px solid var(--white);border-color:var(--white) transparent transparent transparent}.oip_success-fill_icon_button{background:var(--green)!important;border:2px solid var(--green)!important;box-shadow:4px 7px 12px 0 rgba(34,197,94,.2)!important;color:var(--white)!important;padding:0 6px!important}.oip_success-stroke_button{background:transparent!important;border:2px solid rgba(34,197,94,.2)!important;color:var(--system-success)!important}.oip_success-stroke_button:focus,.oip_success-stroke_button:hover,.oip_success-stroke_icon_button:focus,.oip_success-stroke_icon_button:hover{background:rgba(34,197,94,.05)!important;border:2px solid rgba(34,197,94,.2)!important;color:#069a3d!important}.oip_success-stroke_button .oip_button_spinner div,.oip_success-stroke_icon_button .oip_button_spinner div{border:2px solid var(--system-success);border-color:var(--system-success) transparent transparent transparent}.oip_success-stroke_icon_button{border:2px solid rgba(34,197,94,.2)!important;color:var(--system-success)!important;padding:0 6px!important}.oip_button_flex{flex-direction:row;gap:10px;text-wrap:pretty}.oip_button_flex,.oip_button_loading{align-items:center;display:flex;justify-content:center}.oip_button_loading{left:0;position:absolute;right:0}.oip_button_spinner{display:inline-block;height:20px;position:relative;width:20px}.oip_button_spinner div{animation:oip-spinner 1.2s cubic-bezier(.5,0,.5,1) infinite;border:2px solid transparent;border-radius:50%;border-top-color:#fff;box-sizing:border-box;display:block;height:20px;position:absolute;width:20px}.oip_button_spinner div:first-child{animation-delay:-.45s}.oip_button_spinner div:nth-child(2){animation-delay:-.3s}.oip_button_spinner div:nth-child(3){animation-delay:-.15s}@keyframes oip-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.oip_button_is_loading{visibility:hidden}.oip_tag{align-items:center;background:var(--darkest);border-radius:4px;color:var(--white);display:inline-flex;font-family:Figtree,sans-serif;font-size:12px;font-style:normal;font-weight:500;gap:8px;line-height:normal;-webkit-mask-image:paint(squircle);mask-image:paint(squircle);padding:4px 8px;width:-moz-fit-content;width:fit-content;--squircle-radius:4px;--squircle-smooth:1}.oip_tag>svg{cursor:pointer;stroke:var(--white);margin-right:-5px}.oip_tag.is_disabled{background-color:var(--white)!important;color:var(--medium)!important}.oip_tag.is_rose{background:rgba(244,63,94,.1)!important;color:#9f1239}.oip_tag.is_pink{background:rgba(236,72,153,.1)!important;color:#9d174d}.oip_tag.is_fushia{background:rgba(217,70,239,.1)!important;color:#86198f}.oip_tag.is_purple{background:rgba(168,85,247,.1)!important;color:#6b21a8}.oip_tag.is_violet{background:rgba(139,92,246,.1)!important;color:#5b21b6}.oip_tag.is_indigo{background:rgba(99,102,241,.1)!important;color:#3730a3}.oip_tag.is_blue{background:rgba(59,130,246,.1)!important;color:#1e40af}.oip_tag.is_sky{background:rgba(14,165,233,.1)!important;color:#075985}.oip_tag.is_cyan{background:rgba(6,182,212,.1)!important;color:#155e75}.oip_tag.is_teal{background:rgba(20,184,166,.1)!important;color:#115e59}.oip_tag.is_emerald{background:rgba(16,185,129,.1)!important;color:#065f46}.oip_tag.is_green{background:rgba(34,197,94,.1)!important;color:#166534}.oip_tag.is_lime{background:rgba(132,204,22,.1)!important;color:#3f6212}.oip_tag.is_yellow{background:rgba(234,179,8,.1)!important;color:#854d0e}.oip_tag.is_amber{background:rgba(245,158,11,.1)!important;color:#92400e}.oip_tag.is_orange{background:rgba(249,115,22,.1)!important;color:#9a3412}.oip_tag.is_gray{background:rgba(143,145,172,.1)!important;color:var(--darkest)!important}.oip_tag.is_gray svg{stroke:var(--dark);color:var(--dark)}.oip_tag .oip_tag__close{cursor:pointer;display:inline-block;margin-left:4px;margin-top:-2px;vertical-align:middle}.oip_card{background:var(--white);border:1px solid var(--light);border-radius:12px;box-shadow:var(--small-shadow);padding:24px}.oip_card.action:hover,.oip_table_card.action:hover{border:1px solid var(--primary)!important;box-shadow:var(--large-shadow)!important}.oip_table_card{background:var(--white);border:1px solid var(--light);border-radius:12px;box-shadow:var(--small-shadow);padding:24px 0 0}.oip_half_card{flex:1 1 50%}.oip_third_card{flex:1 1 33%}.oip_table_card .oip_card__header{padding:0 24px}.oip_card .oip_card__header{display:flex}.oip_card .oip_card__header .oip_card__header_info{flex-grow:1}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_title{align-items:baseline;display:flex}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_title h1{flex-grow:0}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_title h1 span{color:var(--accent)}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub{align-items:center;color:var(--dark)!important;display:flex;flex-wrap:wrap;margin-top:4px}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub h3,.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub p{color:var(--dark)!important}.oip_card .oip_card__header .oip_card__header_info .oip_card__header_sub .oip_card__header_sub_divider{color:var(--dark)!important;margin:0 4px}.oip_card .oip_card__header .oip_card__header_buttons{display:flex;column-li:8px}@media screen and (max-width:1000px){.oip_card .oip_card__header .oip_card__header_buttons .oip_download_button,.oip_card .oip_card__header .oip_card__header_buttons .oip_see_details_button{display:none}}@media screen and (min-width:1001px){.oip_card .oip_card__header .oip_card__header_buttons .oip_small_download_button,.oip_card .oip_card__header .oip_card__header_buttons .oip_small_see_details_button{display:none}}.oip_card .oip_card__description{margin-top:32px}.oip_card .oip_card__kpi_container{display:flex;flex-wrap:wrap;gap:32px;margin-top:32px}.oip_card .oip_card__kpi_container .oip_card__kpi_caption{align-items:center;display:flex}.oip_card .oip_card__kpi_container .oip_card__kpi_caption svg{vertical-align:initial!important}.oip_card .oip_card__kpi_container .oip_card__kpi_caption .oip_card__kpi_caption_icon:first-child,.oip_card .oip_card__kpi_container .oip_card__kpi_caption h3{margin-right:4px}.oip_card__kpi .oip_underline{color:var(--dark)!important}.oip_card__kpi .oip_label{color:var(--darkest)!important}.oip_card .oip_card__kpi_container .oip_card__kpi_stats{display:flex;margin-top:16px}.oip_card .oip_card__kpi_container .oip_card__kpi_stats .oip_card__kpi_stats_indicator{border-radius:50%;box-sizing:content-box;height:24px;margin-right:8px;padding:4px;text-align:center;width:24px}.oip_card .oip_card__kpi_container .oip_card__kpi_stats .oip_card__kpi_stats_indicator.trend_up{background:rgba(50,209,117,.1)}.oip_card .oip_card__kpi_container .oip_card__kpi_stats .oip_card__kpi_stats_indicator.trend_down{background:rgba(251,70,84,.1)}.oip_card .oip_card__kpi_container .oip_card__kpi_stats h3.trend_up{color:var(--system-success)}.oip_card .oip_card__kpi_container .oip_card__kpi_stats h3.trend_down{color:var(--system-alert)}.oip_card .oip_card__kpi_divider{background:var(--light);width:1px}.oip_card__tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}.arg_tuto_content{gap:24px;height:100%}.arg_tuto_content,.oip_select_display{align-items:flex-start;display:flex;flex-direction:column}.oip_select_display{gap:4px}.arg_page{height:100%;width:100%}.arg_home_page{gap:40px}.arg_home_page,.toolbar_tab_container{align-items:flex-start;display:flex;flex-direction:column}.toolbar_tab_container{gap:24px}.toolbar_sources_display{gap:var(--s,8px)}.source_descr_display,.toolbar_sources_display{align-items:flex-start;display:flex;flex-direction:column}.source_descr_display{gap:16px}.vue-apexcharts.stepline>div>svg>foreignObject>.apexcharts-legend.apx-legend-position-bottom .apexcharts-legend-series{align-items:center;border:var(--None,1px) solid var(--Main-Light,#dbdef0);border-radius:7px;display:flex;gap:8px;padding:2px 8px}.vue-apexcharts.stepline>div>svg>foreignObject>.apexcharts-legend.apx-legend-position-bottom{bottom:-8px!important}.oip_column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1}.oip_column.narrow{flex:none;width:unset}.oip_column.is-1{flex:none;width:8.33333%}.oip_column.is-2{flex:none;width:16.66667%}.oip_column.is-3{flex:none;width:25%}.oip_column.is-4{flex:none;width:33.33333%}.oip_column.is-5{flex:none;width:41.66667%}.oip_column.is-6{flex:none;width:50%}.oip_column.is-7{flex:none;width:58.33333%}.oip_column.is-8{flex:none;width:66.66667%}.oip_column.is-9{flex:none;width:75%}.oip_column.is-10{flex:none;width:83.33333%}.oip_column.is-11{flex:none;width:91.66667%}.oip_column.is-12{flex:none;width:100%}
27
27
  </style>
@@ -1,5 +1,6 @@
1
- declare module '@svg-maps/usa'
2
- declare module '@svg-maps/usa.counties'
3
- declare module '@svg-maps/france.regions'
4
- declare module '@svg-maps/france.departments'
5
- declare module '@svg-maps/world'
1
+ declare module "@svg-maps/usa";
2
+ declare module "@svg-maps/usa.counties";
3
+ declare module "@svg-maps/france.regions";
4
+ declare module "@svg-maps/france.departments";
5
+ declare module "@svg-maps/world";
6
+ declare module "xlsx-js-style";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.129",
3
+ "version": "0.1.131",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -40,7 +40,8 @@
40
40
  "save": "^2.9.0",
41
41
  "vue-apexcharts": "^1.6.2",
42
42
  "vue-svg-map": "^1.2.0",
43
- "vue3-apexcharts": "^1.4.4"
43
+ "vue3-apexcharts": "^1.4.4",
44
+ "xlsx-js-style": "^1.2.0"
44
45
  },
45
46
  "devDependencies": {
46
47
  "@nuxt/devtools": "latest",