@tekkare/auriga 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/argAdvancedSearchBar.vue +2 -1
  3. package/dist/runtime/components/argChart.vue +663 -0
  4. package/dist/runtime/components/argChart.vue.d.ts +110 -0
  5. package/dist/runtime/components/argCheckbox.vue +153 -0
  6. package/dist/runtime/components/argCheckbox.vue.d.ts +58 -0
  7. package/dist/runtime/components/argComplexSelect.vue +115 -20
  8. package/dist/runtime/components/argComplexSelect.vue.d.ts +55 -0
  9. package/dist/runtime/components/argDropdownSelect.vue +23 -24
  10. package/dist/runtime/components/argDropdownSelect.vue.d.ts +18 -1
  11. package/dist/runtime/components/argFlag.vue +277 -0
  12. package/dist/runtime/components/argFlag.vue.d.ts +258 -0
  13. package/dist/runtime/components/argFooter.vue +41 -0
  14. package/dist/runtime/components/argFooter.vue.d.ts +2 -0
  15. package/dist/runtime/components/argHeader.vue +96 -0
  16. package/dist/runtime/components/argHeader.vue.d.ts +44 -0
  17. package/dist/runtime/components/argHeaderTabs.vue +6 -3
  18. package/dist/runtime/components/argInfoBar.vue +0 -0
  19. package/dist/runtime/components/argLineBreak.vue +21 -0
  20. package/dist/runtime/components/argLineBreak.vue.d.ts +2 -0
  21. package/dist/runtime/components/argMainLayout.vue +56 -0
  22. package/dist/runtime/components/argMainLayout.vue.d.ts +2 -0
  23. package/dist/runtime/components/argMenuItem.vue +73 -0
  24. package/dist/runtime/components/argMenuItem.vue.d.ts +36 -0
  25. package/dist/runtime/components/argMenuLink.vue +39 -0
  26. package/dist/runtime/components/argMenuLink.vue.d.ts +32 -0
  27. package/dist/runtime/components/argNavBar.vue +319 -0
  28. package/dist/runtime/components/argNavBar.vue.d.ts +35 -0
  29. package/dist/runtime/components/argNote.vue +87 -0
  30. package/dist/runtime/components/argNote.vue.d.ts +42 -0
  31. package/dist/runtime/components/argSidebar.vue +114 -0
  32. package/dist/runtime/components/argSidebar.vue.d.ts +33 -0
  33. package/dist/runtime/components/argSimpleLabel.vue +57 -14
  34. package/dist/runtime/components/argSimpleLabel.vue.d.ts +18 -0
  35. package/dist/runtime/components/argStyle.vue +11 -1
  36. package/dist/runtime/components/argSubMenu.vue +67 -0
  37. package/dist/runtime/components/argSubMenu.vue.d.ts +30 -0
  38. package/dist/runtime/components/argSwitch.vue +153 -0
  39. package/dist/runtime/components/argSwitch.vue.d.ts +37 -0
  40. package/dist/runtime/components/argTable.vue.d.ts +3 -3
  41. package/dist/runtime/components/argTooltip.vue +1 -1
  42. package/package.json +6 -3
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.4"
7
+ "version": "0.1.5"
8
8
  }
@@ -405,9 +405,10 @@ export default defineComponent({
405
405
  removeSelected.value = false;
406
406
  closeIndex.value = null;
407
407
  searchBar.value.focus();
408
+ emit("update:Value", searchedWords.value);
408
409
  }
409
410
  function selectSearch(item) {
410
- let searchValue = value.value.replace(regexSearch, "");
411
+ const searchValue = value.value.replace(regexSearch, "");
411
412
  selectedShortcut.value = item.symbol;
412
413
  if (searchValue.length > 0) {
413
414
  if (searchedWords.value.filter((f) => f.value === searchValue).length === 0) {
@@ -0,0 +1,663 @@
1
+ <template>
2
+ <div class="prmt_chart">
3
+ <h1 class="prmt_chart_title"><slot name="title" /></h1>
4
+ <div class="prmt_chart_source"><slot name="source" /></div>
5
+ <client-only>
6
+ <apexchart
7
+ :type="chartType"
8
+ :options="chartOptions"
9
+ :series="series"
10
+ :height="height"
11
+ :width="width"
12
+ :key="chartKey"
13
+ />
14
+ </client-only>
15
+ </div>
16
+ </template>
17
+ <script>
18
+ import {
19
+ onMounted,
20
+ ref,
21
+ computed,
22
+ watch,
23
+ defineProps,
24
+ defineEmits,
25
+ defineComponent,
26
+ defineAsyncComponent,
27
+ } from "vue";
28
+
29
+ const ApexCharts = defineAsyncComponent(() => import("vue3-apexcharts"));
30
+ export default defineComponent({
31
+ name: "argChart",
32
+ components: { apexchart: ApexCharts },
33
+ props: {
34
+ options: {
35
+ type: Object,
36
+ required: false,
37
+ default() {
38
+ return {};
39
+ },
40
+ },
41
+ series: {
42
+ type: Array,
43
+ required: true,
44
+ },
45
+ type: {
46
+ type: String,
47
+ required: true,
48
+ },
49
+ height: {
50
+ type: String,
51
+ default: "auto",
52
+ },
53
+ width: {
54
+ type: String,
55
+ default: "100%",
56
+ },
57
+ categories: {
58
+ type: Array,
59
+ required: true,
60
+ },
61
+ colors: {
62
+ type: Array,
63
+ required: false,
64
+ default: () => [
65
+ "#3b82f6",
66
+ "#10b981",
67
+ "#f59e0b",
68
+ "#f43f5e",
69
+ "#8b5cf6",
70
+ "#ec4899",
71
+ "#f97316",
72
+ "#14b8a6",
73
+ "#6366f1",
74
+ "#eab308",
75
+ "#a855f7",
76
+ "#22c55e",
77
+ "#0ea5e9",
78
+ "#84cc16",
79
+ "#d946ef",
80
+ "#06b6d4",
81
+ ],
82
+ },
83
+ withPercentages: {
84
+ type: Boolean,
85
+ default: false,
86
+ },
87
+ compactValues: {
88
+ type: Boolean,
89
+ default: false,
90
+ },
91
+ french: {
92
+ type: Boolean,
93
+ default: false,
94
+ },
95
+ hideLegend: {
96
+ type: Boolean,
97
+ default: false,
98
+ },
99
+ },
100
+ setup(props) {
101
+ const chartKey = ref(1);
102
+ const chartOptions = computed(() => {
103
+ const seriesData = props.series;
104
+ const hasPercentages = props.withPercentages;
105
+ const compactMode = props.compactValues;
106
+ const hideLegend = props.hideLegend;
107
+
108
+ //General styling
109
+ props.options["grid"] = {
110
+ borderColor: "#EAEAF5",
111
+ strokeDashArray: 7,
112
+ padding: { left: 30, right: 30 },
113
+ row: { colors: ["transparent"], opacity: 0 },
114
+ };
115
+ props.options["chart"] = {
116
+ animations: { enabled: false },
117
+ redrawOnParentResize: true,
118
+ redrawOnWindowResize: true,
119
+ };
120
+ props.options["title"] = { align: "center" };
121
+
122
+ //Change to French
123
+ //if(this.french){
124
+ // this.options.chart['locales'] = [fr]
125
+ // this.options.chart['defaultLocale'] = 'fr'
126
+ //}
127
+
128
+ //Override colors
129
+
130
+ if (props.colors) {
131
+ props.options["colors"] = props.colors;
132
+ }
133
+ //Adjustments specific to line charts
134
+ if (props.type === "line") {
135
+ props.options["stroke"] = { width: 3, curve: "smooth" };
136
+ let defaultDataLabelsConfig = {
137
+ enabled: true,
138
+ position: "top",
139
+ style: {
140
+ fontFamily: "Figtree, sans-serif",
141
+ fontSize: "12px",
142
+ fontWeight: "400",
143
+ },
144
+ background: {
145
+ borderColor: "transparent",
146
+ opacity: 1,
147
+ borderRadius: 2,
148
+ },
149
+ };
150
+ if (props.options.dataLabels && props.options.dataLabels.formatter) {
151
+ props.options["dataLabels"] = {
152
+ ...defaultDataLabelsConfig,
153
+ ...props.options.dataLabels,
154
+ };
155
+ } else {
156
+ let defaultDataLabelFormatter = {
157
+ formatter(value, opt) {
158
+ let returnValue = value;
159
+ if (compactMode) {
160
+ returnValue = new Intl.NumberFormat("en-US", {
161
+ notation: "compact",
162
+ maximumFractionDigits: 1,
163
+ }).format(value);
164
+ }
165
+ if (!compactMode) {
166
+ returnValue = new Intl.NumberFormat("fr-FR")
167
+ .format(value)
168
+ .replace(",", ".");
169
+ }
170
+ //Make sure data is not null and don't show percentage if null
171
+ if (hasPercentages) {
172
+ let seriesLength = seriesData.length;
173
+ if (
174
+ opt.dataPointIndex > 0 &&
175
+ seriesData[opt.seriesIndex].data[opt.dataPointIndex - 1] !==
176
+ null &&
177
+ seriesData[opt.seriesIndex].data[opt.dataPointIndex] !== null
178
+ ) {
179
+ let previousVal =
180
+ seriesData[opt.seriesIndex].data[opt.dataPointIndex - 1];
181
+ let percentageValue = new Intl.NumberFormat("fr-FR")
182
+ .format(
183
+ (((value - previousVal) / previousVal) * 100.0).toFixed(1)
184
+ )
185
+ .replace(",", ".");
186
+ if (percentageValue > 0) {
187
+ returnValue = returnValue + " (+" + percentageValue + "%)";
188
+ } else {
189
+ returnValue = returnValue + " (" + percentageValue + "%)";
190
+ }
191
+ }
192
+ }
193
+ if (
194
+ seriesData[opt.seriesIndex].data[opt.dataPointIndex] !== null
195
+ ) {
196
+ return returnValue;
197
+ }
198
+ },
199
+ };
200
+ props.options["dataLabels"] = {
201
+ ...defaultDataLabelsConfig,
202
+ ...defaultDataLabelFormatter,
203
+ };
204
+ }
205
+
206
+ props.options["legend"] = {
207
+ showForSingleSeries: true,
208
+ showForNullSeries: true,
209
+ showForZeroSeries: true,
210
+ show: true,
211
+ position: "bottom",
212
+ fontFamily: "Figtree, sans-serif",
213
+ fontSize: "14px",
214
+ markers: {
215
+ width: 10,
216
+ height: 10,
217
+ radius: 1,
218
+ showNullDataPoints: true,
219
+ },
220
+ itemMargin: { vertical: 8, horizontal: 8 },
221
+ };
222
+ props.options["xaxis"] = {
223
+ categories: props.categories,
224
+ axisBorder: { show: false },
225
+ axisTicks: { show: false },
226
+ labels: {
227
+ show: true,
228
+ style: {
229
+ fontFamily: "Figtree, sans-serif",
230
+ fontSize: "12px",
231
+ fontWeight: "400",
232
+ colors: ["#3E3F5E"],
233
+ },
234
+ },
235
+ };
236
+ props.options["yaxis"] = { min: 0, show: false };
237
+ props.options["markers"] = { size: 0, showNullDataPoints: true };
238
+ props.options["tooltip"] = {
239
+ y: {
240
+ formatter(value, { series, seriesIndex, dataPointIndex, w }) {
241
+ return value;
242
+ },
243
+ },
244
+ };
245
+ }
246
+ //Column bar charts
247
+ else if (props.type === "bar-column" || props.type === "bar") {
248
+ let predefinedColors = false;
249
+ if (props.colors) {
250
+ predefinedColors = true;
251
+ }
252
+ props.options["plotOptions"] = {
253
+ bar: {
254
+ distributed: predefinedColors,
255
+ borderRadius: 2,
256
+ columnWidth: "50%",
257
+ colors: { backgroundBarOpacity: 1 },
258
+ dataLabels: { position: "top", hideOverflowingLabels: true },
259
+ },
260
+ };
261
+ props.options["dataLabels"] = {
262
+ position: "top",
263
+ enabled: true,
264
+ offsetY: -20,
265
+ style: { fontSize: "14px", colors: ["#3E3F5E"] },
266
+ formatter(value, opt) {
267
+ let returnValue = value;
268
+ if (compactMode) {
269
+ returnValue = new Intl.NumberFormat("en-US", {
270
+ notation: "compact",
271
+ maximumFractionDigits: 1,
272
+ }).format(value);
273
+ }
274
+ if (!compactMode) {
275
+ returnValue = new Intl.NumberFormat("fr-FR").format(value);
276
+ }
277
+ if (hasPercentages) {
278
+ let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
279
+ (a, b) => a + b,
280
+ 0
281
+ );
282
+ let percentage = new Intl.NumberFormat("fr-FR")
283
+ .format(((100 * value) / seriesTotal).toFixed(1))
284
+ .replace(",", ".");
285
+ returnValue = returnValue + " (" + percentage + "%)";
286
+ }
287
+ return returnValue;
288
+ },
289
+ };
290
+ if (props.hideLegend) {
291
+ props.options["legend"] = { show: false };
292
+ }
293
+ props.options["xaxis"] = {
294
+ categories: props.categories,
295
+ axisBorder: { show: false },
296
+ axisTicks: { show: false },
297
+ labels: {
298
+ show: true,
299
+ style: {
300
+ fontFamily: "Figtree, sans-serif",
301
+ fontSize: "14px",
302
+ fontWeight: "400",
303
+ colors: ["#3E3F5E"],
304
+ },
305
+ },
306
+ };
307
+ props.options["yaxis"] = { show: false, min: 0 };
308
+ }
309
+ //Horizontal bar chart
310
+ else if (props.type === "bar-horizontal") {
311
+ let predefinedColors = false;
312
+ if (props.colors) {
313
+ predefinedColors = true;
314
+ }
315
+ props.options["plotOptions"] = {
316
+ bar: {
317
+ distributed: predefinedColors,
318
+ horizontal: true,
319
+ borderRadius: 2,
320
+ barHeight: "50%",
321
+ colors: { backgroundBarOpacity: 1 },
322
+ dataLabels: { position: "top", hideOverflowingLabels: true },
323
+ },
324
+ };
325
+ props.options["dataLabels"] = {
326
+ position: "top",
327
+ enabled: true,
328
+ offsetX: 65,
329
+ style: { fontSize: "14px", colors: ["#3E3F5E"] },
330
+ formatter(value, opt) {
331
+ let returnValue = value;
332
+ if (compactMode) {
333
+ returnValue = new Intl.NumberFormat("en-US", {
334
+ notation: "compact",
335
+ maximumFractionDigits: 1,
336
+ }).format(value);
337
+ }
338
+ if (!compactMode) {
339
+ returnValue = new Intl.NumberFormat("fr-FR").format(value);
340
+ }
341
+ if (hasPercentages) {
342
+ let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
343
+ (a, b) => a + b,
344
+ 0
345
+ );
346
+ let percentage = new Intl.NumberFormat("fr-FR")
347
+ .format(((100 * value) / seriesTotal).toFixed(1))
348
+ .replace(",", ".");
349
+ returnValue = returnValue + " (" + percentage + "%)";
350
+ }
351
+ return returnValue;
352
+ },
353
+ };
354
+ if (props.hideLegend) {
355
+ props.options["legend"] = { show: false };
356
+ }
357
+ props.options["xaxis"] = {
358
+ categories: props.categories,
359
+ axisBorder: { show: false },
360
+ axisTicks: { show: false },
361
+ labels: {
362
+ show: false,
363
+ style: {
364
+ fontFamily: "Figtree, sans-serif",
365
+ fontSize: "14px",
366
+ fontWeight: "400",
367
+ colors: ["#3E3F5E"],
368
+ },
369
+ },
370
+ };
371
+ }
372
+ // Horizontal Stacks
373
+ else if (props.type === "bar-horizontal-stack") {
374
+ props.options["plotOptions"] = {
375
+ bar: {
376
+ horizontal: true,
377
+ borderRadius: 2,
378
+ barHeight: "50%",
379
+ colors: { backgroundBarOpacity: 1 },
380
+ dataLabels: { position: "top", hideOverflowingLabels: true },
381
+ },
382
+ };
383
+ props.options["dataLabels"] = {
384
+ position: "top",
385
+ enabled: true,
386
+ offsetX: -30,
387
+ style: { fontSize: "14px", colors: ["#FFFFFF"] },
388
+ formatter(value, opt) {
389
+ let returnValue = value;
390
+ if (compactMode) {
391
+ returnValue = new Intl.NumberFormat("en-US", {
392
+ notation: "compact",
393
+ maximumFractionDigits: 1,
394
+ }).format(value);
395
+ }
396
+ if (!compactMode) {
397
+ returnValue = new Intl.NumberFormat("fr-FR").format(value);
398
+ }
399
+ if (hasPercentages) {
400
+ let groupTotal = 0;
401
+ seriesData.map(
402
+ (d) => (groupTotal = groupTotal + d.data[opt.dataPointIndex])
403
+ );
404
+ let percentage = new Intl.NumberFormat("fr-FR")
405
+ .format(((100 * value) / groupTotal).toFixed(1))
406
+ .replace(",", ".");
407
+ returnValue = returnValue + " (" + percentage + "%)";
408
+ }
409
+ return returnValue;
410
+ },
411
+ };
412
+ props.options.chart["stacked"] = true;
413
+ props.options["xaxis"] = {
414
+ categories: props.categories,
415
+ axisBorder: { show: false },
416
+ axisTicks: { show: false },
417
+ labels: {
418
+ show: false,
419
+ style: {
420
+ fontFamily: "Figtree, sans-serif",
421
+ fontSize: "14px",
422
+ fontWeight: "400",
423
+ colors: ["#3E3F5E"],
424
+ },
425
+ },
426
+ };
427
+ } else if (props.type === "full-bar-horizontal-stack") {
428
+ props.options["plotOptions"] = {
429
+ bar: {
430
+ horizontal: true,
431
+ borderRadius: 2,
432
+ barHeight: "50%",
433
+ colors: { backgroundBarOpacity: 1 },
434
+ dataLabels: { position: "top", hideOverflowingLabels: true },
435
+ },
436
+ };
437
+ props.options.chart["stacked"] = true;
438
+ props.options.chart["stackType"] = "100%";
439
+ props.options["xaxis"] = {
440
+ categories: props.categories,
441
+ axisBorder: { show: false },
442
+ axisTicks: { show: false },
443
+ labels: {
444
+ show: false,
445
+ style: {
446
+ fontFamily: "Figtree, sans-serif",
447
+ fontSize: "14px",
448
+ fontWeight: "400",
449
+ colors: ["#3E3F5E"],
450
+ },
451
+ },
452
+ };
453
+ props.options["dataLabels"] = {
454
+ position: "top",
455
+ enabled: true,
456
+ offsetX: -50,
457
+ style: { fontSize: "14px", colors: ["#3E3F5E"] },
458
+ formatter(value, opt) {
459
+ let dataValue =
460
+ seriesData[opt.seriesIndex].data[opt.dataPointIndex];
461
+ let returnValue = dataValue;
462
+ if (compactMode) {
463
+ returnValue = new Intl.NumberFormat("en-US", {
464
+ notation: "compact",
465
+ maximumFractionDigits: 1,
466
+ }).format(dataValue);
467
+ }
468
+ if (!compactMode) {
469
+ returnValue = new Intl.NumberFormat("fr-FR").format(dataValue);
470
+ }
471
+ if (hasPercentages) {
472
+ returnValue = returnValue + " (" + value.toFixed(1) + "%)";
473
+ }
474
+ return returnValue;
475
+ },
476
+ };
477
+ }
478
+ // Horizontal group
479
+ else if (props.type === "bar-horizontal-group") {
480
+ let predefinedColors = false;
481
+ if (props.colors) {
482
+ predefinedColors = true;
483
+ }
484
+ props.options["plotOptions"] = {
485
+ bar: {
486
+ horizontal: true,
487
+ borderRadius: 2,
488
+ barHeight: "50%",
489
+ colors: { backgroundBarOpacity: 1 },
490
+ dataLabels: { position: "top", hideOverflowingLabels: true },
491
+ },
492
+ };
493
+ props.options["dataLabels"] = {
494
+ position: "top",
495
+ enabled: true,
496
+ offsetX: 65,
497
+ style: { fontSize: "14px", colors: ["#3E3F5E"] },
498
+ formatter(value, opt) {
499
+ let returnValue = value;
500
+ if (compactMode) {
501
+ returnValue = new Intl.NumberFormat("en-US", {
502
+ notation: "compact",
503
+ maximumFractionDigits: 1,
504
+ }).format(value);
505
+ }
506
+ if (!compactMode) {
507
+ returnValue = new Intl.NumberFormat("fr-FR").format(value);
508
+ }
509
+ if (hasPercentages) {
510
+ let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
511
+ (a, b) => a + b,
512
+ 0
513
+ );
514
+ let percentage = new Intl.NumberFormat("fr-FR")
515
+ .format(((100 * value) / seriesTotal).toFixed(1))
516
+ .replace(",", ".");
517
+ returnValue = returnValue + " (" + percentage + "%)";
518
+ }
519
+ return returnValue;
520
+ },
521
+ };
522
+ props.options["xaxis"] = {
523
+ categories: props.categories,
524
+ axisBorder: { show: false },
525
+ axisTicks: { show: false },
526
+ labels: {
527
+ show: false,
528
+ style: {
529
+ fontFamily: "Figtree, sans-serif",
530
+ fontSize: "14px",
531
+ fontWeight: "400",
532
+ colors: ["#3E3F5E"],
533
+ },
534
+ },
535
+ };
536
+ }
537
+ //Pie/Camambert
538
+ else if (props.type === "pie") {
539
+ props.options["labels"] = props.categories;
540
+ props.options["dataLabels"] = {
541
+ offset: -50,
542
+ enabled: true,
543
+ style: { fontSize: "14px", colors: ["#FFFFFF"] },
544
+ dropShadow: { enabled: false },
545
+ formatter(value, opt) {
546
+ let returnValue = opt.w.config.series[opt.seriesIndex];
547
+ if (compactMode) {
548
+ returnValue = new Intl.NumberFormat("en-US", {
549
+ notation: "compact",
550
+ maximumFractionDigits: 1,
551
+ }).format(opt.w.config.series[opt.seriesIndex]);
552
+ }
553
+ if (!compactMode) {
554
+ returnValue = new Intl.NumberFormat("fr-FR")
555
+ .format(opt.w.config.series[opt.seriesIndex])
556
+ .replace(",", ".");
557
+ }
558
+ if (hasPercentages) {
559
+ let percentage = new Intl.NumberFormat("fr-FR", {
560
+ notation: "compact",
561
+ maximumFractionDigits: 1,
562
+ })
563
+ .format(value)
564
+ .replace(",", ".");
565
+ returnValue = returnValue + " (" + percentage + "%)";
566
+ }
567
+ return returnValue;
568
+ },
569
+ };
570
+ props.options["plotOptions"] = {
571
+ pie: {
572
+ dataLabels: {
573
+ offset: -40,
574
+ },
575
+ },
576
+ };
577
+ }
578
+
579
+ return props.options;
580
+ });
581
+ const chartType = computed(() => {
582
+ let selectedType = ref("");
583
+ if (props.type.includes("bar")) {
584
+ selectedType.value = "bar";
585
+ } else {
586
+ selectedType.value = props.type;
587
+ }
588
+ return selectedType.value;
589
+ });
590
+
591
+ watch(
592
+ () => props.series,
593
+ () => {
594
+ chartKey.value += 1;
595
+ }
596
+ );
597
+
598
+ function percentage(partialValue, totalValue) {
599
+ return (100 * partialValue) / totalValue;
600
+ }
601
+ return {
602
+ percentage,
603
+ chartKey,
604
+ chartType,
605
+ chartOptions,
606
+ };
607
+ },
608
+ });
609
+ </script>
610
+ <style>
611
+ .prmt_chart {
612
+ font-family: "Figtree", sans-serif !important;
613
+ position: relative;
614
+ }
615
+ .prmt_chart_title {
616
+ font-style: normal;
617
+ font-weight: 700;
618
+ font-size: 18px;
619
+ line-height: 21px;
620
+ color: var(--independence);
621
+ margin-bottom: 8px;
622
+ margin-right: 150px;
623
+ }
624
+ .prmt_chart_title.prmt_chart_title_without_subtitle {
625
+ margin-bottom: 22px;
626
+ }
627
+ .prmt_chart_source {
628
+ padding: 4px 0;
629
+ display: flex;
630
+ align-items: center;
631
+ gap: 8px;
632
+ font-style: normal;
633
+ font-weight: 400;
634
+ font-size: 12px;
635
+ line-height: 14px;
636
+ color: #2176ff;
637
+ white-space: nowrap;
638
+ text-overflow: ellipsis;
639
+ overflow: hidden;
640
+ display: flex;
641
+ align-items: center;
642
+ height: 14px;
643
+ }
644
+ .prmt_chart_source a {
645
+ color: #2176ff;
646
+ }
647
+ .prmt_chart_source:empty {
648
+ visibility: hidden;
649
+ }
650
+ .prmt_chart .apexcharts-toolbar {
651
+ top: 0 !important;
652
+ }
653
+ .prmt_chart .apexcharts-canvas .apexcharts-svg {
654
+ overflow: visible;
655
+ }
656
+ .prmt_chart .apexcharts-pie-area {
657
+ stroke-width: 0;
658
+ }
659
+
660
+ .prmt_chart .apexcharts-canvas {
661
+ position: initial;
662
+ }
663
+ </style>