@tekkare/auriga 0.1.82 → 0.1.84

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.82"
7
+ "version": "0.1.84"
8
8
  }
@@ -283,33 +283,46 @@ export default defineComponent({
283
283
  dataLabels: { position: "top", hideOverflowingLabels: true }
284
284
  }
285
285
  };
286
- props.options["dataLabels"] = {
286
+ let defaultDataLabelsConfig = {
287
287
  position: "top",
288
288
  enabled: true,
289
289
  offsetY: -20,
290
- style: { fontSize: "14px", colors: ["#3E3F5E"], fontWeight: "500" },
291
- formatter(value, opt) {
292
- let returnValue = value;
293
- if (compactMode) {
294
- returnValue = new Intl.NumberFormat("en-US", {
295
- notation: "compact",
296
- maximumFractionDigits: 1
297
- }).format(value);
298
- }
299
- if (!compactMode) {
300
- returnValue = new Intl.NumberFormat("fr-FR").format(value);
301
- }
302
- if (hasPercentages) {
303
- let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
304
- (a, b) => a + b,
305
- 0
306
- );
307
- let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
308
- returnValue = returnValue + " (" + percentage2 + "%)";
309
- }
310
- return returnValue;
311
- }
290
+ style: { fontSize: "14px", colors: ["#3E3F5E"], fontWeight: "500" }
312
291
  };
292
+ if (props.options.dataLabels && props.options.dataLabels.formatter) {
293
+ props.options["dataLabels"] = {
294
+ ...defaultDataLabelsConfig,
295
+ ...props.options.dataLabels
296
+ };
297
+ } else {
298
+ let defaultDataLabelFormatter = {
299
+ formatter(value, opt) {
300
+ let returnValue = value;
301
+ if (compactMode) {
302
+ returnValue = new Intl.NumberFormat("en-US", {
303
+ notation: "compact",
304
+ maximumFractionDigits: 1
305
+ }).format(value);
306
+ }
307
+ if (!compactMode) {
308
+ returnValue = new Intl.NumberFormat("fr-FR").format(value);
309
+ }
310
+ if (hasPercentages) {
311
+ let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
312
+ (a, b) => a + b,
313
+ 0
314
+ );
315
+ let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
316
+ returnValue = returnValue + " (" + percentage2 + "%)";
317
+ }
318
+ return returnValue;
319
+ }
320
+ };
321
+ props.options["dataLabels"] = {
322
+ ...defaultDataLabelsConfig,
323
+ ...defaultDataLabelFormatter
324
+ };
325
+ }
313
326
  if (props.hideLegend) {
314
327
  props.options["legend"] = { show: false };
315
328
  }
@@ -346,33 +359,46 @@ export default defineComponent({
346
359
  dataLabels: { position: "top", hideOverflowingLabels: true }
347
360
  }
348
361
  };
349
- props.options["dataLabels"] = {
362
+ let defaultDataLabelsConfig = {
350
363
  position: "top",
351
364
  enabled: true,
352
365
  offsetX: 65,
353
- style: { fontSize: "14px", colors: ["#3E3F5E"] },
354
- formatter(value, opt) {
355
- let returnValue = value;
356
- if (compactMode) {
357
- returnValue = new Intl.NumberFormat("en-US", {
358
- notation: "compact",
359
- maximumFractionDigits: 1
360
- }).format(value);
361
- }
362
- if (!compactMode) {
363
- returnValue = new Intl.NumberFormat("fr-FR").format(value);
364
- }
365
- if (hasPercentages) {
366
- let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
367
- (a, b) => a + b,
368
- 0
369
- );
370
- let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
371
- returnValue = returnValue + " (" + percentage2 + "%)";
372
- }
373
- return returnValue;
374
- }
366
+ style: { fontSize: "14px", colors: ["#3E3F5E"] }
375
367
  };
368
+ if (props.options.dataLabels && props.options.dataLabels.formatter) {
369
+ props.options["dataLabels"] = {
370
+ ...defaultDataLabelsConfig,
371
+ ...props.options.dataLabels
372
+ };
373
+ } else {
374
+ let defaultDataLabelFormatter = {
375
+ formatter(value, opt) {
376
+ let returnValue = value;
377
+ if (compactMode) {
378
+ returnValue = new Intl.NumberFormat("en-US", {
379
+ notation: "compact",
380
+ maximumFractionDigits: 1
381
+ }).format(value);
382
+ }
383
+ if (!compactMode) {
384
+ returnValue = new Intl.NumberFormat("fr-FR").format(value);
385
+ }
386
+ if (hasPercentages) {
387
+ let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
388
+ (a, b) => a + b,
389
+ 0
390
+ );
391
+ let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
392
+ returnValue = returnValue + " (" + percentage2 + "%)";
393
+ }
394
+ return returnValue;
395
+ }
396
+ };
397
+ props.options["dataLabels"] = {
398
+ ...defaultDataLabelsConfig,
399
+ ...defaultDataLabelFormatter
400
+ };
401
+ }
376
402
  if (props.hideLegend) {
377
403
  props.options["legend"] = { show: false };
378
404
  }
@@ -403,33 +429,46 @@ export default defineComponent({
403
429
  dataLabels: { position: "top", hideOverflowingLabels: true }
404
430
  }
405
431
  };
406
- props.options["dataLabels"] = {
432
+ let defaultDataLabelsConfig = {
407
433
  position: "top",
408
434
  enabled: true,
409
435
  offsetX: -30,
410
- style: { fontSize: "14px", colors: ["#FFFFFF"] },
411
- formatter(value, opt) {
412
- let returnValue = value;
413
- if (compactMode) {
414
- returnValue = new Intl.NumberFormat("en-US", {
415
- notation: "compact",
416
- maximumFractionDigits: 1
417
- }).format(value);
418
- }
419
- if (!compactMode) {
420
- returnValue = new Intl.NumberFormat("fr-FR").format(value);
421
- }
422
- if (hasPercentages) {
423
- let groupTotal = 0;
424
- seriesData.map(
425
- (d) => groupTotal = groupTotal + d.data[opt.dataPointIndex]
426
- );
427
- let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / groupTotal).toFixed(1)).replace(",", ".");
428
- returnValue = returnValue + " (" + percentage2 + "%)";
429
- }
430
- return returnValue;
431
- }
436
+ style: { fontSize: "14px", colors: ["#FFFFFF"] }
432
437
  };
438
+ if (props.options.dataLabels && props.options.dataLabels.formatter) {
439
+ props.options["dataLabels"] = {
440
+ ...defaultDataLabelsConfig,
441
+ ...props.options.dataLabels
442
+ };
443
+ } else {
444
+ let defaultDataLabelFormatter = {
445
+ formatter(value, opt) {
446
+ let returnValue = value;
447
+ if (compactMode) {
448
+ returnValue = new Intl.NumberFormat("en-US", {
449
+ notation: "compact",
450
+ maximumFractionDigits: 1
451
+ }).format(value);
452
+ }
453
+ if (!compactMode) {
454
+ returnValue = new Intl.NumberFormat("fr-FR").format(value);
455
+ }
456
+ if (hasPercentages) {
457
+ let groupTotal = 0;
458
+ seriesData.map(
459
+ (d) => groupTotal = groupTotal + d.data[opt.dataPointIndex]
460
+ );
461
+ let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / groupTotal).toFixed(1)).replace(",", ".");
462
+ returnValue = returnValue + " (" + percentage2 + "%)";
463
+ }
464
+ return returnValue;
465
+ }
466
+ };
467
+ props.options["dataLabels"] = {
468
+ ...defaultDataLabelsConfig,
469
+ ...defaultDataLabelFormatter
470
+ };
471
+ }
433
472
  if (props.tooltipOptions) {
434
473
  props.options["tooltip"] = props.tooltipOptions;
435
474
  }
@@ -474,29 +513,42 @@ export default defineComponent({
474
513
  }
475
514
  }
476
515
  };
477
- props.options["dataLabels"] = {
516
+ let defaultDataLabelsConfig = {
478
517
  position: "top",
479
518
  enabled: true,
480
519
  offsetX: -50,
481
- style: { fontSize: "14px", colors: ["#3E3F5E"] },
482
- formatter(value, opt) {
483
- let dataValue = seriesData[opt.seriesIndex].data[opt.dataPointIndex];
484
- let returnValue = dataValue;
485
- if (compactMode) {
486
- returnValue = new Intl.NumberFormat("en-US", {
487
- notation: "compact",
488
- maximumFractionDigits: 1
489
- }).format(dataValue);
490
- }
491
- if (!compactMode) {
492
- returnValue = new Intl.NumberFormat("fr-FR").format(dataValue);
493
- }
494
- if (hasPercentages) {
495
- returnValue = returnValue + " (" + value.toFixed(1) + "%)";
496
- }
497
- return returnValue;
498
- }
520
+ style: { fontSize: "14px", colors: ["#3E3F5E"] }
499
521
  };
522
+ if (props.options.dataLabels && props.options.dataLabels.formatter) {
523
+ props.options["dataLabels"] = {
524
+ ...defaultDataLabelsConfig,
525
+ ...props.options.dataLabels
526
+ };
527
+ } else {
528
+ let defaultDataLabelFormatter = {
529
+ formatter(value, opt) {
530
+ let dataValue = seriesData[opt.seriesIndex].data[opt.dataPointIndex];
531
+ let returnValue = dataValue;
532
+ if (compactMode) {
533
+ returnValue = new Intl.NumberFormat("en-US", {
534
+ notation: "compact",
535
+ maximumFractionDigits: 1
536
+ }).format(dataValue);
537
+ }
538
+ if (!compactMode) {
539
+ returnValue = new Intl.NumberFormat("fr-FR").format(dataValue);
540
+ }
541
+ if (hasPercentages) {
542
+ returnValue = returnValue + " (" + value.toFixed(1) + "%)";
543
+ }
544
+ return returnValue;
545
+ }
546
+ };
547
+ props.options["dataLabels"] = {
548
+ ...defaultDataLabelsConfig,
549
+ ...defaultDataLabelFormatter
550
+ };
551
+ }
500
552
  if (props.tooltipOptions) {
501
553
  props.options["tooltip"] = props.tooltipOptions;
502
554
  }
@@ -514,33 +566,46 @@ export default defineComponent({
514
566
  dataLabels: { position: "top", hideOverflowingLabels: true }
515
567
  }
516
568
  };
517
- props.options["dataLabels"] = {
569
+ let defaultDataLabelsConfig = {
518
570
  position: "top",
519
571
  enabled: true,
520
572
  offsetX: 65,
521
- style: { fontSize: "14px", colors: ["#3E3F5E"] },
522
- formatter(value, opt) {
523
- let returnValue = value;
524
- if (compactMode) {
525
- returnValue = new Intl.NumberFormat("en-US", {
526
- notation: "compact",
527
- maximumFractionDigits: 1
528
- }).format(value);
529
- }
530
- if (!compactMode) {
531
- returnValue = new Intl.NumberFormat("fr-FR").format(value);
532
- }
533
- if (hasPercentages) {
534
- let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
535
- (a, b) => a + b,
536
- 0
537
- );
538
- let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
539
- returnValue = returnValue + " (" + percentage2 + "%)";
540
- }
541
- return returnValue;
542
- }
573
+ style: { fontSize: "14px", colors: ["#3E3F5E"] }
543
574
  };
575
+ if (props.options.dataLabels && props.options.dataLabels.formatter) {
576
+ props.options["dataLabels"] = {
577
+ ...defaultDataLabelsConfig,
578
+ ...props.options.dataLabels
579
+ };
580
+ } else {
581
+ let defaultDataLabelFormatter = {
582
+ formatter(value, opt) {
583
+ let returnValue = value;
584
+ if (compactMode) {
585
+ returnValue = new Intl.NumberFormat("en-US", {
586
+ notation: "compact",
587
+ maximumFractionDigits: 1
588
+ }).format(value);
589
+ }
590
+ if (!compactMode) {
591
+ returnValue = new Intl.NumberFormat("fr-FR").format(value);
592
+ }
593
+ if (hasPercentages) {
594
+ let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
595
+ (a, b) => a + b,
596
+ 0
597
+ );
598
+ let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
599
+ returnValue = returnValue + " (" + percentage2 + "%)";
600
+ }
601
+ return returnValue;
602
+ }
603
+ };
604
+ props.options["dataLabels"] = {
605
+ ...defaultDataLabelsConfig,
606
+ ...defaultDataLabelFormatter
607
+ };
608
+ }
544
609
  if (props.tooltipOptions) {
545
610
  props.options["tooltip"] = props.tooltipOptions;
546
611
  }
@@ -560,32 +625,45 @@ export default defineComponent({
560
625
  };
561
626
  } else if (props.type === "pie") {
562
627
  props.options["labels"] = props.categories;
563
- props.options["dataLabels"] = {
628
+ let defaultDataLabelsConfig = {
564
629
  offset: -50,
565
630
  enabled: true,
566
631
  style: { fontSize: "14px", colors: ["#FFFFFF"] },
567
- dropShadow: { enabled: false },
568
- formatter(value, opt) {
569
- let returnValue = opt.w.config.series[opt.seriesIndex];
570
- if (compactMode) {
571
- returnValue = new Intl.NumberFormat("en-US", {
572
- notation: "compact",
573
- maximumFractionDigits: 1
574
- }).format(opt.w.config.series[opt.seriesIndex]);
575
- }
576
- if (!compactMode) {
577
- returnValue = new Intl.NumberFormat("fr-FR").format(opt.w.config.series[opt.seriesIndex]).replace(",", ".");
578
- }
579
- if (hasPercentages) {
580
- let percentage2 = new Intl.NumberFormat("fr-FR", {
581
- notation: "compact",
582
- maximumFractionDigits: 1
583
- }).format(value).replace(",", ".");
584
- returnValue = returnValue + " (" + percentage2 + "%)";
585
- }
586
- return returnValue;
587
- }
632
+ dropShadow: { enabled: false }
588
633
  };
634
+ if (props.options.dataLabels && props.options.dataLabels.formatter) {
635
+ props.options["dataLabels"] = {
636
+ ...defaultDataLabelsConfig,
637
+ ...props.options.dataLabels
638
+ };
639
+ } else {
640
+ let defaultDataLabelFormatter = {
641
+ formatter(value, opt) {
642
+ let returnValue = opt.w.config.series[opt.seriesIndex];
643
+ if (compactMode) {
644
+ returnValue = new Intl.NumberFormat("en-US", {
645
+ notation: "compact",
646
+ maximumFractionDigits: 1
647
+ }).format(opt.w.config.series[opt.seriesIndex]);
648
+ }
649
+ if (!compactMode) {
650
+ returnValue = new Intl.NumberFormat("fr-FR").format(opt.w.config.series[opt.seriesIndex]).replace(",", ".");
651
+ }
652
+ if (hasPercentages) {
653
+ let percentage2 = new Intl.NumberFormat("fr-FR", {
654
+ notation: "compact",
655
+ maximumFractionDigits: 1
656
+ }).format(value).replace(",", ".");
657
+ returnValue = returnValue + " (" + percentage2 + "%)";
658
+ }
659
+ return returnValue;
660
+ }
661
+ };
662
+ props.options["dataLabels"] = {
663
+ ...defaultDataLabelsConfig,
664
+ ...defaultDataLabelFormatter
665
+ };
666
+ }
589
667
  if (props.tooltipOptions) {
590
668
  props.options["tooltip"] = props.tooltipOptions;
591
669
  }
@@ -10,7 +10,7 @@ export default defineComponent({
10
10
  name: "argDate",
11
11
  props: {
12
12
  rawDate: {
13
- type: String,
13
+ type: String || Number,
14
14
  required: true
15
15
  },
16
16
  lang: {
@@ -13,7 +13,7 @@ declare const _default: import("vue").DefineComponent<{
13
13
  default: boolean;
14
14
  };
15
15
  }, {
16
- formatDate: (str: string) => string;
16
+ formatDate: (str: string | number) => string;
17
17
  monthToString: (month: number) => "Jan." | "Janvier" | "Jan" | "January" | "Fév." | "Février" | "Feb." | "February" | "Mar." | "Mars" | "March" | "Avr." | "Avril" | "Apr." | "April" | "Mai" | "May" | "Juin" | "Jun." | "June" | "Juil." | "Juillet" | "Jul." | "July" | "Aoû." | "Août" | "Aug." | "August" | "Sep." | "Septembre" | "September" | "Oct." | "Octobre" | "October" | "Nov." | "Novembre" | "November" | "Déc." | "Décembre" | "Dec." | "December" | undefined;
18
18
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
19
19
  rawDate: {
@@ -120,6 +120,7 @@ import {
120
120
  import Usa from "@svg-maps/usa";
121
121
  import UsaCounties from "@svg-maps/usa.counties";
122
122
  import France from "@svg-maps/france.regions";
123
+ import FranceDepartments from "@svg-maps/france.departments";
123
124
  import World from "@svg-maps/world";
124
125
  import SvgMap from "./SvgMap.vue";
125
126
  export default defineComponent({
@@ -158,6 +159,7 @@ export default defineComponent({
158
159
  return typeof value4 === "undefined";
159
160
  }
160
161
  onMounted(() => {
162
+ tooltipStyle.value = { display: "none" };
161
163
  updateTableRange();
162
164
  });
163
165
  watch(
@@ -175,6 +177,8 @@ export default defineComponent({
175
177
  return UsaCounties;
176
178
  if (props.country === "World")
177
179
  return World;
180
+ if (props.country === "FranceDepartments")
181
+ return FranceDepartments;
178
182
  return null;
179
183
  }
180
184
  function getLocationName(node) {
@@ -290,5 +294,5 @@ export default defineComponent({
290
294
  </script>
291
295
 
292
296
  <style>
293
- .oip_maps_tooltip>h3{color:(--independence);font-size:18px;font-weight:700}.number_table{flex:none;flex-grow:0;font-family:Figtree,sans-serif;font-size:14px;font-style:normal;font-weight:400;height:45px;left:71px;line-height:180%;margin:0;order:0;position:static;top:10px;width:200px}.oip_maps_tooltip{background-color:var(--white);border:1px solid #dedfe9;border-radius:10px;box-shadow:var(--overlay-shadow);box-sizing:border-box;margin:0 auto;min-width:200px;padding:16px;position:fixed;text-align:left;z-index:2}.svg-map{height:auto;width:100%;stroke:none;stroke-width:.7;stroke-linecap:round;stroke-linejoin:round}.ejprd_map>.svg-map__location{fill:#f3f2f5;cursor:pointer}.ejprd_map.no_hover>.svg-map__location{fill:#f3f2f5;cursor:auto}.ejprd_map>.svg-map__location:focus,.ejprd_map>.svg-map__location:hover{fill:var(--light)!important;filter:brightness(90%);outline:0}.ejprd_map.no_hover>.svg-map__location:focus,.ejprd_map.no_hover>.svg-map__location:hover{fill:inherit!important;filter:brightness(100%);outline:0}.ejprd_map>.svg-map__location[aria-checked=true]{fill:#f4bc44}.ejprd_map.no_hover>.svg-map__location--heat0:focus,.ejprd_map.no_hover>.svg-map__location--heat0:hover,.ejprd_map>.svg-map__location--heat0{fill:#edf5fe!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat1:focus,.ejprd_map.no_hover>.svg-map__location--heat1:hover,.ejprd_map>.svg-map__location--heat1{fill:#dbeafc!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat2:focus,.ejprd_map.no_hover>.svg-map__location--heat2:hover,.ejprd_map>.svg-map__location--heat2{fill:#c8dffb!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat3:focus,.ejprd_map.no_hover>.svg-map__location--heat3:hover,.ejprd_map>.svg-map__location--heat3{fill:#b7d5fa!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat4:focus,.ejprd_map.no_hover>.svg-map__location--heat4:hover,.ejprd_map>.svg-map__location--heat4{fill:#a5cbf9!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat5:focus,.ejprd_map.no_hover>.svg-map__location--heat5:hover,.ejprd_map>.svg-map__location--heat5{fill:#93c0f8!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat6:focus,.ejprd_map.no_hover>.svg-map__location--heat6:hover,.ejprd_map>.svg-map__location--heat6{fill:#82b6f7!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat7:focus,.ejprd_map.no_hover>.svg-map__location--heat7:hover,.ejprd_map>.svg-map__location--heat7{fill:#71abf7!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat8:focus,.ejprd_map.no_hover>.svg-map__location--heat8:hover,.ejprd_map>.svg-map__location--heat8{fill:#5e9ef5!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat9:focus,.ejprd_map.no_hover>.svg-map__location--heat9:hover,.ejprd_map>.svg-map__location--heat9{fill:#5397f5!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat10:focus,.ejprd_map.no_hover>.svg-map__location--heat10:hover,.ejprd_map>.svg-map__location--heat10{fill:#468df4!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat-none:focus,.ejprd_map.no_hover>.svg-map__location--heat-none:hover,.ejprd_map>.svg-map__location--heat-none{fill:#f3f2f5!important;filter:brightness(100%)}.svg-map__location{fill:var(--lightest);cursor:pointer}.no_hover>.svg-map__location{fill:var(--lightest);cursor:auto}.svg-map__location:focus,.svg-map__location:hover{fill:var(--primary)!important;filter:brightness(90%);outline:0}.no_hover>.svg-map__location:focus,.no_hover>.svg-map__location:hover{fill:var(--lightest)!important;filter:brightness(100%);outline:0}.svg-map__location[aria-checked=true]{fill:#f4bc44}.no_hover>.svg-map__location--heat0:focus,.no_hover>.svg-map__location--heat0:hover,.svg-map__location--heat0{fill:#ecf2fe!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat1:focus,.no_hover>.svg-map__location--heat1:hover,.svg-map__location--heat1{fill:#dae5fc!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat2:focus,.no_hover>.svg-map__location--heat2:hover,.svg-map__location--heat2{fill:#c7d8fb!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat3:focus,.no_hover>.svg-map__location--heat3:hover,.svg-map__location--heat3{fill:#b5ccfa!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat4:focus,.no_hover>.svg-map__location--heat4:hover,.svg-map__location--heat4{fill:#a2bff8!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat5:focus,.no_hover>.svg-map__location--heat5:hover,.svg-map__location--heat5{fill:#90b3f7!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat6:focus,.no_hover>.svg-map__location--heat6:hover,.svg-map__location--heat6{fill:#7ea5f6!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat7:focus,.no_hover>.svg-map__location--heat7:hover,.svg-map__location--heat7{fill:#6c99f6!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat8:focus,.no_hover>.svg-map__location--heat8:hover,.svg-map__location--heat8{fill:#5789f4!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat9:focus,.no_hover>.svg-map__location--heat9:hover,.svg-map__location--heat9{fill:#4b80f4!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat10:focus,.no_hover>.svg-map__location--heat10:hover,.svg-map__location--heat10{fill:#3c73f3!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat-none:focus,.no_hover>.svg-map__location--heat-none:hover,.svg-map__location--heat-none{fill:var(--lightest)!important;filter:brightness(100%)}.legend_scale{background:linear-gradient(90deg,#ecf2fe,#3c73f3);display:grid;left:25%;width:45%}.legend_scale,.legend_value{content:"";height:20px;position:relative;top:90%}.legend_value{display:flex;justify-content:space-between;left:24%;width:47%}.legend-divider-1{left:33%}.legend-divider-1,.legend-divider-2{background-color:var(--white);content:"";height:100%;position:absolute;width:1px}.legend-divider-2{left:66%}.legend-value{margin-top:14px}.legend-value>div{display:flex;flex-flow:column;gap:6px}.map_class{display:flex;justify-content:center;margin:auto;padding:0 0 15px}
297
+ .oip_maps_tooltip>h3{color:(--independence);font-size:18px;font-weight:700}.number_table{flex:none;flex-grow:0;font-family:Figtree,sans-serif;font-size:14px;font-style:normal;font-weight:400;height:45px;left:71px;line-height:180%;margin:0;order:0;position:static;top:10px;width:200px}.oip_maps_tooltip{background-color:var(--white);border:1px solid #dedfe9;border-radius:10px;box-shadow:var(--overlay-shadow);box-sizing:border-box;margin:0 auto;min-width:200px;padding:16px;position:fixed;text-align:left;z-index:2}.svg-map{height:auto;width:100%;stroke:none;stroke-width:.7;stroke-linecap:round;stroke-linejoin:round}.ejprd_map>.svg-map__location{fill:#f3f2f5;cursor:pointer}.ejprd_map.no_hover>.svg-map__location{fill:#f3f2f5;cursor:auto}.ejprd_map>.svg-map__location:focus,.ejprd_map>.svg-map__location:hover{fill:var(--primary)!important;filter:brightness(90%);outline:0}.ejprd_map.no_hover>.svg-map__location:focus,.ejprd_map.no_hover>.svg-map__location:hover{fill:#f3f2f5!important;filter:brightness(100%);outline:0}.ejprd_map>.svg-map__location[aria-checked=true]{fill:#f4bc44}.ejprd_map.no_hover>.svg-map__location--heat0:focus,.ejprd_map.no_hover>.svg-map__location--heat0:hover,.ejprd_map>.svg-map__location--heat0{fill:#edf5fe!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat1:focus,.ejprd_map.no_hover>.svg-map__location--heat1:hover,.ejprd_map>.svg-map__location--heat1{fill:#dbeafc!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat2:focus,.ejprd_map.no_hover>.svg-map__location--heat2:hover,.ejprd_map>.svg-map__location--heat2{fill:#c8dffb!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat3:focus,.ejprd_map.no_hover>.svg-map__location--heat3:hover,.ejprd_map>.svg-map__location--heat3{fill:#b7d5fa!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat4:focus,.ejprd_map.no_hover>.svg-map__location--heat4:hover,.ejprd_map>.svg-map__location--heat4{fill:#a5cbf9!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat5:focus,.ejprd_map.no_hover>.svg-map__location--heat5:hover,.ejprd_map>.svg-map__location--heat5{fill:#93c0f8!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat6:focus,.ejprd_map.no_hover>.svg-map__location--heat6:hover,.ejprd_map>.svg-map__location--heat6{fill:#82b6f7!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat7:focus,.ejprd_map.no_hover>.svg-map__location--heat7:hover,.ejprd_map>.svg-map__location--heat7{fill:#71abf7!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat8:focus,.ejprd_map.no_hover>.svg-map__location--heat8:hover,.ejprd_map>.svg-map__location--heat8{fill:#5e9ef5!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat9:focus,.ejprd_map.no_hover>.svg-map__location--heat9:hover,.ejprd_map>.svg-map__location--heat9{fill:#5397f5!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat10:focus,.ejprd_map.no_hover>.svg-map__location--heat10:hover,.ejprd_map>.svg-map__location--heat10{fill:#468df4!important;filter:brightness(100%)}.ejprd_map.no_hover>.svg-map__location--heat-none:focus,.ejprd_map.no_hover>.svg-map__location--heat-none:hover,.ejprd_map>.svg-map__location--heat-none{fill:#f3f2f5!important;filter:brightness(100%)}.svg-map__location{fill:var(--lightest);cursor:pointer}.no_hover>.svg-map__location{fill:var(--lightest);cursor:auto}.svg-map__location:focus,.svg-map__location:hover{fill:var(--primary)!important;filter:brightness(90%);outline:0}.no_hover>.svg-map__location:focus,.no_hover>.svg-map__location:hover{fill:var(--lightest)!important;filter:brightness(100%);outline:0}.svg-map__location[aria-checked=true]{fill:#f4bc44}.no_hover>.svg-map__location--heat0:focus,.no_hover>.svg-map__location--heat0:hover,.svg-map__location--heat0{fill:#ecf2fe!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat1:focus,.no_hover>.svg-map__location--heat1:hover,.svg-map__location--heat1{fill:#dae5fc!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat2:focus,.no_hover>.svg-map__location--heat2:hover,.svg-map__location--heat2{fill:#c7d8fb!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat3:focus,.no_hover>.svg-map__location--heat3:hover,.svg-map__location--heat3{fill:#b5ccfa!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat4:focus,.no_hover>.svg-map__location--heat4:hover,.svg-map__location--heat4{fill:#a2bff8!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat5:focus,.no_hover>.svg-map__location--heat5:hover,.svg-map__location--heat5{fill:#90b3f7!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat6:focus,.no_hover>.svg-map__location--heat6:hover,.svg-map__location--heat6{fill:#7ea5f6!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat7:focus,.no_hover>.svg-map__location--heat7:hover,.svg-map__location--heat7{fill:#6c99f6!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat8:focus,.no_hover>.svg-map__location--heat8:hover,.svg-map__location--heat8{fill:#5789f4!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat9:focus,.no_hover>.svg-map__location--heat9:hover,.svg-map__location--heat9{fill:#4b80f4!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat10:focus,.no_hover>.svg-map__location--heat10:hover,.svg-map__location--heat10{fill:#3c73f3!important;filter:brightness(100%)}.no_hover>.svg-map__location--heat-none:focus,.no_hover>.svg-map__location--heat-none:hover,.svg-map__location--heat-none{fill:var(--lightest)!important;filter:brightness(100%)}.legend_scale{background:linear-gradient(90deg,#ecf2fe,#3c73f3);display:grid;left:25%;width:45%}.legend_scale,.legend_value{content:"";height:20px;position:relative;top:90%}.legend_value{display:flex;justify-content:space-between;left:24%;width:47%}.legend-divider-1{left:33%}.legend-divider-1,.legend-divider-2{background-color:var(--white);content:"";height:100%;position:absolute;width:1px}.legend-divider-2{left:66%}.legend-value{margin-top:14px}.legend-value>div{display:flex;flex-flow:column;gap:6px}.map_class{display:flex;justify-content:center;margin:auto;padding:0 0 15px}
294
298
  </style>
@@ -1,4 +1,5 @@
1
1
  declare module '@svg-maps/usa'
2
2
  declare module '@svg-maps/usa.counties'
3
3
  declare module '@svg-maps/france.regions'
4
+ declare module '@svg-maps/france.departments'
4
5
  declare module '@svg-maps/world'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.82",
3
+ "version": "0.1.84",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -31,6 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@nuxt/kit": "^3.7.3",
34
+ "@svg-maps/france.departments": "^1.0.1",
34
35
  "@svg-maps/france.regions": "^1.1.1",
35
36
  "@svg-maps/usa": "^1.1.1",
36
37
  "@svg-maps/usa.counties": "^1.1.2",