@oliasoft-open-source/charts-library 5.13.0 → 5.14.0-beta-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +15 -1217
- package/dist/index.js +453 -68
- package/dist/src/components/bar-chart/bar-chart-const.d.ts +2 -0
- package/dist/src/components/bar-chart/bar-chart-default-props.d.ts +3 -0
- package/dist/src/components/bar-chart/bar-chart.d.ts +3 -0
- package/dist/src/components/bar-chart/bar-chart.interface.d.ts +141 -0
- package/dist/src/components/bar-chart/utils/get-bar-chart-data-labels.d.ts +10 -0
- package/dist/src/components/bar-chart/utils/get-bar-chart-scales.d.ts +3 -0
- package/dist/src/components/bar-chart/utils/get-bar-chart-tooltips.d.ts +6 -0
- package/dist/src/components/bar-chart/utils/use-bar-chart-config.d.ts +13 -0
- package/dist/src/components/bar-chart/utils/use-bar-chart-options.d.ts +55 -0
- package/dist/src/components/common/common.interface.d.ts +275 -0
- package/dist/src/components/common/controls-portal.d.ts +7 -0
- package/dist/src/components/common/enums.d.ts +87 -0
- package/dist/src/components/common/helpers/add-transparency/add-transparency.d.ts +1 -0
- package/dist/src/components/common/helpers/callout-helpers/callout-helpers.d.ts +25 -0
- package/dist/src/components/common/helpers/chart-border-plugin.d.ts +16 -0
- package/dist/src/components/common/helpers/chart-consts.d.ts +39 -0
- package/dist/src/components/common/helpers/chart-utils.d.ts +86 -0
- package/dist/src/components/common/helpers/container.d.ts +18 -0
- package/dist/src/components/common/helpers/custom-format-number.d.ts +1 -0
- package/dist/src/components/common/helpers/download-pgn.d.ts +3 -0
- package/dist/src/components/common/helpers/get-chart-annotation.d.ts +139 -0
- package/dist/src/components/common/helpers/get-chart-from-ctx.d.ts +1 -0
- package/dist/src/components/common/helpers/get-custom-legend-plugin-example.d.ts +8 -0
- package/dist/src/components/common/helpers/get-draggableData.d.ts +18 -0
- package/dist/src/components/common/helpers/get-grouped-color-scheme/get-grouped-color-scheme.d.ts +1 -0
- package/dist/src/components/common/helpers/input-normalizers.d.ts +15 -0
- package/dist/src/components/common/helpers/range/estimate-data-series-have-close-values.d.ts +8 -0
- package/dist/src/components/common/helpers/range/range.d.ts +33 -0
- package/dist/src/components/common/helpers/text.d.ts +1 -0
- package/dist/src/components/common/helpers/to-annotation.d.ts +4 -0
- package/dist/src/components/common/hooks/use-generated-labels.d.ts +4 -0
- package/dist/src/components/common/hooks/use-legend-state.d.ts +28 -0
- package/dist/src/components/common/hooks/use-legend.d.ts +4 -0
- package/dist/src/components/common/hooks/use-update-annotations.d.ts +4 -0
- package/dist/src/components/common/legend-component/legend-dropzone.d.ts +3 -0
- package/dist/src/components/common/legend-component/legend-interface.d.ts +47 -0
- package/dist/src/components/common/legend-component/legend-item/LegendItemLine.d.ts +5 -0
- package/dist/src/components/common/legend-component/legend-item/legend-item.d.ts +3 -0
- package/dist/src/components/common/legend-component/legend-panel.d.ts +3 -0
- package/dist/src/components/common/legend-component/legend.d.ts +3 -0
- package/dist/src/components/common/legend-component/state/legend-action-types.d.ts +3 -0
- package/dist/src/components/common/legend-component/state/legend-context.d.ts +14 -0
- package/dist/src/components/common/legend-component/state/legend-state-reducer.d.ts +30 -0
- package/dist/src/components/common/legend-component/utils/create-style-object.d.ts +27 -0
- package/dist/src/components/common/legend-component/utils/get-generated-labels.d.ts +2 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/annotation-dragger-plugin.d.ts +15 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/annotation-position-storage.d.ts +7 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/enums.d.ts +21 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/event-helpers.d.ts +6 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/helpers.d.ts +53 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/point-annotation-label.d.ts +5 -0
- package/dist/src/components/common/plugins/ellipsis-annotation-plugin/compute-ellipse-geometry.d.ts +9 -0
- package/dist/src/components/common/plugins/ellipsis-annotation-plugin/ellipsis-annotation-plugin.d.ts +18 -0
- package/dist/src/components/common/plugins/gradient-background-plugin/enums.d.ts +10 -0
- package/dist/src/components/common/plugins/gradient-background-plugin/gradient-background-plugin.d.ts +2 -0
- package/dist/src/components/line-chart/constants/default-translations.d.ts +25 -0
- package/dist/src/components/line-chart/constants/line-chart-consts.d.ts +13 -0
- package/dist/src/components/line-chart/controls/axes-options/axes-options-interfaces.d.ts +57 -0
- package/dist/src/components/line-chart/controls/axes-options/axes-options.d.ts +6 -0
- package/dist/src/components/line-chart/controls/axes-options/axes-validation.d.ts +8 -0
- package/dist/src/components/line-chart/controls/controls-interfaces.d.ts +19 -0
- package/dist/src/components/line-chart/controls/controls.d.ts +3 -0
- package/dist/src/components/line-chart/controls/drag-options-interfaces.d.ts +14 -0
- package/dist/src/components/line-chart/controls/drag-options.d.ts +23 -0
- package/dist/src/components/line-chart/controls/line-options.d.ts +19 -0
- package/dist/src/components/line-chart/hooks/use-chart-functions.d.ts +32 -0
- package/dist/src/components/line-chart/hooks/use-chart-options.d.ts +19 -0
- package/dist/src/components/line-chart/hooks/use-chart-plugins.d.ts +7 -0
- package/dist/src/components/line-chart/hooks/use-chart-state.d.ts +12 -0
- package/dist/src/components/line-chart/hooks/use-toggle-handler.d.ts +12 -0
- package/dist/src/components/line-chart/initialize/config.d.ts +12 -0
- package/dist/src/components/line-chart/initialize/initialize-line-chart.d.ts +12 -0
- package/dist/src/components/line-chart/line-chart-get-default-props.d.ts +3 -0
- package/dist/src/components/line-chart/line-chart.d.ts +3 -0
- package/dist/src/components/line-chart/line-chart.interface.d.ts +236 -0
- package/dist/src/components/line-chart/plugins/callout-plugin/callout-plugin.d.ts +11 -0
- package/dist/src/components/line-chart/plugins/callout-plugin/helpers.d.ts +42 -0
- package/dist/src/components/line-chart/plugins/chart-area-text-plugin.d.ts +17 -0
- package/dist/src/components/line-chart/plugins/line-chart.minor-gridlines-plugin.d.ts +8 -0
- package/dist/src/components/line-chart/plugins/line-markers-plugin/draw.d.ts +39 -0
- package/dist/src/components/line-chart/plugins/line-markers-plugin/line-markers-plugin.d.ts +10 -0
- package/dist/src/components/line-chart/plugins/line-markers-plugin/types.d.ts +109 -0
- package/dist/src/components/line-chart/plugins/line-markers-plugin/utils.d.ts +40 -0
- package/dist/src/components/line-chart/plugins/plugin-constants.d.ts +11 -0
- package/dist/src/components/line-chart/plugins/plugins.interface.d.ts +9 -0
- package/dist/src/components/line-chart/state/action-types.d.ts +12 -0
- package/dist/src/components/line-chart/state/helpers.d.ts +13 -0
- package/dist/src/components/line-chart/state/initial-state.d.ts +11 -0
- package/dist/src/components/line-chart/state/line-chart-reducer.d.ts +2 -0
- package/dist/src/components/line-chart/state/manage-state-in-local-storage.d.ts +15 -0
- package/dist/src/components/line-chart/state/state.interfaces.d.ts +26 -0
- package/dist/src/components/line-chart/utils/axis-formatting/axis-formatting.d.ts +2 -0
- package/dist/src/components/line-chart/utils/axis-scales/axis-scales.d.ts +18 -0
- package/dist/src/components/line-chart/utils/check-custom-option/check-custom-option.d.ts +12 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/datalabels-alignment.interface.d.ts +20 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/get-alignment-condition.d.ts +8 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/get-alignment-data.d.ts +11 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/get-datalabels-position.d.ts +6 -0
- package/dist/src/components/line-chart/utils/enums.d.ts +4 -0
- package/dist/src/components/line-chart/utils/generate-line-chart-datasets.d.ts +8 -0
- package/dist/src/components/line-chart/utils/get-annotations-data.d.ts +1 -0
- package/dist/src/components/line-chart/utils/get-axes-data-from-metasets.d.ts +1 -0
- package/dist/src/components/line-chart/utils/get-axes-ranges-from-chart.d.ts +9 -0
- package/dist/src/components/line-chart/utils/get-axis-range-by-type.d.ts +10 -0
- package/dist/src/components/line-chart/utils/get-generated-labels.d.ts +2 -0
- package/dist/src/components/line-chart/utils/get-line-chart-data-labels.d.ts +16 -0
- package/dist/src/components/line-chart/utils/get-line-chart-scales.d.ts +589 -0
- package/dist/src/components/line-chart/utils/get-line-chart-tooltips.d.ts +30 -0
- package/dist/src/components/line-chart/utils/line-chart-utils.d.ts +24 -0
- package/dist/src/components/line-chart/utils/translations/get-translations.d.ts +8 -0
- package/dist/src/components/pie-chart/pie-chart-defalut-props.interface.d.ts +50 -0
- package/dist/src/components/pie-chart/pie-chart-get-default-props.d.ts +3 -0
- package/dist/src/components/pie-chart/pie-chart.d.ts +3 -0
- package/dist/src/components/pie-chart/pie-chart.interface.d.ts +58 -0
- package/dist/src/components/pie-chart/use-pie-chart-config.d.ts +42 -0
- package/dist/src/components/scatter-chart/hooks/use-scatter-chart-config.d.ts +239 -0
- package/dist/src/components/scatter-chart/scatter-chart-default-props.interface.d.ts +72 -0
- package/dist/src/components/scatter-chart/scatter-chart-get-default-props.d.ts +4 -0
- package/dist/src/components/scatter-chart/scatter-chart.d.ts +3 -0
- package/dist/src/components/scatter-chart/scatter-chart.interface.d.ts +111 -0
- package/dist/src/components/scatter-chart/utils/get-scales-config.d.ts +176 -0
- package/dist/src/components/scatter-chart/utils/get-tooltip-config.d.ts +21 -0
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
23
23
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
24
24
|
var __getProtoOf = Object.getPrototypeOf;
|
|
25
25
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
26
|
-
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
26
|
+
var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
|
|
27
27
|
var __copyProps = (to, from, except, desc) => {
|
|
28
28
|
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
29
29
|
key = keys[i];
|
|
@@ -2038,7 +2038,7 @@ function createContext$1(parentContext, context) {
|
|
|
2038
2038
|
*/ function _createResolver(scopes, prefixes = [""], rootScopes, fallback, getTarget = () => scopes[0]) {
|
|
2039
2039
|
const finalRootScopes = rootScopes || scopes;
|
|
2040
2040
|
if (typeof fallback === "undefined") fallback = _resolve("_fallback", scopes);
|
|
2041
|
-
|
|
2041
|
+
return new Proxy({
|
|
2042
2042
|
[Symbol.toStringTag]: "Object",
|
|
2043
2043
|
_cacheable: true,
|
|
2044
2044
|
_scopes: scopes,
|
|
@@ -2046,30 +2046,44 @@ function createContext$1(parentContext, context) {
|
|
|
2046
2046
|
_fallback: fallback,
|
|
2047
2047
|
_getTarget: getTarget,
|
|
2048
2048
|
override: (scope) => _createResolver([scope, ...scopes], prefixes, finalRootScopes, fallback)
|
|
2049
|
-
}
|
|
2050
|
-
|
|
2051
|
-
|
|
2049
|
+
}, {
|
|
2050
|
+
/**
|
|
2051
|
+
* A trap for the delete operator.
|
|
2052
|
+
*/ deleteProperty(target, prop) {
|
|
2052
2053
|
delete target[prop];
|
|
2053
2054
|
delete target._keys;
|
|
2054
2055
|
delete scopes[0][prop];
|
|
2055
2056
|
return true;
|
|
2056
2057
|
},
|
|
2057
|
-
|
|
2058
|
+
/**
|
|
2059
|
+
* A trap for getting property values.
|
|
2060
|
+
*/ get(target, prop) {
|
|
2058
2061
|
return _cached(target, prop, () => _resolveWithPrefixes(prop, prefixes, scopes, target));
|
|
2059
2062
|
},
|
|
2060
|
-
|
|
2063
|
+
/**
|
|
2064
|
+
* A trap for Object.getOwnPropertyDescriptor.
|
|
2065
|
+
* Also used by Object.hasOwnProperty.
|
|
2066
|
+
*/ getOwnPropertyDescriptor(target, prop) {
|
|
2061
2067
|
return Reflect.getOwnPropertyDescriptor(target._scopes[0], prop);
|
|
2062
2068
|
},
|
|
2063
|
-
|
|
2069
|
+
/**
|
|
2070
|
+
* A trap for Object.getPrototypeOf.
|
|
2071
|
+
*/ getPrototypeOf() {
|
|
2064
2072
|
return Reflect.getPrototypeOf(scopes[0]);
|
|
2065
2073
|
},
|
|
2066
|
-
|
|
2074
|
+
/**
|
|
2075
|
+
* A trap for the in operator.
|
|
2076
|
+
*/ has(target, prop) {
|
|
2067
2077
|
return getKeysFromAllScopes(target).includes(prop);
|
|
2068
2078
|
},
|
|
2069
|
-
|
|
2079
|
+
/**
|
|
2080
|
+
* A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.
|
|
2081
|
+
*/ ownKeys(target) {
|
|
2070
2082
|
return getKeysFromAllScopes(target);
|
|
2071
2083
|
},
|
|
2072
|
-
|
|
2084
|
+
/**
|
|
2085
|
+
* A trap for setting property values.
|
|
2086
|
+
*/ set(target, prop, value) {
|
|
2073
2087
|
const storage = target._storage || (target._storage = getTarget());
|
|
2074
2088
|
target[prop] = storage[prop] = value;
|
|
2075
2089
|
delete target._keys;
|
|
@@ -2096,30 +2110,45 @@ function createContext$1(parentContext, context) {
|
|
|
2096
2110
|
override: (scope) => _attachContext(proxy.override(scope), context, subProxy, descriptorDefaults)
|
|
2097
2111
|
};
|
|
2098
2112
|
return new Proxy(cache, {
|
|
2099
|
-
|
|
2113
|
+
/**
|
|
2114
|
+
* A trap for the delete operator.
|
|
2115
|
+
*/ deleteProperty(target, prop) {
|
|
2100
2116
|
delete target[prop];
|
|
2101
2117
|
delete proxy[prop];
|
|
2102
2118
|
return true;
|
|
2103
2119
|
},
|
|
2104
|
-
|
|
2120
|
+
/**
|
|
2121
|
+
* A trap for getting property values.
|
|
2122
|
+
*/ get(target, prop, receiver) {
|
|
2105
2123
|
return _cached(target, prop, () => _resolveWithContext(target, prop, receiver));
|
|
2106
2124
|
},
|
|
2107
|
-
|
|
2125
|
+
/**
|
|
2126
|
+
* A trap for Object.getOwnPropertyDescriptor.
|
|
2127
|
+
* Also used by Object.hasOwnProperty.
|
|
2128
|
+
*/ getOwnPropertyDescriptor(target, prop) {
|
|
2108
2129
|
return target._descriptors.allKeys ? Reflect.has(proxy, prop) ? {
|
|
2109
2130
|
enumerable: true,
|
|
2110
2131
|
configurable: true
|
|
2111
2132
|
} : void 0 : Reflect.getOwnPropertyDescriptor(proxy, prop);
|
|
2112
2133
|
},
|
|
2113
|
-
|
|
2134
|
+
/**
|
|
2135
|
+
* A trap for Object.getPrototypeOf.
|
|
2136
|
+
*/ getPrototypeOf() {
|
|
2114
2137
|
return Reflect.getPrototypeOf(proxy);
|
|
2115
2138
|
},
|
|
2116
|
-
|
|
2139
|
+
/**
|
|
2140
|
+
* A trap for the in operator.
|
|
2141
|
+
*/ has(target, prop) {
|
|
2117
2142
|
return Reflect.has(proxy, prop);
|
|
2118
2143
|
},
|
|
2119
|
-
|
|
2144
|
+
/**
|
|
2145
|
+
* A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.
|
|
2146
|
+
*/ ownKeys() {
|
|
2120
2147
|
return Reflect.ownKeys(proxy);
|
|
2121
2148
|
},
|
|
2122
|
-
|
|
2149
|
+
/**
|
|
2150
|
+
* A trap for setting property values.
|
|
2151
|
+
*/ set(target, prop, value) {
|
|
2123
2152
|
proxy[prop] = value;
|
|
2124
2153
|
delete target[prop];
|
|
2125
2154
|
return true;
|
|
@@ -4314,9 +4343,7 @@ var BarController = class extends DatasetController {
|
|
|
4314
4343
|
if (value === actualBase) base -= size / 2;
|
|
4315
4344
|
const startPixel = vScale.getPixelForDecimal(0);
|
|
4316
4345
|
const endPixel = vScale.getPixelForDecimal(1);
|
|
4317
|
-
|
|
4318
|
-
const max = Math.max(startPixel, endPixel);
|
|
4319
|
-
base = Math.max(Math.min(base, max), min);
|
|
4346
|
+
base = Math.max(Math.min(base, Math.max(startPixel, endPixel)), Math.min(startPixel, endPixel));
|
|
4320
4347
|
head = base + size;
|
|
4321
4348
|
if (_stacked && !floating) parsed._stacks[vScale.axis]._visualValues[datasetIndex] = vScale.getValueForPixel(head) - vScale.getValueForPixel(base);
|
|
4322
4349
|
}
|
|
@@ -12244,14 +12271,14 @@ var Line = /* @__PURE__ */ createTypedChart("line", LineController);
|
|
|
12244
12271
|
var Bar = /* @__PURE__ */ createTypedChart("bar", BarController);
|
|
12245
12272
|
var Pie = /* @__PURE__ */ createTypedChart("pie", PieController);
|
|
12246
12273
|
var Scatter = /* @__PURE__ */ createTypedChart("scatter", ScatterController);
|
|
12274
|
+
/*! Hammer.JS - v2.0.7 - 2016-04-22
|
|
12275
|
+
* http://hammerjs.github.io/
|
|
12276
|
+
*
|
|
12277
|
+
* Copyright (c) 2016 Jorik Tangelder;
|
|
12278
|
+
* Licensed under the MIT license */
|
|
12247
12279
|
//#endregion
|
|
12248
12280
|
//#region node_modules/.pnpm/chartjs-plugin-zoom@2.2.0_chart.js@4.5.1/node_modules/chartjs-plugin-zoom/dist/chartjs-plugin-zoom.esm.js
|
|
12249
12281
|
var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
12250
|
-
/*! Hammer.JS - v2.0.7 - 2016-04-22
|
|
12251
|
-
* http://hammerjs.github.io/
|
|
12252
|
-
*
|
|
12253
|
-
* Copyright (c) 2016 Jorik Tangelder;
|
|
12254
|
-
* Licensed under the MIT license */
|
|
12255
12282
|
(function(window, document, exportName, undefined) {
|
|
12256
12283
|
"use strict";
|
|
12257
12284
|
var VENDOR_PREFIXES = [
|
|
@@ -12597,12 +12624,22 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
12597
12624
|
this.init();
|
|
12598
12625
|
}
|
|
12599
12626
|
Input.prototype = {
|
|
12627
|
+
/**
|
|
12628
|
+
* should handle the inputEvent data and trigger the callback
|
|
12629
|
+
* @virtual
|
|
12630
|
+
*/
|
|
12600
12631
|
handler: function() {},
|
|
12632
|
+
/**
|
|
12633
|
+
* bind the events
|
|
12634
|
+
*/
|
|
12601
12635
|
init: function() {
|
|
12602
12636
|
this.evEl && addEventListeners(this.element, this.evEl, this.domHandler);
|
|
12603
12637
|
this.evTarget && addEventListeners(this.target, this.evTarget, this.domHandler);
|
|
12604
12638
|
this.evWin && addEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler);
|
|
12605
12639
|
},
|
|
12640
|
+
/**
|
|
12641
|
+
* unbind the events
|
|
12642
|
+
*/
|
|
12606
12643
|
destroy: function() {
|
|
12607
12644
|
this.evEl && removeEventListeners(this.element, this.evEl, this.domHandler);
|
|
12608
12645
|
this.evTarget && removeEventListeners(this.target, this.evTarget, this.domHandler);
|
|
@@ -12854,7 +12891,12 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
12854
12891
|
this.pressed = false;
|
|
12855
12892
|
Input.apply(this, arguments);
|
|
12856
12893
|
}
|
|
12857
|
-
inherit(MouseInput, Input, {
|
|
12894
|
+
inherit(MouseInput, Input, {
|
|
12895
|
+
/**
|
|
12896
|
+
* handle mouse events
|
|
12897
|
+
* @param {Object} ev
|
|
12898
|
+
*/
|
|
12899
|
+
handler: function MEhandler(ev) {
|
|
12858
12900
|
var eventType = MOUSE_INPUT_MAP[ev.type];
|
|
12859
12901
|
if (eventType & INPUT_START && ev.button === 0) this.pressed = true;
|
|
12860
12902
|
if (eventType & INPUT_MOVE && ev.which !== 1) eventType = INPUT_END;
|
|
@@ -12897,7 +12939,12 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
12897
12939
|
Input.apply(this, arguments);
|
|
12898
12940
|
this.store = this.manager.session.pointerEvents = [];
|
|
12899
12941
|
}
|
|
12900
|
-
inherit(PointerEventInput, Input, {
|
|
12942
|
+
inherit(PointerEventInput, Input, {
|
|
12943
|
+
/**
|
|
12944
|
+
* handle mouse events
|
|
12945
|
+
* @param {Object} ev
|
|
12946
|
+
*/
|
|
12947
|
+
handler: function PEhandler(ev) {
|
|
12901
12948
|
var store = this.store;
|
|
12902
12949
|
var removePointer = false;
|
|
12903
12950
|
var eventType = POINTER_INPUT_MAP[ev.type.toLowerCase().replace("ms", "")];
|
|
@@ -13045,6 +13092,12 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13045
13092
|
this.lastTouches = [];
|
|
13046
13093
|
}
|
|
13047
13094
|
inherit(TouchMouseInput, Input, {
|
|
13095
|
+
/**
|
|
13096
|
+
* handle mouse and touch events
|
|
13097
|
+
* @param {Hammer} manager
|
|
13098
|
+
* @param {String} inputEvent
|
|
13099
|
+
* @param {Object} inputData
|
|
13100
|
+
*/
|
|
13048
13101
|
handler: function TMEhandler(manager, inputEvent, inputData) {
|
|
13049
13102
|
var isTouch = inputData.pointerType == INPUT_TYPE_TOUCH, isMouse = inputData.pointerType == INPUT_TYPE_MOUSE;
|
|
13050
13103
|
if (isMouse && inputData.sourceCapabilities && inputData.sourceCapabilities.firesTouchEvents) return;
|
|
@@ -13052,6 +13105,9 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13052
13105
|
else if (isMouse && isSyntheticEvent.call(this, inputData)) return;
|
|
13053
13106
|
this.callback(manager, inputEvent, inputData);
|
|
13054
13107
|
},
|
|
13108
|
+
/**
|
|
13109
|
+
* remove the event listeners
|
|
13110
|
+
*/
|
|
13055
13111
|
destroy: function destroy() {
|
|
13056
13112
|
this.touch.destroy();
|
|
13057
13113
|
this.mouse.destroy();
|
|
@@ -13109,14 +13165,25 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13109
13165
|
this.set(value);
|
|
13110
13166
|
}
|
|
13111
13167
|
TouchAction.prototype = {
|
|
13168
|
+
/**
|
|
13169
|
+
* set the touchAction value on the element or enable the polyfill
|
|
13170
|
+
* @param {String} value
|
|
13171
|
+
*/
|
|
13112
13172
|
set: function(value) {
|
|
13113
13173
|
if (value == TOUCH_ACTION_COMPUTE) value = this.compute();
|
|
13114
13174
|
if (NATIVE_TOUCH_ACTION && this.manager.element.style && TOUCH_ACTION_MAP[value]) this.manager.element.style[PREFIXED_TOUCH_ACTION] = value;
|
|
13115
13175
|
this.actions = value.toLowerCase().trim();
|
|
13116
13176
|
},
|
|
13177
|
+
/**
|
|
13178
|
+
* just re-set the touchAction value
|
|
13179
|
+
*/
|
|
13117
13180
|
update: function() {
|
|
13118
13181
|
this.set(this.manager.options.touchAction);
|
|
13119
13182
|
},
|
|
13183
|
+
/**
|
|
13184
|
+
* compute the value for the touchAction property based on the recognizer's settings
|
|
13185
|
+
* @returns {String} value
|
|
13186
|
+
*/
|
|
13120
13187
|
compute: function() {
|
|
13121
13188
|
var actions = [];
|
|
13122
13189
|
each(this.manager.recognizers, function(recognizer) {
|
|
@@ -13124,6 +13191,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13124
13191
|
});
|
|
13125
13192
|
return cleanTouchActions(actions.join(" "));
|
|
13126
13193
|
},
|
|
13194
|
+
/**
|
|
13195
|
+
* this method is called on each input cycle and provides the preventing of the browser behavior
|
|
13196
|
+
* @param {Object} input
|
|
13197
|
+
*/
|
|
13127
13198
|
preventDefaults: function(input) {
|
|
13128
13199
|
var srcEvent = input.srcEvent;
|
|
13129
13200
|
var direction = input.offsetDirection;
|
|
@@ -13144,6 +13215,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13144
13215
|
if (hasPanX && hasPanY) return;
|
|
13145
13216
|
if (hasNone || hasPanY && direction & DIRECTION_HORIZONTAL || hasPanX && direction & DIRECTION_VERTICAL) return this.preventSrc(srcEvent);
|
|
13146
13217
|
},
|
|
13218
|
+
/**
|
|
13219
|
+
* call preventDefault to prevent the browser's default behavior (scrolling in most cases)
|
|
13220
|
+
* @param {Object} srcEvent
|
|
13221
|
+
*/
|
|
13147
13222
|
preventSrc: function(srcEvent) {
|
|
13148
13223
|
this.manager.session.prevented = true;
|
|
13149
13224
|
srcEvent.preventDefault();
|
|
@@ -13229,12 +13304,26 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13229
13304
|
this.requireFail = [];
|
|
13230
13305
|
}
|
|
13231
13306
|
Recognizer.prototype = {
|
|
13307
|
+
/**
|
|
13308
|
+
* @virtual
|
|
13309
|
+
* @type {Object}
|
|
13310
|
+
*/
|
|
13232
13311
|
defaults: {},
|
|
13312
|
+
/**
|
|
13313
|
+
* set options
|
|
13314
|
+
* @param {Object} options
|
|
13315
|
+
* @return {Recognizer}
|
|
13316
|
+
*/
|
|
13233
13317
|
set: function(options) {
|
|
13234
13318
|
assign(this.options, options);
|
|
13235
13319
|
this.manager && this.manager.touchAction.update();
|
|
13236
13320
|
return this;
|
|
13237
13321
|
},
|
|
13322
|
+
/**
|
|
13323
|
+
* recognize simultaneous with an other recognizer.
|
|
13324
|
+
* @param {Recognizer} otherRecognizer
|
|
13325
|
+
* @returns {Recognizer} this
|
|
13326
|
+
*/
|
|
13238
13327
|
recognizeWith: function(otherRecognizer) {
|
|
13239
13328
|
if (invokeArrayArg(otherRecognizer, "recognizeWith", this)) return this;
|
|
13240
13329
|
var simultaneous = this.simultaneous;
|
|
@@ -13245,12 +13334,22 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13245
13334
|
}
|
|
13246
13335
|
return this;
|
|
13247
13336
|
},
|
|
13337
|
+
/**
|
|
13338
|
+
* drop the simultaneous link. it doesnt remove the link on the other recognizer.
|
|
13339
|
+
* @param {Recognizer} otherRecognizer
|
|
13340
|
+
* @returns {Recognizer} this
|
|
13341
|
+
*/
|
|
13248
13342
|
dropRecognizeWith: function(otherRecognizer) {
|
|
13249
13343
|
if (invokeArrayArg(otherRecognizer, "dropRecognizeWith", this)) return this;
|
|
13250
13344
|
otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this);
|
|
13251
13345
|
delete this.simultaneous[otherRecognizer.id];
|
|
13252
13346
|
return this;
|
|
13253
13347
|
},
|
|
13348
|
+
/**
|
|
13349
|
+
* recognizer can only run when an other is failing
|
|
13350
|
+
* @param {Recognizer} otherRecognizer
|
|
13351
|
+
* @returns {Recognizer} this
|
|
13352
|
+
*/
|
|
13254
13353
|
requireFailure: function(otherRecognizer) {
|
|
13255
13354
|
if (invokeArrayArg(otherRecognizer, "requireFailure", this)) return this;
|
|
13256
13355
|
var requireFail = this.requireFail;
|
|
@@ -13261,6 +13360,11 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13261
13360
|
}
|
|
13262
13361
|
return this;
|
|
13263
13362
|
},
|
|
13363
|
+
/**
|
|
13364
|
+
* drop the requireFailure link. it does not remove the link on the other recognizer.
|
|
13365
|
+
* @param {Recognizer} otherRecognizer
|
|
13366
|
+
* @returns {Recognizer} this
|
|
13367
|
+
*/
|
|
13264
13368
|
dropRequireFailure: function(otherRecognizer) {
|
|
13265
13369
|
if (invokeArrayArg(otherRecognizer, "dropRequireFailure", this)) return this;
|
|
13266
13370
|
otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this);
|
|
@@ -13268,12 +13372,26 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13268
13372
|
if (index > -1) this.requireFail.splice(index, 1);
|
|
13269
13373
|
return this;
|
|
13270
13374
|
},
|
|
13375
|
+
/**
|
|
13376
|
+
* has require failures boolean
|
|
13377
|
+
* @returns {boolean}
|
|
13378
|
+
*/
|
|
13271
13379
|
hasRequireFailures: function() {
|
|
13272
13380
|
return this.requireFail.length > 0;
|
|
13273
13381
|
},
|
|
13382
|
+
/**
|
|
13383
|
+
* if the recognizer can recognize simultaneous with an other recognizer
|
|
13384
|
+
* @param {Recognizer} otherRecognizer
|
|
13385
|
+
* @returns {Boolean}
|
|
13386
|
+
*/
|
|
13274
13387
|
canRecognizeWith: function(otherRecognizer) {
|
|
13275
13388
|
return !!this.simultaneous[otherRecognizer.id];
|
|
13276
13389
|
},
|
|
13390
|
+
/**
|
|
13391
|
+
* You should use `tryEmit` instead of `emit` directly to check
|
|
13392
|
+
* that all the needed recognizers has failed before emitting.
|
|
13393
|
+
* @param {Object} input
|
|
13394
|
+
*/
|
|
13277
13395
|
emit: function(input) {
|
|
13278
13396
|
var self = this;
|
|
13279
13397
|
var state = this.state;
|
|
@@ -13285,10 +13403,20 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13285
13403
|
if (input.additionalEvent) emit(input.additionalEvent);
|
|
13286
13404
|
if (state >= STATE_ENDED) emit(self.options.event + stateStr(state));
|
|
13287
13405
|
},
|
|
13406
|
+
/**
|
|
13407
|
+
* Check that all the require failure recognizers has failed,
|
|
13408
|
+
* if true, it emits a gesture event,
|
|
13409
|
+
* otherwise, setup the state to FAILED.
|
|
13410
|
+
* @param {Object} input
|
|
13411
|
+
*/
|
|
13288
13412
|
tryEmit: function(input) {
|
|
13289
13413
|
if (this.canEmit()) return this.emit(input);
|
|
13290
13414
|
this.state = STATE_FAILED;
|
|
13291
13415
|
},
|
|
13416
|
+
/**
|
|
13417
|
+
* can we emit?
|
|
13418
|
+
* @returns {boolean}
|
|
13419
|
+
*/
|
|
13292
13420
|
canEmit: function() {
|
|
13293
13421
|
var i = 0;
|
|
13294
13422
|
while (i < this.requireFail.length) {
|
|
@@ -13297,6 +13425,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13297
13425
|
}
|
|
13298
13426
|
return true;
|
|
13299
13427
|
},
|
|
13428
|
+
/**
|
|
13429
|
+
* update the recognizer
|
|
13430
|
+
* @param {Object} inputData
|
|
13431
|
+
*/
|
|
13300
13432
|
recognize: function(inputData) {
|
|
13301
13433
|
var inputDataClone = assign({}, inputData);
|
|
13302
13434
|
if (!boolOrFn(this.options.enable, [this, inputDataClone])) {
|
|
@@ -13308,8 +13440,25 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13308
13440
|
this.state = this.process(inputDataClone);
|
|
13309
13441
|
if (this.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED | STATE_CANCELLED)) this.tryEmit(inputDataClone);
|
|
13310
13442
|
},
|
|
13443
|
+
/**
|
|
13444
|
+
* return the state of the recognizer
|
|
13445
|
+
* the actual recognizing happens in this method
|
|
13446
|
+
* @virtual
|
|
13447
|
+
* @param {Object} inputData
|
|
13448
|
+
* @returns {Const} STATE
|
|
13449
|
+
*/
|
|
13311
13450
|
process: function(inputData) {},
|
|
13451
|
+
/**
|
|
13452
|
+
* return the preferred touch-action
|
|
13453
|
+
* @virtual
|
|
13454
|
+
* @returns {Array}
|
|
13455
|
+
*/
|
|
13312
13456
|
getTouchAction: function() {},
|
|
13457
|
+
/**
|
|
13458
|
+
* called when the gesture isn't allowed to recognize
|
|
13459
|
+
* like when another is being recognized or it is disabled
|
|
13460
|
+
* @virtual
|
|
13461
|
+
*/
|
|
13313
13462
|
reset: function() {}
|
|
13314
13463
|
};
|
|
13315
13464
|
/**
|
|
@@ -13356,11 +13505,32 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13356
13505
|
Recognizer.apply(this, arguments);
|
|
13357
13506
|
}
|
|
13358
13507
|
inherit(AttrRecognizer, Recognizer, {
|
|
13359
|
-
|
|
13508
|
+
/**
|
|
13509
|
+
* @namespace
|
|
13510
|
+
* @memberof AttrRecognizer
|
|
13511
|
+
*/
|
|
13512
|
+
defaults: {
|
|
13513
|
+
/**
|
|
13514
|
+
* @type {Number}
|
|
13515
|
+
* @default 1
|
|
13516
|
+
*/
|
|
13517
|
+
pointers: 1 },
|
|
13518
|
+
/**
|
|
13519
|
+
* Used to check if it the recognizer receives valid input, like input.distance > 10.
|
|
13520
|
+
* @memberof AttrRecognizer
|
|
13521
|
+
* @param {Object} input
|
|
13522
|
+
* @returns {Boolean} recognized
|
|
13523
|
+
*/
|
|
13360
13524
|
attrTest: function(input) {
|
|
13361
13525
|
var optionPointers = this.options.pointers;
|
|
13362
13526
|
return optionPointers === 0 || input.pointers.length === optionPointers;
|
|
13363
13527
|
},
|
|
13528
|
+
/**
|
|
13529
|
+
* Process the input and return the state for the recognizer
|
|
13530
|
+
* @memberof AttrRecognizer
|
|
13531
|
+
* @param {Object} input
|
|
13532
|
+
* @returns {*} State
|
|
13533
|
+
*/
|
|
13364
13534
|
process: function(input) {
|
|
13365
13535
|
var state = this.state;
|
|
13366
13536
|
var eventType = input.eventType;
|
|
@@ -13387,6 +13557,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13387
13557
|
this.pY = null;
|
|
13388
13558
|
}
|
|
13389
13559
|
inherit(PanRecognizer, AttrRecognizer, {
|
|
13560
|
+
/**
|
|
13561
|
+
* @namespace
|
|
13562
|
+
* @memberof PanRecognizer
|
|
13563
|
+
*/
|
|
13390
13564
|
defaults: {
|
|
13391
13565
|
event: "pan",
|
|
13392
13566
|
threshold: 10,
|
|
@@ -13440,6 +13614,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13440
13614
|
AttrRecognizer.apply(this, arguments);
|
|
13441
13615
|
}
|
|
13442
13616
|
inherit(PinchRecognizer, AttrRecognizer, {
|
|
13617
|
+
/**
|
|
13618
|
+
* @namespace
|
|
13619
|
+
* @memberof PinchRecognizer
|
|
13620
|
+
*/
|
|
13443
13621
|
defaults: {
|
|
13444
13622
|
event: "pinch",
|
|
13445
13623
|
threshold: 0,
|
|
@@ -13471,6 +13649,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13471
13649
|
this._input = null;
|
|
13472
13650
|
}
|
|
13473
13651
|
inherit(PressRecognizer, Recognizer, {
|
|
13652
|
+
/**
|
|
13653
|
+
* @namespace
|
|
13654
|
+
* @memberof PressRecognizer
|
|
13655
|
+
*/
|
|
13474
13656
|
defaults: {
|
|
13475
13657
|
event: "press",
|
|
13476
13658
|
pointers: 1,
|
|
@@ -13518,6 +13700,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13518
13700
|
AttrRecognizer.apply(this, arguments);
|
|
13519
13701
|
}
|
|
13520
13702
|
inherit(RotateRecognizer, AttrRecognizer, {
|
|
13703
|
+
/**
|
|
13704
|
+
* @namespace
|
|
13705
|
+
* @memberof RotateRecognizer
|
|
13706
|
+
*/
|
|
13521
13707
|
defaults: {
|
|
13522
13708
|
event: "rotate",
|
|
13523
13709
|
threshold: 0,
|
|
@@ -13540,6 +13726,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13540
13726
|
AttrRecognizer.apply(this, arguments);
|
|
13541
13727
|
}
|
|
13542
13728
|
inherit(SwipeRecognizer, AttrRecognizer, {
|
|
13729
|
+
/**
|
|
13730
|
+
* @namespace
|
|
13731
|
+
* @memberof SwipeRecognizer
|
|
13732
|
+
*/
|
|
13543
13733
|
defaults: {
|
|
13544
13734
|
event: "swipe",
|
|
13545
13735
|
threshold: 10,
|
|
@@ -13583,6 +13773,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13583
13773
|
this.count = 0;
|
|
13584
13774
|
}
|
|
13585
13775
|
inherit(TapRecognizer, Recognizer, {
|
|
13776
|
+
/**
|
|
13777
|
+
* @namespace
|
|
13778
|
+
* @memberof PinchRecognizer
|
|
13779
|
+
*/
|
|
13586
13780
|
defaults: {
|
|
13587
13781
|
event: "tap",
|
|
13588
13782
|
pointers: 1,
|
|
@@ -13658,11 +13852,44 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13658
13852
|
* @namespace
|
|
13659
13853
|
*/
|
|
13660
13854
|
Hammer.defaults = {
|
|
13855
|
+
/**
|
|
13856
|
+
* set if DOM events are being triggered.
|
|
13857
|
+
* But this is slower and unused by simple implementations, so disabled by default.
|
|
13858
|
+
* @type {Boolean}
|
|
13859
|
+
* @default false
|
|
13860
|
+
*/
|
|
13661
13861
|
domEvents: false,
|
|
13862
|
+
/**
|
|
13863
|
+
* The value for the touchAction property/fallback.
|
|
13864
|
+
* When set to `compute` it will magically set the correct value based on the added recognizers.
|
|
13865
|
+
* @type {String}
|
|
13866
|
+
* @default compute
|
|
13867
|
+
*/
|
|
13662
13868
|
touchAction: TOUCH_ACTION_COMPUTE,
|
|
13869
|
+
/**
|
|
13870
|
+
* @type {Boolean}
|
|
13871
|
+
* @default true
|
|
13872
|
+
*/
|
|
13663
13873
|
enable: true,
|
|
13874
|
+
/**
|
|
13875
|
+
* EXPERIMENTAL FEATURE -- can be removed/changed
|
|
13876
|
+
* Change the parent input target element.
|
|
13877
|
+
* If Null, then it is being set the to main element.
|
|
13878
|
+
* @type {Null|EventTarget}
|
|
13879
|
+
* @default null
|
|
13880
|
+
*/
|
|
13664
13881
|
inputTarget: null,
|
|
13882
|
+
/**
|
|
13883
|
+
* force an input class
|
|
13884
|
+
* @type {Null|Function}
|
|
13885
|
+
* @default null
|
|
13886
|
+
*/
|
|
13665
13887
|
inputClass: null,
|
|
13888
|
+
/**
|
|
13889
|
+
* Default recognizer setup when calling `Hammer()`
|
|
13890
|
+
* When creating a new Manager these will be skipped.
|
|
13891
|
+
* @type {Array}
|
|
13892
|
+
*/
|
|
13666
13893
|
preset: [
|
|
13667
13894
|
[RotateRecognizer, { enable: false }],
|
|
13668
13895
|
[
|
|
@@ -13687,12 +13914,50 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13687
13914
|
],
|
|
13688
13915
|
[PressRecognizer]
|
|
13689
13916
|
],
|
|
13917
|
+
/**
|
|
13918
|
+
* Some CSS properties can be used to improve the working of Hammer.
|
|
13919
|
+
* Add them to this method and they will be set when creating a new Manager.
|
|
13920
|
+
* @namespace
|
|
13921
|
+
*/
|
|
13690
13922
|
cssProps: {
|
|
13923
|
+
/**
|
|
13924
|
+
* Disables text selection to improve the dragging gesture. Mainly for desktop browsers.
|
|
13925
|
+
* @type {String}
|
|
13926
|
+
* @default 'none'
|
|
13927
|
+
*/
|
|
13691
13928
|
userSelect: "none",
|
|
13929
|
+
/**
|
|
13930
|
+
* Disable the Windows Phone grippers when pressing an element.
|
|
13931
|
+
* @type {String}
|
|
13932
|
+
* @default 'none'
|
|
13933
|
+
*/
|
|
13692
13934
|
touchSelect: "none",
|
|
13935
|
+
/**
|
|
13936
|
+
* Disables the default callout shown when you touch and hold a touch target.
|
|
13937
|
+
* On iOS, when you touch and hold a touch target such as a link, Safari displays
|
|
13938
|
+
* a callout containing information about the link. This property allows you to disable that callout.
|
|
13939
|
+
* @type {String}
|
|
13940
|
+
* @default 'none'
|
|
13941
|
+
*/
|
|
13693
13942
|
touchCallout: "none",
|
|
13943
|
+
/**
|
|
13944
|
+
* Specifies whether zooming is enabled. Used by IE10>
|
|
13945
|
+
* @type {String}
|
|
13946
|
+
* @default 'none'
|
|
13947
|
+
*/
|
|
13694
13948
|
contentZooming: "none",
|
|
13949
|
+
/**
|
|
13950
|
+
* Specifies that an entire element should be draggable instead of its contents. Mainly for desktop browsers.
|
|
13951
|
+
* @type {String}
|
|
13952
|
+
* @default 'none'
|
|
13953
|
+
*/
|
|
13695
13954
|
userDrag: "none",
|
|
13955
|
+
/**
|
|
13956
|
+
* Overrides the highlight color shown when the user taps a link or a JavaScript
|
|
13957
|
+
* clickable element in iOS. This property obeys the alpha value, if specified.
|
|
13958
|
+
* @type {String}
|
|
13959
|
+
* @default 'rgba(0,0,0,0)'
|
|
13960
|
+
*/
|
|
13696
13961
|
tapHighlightColor: "rgba(0,0,0,0)"
|
|
13697
13962
|
}
|
|
13698
13963
|
};
|
|
@@ -13722,6 +13987,11 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13722
13987
|
}, this);
|
|
13723
13988
|
}
|
|
13724
13989
|
Manager.prototype = {
|
|
13990
|
+
/**
|
|
13991
|
+
* set options
|
|
13992
|
+
* @param {Object} options
|
|
13993
|
+
* @returns {Manager}
|
|
13994
|
+
*/
|
|
13725
13995
|
set: function(options) {
|
|
13726
13996
|
assign(this.options, options);
|
|
13727
13997
|
if (options.touchAction) this.touchAction.update();
|
|
@@ -13732,9 +14002,21 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13732
14002
|
}
|
|
13733
14003
|
return this;
|
|
13734
14004
|
},
|
|
14005
|
+
/**
|
|
14006
|
+
* stop recognizing for this session.
|
|
14007
|
+
* This session will be discarded, when a new [input]start event is fired.
|
|
14008
|
+
* When forced, the recognizer cycle is stopped immediately.
|
|
14009
|
+
* @param {Boolean} [force]
|
|
14010
|
+
*/
|
|
13735
14011
|
stop: function(force) {
|
|
13736
14012
|
this.session.stopped = force ? FORCED_STOP : STOP;
|
|
13737
14013
|
},
|
|
14014
|
+
/**
|
|
14015
|
+
* run the recognizers!
|
|
14016
|
+
* called by the inputHandler function on every movement of the pointers (touches)
|
|
14017
|
+
* it walks through all the recognizers and tries to detect the gesture that is being made
|
|
14018
|
+
* @param {Object} inputData
|
|
14019
|
+
*/
|
|
13738
14020
|
recognize: function(inputData) {
|
|
13739
14021
|
var session = this.session;
|
|
13740
14022
|
if (session.stopped) return;
|
|
@@ -13752,12 +14034,23 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13752
14034
|
i++;
|
|
13753
14035
|
}
|
|
13754
14036
|
},
|
|
14037
|
+
/**
|
|
14038
|
+
* get a recognizer by its event name.
|
|
14039
|
+
* @param {Recognizer|String} recognizer
|
|
14040
|
+
* @returns {Recognizer|Null}
|
|
14041
|
+
*/
|
|
13755
14042
|
get: function(recognizer) {
|
|
13756
14043
|
if (recognizer instanceof Recognizer) return recognizer;
|
|
13757
14044
|
var recognizers = this.recognizers;
|
|
13758
14045
|
for (var i = 0; i < recognizers.length; i++) if (recognizers[i].options.event == recognizer) return recognizers[i];
|
|
13759
14046
|
return null;
|
|
13760
14047
|
},
|
|
14048
|
+
/**
|
|
14049
|
+
* add a recognizer to the manager
|
|
14050
|
+
* existing recognizers with the same event name will be removed
|
|
14051
|
+
* @param {Recognizer} recognizer
|
|
14052
|
+
* @returns {Recognizer|Manager}
|
|
14053
|
+
*/
|
|
13761
14054
|
add: function(recognizer) {
|
|
13762
14055
|
if (invokeArrayArg(recognizer, "add", this)) return this;
|
|
13763
14056
|
var existing = this.get(recognizer.options.event);
|
|
@@ -13767,6 +14060,11 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13767
14060
|
this.touchAction.update();
|
|
13768
14061
|
return recognizer;
|
|
13769
14062
|
},
|
|
14063
|
+
/**
|
|
14064
|
+
* remove a recognizer by name or instance
|
|
14065
|
+
* @param {Recognizer|String} recognizer
|
|
14066
|
+
* @returns {Manager}
|
|
14067
|
+
*/
|
|
13770
14068
|
remove: function(recognizer) {
|
|
13771
14069
|
if (invokeArrayArg(recognizer, "remove", this)) return this;
|
|
13772
14070
|
recognizer = this.get(recognizer);
|
|
@@ -13780,6 +14078,12 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13780
14078
|
}
|
|
13781
14079
|
return this;
|
|
13782
14080
|
},
|
|
14081
|
+
/**
|
|
14082
|
+
* bind event
|
|
14083
|
+
* @param {String} events
|
|
14084
|
+
* @param {Function} handler
|
|
14085
|
+
* @returns {EventEmitter} this
|
|
14086
|
+
*/
|
|
13783
14087
|
on: function(events, handler) {
|
|
13784
14088
|
if (events === undefined) return;
|
|
13785
14089
|
if (handler === undefined) return;
|
|
@@ -13790,6 +14094,12 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13790
14094
|
});
|
|
13791
14095
|
return this;
|
|
13792
14096
|
},
|
|
14097
|
+
/**
|
|
14098
|
+
* unbind event, leave emit blank to remove all handlers
|
|
14099
|
+
* @param {String} events
|
|
14100
|
+
* @param {Function} [handler]
|
|
14101
|
+
* @returns {EventEmitter} this
|
|
14102
|
+
*/
|
|
13793
14103
|
off: function(events, handler) {
|
|
13794
14104
|
if (events === undefined) return;
|
|
13795
14105
|
var handlers = this.handlers;
|
|
@@ -13799,6 +14109,11 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13799
14109
|
});
|
|
13800
14110
|
return this;
|
|
13801
14111
|
},
|
|
14112
|
+
/**
|
|
14113
|
+
* emit event to the listeners
|
|
14114
|
+
* @param {String} event
|
|
14115
|
+
* @param {Object} data
|
|
14116
|
+
*/
|
|
13802
14117
|
emit: function(event, data) {
|
|
13803
14118
|
if (this.options.domEvents) triggerDomEvent(event, data);
|
|
13804
14119
|
var handlers = this.handlers[event] && this.handlers[event].slice();
|
|
@@ -13813,6 +14128,10 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13813
14128
|
i++;
|
|
13814
14129
|
}
|
|
13815
14130
|
},
|
|
14131
|
+
/**
|
|
14132
|
+
* destroy the manager and unbinds all events
|
|
14133
|
+
* it doesn't unbind dom events, that is the user own responsibility
|
|
14134
|
+
*/
|
|
13816
14135
|
destroy: function() {
|
|
13817
14136
|
this.element && toggleCssProps(this, false);
|
|
13818
14137
|
this.handlers = {};
|
|
@@ -13905,6 +14224,12 @@ var import_hammer = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exp
|
|
|
13905
14224
|
else window[exportName] = Hammer;
|
|
13906
14225
|
})(window, document, "Hammer");
|
|
13907
14226
|
})))());
|
|
14227
|
+
/*!
|
|
14228
|
+
* chartjs-plugin-zoom v2.2.0
|
|
14229
|
+
* https://www.chartjs.org/chartjs-plugin-zoom/2.2.0/
|
|
14230
|
+
* (c) 2016-2024 chartjs-plugin-zoom Contributors
|
|
14231
|
+
* Released under the MIT License
|
|
14232
|
+
*/
|
|
13908
14233
|
var getModifierKey = (opts) => opts && opts.enabled && opts.modifierKey;
|
|
13909
14234
|
var keyPressed = (key, event) => key && event[key + "Key"];
|
|
13910
14235
|
var keyNotPressed = (key, event) => key && !event[key + "Key"];
|
|
@@ -14884,9 +15209,19 @@ var utils = {
|
|
|
14884
15209
|
width
|
|
14885
15210
|
};
|
|
14886
15211
|
},
|
|
15212
|
+
/**
|
|
15213
|
+
* Returns value bounded by min and max. This is equivalent to max(min, min(value, max)).
|
|
15214
|
+
* @todo move this method in Chart.helpers.bound
|
|
15215
|
+
* https://doc.qt.io/qt-5/qtglobal.html#qBound
|
|
15216
|
+
*/
|
|
14887
15217
|
bound: function(min, value, max) {
|
|
14888
15218
|
return Math.max(min, Math.min(value, max));
|
|
14889
15219
|
},
|
|
15220
|
+
/**
|
|
15221
|
+
* Returns an array of pair [value, state] where state is:
|
|
15222
|
+
* * -1: value is only in a0 (removed)
|
|
15223
|
+
* * 1: value is only in a1 (added)
|
|
15224
|
+
*/
|
|
14890
15225
|
arrayDiff: function(a0, a1) {
|
|
14891
15226
|
var prev = a0.slice();
|
|
14892
15227
|
var updates = [];
|
|
@@ -14900,6 +15235,9 @@ var utils = {
|
|
|
14900
15235
|
for (i = 0, ilen = prev.length; i < ilen; ++i) updates.push([prev[i], -1]);
|
|
14901
15236
|
return updates;
|
|
14902
15237
|
},
|
|
15238
|
+
/**
|
|
15239
|
+
* https://github.com/chartjs/chartjs-plugin-datalabels/issues/70
|
|
15240
|
+
*/
|
|
14903
15241
|
rasterize: function(v) {
|
|
14904
15242
|
return Math.round(v * devicePixelRatio) / devicePixelRatio;
|
|
14905
15243
|
}
|
|
@@ -15254,6 +15592,9 @@ var Label = function(config, ctx, el, index) {
|
|
|
15254
15592
|
me._el = el;
|
|
15255
15593
|
};
|
|
15256
15594
|
merge(Label.prototype, {
|
|
15595
|
+
/**
|
|
15596
|
+
* @private
|
|
15597
|
+
*/
|
|
15257
15598
|
_modelize: function(display, lines, config, context) {
|
|
15258
15599
|
var me = this;
|
|
15259
15600
|
var index = me._index;
|
|
@@ -15428,6 +15769,9 @@ merge(HitBox.prototype, {
|
|
|
15428
15769
|
}
|
|
15429
15770
|
return true;
|
|
15430
15771
|
},
|
|
15772
|
+
/**
|
|
15773
|
+
* @private
|
|
15774
|
+
*/
|
|
15431
15775
|
_points: function() {
|
|
15432
15776
|
var me = this;
|
|
15433
15777
|
var rect = me._rect;
|
|
@@ -15804,18 +16148,45 @@ var plugin = {
|
|
|
15804
16148
|
* @typedef { import('../../types/element').AnnotationElement } AnnotationElement
|
|
15805
16149
|
*/
|
|
15806
16150
|
var interaction = { modes: {
|
|
16151
|
+
/**
|
|
16152
|
+
* Point mode returns all elements that hit test based on the event position
|
|
16153
|
+
* @param {AnnotationElement[]} visibleElements - annotation elements which are visible
|
|
16154
|
+
* @param {ChartEvent} event - the event we are find things at
|
|
16155
|
+
* @return {AnnotationElement[]} - elements that are found
|
|
16156
|
+
*/
|
|
15807
16157
|
point(visibleElements, event) {
|
|
15808
16158
|
return filterElements(visibleElements, event, { intersect: true });
|
|
15809
16159
|
},
|
|
16160
|
+
/**
|
|
16161
|
+
* Nearest mode returns the element closest to the event position
|
|
16162
|
+
* @param {AnnotationElement[]} visibleElements - annotation elements which are visible
|
|
16163
|
+
* @param {ChartEvent} event - the event we are find things at
|
|
16164
|
+
* @param {Object} options - interaction options to use
|
|
16165
|
+
* @return {AnnotationElement[]} - elements that are found (only 1 element)
|
|
16166
|
+
*/
|
|
15810
16167
|
nearest(visibleElements, event, options) {
|
|
15811
16168
|
return getNearestItem(visibleElements, event, options);
|
|
15812
16169
|
},
|
|
16170
|
+
/**
|
|
16171
|
+
* x mode returns the elements that hit-test at the current x coordinate
|
|
16172
|
+
* @param {AnnotationElement[]} visibleElements - annotation elements which are visible
|
|
16173
|
+
* @param {ChartEvent} event - the event we are find things at
|
|
16174
|
+
* @param {Object} options - interaction options to use
|
|
16175
|
+
* @return {AnnotationElement[]} - elements that are found
|
|
16176
|
+
*/
|
|
15813
16177
|
x(visibleElements, event, options) {
|
|
15814
16178
|
return filterElements(visibleElements, event, {
|
|
15815
16179
|
intersect: options.intersect,
|
|
15816
16180
|
axis: "x"
|
|
15817
16181
|
});
|
|
15818
16182
|
},
|
|
16183
|
+
/**
|
|
16184
|
+
* y mode returns the elements that hit-test at the current y coordinate
|
|
16185
|
+
* @param {AnnotationElement[]} visibleElements - annotation elements which are visible
|
|
16186
|
+
* @param {ChartEvent} event - the event we are find things at
|
|
16187
|
+
* @param {Object} options - interaction options to use
|
|
16188
|
+
* @return {AnnotationElement[]} - elements that are found
|
|
16189
|
+
*/
|
|
15819
16190
|
y(visibleElements, event, options) {
|
|
15820
16191
|
return filterElements(visibleElements, event, {
|
|
15821
16192
|
intersect: options.intersect,
|
|
@@ -17954,11 +18325,10 @@ function getLineAdjust(line, arrowOpts) {
|
|
|
17954
18325
|
x: length,
|
|
17955
18326
|
y: width + adjust
|
|
17956
18327
|
};
|
|
17957
|
-
|
|
18328
|
+
return Math.abs(interpolateX(0, p1, {
|
|
17958
18329
|
x: 0,
|
|
17959
18330
|
y: adjust
|
|
17960
|
-
};
|
|
17961
|
-
return Math.abs(interpolateX(0, p1, p2));
|
|
18331
|
+
}));
|
|
17962
18332
|
}
|
|
17963
18333
|
function drawArrowHead(ctx, offset, adjust, arrowOpts) {
|
|
17964
18334
|
if (!arrowOpts || !arrowOpts.display) return;
|
|
@@ -25125,7 +25495,7 @@ var require_color = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
25125
25495
|
function index_esm(input) {
|
|
25126
25496
|
return new Color(input);
|
|
25127
25497
|
}
|
|
25128
|
-
|
|
25498
|
+
return Object.assign(index_esm, /* @__PURE__ */ Object.freeze({
|
|
25129
25499
|
__proto__: null,
|
|
25130
25500
|
Color,
|
|
25131
25501
|
b2n,
|
|
@@ -25148,8 +25518,7 @@ var require_color = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
25148
25518
|
rgbString,
|
|
25149
25519
|
rotate,
|
|
25150
25520
|
round
|
|
25151
|
-
});
|
|
25152
|
-
return Object.assign(index_esm, color);
|
|
25521
|
+
}));
|
|
25153
25522
|
}));
|
|
25154
25523
|
}));
|
|
25155
25524
|
//#endregion
|
|
@@ -26573,7 +26942,7 @@ var require_helpers_dataset = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
26573
26942
|
*/ function _createResolver(scopes, prefixes = [""], rootScopes, fallback, getTarget = () => scopes[0]) {
|
|
26574
26943
|
const finalRootScopes = rootScopes || scopes;
|
|
26575
26944
|
if (typeof fallback === "undefined") fallback = _resolve("_fallback", scopes);
|
|
26576
|
-
|
|
26945
|
+
return new Proxy({
|
|
26577
26946
|
[Symbol.toStringTag]: "Object",
|
|
26578
26947
|
_cacheable: true,
|
|
26579
26948
|
_scopes: scopes,
|
|
@@ -26581,30 +26950,44 @@ var require_helpers_dataset = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
26581
26950
|
_fallback: fallback,
|
|
26582
26951
|
_getTarget: getTarget,
|
|
26583
26952
|
override: (scope) => _createResolver([scope, ...scopes], prefixes, finalRootScopes, fallback)
|
|
26584
|
-
}
|
|
26585
|
-
|
|
26586
|
-
|
|
26953
|
+
}, {
|
|
26954
|
+
/**
|
|
26955
|
+
* A trap for the delete operator.
|
|
26956
|
+
*/ deleteProperty(target, prop) {
|
|
26587
26957
|
delete target[prop];
|
|
26588
26958
|
delete target._keys;
|
|
26589
26959
|
delete scopes[0][prop];
|
|
26590
26960
|
return true;
|
|
26591
26961
|
},
|
|
26592
|
-
|
|
26962
|
+
/**
|
|
26963
|
+
* A trap for getting property values.
|
|
26964
|
+
*/ get(target, prop) {
|
|
26593
26965
|
return _cached(target, prop, () => _resolveWithPrefixes(prop, prefixes, scopes, target));
|
|
26594
26966
|
},
|
|
26595
|
-
|
|
26967
|
+
/**
|
|
26968
|
+
* A trap for Object.getOwnPropertyDescriptor.
|
|
26969
|
+
* Also used by Object.hasOwnProperty.
|
|
26970
|
+
*/ getOwnPropertyDescriptor(target, prop) {
|
|
26596
26971
|
return Reflect.getOwnPropertyDescriptor(target._scopes[0], prop);
|
|
26597
26972
|
},
|
|
26598
|
-
|
|
26973
|
+
/**
|
|
26974
|
+
* A trap for Object.getPrototypeOf.
|
|
26975
|
+
*/ getPrototypeOf() {
|
|
26599
26976
|
return Reflect.getPrototypeOf(scopes[0]);
|
|
26600
26977
|
},
|
|
26601
|
-
|
|
26978
|
+
/**
|
|
26979
|
+
* A trap for the in operator.
|
|
26980
|
+
*/ has(target, prop) {
|
|
26602
26981
|
return getKeysFromAllScopes(target).includes(prop);
|
|
26603
26982
|
},
|
|
26604
|
-
|
|
26983
|
+
/**
|
|
26984
|
+
* A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.
|
|
26985
|
+
*/ ownKeys(target) {
|
|
26605
26986
|
return getKeysFromAllScopes(target);
|
|
26606
26987
|
},
|
|
26607
|
-
|
|
26988
|
+
/**
|
|
26989
|
+
* A trap for setting property values.
|
|
26990
|
+
*/ set(target, prop, value) {
|
|
26608
26991
|
const storage = target._storage || (target._storage = getTarget());
|
|
26609
26992
|
target[prop] = storage[prop] = value;
|
|
26610
26993
|
delete target._keys;
|
|
@@ -26631,30 +27014,45 @@ var require_helpers_dataset = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
26631
27014
|
override: (scope) => _attachContext(proxy.override(scope), context, subProxy, descriptorDefaults)
|
|
26632
27015
|
};
|
|
26633
27016
|
return new Proxy(cache, {
|
|
26634
|
-
|
|
27017
|
+
/**
|
|
27018
|
+
* A trap for the delete operator.
|
|
27019
|
+
*/ deleteProperty(target, prop) {
|
|
26635
27020
|
delete target[prop];
|
|
26636
27021
|
delete proxy[prop];
|
|
26637
27022
|
return true;
|
|
26638
27023
|
},
|
|
26639
|
-
|
|
27024
|
+
/**
|
|
27025
|
+
* A trap for getting property values.
|
|
27026
|
+
*/ get(target, prop, receiver) {
|
|
26640
27027
|
return _cached(target, prop, () => _resolveWithContext(target, prop, receiver));
|
|
26641
27028
|
},
|
|
26642
|
-
|
|
27029
|
+
/**
|
|
27030
|
+
* A trap for Object.getOwnPropertyDescriptor.
|
|
27031
|
+
* Also used by Object.hasOwnProperty.
|
|
27032
|
+
*/ getOwnPropertyDescriptor(target, prop) {
|
|
26643
27033
|
return target._descriptors.allKeys ? Reflect.has(proxy, prop) ? {
|
|
26644
27034
|
enumerable: true,
|
|
26645
27035
|
configurable: true
|
|
26646
27036
|
} : void 0 : Reflect.getOwnPropertyDescriptor(proxy, prop);
|
|
26647
27037
|
},
|
|
26648
|
-
|
|
27038
|
+
/**
|
|
27039
|
+
* A trap for Object.getPrototypeOf.
|
|
27040
|
+
*/ getPrototypeOf() {
|
|
26649
27041
|
return Reflect.getPrototypeOf(proxy);
|
|
26650
27042
|
},
|
|
26651
|
-
|
|
27043
|
+
/**
|
|
27044
|
+
* A trap for the in operator.
|
|
27045
|
+
*/ has(target, prop) {
|
|
26652
27046
|
return Reflect.has(proxy, prop);
|
|
26653
27047
|
},
|
|
26654
|
-
|
|
27048
|
+
/**
|
|
27049
|
+
* A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.
|
|
27050
|
+
*/ ownKeys() {
|
|
26655
27051
|
return Reflect.ownKeys(proxy);
|
|
26656
27052
|
},
|
|
26657
|
-
|
|
27053
|
+
/**
|
|
27054
|
+
* A trap for setting property values.
|
|
27055
|
+
*/ set(target, prop, value) {
|
|
26658
27056
|
proxy[prop] = value;
|
|
26659
27057
|
delete target[prop];
|
|
26660
27058
|
return true;
|
|
@@ -28991,9 +29389,7 @@ var require_chart = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
28991
29389
|
if (value === actualBase) base -= size / 2;
|
|
28992
29390
|
const startPixel = vScale.getPixelForDecimal(0);
|
|
28993
29391
|
const endPixel = vScale.getPixelForDecimal(1);
|
|
28994
|
-
|
|
28995
|
-
const max = Math.max(startPixel, endPixel);
|
|
28996
|
-
base = Math.max(Math.min(base, max), min);
|
|
29392
|
+
base = Math.max(Math.min(base, Math.max(startPixel, endPixel)), Math.min(startPixel, endPixel));
|
|
28997
29393
|
head = base + size;
|
|
28998
29394
|
if (_stacked && !floating) parsed._stacks[vScale.axis]._visualValues[datasetIndex] = vScale.getValueForPixel(head) - vScale.getValueForPixel(base);
|
|
28999
29395
|
}
|
|
@@ -39290,16 +39686,5 @@ var getGroupedColorScheme = (length, startingColor) => {
|
|
|
39290
39686
|
};
|
|
39291
39687
|
//#endregion
|
|
39292
39688
|
export { AlignOptions, AnnotationType, AxisType, BarChartWithLegend as BarChart, COLORS, ChartDirection, ChartHoverMode, ChartType, CursorStyle, DragAxis, AnnotationType$1 as DraggableAnnotationType, Events, GradientDirection, Key, LineChartWithLegend as LineChart, LineMarkerDirection, LineMarkerLabelPosition, LineMarkerSide, LineMarkerTextAlign, PanZoomMode, PieChartWithLegend as PieChart, PointStyle, PointType, Position, ScaleType, ScatterChartWithLegend as ScatterChart, TooltipLabel, getGroupedColorScheme, initializeLineChart };
|
|
39293
|
-
|
|
39294
|
-
//#region \0vite/all-css
|
|
39295
|
-
try {
|
|
39296
|
-
if (typeof document != "undefined") {
|
|
39297
|
-
var elementStyle = document.createElement("style");
|
|
39298
|
-
elementStyle.appendChild(document.createTextNode("html[data-theme='dark'] ._chart_e3qdd_1 canvas {\n filter: invert(1) hue-rotate(180deg);\n}\n._chart_e3qdd_1 {\n border: 1px solid rgba(255, 255, 255, 0);\n position: relative;\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n._chart_e3qdd_1 ._canvas_e3qdd_11 {\n flex-grow: 1;\n min-height: 0;\n position: relative;\n}\n._chart_e3qdd_1 ._canvas_e3qdd_11 canvas {\n width: 100% !important;\n height: 100% !important;\n}\n._chart_e3qdd_1._fixedHeight_e3qdd_20 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n height: auto;\n}\n._chart_e3qdd_1._stretchHeight_e3qdd_26 {\n display: flex;\n align-items: stretch;\n justify-content: stretch;\n height: 100%;\n}\n._chart_e3qdd_1._squareAspectRatio_e3qdd_32 {\n aspect-ratio: 1;\n min-height: 0;\n min-width: 0;\n}\n._chart_e3qdd_1:focus {\n outline: none;\n}\n._chart_e3qdd_1::-moz-focus-inner {\n border: 0;\n}\n._zoomForm_e3qdd_43 {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n right: 0;\n}\n._zoomForm_e3qdd_43 ._zoomReset_e3qdd_51 {\n margin-left: 10px;\n}\n._zoomForm_e3qdd_43 ._help_e3qdd_54 {\n margin-left: 5px;\n line-height: 0;\n}\n._autoWeight_e3qdd_58 {\n width: auto;\n height: auto;\n}\n._table_e3qdd_62 {\n overflow: auto;\n}\n._controls_1edjs_1 {\n display: flex;\n align-items: center;\n gap: var(--padding-xs);\n}\n._buttons_1edjs_6 {\n display: flex;\n flex-grow: 1;\n align-items: flex-start;\n justify-content: flex-end;\n margin-left: auto;\n gap: var(--padding-xxs);\n}\n._legend_wpro0_1 {\n position: absolute;\n opacity: 0.9;\n display: flex;\n flex-direction: column;\n z-index: 1;\n}\n._legend_wpro0_1._isDragging_wpro0_8 {\n opacity: 0;\n}\n._legendItems_wpro0_11 {\n background-color: var(--color-background-raised);\n border: 1px solid var(--color-border);\n padding: 4px 8px;\n border-radius: 2px;\n overflow-y: auto;\n max-height: 100%;\n overflow: overlay;\n --scrollbar-color: #00000040;\n}\n._legendItems_wpro0_11::-webkit-scrollbar {\n display: block;\n width: 16px;\n z-index: 2;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-button {\n display: none;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-track {\n background-color: #00000000;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-track-piece {\n background-color: #00000000;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-thumb {\n background-color: #00000000;\n border: 5px solid transparent;\n border-radius: 24px;\n box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-corner {\n background: rgba(0, 0, 0, 0);\n}\n._legend_wpro0_1._isDragging_wpro0_8 ._legendItems_wpro0_11._legendItems_wpro0_11 {\n pointer-events: none;\n}\n._legend_wpro0_1._isHidden_wpro0_47 ._legendItems_wpro0_11._legendItems_wpro0_11 {\n display: none;\n}\n._legendToggle_wpro0_50 {\n position: absolute;\n top: 0;\n right: 0;\n transform: translate(50%, -50%);\n display: none;\n}\n._legend_wpro0_1._isHidden_wpro0_47 ._legendToggle_wpro0_50._legendToggle_wpro0_50,\n._legend_wpro0_1:hover ._legendToggle_wpro0_50._legendToggle_wpro0_50 {\n display: block;\n}\n._legend_wpro0_1:active ._legendToggle_wpro0_50._legendToggle_wpro0_50:not(:hover) {\n display: none;\n}\n._legend_wpro0_1._isHidden_wpro0_47 ._legendToggle_wpro0_50._legendToggle_wpro0_50 {\n position: static;\n transform: none;\n}\n._legend_wpro0_1._isDragging_wpro0_8 ._legendToggle_wpro0_50._legendToggle_wpro0_50 {\n display: none;\n}\n._legendItem_wpro0_11 {\n display: flex;\n align-items: flex-start;\n gap: 8px;\n user-select: none;\n cursor: pointer;\n font-size: 12px;\n line-height: 16px;\n}\n._legendItemSymbol_wpro0_80 {\n display: flex;\n align-items: center;\n height: 16px;\n position: relative;\n flex-shrink: 0;\n}\nhtml[data-theme='dark'] ._legendItemSymbol_wpro0_80._legendItemSymbol_wpro0_80 {\n filter: invert(1) hue-rotate(180deg);\n}\n._legendItemBox_wpro0_90 {\n width: 100%;\n height: 12px;\n display: block;\n}\n._legendItemLine_wpro0_95 {\n position: absolute;\n display: flex;\n top: 50%;\n left: 0;\n width: 100%;\n transform: translateY(-50%);\n}\n._legendItemPoint_wpro0_103 {\n position: absolute;\n display: flex;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n._isHidden_wpro0_47 ._legendItemText_wpro0_110._legendItemText_wpro0_110 {\n text-decoration: line-through;\n}\n._scrollbars_wpro0_113 {\n overflow: overlay;\n --scrollbar-color: #00000040;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar {\n display: block;\n width: 16px;\n z-index: 2;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-button {\n display: none;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-track {\n background-color: #00000000;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-track-piece {\n background-color: #00000000;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-thumb {\n background-color: #00000000;\n border: 5px solid transparent;\n border-radius: 24px;\n box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-corner {\n background: rgba(0, 0, 0, 0);\n}\n._dropzoneContainer_wpro0_140 {\n position: absolute;\n}\n._dropzone_wpro0_140 {\n position: absolute;\n width: 50%;\n height: 50%;\n display: flex;\n}\n._dropzone_wpro0_140._left_wpro0_149 {\n left: 0;\n justify-content: flex-start;\n}\n._dropzone_wpro0_140._right_wpro0_153 {\n right: 0;\n justify-content: flex-end;\n}\n._dropzone_wpro0_140._top_wpro0_157 {\n top: 0;\n align-items: flex-start;\n}\n._dropzone_wpro0_140._bottom_wpro0_161 {\n bottom: 0;\n align-items: flex-end;\n}\n._dropzonePlaceholder_wpro0_165 {\n position: absolute;\n background-color: rgba(0, 0, 0, 0.05);\n display: none;\n}\n[data-theme='dark'] ._dropzonePlaceholder_wpro0_165 {\n background-color: rgba(255, 255, 255, 0.05);\n}\n._isActive_wpro0_173 ._dropzonePlaceholder_wpro0_165._dropzonePlaceholder_wpro0_165 {\n display: block;\n}\n._resizeContainer_wpro0_176 {\n position: absolute;\n inset: 0;\n z-index: -1;\n}\nhtml[data-theme='dark'] ._chart_1jdnu_1 canvas {\n filter: invert(1) hue-rotate(180deg);\n}\n._chart_1jdnu_1 {\n border: 1px solid rgba(255, 255, 255, 0);\n padding-top: 10px;\n position: relative;\n}\n._chart_1jdnu_1 canvas {\n width: 100% !important;\n height: 100% !important;\n}\n._chart_1jdnu_1._fixedHeight_1jdnu_13 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n height: auto;\n}\n._chart_1jdnu_1._stretchHeight_1jdnu_19 {\n display: flex;\n align-items: stretch;\n justify-content: stretch;\n height: 100%;\n}\n._chart_1jdnu_1:focus {\n border: 1px solid #85b7d9;\n outline: none;\n}\n._chart_1jdnu_1::-moz-focus-inner {\n border: 0;\n}\n._zoomForm_1jdnu_32 {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n right: 0;\n}\n._zoomForm_1jdnu_32 ._zoomReset_1jdnu_40 {\n margin-left: 10px;\n}\n._zoomForm_1jdnu_32 ._help_1jdnu_43 {\n margin-left: 5px;\n line-height: 0;\n}\n._autoWeight_1jdnu_47 {\n width: 'auto';\n height: 'auto';\n}\nhtml[data-theme='dark'] ._chart_x1sru_1 canvas {\n filter: invert(1) hue-rotate(180deg);\n}\n._chart_x1sru_1 {\n border: 1px solid rgba(255, 255, 255, 0);\n position: relative;\n display: flex;\n flex-direction: column;\n}\n._chart_x1sru_1 ._canvas_x1sru_10 {\n flex-grow: 1;\n min-height: 0;\n position: relative;\n}\n._chart_x1sru_1 ._canvas_x1sru_10 canvas {\n width: 100% !important;\n height: 100% !important;\n}\n._chart_x1sru_1._fixedHeight_x1sru_19 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n height: auto;\n}\n._chart_x1sru_1._stretchHeight_x1sru_25 {\n display: flex;\n align-items: stretch;\n justify-content: stretch;\n height: 100%;\n}\n._chart_x1sru_1:focus {\n border: 1px solid #85b7d9;\n outline: none;\n}\n._chart_x1sru_1::-moz-focus-inner {\n border: 0;\n}\n._zoomForm_x1sru_38 {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n right: 0;\n}\n._zoomForm_x1sru_38 ._zoomReset_x1sru_46 {\n margin-left: 10px;\n}\n._zoomForm_x1sru_38 ._help_x1sru_49 {\n margin-left: 5px;\n line-height: 0;\n}\n._autoWeight_x1sru_53 {\n width: auto;\n height: auto;\n}\n._actions_x1sru_57 {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n}\nhtml[data-theme='dark'] ._chart_1qlu1_1 canvas {\n filter: invert(1) hue-rotate(180deg);\n}\n._chart_1qlu1_1 {\n border: 1px solid rgba(255, 255, 255, 0);\n position: relative;\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n._chart_1qlu1_1 ._canvas_1qlu1_11 {\n flex-grow: 1;\n min-height: 0;\n position: relative;\n}\n._chart_1qlu1_1 ._canvas_1qlu1_11 canvas {\n width: 100% !important;\n height: 100% !important;\n}\n._chart_1qlu1_1._fixedHeight_1qlu1_20 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n height: auto;\n}\n._chart_1qlu1_1._stretchHeight_1qlu1_26 {\n display: flex;\n align-items: stretch;\n justify-content: stretch;\n height: 100%;\n}\n._chart_1qlu1_1._squareAspectRatio_1qlu1_32 {\n aspect-ratio: 1;\n min-height: 0;\n min-width: 0;\n}\n._chart_1qlu1_1:focus {\n outline: none;\n}\n._chart_1qlu1_1::-moz-focus-inner {\n border: 0;\n}\n._zoomForm_1qlu1_43 {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n right: 0;\n}\n._zoomForm_1qlu1_43 ._zoomReset_1qlu1_51 {\n margin-left: 10px;\n}\n._zoomForm_1qlu1_43 ._help_1qlu1_54 {\n margin-left: 5px;\n line-height: 0;\n}\n._autoWeight_1qlu1_58 {\n width: 'auto';\n height: 'auto';\n}\n/*$vite$:1*/"));
|
|
39299
|
-
document.head.appendChild(elementStyle);
|
|
39300
|
-
}
|
|
39301
|
-
} catch (e) {
|
|
39302
|
-
console.error("vite-plugin-css-injected-by-js", e);
|
|
39303
|
-
}
|
|
39304
|
-
//#endregion
|
|
39305
|
-
})();
|
|
39689
|
+
|
|
39690
|
+
(function() { try { if (typeof document != "undefined") { var elementStyle = document.createElement("style"); elementStyle.appendChild(document.createTextNode("html[data-theme='dark'] ._chart_e3qdd_1 canvas {\n filter: invert(1) hue-rotate(180deg);\n}\n._chart_e3qdd_1 {\n border: 1px solid rgba(255, 255, 255, 0);\n position: relative;\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n._chart_e3qdd_1 ._canvas_e3qdd_11 {\n flex-grow: 1;\n min-height: 0;\n position: relative;\n}\n._chart_e3qdd_1 ._canvas_e3qdd_11 canvas {\n width: 100% !important;\n height: 100% !important;\n}\n._chart_e3qdd_1._fixedHeight_e3qdd_20 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n height: auto;\n}\n._chart_e3qdd_1._stretchHeight_e3qdd_26 {\n display: flex;\n align-items: stretch;\n justify-content: stretch;\n height: 100%;\n}\n._chart_e3qdd_1._squareAspectRatio_e3qdd_32 {\n aspect-ratio: 1;\n min-height: 0;\n min-width: 0;\n}\n._chart_e3qdd_1:focus {\n outline: none;\n}\n._chart_e3qdd_1::-moz-focus-inner {\n border: 0;\n}\n._zoomForm_e3qdd_43 {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n right: 0;\n}\n._zoomForm_e3qdd_43 ._zoomReset_e3qdd_51 {\n margin-left: 10px;\n}\n._zoomForm_e3qdd_43 ._help_e3qdd_54 {\n margin-left: 5px;\n line-height: 0;\n}\n._autoWeight_e3qdd_58 {\n width: auto;\n height: auto;\n}\n._table_e3qdd_62 {\n overflow: auto;\n}\n._controls_1edjs_1 {\n display: flex;\n align-items: center;\n gap: var(--padding-xs);\n}\n._buttons_1edjs_6 {\n display: flex;\n flex-grow: 1;\n align-items: flex-start;\n justify-content: flex-end;\n margin-left: auto;\n gap: var(--padding-xxs);\n}\n._legend_wpro0_1 {\n position: absolute;\n opacity: 0.9;\n display: flex;\n flex-direction: column;\n z-index: 1;\n}\n._legend_wpro0_1._isDragging_wpro0_8 {\n opacity: 0;\n}\n._legendItems_wpro0_11 {\n background-color: var(--color-background-raised);\n border: 1px solid var(--color-border);\n padding: 4px 8px;\n border-radius: 2px;\n overflow-y: auto;\n max-height: 100%;\n overflow: overlay;\n --scrollbar-color: #00000040;\n}\n._legendItems_wpro0_11::-webkit-scrollbar {\n display: block;\n width: 16px;\n z-index: 2;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-button {\n display: none;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-track {\n background-color: #00000000;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-track-piece {\n background-color: #00000000;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-thumb {\n background-color: #00000000;\n border: 5px solid transparent;\n border-radius: 24px;\n box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;\n}\n._legendItems_wpro0_11::-webkit-scrollbar-corner {\n background: rgba(0, 0, 0, 0);\n}\n._legend_wpro0_1._isDragging_wpro0_8 ._legendItems_wpro0_11._legendItems_wpro0_11 {\n pointer-events: none;\n}\n._legend_wpro0_1._isHidden_wpro0_47 ._legendItems_wpro0_11._legendItems_wpro0_11 {\n display: none;\n}\n._legendToggle_wpro0_50 {\n position: absolute;\n top: 0;\n right: 0;\n transform: translate(50%, -50%);\n display: none;\n}\n._legend_wpro0_1._isHidden_wpro0_47 ._legendToggle_wpro0_50._legendToggle_wpro0_50,\n._legend_wpro0_1:hover ._legendToggle_wpro0_50._legendToggle_wpro0_50 {\n display: block;\n}\n._legend_wpro0_1:active ._legendToggle_wpro0_50._legendToggle_wpro0_50:not(:hover) {\n display: none;\n}\n._legend_wpro0_1._isHidden_wpro0_47 ._legendToggle_wpro0_50._legendToggle_wpro0_50 {\n position: static;\n transform: none;\n}\n._legend_wpro0_1._isDragging_wpro0_8 ._legendToggle_wpro0_50._legendToggle_wpro0_50 {\n display: none;\n}\n._legendItem_wpro0_11 {\n display: flex;\n align-items: flex-start;\n gap: 8px;\n user-select: none;\n cursor: pointer;\n font-size: 12px;\n line-height: 16px;\n}\n._legendItemSymbol_wpro0_80 {\n display: flex;\n align-items: center;\n height: 16px;\n position: relative;\n flex-shrink: 0;\n}\nhtml[data-theme='dark'] ._legendItemSymbol_wpro0_80._legendItemSymbol_wpro0_80 {\n filter: invert(1) hue-rotate(180deg);\n}\n._legendItemBox_wpro0_90 {\n width: 100%;\n height: 12px;\n display: block;\n}\n._legendItemLine_wpro0_95 {\n position: absolute;\n display: flex;\n top: 50%;\n left: 0;\n width: 100%;\n transform: translateY(-50%);\n}\n._legendItemPoint_wpro0_103 {\n position: absolute;\n display: flex;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n._isHidden_wpro0_47 ._legendItemText_wpro0_110._legendItemText_wpro0_110 {\n text-decoration: line-through;\n}\n._scrollbars_wpro0_113 {\n overflow: overlay;\n --scrollbar-color: #00000040;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar {\n display: block;\n width: 16px;\n z-index: 2;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-button {\n display: none;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-track {\n background-color: #00000000;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-track-piece {\n background-color: #00000000;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-thumb {\n background-color: #00000000;\n border: 5px solid transparent;\n border-radius: 24px;\n box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;\n}\n._scrollbars_wpro0_113::-webkit-scrollbar-corner {\n background: rgba(0, 0, 0, 0);\n}\n._dropzoneContainer_wpro0_140 {\n position: absolute;\n}\n._dropzone_wpro0_140 {\n position: absolute;\n width: 50%;\n height: 50%;\n display: flex;\n}\n._dropzone_wpro0_140._left_wpro0_149 {\n left: 0;\n justify-content: flex-start;\n}\n._dropzone_wpro0_140._right_wpro0_153 {\n right: 0;\n justify-content: flex-end;\n}\n._dropzone_wpro0_140._top_wpro0_157 {\n top: 0;\n align-items: flex-start;\n}\n._dropzone_wpro0_140._bottom_wpro0_161 {\n bottom: 0;\n align-items: flex-end;\n}\n._dropzonePlaceholder_wpro0_165 {\n position: absolute;\n background-color: rgba(0, 0, 0, 0.05);\n display: none;\n}\n[data-theme='dark'] ._dropzonePlaceholder_wpro0_165 {\n background-color: rgba(255, 255, 255, 0.05);\n}\n._isActive_wpro0_173 ._dropzonePlaceholder_wpro0_165._dropzonePlaceholder_wpro0_165 {\n display: block;\n}\n._resizeContainer_wpro0_176 {\n position: absolute;\n inset: 0;\n z-index: -1;\n}\nhtml[data-theme='dark'] ._chart_1jdnu_1 canvas {\n filter: invert(1) hue-rotate(180deg);\n}\n._chart_1jdnu_1 {\n border: 1px solid rgba(255, 255, 255, 0);\n padding-top: 10px;\n position: relative;\n}\n._chart_1jdnu_1 canvas {\n width: 100% !important;\n height: 100% !important;\n}\n._chart_1jdnu_1._fixedHeight_1jdnu_13 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n height: auto;\n}\n._chart_1jdnu_1._stretchHeight_1jdnu_19 {\n display: flex;\n align-items: stretch;\n justify-content: stretch;\n height: 100%;\n}\n._chart_1jdnu_1:focus {\n border: 1px solid #85b7d9;\n outline: none;\n}\n._chart_1jdnu_1::-moz-focus-inner {\n border: 0;\n}\n._zoomForm_1jdnu_32 {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n right: 0;\n}\n._zoomForm_1jdnu_32 ._zoomReset_1jdnu_40 {\n margin-left: 10px;\n}\n._zoomForm_1jdnu_32 ._help_1jdnu_43 {\n margin-left: 5px;\n line-height: 0;\n}\n._autoWeight_1jdnu_47 {\n width: 'auto';\n height: 'auto';\n}\nhtml[data-theme='dark'] ._chart_x1sru_1 canvas {\n filter: invert(1) hue-rotate(180deg);\n}\n._chart_x1sru_1 {\n border: 1px solid rgba(255, 255, 255, 0);\n position: relative;\n display: flex;\n flex-direction: column;\n}\n._chart_x1sru_1 ._canvas_x1sru_10 {\n flex-grow: 1;\n min-height: 0;\n position: relative;\n}\n._chart_x1sru_1 ._canvas_x1sru_10 canvas {\n width: 100% !important;\n height: 100% !important;\n}\n._chart_x1sru_1._fixedHeight_x1sru_19 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n height: auto;\n}\n._chart_x1sru_1._stretchHeight_x1sru_25 {\n display: flex;\n align-items: stretch;\n justify-content: stretch;\n height: 100%;\n}\n._chart_x1sru_1:focus {\n border: 1px solid #85b7d9;\n outline: none;\n}\n._chart_x1sru_1::-moz-focus-inner {\n border: 0;\n}\n._zoomForm_x1sru_38 {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n right: 0;\n}\n._zoomForm_x1sru_38 ._zoomReset_x1sru_46 {\n margin-left: 10px;\n}\n._zoomForm_x1sru_38 ._help_x1sru_49 {\n margin-left: 5px;\n line-height: 0;\n}\n._autoWeight_x1sru_53 {\n width: auto;\n height: auto;\n}\n._actions_x1sru_57 {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n}\nhtml[data-theme='dark'] ._chart_1qlu1_1 canvas {\n filter: invert(1) hue-rotate(180deg);\n}\n._chart_1qlu1_1 {\n border: 1px solid rgba(255, 255, 255, 0);\n position: relative;\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n._chart_1qlu1_1 ._canvas_1qlu1_11 {\n flex-grow: 1;\n min-height: 0;\n position: relative;\n}\n._chart_1qlu1_1 ._canvas_1qlu1_11 canvas {\n width: 100% !important;\n height: 100% !important;\n}\n._chart_1qlu1_1._fixedHeight_1qlu1_20 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n height: auto;\n}\n._chart_1qlu1_1._stretchHeight_1qlu1_26 {\n display: flex;\n align-items: stretch;\n justify-content: stretch;\n height: 100%;\n}\n._chart_1qlu1_1._squareAspectRatio_1qlu1_32 {\n aspect-ratio: 1;\n min-height: 0;\n min-width: 0;\n}\n._chart_1qlu1_1:focus {\n outline: none;\n}\n._chart_1qlu1_1::-moz-focus-inner {\n border: 0;\n}\n._zoomForm_1qlu1_43 {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n right: 0;\n}\n._zoomForm_1qlu1_43 ._zoomReset_1qlu1_51 {\n margin-left: 10px;\n}\n._zoomForm_1qlu1_43 ._help_1qlu1_54 {\n margin-left: 5px;\n line-height: 0;\n}\n._autoWeight_1qlu1_58 {\n width: 'auto';\n height: 'auto';\n}\n/*$vite$:1*/")); document.head.appendChild(elementStyle); } } catch (e) { console.error("vite-plugin-css-injected-by-js", e); }})();
|