vue-data-ui 2.1.76 → 2.1.78
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/README.md +44 -27
- package/dist/documentation/installation.md +27 -27
- package/dist/{index-682874cf.js → index-c43e875e.js} +29 -27
- package/dist/{index.es-acfef7a8.js → index.es-8cda4c1a.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/types/vue-data-ui.d.ts +4 -1
- package/dist/vue-data-ui.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -274,6 +274,23 @@ The following charts bear these slots:
|
|
|
274
274
|
|
|
275
275
|
The #tooltip-before & #tooltip-after slots also works when using the VueDataUi universal component, if the component it wraps supports them.
|
|
276
276
|
|
|
277
|
+
## Customization of the zoom reset button with the #reset-action slot
|
|
278
|
+
|
|
279
|
+
Available for the following components:
|
|
280
|
+
|
|
281
|
+
- VueUiXy
|
|
282
|
+
- VueUiCandlestick
|
|
283
|
+
|
|
284
|
+
The config option zoom.useResetSlot must be set to true to use the slot.
|
|
285
|
+
|
|
286
|
+
```html
|
|
287
|
+
<VueUiXy :config="config" :dataset="dataset">
|
|
288
|
+
<template #reset-action="{ reset }">
|
|
289
|
+
<button @click="reset()">RESET ZOOM</button>
|
|
290
|
+
</template>
|
|
291
|
+
</VueUiXy>
|
|
292
|
+
```
|
|
293
|
+
|
|
277
294
|
# Config
|
|
278
295
|
|
|
279
296
|
If for some reason you can't access the documentation website and need to get the default config object for a component:
|
|
@@ -315,33 +332,33 @@ From the dataset you pass into the props, this component will produce the most a
|
|
|
315
332
|
|
|
316
333
|
### Charts
|
|
317
334
|
|
|
318
|
-
| Name | dataset type | config type | emits / exposed methods | slots
|
|
319
|
-
| --------------------- | ---------------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------- |
|
|
320
|
-
| `VueUiAgePyramid` | `Array<Array<string / number>>` | `VueUiSparklineConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
321
|
-
| `VueUiCandlestick` | `Array<Array<string / number>>` | `VueUiCandlestickConfig` | `generatePdf`, `generateImage`, `generateCsv` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
322
|
-
| `VueUiChestnut` | `VueUiChestnutDatasetRoot[]` | `VueUiChestnutConfig` | `@selectRoot`, `@selectBranch`, `@selectNut`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`
|
|
323
|
-
| `VueUiDonut` | `VueUiDonutDatasetItem[]` | `VueUiDonutConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#dataLabel`, `#tooltip-before`, `#tooltip-after`
|
|
324
|
-
| `VueUiDonutEvolution` | `VueUiDonutEvolutionDatasetItem[]` | `VueUiDonutEvolutionConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`,
|
|
325
|
-
| `VueUiDumbbell` | `VueUiDumbbellDataset[]` | `VueUiDumbbellConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`,
|
|
326
|
-
| `VueUiGalaxy` | `VueUiGalaxyDatasetItem[]` | `VueUiGalaxyConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`,`#tooltip-before`, `#tooltip-after`
|
|
327
|
-
| `VueUiGauge` | `VueUiGaugeDataset` | `VueUiGaugeConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`,
|
|
328
|
-
| `VueUiHeatmap` | `VueUiHeatmapDatasetItem[]` | `VueUiHeatmapConfig` | `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#tooltip-before`, `#tooltip-after`
|
|
329
|
-
| `VueUiMolecule` | `VueUiMoleculeDatasetNode[]` | `VueUiMoleculeConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#tooltip-before`, `#tooltip-after`
|
|
330
|
-
| `VueUiMoodRadar` | `VueUiMoodRadarDataset` | `VueUiMoodRadarConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`
|
|
331
|
-
| `VueUiNestedDonuts` | `VueUiNestedDonutsDatasetItem[]` | `VueUiNestedDonutsConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
332
|
-
| `VueUiOnion` | `VueUiOnionDatasetItem[]` | `VueUiOnionConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
333
|
-
| `VueUiQuadrant` | `VueUiQuadrantDatasetItem[]` | `VueUiQuadrantConfig` | `@selectLegend`, `@selectPlot`, `@selectSide`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
334
|
-
| `VueUiRadar` | `VueUiRadarDataset` | `VueUiRadarConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
335
|
-
| `VueUiRings` | `VueUiRingsDatasetItem[]` | `VueUiRingsConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
336
|
-
| `VueUiScatter` | `VueUiScatterDatasetItem[]` | `VueUiScatterConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
337
|
-
| `VueUiStripPlot` | `VueUiStripPlotDataset[]` | `VueUiStripPlotConfig` | `@selectDatapoint`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
338
|
-
| `VueUiThermometer` | `VueUiThermometerDataset` | `VueUiThermometerConfig` | `generatePdf`, `generateImage` | `#svg`
|
|
339
|
-
| `VueUiTiremarks` | `VueUiTiremarksDataset` | `VueUiTiremarksConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
340
|
-
| `VueUiTreemap` | `VueUiTreemapDatasetItem[]` | `VueUiTreemapConfig` | `@selectLegend`, `@selectDatapoint`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#rect`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
341
|
-
| `VueUiVerticalBar` | `VueUiVerticalBarDatasetItem[]` | `VueUiWheelConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
342
|
-
| `VueUiWaffle` | `VueUiWaffleDatasetItem[]` | `VueUiWaffleConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
343
|
-
| `VueUiWheel` | `VueUiWheelDataset` | `VueUiWheelConfig` | `generatePdf`, `generateImage` | `#svg`
|
|
344
|
-
| `VueUiXy` | `VueUiXyDatasetItem[]` | `VueUiXyConfig` | `@selectLegend`, `@selectX`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
335
|
+
| Name | dataset type | config type | emits / exposed methods | slots | custom tooltip |
|
|
336
|
+
| --------------------- | ---------------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------- | -------------- |
|
|
337
|
+
| `VueUiAgePyramid` | `Array<Array<string / number>>` | `VueUiSparklineConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
338
|
+
| `VueUiCandlestick` | `Array<Array<string / number>>` | `VueUiCandlestickConfig` | `generatePdf`, `generateImage`, `generateCsv` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ |
|
|
339
|
+
| `VueUiChestnut` | `VueUiChestnutDatasetRoot[]` | `VueUiChestnutConfig` | `@selectRoot`, `@selectBranch`, `@selectNut`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend` | ❌ |
|
|
340
|
+
| `VueUiDonut` | `VueUiDonutDatasetItem[]` | `VueUiDonutConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#dataLabel`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
341
|
+
| `VueUiDonutEvolution` | `VueUiDonutEvolutionDatasetItem[]` | `VueUiDonutEvolutionConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, | ❌ |
|
|
342
|
+
| `VueUiDumbbell` | `VueUiDumbbellDataset[]` | `VueUiDumbbellConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, | ❌ |
|
|
343
|
+
| `VueUiGalaxy` | `VueUiGalaxyDatasetItem[]` | `VueUiGalaxyConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`,`#tooltip-before`, `#tooltip-after` | ✅ |
|
|
344
|
+
| `VueUiGauge` | `VueUiGaugeDataset` | `VueUiGaugeConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, | ❌ |
|
|
345
|
+
| `VueUiHeatmap` | `VueUiHeatmapDatasetItem[]` | `VueUiHeatmapConfig` | `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
346
|
+
| `VueUiMolecule` | `VueUiMoleculeDatasetNode[]` | `VueUiMoleculeConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
347
|
+
| `VueUiMoodRadar` | `VueUiMoodRadarDataset` | `VueUiMoodRadarConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend` | ❌ |
|
|
348
|
+
| `VueUiNestedDonuts` | `VueUiNestedDonutsDatasetItem[]` | `VueUiNestedDonutsConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
349
|
+
| `VueUiOnion` | `VueUiOnionDatasetItem[]` | `VueUiOnionConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
350
|
+
| `VueUiQuadrant` | `VueUiQuadrantDatasetItem[]` | `VueUiQuadrantConfig` | `@selectLegend`, `@selectPlot`, `@selectSide`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
351
|
+
| `VueUiRadar` | `VueUiRadarDataset` | `VueUiRadarConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
352
|
+
| `VueUiRings` | `VueUiRingsDatasetItem[]` | `VueUiRingsConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
353
|
+
| `VueUiScatter` | `VueUiScatterDatasetItem[]` | `VueUiScatterConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
354
|
+
| `VueUiStripPlot` | `VueUiStripPlotDataset[]` | `VueUiStripPlotConfig` | `@selectDatapoint`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
355
|
+
| `VueUiThermometer` | `VueUiThermometerDataset` | `VueUiThermometerConfig` | `generatePdf`, `generateImage` | `#svg` | ❌ |
|
|
356
|
+
| `VueUiTiremarks` | `VueUiTiremarksDataset` | `VueUiTiremarksConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ❌ |
|
|
357
|
+
| `VueUiTreemap` | `VueUiTreemapDatasetItem[]` | `VueUiTreemapConfig` | `@selectLegend`, `@selectDatapoint`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#rect`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
358
|
+
| `VueUiVerticalBar` | `VueUiVerticalBarDatasetItem[]` | `VueUiWheelConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
359
|
+
| `VueUiWaffle` | `VueUiWaffleDatasetItem[]` | `VueUiWaffleConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
360
|
+
| `VueUiWheel` | `VueUiWheelDataset` | `VueUiWheelConfig` | `generatePdf`, `generateImage` | `#svg` | ❌ |
|
|
361
|
+
| `VueUiXy` | `VueUiXyDatasetItem[]` | `VueUiXyConfig` | `@selectLegend`, `@selectX`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ |
|
|
345
362
|
|
|
346
363
|
### 3D charts
|
|
347
364
|
|
|
@@ -115,33 +115,33 @@ From the dataset you pass into the props, this component will produce the most a
|
|
|
115
115
|
|
|
116
116
|
### Charts
|
|
117
117
|
|
|
118
|
-
| Name | dataset type | config type | emits / exposed methods | slots
|
|
119
|
-
| --------------------- | ---------------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------- |
|
|
120
|
-
| `VueUiAgePyramid` | `Array<Array<string / number>>` | `VueUiSparklineConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
121
|
-
| `VueUiCandlestick` | `Array<Array<string / number>>` | `VueUiCandlestickConfig` | `generatePdf`, `generateImage`, `generateCsv` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
122
|
-
| `VueUiChestnut` | `VueUiChestnutDatasetRoot[]` | `VueUiChestnutConfig` | `@selectRoot`, `@selectBranch`, `@selectNut`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`
|
|
123
|
-
| `VueUiDonut` | `VueUiDonutDatasetItem[]` | `VueUiDonutConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#dataLabel`, `#tooltip-before`, `#tooltip-after`
|
|
124
|
-
| `VueUiDonutEvolution` | `VueUiDonutEvolutionDatasetItem[]` | `VueUiDonutEvolutionConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`,
|
|
125
|
-
| `VueUiDumbbell` | `VueUiDumbbellDataset[]` | `VueUiDumbbellConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`,
|
|
126
|
-
| `VueUiGalaxy` | `VueUiGalaxyDatasetItem[]` | `VueUiGalaxyConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`,`#tooltip-before`, `#tooltip-after`
|
|
127
|
-
| `VueUiGauge` | `VueUiGaugeDataset` | `VueUiGaugeConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`,
|
|
128
|
-
| `VueUiHeatmap` | `VueUiHeatmapDatasetItem[]` | `VueUiHeatmapConfig` | `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#tooltip-before`, `#tooltip-after`
|
|
129
|
-
| `VueUiMolecule` | `VueUiMoleculeDatasetNode[]` | `VueUiMoleculeConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#tooltip-before`, `#tooltip-after`
|
|
130
|
-
| `VueUiMoodRadar` | `VueUiMoodRadarDataset` | `VueUiMoodRadarConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`
|
|
131
|
-
| `VueUiNestedDonuts` | `VueUiNestedDonutsDatasetItem[]` | `VueUiNestedDonutsConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
132
|
-
| `VueUiOnion` | `VueUiOnionDatasetItem[]` | `VueUiOnionConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
133
|
-
| `VueUiQuadrant` | `VueUiQuadrantDatasetItem[]` | `VueUiQuadrantConfig` | `@selectLegend`, `@selectPlot`, `@selectSide`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
134
|
-
| `VueUiRadar` | `VueUiRadarDataset` | `VueUiRadarConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
135
|
-
| `VueUiRings` | `VueUiRingsDatasetItem[]` | `VueUiRingsConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
136
|
-
| `VueUiScatter` | `VueUiScatterDatasetItem[]` | `VueUiScatterConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
137
|
-
| `VueUiStripPlot` | `VueUiStripPlotDataset[]` | `VueUiStripPlotConfig` | `@selectDatapoint`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
138
|
-
| `VueUiThermometer` | `VueUiThermometerDataset` | `VueUiThermometerConfig` | `generatePdf`, `generateImage` | `#svg`
|
|
139
|
-
| `VueUiTiremarks` | `VueUiTiremarksDataset` | `VueUiTiremarksConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
140
|
-
| `VueUiTreemap` | `VueUiTreemapDatasetItem[]` | `VueUiTreemapConfig` | `@selectLegend`, `@selectDatapoint`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#rect`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
141
|
-
| `VueUiVerticalBar` | `VueUiVerticalBarDatasetItem[]` | `VueUiWheelConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
142
|
-
| `VueUiWaffle` | `VueUiWaffleDatasetItem[]` | `VueUiWaffleConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
143
|
-
| `VueUiWheel` | `VueUiWheelDataset` | `VueUiWheelConfig` | `generatePdf`, `generateImage` | `#svg`
|
|
144
|
-
| `VueUiXy` | `VueUiXyDatasetItem[]` | `VueUiXyConfig` | `@selectLegend`, `@selectX`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`
|
|
118
|
+
| Name | dataset type | config type | emits / exposed methods | slots | custom tooltip |
|
|
119
|
+
| --------------------- | ---------------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------- | -------------- |
|
|
120
|
+
| `VueUiAgePyramid` | `Array<Array<string / number>>` | `VueUiSparklineConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
121
|
+
| `VueUiCandlestick` | `Array<Array<string / number>>` | `VueUiCandlestickConfig` | `generatePdf`, `generateImage`, `generateCsv` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ |
|
|
122
|
+
| `VueUiChestnut` | `VueUiChestnutDatasetRoot[]` | `VueUiChestnutConfig` | `@selectRoot`, `@selectBranch`, `@selectNut`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend` | ❌ |
|
|
123
|
+
| `VueUiDonut` | `VueUiDonutDatasetItem[]` | `VueUiDonutConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#dataLabel`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
124
|
+
| `VueUiDonutEvolution` | `VueUiDonutEvolutionDatasetItem[]` | `VueUiDonutEvolutionConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, | ❌ |
|
|
125
|
+
| `VueUiDumbbell` | `VueUiDumbbellDataset[]` | `VueUiDumbbellConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, | ❌ |
|
|
126
|
+
| `VueUiGalaxy` | `VueUiGalaxyDatasetItem[]` | `VueUiGalaxyConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`,`#tooltip-before`, `#tooltip-after` | ✅ |
|
|
127
|
+
| `VueUiGauge` | `VueUiGaugeDataset` | `VueUiGaugeConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, | ❌ |
|
|
128
|
+
| `VueUiHeatmap` | `VueUiHeatmapDatasetItem[]` | `VueUiHeatmapConfig` | `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
129
|
+
| `VueUiMolecule` | `VueUiMoleculeDatasetNode[]` | `VueUiMoleculeConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
130
|
+
| `VueUiMoodRadar` | `VueUiMoodRadarDataset` | `VueUiMoodRadarConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend` | ❌ |
|
|
131
|
+
| `VueUiNestedDonuts` | `VueUiNestedDonutsDatasetItem[]` | `VueUiNestedDonutsConfig` | `@selectDatapoint`, `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
132
|
+
| `VueUiOnion` | `VueUiOnionDatasetItem[]` | `VueUiOnionConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
133
|
+
| `VueUiQuadrant` | `VueUiQuadrantDatasetItem[]` | `VueUiQuadrantConfig` | `@selectLegend`, `@selectPlot`, `@selectSide`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
134
|
+
| `VueUiRadar` | `VueUiRadarDataset` | `VueUiRadarConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
135
|
+
| `VueUiRings` | `VueUiRingsDatasetItem[]` | `VueUiRingsConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
136
|
+
| `VueUiScatter` | `VueUiScatterDatasetItem[]` | `VueUiScatterConfig` | `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
137
|
+
| `VueUiStripPlot` | `VueUiStripPlotDataset[]` | `VueUiStripPlotConfig` | `@selectDatapoint`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
138
|
+
| `VueUiThermometer` | `VueUiThermometerDataset` | `VueUiThermometerConfig` | `generatePdf`, `generateImage` | `#svg` | ❌ |
|
|
139
|
+
| `VueUiTiremarks` | `VueUiTiremarksDataset` | `VueUiTiremarksConfig` | `generatePdf`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ❌ |
|
|
140
|
+
| `VueUiTreemap` | `VueUiTreemapDatasetItem[]` | `VueUiTreemapConfig` | `@selectLegend`, `@selectDatapoint`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#rect`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
141
|
+
| `VueUiVerticalBar` | `VueUiVerticalBarDatasetItem[]` | `VueUiWheelConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
142
|
+
| `VueUiWaffle` | `VueUiWaffleDatasetItem[]` | `VueUiWaffleConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
143
|
+
| `VueUiWheel` | `VueUiWheelDataset` | `VueUiWheelConfig` | `generatePdf`, `generateImage` | `#svg` | ❌ |
|
|
144
|
+
| `VueUiXy` | `VueUiXyDatasetItem[]` | `VueUiXyConfig` | `@selectLegend`, `@selectX`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ |
|
|
145
145
|
|
|
146
146
|
### 3D charts
|
|
147
147
|
|
|
@@ -12820,7 +12820,7 @@ function(e) {
|
|
|
12820
12820
|
*/
|
|
12821
12821
|
function(e) {
|
|
12822
12822
|
function t() {
|
|
12823
|
-
return (kt.canvg ? Promise.resolve(kt.canvg) : import("./index.es-
|
|
12823
|
+
return (kt.canvg ? Promise.resolve(kt.canvg) : import("./index.es-8cda4c1a.js")).catch(function(o) {
|
|
12824
12824
|
return Promise.reject(new Error("Could not load canvg: " + o));
|
|
12825
12825
|
}).then(function(o) {
|
|
12826
12826
|
return o.default ? o.default : o;
|
|
@@ -16681,7 +16681,8 @@ const Gm = {
|
|
|
16681
16681
|
fontSize: 4,
|
|
16682
16682
|
color: "#2D353C",
|
|
16683
16683
|
offsetY: 0,
|
|
16684
|
-
bold: !1
|
|
16684
|
+
bold: !1,
|
|
16685
|
+
rotation: 0
|
|
16685
16686
|
}
|
|
16686
16687
|
},
|
|
16687
16688
|
yAxis: {
|
|
@@ -17573,7 +17574,9 @@ const Gm = {
|
|
|
17573
17574
|
values: [],
|
|
17574
17575
|
fontSize: 8,
|
|
17575
17576
|
showOnlyFirstAndLast: !1,
|
|
17576
|
-
color: "#2D353C"
|
|
17577
|
+
color: "#2D353C",
|
|
17578
|
+
rotation: 0,
|
|
17579
|
+
offsetY: 0
|
|
17577
17580
|
}
|
|
17578
17581
|
}
|
|
17579
17582
|
},
|
|
@@ -19184,7 +19187,8 @@ const lx = ["xmlns", "height", "width", "innerHTML"], ax = {
|
|
|
19184
19187
|
cursor: `<path stroke="${t.stroke}" stroke-width="${t.strokeWidth}" fill="none" stroke-linecap="round" stroke-linejoin="round" d="M 6 10 A 1 1 0 0 0 14 10 A 1 1 0 0 0 6 10 M 1 10 L 6 10 M 14 10 L 19 10 M 10 1 L 10 6 M 10 14 L 10 19 M 10 8 L 10 12 M 8 10 L 12 10" />`,
|
|
19185
19188
|
trend: `<path stroke="${t.stroke}" stroke-width="${t.strokeWidth}" fill="none" stroke-linecap="round" stroke-kinejoin="round" d="M 1 6 L 4 4 L 7 6 M 4 4 L 4 13 M 7 16 C 7 16 7 18 9 18 C 12 18 10 9 12 9 C 14 9 14 13 15 13 C 18 14 17.6667 5.6667 19 2"/>`,
|
|
19186
19189
|
chartStripPlot: `<path stroke="${t.stroke}" stroke-width="${t.strokeWidth}" fill="none" d="M 4 16 A 1 1 0 0 0 4 18 A 1 1 0 0 0 4 16 M 4 13 A 1 1 0 0 0 4 15 A 1 1 0 0 0 4 13 M 4 9 A 1 1 0 0 0 4 11 A 1 1 0 0 0 4 9 M 8 11 A 1 1 0 0 0 8 13 A 1 1 0 0 0 8 11 M 8 8 A 1 1 0 0 0 8 10 A 1 1 0 0 0 8 8 M 4 2 A 1 1 0 0 0 4 4 A 1 1 0 0 0 4 2 M 12 15 A 1 1 0 0 0 12 17 A 1 1 0 0 0 12 15 M 12 10 A 1 1 0 0 0 12 12 A 1 1 0 0 0 12 10 M 12 7 A 1 1 0 0 0 12 9 A 1 1 0 0 0 12 7 M 8 5 A 1 1 0 0 0 8 7 A 1 1 0 0 0 8 5 M 16 12 A 1 1 0 0 0 16 14 A 1 1 0 0 0 16 12 M 16 10 A 1 1 0 0 0 16 12 A 1 1 0 0 0 16 10 M 16 16 A 1 1 0 0 0 16 18 A 1 1 0 0 0 16 16" />`,
|
|
19187
|
-
chartDumbbell: `<path stroke="${t.stroke}" stroke-width="${t.strokeWidth}" stroke-linecap="round" d="M 3 2 A 1 1 0 0 0 3 4 A 1 1 0 0 0 3 2 M 10 2 A 1 1 0 0 0 10 4 A 1 1 0 0 0 10 2 M 4 3 L 9 3 M 5 9 A 1 1 0 0 0 5 11 A 1 1 0 0 0 5 9 M 17 9 A 1 1 0 0 0 17 11 A 1 1 0 0 0 17 9 M 6 10 L 16 10 M 8 16 A 1 1 0 0 0 8 18 A 1 1 0 0 0 8 16 M 15 16 A 1 1 0 0 0 15 18 A 1 1 0 0 0 15 16 M 9 17 L 14 17"
|
|
19190
|
+
chartDumbbell: `<path stroke="${t.stroke}" stroke-width="${t.strokeWidth}" stroke-linecap="round" d="M 3 2 A 1 1 0 0 0 3 4 A 1 1 0 0 0 3 2 M 10 2 A 1 1 0 0 0 10 4 A 1 1 0 0 0 10 2 M 4 3 L 9 3 M 5 9 A 1 1 0 0 0 5 11 A 1 1 0 0 0 5 9 M 17 9 A 1 1 0 0 0 17 11 A 1 1 0 0 0 17 9 M 6 10 L 16 10 M 8 16 A 1 1 0 0 0 8 18 A 1 1 0 0 0 8 16 M 15 16 A 1 1 0 0 0 15 18 A 1 1 0 0 0 15 16 M 9 17 L 14 17" />`,
|
|
19191
|
+
copyLeft: `<path stroke="${t.stroke}" stroke-width="${t.strokeWidth}" d="M 10 2 A 1 1 0 0 0 10 18 A 1 1 0 0 0 10 2 M 10 14 A 1 1 0 0 0 10 6 C 10 6 8 6 7 8 M 10 14 C 10 14 8 14 7 12" stroke-linecap="round" stroke-linejoin="round" fill="none"/>`
|
|
19188
19192
|
}));
|
|
19189
19193
|
return (r, a) => (u(), d("svg", {
|
|
19190
19194
|
xmlns: se(Ze),
|
|
@@ -19196,7 +19200,7 @@ const lx = ["xmlns", "height", "width", "innerHTML"], ax = {
|
|
|
19196
19200
|
style: { background: "transparent" }
|
|
19197
19201
|
}, null, 10, lx));
|
|
19198
19202
|
}
|
|
19199
|
-
}, Wt = /* @__PURE__ */ St(ax, [["__scopeId", "data-v-
|
|
19203
|
+
}, Wt = /* @__PURE__ */ St(ax, [["__scopeId", "data-v-f6f2c975"]]);
|
|
19200
19204
|
const ox = ["onClick", "onKeypress"], rx = ["data-open"], nx = {
|
|
19201
19205
|
__name: "UserOptions",
|
|
19202
19206
|
props: {
|
|
@@ -22201,8 +22205,8 @@ const s4 = {
|
|
|
22201
22205
|
setup(e, { emit: t }) {
|
|
22202
22206
|
const o = e;
|
|
22203
22207
|
Na((y) => ({
|
|
22204
|
-
"
|
|
22205
|
-
|
|
22208
|
+
"6d95d510": s.value,
|
|
22209
|
+
"8dd148ac": i.value
|
|
22206
22210
|
}));
|
|
22207
22211
|
const r = T(null), a = T(null), l = T(null), s = oe(() => o.inputColor), i = oe(() => o.background);
|
|
22208
22212
|
function c() {
|
|
@@ -22263,7 +22267,7 @@ const s4 = {
|
|
|
22263
22267
|
])
|
|
22264
22268
|
]));
|
|
22265
22269
|
}
|
|
22266
|
-
}, s1 = /* @__PURE__ */ St(h4, [["__scopeId", "data-v-
|
|
22270
|
+
}, s1 = /* @__PURE__ */ St(h4, [["__scopeId", "data-v-903c5f74"]]);
|
|
22267
22271
|
const f4 = yt(), v4 = {
|
|
22268
22272
|
name: "vue-ui-xy",
|
|
22269
22273
|
props: {
|
|
@@ -24131,7 +24135,7 @@ function h3(e, t, o, r, a, l) {
|
|
|
24131
24135
|
}, [
|
|
24132
24136
|
n && !l.chartConfig.chart.grid.labels.xAxisLabels.showOnlyFirstAndLast || n && l.chartConfig.chart.grid.labels.xAxisLabels.showOnlyFirstAndLast && (A === 0 || A === l.timeLabels.length - 1) || n && l.chartConfig.chart.grid.labels.xAxisLabels.showOnlyFirstAndLast && a.selectedSerieIndex === A ? (u(), d("text", {
|
|
24133
24137
|
key: 0,
|
|
24134
|
-
"text-anchor": l.chartConfig.chart.grid.labels.xAxisLabels.rotation ? "end" : "middle",
|
|
24138
|
+
"text-anchor": l.chartConfig.chart.grid.labels.xAxisLabels.rotation > 0 ? "start" : l.chartConfig.chart.grid.labels.xAxisLabels.rotation < 0 ? "end" : "middle",
|
|
24135
24139
|
"font-size": l.chartConfig.chart.grid.labels.xAxisLabels.fontSize,
|
|
24136
24140
|
fill: l.chartConfig.chart.grid.labels.xAxisLabels.color,
|
|
24137
24141
|
transform: `translate(${l.drawingArea.left + l.drawingArea.width / l.maxSeries * A + l.drawingArea.width / l.maxSeries / 2}, ${l.drawingArea.bottom + l.chartConfig.chart.grid.labels.xAxisLabels.fontSize * 1.3 + l.chartConfig.chart.grid.labels.xAxisLabels.yOffset}), rotate(${l.chartConfig.chart.grid.labels.xAxisLabels.rotation})`
|
|
@@ -24347,7 +24351,7 @@ function h3(e, t, o, r, a, l) {
|
|
|
24347
24351
|
], 4)) : L("", !0)
|
|
24348
24352
|
], 14, g4);
|
|
24349
24353
|
}
|
|
24350
|
-
const f3 = /* @__PURE__ */ St(v4, [["render", h3], ["__scopeId", "data-v-
|
|
24354
|
+
const f3 = /* @__PURE__ */ St(v4, [["render", h3], ["__scopeId", "data-v-5507e445"]]), v3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24351
24355
|
__proto__: null,
|
|
24352
24356
|
default: f3
|
|
24353
24357
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -33205,7 +33209,7 @@ const J7 = ["id"], Z7 = ["xmlns", "viewBox"], eE = { key: 0 }, tE = ["font-size"
|
|
|
33205
33209
|
__proto__: null,
|
|
33206
33210
|
default: WE
|
|
33207
33211
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
33208
|
-
const GE = ["id"], XE = ["xmlns", "viewBox"], qE = { key: 0 }, YE = ["id"], JE = ["stop-color"], ZE = ["stop-color"], eI = ["stop-color"], tI = ["id"], lI = ["stop-color"], aI = ["stop-color"], oI = ["stop-color"], rI = { key: 0 }, nI = ["font-size", "fill", "x"], sI = ["font-size", "fill", "x", "y"], iI = { key: 1 }, AI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], uI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], cI = { key: 2 }, dI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], hI = ["x", "y", "font-size", "fill", "font-weight"], fI = { key: 3 }, vI = ["
|
|
33212
|
+
const GE = ["id"], XE = ["xmlns", "viewBox"], qE = { key: 0 }, YE = ["id"], JE = ["stop-color"], ZE = ["stop-color"], eI = ["stop-color"], tI = ["id"], lI = ["stop-color"], aI = ["stop-color"], oI = ["stop-color"], rI = { key: 0 }, nI = ["font-size", "fill", "x"], sI = ["font-size", "fill", "x", "y"], iI = { key: 1 }, AI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], uI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], cI = { key: 2 }, dI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], hI = ["x", "y", "font-size", "fill", "font-weight"], fI = { key: 3 }, vI = ["transform", "text-anchor", "font-size", "fill", "font-weight"], gI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], yI = { key: 0 }, pI = ["cx", "cy", "r", "fill"], bI = ["cx", "cy", "r", "fill"], mI = { key: 1 }, wI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], xI = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], CI = ["x", "y", "height", "width", "fill", "rx"], kI = ["x", "y", "height", "width", "fill", "rx", "stroke", "stroke-width"], BI = ["x", "y", "height", "width", "fill", "onMouseover"], _I = ["innerHTML"], FI = {
|
|
33209
33213
|
__name: "vue-ui-candlestick",
|
|
33210
33214
|
props: {
|
|
33211
33215
|
config: {
|
|
@@ -33595,9 +33599,8 @@ const GE = ["id"], XE = ["xmlns", "viewBox"], qE = { key: 0 }, YE = ["id"], JE =
|
|
|
33595
33599
|
n.value.style.layout.grid.xAxis.dataLabels.show ? (u(), d("g", fI, [
|
|
33596
33600
|
(u(!0), d(ge, null, xe(re.value, (ee, pe) => (u(), d("g", null, [
|
|
33597
33601
|
g("text", {
|
|
33598
|
-
|
|
33599
|
-
|
|
33600
|
-
"text-anchor": "middle",
|
|
33602
|
+
transform: `translate(${_.value.left + R.value * pe + R.value / 2}, ${_.value.bottom + n.value.style.layout.grid.xAxis.dataLabels.fontSize * 2 + n.value.style.layout.grid.xAxis.dataLabels.offsetY}), rotate(${n.value.style.layout.grid.xAxis.dataLabels.rotation})`,
|
|
33603
|
+
"text-anchor": n.value.style.layout.grid.xAxis.dataLabels.rotation > 0 ? "start" : n.value.style.layout.grid.xAxis.dataLabels.rotation < 0 ? "end" : "middle",
|
|
33601
33604
|
"font-size": n.value.style.layout.grid.xAxis.dataLabels.fontSize,
|
|
33602
33605
|
fill: n.value.style.layout.grid.xAxis.dataLabels.color,
|
|
33603
33606
|
"font-weight": n.value.style.layout.grid.xAxis.dataLabels.bold ? "bold" : "normal"
|
|
@@ -33771,7 +33774,7 @@ const GE = ["id"], XE = ["xmlns", "viewBox"], qE = { key: 0 }, YE = ["id"], JE =
|
|
|
33771
33774
|
], 4)) : L("", !0)
|
|
33772
33775
|
], 14, GE));
|
|
33773
33776
|
}
|
|
33774
|
-
}, SI = /* @__PURE__ */ St(FI, [["__scopeId", "data-v-
|
|
33777
|
+
}, SI = /* @__PURE__ */ St(FI, [["__scopeId", "data-v-a8467e96"]]), LI = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
33775
33778
|
__proto__: null,
|
|
33776
33779
|
default: SI
|
|
33777
33780
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -39473,7 +39476,7 @@ const RP = ["id"], VP = ["xmlns", "viewBox"], KP = { key: 0 }, WP = ["d", "strok
|
|
|
39473
39476
|
__proto__: null,
|
|
39474
39477
|
default: YP
|
|
39475
39478
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
39476
|
-
const ZP = ["id"], ez = ["xmlns", "viewBox"], tz = ["id"], lz = ["stop-color"], az = ["stop-color"], oz = ["id"], rz = ["stop-color"], nz = ["stop-color"], sz = ["stop-color"], iz = { key: 0 }, Az = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], uz = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], cz = { key: 0 }, dz = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], hz = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], fz = ["x", "y", "font-size", "fill", "font-weight"], vz = ["
|
|
39479
|
+
const ZP = ["id"], ez = ["xmlns", "viewBox"], tz = ["id"], lz = ["stop-color"], az = ["stop-color"], oz = ["id"], rz = ["stop-color"], nz = ["stop-color"], sz = ["stop-color"], iz = { key: 0 }, Az = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], uz = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], cz = { key: 0 }, dz = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], hz = ["x1", "x2", "y1", "y2", "stroke", "stroke-width"], fz = ["x", "y", "font-size", "fill", "font-weight"], vz = ["text-anchor", "font-size", "fill", "transform"], gz = ["x1", "y1", "x2", "y2", "stroke", "stroke-width"], yz = { key: 1 }, pz = ["cx", "cy", "r", "fill"], bz = { key: 0 }, mz = { key: 0 }, wz = ["d", "stroke"], xz = ["text-anchor", "x", "y", "fill"], Cz = { key: 0 }, kz = ["cx", "cy", "fill"], Bz = { key: 1 }, _z = ["d", "fill", "stroke"], Fz = { key: 2 }, Sz = ["d", "fill", "stroke"], Lz = { key: 1 }, $z = ["cx", "cy", "r", "fill"], Uz = ["x", "y", "font-size", "fill"], Mz = ["x", "y", "width", "fill", "onClick"], Qz = ["x", "y", "width", "height", "onMouseenter", "onClick"], Ez = {
|
|
39477
39480
|
key: 3,
|
|
39478
39481
|
"data-cy-zoom": ""
|
|
39479
39482
|
}, Iz = ["x", "y", "width", "height", "fill"], Nz = ["x1", "y1", "x2", "y2", "stroke"], Tz = ["x1", "y2", "x2", "y1", "stroke"], Dz = ["onKeypress", "cx", "cy", "r"], Hz = ["d", "stroke"], Pz = ["cx", "cy", "r", "fill"], zz = ["d", "fill", "stroke"], Oz = { class: "vue-ui-donut-evolution-focus" }, Rz = ["text-anchor", "x", "y", "fill"], Vz = ["cx", "cy", "r", "fill"], Kz = ["cx", "cy", "r", "fill"], Wz = ["x", "y", "fill"], jz = ["x", "y", "font-size", "fill"], Gz = ["onClick"], Xz = { key: 0 }, qz = { key: 1 }, Yz = { key: 0 }, Jz = { key: 1 }, Zz = {
|
|
@@ -39565,7 +39568,7 @@ const ZP = ["id"], ez = ["xmlns", "viewBox"], tz = ["id"], lz = ["stop-color"],
|
|
|
39565
39568
|
}
|
|
39566
39569
|
const Q = 0, k = Math.max(...Y.map((N) => N.subtotal));
|
|
39567
39570
|
return Y.map((N, te) => {
|
|
39568
|
-
const q = R.value / 2 * 0.7, _e = q > C.value.width / 16 ? C.value.width / 16 : q, Ie = p.value === N.index ? C.value.width / 16 : _e, Be = C.value.absoluteHeight - _.value.bottom - C.value.height * N.subtotal / Tr(Q, k,
|
|
39571
|
+
const q = R.value / 2 * 0.7, _e = q > C.value.width / 16 ? C.value.width / 16 : q, Ie = p.value === N.index ? C.value.width / 16 : _e, Be = C.value.absoluteHeight - _.value.bottom - C.value.height * N.subtotal / Tr(Q, k, A.value.style.chart.layout.grid.yAxis.dataLabels.steps).max;
|
|
39569
39572
|
return {
|
|
39570
39573
|
...N,
|
|
39571
39574
|
y: Be,
|
|
@@ -39600,7 +39603,7 @@ const ZP = ["id"], ez = ["xmlns", "viewBox"], tz = ["id"], lz = ["stop-color"],
|
|
|
39600
39603
|
const he = oe(() => ({
|
|
39601
39604
|
max: Math.max(...K.value.map((Y) => Y.subtotal)),
|
|
39602
39605
|
min: 0
|
|
39603
|
-
})), O = oe(() => Tr(he.value.min, he.value.max,
|
|
39606
|
+
})), O = oe(() => Tr(he.value.min, he.value.max, A.value.style.chart.layout.grid.yAxis.dataLabels.steps));
|
|
39604
39607
|
function W(Y) {
|
|
39605
39608
|
return Y / O.value.max;
|
|
39606
39609
|
}
|
|
@@ -39884,11 +39887,10 @@ const ZP = ["id"], ez = ["xmlns", "viewBox"], tz = ["id"], lz = ["stop-color"],
|
|
|
39884
39887
|
(u(!0), d(ge, null, xe(ie.value, (k, N) => (u(), d("g", null, [
|
|
39885
39888
|
A.value.style.chart.layout.grid.xAxis.dataLabels.showOnlyFirstAndLast && (N === 0 || N === ie.value - 1) || !A.value.style.chart.layout.grid.xAxis.dataLabels.showOnlyFirstAndLast ? (u(), d("text", {
|
|
39886
39889
|
key: 0,
|
|
39887
|
-
|
|
39888
|
-
y: C.value.absoluteHeight - _.value.bottom + A.value.style.chart.layout.grid.xAxis.dataLabels.fontSize * 2,
|
|
39889
|
-
"text-anchor": "middle",
|
|
39890
|
+
"text-anchor": A.value.style.chart.layout.grid.xAxis.dataLabels.rotation > 0 ? "start" : A.value.style.chart.layout.grid.xAxis.dataLabels.rotation < 0 ? "end" : "middle",
|
|
39890
39891
|
"font-size": A.value.style.chart.layout.grid.xAxis.dataLabels.fontSize,
|
|
39891
|
-
fill: A.value.style.chart.layout.grid.xAxis.dataLabels.color
|
|
39892
|
+
fill: A.value.style.chart.layout.grid.xAxis.dataLabels.color,
|
|
39893
|
+
transform: `translate(${_.value.left + R.value * N + R.value / 2}, ${A.value.style.chart.layout.grid.xAxis.dataLabels.offsetY + C.value.absoluteHeight - _.value.bottom + A.value.style.chart.layout.grid.xAxis.dataLabels.fontSize * 2}), rotate(${A.value.style.chart.layout.grid.xAxis.dataLabels.rotation})`
|
|
39892
39894
|
}, D(A.value.style.chart.layout.grid.xAxis.dataLabels.values[N] ?? ""), 9, vz)) : L("", !0)
|
|
39893
39895
|
]))), 256))
|
|
39894
39896
|
], 2)) : L("", !0),
|
|
@@ -40180,7 +40182,7 @@ const ZP = ["id"], ez = ["xmlns", "viewBox"], tz = ["id"], lz = ["stop-color"],
|
|
|
40180
40182
|
], 4)) : L("", !0)
|
|
40181
40183
|
], 14, ZP));
|
|
40182
40184
|
}
|
|
40183
|
-
}, eO = /* @__PURE__ */ St(Zz, [["__scopeId", "data-v-
|
|
40185
|
+
}, eO = /* @__PURE__ */ St(Zz, [["__scopeId", "data-v-8c2f15a3"]]), tO = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
40184
40186
|
__proto__: null,
|
|
40185
40187
|
default: eO
|
|
40186
40188
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -45183,7 +45185,7 @@ function Mf(e) {
|
|
|
45183
45185
|
e.hasOwnProperty(o) && (t[o.toUpperCase()] = e[o]);
|
|
45184
45186
|
return t;
|
|
45185
45187
|
}
|
|
45186
|
-
const d1 = (e) => (Ta("data-v-
|
|
45188
|
+
const d1 = (e) => (Ta("data-v-54b24225"), e = e(), Da(), e), Bj = ["id"], _j = ["xmlns", "viewBox"], Fj = ["id"], Sj = ["id"], Lj = /* @__PURE__ */ d1(() => /* @__PURE__ */ g("feColorMatrix", {
|
|
45187
45189
|
type: "saturate",
|
|
45188
45190
|
values: "0"
|
|
45189
45191
|
}, null, -1)), $j = {
|
|
@@ -45898,7 +45900,7 @@ const d1 = (e) => (Ta("data-v-09906c9e"), e = e(), Da(), e), Bj = ["id"], _j = [
|
|
|
45898
45900
|
}, null, 8, Zj))), 256)),
|
|
45899
45901
|
(u(!0), d(ge, null, xe(X.value.extremes.maxSeries, (F, $) => (u(), d("text", {
|
|
45900
45902
|
"font-size": n.value.xyLabelsXFontSize,
|
|
45901
|
-
"text-anchor": n.value.xyPeriodLabelsRotation ? "end" : "middle",
|
|
45903
|
+
"text-anchor": n.value.xyPeriodLabelsRotation > 0 ? "start" : n.value.xyPeriodLabelsRotation < 0 ? "end" : "middle",
|
|
45902
45904
|
fill: n.value.color,
|
|
45903
45905
|
transform: `translate(${X.value.drawingArea.left + X.value.slotSize * ($ + 1) - X.value.slotSize / 2}, ${X.value.drawingArea.bottom + n.value.xyLabelsXFontSize + 6}), rotate(${n.value.xyPeriodLabelsRotation})`
|
|
45904
45906
|
}, D(n.value.xyPeriods[$]), 9, eG))), 256))
|
|
@@ -46069,7 +46071,7 @@ const d1 = (e) => (Ta("data-v-09906c9e"), e = e(), Da(), e), Bj = ["id"], _j = [
|
|
|
46069
46071
|
}, null, 8, xG))), 256)),
|
|
46070
46072
|
(u(!0), d(ge, null, xe(re.value.extremes.maxSeries, (F, $) => (u(), d("text", {
|
|
46071
46073
|
"font-size": n.value.xyLabelsXFontSize,
|
|
46072
|
-
"text-anchor": n.value.xyPeriodLabelsRotation ? "end" : "middle",
|
|
46074
|
+
"text-anchor": n.value.xyPeriodLabelsRotation > 0 ? "start" : n.value.xyPeriodLabelsRotation < 0 ? "end" : "middle",
|
|
46073
46075
|
transform: `translate(${re.value.drawingArea.left + re.value.slotSize * ($ + 1) - re.value.slotSize / 2}, ${re.value.drawingArea.bottom + n.value.xyLabelsXFontSize + 6}) rotate(${n.value.xyPeriodLabelsRotation})`,
|
|
46074
46076
|
fill: n.value.color
|
|
46075
46077
|
}, D(n.value.xyPeriods[$]), 9, CG))), 256))
|
|
@@ -46263,7 +46265,7 @@ const d1 = (e) => (Ta("data-v-09906c9e"), e = e(), Da(), e), Bj = ["id"], _j = [
|
|
|
46263
46265
|
RG
|
|
46264
46266
|
]));
|
|
46265
46267
|
}
|
|
46266
|
-
}, KG = /* @__PURE__ */ St(VG, [["__scopeId", "data-v-
|
|
46268
|
+
}, KG = /* @__PURE__ */ St(VG, [["__scopeId", "data-v-54b24225"]]), WG = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
46267
46269
|
__proto__: null,
|
|
46268
46270
|
default: KG
|
|
46269
46271
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as Ha } from "./index-
|
|
1
|
+
import { _ as Ha } from "./index-c43e875e.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
var Tt = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
4
4
|
function Vo(a) {
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.vue-ui-data-table thead[data-v-2cdad199]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}table[data-v-2cdad199]{width:100%;padding:1rem;border-collapse:collapse}caption[data-v-2cdad199],th[data-v-2cdad199],td[data-v-2cdad199]{padding:.5rem;font-variant-numeric:tabular-nums}caption[data-v-2cdad199]{font-size:1.3rem;font-weight:700}.vue-ui-responsive th[data-v-2cdad199]{display:none}.vue-ui-responsive td[data-v-2cdad199]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-2cdad199]{outline:var(--4f04048e)}.vue-ui-responsive td[data-v-2cdad199]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-2cdad199]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-2cdad199]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}.vue-data-ui-tooltip{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;position:fixed;padding:12px;z-index:2}.vue-data-ui-custom-tooltip{position:fixed;z-index:2}svg *[data-v-f403c77a]{all:unset}.spin[data-v-f403c77a]{animation:smartspin-f403c77a .5s infinite linear}@keyframes smartspin-f403c77a{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.vue-ui-user-options[data-v-f6a4f6c7]{z-index:1}.vue-ui-user-options-drawer[data-open=false][data-v-f6a4f6c7]{display:none}.vue-ui-user-options-drawer[data-open=true][data-v-f6a4f6c7]{position:absolute;right:4px;top:36px;display:flex;flex-direction:column;gap:4px;animation:show-user-options-f6a4f6c7 125ms ease-in forwards;transform-origin:top;opacity:0;border-radius:0 0 3px 3px;box-shadow:0 6px 12px -6px #0000004d}@keyframes show-user-options-f6a4f6c7{0%{opacity:0;transform:translateY(-6px) scaleY(.95)}to{opacity:1;transform:translateY(0) scale(1)}}.vue-ui-user-options-closing[data-v-f6a4f6c7]{animation:close-user-options-f6a4f6c7 125ms ease-out;transform-origin:top;opacity:1}@keyframes close-user-options-f6a4f6c7{0%{opacity:1;transform:translateY(0) scale(1)}to{opacity:0;transform:translateY(-6px) scaleY(.95)}}.vue-ui-user-options-button[data-v-f6a4f6c7]{all:unset;padding:0 3px;border-radius:3px;height:30px;border:1px solid transparent;background:inherit;display:flex;align-items:center;justify-content:center;width:fit-content;cursor:pointer}.vue-ui-user-options-button[data-v-f6a4f6c7]:hover{background:rgba(0,0,0,.05)!important}.vue-ui-user-options-button[data-v-f6a4f6c7]:focus-visible{outline:1px solid #CCCCCC}.vue-ui-skeleton-animated[data-v-030db148]{animation:skeleton-animate-030db148 1.62s infinite linear}@keyframes skeleton-animate-030db148{0%{opacity:.3}50%{opacity:1}to{opacity:.3}}.vue-ui-sparkline *[data-v-2f2fada1]{transition:unset}.vue-ui-data-table thead[data-v-cbe7694d]{position:sticky;top:0;-webkit-user-select:none;user-select:none}table[data-v-cbe7694d]{width:100%;padding:1rem;border-collapse:collapse}caption[data-v-cbe7694d],th[data-v-cbe7694d],td[data-v-cbe7694d]{padding:.5rem;font-variant-numeric:tabular-nums}th[data-v-cbe7694d],td[data-v-cbe7694d]{white-space:nowrap}.sticky-col[data-v-cbe7694d]{position:-webkit-sticky;position:sticky;width:100px;min-width:100px;right:0}.sticky-col-first[data-v-cbe7694d]{position:-webkit-sticky;position:sticky;width:100px;min-width:100px;left:0}.vue-ui-responsive .sticky-col[data-v-cbe7694d],.vue-ui-responsive .sticky-col-first[data-v-cbe7694d]{position:initial;width:initial;min-width:initial;left:initial;right:initial}.vue-ui-responsive th[data-v-cbe7694d]{display:none}.vue-ui-responsive td[data-v-cbe7694d]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-cbe7694d]{outline:var(--202ddaf6)}.vue-ui-responsive td[data-v-cbe7694d]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-cbe7694d]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-cbe7694d]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}.vue-data-ui-slicer[data-v-207df55b]{position:relative;width:calc(100% - 48px);display:flex;flex-direction:column;gap:12px;padding:0 24px;margin-bottom:24px}.vue-data-ui-slicer-knobs[data-v-207df55b]{position:relative;width:calc(100% - 48px);margin:0 auto;height:12px}input[type=range][data-v-207df55b]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;outline:none;position:absolute;margin:auto;top:0;bottom:0;left:0;background-color:transparent;pointer-events:none}.vue-data-ui-slicer-track[data-v-207df55b]{width:100%;height:5px;position:absolute;margin:auto;top:0;bottom:0;border-radius:5px;background:var(--6b91afb4)}input[type=range][data-v-207df55b]::-webkit-slider-runnable-track{-webkit-appearance:none;height:5px}input[type=range][data-v-207df55b]::-moz-range-track{-moz-appearance:none;height:5px}input[type=range][data-v-207df55b]::-ms-track{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:5px}input[type=range][data-v-207df55b]::-webkit-slider-thumb{-webkit-appearance:none;height:1.3em;width:1.3em;background-color:var(--6b91afb4);cursor:pointer;margin-top:-6px;pointer-events:auto;border-radius:50%;border:1px solid var(--70546758)}input[type=range][data-v-207df55b]::-moz-range-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:1.3em;width:1.3em;cursor:pointer;border-radius:50%;background-color:var(--6b91afb4);pointer-events:auto}input[type=range][data-v-207df55b]::-ms-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:1.3em;width:1.3em;cursor:pointer;border-radius:50%;background-color:var(--6b91afb4);pointer-events:auto}input[type=range][data-v-207df55b]:active::-webkit-slider-thumb{background-color:var(--6b91afb4);border:2px solid var(--70546758)}.vue-data-ui-refresh-button[data-v-207df55b]{outline:none;border:none;background:transparent;height:36px;width:36px;display:flex;align-items:center;justify-content:center;border-radius:50%;cursor:pointer;transition:transform .2s ease-in-out}.vue-data-ui-refresh-button[data-v-207df55b]:focus{outline:1px solid var(--6b91afb4)}.vue-data-ui-refresh-button[data-v-207df55b]:hover{transform:rotate(-90deg)}.vue-data-ui-slicer-labels[data-v-207df55b]{display:flex;flex-direction:row;align-items:center;padding:0 24px;height:40px}.vue-data-ui-slicer-label-left[data-v-207df55b],.vue-data-ui-slicer-label-right[data-v-207df55b]{width:100%}.vue-data-ui-slicer-label-left[data-v-207df55b]{text-align:left}.vue-data-ui-slicer-label-right[data-v-207df55b]{text-align:right}.vue-ui-dna *[data-v-bb2f7546]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-bb2f7546]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-bb2f7546]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-bb2f7546]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-bb2f7546]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-bb2f7546]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-xy *[data-v-bb2f7546]{transition:unset}path[data-v-bb2f7546],line[data-v-bb2f7546],rect[data-v-bb2f7546]{animation:xyAnimation-bb2f7546 .5s ease-in-out;transform-origin:center}@keyframes xyAnimation-bb2f7546{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-xy[data-v-bb2f7546]{position:relative}.vue-ui-xy-legend[data-v-bb2f7546]{align-items:center;column-gap:24px;display:flex;flex-wrap:wrap;justify-content:center;-webkit-user-select:none;user-select:none;width:100%}.vue-ui-xy-legend-item[data-v-bb2f7546]{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:5px;cursor:pointer}.vue-ui-xy-legend-item-segregated[data-v-bb2f7546]{opacity:.5}.vue-ui-xy-title[data-v-bb2f7546]{align-items:center;display:flex;flex-direction:column;justify-content:center;width:100%}.vue-ui-xy svg rect[data-v-bb2f7546]{transition:all .11s ease-in-out}canvas[data-v-bb2f7546]{width:100%;object-fit:contain}.vue-ui-table-main[data-v-eca448e3]{height:fit-content;padding:0 0 98px;position:relative}.vue-ui-table__wrapper[data-v-eca448e3]{overflow-x:auto;padding:0 12px 48px;position:relative;width:calc(100% - 24px)}.vue-ui-table-main thead[data-v-eca448e3]{position:sticky;top:0}.vue-ui-table[data-v-eca448e3]{width:100%;position:relative}.vue-ui-table-main table[data-v-eca448e3]{border-collapse:collapse}.vue-ui-table-main th[data-v-eca448e3],.vue-ui-table-main td[data-v-eca448e3]{padding:3px 8px}.vue-ui-table-main tr td[data-v-eca448e3]{outline:1px solid white}.vue-ui-table-main .th-numeric[data-v-eca448e3]{text-align:right;font-variant-numeric:tabular-nums}.vue-ui-table-main .th-filter[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:6px;justify-content:center;position:relative}.vue-ui-table-main button[data-v-eca448e3]{align-items:center;cursor:pointer;display:flex;justify-content:center;width:32px}.vue-ui-table-main input[data-v-eca448e3]{padding:0 6px;font-family:Satoshi}.vue-ui-table-main button[data-v-eca448e3],.vue-ui-table-main input[data-v-eca448e3]{border-radius:6px;height:32px}.vue-ui-table-main button[data-v-eca448e3]{border:1px solid grey}.vue-ui-table-main button[data-v-eca448e3]:hover,.vue-ui-table-main button[data-v-eca448e3]:focus,.vue-ui-table-main input[data-v-eca448e3]:hover,.vue-ui-table-main input[data-v-eca448e3]:focus{outline:3px solid rgba(128,128,128,.432)}.vue-ui-table-main button.clicked[data-v-eca448e3]{animation:clicked-eca448e3 .15s ease-in-out}.vue-ui-table-main button[disabled][data-v-eca448e3]{cursor:not-allowed}.vue-ui-table-main button[disabled][data-v-eca448e3]:focus,.vue-ui-table-main button[disabled][data-v-eca448e3]:hover{outline:none}button.th-reset[data-v-eca448e3]:not(:disabled){background:radial-gradient(at top,#f19a71,#F17171);border:1px solid #F17171;color:#fff}.vue-ui-table-main button.th-reset[data-v-eca448e3]:not(:disabled):hover,.vue-ui-table-main button.th-reset[data-v-eca448e3]:not(:disabled):focus{outline:3px solid #f171717e}.vue-ui-table-main [data-is-open=false][data-v-eca448e3]{transform:scale(0)}.vue-ui-table-main .th-dropdown[data-is-open=true][data-v-eca448e3]{animation:open-dropdown-eca448e3 .2s ease-in}.vue-ui-table-main .th-dropdown[data-is-open=false][data-v-eca448e3]{animation:close-dropdown-eca448e3 .2s ease-in}.vue-ui-table-main .th-dropdown[data-v-eca448e3]{align-items:center;border-radius:8px;border:1px solid white;box-shadow:0 6px 12px -6px #00000080;display:flex;flex-direction:column;justify-content:flex-start;left:0;max-width:300px;min-width:150px;padding:24px 12px 12px;position:absolute;top:calc(100% + 12px)}.vue-ui-table-main .th-option[data-v-eca448e3]{border-radius:6px;cursor:pointer;padding:2px 6px;text-align:left;-webkit-user-select:none;user-select:none;width:100%;font-weight:400}.vue-ui-table-main .th-option[data-v-eca448e3]:hover{background-color:#ffffff1a;box-shadow:0 3px 6px -3px #00000080;z-index:1}.vue-ui-table-main button.close-dropdown[data-v-eca448e3],.vue-ui-table-main button.close-chart-modal[data-v-eca448e3]{align-items:center;border-radius:50%;border:none;display:flex;height:20px;padding:2px;position:absolute;right:6px;top:6px;width:20px}.vue-ui-table-main button.close-dropdown[data-v-eca448e3]:hover,.vue-ui-table-main button.close-dropdown[data-v-eca448e3]:focus,.vue-ui-table-main button.close-chart-modal[data-v-eca448e3]:hover,.vue-ui-table-main button.close-char-modal[data-v-eca448e3]:focus{outline:3px solid #2d353c71}.vue-ui-table-main .th-button-active[data-v-eca448e3]{background:radial-gradient(at top,#968bf1,#6376DD);color:#fff}.vue-ui-table-main .th-button-active[data-v-eca448e3]:hover,.vue-ui-table-main .th-button-active[data-v-eca448e3]:focus{outline:3px solid #6375dd7a}.vue-ui-table-main .th-date[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:6px;justify-content:center;width:100%}.vue-ui-table-main .date-wrapper--inputs[data-v-eca448e3]{align-items:center;display:flex;flex-direction:column;gap:6px;justify-content:center;width:100%}.vue-ui-table-main .date-wrapper--button[data-v-eca448e3]{display:flex;gap:3px}.vue-ui-table-main input[type=date][data-v-eca448e3]{border-radius:4px;font-size:12px;font-variant-numeric:tabular-nums;height:20px!important;width:100px}.vue-ui-table-main .date-fieldset[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:6px;justify-content:center;width:100%}.vue-ui-table-main .date-fieldset label[data-v-eca448e3]{font-size:12px;font-weight:400}@keyframes clicked-eca448e3{0%{transform:scale(.9)}90%{transform:scale(1.03)}to{transform:scale(1)}}.vue-ui-table-main td.td-numeric[data-v-eca448e3]{cursor:pointer}.vue-ui-table-main .td-selector-info[data-v-eca448e3]{align-items:center;border-radius:0 0 6px 6px;bottom:76px;display:flex;font-size:14px;justify-content:flex-end;min-height:20px;padding:2px 4px 2px 2px;position:absolute;right:0;text-align:right;width:100%;z-index:1}.vue-ui-table-main button.td-selector-info-reset[data-v-eca448e3]{background:transparent;border:none;color:#f17171;height:14px;margin-left:24px;padding:0;width:14px}.vue-ui-table-main button.td-selector-info-reset[data-v-eca448e3]:hover,.vue-ui-table-main button.td-selector-info-reset[data-v-eca448e3]:focus{outline:3px solid #f171717e}.vue-ui-table-main .format-num[data-v-eca448e3]{font-variant-numeric:tabular-nums}.vue-ui-table-main .td-selector-icon[data-v-eca448e3]{margin-bottom:-5px;margin-right:6px}.vue-ui-table-main .vue-ui-table-pagination[data-v-eca448e3]{align-items:center;bottom:24px;display:flex;flex-direction:row;gap:12px;height:40px;justify-content:center;position:absolute;width:100%;z-index:1}.vue-ui-table-main button.vue-ui-table-navigation[data-v-eca448e3]{height:36px;padding:1px;width:36px}.vue-ui-table-main .vue-ui-table-navigation-indicator[data-v-eca448e3]{border-radius:6px;bottom:70px;height:6px;position:absolute;transition:all .1s ease-in-out}.vue-ui-table-main .vue-ui-table-page-scroller-wrapper[data-v-eca448e3]{align-items:center;display:flex;flex-direction:column;justify-content:center}.vue-ui-table-main input.vue-ui-table-page-scroller[data-v-eca448e3]{cursor:pointer;height:24px;padding:0}.vue-ui-table-main .vue-ui-table-paginator[data-v-eca448e3]{position:absolute;bottom:0;z-index:2;left:12px;display:flex;flex-direction:row;gap:6px;font-size:14px;justify-content:center;align-items:center;width:calc(100% - 24px)}.vue-ui-table-main .vue-ui-table-paginator select[data-v-eca448e3]{border-radius:3px}.vue-ui-table-main .vue-ui-table-size-warning[data-v-eca448e3]{align-items:center;bottom:-24px;color:#f17171;display:flex;flex-direction:row;flex-wrap:wrap;font-size:12px;gap:6px;justify-content:center;position:absolute;text-align:center;width:100%}.vue-ui-table-main th.vue-ui-table-col-selector[data-v-eca448e3]{height:12px}.vue-ui-table-main .col-selector[data-v-eca448e3]{align-items:center;cursor:pointer;display:flex;height:100%;justify-content:center;width:100%}.vue-ui-table-main th.col-selector--selected[data-v-eca448e3]{background:radial-gradient(at top left,#9586eb,#6376DD);color:#fff}.vue-ui-table-main th.col-selector--selected div[data-v-eca448e3]{background:transparent;color:#fff}.vue-ui-table-main .vue-ui-table-chart-modal[data-v-eca448e3]{align-items:center;border-radius:8px;border:1px solid white;box-shadow:0 6px 12px -6px #0000004d;display:flex;flex-direction:column;justify-content:center;min-height:200px;min-width:300px;max-width:800px;overflow:hidden;padding:12px;position:fixed;resize:horizontal;-webkit-user-select:none;user-select:none;z-index:10000}.vue-ui-table-main .vue-ui-table-chart-svg[data-v-eca448e3]{border-radius:6px;margin-bottom:12px;overflow:visible;padding:12px;width:calc(100% - 24px)}.vue-ui-table-main .vue-ui-table-donut-chart[data-v-eca448e3]{border-radius:6px}.vue-ui-table-main td.vue-ui-table-td-iteration[data-v-eca448e3]{font-size:12px;font-variant-numeric:tabular-nums;text-align:right;-webkit-user-select:none;user-select:none}.vue-ui-table-main .chart-trend[data-v-eca448e3]{font-size:12px;padding-left:12px}.vue-ui-table-main .chart-modal-options[data-v-eca448e3]{bottom:12px;display:flex;flex-direction:row;gap:8px;position:absolute;right:24px}.vue-ui-table-main .chart-modal-options button[data-v-eca448e3]{height:24px;padding:3px;width:24px}.vue-ui-table-main .th-range-filter[data-v-eca448e3]{display:flex;align-items:center;justify-content:center;gap:2px;flex-direction:column}.vue-ui-table-main .th-range-filter input[data-v-eca448e3]{height:20px;width:60px;font-variant-numeric:tabular-nums;font-size:12px}.vue-ui-table-main .th-range-filter label[data-v-eca448e3]{font-size:12px;font-weight:400;margin-bottom:-3px}.vue-ui-table-main .vue-ui-table-fieldset-wrapper[data-v-eca448e3]{display:flex;flex-direction:row;flex-wrap:wrap;gap:24px;margin-bottom:12px}.vue-ui-table-main .vue-ui-table-fieldset[data-v-eca448e3]{border-radius:6px;margin-bottom:24px;border:1px solid white}.vue-ui-table-main .vue-ui-table-fieldset legend[data-v-eca448e3]{color:gray}.vue-ui-table-main .vue-ui-table-fieldset-option[data-v-eca448e3]{display:flex;align-items:center}.vue-ui-table-main .vue-ui-table-fieldset-option input[data-v-eca448e3]{height:14px;width:14px;border-radius:50%}.vue-ui-table-main button.vue-ui-table-generate-donut[data-v-eca448e3]{align-items:center;display:flex;gap:3px;justify-content:center;margin:24px auto 12px;padding-left:12px;padding-right:12px;width:fit-content}.vue-ui-table-main button.vue-ui-table-generate-donut[disabled][data-v-eca448e3]{opacity:.5}.vue-ui-table-main .vue-ui-table-donut-legend[data-v-eca448e3]{align-items:center;column-gap:12px;display:flex;flex-wrap:wrap;font-size:12px;justify-content:center;margin:0 auto;max-width:400px;padding-bottom:36px}.vue-ui-table-main .vue-ui-table-donut-legend-item[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:3px;justify-content:center}.vue-ui-table-main .vue-ui-table-donut-label[data-v-eca448e3]{align-items:center;display:flex;flex-direction:column;font-size:4px;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-table-main .vue-ui-table-donut-label-name[data-v-eca448e3]{font-size:3px;line-height:3px}.vue-ui-table-main td[data-v-eca448e3]:focus{outline:3px solid #202d7470}.vue-ui-table-main .vue-ui-table-export-hub[data-v-eca448e3]{left:5px;position:absolute;top:0;z-index:1001}.vue-ui-table-main .vue-ui-table-export-hub-dropdown[data-v-eca448e3]{position:absolute;top:40px;left:0;padding:24px;border-radius:8px;border:1px solid white;box-shadow:0 6px 12px -6px #00000080;transform:scale(0);opacity:0}.vue-ui-table-main .vue-ui-table-export-hub-dropdown[data-is-open=true][data-v-eca448e3]{animation:open-dropdown-eca448e3 .2s ease-in forwards}.vue-ui-table-main .vue-ui-table-export-hub-dropdown[data-is-open=false][data-v-eca448e3]{animation:close-dropdown-eca448e3 .2s ease-in}.vue-ui-table-main .vue-ui-table-export-hub-options[data-v-eca448e3]{margin-top:12px;display:flex;flex-direction:column;gap:12px;align-items:center;justify-content:center}.vue-ui-table-main .vue-ui-table-export-hub-options button[data-v-eca448e3]{width:fit-content;display:flex;align-items:center;justify-content:center;gap:3px;min-width:130px}.vue-ui-table-main .vue-ui-table-export-hub-option-wrapper[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:12px;justify-content:flex-start}.vue-ui-table-main .vue-ui-table-export-hub-option-wrapper .label[data-v-eca448e3]{font-size:12px;line-height:12px;margin-bottom:6px;width:100px}.vue-ui-table-main .td-nan[data-v-eca448e3]{background:#F17171}.vue-ui-table-main .td-has-nan[data-v-eca448e3],.vue-ui-table-main .th-has-nan[data-v-eca448e3]{background:#F17171;min-width:100px;color:#fff}@keyframes open-dropdown-eca448e3{0%{transform:scaleY(.9);opacity:0}50%{transform:scaleY(1.05);opacity:1}to{transform:scale(1);opacity:1}}@keyframes close-dropdown-eca448e3{0%{transform:scale(1.05);opacity:1}to{transform:scale(0);opacity:0}}.vue-data-ui-legend[data-v-a5a45422]{-webkit-user-select:none;user-select:none;height:fit-content;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-data-ui-legend-item[data-v-a5a45422]{-webkit-user-select:none;user-select:none;display:flex;align-items:center;gap:6px;cursor:pointer;height:fit-content;text-align:left}.vue-ui-dna *[data-v-764d25f6]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-764d25f6]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-764d25f6]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-764d25f6]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-764d25f6]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-764d25f6]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-donut *[data-v-764d25f6]{transition:unset}.vue-ui-donut[data-v-764d25f6]{-webkit-user-select:none;user-select:none;position:relative}.animated[data-v-764d25f6]{animation:donut-764d25f6 .5s ease-in-out;transform-origin:center}@keyframes donut-764d25f6{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-donut .vue-ui-donut-label[data-v-764d25f6]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-donut-datalabel-slot[data-v-764d25f6]{width:100%;height:-webkit-fit-content;height:fit-content}.vue-ui-donut-datalabel-slot-not-safari[data-v-764d25f6]{position:absolute;top:0;transform:translateY(-50%)}.vue-ui-dna *[data-v-4015bb55]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-4015bb55]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-4015bb55]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-4015bb55]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-4015bb55]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-4015bb55]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-waffle *[data-v-4015bb55]{transition:unset}.vue-ui-waffle[data-v-4015bb55]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-waffle .vue-ui-waffle-label[data-v-4015bb55]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-dna *[data-v-6f2ff1dc]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-6f2ff1dc]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-6f2ff1dc]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-6f2ff1dc]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-6f2ff1dc]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-6f2ff1dc]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-radar *[data-v-6f2ff1dc]{transition:unset}path[data-v-6f2ff1dc],line[data-v-6f2ff1dc],rect[data-v-6f2ff1dc],circle[data-v-6f2ff1dc]{animation:xyAnimation-6f2ff1dc .5s ease-in-out!important;transform-origin:center}@keyframes xyAnimation-6f2ff1dc{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-radar[data-v-6f2ff1dc]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-radar .vue-ui-radar-label[data-v-6f2ff1dc]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}polygon[data-v-6f2ff1dc]{transform-origin:center}.animated-in[data-v-6f2ff1dc]{animation:animatedIn-6f2ff1dc .3s cubic-bezier(0,1.01,1,1) forwards}@keyframes animatedIn-6f2ff1dc{0%{transform:scale(0)}80%{transform:scale(1.05)}to{transform:scale(1)}}.animated-out[data-v-6f2ff1dc]{animation:animatedOut-6f2ff1dc .3s cubic-bezier(0,1.01,1,1) forwards}@keyframes animatedOut-6f2ff1dc{0%{transform:scale(1)}to{transform:scale(0)}}.vue-ui-dna *[data-v-41fd946c]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-41fd946c]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-41fd946c]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-41fd946c]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-41fd946c]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-41fd946c]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-quadrant *[data-v-41fd946c]{transition:unset}.vue-ui-quadrant[data-v-41fd946c]{-webkit-user-select:none;user-select:none;position:relative}path[data-v-41fd946c],line[data-v-41fd946c],rect[data-v-41fd946c],circle[data-v-41fd946c],polygon[data-v-41fd946c]{animation:quadrantAnimation-41fd946c .5s ease-in-out;transform-origin:center}@keyframes quadrantAnimation-41fd946c{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-quadrant .vue-ui-quadrant-label[data-v-41fd946c]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-quadrant-mini-map-cell[data-v-41fd946c],.vue-ui-quadrant-mini-map-cell-selectable[data-v-41fd946c],.vue-ui-quadrant-minimap-crosshairs[data-v-41fd946c]{animation:none!important;transition:opacity .15s ease-in-out}.vue-ui-quadrant-mini-map-cell[data-v-41fd946c]:hover{stroke:#fff;stroke-width:1px}.vue-ui-quadrant-mini-map-cell-selectable[data-v-41fd946c]:hover{opacity:.5!important}.vue-ui-dna *[data-v-63b08535]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-63b08535]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-63b08535]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-63b08535]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-63b08535]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-63b08535]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-gauge *[data-v-63b08535]{transition:unset}.vue-ui-gauge[data-v-63b08535]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-gauge .vue-ui-gauge-label[data-v-63b08535]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-gauge-legend[data-v-63b08535]{height:100%;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-ui-gauge-legend-item[data-v-63b08535]{display:flex;align-items:center;justify-content:center;gap:6px;cursor:pointer;height:24px}.vue-ui-gauge-tooltip[data-v-63b08535]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-dna *[data-v-8fc77f09]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-8fc77f09]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-8fc77f09]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-8fc77f09]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-8fc77f09]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-8fc77f09]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-chestnut *[data-v-8fc77f09]{transition:unset}.vue-ui-chestnut[data-v-8fc77f09]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-chestnut .vue-ui-chestnut-label[data-v-8fc77f09]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-chestnut-legend[data-v-8fc77f09]{height:100%;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-ui-chestnut-legend-item[data-v-8fc77f09]{display:flex;align-items:center;justify-content:center;gap:6px;cursor:pointer;height:24px}.vue-ui-chestnut-tooltip[data-v-8fc77f09]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-chestnut-animated[data-v-8fc77f09]{opacity:0;animation:chestnut-opacity-8fc77f09 .2s ease-in-out forwards}@keyframes chestnut-opacity-8fc77f09{0%{transform:scaleX(.98);opacity:0}to{transform:scale(1);opacity:1}}.vue-ui-chestnut-table[data-v-8fc77f09]{width:100%;max-height:300px;overflow:auto;margin-top:24px;position:relative}.vue-ui-data-table thead[data-v-8fc77f09]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}table[data-v-8fc77f09]{width:100%;padding:1rem;border-collapse:collapse;overflow-x:auto}caption[data-v-8fc77f09],th[data-v-8fc77f09],td[data-v-8fc77f09]{padding:.5rem;font-variant-numeric:tabular-nums}caption[data-v-8fc77f09]{font-size:1.3rem;font-weight:700}.vue-ui-responsive th[data-v-8fc77f09]{display:none}.vue-ui-responsive td[data-v-8fc77f09]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-8fc77f09]{outline:var(--178057cf)}.vue-ui-responsive td[data-v-8fc77f09]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-8fc77f09]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-8fc77f09]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}path[data-v-8fc77f09],circle[data-v-8fc77f09],rect[data-v-8fc77f09],text[data-v-8fc77f09],line[data-v-8fc77f09]{transition:opacity .3s ease-in-out!important}.vue-ui-dna *[data-v-58878cd4]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-58878cd4]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-58878cd4]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-58878cd4]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-58878cd4]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-58878cd4]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-onion *[data-v-58878cd4]{transition:unset}.vue-ui-onion[data-v-58878cd4]{-webkit-user-select:none;user-select:none;position:relative}circle[data-v-58878cd4]{animation:xyAnimation-58878cd4 .5s ease-in-out;transform-origin:center;transition:all .3s ease-in-out!important}@keyframes xyAnimation-58878cd4{0%{transform:scale(.9) rotate(-90g);opacity:0}80%{transform:scale(1.02) rotate(-90deg);opacity:1}to{transform:scale(1) rotate(-90deg);opacity:1}}.vue-ui-onion .vue-ui-onion-label[data-v-58878cd4]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-onion-tooltip[data-v-58878cd4]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-onion table[data-v-58878cd4]{width:100%;border-collapse:collapse}.vue-ui-onion table td[data-v-58878cd4]{text-align:right;padding-right:6px;font-variant-numeric:tabular-nums}.vue-ui-onion table th[data-v-58878cd4]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}.vue-ui-onion-blur[data-v-58878cd4]{filter:blur(3px) opacity(50%) grayscale(100%);transition:all .15s ease-in-out}.vue-ui-dna *[data-v-8fda0c95]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-8fda0c95]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-8fda0c95]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-8fda0c95]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-8fda0c95]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-8fda0c95]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-vertical-bar *[data-v-8fda0c95]{transition:unset}path[data-v-8fda0c95],line[data-v-8fda0c95],rect[data-v-8fda0c95],circle[data-v-8fda0c95],polygon[data-v-8fda0c95]{animation:verticalBarAnimation-8fda0c95 .5s ease-in-out;transform-origin:center}@keyframes verticalBarAnimation-8fda0c95{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-vertical-bar[data-v-8fda0c95]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-vertical-bar .vue-ui-vertical-bar-label[data-v-8fda0c95]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-vertical-bar-table[data-v-8fda0c95]{width:100%;max-height:300px;overflow:auto;margin-top:24px;position:relative}.vue-ui-data-table thead[data-v-8fda0c95]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}table[data-v-8fda0c95]{width:100%;padding:1rem;border-collapse:collapse}caption[data-v-8fda0c95],th[data-v-8fda0c95],td[data-v-8fda0c95]{padding:.5rem;font-variant-numeric:tabular-nums}caption[data-v-8fda0c95]{font-size:1.3rem;font-weight:700}.vue-ui-responsive th[data-v-8fda0c95]{display:none}.vue-ui-responsive td[data-v-8fda0c95]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-8fda0c95]{outline:var(--3fc8fccf)}.vue-ui-responsive td[data-v-8fda0c95]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-8fda0c95]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-8fda0c95]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}.animated[data-v-8fda0c95]{transition:all .3s ease-in-out!important}.vue-ui-rating-wrapper[data-v-ce2b46a5]{display:flex;align-items:center;gap:1px;width:100%}.vue-ui-mouse-trap[data-v-ce2b46a5]{cursor:pointer}.vue-ui-mouse-trap[data-v-ce2b46a5]:focus:not(:focus-visible){outline:none}.vue-ui-dna *[data-v-6adad831]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-6adad831]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-6adad831]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-6adad831]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-6adad831]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-6adad831]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-heatmap *[data-v-6adad831]{transition:unset}.vue-ui-heatmap[data-v-6adad831]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-heatmap .vue-ui-heatmap-label[data-v-6adad831]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-heatmap-legend[data-v-6adad831]{height:100%;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-ui-heatmap-legend-item[data-v-6adad831]{display:flex;align-items:center;gap:6px;cursor:pointer;height:24px}.vue-ui-heatmap-tooltip[data-v-6adad831]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-heatmap-table[data-v-6adad831]{width:100%;max-height:300px;overflow:auto;margin-top:24px;position:relative}.vue-ui-data-table thead[data-v-6adad831]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}table[data-v-6adad831]{width:100%;padding:1rem;border-collapse:collapse}caption[data-v-6adad831],th[data-v-6adad831],td[data-v-6adad831]{padding:.5rem;font-variant-numeric:tabular-nums}caption[data-v-6adad831]{font-size:1.3rem;font-weight:700}.vue-ui-responsive th[data-v-6adad831]{display:none}.vue-ui-responsive td[data-v-6adad831]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-6adad831]{outline:var(--74c4aca2)}.vue-ui-responsive td[data-v-6adad831]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-6adad831]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-6adad831]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}.vue-ui-dna *[data-v-f83662f1]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-f83662f1]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-f83662f1]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-f83662f1]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-f83662f1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-f83662f1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-scatter *[data-v-f83662f1]{transition:unset}.vue-ui-scatter[data-v-f83662f1]{-webkit-user-select:none;user-select:none;position:relative}path[data-v-f83662f1],line[data-v-f83662f1],circle[data-v-f83662f1]{animation:verticalBarAnimation-f83662f1 .5s ease-in-out!important;transform-origin:center!important}@keyframes verticalBarAnimation-f83662f1{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-scatter .vue-ui-scatter-label[data-v-f83662f1]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-scatter-tooltip[data-v-f83662f1]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-scatter table[data-v-f83662f1]{width:100%;border-collapse:collapse}.vue-ui-scatter table td[data-v-f83662f1]{text-align:right;padding-right:6px;font-variant-numeric:tabular-nums}.vue-ui-scatter table th[data-v-f83662f1]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}.vue-ui-dna *[data-v-0ed34ae6]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-0ed34ae6]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-0ed34ae6]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-0ed34ae6]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-0ed34ae6]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-0ed34ae6]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-candlestick *[data-v-0ed34ae6]{transition:unset}.vue-ui-candlestick[data-v-0ed34ae6]{-webkit-user-select:none;user-select:none;position:relative}path[data-v-0ed34ae6],line[data-v-0ed34ae6],rect[data-v-0ed34ae6]{animation:xyAnimation-0ed34ae6 .5s ease-in-out;transform-origin:center}@keyframes xyAnimation-0ed34ae6{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-candlestick .vue-ui-candlestick-label[data-v-0ed34ae6]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-candlestick-tooltip[data-v-0ed34ae6]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-dna *[data-v-833ae3fa]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-833ae3fa]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-833ae3fa]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-833ae3fa]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-833ae3fa]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-833ae3fa]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-age-pyramid *[data-v-833ae3fa]{transition:unset}.vue-ui-age-pyramid[data-v-833ae3fa]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-age-pyramid .vue-ui-age-pyramid-label[data-v-833ae3fa]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-age-pyramid-legend[data-v-833ae3fa]{height:100%;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-ui-age-pyramid-legend-item[data-v-833ae3fa]{display:flex;align-items:center;gap:6px;cursor:pointer;height:24px}.vue-ui-age-pyramid-tooltip[data-v-833ae3fa]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1;font-variant-numeric:tabular-nums}.vue-ui-dashboard-container[data-v-d4bc5f10]{width:100%;height:fit-content;position:relative;overflow:hidden}.vue-ui-dashboard-grid-container[data-v-d4bc5f10]{position:absolute;width:100%;height:100%;overflow:hidden}.vue-ui-dashboard-grid[data-v-d4bc5f10]{position:absolute;width:100%;height:100%}.vue-ui-dashboard-grid-item[data-v-d4bc5f10]{position:absolute;border:2px solid transparent;transition:opacity .1s ease-in-out}.vue-ui-dashboard-grid-item[data-v-d4bc5f10]:hover{border:2px dashed var(--5114af16)}.vue-ui-dashboard-grid-item:hover .vue-ui-dashboard-resize-handle[data-v-d4bc5f10]{opacity:.5}.vue-ui-dashboard-resize-handle[data-v-d4bc5f10]{position:absolute;width:10px;height:10px;background:var(--44ca7b04);opacity:0;transition:opacity .1s ease-in-out}.vue-ui-dashboard-resize-handle[data-v-d4bc5f10]:hover{opacity:1}.vue-ui-dashboard-top-left[data-v-d4bc5f10]{top:-5px;left:-5px;cursor:nw-resize}.vue-ui-dashboard-top-right[data-v-d4bc5f10]{top:-5px;right:-5px;cursor:ne-resize}.vue-ui-dashboard-bottom-left[data-v-d4bc5f10]{bottom:-5px;left:-5px;cursor:sw-resize}.vue-ui-dashboard-bottom-right[data-v-d4bc5f10]{bottom:-5px;right:-5px;cursor:se-resize}.vue-ui-dashboard-button[data-v-d4bc5f10]{margin:6px 0;border-radius:3px;height:30px;border:1px solid #b9bfc4;background:inherit;display:flex;align-items:center;justify-content:center;font-family:inherit;cursor:pointer}.vue-ui-dashboard-button[data-v-d4bc5f10]:hover{background:rgba(0,0,0,.05)}.vue-ui-dashboard-print-icon[data-v-d4bc5f10]{animation:smartspin-d4bc5f10 .5s infinite linear}@keyframes smartspin-d4bc5f10{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.vue-ui-annotator summary[data-v-72a863ed]{text-align:center}.vue-ui-annotator button.button-tool[data-v-72a863ed]{align-items:center;cursor:pointer!important;display:flex;height:28px;justify-content:center;opacity:.9;padding:2px;width:28px}.vue-ui-annotator button.button-tool[data-v-72a863ed]:hover{opacity:1}.vue-ui-annotator button.button-tool[data-v-72a863ed]:disabled{opacity:.3;cursor:not-allowed}.vue-ui-annotator .tool-selection[data-v-72a863ed]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:12px}.vue-ui-annotator .tool-input[data-v-72a863ed]{display:flex;flex-direction:column;align-items:center}.vue-ui-annotator .tool-input input[data-v-72a863ed]{background:white;padding:3px;border-radius:3px;width:40px}.vue-ui-annotator .tool-input label[data-v-72a863ed]{font-size:.6em}.vue-ui-annotator text[data-v-72a863ed]{-webkit-user-select:none;user-select:none}.vue-ui-annotator summary[data-v-72a863ed]{-webkit-user-select:none;user-select:none;cursor:pointer}.vue-ui-annotator .animated-circle-print[data-v-72a863ed]{stroke-linecap:round!important;stroke-dasharray:400;stroke-dashoffset:0;animation:animate-circle-72a863ed 1s infinite linear}@keyframes animate-circle-72a863ed{0%{opacity:0;stroke-dashoffset:400}to{opacity:1;stroke-dashoffset:0}}.vue-ui-annotator .tooltip[data-v-72a863ed]{position:relative;display:inline-block;border-bottom:1px dotted black}.vue-ui-annotator .tooltip .tooltiptext[data-v-72a863ed]{visibility:hidden;width:120px;background-color:#555;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:125%;left:50%;margin-left:-60px;opacity:0;transition:opacity .3s}.vue-ui-annotator .tooltip .tooltiptext[data-v-72a863ed]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.vue-ui-annotator .tooltip:hover .tooltiptext[data-v-72a863ed]{visibility:visible;opacity:1}.vue-ui-annotator .draw--free[data-v-72a863ed]{cursor:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAABg2lDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9TpSIVh2YQcchQnSyIijhKFYtgobQVWnUwufQLmjQkKS6OgmvBwY/FqoOLs64OroIg+AHi6OSk6CIl/i8ptIjx4Lgf7+497t4BQrPKNKtnAtB020wn4lIuvyqFXhGGiAhCiMnMMpKZxSx8x9c9Any9i/Es/3N/jgG1YDEgIBHPMcO0iTeIZzZtg/M+scjKskp8Tjxu0gWJH7muePzGueSywDNFM5ueJxaJpVIXK13MyqZGPE0cVTWd8oWcxyrnLc5atc7a9+QvDBf0lQzXaY4ggSUkkYIEBXVUUIWNGK06KRbStB/38Q+7/hS5FHJVwMixgBo0yK4f/A9+d2sVpya9pHAc6H1xnI9RILQLtBqO833sOK0TIPgMXOkdf60JzH6S3uho0SNgcBu4uO5oyh5wuQMMPRmyKbtSkKZQLALvZ/RNeSByC/Sveb2193H6AGSpq+Ub4OAQGCtR9rrPu/u6e/v3TLu/H5C7crM1WjgWAAAABmJLR0QAqwB5AHWF+8OUAAAACXBIWXMAAC4jAAAuIwF4pT92AAAAB3RJTUUH5gwUExIUagzGcQAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAABfSURBVBjTldAxDoNQDIPhL0+q1L33P1AvAhN7xfK6WAgoLfSfrNiykpQtE+7RLzx2vgF9D3o8lWDmn1QVVMP0LZQGmNtqp1/cmou0XHdG/+sYeGZwFBqPCub8rkcvvAGvsi1VYarR8wAAAABJRU5ErkJggg==) 5 5,auto}.vue-ui-smiley-rated[data-v-826aeb05]{animation:vue-ui-smile-826aeb05 .3s ease-in-out;transform-origin:center}@keyframes vue-ui-smile-826aeb05{0%{transform:scale(.9)}50%{transform:scale(1.2)}75%{transform:scale(.95)}90%{transform:scale(1.1)}to{transform:scale(1)}}.vue-ui-dna *[data-v-ecead023]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-ecead023]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-ecead023]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-ecead023]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-ecead023]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-ecead023]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-relation-circle[data-v-ecead023]{position:relative}svg.relation-circle[data-v-ecead023]{background:transparent;overflow:visible;padding:12px}.vue-ui-relation-circle-plot[data-v-ecead023],.vue-ui-relation-circle-legend[data-v-ecead023]{cursor:pointer}path.vue-ui-relation-circle-selected[data-v-ecead023],line.vue-ui-relation-circle-selected[data-v-ecead023]{stroke-dasharray:var(--757ab141);stroke-dashoffset:var(--757ab141);animation:vue-ui-relation-circle-dash-ecead023 var(--43168ac0) linear forwards}@keyframes vue-ui-relation-circle-dash-ecead023{to{stroke-dashoffset:var(--14997682)}}.vue-ui-dna *[data-v-039f8c3f]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-039f8c3f]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-039f8c3f]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-039f8c3f]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-039f8c3f]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-039f8c3f]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-thermometer[data-v-039f8c3f]{position:relative}rect.vue-ui-thermometer-temperature[data-v-039f8c3f]{animation:vue-ui-thermometer-temp-039f8c3f var(--a66cecf0) ease-in-out;transform-origin:center}text.vue-ui-thermometer-temperature-value[data-v-039f8c3f]{opacity:0;animation:vue-ui-thermometer-value-039f8c3f var(--a66cecf0) ease-in-out forwards}@keyframes vue-ui-thermometer-value-039f8c3f{0%{opacity:0}to{opacity:1}}@keyframes vue-ui-thermometer-temp-039f8c3f{0%{height:var(--4ded9ff4);clip-path:url(#vueUiPill)}50%{height:calc(var(--15e1e31a) + 10px);clip-path:url(#vueUiPill)}60%{height:calc(var(--15e1e31a) - 5px);clip-path:url(#vueUiPill)}70%{height:calc(var(--15e1e31a) + 4px);clip-path:url(#vueUiPill)}80%{height:calc(var(--15e1e31a) - 3px);clip-path:url(#vueUiPill)}90%{height:calc(var(--15e1e31a) + 2px)}95%{height:calc(var(--15e1e31a) - 1px)}to{height:var(--15e1e31a)}}.vue-ui-sparkstackbar-legend[data-v-d42bde97]{display:flex;flex-wrap:wrap;column-gap:12px;width:calc(100% - 12px);padding:0 6px}.vue-ui-sparkstackbar-legend-item[data-v-d42bde97]{cursor:pointer;transition:opacity .2s ease-in-out}.vue-ui-sparkstackbar-legend-item-unselected[data-v-d42bde97]{opacity:.3}rect.animated[data-v-d42bde97]{transition:all .3s ease-in-out!important}.vue-ui-sparkhistogram-shape[data-v-d68a3308]{animation:expand-d68a3308 var(--5d53e3cb) ease-in forwards;transform-origin:center;transform:scaleY(0)}@keyframes expand-d68a3308{80%{transform:scaleY(1.1)}90%{transform:scaleY(.95)}95%{transform:scaleY(1.03)}to{transform:scale(1)}}.vue-ui-dna *[data-v-3ba8adca]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-3ba8adca]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-3ba8adca]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-3ba8adca]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-3ba8adca]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-3ba8adca]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-rings *[data-v-3ba8adca]{transition:unset}.vue-ui-rings[data-v-3ba8adca]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-rings-shadow[data-v-3ba8adca]{filter:drop-shadow(0 6px 12px rgba(0,0,0,.15))}.vue-ui-rings-blur[data-v-3ba8adca]{filter:blur(3px) opacity(50%) grayscale(100%);transition:all .15s ease-in-out}.vue-ui-rings-opacity[data-v-3ba8adca]{opacity:.3;transition:opacity .15s ease-in-out}.vue-ui-rings-item[data-v-3ba8adca]{transform:scale(0);animation:ring-appear-3ba8adca .5s ease-in forwards;transform-origin:bottom}@keyframes ring-appear-3ba8adca{0%{opacity:0;transform:scale(.8,.7)}60%{transform:scale(1.03,1.05)}80%{transform:scale(.98,.96)}90%{transform:scale(1.01,1.02)}to{opacity:1;transform:scale(1)}}.vue-ui-dna *[data-v-ae940f01]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-ae940f01]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-ae940f01]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-ae940f01]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-ae940f01]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-ae940f01]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-wheel *[data-v-ae940f01]{transition:unset}.vue-ui-wheel[data-v-ae940f01]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-tick-animated[data-v-ae940f01]{animation:animate-tick-ae940f01 .3s ease-in;transform-origin:center}@keyframes animate-tick-ae940f01{0%{stroke-width:8}80%{stroke-width:6}to{stroke-width:5}}.vue-ui-dna *[data-v-6a0368b4]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-6a0368b4]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-6a0368b4]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-6a0368b4]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-6a0368b4]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-6a0368b4]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-tiremarks *[data-v-6a0368b4]{transition:unset}.vue-ui-tiremarks[data-v-6a0368b4]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-tick-animated[data-v-6a0368b4]{animation:animate-tick-6a0368b4 .3s ease-in;transform-origin:center}@keyframes animate-tick-6a0368b4{0%{stroke-width:2;transform:scaleY(1.1)}to{stroke-width:initial;transform:scale(1)}}.vue-ui-dna *[data-v-5c182359]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-5c182359]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-5c182359]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-5c182359]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-5c182359]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-5c182359]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-donut-evolution *[data-v-5c182359]{transition:unset;transition:opacity .5s ease-in-out}.vue-ui-donut-evolution[data-v-5c182359]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-donut-evolution-focus[data-v-5c182359]{animation:donut-5c182359 .5s ease-in-out;transform-origin:center}.donut-hover[data-v-5c182359]{cursor:pointer}.donut-opacity[data-v-5c182359]{transition:opacity .2s ease-in-out}.donut-behind[data-v-5c182359]{opacity:.1}@keyframes donut-5c182359{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-dna *[data-v-f4230255]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-f4230255]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-f4230255]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-f4230255]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-f4230255]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-f4230255]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-mood-radar *[data-v-f4230255]{transition:unset}.vue-ui-mood-radar[data-v-f4230255]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-mood-radar-trap[data-v-f4230255]{transition:all .2s ease-in-out}.vue-ui-dna *[data-v-6320c0a1]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-6320c0a1]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-6320c0a1]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-6320c0a1]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-6320c0a1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-6320c0a1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-3d-bar *[data-v-6320c0a1]{transition:unset}.vue-ui-3d-bar[data-v-6320c0a1]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-3d-bar-stack[data-v-6320c0a1]{transition:opacity .2s ease-in-out}.vue-ui-donut-arc-path[data-v-6320c0a1]{animation:donut-6320c0a1 .5s ease-in-out;transform-origin:center}@keyframes donut-6320c0a1{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-dna *[data-v-27864854]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-27864854]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-27864854]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-27864854]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-27864854]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-27864854]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-molecule *[data-v-27864854]{transition:unset}.vue-ui-molecule[data-v-27864854]{-webkit-user-select:none;user-select:none;position:relative}path.onion-animated[data-v-baedef4c]{stroke-dasharray:0;stroke-dashoffset:0;animation:onion-groove-baedef4c infinite cubic-bezier(.53,.15,.57,.93) 3s}@keyframes onion-groove-baedef4c{0%{stroke-dasharray:160;stroke-dashoffset:-140;filter:blur(0px)}to{stroke-dasharray:160;stroke-dashoffset:0;filter:var(--735c55ae)}}path.line-animated[data-v-baedef4c]{stroke-dasharray:0;stroke-dashoffset:0;animation:line-funk-baedef4c infinite cubic-bezier(.53,.15,.57,.93) 3s}@keyframes line-funk-baedef4c{0%{stroke-dasharray:300;stroke-dashoffset:300;filter:blur(0px)}to{stroke-dasharray:300;stroke-dashoffset:100;filter:var(--97047cc2)}}path.bar-animated[data-v-baedef4c]{stroke-dasharray:0;stroke-dashoffset:0;animation:bar-jazz-baedef4c infinite cubic-bezier(.53,.15,.57,.93) 3s}@keyframes bar-jazz-baedef4c{0%{stroke-dasharray:60;stroke-dashoffset:60;filter:blur(0px)}to{stroke-dasharray:60;stroke-dashoffset:0;filter:var(--18e2e376)}}.vue-ui-dna *[data-v-b1953ca5]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-b1953ca5]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-b1953ca5]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-b1953ca5]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-b1953ca5]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-b1953ca5]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-nested-donuts *[data-v-b1953ca5]{transition:unset}.vue-ui-nested-donuts[data-v-b1953ca5]{-webkit-user-select:none;user-select:none;position:relative}.animated[data-v-b1953ca5]{animation:donut-b1953ca5 .5s ease-in-out;transform-origin:center}@keyframes donut-b1953ca5{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-nested-donuts-legend[data-v-b1953ca5]{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.vue-ui-nested-donuts-legend-title[data-v-b1953ca5]{width:100%;padding:0 0 12px}@keyframes vue-ui-sparkgauge-animation{0%{stroke-dashoffset:169.5;opacity:-1}}.vue-ui-galaxy *[data-v-9506f47c]{transition:unset}.vue-ui-galaxy[data-v-9506f47c]{-webkit-user-select:none;user-select:none;position:relative}path[data-v-9506f47c]{animation:galaxy-9506f47c .5s ease-in-out;transform-origin:center;transition:stroke-width .1s ease-in-out!important}@keyframes galaxy-9506f47c{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-galaxy .vue-ui-galaxy-label[data-v-9506f47c]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-dna *[data-v-9506f47c]{animation:none!important}.vue-ui-galaxy-blur[data-v-9506f47c]{filter:blur(3px) opacity(50%) grayscale(100%);transition:all .15s ease-in-out}.vue-data-ui-fullscreen--on[data-v-9506f47c]{height:80%!important;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-9506f47c]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-9506f47c]{overflow:auto}.vue-ui-dna *[data-v-320aaf03]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-320aaf03]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-320aaf03]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-320aaf03]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-320aaf03]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-320aaf03]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-treemap *[data-v-320aaf03]{transition:unset}.vue-ui-treemap[data-v-320aaf03]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-treemap-cell-default[data-v-320aaf03]{text-align:left}.vue-ui-treemap-cell[data-v-320aaf03],.vue-ui-treemap-cell-foreignObject[data-v-320aaf03]{pointer-events:none}.vue-ui-treemap-rect[data-v-320aaf03]{transition:all .2s ease-in-out}.vue-ui-treemap-zoom-info[data-v-320aaf03]{pointer-events:none;position:absolute;top:0;left:0;height:100%;width:100%;display:flex;align-items:center;justify-content:center}.vue-ui-treemap-cell-zoom[data-v-320aaf03]{animation:zoom-cell-320aaf03 .2s ease-in forwards!important;transform-origin:center}@keyframes zoom-cell-320aaf03{0%{transform:scale(.8);opacity:0;filter:drop-shadow(0px 12px 12px black)}to{transform:scale(1);opacity:1}}.vue-ui-table-heatmap[data-v-e4473413]{position:relative;border-collapse:collapse}.vue-ui-table-heatmap th[data-v-e4473413],.vue-ui-table-heatmap tr[data-v-e4473413],.vue-ui-table-heatmap td[data-v-e4473413]{border:var(--2cc4a8a2) solid var(--0b1cbb0a)}.vue-ui-responsive th[data-v-e4473413]{display:none}.vue-ui-responsive td[data-v-e4473413]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive td[data-v-e4473413]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-e4473413]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-e4473413]:before{content:attr(data-cell) ": "}summary[data-v-566dbe74]{-webkit-user-select:none;user-select:none;cursor:pointer}details[data-v-566dbe74]{overflow:hidden}details>summary[data-v-566dbe74]{list-style:none}.vue-ui-accordion-head[data-v-566dbe74]{display:flex;flex-direction:row;gap:6px}.vue-ui-accordion-arrow[data-v-566dbe74]{display:flex;place-items:center;justify-content:center;width:fit-content;transform:rotate(0);transition:transform .3s ease-in-out;transform-origin:center}details[open]>summary .vue-ui-accordion-arrow[data-v-566dbe74]{transform:rotate(90deg)}details summary[data-v-566dbe74]::-webkit-details-marker{display:none}div.vue-ui-accordion-content[data-v-566dbe74]{opacity:0;box-sizing:border-box;max-height:0;overflow:hidden;transition:max-height .4s ease-out,opacity .4s ease-out}details[open]+div.vue-ui-accordion-content[data-v-566dbe74]{max-height:var(--d99499b4);transition:max-height 1s ease-out,opacity 1s ease-out;opacity:1}details[open] span[data-v-566dbe74]:before{rotate:90deg;transition:rotate .2s ease-out}.vue-ui-dna *[data-v-09906c9e]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-09906c9e]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-09906c9e]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-09906c9e]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-09906c9e]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-09906c9e]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-quick-chart *[data-v-09906c9e]{transition:unset}.vue-ui-quick-chart[data-v-09906c9e]{-webkit-user-select:none;user-select:none;width:100%}.vue-ui-quick-chart-not-processable[data-v-09906c9e]{align-items:center;background:rgba(255,0,0,.1);border-radius:6px;color:red;display:flex;flex-direction:row;gap:12px;justify-content:center;padding:12px}.vue-ui-quick-chart-title[data-v-09906c9e]{padding:0 40px 12px}.vue-ui-quick-chart-legend[data-v-09906c9e]{align-items:center;display:flex;column-gap:24px;justify-content:center;width:100%;flex-wrap:wrap}.vue-ui-quick-chart-legend-item[data-v-09906c9e]{display:flex;flex-direction:flex-row;gap:6px;align-items:center}.quick-animation[data-v-09906c9e]{animation:quick-09906c9e .5s ease-in-out;transform-origin:center}@keyframes quick-09906c9e{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.rotating-circles[data-v-c7b54730]{transform-origin:center;animation:rotateCircles-c7b54730 2s infinite linear}@keyframes rotateCircles-c7b54730{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.circle-wave[data-v-c7b54730]{animation:circleWave-c7b54730 1s cubic-bezier(0,1.01,1,1);transform-origin:center}@keyframes circleWave-c7b54730{0%{transform:scale(1);opacity:1}to{transform:scale(20);opacity:0}}.vue-ui-spark-trend *[data-v-54d6c322]{transition:unset}.vue-ui-dna *[data-v-0de0b8a1]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-0de0b8a1]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-0de0b8a1]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-0de0b8a1]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-0de0b8a1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-0de0b8a1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-strip-plot[data-v-0de0b8a1]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-strip-plot-animated *{transition-property:cy,opacity;transition-duration:.3s}.vue-ui-strip-plot-select-circle *{transition:all .1s ease-in-out!important}.vue-ui-dna *[data-v-1411b02e]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-1411b02e]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-1411b02e]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-1411b02e]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-1411b02e]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-1411b02e]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-dumbbell *[data-v-1411b02e]{transition:unset}.vue-ui-dumbbell[data-v-1411b02e]{-webkit-user-select:none;user-select:none;position:relative}
|
|
1
|
+
.vue-ui-data-table thead[data-v-2cdad199]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}table[data-v-2cdad199]{width:100%;padding:1rem;border-collapse:collapse}caption[data-v-2cdad199],th[data-v-2cdad199],td[data-v-2cdad199]{padding:.5rem;font-variant-numeric:tabular-nums}caption[data-v-2cdad199]{font-size:1.3rem;font-weight:700}.vue-ui-responsive th[data-v-2cdad199]{display:none}.vue-ui-responsive td[data-v-2cdad199]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-2cdad199]{outline:var(--4f04048e)}.vue-ui-responsive td[data-v-2cdad199]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-2cdad199]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-2cdad199]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}.vue-data-ui-tooltip{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;position:fixed;padding:12px;z-index:2}.vue-data-ui-custom-tooltip{position:fixed;z-index:2}svg *[data-v-f6f2c975]{all:unset}.spin[data-v-f6f2c975]{animation:smartspin-f6f2c975 .5s infinite linear}@keyframes smartspin-f6f2c975{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.vue-ui-user-options[data-v-f6a4f6c7]{z-index:1}.vue-ui-user-options-drawer[data-open=false][data-v-f6a4f6c7]{display:none}.vue-ui-user-options-drawer[data-open=true][data-v-f6a4f6c7]{position:absolute;right:4px;top:36px;display:flex;flex-direction:column;gap:4px;animation:show-user-options-f6a4f6c7 125ms ease-in forwards;transform-origin:top;opacity:0;border-radius:0 0 3px 3px;box-shadow:0 6px 12px -6px #0000004d}@keyframes show-user-options-f6a4f6c7{0%{opacity:0;transform:translateY(-6px) scaleY(.95)}to{opacity:1;transform:translateY(0) scale(1)}}.vue-ui-user-options-closing[data-v-f6a4f6c7]{animation:close-user-options-f6a4f6c7 125ms ease-out;transform-origin:top;opacity:1}@keyframes close-user-options-f6a4f6c7{0%{opacity:1;transform:translateY(0) scale(1)}to{opacity:0;transform:translateY(-6px) scaleY(.95)}}.vue-ui-user-options-button[data-v-f6a4f6c7]{all:unset;padding:0 3px;border-radius:3px;height:30px;border:1px solid transparent;background:inherit;display:flex;align-items:center;justify-content:center;width:fit-content;cursor:pointer}.vue-ui-user-options-button[data-v-f6a4f6c7]:hover{background:rgba(0,0,0,.05)!important}.vue-ui-user-options-button[data-v-f6a4f6c7]:focus-visible{outline:1px solid #CCCCCC}.vue-ui-skeleton-animated[data-v-030db148]{animation:skeleton-animate-030db148 1.62s infinite linear}@keyframes skeleton-animate-030db148{0%{opacity:.3}50%{opacity:1}to{opacity:.3}}.vue-ui-sparkline *[data-v-2f2fada1]{transition:unset}.vue-ui-data-table thead[data-v-cbe7694d]{position:sticky;top:0;-webkit-user-select:none;user-select:none}table[data-v-cbe7694d]{width:100%;padding:1rem;border-collapse:collapse}caption[data-v-cbe7694d],th[data-v-cbe7694d],td[data-v-cbe7694d]{padding:.5rem;font-variant-numeric:tabular-nums}th[data-v-cbe7694d],td[data-v-cbe7694d]{white-space:nowrap}.sticky-col[data-v-cbe7694d]{position:-webkit-sticky;position:sticky;width:100px;min-width:100px;right:0}.sticky-col-first[data-v-cbe7694d]{position:-webkit-sticky;position:sticky;width:100px;min-width:100px;left:0}.vue-ui-responsive .sticky-col[data-v-cbe7694d],.vue-ui-responsive .sticky-col-first[data-v-cbe7694d]{position:initial;width:initial;min-width:initial;left:initial;right:initial}.vue-ui-responsive th[data-v-cbe7694d]{display:none}.vue-ui-responsive td[data-v-cbe7694d]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-cbe7694d]{outline:var(--202ddaf6)}.vue-ui-responsive td[data-v-cbe7694d]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-cbe7694d]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-cbe7694d]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}.vue-data-ui-slicer[data-v-903c5f74]{position:relative;display:flex;flex-direction:column;gap:12px;padding:0 24px;margin-bottom:24px}.vue-data-ui-slicer-knobs[data-v-903c5f74]{position:relative;width:calc(100% - 48px);margin:0 auto;height:12px}input[type=range][data-v-903c5f74]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;outline:none;position:absolute;margin:auto;top:0;bottom:0;left:0;background-color:transparent;pointer-events:none}.vue-data-ui-slicer-track[data-v-903c5f74]{width:100%;height:5px;position:absolute;margin:auto;top:0;bottom:0;border-radius:5px;background:var(--6d95d510)}input[type=range][data-v-903c5f74]::-webkit-slider-runnable-track{-webkit-appearance:none;height:5px}input[type=range][data-v-903c5f74]::-moz-range-track{-moz-appearance:none;height:5px}input[type=range][data-v-903c5f74]::-ms-track{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:5px}input[type=range][data-v-903c5f74]::-webkit-slider-thumb{-webkit-appearance:none;height:1.3em;width:1.3em;background-color:var(--6d95d510);cursor:pointer;margin-top:-6px;pointer-events:auto;border-radius:50%;border:1px solid var(--8dd148ac)}input[type=range][data-v-903c5f74]::-moz-range-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:1.3em;width:1.3em;cursor:pointer;border-radius:50%;background-color:var(--6d95d510);pointer-events:auto}input[type=range][data-v-903c5f74]::-ms-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:1.3em;width:1.3em;cursor:pointer;border-radius:50%;background-color:var(--6d95d510);pointer-events:auto}input[type=range][data-v-903c5f74]:active::-webkit-slider-thumb{background-color:var(--6d95d510);border:2px solid var(--8dd148ac)}.vue-data-ui-refresh-button[data-v-903c5f74]{outline:none;border:none;background:transparent;height:36px;width:36px;display:flex;align-items:center;justify-content:center;border-radius:50%;cursor:pointer;transition:transform .2s ease-in-out}.vue-data-ui-refresh-button[data-v-903c5f74]:focus{outline:1px solid var(--6d95d510)}.vue-data-ui-refresh-button[data-v-903c5f74]:hover{transform:rotate(-90deg)}.vue-data-ui-slicer-labels[data-v-903c5f74]{display:flex;flex-direction:row;align-items:center;padding:0 24px;height:40px}.vue-data-ui-slicer-label-left[data-v-903c5f74],.vue-data-ui-slicer-label-right[data-v-903c5f74]{width:100%}.vue-data-ui-slicer-label-left[data-v-903c5f74]{text-align:left}.vue-data-ui-slicer-label-right[data-v-903c5f74]{text-align:right}.vue-ui-dna *[data-v-5507e445]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-5507e445]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-5507e445]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-5507e445]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-5507e445]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-5507e445]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-xy *[data-v-5507e445]{transition:unset}path[data-v-5507e445],line[data-v-5507e445],rect[data-v-5507e445]{animation:xyAnimation-5507e445 .5s ease-in-out;transform-origin:center}@keyframes xyAnimation-5507e445{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-xy[data-v-5507e445]{position:relative}.vue-ui-xy-legend[data-v-5507e445]{align-items:center;column-gap:24px;display:flex;flex-wrap:wrap;justify-content:center;-webkit-user-select:none;user-select:none;width:100%}.vue-ui-xy-legend-item[data-v-5507e445]{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:5px;cursor:pointer}.vue-ui-xy-legend-item-segregated[data-v-5507e445]{opacity:.5}.vue-ui-xy-title[data-v-5507e445]{align-items:center;display:flex;flex-direction:column;justify-content:center;width:100%}.vue-ui-xy svg rect[data-v-5507e445]{transition:all .11s ease-in-out}canvas[data-v-5507e445]{width:100%;object-fit:contain}.vue-ui-table-main[data-v-eca448e3]{height:fit-content;padding:0 0 98px;position:relative}.vue-ui-table__wrapper[data-v-eca448e3]{overflow-x:auto;padding:0 12px 48px;position:relative;width:calc(100% - 24px)}.vue-ui-table-main thead[data-v-eca448e3]{position:sticky;top:0}.vue-ui-table[data-v-eca448e3]{width:100%;position:relative}.vue-ui-table-main table[data-v-eca448e3]{border-collapse:collapse}.vue-ui-table-main th[data-v-eca448e3],.vue-ui-table-main td[data-v-eca448e3]{padding:3px 8px}.vue-ui-table-main tr td[data-v-eca448e3]{outline:1px solid white}.vue-ui-table-main .th-numeric[data-v-eca448e3]{text-align:right;font-variant-numeric:tabular-nums}.vue-ui-table-main .th-filter[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:6px;justify-content:center;position:relative}.vue-ui-table-main button[data-v-eca448e3]{align-items:center;cursor:pointer;display:flex;justify-content:center;width:32px}.vue-ui-table-main input[data-v-eca448e3]{padding:0 6px;font-family:Satoshi}.vue-ui-table-main button[data-v-eca448e3],.vue-ui-table-main input[data-v-eca448e3]{border-radius:6px;height:32px}.vue-ui-table-main button[data-v-eca448e3]{border:1px solid grey}.vue-ui-table-main button[data-v-eca448e3]:hover,.vue-ui-table-main button[data-v-eca448e3]:focus,.vue-ui-table-main input[data-v-eca448e3]:hover,.vue-ui-table-main input[data-v-eca448e3]:focus{outline:3px solid rgba(128,128,128,.432)}.vue-ui-table-main button.clicked[data-v-eca448e3]{animation:clicked-eca448e3 .15s ease-in-out}.vue-ui-table-main button[disabled][data-v-eca448e3]{cursor:not-allowed}.vue-ui-table-main button[disabled][data-v-eca448e3]:focus,.vue-ui-table-main button[disabled][data-v-eca448e3]:hover{outline:none}button.th-reset[data-v-eca448e3]:not(:disabled){background:radial-gradient(at top,#f19a71,#F17171);border:1px solid #F17171;color:#fff}.vue-ui-table-main button.th-reset[data-v-eca448e3]:not(:disabled):hover,.vue-ui-table-main button.th-reset[data-v-eca448e3]:not(:disabled):focus{outline:3px solid #f171717e}.vue-ui-table-main [data-is-open=false][data-v-eca448e3]{transform:scale(0)}.vue-ui-table-main .th-dropdown[data-is-open=true][data-v-eca448e3]{animation:open-dropdown-eca448e3 .2s ease-in}.vue-ui-table-main .th-dropdown[data-is-open=false][data-v-eca448e3]{animation:close-dropdown-eca448e3 .2s ease-in}.vue-ui-table-main .th-dropdown[data-v-eca448e3]{align-items:center;border-radius:8px;border:1px solid white;box-shadow:0 6px 12px -6px #00000080;display:flex;flex-direction:column;justify-content:flex-start;left:0;max-width:300px;min-width:150px;padding:24px 12px 12px;position:absolute;top:calc(100% + 12px)}.vue-ui-table-main .th-option[data-v-eca448e3]{border-radius:6px;cursor:pointer;padding:2px 6px;text-align:left;-webkit-user-select:none;user-select:none;width:100%;font-weight:400}.vue-ui-table-main .th-option[data-v-eca448e3]:hover{background-color:#ffffff1a;box-shadow:0 3px 6px -3px #00000080;z-index:1}.vue-ui-table-main button.close-dropdown[data-v-eca448e3],.vue-ui-table-main button.close-chart-modal[data-v-eca448e3]{align-items:center;border-radius:50%;border:none;display:flex;height:20px;padding:2px;position:absolute;right:6px;top:6px;width:20px}.vue-ui-table-main button.close-dropdown[data-v-eca448e3]:hover,.vue-ui-table-main button.close-dropdown[data-v-eca448e3]:focus,.vue-ui-table-main button.close-chart-modal[data-v-eca448e3]:hover,.vue-ui-table-main button.close-char-modal[data-v-eca448e3]:focus{outline:3px solid #2d353c71}.vue-ui-table-main .th-button-active[data-v-eca448e3]{background:radial-gradient(at top,#968bf1,#6376DD);color:#fff}.vue-ui-table-main .th-button-active[data-v-eca448e3]:hover,.vue-ui-table-main .th-button-active[data-v-eca448e3]:focus{outline:3px solid #6375dd7a}.vue-ui-table-main .th-date[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:6px;justify-content:center;width:100%}.vue-ui-table-main .date-wrapper--inputs[data-v-eca448e3]{align-items:center;display:flex;flex-direction:column;gap:6px;justify-content:center;width:100%}.vue-ui-table-main .date-wrapper--button[data-v-eca448e3]{display:flex;gap:3px}.vue-ui-table-main input[type=date][data-v-eca448e3]{border-radius:4px;font-size:12px;font-variant-numeric:tabular-nums;height:20px!important;width:100px}.vue-ui-table-main .date-fieldset[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:6px;justify-content:center;width:100%}.vue-ui-table-main .date-fieldset label[data-v-eca448e3]{font-size:12px;font-weight:400}@keyframes clicked-eca448e3{0%{transform:scale(.9)}90%{transform:scale(1.03)}to{transform:scale(1)}}.vue-ui-table-main td.td-numeric[data-v-eca448e3]{cursor:pointer}.vue-ui-table-main .td-selector-info[data-v-eca448e3]{align-items:center;border-radius:0 0 6px 6px;bottom:76px;display:flex;font-size:14px;justify-content:flex-end;min-height:20px;padding:2px 4px 2px 2px;position:absolute;right:0;text-align:right;width:100%;z-index:1}.vue-ui-table-main button.td-selector-info-reset[data-v-eca448e3]{background:transparent;border:none;color:#f17171;height:14px;margin-left:24px;padding:0;width:14px}.vue-ui-table-main button.td-selector-info-reset[data-v-eca448e3]:hover,.vue-ui-table-main button.td-selector-info-reset[data-v-eca448e3]:focus{outline:3px solid #f171717e}.vue-ui-table-main .format-num[data-v-eca448e3]{font-variant-numeric:tabular-nums}.vue-ui-table-main .td-selector-icon[data-v-eca448e3]{margin-bottom:-5px;margin-right:6px}.vue-ui-table-main .vue-ui-table-pagination[data-v-eca448e3]{align-items:center;bottom:24px;display:flex;flex-direction:row;gap:12px;height:40px;justify-content:center;position:absolute;width:100%;z-index:1}.vue-ui-table-main button.vue-ui-table-navigation[data-v-eca448e3]{height:36px;padding:1px;width:36px}.vue-ui-table-main .vue-ui-table-navigation-indicator[data-v-eca448e3]{border-radius:6px;bottom:70px;height:6px;position:absolute;transition:all .1s ease-in-out}.vue-ui-table-main .vue-ui-table-page-scroller-wrapper[data-v-eca448e3]{align-items:center;display:flex;flex-direction:column;justify-content:center}.vue-ui-table-main input.vue-ui-table-page-scroller[data-v-eca448e3]{cursor:pointer;height:24px;padding:0}.vue-ui-table-main .vue-ui-table-paginator[data-v-eca448e3]{position:absolute;bottom:0;z-index:2;left:12px;display:flex;flex-direction:row;gap:6px;font-size:14px;justify-content:center;align-items:center;width:calc(100% - 24px)}.vue-ui-table-main .vue-ui-table-paginator select[data-v-eca448e3]{border-radius:3px}.vue-ui-table-main .vue-ui-table-size-warning[data-v-eca448e3]{align-items:center;bottom:-24px;color:#f17171;display:flex;flex-direction:row;flex-wrap:wrap;font-size:12px;gap:6px;justify-content:center;position:absolute;text-align:center;width:100%}.vue-ui-table-main th.vue-ui-table-col-selector[data-v-eca448e3]{height:12px}.vue-ui-table-main .col-selector[data-v-eca448e3]{align-items:center;cursor:pointer;display:flex;height:100%;justify-content:center;width:100%}.vue-ui-table-main th.col-selector--selected[data-v-eca448e3]{background:radial-gradient(at top left,#9586eb,#6376DD);color:#fff}.vue-ui-table-main th.col-selector--selected div[data-v-eca448e3]{background:transparent;color:#fff}.vue-ui-table-main .vue-ui-table-chart-modal[data-v-eca448e3]{align-items:center;border-radius:8px;border:1px solid white;box-shadow:0 6px 12px -6px #0000004d;display:flex;flex-direction:column;justify-content:center;min-height:200px;min-width:300px;max-width:800px;overflow:hidden;padding:12px;position:fixed;resize:horizontal;-webkit-user-select:none;user-select:none;z-index:10000}.vue-ui-table-main .vue-ui-table-chart-svg[data-v-eca448e3]{border-radius:6px;margin-bottom:12px;overflow:visible;padding:12px;width:calc(100% - 24px)}.vue-ui-table-main .vue-ui-table-donut-chart[data-v-eca448e3]{border-radius:6px}.vue-ui-table-main td.vue-ui-table-td-iteration[data-v-eca448e3]{font-size:12px;font-variant-numeric:tabular-nums;text-align:right;-webkit-user-select:none;user-select:none}.vue-ui-table-main .chart-trend[data-v-eca448e3]{font-size:12px;padding-left:12px}.vue-ui-table-main .chart-modal-options[data-v-eca448e3]{bottom:12px;display:flex;flex-direction:row;gap:8px;position:absolute;right:24px}.vue-ui-table-main .chart-modal-options button[data-v-eca448e3]{height:24px;padding:3px;width:24px}.vue-ui-table-main .th-range-filter[data-v-eca448e3]{display:flex;align-items:center;justify-content:center;gap:2px;flex-direction:column}.vue-ui-table-main .th-range-filter input[data-v-eca448e3]{height:20px;width:60px;font-variant-numeric:tabular-nums;font-size:12px}.vue-ui-table-main .th-range-filter label[data-v-eca448e3]{font-size:12px;font-weight:400;margin-bottom:-3px}.vue-ui-table-main .vue-ui-table-fieldset-wrapper[data-v-eca448e3]{display:flex;flex-direction:row;flex-wrap:wrap;gap:24px;margin-bottom:12px}.vue-ui-table-main .vue-ui-table-fieldset[data-v-eca448e3]{border-radius:6px;margin-bottom:24px;border:1px solid white}.vue-ui-table-main .vue-ui-table-fieldset legend[data-v-eca448e3]{color:gray}.vue-ui-table-main .vue-ui-table-fieldset-option[data-v-eca448e3]{display:flex;align-items:center}.vue-ui-table-main .vue-ui-table-fieldset-option input[data-v-eca448e3]{height:14px;width:14px;border-radius:50%}.vue-ui-table-main button.vue-ui-table-generate-donut[data-v-eca448e3]{align-items:center;display:flex;gap:3px;justify-content:center;margin:24px auto 12px;padding-left:12px;padding-right:12px;width:fit-content}.vue-ui-table-main button.vue-ui-table-generate-donut[disabled][data-v-eca448e3]{opacity:.5}.vue-ui-table-main .vue-ui-table-donut-legend[data-v-eca448e3]{align-items:center;column-gap:12px;display:flex;flex-wrap:wrap;font-size:12px;justify-content:center;margin:0 auto;max-width:400px;padding-bottom:36px}.vue-ui-table-main .vue-ui-table-donut-legend-item[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:3px;justify-content:center}.vue-ui-table-main .vue-ui-table-donut-label[data-v-eca448e3]{align-items:center;display:flex;flex-direction:column;font-size:4px;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-table-main .vue-ui-table-donut-label-name[data-v-eca448e3]{font-size:3px;line-height:3px}.vue-ui-table-main td[data-v-eca448e3]:focus{outline:3px solid #202d7470}.vue-ui-table-main .vue-ui-table-export-hub[data-v-eca448e3]{left:5px;position:absolute;top:0;z-index:1001}.vue-ui-table-main .vue-ui-table-export-hub-dropdown[data-v-eca448e3]{position:absolute;top:40px;left:0;padding:24px;border-radius:8px;border:1px solid white;box-shadow:0 6px 12px -6px #00000080;transform:scale(0);opacity:0}.vue-ui-table-main .vue-ui-table-export-hub-dropdown[data-is-open=true][data-v-eca448e3]{animation:open-dropdown-eca448e3 .2s ease-in forwards}.vue-ui-table-main .vue-ui-table-export-hub-dropdown[data-is-open=false][data-v-eca448e3]{animation:close-dropdown-eca448e3 .2s ease-in}.vue-ui-table-main .vue-ui-table-export-hub-options[data-v-eca448e3]{margin-top:12px;display:flex;flex-direction:column;gap:12px;align-items:center;justify-content:center}.vue-ui-table-main .vue-ui-table-export-hub-options button[data-v-eca448e3]{width:fit-content;display:flex;align-items:center;justify-content:center;gap:3px;min-width:130px}.vue-ui-table-main .vue-ui-table-export-hub-option-wrapper[data-v-eca448e3]{align-items:center;display:flex;flex-direction:row;gap:12px;justify-content:flex-start}.vue-ui-table-main .vue-ui-table-export-hub-option-wrapper .label[data-v-eca448e3]{font-size:12px;line-height:12px;margin-bottom:6px;width:100px}.vue-ui-table-main .td-nan[data-v-eca448e3]{background:#F17171}.vue-ui-table-main .td-has-nan[data-v-eca448e3],.vue-ui-table-main .th-has-nan[data-v-eca448e3]{background:#F17171;min-width:100px;color:#fff}@keyframes open-dropdown-eca448e3{0%{transform:scaleY(.9);opacity:0}50%{transform:scaleY(1.05);opacity:1}to{transform:scale(1);opacity:1}}@keyframes close-dropdown-eca448e3{0%{transform:scale(1.05);opacity:1}to{transform:scale(0);opacity:0}}.vue-data-ui-legend[data-v-a5a45422]{-webkit-user-select:none;user-select:none;height:fit-content;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-data-ui-legend-item[data-v-a5a45422]{-webkit-user-select:none;user-select:none;display:flex;align-items:center;gap:6px;cursor:pointer;height:fit-content;text-align:left}.vue-ui-dna *[data-v-764d25f6]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-764d25f6]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-764d25f6]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-764d25f6]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-764d25f6]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-764d25f6]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-donut *[data-v-764d25f6]{transition:unset}.vue-ui-donut[data-v-764d25f6]{-webkit-user-select:none;user-select:none;position:relative}.animated[data-v-764d25f6]{animation:donut-764d25f6 .5s ease-in-out;transform-origin:center}@keyframes donut-764d25f6{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-donut .vue-ui-donut-label[data-v-764d25f6]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-donut-datalabel-slot[data-v-764d25f6]{width:100%;height:-webkit-fit-content;height:fit-content}.vue-ui-donut-datalabel-slot-not-safari[data-v-764d25f6]{position:absolute;top:0;transform:translateY(-50%)}.vue-ui-dna *[data-v-4015bb55]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-4015bb55]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-4015bb55]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-4015bb55]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-4015bb55]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-4015bb55]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-waffle *[data-v-4015bb55]{transition:unset}.vue-ui-waffle[data-v-4015bb55]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-waffle .vue-ui-waffle-label[data-v-4015bb55]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-dna *[data-v-6f2ff1dc]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-6f2ff1dc]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-6f2ff1dc]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-6f2ff1dc]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-6f2ff1dc]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-6f2ff1dc]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-radar *[data-v-6f2ff1dc]{transition:unset}path[data-v-6f2ff1dc],line[data-v-6f2ff1dc],rect[data-v-6f2ff1dc],circle[data-v-6f2ff1dc]{animation:xyAnimation-6f2ff1dc .5s ease-in-out!important;transform-origin:center}@keyframes xyAnimation-6f2ff1dc{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-radar[data-v-6f2ff1dc]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-radar .vue-ui-radar-label[data-v-6f2ff1dc]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}polygon[data-v-6f2ff1dc]{transform-origin:center}.animated-in[data-v-6f2ff1dc]{animation:animatedIn-6f2ff1dc .3s cubic-bezier(0,1.01,1,1) forwards}@keyframes animatedIn-6f2ff1dc{0%{transform:scale(0)}80%{transform:scale(1.05)}to{transform:scale(1)}}.animated-out[data-v-6f2ff1dc]{animation:animatedOut-6f2ff1dc .3s cubic-bezier(0,1.01,1,1) forwards}@keyframes animatedOut-6f2ff1dc{0%{transform:scale(1)}to{transform:scale(0)}}.vue-ui-dna *[data-v-41fd946c]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-41fd946c]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-41fd946c]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-41fd946c]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-41fd946c]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-41fd946c]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-quadrant *[data-v-41fd946c]{transition:unset}.vue-ui-quadrant[data-v-41fd946c]{-webkit-user-select:none;user-select:none;position:relative}path[data-v-41fd946c],line[data-v-41fd946c],rect[data-v-41fd946c],circle[data-v-41fd946c],polygon[data-v-41fd946c]{animation:quadrantAnimation-41fd946c .5s ease-in-out;transform-origin:center}@keyframes quadrantAnimation-41fd946c{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-quadrant .vue-ui-quadrant-label[data-v-41fd946c]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-quadrant-mini-map-cell[data-v-41fd946c],.vue-ui-quadrant-mini-map-cell-selectable[data-v-41fd946c],.vue-ui-quadrant-minimap-crosshairs[data-v-41fd946c]{animation:none!important;transition:opacity .15s ease-in-out}.vue-ui-quadrant-mini-map-cell[data-v-41fd946c]:hover{stroke:#fff;stroke-width:1px}.vue-ui-quadrant-mini-map-cell-selectable[data-v-41fd946c]:hover{opacity:.5!important}.vue-ui-dna *[data-v-63b08535]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-63b08535]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-63b08535]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-63b08535]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-63b08535]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-63b08535]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-gauge *[data-v-63b08535]{transition:unset}.vue-ui-gauge[data-v-63b08535]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-gauge .vue-ui-gauge-label[data-v-63b08535]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-gauge-legend[data-v-63b08535]{height:100%;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-ui-gauge-legend-item[data-v-63b08535]{display:flex;align-items:center;justify-content:center;gap:6px;cursor:pointer;height:24px}.vue-ui-gauge-tooltip[data-v-63b08535]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-dna *[data-v-8fc77f09]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-8fc77f09]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-8fc77f09]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-8fc77f09]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-8fc77f09]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-8fc77f09]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-chestnut *[data-v-8fc77f09]{transition:unset}.vue-ui-chestnut[data-v-8fc77f09]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-chestnut .vue-ui-chestnut-label[data-v-8fc77f09]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-chestnut-legend[data-v-8fc77f09]{height:100%;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-ui-chestnut-legend-item[data-v-8fc77f09]{display:flex;align-items:center;justify-content:center;gap:6px;cursor:pointer;height:24px}.vue-ui-chestnut-tooltip[data-v-8fc77f09]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-chestnut-animated[data-v-8fc77f09]{opacity:0;animation:chestnut-opacity-8fc77f09 .2s ease-in-out forwards}@keyframes chestnut-opacity-8fc77f09{0%{transform:scaleX(.98);opacity:0}to{transform:scale(1);opacity:1}}.vue-ui-chestnut-table[data-v-8fc77f09]{width:100%;max-height:300px;overflow:auto;margin-top:24px;position:relative}.vue-ui-data-table thead[data-v-8fc77f09]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}table[data-v-8fc77f09]{width:100%;padding:1rem;border-collapse:collapse;overflow-x:auto}caption[data-v-8fc77f09],th[data-v-8fc77f09],td[data-v-8fc77f09]{padding:.5rem;font-variant-numeric:tabular-nums}caption[data-v-8fc77f09]{font-size:1.3rem;font-weight:700}.vue-ui-responsive th[data-v-8fc77f09]{display:none}.vue-ui-responsive td[data-v-8fc77f09]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-8fc77f09]{outline:var(--178057cf)}.vue-ui-responsive td[data-v-8fc77f09]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-8fc77f09]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-8fc77f09]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}path[data-v-8fc77f09],circle[data-v-8fc77f09],rect[data-v-8fc77f09],text[data-v-8fc77f09],line[data-v-8fc77f09]{transition:opacity .3s ease-in-out!important}.vue-ui-dna *[data-v-58878cd4]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-58878cd4]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-58878cd4]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-58878cd4]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-58878cd4]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-58878cd4]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-onion *[data-v-58878cd4]{transition:unset}.vue-ui-onion[data-v-58878cd4]{-webkit-user-select:none;user-select:none;position:relative}circle[data-v-58878cd4]{animation:xyAnimation-58878cd4 .5s ease-in-out;transform-origin:center;transition:all .3s ease-in-out!important}@keyframes xyAnimation-58878cd4{0%{transform:scale(.9) rotate(-90g);opacity:0}80%{transform:scale(1.02) rotate(-90deg);opacity:1}to{transform:scale(1) rotate(-90deg);opacity:1}}.vue-ui-onion .vue-ui-onion-label[data-v-58878cd4]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-onion-tooltip[data-v-58878cd4]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-onion table[data-v-58878cd4]{width:100%;border-collapse:collapse}.vue-ui-onion table td[data-v-58878cd4]{text-align:right;padding-right:6px;font-variant-numeric:tabular-nums}.vue-ui-onion table th[data-v-58878cd4]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}.vue-ui-onion-blur[data-v-58878cd4]{filter:blur(3px) opacity(50%) grayscale(100%);transition:all .15s ease-in-out}.vue-ui-dna *[data-v-8fda0c95]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-8fda0c95]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-8fda0c95]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-8fda0c95]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-8fda0c95]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-8fda0c95]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-vertical-bar *[data-v-8fda0c95]{transition:unset}path[data-v-8fda0c95],line[data-v-8fda0c95],rect[data-v-8fda0c95],circle[data-v-8fda0c95],polygon[data-v-8fda0c95]{animation:verticalBarAnimation-8fda0c95 .5s ease-in-out;transform-origin:center}@keyframes verticalBarAnimation-8fda0c95{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-vertical-bar[data-v-8fda0c95]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-vertical-bar .vue-ui-vertical-bar-label[data-v-8fda0c95]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-vertical-bar-table[data-v-8fda0c95]{width:100%;max-height:300px;overflow:auto;margin-top:24px;position:relative}.vue-ui-data-table thead[data-v-8fda0c95]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}table[data-v-8fda0c95]{width:100%;padding:1rem;border-collapse:collapse}caption[data-v-8fda0c95],th[data-v-8fda0c95],td[data-v-8fda0c95]{padding:.5rem;font-variant-numeric:tabular-nums}caption[data-v-8fda0c95]{font-size:1.3rem;font-weight:700}.vue-ui-responsive th[data-v-8fda0c95]{display:none}.vue-ui-responsive td[data-v-8fda0c95]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-8fda0c95]{outline:var(--3fc8fccf)}.vue-ui-responsive td[data-v-8fda0c95]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-8fda0c95]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-8fda0c95]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}.animated[data-v-8fda0c95]{transition:all .3s ease-in-out!important}.vue-ui-rating-wrapper[data-v-ce2b46a5]{display:flex;align-items:center;gap:1px;width:100%}.vue-ui-mouse-trap[data-v-ce2b46a5]{cursor:pointer}.vue-ui-mouse-trap[data-v-ce2b46a5]:focus:not(:focus-visible){outline:none}.vue-ui-dna *[data-v-6adad831]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-6adad831]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-6adad831]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-6adad831]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-6adad831]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-6adad831]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-heatmap *[data-v-6adad831]{transition:unset}.vue-ui-heatmap[data-v-6adad831]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-heatmap .vue-ui-heatmap-label[data-v-6adad831]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-heatmap-legend[data-v-6adad831]{height:100%;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-ui-heatmap-legend-item[data-v-6adad831]{display:flex;align-items:center;gap:6px;cursor:pointer;height:24px}.vue-ui-heatmap-tooltip[data-v-6adad831]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-heatmap-table[data-v-6adad831]{width:100%;max-height:300px;overflow:auto;margin-top:24px;position:relative}.vue-ui-data-table thead[data-v-6adad831]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}table[data-v-6adad831]{width:100%;padding:1rem;border-collapse:collapse}caption[data-v-6adad831],th[data-v-6adad831],td[data-v-6adad831]{padding:.5rem;font-variant-numeric:tabular-nums}caption[data-v-6adad831]{font-size:1.3rem;font-weight:700}.vue-ui-responsive th[data-v-6adad831]{display:none}.vue-ui-responsive td[data-v-6adad831]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive tr[data-v-6adad831]{outline:var(--74c4aca2)}.vue-ui-responsive td[data-v-6adad831]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-6adad831]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-6adad831]:before{content:attr(data-cell) ": ";font-weight:700;text-transform:capitalize}.vue-ui-dna *[data-v-f83662f1]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-f83662f1]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-f83662f1]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-f83662f1]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-f83662f1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-f83662f1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-scatter *[data-v-f83662f1]{transition:unset}.vue-ui-scatter[data-v-f83662f1]{-webkit-user-select:none;user-select:none;position:relative}path[data-v-f83662f1],line[data-v-f83662f1],circle[data-v-f83662f1]{animation:verticalBarAnimation-f83662f1 .5s ease-in-out!important;transform-origin:center!important}@keyframes verticalBarAnimation-f83662f1{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-scatter .vue-ui-scatter-label[data-v-f83662f1]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-scatter-tooltip[data-v-f83662f1]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-scatter table[data-v-f83662f1]{width:100%;border-collapse:collapse}.vue-ui-scatter table td[data-v-f83662f1]{text-align:right;padding-right:6px;font-variant-numeric:tabular-nums}.vue-ui-scatter table th[data-v-f83662f1]{position:sticky;top:0;font-weight:400;-webkit-user-select:none;user-select:none}.vue-ui-dna *[data-v-a8467e96]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-a8467e96]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-a8467e96]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-a8467e96]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-a8467e96]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-a8467e96]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-candlestick *[data-v-a8467e96]{transition:unset}.vue-ui-candlestick[data-v-a8467e96]{-webkit-user-select:none;user-select:none;position:relative}path[data-v-a8467e96],line[data-v-a8467e96],rect[data-v-a8467e96]{animation:xyAnimation-a8467e96 .5s ease-in-out;transform-origin:center}@keyframes xyAnimation-a8467e96{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-candlestick .vue-ui-candlestick-label[data-v-a8467e96]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-candlestick-tooltip[data-v-a8467e96]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1}.vue-ui-dna *[data-v-833ae3fa]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-833ae3fa]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-833ae3fa]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-833ae3fa]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-833ae3fa]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-833ae3fa]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-age-pyramid *[data-v-833ae3fa]{transition:unset}.vue-ui-age-pyramid[data-v-833ae3fa]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-age-pyramid .vue-ui-age-pyramid-label[data-v-833ae3fa]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-age-pyramid-legend[data-v-833ae3fa]{height:100%;width:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:center;column-gap:18px}.vue-ui-age-pyramid-legend-item[data-v-833ae3fa]{display:flex;align-items:center;gap:6px;cursor:pointer;height:24px}.vue-ui-age-pyramid-tooltip[data-v-833ae3fa]{border:1px solid #e1e5e8;border-radius:4px;box-shadow:0 6px 12px -6px #0003;max-width:300px;position:fixed;padding:12px;z-index:1;font-variant-numeric:tabular-nums}.vue-ui-dashboard-container[data-v-d4bc5f10]{width:100%;height:fit-content;position:relative;overflow:hidden}.vue-ui-dashboard-grid-container[data-v-d4bc5f10]{position:absolute;width:100%;height:100%;overflow:hidden}.vue-ui-dashboard-grid[data-v-d4bc5f10]{position:absolute;width:100%;height:100%}.vue-ui-dashboard-grid-item[data-v-d4bc5f10]{position:absolute;border:2px solid transparent;transition:opacity .1s ease-in-out}.vue-ui-dashboard-grid-item[data-v-d4bc5f10]:hover{border:2px dashed var(--5114af16)}.vue-ui-dashboard-grid-item:hover .vue-ui-dashboard-resize-handle[data-v-d4bc5f10]{opacity:.5}.vue-ui-dashboard-resize-handle[data-v-d4bc5f10]{position:absolute;width:10px;height:10px;background:var(--44ca7b04);opacity:0;transition:opacity .1s ease-in-out}.vue-ui-dashboard-resize-handle[data-v-d4bc5f10]:hover{opacity:1}.vue-ui-dashboard-top-left[data-v-d4bc5f10]{top:-5px;left:-5px;cursor:nw-resize}.vue-ui-dashboard-top-right[data-v-d4bc5f10]{top:-5px;right:-5px;cursor:ne-resize}.vue-ui-dashboard-bottom-left[data-v-d4bc5f10]{bottom:-5px;left:-5px;cursor:sw-resize}.vue-ui-dashboard-bottom-right[data-v-d4bc5f10]{bottom:-5px;right:-5px;cursor:se-resize}.vue-ui-dashboard-button[data-v-d4bc5f10]{margin:6px 0;border-radius:3px;height:30px;border:1px solid #b9bfc4;background:inherit;display:flex;align-items:center;justify-content:center;font-family:inherit;cursor:pointer}.vue-ui-dashboard-button[data-v-d4bc5f10]:hover{background:rgba(0,0,0,.05)}.vue-ui-dashboard-print-icon[data-v-d4bc5f10]{animation:smartspin-d4bc5f10 .5s infinite linear}@keyframes smartspin-d4bc5f10{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.vue-ui-annotator summary[data-v-72a863ed]{text-align:center}.vue-ui-annotator button.button-tool[data-v-72a863ed]{align-items:center;cursor:pointer!important;display:flex;height:28px;justify-content:center;opacity:.9;padding:2px;width:28px}.vue-ui-annotator button.button-tool[data-v-72a863ed]:hover{opacity:1}.vue-ui-annotator button.button-tool[data-v-72a863ed]:disabled{opacity:.3;cursor:not-allowed}.vue-ui-annotator .tool-selection[data-v-72a863ed]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:12px}.vue-ui-annotator .tool-input[data-v-72a863ed]{display:flex;flex-direction:column;align-items:center}.vue-ui-annotator .tool-input input[data-v-72a863ed]{background:white;padding:3px;border-radius:3px;width:40px}.vue-ui-annotator .tool-input label[data-v-72a863ed]{font-size:.6em}.vue-ui-annotator text[data-v-72a863ed]{-webkit-user-select:none;user-select:none}.vue-ui-annotator summary[data-v-72a863ed]{-webkit-user-select:none;user-select:none;cursor:pointer}.vue-ui-annotator .animated-circle-print[data-v-72a863ed]{stroke-linecap:round!important;stroke-dasharray:400;stroke-dashoffset:0;animation:animate-circle-72a863ed 1s infinite linear}@keyframes animate-circle-72a863ed{0%{opacity:0;stroke-dashoffset:400}to{opacity:1;stroke-dashoffset:0}}.vue-ui-annotator .tooltip[data-v-72a863ed]{position:relative;display:inline-block;border-bottom:1px dotted black}.vue-ui-annotator .tooltip .tooltiptext[data-v-72a863ed]{visibility:hidden;width:120px;background-color:#555;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:125%;left:50%;margin-left:-60px;opacity:0;transition:opacity .3s}.vue-ui-annotator .tooltip .tooltiptext[data-v-72a863ed]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.vue-ui-annotator .tooltip:hover .tooltiptext[data-v-72a863ed]{visibility:visible;opacity:1}.vue-ui-annotator .draw--free[data-v-72a863ed]{cursor:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAABg2lDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9TpSIVh2YQcchQnSyIijhKFYtgobQVWnUwufQLmjQkKS6OgmvBwY/FqoOLs64OroIg+AHi6OSk6CIl/i8ptIjx4Lgf7+497t4BQrPKNKtnAtB020wn4lIuvyqFXhGGiAhCiMnMMpKZxSx8x9c9Any9i/Es/3N/jgG1YDEgIBHPMcO0iTeIZzZtg/M+scjKskp8Tjxu0gWJH7muePzGueSywDNFM5ueJxaJpVIXK13MyqZGPE0cVTWd8oWcxyrnLc5atc7a9+QvDBf0lQzXaY4ggSUkkYIEBXVUUIWNGK06KRbStB/38Q+7/hS5FHJVwMixgBo0yK4f/A9+d2sVpya9pHAc6H1xnI9RILQLtBqO833sOK0TIPgMXOkdf60JzH6S3uho0SNgcBu4uO5oyh5wuQMMPRmyKbtSkKZQLALvZ/RNeSByC/Sveb2193H6AGSpq+Ub4OAQGCtR9rrPu/u6e/v3TLu/H5C7crM1WjgWAAAABmJLR0QAqwB5AHWF+8OUAAAACXBIWXMAAC4jAAAuIwF4pT92AAAAB3RJTUUH5gwUExIUagzGcQAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAABfSURBVBjTldAxDoNQDIPhL0+q1L33P1AvAhN7xfK6WAgoLfSfrNiykpQtE+7RLzx2vgF9D3o8lWDmn1QVVMP0LZQGmNtqp1/cmou0XHdG/+sYeGZwFBqPCub8rkcvvAGvsi1VYarR8wAAAABJRU5ErkJggg==) 5 5,auto}.vue-ui-smiley-rated[data-v-826aeb05]{animation:vue-ui-smile-826aeb05 .3s ease-in-out;transform-origin:center}@keyframes vue-ui-smile-826aeb05{0%{transform:scale(.9)}50%{transform:scale(1.2)}75%{transform:scale(.95)}90%{transform:scale(1.1)}to{transform:scale(1)}}.vue-ui-dna *[data-v-ecead023]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-ecead023]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-ecead023]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-ecead023]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-ecead023]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-ecead023]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-relation-circle[data-v-ecead023]{position:relative}svg.relation-circle[data-v-ecead023]{background:transparent;overflow:visible;padding:12px}.vue-ui-relation-circle-plot[data-v-ecead023],.vue-ui-relation-circle-legend[data-v-ecead023]{cursor:pointer}path.vue-ui-relation-circle-selected[data-v-ecead023],line.vue-ui-relation-circle-selected[data-v-ecead023]{stroke-dasharray:var(--757ab141);stroke-dashoffset:var(--757ab141);animation:vue-ui-relation-circle-dash-ecead023 var(--43168ac0) linear forwards}@keyframes vue-ui-relation-circle-dash-ecead023{to{stroke-dashoffset:var(--14997682)}}.vue-ui-dna *[data-v-039f8c3f]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-039f8c3f]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-039f8c3f]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-039f8c3f]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-039f8c3f]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-039f8c3f]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-thermometer[data-v-039f8c3f]{position:relative}rect.vue-ui-thermometer-temperature[data-v-039f8c3f]{animation:vue-ui-thermometer-temp-039f8c3f var(--a66cecf0) ease-in-out;transform-origin:center}text.vue-ui-thermometer-temperature-value[data-v-039f8c3f]{opacity:0;animation:vue-ui-thermometer-value-039f8c3f var(--a66cecf0) ease-in-out forwards}@keyframes vue-ui-thermometer-value-039f8c3f{0%{opacity:0}to{opacity:1}}@keyframes vue-ui-thermometer-temp-039f8c3f{0%{height:var(--4ded9ff4);clip-path:url(#vueUiPill)}50%{height:calc(var(--15e1e31a) + 10px);clip-path:url(#vueUiPill)}60%{height:calc(var(--15e1e31a) - 5px);clip-path:url(#vueUiPill)}70%{height:calc(var(--15e1e31a) + 4px);clip-path:url(#vueUiPill)}80%{height:calc(var(--15e1e31a) - 3px);clip-path:url(#vueUiPill)}90%{height:calc(var(--15e1e31a) + 2px)}95%{height:calc(var(--15e1e31a) - 1px)}to{height:var(--15e1e31a)}}.vue-ui-sparkstackbar-legend[data-v-d42bde97]{display:flex;flex-wrap:wrap;column-gap:12px;width:calc(100% - 12px);padding:0 6px}.vue-ui-sparkstackbar-legend-item[data-v-d42bde97]{cursor:pointer;transition:opacity .2s ease-in-out}.vue-ui-sparkstackbar-legend-item-unselected[data-v-d42bde97]{opacity:.3}rect.animated[data-v-d42bde97]{transition:all .3s ease-in-out!important}.vue-ui-sparkhistogram-shape[data-v-d68a3308]{animation:expand-d68a3308 var(--5d53e3cb) ease-in forwards;transform-origin:center;transform:scaleY(0)}@keyframes expand-d68a3308{80%{transform:scaleY(1.1)}90%{transform:scaleY(.95)}95%{transform:scaleY(1.03)}to{transform:scale(1)}}.vue-ui-dna *[data-v-3ba8adca]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-3ba8adca]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-3ba8adca]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-3ba8adca]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-3ba8adca]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-3ba8adca]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-rings *[data-v-3ba8adca]{transition:unset}.vue-ui-rings[data-v-3ba8adca]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-rings-shadow[data-v-3ba8adca]{filter:drop-shadow(0 6px 12px rgba(0,0,0,.15))}.vue-ui-rings-blur[data-v-3ba8adca]{filter:blur(3px) opacity(50%) grayscale(100%);transition:all .15s ease-in-out}.vue-ui-rings-opacity[data-v-3ba8adca]{opacity:.3;transition:opacity .15s ease-in-out}.vue-ui-rings-item[data-v-3ba8adca]{transform:scale(0);animation:ring-appear-3ba8adca .5s ease-in forwards;transform-origin:bottom}@keyframes ring-appear-3ba8adca{0%{opacity:0;transform:scale(.8,.7)}60%{transform:scale(1.03,1.05)}80%{transform:scale(.98,.96)}90%{transform:scale(1.01,1.02)}to{opacity:1;transform:scale(1)}}.vue-ui-dna *[data-v-ae940f01]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-ae940f01]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-ae940f01]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-ae940f01]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-ae940f01]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-ae940f01]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-wheel *[data-v-ae940f01]{transition:unset}.vue-ui-wheel[data-v-ae940f01]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-tick-animated[data-v-ae940f01]{animation:animate-tick-ae940f01 .3s ease-in;transform-origin:center}@keyframes animate-tick-ae940f01{0%{stroke-width:8}80%{stroke-width:6}to{stroke-width:5}}.vue-ui-dna *[data-v-6a0368b4]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-6a0368b4]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-6a0368b4]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-6a0368b4]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-6a0368b4]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-6a0368b4]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-tiremarks *[data-v-6a0368b4]{transition:unset}.vue-ui-tiremarks[data-v-6a0368b4]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-tick-animated[data-v-6a0368b4]{animation:animate-tick-6a0368b4 .3s ease-in;transform-origin:center}@keyframes animate-tick-6a0368b4{0%{stroke-width:2;transform:scaleY(1.1)}to{stroke-width:initial;transform:scale(1)}}.vue-ui-dna *[data-v-8c2f15a3]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-8c2f15a3]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-8c2f15a3]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-8c2f15a3]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-8c2f15a3]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-8c2f15a3]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-donut-evolution *[data-v-8c2f15a3]{transition:unset;transition:opacity .5s ease-in-out}.vue-ui-donut-evolution[data-v-8c2f15a3]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-donut-evolution-focus[data-v-8c2f15a3]{animation:donut-8c2f15a3 .5s ease-in-out;transform-origin:center}.donut-hover[data-v-8c2f15a3]{cursor:pointer}.donut-opacity[data-v-8c2f15a3]{transition:opacity .2s ease-in-out}.donut-behind[data-v-8c2f15a3]{opacity:.1}@keyframes donut-8c2f15a3{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-dna *[data-v-f4230255]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-f4230255]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-f4230255]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-f4230255]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-f4230255]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-f4230255]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-mood-radar *[data-v-f4230255]{transition:unset}.vue-ui-mood-radar[data-v-f4230255]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-mood-radar-trap[data-v-f4230255]{transition:all .2s ease-in-out}.vue-ui-dna *[data-v-6320c0a1]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-6320c0a1]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-6320c0a1]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-6320c0a1]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-6320c0a1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-6320c0a1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-3d-bar *[data-v-6320c0a1]{transition:unset}.vue-ui-3d-bar[data-v-6320c0a1]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-3d-bar-stack[data-v-6320c0a1]{transition:opacity .2s ease-in-out}.vue-ui-donut-arc-path[data-v-6320c0a1]{animation:donut-6320c0a1 .5s ease-in-out;transform-origin:center}@keyframes donut-6320c0a1{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-dna *[data-v-27864854]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-27864854]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-27864854]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-27864854]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-27864854]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-27864854]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-molecule *[data-v-27864854]{transition:unset}.vue-ui-molecule[data-v-27864854]{-webkit-user-select:none;user-select:none;position:relative}path.onion-animated[data-v-baedef4c]{stroke-dasharray:0;stroke-dashoffset:0;animation:onion-groove-baedef4c infinite cubic-bezier(.53,.15,.57,.93) 3s}@keyframes onion-groove-baedef4c{0%{stroke-dasharray:160;stroke-dashoffset:-140;filter:blur(0px)}to{stroke-dasharray:160;stroke-dashoffset:0;filter:var(--735c55ae)}}path.line-animated[data-v-baedef4c]{stroke-dasharray:0;stroke-dashoffset:0;animation:line-funk-baedef4c infinite cubic-bezier(.53,.15,.57,.93) 3s}@keyframes line-funk-baedef4c{0%{stroke-dasharray:300;stroke-dashoffset:300;filter:blur(0px)}to{stroke-dasharray:300;stroke-dashoffset:100;filter:var(--97047cc2)}}path.bar-animated[data-v-baedef4c]{stroke-dasharray:0;stroke-dashoffset:0;animation:bar-jazz-baedef4c infinite cubic-bezier(.53,.15,.57,.93) 3s}@keyframes bar-jazz-baedef4c{0%{stroke-dasharray:60;stroke-dashoffset:60;filter:blur(0px)}to{stroke-dasharray:60;stroke-dashoffset:0;filter:var(--18e2e376)}}.vue-ui-dna *[data-v-b1953ca5]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-b1953ca5]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-b1953ca5]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-b1953ca5]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-b1953ca5]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-b1953ca5]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-nested-donuts *[data-v-b1953ca5]{transition:unset}.vue-ui-nested-donuts[data-v-b1953ca5]{-webkit-user-select:none;user-select:none;position:relative}.animated[data-v-b1953ca5]{animation:donut-b1953ca5 .5s ease-in-out;transform-origin:center}@keyframes donut-b1953ca5{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-nested-donuts-legend[data-v-b1953ca5]{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.vue-ui-nested-donuts-legend-title[data-v-b1953ca5]{width:100%;padding:0 0 12px}@keyframes vue-ui-sparkgauge-animation{0%{stroke-dashoffset:169.5;opacity:-1}}.vue-ui-galaxy *[data-v-9506f47c]{transition:unset}.vue-ui-galaxy[data-v-9506f47c]{-webkit-user-select:none;user-select:none;position:relative}path[data-v-9506f47c]{animation:galaxy-9506f47c .5s ease-in-out;transform-origin:center;transition:stroke-width .1s ease-in-out!important}@keyframes galaxy-9506f47c{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.vue-ui-galaxy .vue-ui-galaxy-label[data-v-9506f47c]{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;text-align:center;width:100%}.vue-ui-dna *[data-v-9506f47c]{animation:none!important}.vue-ui-galaxy-blur[data-v-9506f47c]{filter:blur(3px) opacity(50%) grayscale(100%);transition:all .15s ease-in-out}.vue-data-ui-fullscreen--on[data-v-9506f47c]{height:80%!important;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-9506f47c]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-9506f47c]{overflow:auto}.vue-ui-dna *[data-v-320aaf03]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-320aaf03]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-320aaf03]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-320aaf03]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-320aaf03]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-320aaf03]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-treemap *[data-v-320aaf03]{transition:unset}.vue-ui-treemap[data-v-320aaf03]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-treemap-cell-default[data-v-320aaf03]{text-align:left}.vue-ui-treemap-cell[data-v-320aaf03],.vue-ui-treemap-cell-foreignObject[data-v-320aaf03]{pointer-events:none}.vue-ui-treemap-rect[data-v-320aaf03]{transition:all .2s ease-in-out}.vue-ui-treemap-zoom-info[data-v-320aaf03]{pointer-events:none;position:absolute;top:0;left:0;height:100%;width:100%;display:flex;align-items:center;justify-content:center}.vue-ui-treemap-cell-zoom[data-v-320aaf03]{animation:zoom-cell-320aaf03 .2s ease-in forwards!important;transform-origin:center}@keyframes zoom-cell-320aaf03{0%{transform:scale(.8);opacity:0;filter:drop-shadow(0px 12px 12px black)}to{transform:scale(1);opacity:1}}.vue-ui-table-heatmap[data-v-e4473413]{position:relative;border-collapse:collapse}.vue-ui-table-heatmap th[data-v-e4473413],.vue-ui-table-heatmap tr[data-v-e4473413],.vue-ui-table-heatmap td[data-v-e4473413]{border:var(--2cc4a8a2) solid var(--0b1cbb0a)}.vue-ui-responsive th[data-v-e4473413]{display:none}.vue-ui-responsive td[data-v-e4473413]{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);padding:.5rem 1rem;outline:none!important;text-align:left}.vue-ui-responsive td[data-v-e4473413]:first-child{padding-top:1rem}.vue-ui-responsive td[data-v-e4473413]:last-child{padding-bottom:1rem}.vue-ui-responsive td[data-v-e4473413]:before{content:attr(data-cell) ": "}summary[data-v-566dbe74]{-webkit-user-select:none;user-select:none;cursor:pointer}details[data-v-566dbe74]{overflow:hidden}details>summary[data-v-566dbe74]{list-style:none}.vue-ui-accordion-head[data-v-566dbe74]{display:flex;flex-direction:row;gap:6px}.vue-ui-accordion-arrow[data-v-566dbe74]{display:flex;place-items:center;justify-content:center;width:fit-content;transform:rotate(0);transition:transform .3s ease-in-out;transform-origin:center}details[open]>summary .vue-ui-accordion-arrow[data-v-566dbe74]{transform:rotate(90deg)}details summary[data-v-566dbe74]::-webkit-details-marker{display:none}div.vue-ui-accordion-content[data-v-566dbe74]{opacity:0;box-sizing:border-box;max-height:0;overflow:hidden;transition:max-height .4s ease-out,opacity .4s ease-out}details[open]+div.vue-ui-accordion-content[data-v-566dbe74]{max-height:var(--d99499b4);transition:max-height 1s ease-out,opacity 1s ease-out;opacity:1}details[open] span[data-v-566dbe74]:before{rotate:90deg;transition:rotate .2s ease-out}.vue-ui-dna *[data-v-54b24225]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-54b24225]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-54b24225]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-54b24225]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-54b24225]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-54b24225]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-quick-chart *[data-v-54b24225]{transition:unset}.vue-ui-quick-chart[data-v-54b24225]{-webkit-user-select:none;user-select:none;width:100%}.vue-ui-quick-chart-not-processable[data-v-54b24225]{align-items:center;background:rgba(255,0,0,.1);border-radius:6px;color:red;display:flex;flex-direction:row;gap:12px;justify-content:center;padding:12px}.vue-ui-quick-chart-title[data-v-54b24225]{padding:0 40px 12px}.vue-ui-quick-chart-legend[data-v-54b24225]{align-items:center;display:flex;column-gap:24px;justify-content:center;width:100%;flex-wrap:wrap}.vue-ui-quick-chart-legend-item[data-v-54b24225]{display:flex;flex-direction:flex-row;gap:6px;align-items:center}.quick-animation[data-v-54b24225]{animation:quick-54b24225 .5s ease-in-out;transform-origin:center}@keyframes quick-54b24225{0%{transform:scale(.9);opacity:0}80%{transform:scale(1.02);opacity:1}to{transform:scale(1);opacity:1}}.rotating-circles[data-v-c7b54730]{transform-origin:center;animation:rotateCircles-c7b54730 2s infinite linear}@keyframes rotateCircles-c7b54730{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.circle-wave[data-v-c7b54730]{animation:circleWave-c7b54730 1s cubic-bezier(0,1.01,1,1);transform-origin:center}@keyframes circleWave-c7b54730{0%{transform:scale(1);opacity:1}to{transform:scale(20);opacity:0}}.vue-ui-spark-trend *[data-v-54d6c322]{transition:unset}.vue-ui-dna *[data-v-0de0b8a1]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-0de0b8a1]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-0de0b8a1]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-0de0b8a1]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-0de0b8a1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-0de0b8a1]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-strip-plot[data-v-0de0b8a1]{-webkit-user-select:none;user-select:none;position:relative}.vue-ui-strip-plot-animated *{transition-property:cy,opacity;transition-duration:.3s}.vue-ui-strip-plot-select-circle *{transition:all .1s ease-in-out!important}.vue-ui-dna *[data-v-1411b02e]{animation:none!important}.vue-data-ui-fullscreen--on[data-v-1411b02e]{height:90%;margin:0 auto!important}.vue-data-ui-fullscreen--off[data-v-1411b02e]{max-width:100%}.vue-data-ui-wrapper-fullscreen[data-v-1411b02e]{overflow:scroll}.vue-data-ui-zoom-plus[data-v-1411b02e]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 9 5 L 9 13 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 8 8 L 8 4 L 10 4 L 10 8 L 14 8 L 14 10 L 10 10 L 10 14 L 8 14 L 8 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-data-ui-zoom-minus[data-v-1411b02e]{cursor:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' height='24' width='24'><path fill='none' d='M 14.65 14.65 L 18 18' stroke-linejoin='round' stroke-width='2' stroke='white'/><path fill='none' stroke-width='1' stroke='black' d='M 9 1 A 1 1 0 0 0 9 17 A 1 1 0 0 0 9 1 M 14.65 14.65 L 18 18 M 5 9 L 13 9'/><path fill='none' d='M 9 0 A 1 1 0 0 0 9 18 A 1 1 0 0 0 9 0' stroke-width='0.5' stroke='white'/><path fill='none' d='M 4 8 L 14 8 L 14 10 L 4 10 Z' stroke-linejoin='round' stroke-width='0.5' stroke='white'/></svg>") 10 10,pointer}.vue-ui-dumbbell *[data-v-1411b02e]{transition:unset}.vue-ui-dumbbell[data-v-1411b02e]{-webkit-user-select:none;user-select:none;position:relative}
|
|
@@ -789,7 +789,7 @@ declare module 'vue-data-ui' {
|
|
|
789
789
|
config?: VueUiMoodRadarConfig
|
|
790
790
|
}>;
|
|
791
791
|
|
|
792
|
-
export type VueUiIconName = "annotator" | "chart3bar" | "chartAgePyramid" | "chartBar" | "chartCandlestick" | "chartChestnut" | "chartDonut" | "chartDonutEvolution" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartMoodbar" | "chartOnion" | "chartQuadrant" | "chartRadar" | "chartRelationCircle" | "chartRings" | "chartScatter" | "chartSparkHistogram" | "chartSparkStackbar" | "chartTable" | "chartThermometer" | "chartTiremarks" | "chartVerticalBar" | "chartWaffle" | "chartWheel" | "close" | "dashboard" | "digit0" | "digit1" | "digit2" | "digit3" | "digit4" | "digit5" | "digit6" | "digit7" | "digit8" | "digit9" | "excel" | "image" | "labelClose" | "labelOpen" | "menu" | "moodFlat" | "moodHappy" | "moodNeutral" | "moodSad" | "pdf" | "screenshot" | "skeleton" | "smiley" | "sort" | "spin" | "star" | "tableClose" | "tableOpen" | "chartNestedDonuts" | "chartSparkbar" | "refresh" | "circleQuestion" | "circleExclamation" | "circleCheck" | "circleCancel" | "moodLaughing" | "moodWink" | "moodEmbarrassed" | "moodSurprised" | "exitFullscreen" | "fullscreen" | "arrowRight" | "arrowTop" | "arrowBottom" | "
|
|
792
|
+
export type VueUiIconName = "annotator" | "chart3bar" | "chartAgePyramid" | "chartBar" | "chartCandlestick" | "chartChestnut" | "chartDonut" | "chartDonutEvolution" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartMoodbar" | "chartOnion" | "chartQuadrant" | "chartRadar" | "chartRelationCircle" | "chartRings" | "chartScatter" | "chartSparkHistogram" | "chartSparkStackbar" | "chartTable" | "chartThermometer" | "chartTiremarks" | "chartVerticalBar" | "chartWaffle" | "chartWheel" | "close" | "dashboard" | "digit0" | "digit1" | "digit2" | "digit3" | "digit4" | "digit5" | "digit6" | "digit7" | "digit8" | "digit9" | "excel" | "image" | "labelClose" | "labelOpen" | "menu" | "moodFlat" | "moodHappy" | "moodNeutral" | "moodSad" | "pdf" | "screenshot" | "skeleton" | "smiley" | "sort" | "spin" | "star" | "tableClose" | "tableOpen" | "chartNestedDonuts" | "chartSparkbar" | "refresh" | "circleQuestion" | "circleExclamation" | "circleCheck" | "circleCancel" | "moodLaughing" | "moodWink" | "moodEmbarrassed" | "moodSurprised" | "exitFullscreen" | "fullscreen" | "arrowRight" | "arrowTop" | "arrowBottom" | "arrowLeft" | "chartCluster" | "chartSparkline" | "legend" | "csv" | "chartGalaxy" | "kpi" | "kpiBox" | "tooltip" | "vueDataUi" | "ratio" | "func" | "settings" | "trendUp" | "trendDown" | "clipBoard" | "zoomPlus" | "zoomMinus" | "clipboardLine" | "clipboardDonut" | "clipboardBar" | "clipboardVariable" | "triangle" | "triangleFill" | "square" | "squareFill" | "diamond" | "diamondFill" | "pentagon" | "pentagonFill" | "hexagon" | "hexagonFill" | "circle" | "circleFill" | "starFill" | "numbers" | "sigma" | "mu" | "lambda" | "people" | "copy" | "accordion" | "cursor" | "trend" | "chartStripPlot" | "chartDumbbell" | "copyLeft";
|
|
793
793
|
|
|
794
794
|
export const VueUiIcon: DefineComponent<{
|
|
795
795
|
name: VueUiIconName,
|
|
@@ -837,6 +837,8 @@ declare module 'vue-data-ui' {
|
|
|
837
837
|
fontSize?: number;
|
|
838
838
|
showOnlyFirstAndLast?: boolean;
|
|
839
839
|
color?: string;
|
|
840
|
+
rotation?: number;
|
|
841
|
+
offsetY?: number;
|
|
840
842
|
};
|
|
841
843
|
};
|
|
842
844
|
};
|
|
@@ -1822,6 +1824,7 @@ declare module 'vue-data-ui' {
|
|
|
1822
1824
|
color?: string;
|
|
1823
1825
|
offsetY?: number;
|
|
1824
1826
|
bold?: boolean;
|
|
1827
|
+
rotation?: number;
|
|
1825
1828
|
};
|
|
1826
1829
|
};
|
|
1827
1830
|
yAxis?: {
|
package/dist/vue-data-ui.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as s, O as u, F as V, V as U, p as r, s as t, o, g as n, X as l, r as p, G as S, b as d, C as k, $ as m, P as c, f as g, m as b, D, Q as T, J as h, H as C, E as R, M as f, h as y, e as A, W as H, d as M, k as P, u as x, z as B, n as G, j as Q, S as W, t as v, y as w, x as E, Y as I, q as K, N as L, l as N, Z as O, a as X, U as j, T as q, w as z, B as F, R as J, i as Y, c as Z, A as $, v as _, K as aa, L as ea } from "./index-
|
|
1
|
+
import { I as s, O as u, F as V, V as U, p as r, s as t, o, g as n, X as l, r as p, G as S, b as d, C as k, $ as m, P as c, f as g, m as b, D, Q as T, J as h, H as C, E as R, M as f, h as y, e as A, W as H, d as M, k as P, u as x, z as B, n as G, j as Q, S as W, t as v, y as w, x as E, Y as I, q as K, N as L, l as N, Z as O, a as X, U as j, T as q, w as z, B as F, R as J, i as Y, c as Z, A as $, v as _, K as aa, L as ea } from "./index-c43e875e.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
export {
|
|
4
4
|
s as Arrow,
|
package/package.json
CHANGED