overview-components 1.0.93 → 1.0.96
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/_virtual/FileSaver.min.js +4 -0
- package/dist/_virtual/___vite-browser-external.js +6 -0
- package/dist/_virtual/__vite-browser-external.js +4 -0
- package/dist/_virtual/_commonjs-dynamic-modules.js +6 -0
- package/dist/_virtual/_commonjsHelpers.js +28 -0
- package/dist/_virtual/lodash.js +4 -0
- package/dist/_virtual/pdf.js +4 -0
- package/dist/assets/generated/locales/de.js +72 -70
- package/dist/assets/generated/locales/en.js +72 -70
- package/dist/assets/generated/locales/fr.js +72 -70
- package/dist/assets/generated/locales/hr.js +72 -70
- package/dist/assets/generated/locales/it.js +72 -70
- package/dist/assets/generated/locales/pl.js +72 -70
- package/dist/assets/generated/locales/ro.js +72 -70
- package/dist/assets/generated/locales/sk.js +72 -70
- package/dist/assets/generated/locales/sr.js +72 -70
- package/dist/components/lit-attachments-tab.js +271 -432
- package/dist/components/lit-badge.js +40 -40
- package/dist/components/lit-case-variables-tab.js +382 -497
- package/dist/components/lit-chart.js +378 -406
- package/dist/components/lit-data-grid-tanstack.js +1150 -1663
- package/dist/components/lit-filter-modal.js +198 -230
- package/dist/components/lit-multiselect-item.js +301 -477
- package/dist/components/lit-section-tab.js +73 -85
- package/dist/components/lit-tabs-overview.js +191 -232
- package/dist/components/react-wrappers/attachments-tab.js +13 -8
- package/dist/components/react-wrappers/badge.js +13 -8
- package/dist/components/react-wrappers/button.js +13 -8
- package/dist/components/react-wrappers/case-variables-tab.js +13 -8
- package/dist/components/react-wrappers/chart.js +13 -8
- package/dist/components/react-wrappers/data-grid-tanstack.js +13 -8
- package/dist/components/react-wrappers/filter-modal.js +13 -8
- package/dist/components/react-wrappers/progress-bar.js +13 -8
- package/dist/components/react-wrappers/section-tab.js +13 -8
- package/dist/components/react-wrappers/tabs-overview.js +13 -8
- package/dist/index.js +42 -43
- package/dist/libs/xlsx.mini.min.js +10 -0
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +432 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +306 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +127 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +127 -0
- package/dist/node_modules/@kurkle/color/dist/color.esm.js +448 -0
- package/dist/node_modules/@lit/localize/init/install.js +11 -0
- package/dist/node_modules/@lit/localize/init/runtime.js +42 -0
- package/dist/node_modules/@lit/localize/internal/default-msg.js +10 -0
- package/dist/node_modules/@lit/localize/internal/deferred.js +21 -0
- package/dist/node_modules/@lit/localize/internal/fnv1a64.js +17 -0
- package/dist/node_modules/@lit/localize/internal/id-generation.js +14 -0
- package/dist/node_modules/@lit/localize/internal/locale-status-event.js +9 -0
- package/dist/node_modules/@lit/localize/internal/runtime-msg.js +42 -0
- package/dist/node_modules/@lit/localize/internal/str-tag.js +15 -0
- package/dist/node_modules/@lit/react/create-component.js +35 -0
- package/dist/node_modules/@lit/reactive-element/css-tag.js +50 -0
- package/dist/node_modules/@lit/reactive-element/decorators/base.js +9 -0
- package/dist/node_modules/@lit/reactive-element/decorators/custom-element.js +13 -0
- package/dist/node_modules/@lit/reactive-element/decorators/property.js +37 -0
- package/dist/node_modules/@lit/reactive-element/decorators/query.js +20 -0
- package/dist/node_modules/@lit/reactive-element/decorators/state.js +12 -0
- package/dist/node_modules/@lit/reactive-element/reactive-element.js +250 -0
- package/dist/node_modules/@tanstack/lit-table/build/lib/index.js +104 -0
- package/dist/node_modules/@tanstack/lit-virtual/dist/esm/index.js +40 -0
- package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1956 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +490 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +52 -0
- package/dist/node_modules/chart.js/dist/chart.js +7122 -0
- package/dist/node_modules/chart.js/dist/chunks/helpers.segment.js +1691 -0
- package/dist/node_modules/file-saver/dist/FileSaver.min.js +74 -0
- package/dist/node_modules/lit-element/lit-element.js +51 -0
- package/dist/node_modules/lit-html/async-directive.js +69 -0
- package/dist/node_modules/lit-html/directive-helpers.js +45 -0
- package/dist/node_modules/lit-html/directive.js +27 -0
- package/dist/node_modules/lit-html/directives/ref.js +42 -0
- package/dist/node_modules/lit-html/directives/repeat.js +61 -0
- package/dist/node_modules/lit-html/directives/style-map.js +36 -0
- package/dist/node_modules/lit-html/directives/unsafe-html.js +27 -0
- package/dist/node_modules/lit-html/lit-html.js +243 -0
- package/dist/node_modules/lodash/lodash.js +3678 -0
- package/dist/node_modules/luxon/src/datetime.js +1793 -0
- package/dist/node_modules/luxon/src/duration.js +723 -0
- package/dist/node_modules/luxon/src/errors.js +40 -0
- package/dist/node_modules/luxon/src/impl/conversions.js +92 -0
- package/dist/node_modules/luxon/src/impl/diff.js +36 -0
- package/dist/node_modules/luxon/src/impl/digits.js +74 -0
- package/dist/node_modules/luxon/src/impl/english.js +138 -0
- package/dist/node_modules/luxon/src/impl/formats.js +150 -0
- package/dist/node_modules/luxon/src/impl/formatter.js +245 -0
- package/dist/node_modules/luxon/src/impl/invalid.js +11 -0
- package/dist/node_modules/luxon/src/impl/locale.js +282 -0
- package/dist/node_modules/luxon/src/impl/regexParser.js +202 -0
- package/dist/node_modules/luxon/src/impl/tokenParser.js +329 -0
- package/dist/node_modules/luxon/src/impl/util.js +206 -0
- package/dist/node_modules/luxon/src/impl/zoneUtil.js +19 -0
- package/dist/node_modules/luxon/src/info.js +180 -0
- package/dist/node_modules/luxon/src/interval.js +466 -0
- package/dist/node_modules/luxon/src/settings.js +150 -0
- package/dist/node_modules/luxon/src/zone.js +88 -0
- package/dist/node_modules/luxon/src/zones/IANAZone.js +178 -0
- package/dist/node_modules/luxon/src/zones/fixedOffsetZone.js +125 -0
- package/dist/node_modules/luxon/src/zones/invalidZone.js +41 -0
- package/dist/node_modules/luxon/src/zones/systemZone.js +47 -0
- package/dist/node_modules/pdfjs-dist/build/pdf.js +10310 -0
- package/dist/node_modules/sortablejs/modular/sortable.esm.js +1261 -0
- package/dist/shared/lit-button.js +66 -80
- package/dist/shared/lit-progress-bar.js +35 -33
- package/dist/shared/simple-tooltip.js +124 -198
- package/dist/shared/styles/button-shared-styles.js +8 -4
- package/dist/utils/currency.js +12 -15
- package/dist/utils/custom-filters.js +46 -80
- package/dist/utils/date.js +14 -21
- package/dist/utils/getOperatorByType.js +51 -65
- package/dist/utils/localization.js +29 -431
- package/dist/vite.svg +1 -0
- package/package.json +76 -74
- package/dist/assets/generated/locales/de.js.map +0 -1
- package/dist/assets/generated/locales/en.js.map +0 -1
- package/dist/assets/generated/locales/fr.js.map +0 -1
- package/dist/assets/generated/locales/hr.js.map +0 -1
- package/dist/assets/generated/locales/it.js.map +0 -1
- package/dist/assets/generated/locales/pl.js.map +0 -1
- package/dist/assets/generated/locales/ro.js.map +0 -1
- package/dist/assets/generated/locales/sk.js.map +0 -1
- package/dist/assets/generated/locales/sr.js.map +0 -1
- package/dist/assets/icons/iconGlyphs.js +0 -679
- package/dist/assets/icons/iconGlyphs.js.map +0 -1
- package/dist/assets/illustration/delete-illustration.js +0 -96
- package/dist/assets/illustration/delete-illustration.js.map +0 -1
- package/dist/assets/illustration/no-content.js +0 -167
- package/dist/assets/illustration/no-content.js.map +0 -1
- package/dist/assets/illustration/no-preview.js +0 -133
- package/dist/assets/illustration/no-preview.js.map +0 -1
- package/dist/assets/illustration/not-found.js +0 -106
- package/dist/assets/illustration/not-found.js.map +0 -1
- package/dist/assets/illustration/settings-illustration.js +0 -176
- package/dist/assets/illustration/settings-illustration.js.map +0 -1
- package/dist/components/components-settings/attachments-tab-settings.js +0 -226
- package/dist/components/components-settings/attachments-tab-settings.js.map +0 -1
- package/dist/components/components-settings/data-grid-settings.js +0 -318
- package/dist/components/components-settings/data-grid-settings.js.map +0 -1
- package/dist/components/components-settings/section-tab-settings.js +0 -269
- package/dist/components/components-settings/section-tab-settings.js.map +0 -1
- package/dist/components/components-settings/tabs-overview-settings.js +0 -439
- package/dist/components/components-settings/tabs-overview-settings.js.map +0 -1
- package/dist/components/lit-attachments-tab.js.map +0 -1
- package/dist/components/lit-badge.js.map +0 -1
- package/dist/components/lit-case-variables-tab.js.map +0 -1
- package/dist/components/lit-chart.js.map +0 -1
- package/dist/components/lit-data-grid-tanstack.js.map +0 -1
- package/dist/components/lit-filter-modal.js.map +0 -1
- package/dist/components/lit-multiselect-item.js.map +0 -1
- package/dist/components/lit-section-tab.js.map +0 -1
- package/dist/components/lit-tabs-overview.js.map +0 -1
- package/dist/components/modals/lit-confirm-modal.js +0 -120
- package/dist/components/modals/lit-confirm-modal.js.map +0 -1
- package/dist/components/modals/lit-delete-modal.js +0 -128
- package/dist/components/modals/lit-delete-modal.js.map +0 -1
- package/dist/components/react-wrappers/attachments-tab.js.map +0 -1
- package/dist/components/react-wrappers/badge.js.map +0 -1
- package/dist/components/react-wrappers/button.js.map +0 -1
- package/dist/components/react-wrappers/case-variables-tab.js.map +0 -1
- package/dist/components/react-wrappers/chart.js.map +0 -1
- package/dist/components/react-wrappers/data-grid-tanstack.js.map +0 -1
- package/dist/components/react-wrappers/filter-modal.js.map +0 -1
- package/dist/components/react-wrappers/progress-bar.js.map +0 -1
- package/dist/components/react-wrappers/section-tab.js.map +0 -1
- package/dist/components/react-wrappers/tabs-overview.js.map +0 -1
- package/dist/data/translations.js +0 -2763
- package/dist/data/translations.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/schemas/index.js +0 -17
- package/dist/schemas/index.js.map +0 -1
- package/dist/schemas/lit-attachments-tab-document.schema.js +0 -20
- package/dist/schemas/lit-attachments-tab-document.schema.js.map +0 -1
- package/dist/schemas/lit-attachments-tab-settings-value.schema.js +0 -15
- package/dist/schemas/lit-attachments-tab-settings-value.schema.js.map +0 -1
- package/dist/schemas/lit-attachments-tab.schema.js +0 -32
- package/dist/schemas/lit-attachments-tab.schema.js.map +0 -1
- package/dist/schemas/lit-case-variables-tab-cell.schema.js +0 -43
- package/dist/schemas/lit-case-variables-tab-cell.schema.js.map +0 -1
- package/dist/schemas/lit-case-variables-tab-rows.schema.js +0 -6
- package/dist/schemas/lit-case-variables-tab-rows.schema.js.map +0 -1
- package/dist/schemas/lit-case-variables-tab.schema.js +0 -24
- package/dist/schemas/lit-case-variables-tab.schema.js.map +0 -1
- package/dist/schemas/lit-data-grid-tanstack-column-array.schema.js +0 -6
- package/dist/schemas/lit-data-grid-tanstack-column-array.schema.js.map +0 -1
- package/dist/schemas/lit-data-grid-tanstack-column-custom-filter-array.schema.js +0 -6
- package/dist/schemas/lit-data-grid-tanstack-column-custom-filter-array.schema.js.map +0 -1
- package/dist/schemas/lit-data-grid-tanstack-column-custom-filter.schema.js +0 -11
- package/dist/schemas/lit-data-grid-tanstack-column-custom-filter.schema.js.map +0 -1
- package/dist/schemas/lit-data-grid-tanstack-column.schema.js +0 -55
- package/dist/schemas/lit-data-grid-tanstack-column.schema.js.map +0 -1
- package/dist/schemas/lit-data-grid-tanstack.schema.js +0 -99
- package/dist/schemas/lit-data-grid-tanstack.schema.js.map +0 -1
- package/dist/schemas/lit-section-tab-schema.js +0 -24
- package/dist/schemas/lit-section-tab-schema.js.map +0 -1
- package/dist/schemas/lit-tabs-overview-tab-array.schema.js +0 -6
- package/dist/schemas/lit-tabs-overview-tab-array.schema.js.map +0 -1
- package/dist/schemas/lit-tabs-overview-tab.schema.js +0 -32
- package/dist/schemas/lit-tabs-overview-tab.schema.js.map +0 -1
- package/dist/schemas/lit-tabs-overview.schema.js +0 -29
- package/dist/schemas/lit-tabs-overview.schema.js.map +0 -1
- package/dist/scripts/translate-locales.js +0 -69
- package/dist/scripts/translate-locales.js.map +0 -1
- package/dist/shared/filter-inputs.js +0 -427
- package/dist/shared/filter-inputs.js.map +0 -1
- package/dist/shared/lit-button.js.map +0 -1
- package/dist/shared/lit-case-variables-tab-cell.js +0 -226
- package/dist/shared/lit-case-variables-tab-cell.js.map +0 -1
- package/dist/shared/lit-checkbox.js +0 -171
- package/dist/shared/lit-checkbox.js.map +0 -1
- package/dist/shared/lit-custom-popper.js +0 -117
- package/dist/shared/lit-custom-popper.js.map +0 -1
- package/dist/shared/lit-data-grid-action-buttons-popover.js +0 -295
- package/dist/shared/lit-data-grid-action-buttons-popover.js.map +0 -1
- package/dist/shared/lit-data-grid-density-popover.js +0 -84
- package/dist/shared/lit-data-grid-density-popover.js.map +0 -1
- package/dist/shared/lit-data-grid-export-popover.js +0 -68
- package/dist/shared/lit-data-grid-export-popover.js.map +0 -1
- package/dist/shared/lit-data-grid-operators-popover.js +0 -114
- package/dist/shared/lit-data-grid-operators-popover.js.map +0 -1
- package/dist/shared/lit-data-grid-row-actions.js +0 -76
- package/dist/shared/lit-data-grid-row-actions.js.map +0 -1
- package/dist/shared/lit-date-picker.js +0 -606
- package/dist/shared/lit-date-picker.js.map +0 -1
- package/dist/shared/lit-icon-button.js +0 -105
- package/dist/shared/lit-icon-button.js.map +0 -1
- package/dist/shared/lit-icon.js +0 -284
- package/dist/shared/lit-icon.js.map +0 -1
- package/dist/shared/lit-input.js +0 -239
- package/dist/shared/lit-input.js.map +0 -1
- package/dist/shared/lit-label.js +0 -104
- package/dist/shared/lit-label.js.map +0 -1
- package/dist/shared/lit-loader.js +0 -69
- package/dist/shared/lit-loader.js.map +0 -1
- package/dist/shared/lit-loading-bar.js +0 -127
- package/dist/shared/lit-loading-bar.js.map +0 -1
- package/dist/shared/lit-menu-item.js +0 -99
- package/dist/shared/lit-menu-item.js.map +0 -1
- package/dist/shared/lit-menu.js +0 -42
- package/dist/shared/lit-menu.js.map +0 -1
- package/dist/shared/lit-modal-body.js +0 -22
- package/dist/shared/lit-modal-body.js.map +0 -1
- package/dist/shared/lit-modal-footer.js +0 -29
- package/dist/shared/lit-modal-footer.js.map +0 -1
- package/dist/shared/lit-modal-header.js +0 -36
- package/dist/shared/lit-modal-header.js.map +0 -1
- package/dist/shared/lit-modal.js +0 -169
- package/dist/shared/lit-modal.js.map +0 -1
- package/dist/shared/lit-overflow-tooltip.js +0 -103
- package/dist/shared/lit-overflow-tooltip.js.map +0 -1
- package/dist/shared/lit-pill.js +0 -88
- package/dist/shared/lit-pill.js.map +0 -1
- package/dist/shared/lit-progress-bar.js.map +0 -1
- package/dist/shared/lit-responsive-button.js +0 -94
- package/dist/shared/lit-responsive-button.js.map +0 -1
- package/dist/shared/lit-select-field.js +0 -459
- package/dist/shared/lit-select-field.js.map +0 -1
- package/dist/shared/lit-select.js +0 -413
- package/dist/shared/lit-select.js.map +0 -1
- package/dist/shared/lit-settings.js +0 -77
- package/dist/shared/lit-settings.js.map +0 -1
- package/dist/shared/lit-text-field.js +0 -222
- package/dist/shared/lit-text-field.js.map +0 -1
- package/dist/shared/lit-toggle.js +0 -222
- package/dist/shared/lit-toggle.js.map +0 -1
- package/dist/shared/lit-tooltip.js +0 -166
- package/dist/shared/lit-tooltip.js.map +0 -1
- package/dist/shared/simple-popper.js +0 -266
- package/dist/shared/simple-popper.js.map +0 -1
- package/dist/shared/simple-tooltip.js.map +0 -1
- package/dist/shared/styles/button-shared-styles.js.map +0 -1
- package/dist/styles.js +0 -169
- package/dist/styles.js.map +0 -1
- package/dist/utils/currency.js.map +0 -1
- package/dist/utils/custom-filters.js.map +0 -1
- package/dist/utils/date.js.map +0 -1
- package/dist/utils/getOperatorByType.js.map +0 -1
- package/dist/utils/getOverviewValue.js +0 -177
- package/dist/utils/getOverviewValue.js.map +0 -1
- package/dist/utils/localization.js.map +0 -1
- package/dist/utils/utils.js +0 -13
- package/dist/utils/utils.js.map +0 -1
- package/dist/utils/validate-json-schema.js +0 -8
- package/dist/utils/validate-json-schema.js.map +0 -1
- package/dist/validators/validator.js +0 -7
- package/dist/validators/validator.js.map +0 -1
|
@@ -0,0 +1,1691 @@
|
|
|
1
|
+
import { Color as ge } from "../../../@kurkle/color/dist/color.esm.js";
|
|
2
|
+
/*!
|
|
3
|
+
* Chart.js v4.4.7
|
|
4
|
+
* https://www.chartjs.org
|
|
5
|
+
* (c) 2024 Chart.js Contributors
|
|
6
|
+
* Released under the MIT License
|
|
7
|
+
*/
|
|
8
|
+
function $t() {
|
|
9
|
+
}
|
|
10
|
+
const Yt = /* @__PURE__ */ (() => {
|
|
11
|
+
let e = 0;
|
|
12
|
+
return () => e++;
|
|
13
|
+
})();
|
|
14
|
+
function L(e) {
|
|
15
|
+
return e == null;
|
|
16
|
+
}
|
|
17
|
+
function M(e) {
|
|
18
|
+
if (Array.isArray && Array.isArray(e))
|
|
19
|
+
return !0;
|
|
20
|
+
const t = Object.prototype.toString.call(e);
|
|
21
|
+
return t.slice(0, 7) === "[object" && t.slice(-6) === "Array]";
|
|
22
|
+
}
|
|
23
|
+
function _(e) {
|
|
24
|
+
return e !== null && Object.prototype.toString.call(e) === "[object Object]";
|
|
25
|
+
}
|
|
26
|
+
function me(e) {
|
|
27
|
+
return (typeof e == "number" || e instanceof Number) && isFinite(+e);
|
|
28
|
+
}
|
|
29
|
+
function Jt(e, t) {
|
|
30
|
+
return me(e) ? e : t;
|
|
31
|
+
}
|
|
32
|
+
function T(e, t) {
|
|
33
|
+
return typeof e > "u" ? t : e;
|
|
34
|
+
}
|
|
35
|
+
const Xt = (e, t) => typeof e == "string" && e.endsWith("%") ? parseFloat(e) / 100 : +e / t, je = (e, t) => typeof e == "string" && e.endsWith("%") ? parseFloat(e) / 100 * t : +e;
|
|
36
|
+
function Zt(e, t, n) {
|
|
37
|
+
if (e && typeof e.call == "function")
|
|
38
|
+
return e.apply(n, t);
|
|
39
|
+
}
|
|
40
|
+
function Vt(e, t, n, o) {
|
|
41
|
+
let r, i, s;
|
|
42
|
+
if (M(e))
|
|
43
|
+
for (i = e.length, r = 0; r < i; r++)
|
|
44
|
+
t.call(n, e[r], r);
|
|
45
|
+
else if (_(e))
|
|
46
|
+
for (s = Object.keys(e), i = s.length, r = 0; r < i; r++)
|
|
47
|
+
t.call(n, e[s[r]], s[r]);
|
|
48
|
+
}
|
|
49
|
+
function en(e, t) {
|
|
50
|
+
let n, o, r, i;
|
|
51
|
+
if (!e || !t || e.length !== t.length)
|
|
52
|
+
return !1;
|
|
53
|
+
for (n = 0, o = e.length; n < o; ++n)
|
|
54
|
+
if (r = e[n], i = t[n], r.datasetIndex !== i.datasetIndex || r.index !== i.index)
|
|
55
|
+
return !1;
|
|
56
|
+
return !0;
|
|
57
|
+
}
|
|
58
|
+
function N(e) {
|
|
59
|
+
if (M(e))
|
|
60
|
+
return e.map(N);
|
|
61
|
+
if (_(e)) {
|
|
62
|
+
const t = /* @__PURE__ */ Object.create(null), n = Object.keys(e), o = n.length;
|
|
63
|
+
let r = 0;
|
|
64
|
+
for (; r < o; ++r)
|
|
65
|
+
t[n[r]] = N(e[n[r]]);
|
|
66
|
+
return t;
|
|
67
|
+
}
|
|
68
|
+
return e;
|
|
69
|
+
}
|
|
70
|
+
function pe(e) {
|
|
71
|
+
return [
|
|
72
|
+
"__proto__",
|
|
73
|
+
"prototype",
|
|
74
|
+
"constructor"
|
|
75
|
+
].indexOf(e) === -1;
|
|
76
|
+
}
|
|
77
|
+
function De(e, t, n, o) {
|
|
78
|
+
if (!pe(e))
|
|
79
|
+
return;
|
|
80
|
+
const r = t[e], i = n[e];
|
|
81
|
+
_(r) && _(i) ? E(r, i, o) : t[e] = N(i);
|
|
82
|
+
}
|
|
83
|
+
function E(e, t, n) {
|
|
84
|
+
const o = M(t) ? t : [
|
|
85
|
+
t
|
|
86
|
+
], r = o.length;
|
|
87
|
+
if (!_(e))
|
|
88
|
+
return e;
|
|
89
|
+
n = n || {};
|
|
90
|
+
const i = n.merger || De;
|
|
91
|
+
let s;
|
|
92
|
+
for (let a = 0; a < r; ++a) {
|
|
93
|
+
if (s = o[a], !_(s))
|
|
94
|
+
continue;
|
|
95
|
+
const c = Object.keys(s);
|
|
96
|
+
for (let l = 0, u = c.length; l < u; ++l)
|
|
97
|
+
i(c[l], e, s, n);
|
|
98
|
+
}
|
|
99
|
+
return e;
|
|
100
|
+
}
|
|
101
|
+
function We(e, t) {
|
|
102
|
+
return E(e, t, {
|
|
103
|
+
merger: Le
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
function Le(e, t, n) {
|
|
107
|
+
if (!pe(e))
|
|
108
|
+
return;
|
|
109
|
+
const o = t[e], r = n[e];
|
|
110
|
+
_(o) && _(r) ? We(o, r) : Object.prototype.hasOwnProperty.call(t, e) || (t[e] = N(r));
|
|
111
|
+
}
|
|
112
|
+
const ee = {
|
|
113
|
+
// Chart.helpers.core resolveObjectKey should resolve empty key to root object
|
|
114
|
+
"": (e) => e,
|
|
115
|
+
// default resolvers
|
|
116
|
+
x: (e) => e.x,
|
|
117
|
+
y: (e) => e.y
|
|
118
|
+
};
|
|
119
|
+
function Ne(e) {
|
|
120
|
+
const t = e.split("."), n = [];
|
|
121
|
+
let o = "";
|
|
122
|
+
for (const r of t)
|
|
123
|
+
o += r, o.endsWith("\\") ? o = o.slice(0, -1) + "." : (n.push(o), o = "");
|
|
124
|
+
return n;
|
|
125
|
+
}
|
|
126
|
+
function Ee(e) {
|
|
127
|
+
const t = Ne(e);
|
|
128
|
+
return (n) => {
|
|
129
|
+
for (const o of t) {
|
|
130
|
+
if (o === "")
|
|
131
|
+
break;
|
|
132
|
+
n = n && n[o];
|
|
133
|
+
}
|
|
134
|
+
return n;
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
function be(e, t) {
|
|
138
|
+
return (ee[t] || (ee[t] = Ee(t)))(e);
|
|
139
|
+
}
|
|
140
|
+
function ye(e) {
|
|
141
|
+
return e.charAt(0).toUpperCase() + e.slice(1);
|
|
142
|
+
}
|
|
143
|
+
const tn = (e) => typeof e < "u", F = (e) => typeof e == "function", nn = (e, t) => {
|
|
144
|
+
if (e.size !== t.size)
|
|
145
|
+
return !1;
|
|
146
|
+
for (const n of e)
|
|
147
|
+
if (!t.has(n))
|
|
148
|
+
return !1;
|
|
149
|
+
return !0;
|
|
150
|
+
};
|
|
151
|
+
function on(e) {
|
|
152
|
+
return e.type === "mouseup" || e.type === "click" || e.type === "contextmenu";
|
|
153
|
+
}
|
|
154
|
+
const b = Math.PI, S = 2 * b, Fe = S + b, z = Number.POSITIVE_INFINITY, ze = b / 180, O = b / 2, P = b / 4, te = b * 2 / 3, $ = Math.log10, ne = Math.sign;
|
|
155
|
+
function _e(e, t, n) {
|
|
156
|
+
return Math.abs(e - t) < n;
|
|
157
|
+
}
|
|
158
|
+
function rn(e) {
|
|
159
|
+
const t = Math.round(e);
|
|
160
|
+
e = _e(e, t, e / 1e3) ? t : e;
|
|
161
|
+
const n = Math.pow(10, Math.floor($(e))), o = e / n;
|
|
162
|
+
return (o <= 1 ? 1 : o <= 2 ? 2 : o <= 5 ? 5 : 10) * n;
|
|
163
|
+
}
|
|
164
|
+
function sn(e) {
|
|
165
|
+
const t = [], n = Math.sqrt(e);
|
|
166
|
+
let o;
|
|
167
|
+
for (o = 1; o < n; o++)
|
|
168
|
+
e % o === 0 && (t.push(o), t.push(e / o));
|
|
169
|
+
return n === (n | 0) && t.push(n), t.sort((r, i) => r - i).pop(), t;
|
|
170
|
+
}
|
|
171
|
+
function an(e) {
|
|
172
|
+
return !isNaN(parseFloat(e)) && isFinite(e);
|
|
173
|
+
}
|
|
174
|
+
function cn(e, t) {
|
|
175
|
+
const n = Math.round(e);
|
|
176
|
+
return n - t <= e && n + t >= e;
|
|
177
|
+
}
|
|
178
|
+
function ln(e, t, n) {
|
|
179
|
+
let o, r, i;
|
|
180
|
+
for (o = 0, r = e.length; o < r; o++)
|
|
181
|
+
i = e[o][n], isNaN(i) || (t.min = Math.min(t.min, i), t.max = Math.max(t.max, i));
|
|
182
|
+
}
|
|
183
|
+
function un(e) {
|
|
184
|
+
return e * (b / 180);
|
|
185
|
+
}
|
|
186
|
+
function fn(e) {
|
|
187
|
+
return e * (180 / b);
|
|
188
|
+
}
|
|
189
|
+
function dn(e) {
|
|
190
|
+
if (!me(e))
|
|
191
|
+
return;
|
|
192
|
+
let t = 1, n = 0;
|
|
193
|
+
for (; Math.round(e * t) / t !== e; )
|
|
194
|
+
t *= 10, n++;
|
|
195
|
+
return n;
|
|
196
|
+
}
|
|
197
|
+
function hn(e, t) {
|
|
198
|
+
const n = t.x - e.x, o = t.y - e.y, r = Math.sqrt(n * n + o * o);
|
|
199
|
+
let i = Math.atan2(o, n);
|
|
200
|
+
return i < -0.5 * b && (i += S), {
|
|
201
|
+
angle: i,
|
|
202
|
+
distance: r
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
function oe(e, t) {
|
|
206
|
+
return Math.sqrt(Math.pow(t.x - e.x, 2) + Math.pow(t.y - e.y, 2));
|
|
207
|
+
}
|
|
208
|
+
function He(e, t) {
|
|
209
|
+
return (e - t + Fe) % S - b;
|
|
210
|
+
}
|
|
211
|
+
function w(e) {
|
|
212
|
+
return (e % S + S) % S;
|
|
213
|
+
}
|
|
214
|
+
function qe(e, t, n, o) {
|
|
215
|
+
const r = w(e), i = w(t), s = w(n), a = w(i - r), c = w(s - r), l = w(r - i), u = w(r - s);
|
|
216
|
+
return r === i || r === s || o && i === s || a > c && l < u;
|
|
217
|
+
}
|
|
218
|
+
function Y(e, t, n) {
|
|
219
|
+
return Math.max(t, Math.min(n, e));
|
|
220
|
+
}
|
|
221
|
+
function gn(e) {
|
|
222
|
+
return Y(e, -32768, 32767);
|
|
223
|
+
}
|
|
224
|
+
function Ke(e, t, n, o = 1e-6) {
|
|
225
|
+
return e >= Math.min(t, n) - o && e <= Math.max(t, n) + o;
|
|
226
|
+
}
|
|
227
|
+
function Me(e, t, n) {
|
|
228
|
+
n = n || ((s) => e[s] < t);
|
|
229
|
+
let o = e.length - 1, r = 0, i;
|
|
230
|
+
for (; o - r > 1; )
|
|
231
|
+
i = r + o >> 1, n(i) ? r = i : o = i;
|
|
232
|
+
return {
|
|
233
|
+
lo: r,
|
|
234
|
+
hi: o
|
|
235
|
+
};
|
|
236
|
+
}
|
|
237
|
+
const B = (e, t, n, o) => Me(e, n, o ? (r) => {
|
|
238
|
+
const i = e[r][t];
|
|
239
|
+
return i < n || i === n && e[r + 1][t] === n;
|
|
240
|
+
} : (r) => e[r][t] < n), mn = (e, t, n) => Me(e, n, (o) => e[o][t] >= n);
|
|
241
|
+
function pn(e, t, n) {
|
|
242
|
+
let o = 0, r = e.length;
|
|
243
|
+
for (; o < r && e[o] < t; )
|
|
244
|
+
o++;
|
|
245
|
+
for (; r > o && e[r - 1] > n; )
|
|
246
|
+
r--;
|
|
247
|
+
return o > 0 || r < e.length ? e.slice(o, r) : e;
|
|
248
|
+
}
|
|
249
|
+
const Se = [
|
|
250
|
+
"push",
|
|
251
|
+
"pop",
|
|
252
|
+
"shift",
|
|
253
|
+
"splice",
|
|
254
|
+
"unshift"
|
|
255
|
+
];
|
|
256
|
+
function bn(e, t) {
|
|
257
|
+
if (e._chartjs) {
|
|
258
|
+
e._chartjs.listeners.push(t);
|
|
259
|
+
return;
|
|
260
|
+
}
|
|
261
|
+
Object.defineProperty(e, "_chartjs", {
|
|
262
|
+
configurable: !0,
|
|
263
|
+
enumerable: !1,
|
|
264
|
+
value: {
|
|
265
|
+
listeners: [
|
|
266
|
+
t
|
|
267
|
+
]
|
|
268
|
+
}
|
|
269
|
+
}), Se.forEach((n) => {
|
|
270
|
+
const o = "_onData" + ye(n), r = e[n];
|
|
271
|
+
Object.defineProperty(e, n, {
|
|
272
|
+
configurable: !0,
|
|
273
|
+
enumerable: !1,
|
|
274
|
+
value(...i) {
|
|
275
|
+
const s = r.apply(this, i);
|
|
276
|
+
return e._chartjs.listeners.forEach((a) => {
|
|
277
|
+
typeof a[o] == "function" && a[o](...i);
|
|
278
|
+
}), s;
|
|
279
|
+
}
|
|
280
|
+
});
|
|
281
|
+
});
|
|
282
|
+
}
|
|
283
|
+
function yn(e, t) {
|
|
284
|
+
const n = e._chartjs;
|
|
285
|
+
if (!n)
|
|
286
|
+
return;
|
|
287
|
+
const o = n.listeners, r = o.indexOf(t);
|
|
288
|
+
r !== -1 && o.splice(r, 1), !(o.length > 0) && (Se.forEach((i) => {
|
|
289
|
+
delete e[i];
|
|
290
|
+
}), delete e._chartjs);
|
|
291
|
+
}
|
|
292
|
+
function _n(e) {
|
|
293
|
+
const t = new Set(e);
|
|
294
|
+
return t.size === e.length ? e : Array.from(t);
|
|
295
|
+
}
|
|
296
|
+
const Qe = function() {
|
|
297
|
+
return typeof window > "u" ? function(e) {
|
|
298
|
+
return e();
|
|
299
|
+
} : window.requestAnimationFrame;
|
|
300
|
+
}();
|
|
301
|
+
function Mn(e, t) {
|
|
302
|
+
let n = [], o = !1;
|
|
303
|
+
return function(...r) {
|
|
304
|
+
n = r, o || (o = !0, Qe.call(window, () => {
|
|
305
|
+
o = !1, e.apply(t, n);
|
|
306
|
+
}));
|
|
307
|
+
};
|
|
308
|
+
}
|
|
309
|
+
function Sn(e, t) {
|
|
310
|
+
let n;
|
|
311
|
+
return function(...o) {
|
|
312
|
+
return t ? (clearTimeout(n), n = setTimeout(e, t, o)) : e.apply(this, o), t;
|
|
313
|
+
};
|
|
314
|
+
}
|
|
315
|
+
const On = (e) => e === "start" ? "left" : e === "end" ? "right" : "center", wn = (e, t, n) => e === "start" ? t : e === "end" ? n : (t + n) / 2, Pn = (e, t, n, o) => e === (o ? "left" : "right") ? n : e === "center" ? (t + n) / 2 : t;
|
|
316
|
+
function Tn(e, t, n) {
|
|
317
|
+
const o = t.length;
|
|
318
|
+
let r = 0, i = o;
|
|
319
|
+
if (e._sorted) {
|
|
320
|
+
const { iScale: s, _parsed: a } = e, c = s.axis, { min: l, max: u, minDefined: d, maxDefined: h } = s.getUserBounds();
|
|
321
|
+
d && (r = Y(Math.min(
|
|
322
|
+
// @ts-expect-error Need to type _parsed
|
|
323
|
+
B(a, c, l).lo,
|
|
324
|
+
// @ts-expect-error Need to fix types on _lookupByKey
|
|
325
|
+
n ? o : B(t, c, s.getPixelForValue(l)).lo
|
|
326
|
+
), 0, o - 1)), h ? i = Y(Math.max(
|
|
327
|
+
// @ts-expect-error Need to type _parsed
|
|
328
|
+
B(a, s.axis, u, !0).hi + 1,
|
|
329
|
+
// @ts-expect-error Need to fix types on _lookupByKey
|
|
330
|
+
n ? 0 : B(t, c, s.getPixelForValue(u), !0).hi + 1
|
|
331
|
+
), r, o) - r : i = o - r;
|
|
332
|
+
}
|
|
333
|
+
return {
|
|
334
|
+
start: r,
|
|
335
|
+
count: i
|
|
336
|
+
};
|
|
337
|
+
}
|
|
338
|
+
function xn(e) {
|
|
339
|
+
const { xScale: t, yScale: n, _scaleRanges: o } = e, r = {
|
|
340
|
+
xmin: t.min,
|
|
341
|
+
xmax: t.max,
|
|
342
|
+
ymin: n.min,
|
|
343
|
+
ymax: n.max
|
|
344
|
+
};
|
|
345
|
+
if (!o)
|
|
346
|
+
return e._scaleRanges = r, !0;
|
|
347
|
+
const i = o.xmin !== t.min || o.xmax !== t.max || o.ymin !== n.min || o.ymax !== n.max;
|
|
348
|
+
return Object.assign(o, r), i;
|
|
349
|
+
}
|
|
350
|
+
const j = (e) => e === 0 || e === 1, re = (e, t, n) => -(Math.pow(2, 10 * (e -= 1)) * Math.sin((e - t) * S / n)), ie = (e, t, n) => Math.pow(2, -10 * e) * Math.sin((e - t) * S / n) + 1, Q = {
|
|
351
|
+
linear: (e) => e,
|
|
352
|
+
easeInQuad: (e) => e * e,
|
|
353
|
+
easeOutQuad: (e) => -e * (e - 2),
|
|
354
|
+
easeInOutQuad: (e) => (e /= 0.5) < 1 ? 0.5 * e * e : -0.5 * (--e * (e - 2) - 1),
|
|
355
|
+
easeInCubic: (e) => e * e * e,
|
|
356
|
+
easeOutCubic: (e) => (e -= 1) * e * e + 1,
|
|
357
|
+
easeInOutCubic: (e) => (e /= 0.5) < 1 ? 0.5 * e * e * e : 0.5 * ((e -= 2) * e * e + 2),
|
|
358
|
+
easeInQuart: (e) => e * e * e * e,
|
|
359
|
+
easeOutQuart: (e) => -((e -= 1) * e * e * e - 1),
|
|
360
|
+
easeInOutQuart: (e) => (e /= 0.5) < 1 ? 0.5 * e * e * e * e : -0.5 * ((e -= 2) * e * e * e - 2),
|
|
361
|
+
easeInQuint: (e) => e * e * e * e * e,
|
|
362
|
+
easeOutQuint: (e) => (e -= 1) * e * e * e * e + 1,
|
|
363
|
+
easeInOutQuint: (e) => (e /= 0.5) < 1 ? 0.5 * e * e * e * e * e : 0.5 * ((e -= 2) * e * e * e * e + 2),
|
|
364
|
+
easeInSine: (e) => -Math.cos(e * O) + 1,
|
|
365
|
+
easeOutSine: (e) => Math.sin(e * O),
|
|
366
|
+
easeInOutSine: (e) => -0.5 * (Math.cos(b * e) - 1),
|
|
367
|
+
easeInExpo: (e) => e === 0 ? 0 : Math.pow(2, 10 * (e - 1)),
|
|
368
|
+
easeOutExpo: (e) => e === 1 ? 1 : -Math.pow(2, -10 * e) + 1,
|
|
369
|
+
easeInOutExpo: (e) => j(e) ? e : e < 0.5 ? 0.5 * Math.pow(2, 10 * (e * 2 - 1)) : 0.5 * (-Math.pow(2, -10 * (e * 2 - 1)) + 2),
|
|
370
|
+
easeInCirc: (e) => e >= 1 ? e : -(Math.sqrt(1 - e * e) - 1),
|
|
371
|
+
easeOutCirc: (e) => Math.sqrt(1 - (e -= 1) * e),
|
|
372
|
+
easeInOutCirc: (e) => (e /= 0.5) < 1 ? -0.5 * (Math.sqrt(1 - e * e) - 1) : 0.5 * (Math.sqrt(1 - (e -= 2) * e) + 1),
|
|
373
|
+
easeInElastic: (e) => j(e) ? e : re(e, 0.075, 0.3),
|
|
374
|
+
easeOutElastic: (e) => j(e) ? e : ie(e, 0.075, 0.3),
|
|
375
|
+
easeInOutElastic(e) {
|
|
376
|
+
return j(e) ? e : e < 0.5 ? 0.5 * re(e * 2, 0.1125, 0.45) : 0.5 + 0.5 * ie(e * 2 - 1, 0.1125, 0.45);
|
|
377
|
+
},
|
|
378
|
+
easeInBack(e) {
|
|
379
|
+
return e * e * ((1.70158 + 1) * e - 1.70158);
|
|
380
|
+
},
|
|
381
|
+
easeOutBack(e) {
|
|
382
|
+
return (e -= 1) * e * ((1.70158 + 1) * e + 1.70158) + 1;
|
|
383
|
+
},
|
|
384
|
+
easeInOutBack(e) {
|
|
385
|
+
let t = 1.70158;
|
|
386
|
+
return (e /= 0.5) < 1 ? 0.5 * (e * e * (((t *= 1.525) + 1) * e - t)) : 0.5 * ((e -= 2) * e * (((t *= 1.525) + 1) * e + t) + 2);
|
|
387
|
+
},
|
|
388
|
+
easeInBounce: (e) => 1 - Q.easeOutBounce(1 - e),
|
|
389
|
+
easeOutBounce(e) {
|
|
390
|
+
return e < 1 / 2.75 ? 7.5625 * e * e : e < 2 / 2.75 ? 7.5625 * (e -= 1.5 / 2.75) * e + 0.75 : e < 2.5 / 2.75 ? 7.5625 * (e -= 2.25 / 2.75) * e + 0.9375 : 7.5625 * (e -= 2.625 / 2.75) * e + 0.984375;
|
|
391
|
+
},
|
|
392
|
+
easeInOutBounce: (e) => e < 0.5 ? Q.easeInBounce(e * 2) * 0.5 : Q.easeOutBounce(e * 2 - 1) * 0.5 + 0.5
|
|
393
|
+
};
|
|
394
|
+
function J(e) {
|
|
395
|
+
if (e && typeof e == "object") {
|
|
396
|
+
const t = e.toString();
|
|
397
|
+
return t === "[object CanvasPattern]" || t === "[object CanvasGradient]";
|
|
398
|
+
}
|
|
399
|
+
return !1;
|
|
400
|
+
}
|
|
401
|
+
function Cn(e) {
|
|
402
|
+
return J(e) ? e : new ge(e);
|
|
403
|
+
}
|
|
404
|
+
function G(e) {
|
|
405
|
+
return J(e) ? e : new ge(e).saturate(0.5).darken(0.1).hexString();
|
|
406
|
+
}
|
|
407
|
+
const Ge = [
|
|
408
|
+
"x",
|
|
409
|
+
"y",
|
|
410
|
+
"borderWidth",
|
|
411
|
+
"radius",
|
|
412
|
+
"tension"
|
|
413
|
+
], Ue = [
|
|
414
|
+
"color",
|
|
415
|
+
"borderColor",
|
|
416
|
+
"backgroundColor"
|
|
417
|
+
];
|
|
418
|
+
function $e(e) {
|
|
419
|
+
e.set("animation", {
|
|
420
|
+
delay: void 0,
|
|
421
|
+
duration: 1e3,
|
|
422
|
+
easing: "easeOutQuart",
|
|
423
|
+
fn: void 0,
|
|
424
|
+
from: void 0,
|
|
425
|
+
loop: void 0,
|
|
426
|
+
to: void 0,
|
|
427
|
+
type: void 0
|
|
428
|
+
}), e.describe("animation", {
|
|
429
|
+
_fallback: !1,
|
|
430
|
+
_indexable: !1,
|
|
431
|
+
_scriptable: (t) => t !== "onProgress" && t !== "onComplete" && t !== "fn"
|
|
432
|
+
}), e.set("animations", {
|
|
433
|
+
colors: {
|
|
434
|
+
type: "color",
|
|
435
|
+
properties: Ue
|
|
436
|
+
},
|
|
437
|
+
numbers: {
|
|
438
|
+
type: "number",
|
|
439
|
+
properties: Ge
|
|
440
|
+
}
|
|
441
|
+
}), e.describe("animations", {
|
|
442
|
+
_fallback: "animation"
|
|
443
|
+
}), e.set("transitions", {
|
|
444
|
+
active: {
|
|
445
|
+
animation: {
|
|
446
|
+
duration: 400
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
resize: {
|
|
450
|
+
animation: {
|
|
451
|
+
duration: 0
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
show: {
|
|
455
|
+
animations: {
|
|
456
|
+
colors: {
|
|
457
|
+
from: "transparent"
|
|
458
|
+
},
|
|
459
|
+
visible: {
|
|
460
|
+
type: "boolean",
|
|
461
|
+
duration: 0
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
hide: {
|
|
466
|
+
animations: {
|
|
467
|
+
colors: {
|
|
468
|
+
to: "transparent"
|
|
469
|
+
},
|
|
470
|
+
visible: {
|
|
471
|
+
type: "boolean",
|
|
472
|
+
easing: "linear",
|
|
473
|
+
fn: (t) => t | 0
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
});
|
|
478
|
+
}
|
|
479
|
+
function Ye(e) {
|
|
480
|
+
e.set("layout", {
|
|
481
|
+
autoPadding: !0,
|
|
482
|
+
padding: {
|
|
483
|
+
top: 0,
|
|
484
|
+
right: 0,
|
|
485
|
+
bottom: 0,
|
|
486
|
+
left: 0
|
|
487
|
+
}
|
|
488
|
+
});
|
|
489
|
+
}
|
|
490
|
+
const se = /* @__PURE__ */ new Map();
|
|
491
|
+
function Je(e, t) {
|
|
492
|
+
t = t || {};
|
|
493
|
+
const n = e + JSON.stringify(t);
|
|
494
|
+
let o = se.get(n);
|
|
495
|
+
return o || (o = new Intl.NumberFormat(e, t), se.set(n, o)), o;
|
|
496
|
+
}
|
|
497
|
+
function Xe(e, t, n) {
|
|
498
|
+
return Je(t, n).format(e);
|
|
499
|
+
}
|
|
500
|
+
const Oe = {
|
|
501
|
+
values(e) {
|
|
502
|
+
return M(e) ? e : "" + e;
|
|
503
|
+
},
|
|
504
|
+
numeric(e, t, n) {
|
|
505
|
+
if (e === 0)
|
|
506
|
+
return "0";
|
|
507
|
+
const o = this.chart.options.locale;
|
|
508
|
+
let r, i = e;
|
|
509
|
+
if (n.length > 1) {
|
|
510
|
+
const l = Math.max(Math.abs(n[0].value), Math.abs(n[n.length - 1].value));
|
|
511
|
+
(l < 1e-4 || l > 1e15) && (r = "scientific"), i = Ze(e, n);
|
|
512
|
+
}
|
|
513
|
+
const s = $(Math.abs(i)), a = isNaN(s) ? 1 : Math.max(Math.min(-1 * Math.floor(s), 20), 0), c = {
|
|
514
|
+
notation: r,
|
|
515
|
+
minimumFractionDigits: a,
|
|
516
|
+
maximumFractionDigits: a
|
|
517
|
+
};
|
|
518
|
+
return Object.assign(c, this.options.ticks.format), Xe(e, o, c);
|
|
519
|
+
},
|
|
520
|
+
logarithmic(e, t, n) {
|
|
521
|
+
if (e === 0)
|
|
522
|
+
return "0";
|
|
523
|
+
const o = n[t].significand || e / Math.pow(10, Math.floor($(e)));
|
|
524
|
+
return [
|
|
525
|
+
1,
|
|
526
|
+
2,
|
|
527
|
+
3,
|
|
528
|
+
5,
|
|
529
|
+
10,
|
|
530
|
+
15
|
|
531
|
+
].includes(o) || t > 0.8 * n.length ? Oe.numeric.call(this, e, t, n) : "";
|
|
532
|
+
}
|
|
533
|
+
};
|
|
534
|
+
function Ze(e, t) {
|
|
535
|
+
let n = t.length > 3 ? t[2].value - t[1].value : t[1].value - t[0].value;
|
|
536
|
+
return Math.abs(n) >= 1 && e !== Math.floor(e) && (n = e - Math.floor(e)), n;
|
|
537
|
+
}
|
|
538
|
+
var Ve = {
|
|
539
|
+
formatters: Oe
|
|
540
|
+
};
|
|
541
|
+
function et(e) {
|
|
542
|
+
e.set("scale", {
|
|
543
|
+
display: !0,
|
|
544
|
+
offset: !1,
|
|
545
|
+
reverse: !1,
|
|
546
|
+
beginAtZero: !1,
|
|
547
|
+
bounds: "ticks",
|
|
548
|
+
clip: !0,
|
|
549
|
+
grace: 0,
|
|
550
|
+
grid: {
|
|
551
|
+
display: !0,
|
|
552
|
+
lineWidth: 1,
|
|
553
|
+
drawOnChartArea: !0,
|
|
554
|
+
drawTicks: !0,
|
|
555
|
+
tickLength: 8,
|
|
556
|
+
tickWidth: (t, n) => n.lineWidth,
|
|
557
|
+
tickColor: (t, n) => n.color,
|
|
558
|
+
offset: !1
|
|
559
|
+
},
|
|
560
|
+
border: {
|
|
561
|
+
display: !0,
|
|
562
|
+
dash: [],
|
|
563
|
+
dashOffset: 0,
|
|
564
|
+
width: 1
|
|
565
|
+
},
|
|
566
|
+
title: {
|
|
567
|
+
display: !1,
|
|
568
|
+
text: "",
|
|
569
|
+
padding: {
|
|
570
|
+
top: 4,
|
|
571
|
+
bottom: 4
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
ticks: {
|
|
575
|
+
minRotation: 0,
|
|
576
|
+
maxRotation: 50,
|
|
577
|
+
mirror: !1,
|
|
578
|
+
textStrokeWidth: 0,
|
|
579
|
+
textStrokeColor: "",
|
|
580
|
+
padding: 3,
|
|
581
|
+
display: !0,
|
|
582
|
+
autoSkip: !0,
|
|
583
|
+
autoSkipPadding: 3,
|
|
584
|
+
labelOffset: 0,
|
|
585
|
+
callback: Ve.formatters.values,
|
|
586
|
+
minor: {},
|
|
587
|
+
major: {},
|
|
588
|
+
align: "center",
|
|
589
|
+
crossAlign: "near",
|
|
590
|
+
showLabelBackdrop: !1,
|
|
591
|
+
backdropColor: "rgba(255, 255, 255, 0.75)",
|
|
592
|
+
backdropPadding: 2
|
|
593
|
+
}
|
|
594
|
+
}), e.route("scale.ticks", "color", "", "color"), e.route("scale.grid", "color", "", "borderColor"), e.route("scale.border", "color", "", "borderColor"), e.route("scale.title", "color", "", "color"), e.describe("scale", {
|
|
595
|
+
_fallback: !1,
|
|
596
|
+
_scriptable: (t) => !t.startsWith("before") && !t.startsWith("after") && t !== "callback" && t !== "parser",
|
|
597
|
+
_indexable: (t) => t !== "borderDash" && t !== "tickBorderDash" && t !== "dash"
|
|
598
|
+
}), e.describe("scales", {
|
|
599
|
+
_fallback: "scale"
|
|
600
|
+
}), e.describe("scale.ticks", {
|
|
601
|
+
_scriptable: (t) => t !== "backdropPadding" && t !== "callback",
|
|
602
|
+
_indexable: (t) => t !== "backdropPadding"
|
|
603
|
+
});
|
|
604
|
+
}
|
|
605
|
+
const tt = /* @__PURE__ */ Object.create(null), nt = /* @__PURE__ */ Object.create(null);
|
|
606
|
+
function A(e, t) {
|
|
607
|
+
if (!t)
|
|
608
|
+
return e;
|
|
609
|
+
const n = t.split(".");
|
|
610
|
+
for (let o = 0, r = n.length; o < r; ++o) {
|
|
611
|
+
const i = n[o];
|
|
612
|
+
e = e[i] || (e[i] = /* @__PURE__ */ Object.create(null));
|
|
613
|
+
}
|
|
614
|
+
return e;
|
|
615
|
+
}
|
|
616
|
+
function U(e, t, n) {
|
|
617
|
+
return typeof t == "string" ? E(A(e, t), n) : E(A(e, ""), t);
|
|
618
|
+
}
|
|
619
|
+
class ot {
|
|
620
|
+
constructor(t, n) {
|
|
621
|
+
this.animation = void 0, this.backgroundColor = "rgba(0,0,0,0.1)", this.borderColor = "rgba(0,0,0,0.1)", this.color = "#666", this.datasets = {}, this.devicePixelRatio = (o) => o.chart.platform.getDevicePixelRatio(), this.elements = {}, this.events = [
|
|
622
|
+
"mousemove",
|
|
623
|
+
"mouseout",
|
|
624
|
+
"click",
|
|
625
|
+
"touchstart",
|
|
626
|
+
"touchmove"
|
|
627
|
+
], this.font = {
|
|
628
|
+
family: "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",
|
|
629
|
+
size: 12,
|
|
630
|
+
style: "normal",
|
|
631
|
+
lineHeight: 1.2,
|
|
632
|
+
weight: null
|
|
633
|
+
}, this.hover = {}, this.hoverBackgroundColor = (o, r) => G(r.backgroundColor), this.hoverBorderColor = (o, r) => G(r.borderColor), this.hoverColor = (o, r) => G(r.color), this.indexAxis = "x", this.interaction = {
|
|
634
|
+
mode: "nearest",
|
|
635
|
+
intersect: !0,
|
|
636
|
+
includeInvisible: !1
|
|
637
|
+
}, this.maintainAspectRatio = !0, this.onHover = null, this.onClick = null, this.parsing = !0, this.plugins = {}, this.responsive = !0, this.scale = void 0, this.scales = {}, this.showLine = !0, this.drawActiveElementsOnTop = !0, this.describe(t), this.apply(n);
|
|
638
|
+
}
|
|
639
|
+
set(t, n) {
|
|
640
|
+
return U(this, t, n);
|
|
641
|
+
}
|
|
642
|
+
get(t) {
|
|
643
|
+
return A(this, t);
|
|
644
|
+
}
|
|
645
|
+
describe(t, n) {
|
|
646
|
+
return U(nt, t, n);
|
|
647
|
+
}
|
|
648
|
+
override(t, n) {
|
|
649
|
+
return U(tt, t, n);
|
|
650
|
+
}
|
|
651
|
+
route(t, n, o, r) {
|
|
652
|
+
const i = A(this, t), s = A(this, o), a = "_" + n;
|
|
653
|
+
Object.defineProperties(i, {
|
|
654
|
+
[a]: {
|
|
655
|
+
value: i[n],
|
|
656
|
+
writable: !0
|
|
657
|
+
},
|
|
658
|
+
[n]: {
|
|
659
|
+
enumerable: !0,
|
|
660
|
+
get() {
|
|
661
|
+
const c = this[a], l = s[r];
|
|
662
|
+
return _(c) ? Object.assign({}, l, c) : T(c, l);
|
|
663
|
+
},
|
|
664
|
+
set(c) {
|
|
665
|
+
this[a] = c;
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
});
|
|
669
|
+
}
|
|
670
|
+
apply(t) {
|
|
671
|
+
t.forEach((n) => n(this));
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
var rt = /* @__PURE__ */ new ot({
|
|
675
|
+
_scriptable: (e) => !e.startsWith("on"),
|
|
676
|
+
_indexable: (e) => e !== "events",
|
|
677
|
+
hover: {
|
|
678
|
+
_fallback: "interaction"
|
|
679
|
+
},
|
|
680
|
+
interaction: {
|
|
681
|
+
_scriptable: !1,
|
|
682
|
+
_indexable: !1
|
|
683
|
+
}
|
|
684
|
+
}, [
|
|
685
|
+
$e,
|
|
686
|
+
Ye,
|
|
687
|
+
et
|
|
688
|
+
]);
|
|
689
|
+
function it(e) {
|
|
690
|
+
return !e || L(e.size) || L(e.family) ? null : (e.style ? e.style + " " : "") + (e.weight ? e.weight + " " : "") + e.size + "px " + e.family;
|
|
691
|
+
}
|
|
692
|
+
function ae(e, t, n, o, r) {
|
|
693
|
+
let i = t[r];
|
|
694
|
+
return i || (i = t[r] = e.measureText(r).width, n.push(r)), i > o && (o = i), o;
|
|
695
|
+
}
|
|
696
|
+
function kn(e, t, n, o) {
|
|
697
|
+
o = o || {};
|
|
698
|
+
let r = o.data = o.data || {}, i = o.garbageCollect = o.garbageCollect || [];
|
|
699
|
+
o.font !== t && (r = o.data = {}, i = o.garbageCollect = [], o.font = t), e.save(), e.font = t;
|
|
700
|
+
let s = 0;
|
|
701
|
+
const a = n.length;
|
|
702
|
+
let c, l, u, d, h;
|
|
703
|
+
for (c = 0; c < a; c++)
|
|
704
|
+
if (d = n[c], d != null && !M(d))
|
|
705
|
+
s = ae(e, r, i, s, d);
|
|
706
|
+
else if (M(d))
|
|
707
|
+
for (l = 0, u = d.length; l < u; l++)
|
|
708
|
+
h = d[l], h != null && !M(h) && (s = ae(e, r, i, s, h));
|
|
709
|
+
e.restore();
|
|
710
|
+
const m = i.length / 2;
|
|
711
|
+
if (m > n.length) {
|
|
712
|
+
for (c = 0; c < m; c++)
|
|
713
|
+
delete r[i[c]];
|
|
714
|
+
i.splice(0, m);
|
|
715
|
+
}
|
|
716
|
+
return s;
|
|
717
|
+
}
|
|
718
|
+
function Rn(e, t, n) {
|
|
719
|
+
const o = e.currentDevicePixelRatio, r = n !== 0 ? Math.max(n / 2, 0.5) : 0;
|
|
720
|
+
return Math.round((t - r) * o) / o + r;
|
|
721
|
+
}
|
|
722
|
+
function In(e, t) {
|
|
723
|
+
!t && !e || (t = t || e.getContext("2d"), t.save(), t.resetTransform(), t.clearRect(0, 0, e.width, e.height), t.restore());
|
|
724
|
+
}
|
|
725
|
+
function vn(e, t, n, o) {
|
|
726
|
+
st(e, t, n, o, null);
|
|
727
|
+
}
|
|
728
|
+
function st(e, t, n, o, r) {
|
|
729
|
+
let i, s, a, c, l, u, d, h;
|
|
730
|
+
const m = t.pointStyle, p = t.rotation, g = t.radius;
|
|
731
|
+
let f = (p || 0) * ze;
|
|
732
|
+
if (m && typeof m == "object" && (i = m.toString(), i === "[object HTMLImageElement]" || i === "[object HTMLCanvasElement]")) {
|
|
733
|
+
e.save(), e.translate(n, o), e.rotate(f), e.drawImage(m, -m.width / 2, -m.height / 2, m.width, m.height), e.restore();
|
|
734
|
+
return;
|
|
735
|
+
}
|
|
736
|
+
if (!(isNaN(g) || g <= 0)) {
|
|
737
|
+
switch (e.beginPath(), m) {
|
|
738
|
+
default:
|
|
739
|
+
r ? e.ellipse(n, o, r / 2, g, 0, 0, S) : e.arc(n, o, g, 0, S), e.closePath();
|
|
740
|
+
break;
|
|
741
|
+
case "triangle":
|
|
742
|
+
u = r ? r / 2 : g, e.moveTo(n + Math.sin(f) * u, o - Math.cos(f) * g), f += te, e.lineTo(n + Math.sin(f) * u, o - Math.cos(f) * g), f += te, e.lineTo(n + Math.sin(f) * u, o - Math.cos(f) * g), e.closePath();
|
|
743
|
+
break;
|
|
744
|
+
case "rectRounded":
|
|
745
|
+
l = g * 0.516, c = g - l, s = Math.cos(f + P) * c, d = Math.cos(f + P) * (r ? r / 2 - l : c), a = Math.sin(f + P) * c, h = Math.sin(f + P) * (r ? r / 2 - l : c), e.arc(n - d, o - a, l, f - b, f - O), e.arc(n + h, o - s, l, f - O, f), e.arc(n + d, o + a, l, f, f + O), e.arc(n - h, o + s, l, f + O, f + b), e.closePath();
|
|
746
|
+
break;
|
|
747
|
+
case "rect":
|
|
748
|
+
if (!p) {
|
|
749
|
+
c = Math.SQRT1_2 * g, u = r ? r / 2 : c, e.rect(n - u, o - c, 2 * u, 2 * c);
|
|
750
|
+
break;
|
|
751
|
+
}
|
|
752
|
+
f += P;
|
|
753
|
+
case "rectRot":
|
|
754
|
+
d = Math.cos(f) * (r ? r / 2 : g), s = Math.cos(f) * g, a = Math.sin(f) * g, h = Math.sin(f) * (r ? r / 2 : g), e.moveTo(n - d, o - a), e.lineTo(n + h, o - s), e.lineTo(n + d, o + a), e.lineTo(n - h, o + s), e.closePath();
|
|
755
|
+
break;
|
|
756
|
+
case "crossRot":
|
|
757
|
+
f += P;
|
|
758
|
+
case "cross":
|
|
759
|
+
d = Math.cos(f) * (r ? r / 2 : g), s = Math.cos(f) * g, a = Math.sin(f) * g, h = Math.sin(f) * (r ? r / 2 : g), e.moveTo(n - d, o - a), e.lineTo(n + d, o + a), e.moveTo(n + h, o - s), e.lineTo(n - h, o + s);
|
|
760
|
+
break;
|
|
761
|
+
case "star":
|
|
762
|
+
d = Math.cos(f) * (r ? r / 2 : g), s = Math.cos(f) * g, a = Math.sin(f) * g, h = Math.sin(f) * (r ? r / 2 : g), e.moveTo(n - d, o - a), e.lineTo(n + d, o + a), e.moveTo(n + h, o - s), e.lineTo(n - h, o + s), f += P, d = Math.cos(f) * (r ? r / 2 : g), s = Math.cos(f) * g, a = Math.sin(f) * g, h = Math.sin(f) * (r ? r / 2 : g), e.moveTo(n - d, o - a), e.lineTo(n + d, o + a), e.moveTo(n + h, o - s), e.lineTo(n - h, o + s);
|
|
763
|
+
break;
|
|
764
|
+
case "line":
|
|
765
|
+
s = r ? r / 2 : Math.cos(f) * g, a = Math.sin(f) * g, e.moveTo(n - s, o - a), e.lineTo(n + s, o + a);
|
|
766
|
+
break;
|
|
767
|
+
case "dash":
|
|
768
|
+
e.moveTo(n, o), e.lineTo(n + Math.cos(f) * (r ? r / 2 : g), o + Math.sin(f) * g);
|
|
769
|
+
break;
|
|
770
|
+
case !1:
|
|
771
|
+
e.closePath();
|
|
772
|
+
break;
|
|
773
|
+
}
|
|
774
|
+
e.fill(), t.borderWidth > 0 && e.stroke();
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
function ce(e, t, n) {
|
|
778
|
+
return n = n || 0.5, !t || e && e.x > t.left - n && e.x < t.right + n && e.y > t.top - n && e.y < t.bottom + n;
|
|
779
|
+
}
|
|
780
|
+
function An(e, t) {
|
|
781
|
+
e.save(), e.beginPath(), e.rect(t.left, t.top, t.right - t.left, t.bottom - t.top), e.clip();
|
|
782
|
+
}
|
|
783
|
+
function Bn(e) {
|
|
784
|
+
e.restore();
|
|
785
|
+
}
|
|
786
|
+
function jn(e, t, n, o, r) {
|
|
787
|
+
if (!t)
|
|
788
|
+
return e.lineTo(n.x, n.y);
|
|
789
|
+
if (r === "middle") {
|
|
790
|
+
const i = (t.x + n.x) / 2;
|
|
791
|
+
e.lineTo(i, t.y), e.lineTo(i, n.y);
|
|
792
|
+
} else r === "after" != !!o ? e.lineTo(t.x, n.y) : e.lineTo(n.x, t.y);
|
|
793
|
+
e.lineTo(n.x, n.y);
|
|
794
|
+
}
|
|
795
|
+
function Dn(e, t, n, o) {
|
|
796
|
+
if (!t)
|
|
797
|
+
return e.lineTo(n.x, n.y);
|
|
798
|
+
e.bezierCurveTo(o ? t.cp1x : t.cp2x, o ? t.cp1y : t.cp2y, o ? n.cp2x : n.cp1x, o ? n.cp2y : n.cp1y, n.x, n.y);
|
|
799
|
+
}
|
|
800
|
+
function at(e, t) {
|
|
801
|
+
t.translation && e.translate(t.translation[0], t.translation[1]), L(t.rotation) || e.rotate(t.rotation), t.color && (e.fillStyle = t.color), t.textAlign && (e.textAlign = t.textAlign), t.textBaseline && (e.textBaseline = t.textBaseline);
|
|
802
|
+
}
|
|
803
|
+
function ct(e, t, n, o, r) {
|
|
804
|
+
if (r.strikethrough || r.underline) {
|
|
805
|
+
const i = e.measureText(o), s = t - i.actualBoundingBoxLeft, a = t + i.actualBoundingBoxRight, c = n - i.actualBoundingBoxAscent, l = n + i.actualBoundingBoxDescent, u = r.strikethrough ? (c + l) / 2 : l;
|
|
806
|
+
e.strokeStyle = e.fillStyle, e.beginPath(), e.lineWidth = r.decorationWidth || 2, e.moveTo(s, u), e.lineTo(a, u), e.stroke();
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
function lt(e, t) {
|
|
810
|
+
const n = e.fillStyle;
|
|
811
|
+
e.fillStyle = t.color, e.fillRect(t.left, t.top, t.width, t.height), e.fillStyle = n;
|
|
812
|
+
}
|
|
813
|
+
function Wn(e, t, n, o, r, i = {}) {
|
|
814
|
+
const s = M(t) ? t : [
|
|
815
|
+
t
|
|
816
|
+
], a = i.strokeWidth > 0 && i.strokeColor !== "";
|
|
817
|
+
let c, l;
|
|
818
|
+
for (e.save(), e.font = r.string, at(e, i), c = 0; c < s.length; ++c)
|
|
819
|
+
l = s[c], i.backdrop && lt(e, i.backdrop), a && (i.strokeColor && (e.strokeStyle = i.strokeColor), L(i.strokeWidth) || (e.lineWidth = i.strokeWidth), e.strokeText(l, n, o, i.maxWidth)), e.fillText(l, n, o, i.maxWidth), ct(e, n, o, l, i), o += Number(r.lineHeight);
|
|
820
|
+
e.restore();
|
|
821
|
+
}
|
|
822
|
+
function Ln(e, t) {
|
|
823
|
+
const { x: n, y: o, w: r, h: i, radius: s } = t;
|
|
824
|
+
e.arc(n + s.topLeft, o + s.topLeft, s.topLeft, 1.5 * b, b, !0), e.lineTo(n, o + i - s.bottomLeft), e.arc(n + s.bottomLeft, o + i - s.bottomLeft, s.bottomLeft, b, O, !0), e.lineTo(n + r - s.bottomRight, o + i), e.arc(n + r - s.bottomRight, o + i - s.bottomRight, s.bottomRight, O, 0, !0), e.lineTo(n + r, o + s.topRight), e.arc(n + r - s.topRight, o + s.topRight, s.topRight, 0, -O, !0), e.lineTo(n + s.topLeft, o);
|
|
825
|
+
}
|
|
826
|
+
const ut = /^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/, ft = /^(normal|italic|initial|inherit|unset|(oblique( -?[0-9]?[0-9]deg)?))$/;
|
|
827
|
+
function dt(e, t) {
|
|
828
|
+
const n = ("" + e).match(ut);
|
|
829
|
+
if (!n || n[1] === "normal")
|
|
830
|
+
return t * 1.2;
|
|
831
|
+
switch (e = +n[2], n[3]) {
|
|
832
|
+
case "px":
|
|
833
|
+
return e;
|
|
834
|
+
case "%":
|
|
835
|
+
e /= 100;
|
|
836
|
+
break;
|
|
837
|
+
}
|
|
838
|
+
return t * e;
|
|
839
|
+
}
|
|
840
|
+
const ht = (e) => +e || 0;
|
|
841
|
+
function we(e, t) {
|
|
842
|
+
const n = {}, o = _(t), r = o ? Object.keys(t) : t, i = _(e) ? o ? (s) => T(e[s], e[t[s]]) : (s) => e[s] : () => e;
|
|
843
|
+
for (const s of r)
|
|
844
|
+
n[s] = ht(i(s));
|
|
845
|
+
return n;
|
|
846
|
+
}
|
|
847
|
+
function gt(e) {
|
|
848
|
+
return we(e, {
|
|
849
|
+
top: "y",
|
|
850
|
+
right: "x",
|
|
851
|
+
bottom: "y",
|
|
852
|
+
left: "x"
|
|
853
|
+
});
|
|
854
|
+
}
|
|
855
|
+
function Nn(e) {
|
|
856
|
+
return we(e, [
|
|
857
|
+
"topLeft",
|
|
858
|
+
"topRight",
|
|
859
|
+
"bottomLeft",
|
|
860
|
+
"bottomRight"
|
|
861
|
+
]);
|
|
862
|
+
}
|
|
863
|
+
function En(e) {
|
|
864
|
+
const t = gt(e);
|
|
865
|
+
return t.width = t.left + t.right, t.height = t.top + t.bottom, t;
|
|
866
|
+
}
|
|
867
|
+
function Fn(e, t) {
|
|
868
|
+
e = e || {}, t = t || rt.font;
|
|
869
|
+
let n = T(e.size, t.size);
|
|
870
|
+
typeof n == "string" && (n = parseInt(n, 10));
|
|
871
|
+
let o = T(e.style, t.style);
|
|
872
|
+
o && !("" + o).match(ft) && (console.warn('Invalid font style specified: "' + o + '"'), o = void 0);
|
|
873
|
+
const r = {
|
|
874
|
+
family: T(e.family, t.family),
|
|
875
|
+
lineHeight: dt(T(e.lineHeight, t.lineHeight), n),
|
|
876
|
+
size: n,
|
|
877
|
+
style: o,
|
|
878
|
+
weight: T(e.weight, t.weight),
|
|
879
|
+
string: ""
|
|
880
|
+
};
|
|
881
|
+
return r.string = it(r), r;
|
|
882
|
+
}
|
|
883
|
+
function zn(e, t, n, o) {
|
|
884
|
+
let r, i, s;
|
|
885
|
+
for (r = 0, i = e.length; r < i; ++r)
|
|
886
|
+
if (s = e[r], s !== void 0 && s !== void 0)
|
|
887
|
+
return s;
|
|
888
|
+
}
|
|
889
|
+
function Hn(e, t, n) {
|
|
890
|
+
const { min: o, max: r } = e, i = je(t, (r - o) / 2), s = (a, c) => n && a === 0 ? 0 : a + c;
|
|
891
|
+
return {
|
|
892
|
+
min: s(o, -Math.abs(i)),
|
|
893
|
+
max: s(r, i)
|
|
894
|
+
};
|
|
895
|
+
}
|
|
896
|
+
function mt(e, t) {
|
|
897
|
+
return Object.assign(Object.create(e), t);
|
|
898
|
+
}
|
|
899
|
+
function Pe(e, t = [
|
|
900
|
+
""
|
|
901
|
+
], n, o, r = () => e[0]) {
|
|
902
|
+
const i = n || e;
|
|
903
|
+
typeof o > "u" && (o = Ce("_fallback", e));
|
|
904
|
+
const s = {
|
|
905
|
+
[Symbol.toStringTag]: "Object",
|
|
906
|
+
_cacheable: !0,
|
|
907
|
+
_scopes: e,
|
|
908
|
+
_rootScopes: i,
|
|
909
|
+
_fallback: o,
|
|
910
|
+
_getTarget: r,
|
|
911
|
+
override: (a) => Pe([
|
|
912
|
+
a,
|
|
913
|
+
...e
|
|
914
|
+
], t, i, o)
|
|
915
|
+
};
|
|
916
|
+
return new Proxy(s, {
|
|
917
|
+
/**
|
|
918
|
+
* A trap for the delete operator.
|
|
919
|
+
*/
|
|
920
|
+
deleteProperty(a, c) {
|
|
921
|
+
return delete a[c], delete a._keys, delete e[0][c], !0;
|
|
922
|
+
},
|
|
923
|
+
/**
|
|
924
|
+
* A trap for getting property values.
|
|
925
|
+
*/
|
|
926
|
+
get(a, c) {
|
|
927
|
+
return Te(a, c, () => Pt(c, t, e, a));
|
|
928
|
+
},
|
|
929
|
+
/**
|
|
930
|
+
* A trap for Object.getOwnPropertyDescriptor.
|
|
931
|
+
* Also used by Object.hasOwnProperty.
|
|
932
|
+
*/
|
|
933
|
+
getOwnPropertyDescriptor(a, c) {
|
|
934
|
+
return Reflect.getOwnPropertyDescriptor(a._scopes[0], c);
|
|
935
|
+
},
|
|
936
|
+
/**
|
|
937
|
+
* A trap for Object.getPrototypeOf.
|
|
938
|
+
*/
|
|
939
|
+
getPrototypeOf() {
|
|
940
|
+
return Reflect.getPrototypeOf(e[0]);
|
|
941
|
+
},
|
|
942
|
+
/**
|
|
943
|
+
* A trap for the in operator.
|
|
944
|
+
*/
|
|
945
|
+
has(a, c) {
|
|
946
|
+
return ue(a).includes(c);
|
|
947
|
+
},
|
|
948
|
+
/**
|
|
949
|
+
* A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.
|
|
950
|
+
*/
|
|
951
|
+
ownKeys(a) {
|
|
952
|
+
return ue(a);
|
|
953
|
+
},
|
|
954
|
+
/**
|
|
955
|
+
* A trap for setting property values.
|
|
956
|
+
*/
|
|
957
|
+
set(a, c, l) {
|
|
958
|
+
const u = a._storage || (a._storage = r());
|
|
959
|
+
return a[c] = u[c] = l, delete a._keys, !0;
|
|
960
|
+
}
|
|
961
|
+
});
|
|
962
|
+
}
|
|
963
|
+
function H(e, t, n, o) {
|
|
964
|
+
const r = {
|
|
965
|
+
_cacheable: !1,
|
|
966
|
+
_proxy: e,
|
|
967
|
+
_context: t,
|
|
968
|
+
_subProxy: n,
|
|
969
|
+
_stack: /* @__PURE__ */ new Set(),
|
|
970
|
+
_descriptors: pt(e, o),
|
|
971
|
+
setContext: (i) => H(e, i, n, o),
|
|
972
|
+
override: (i) => H(e.override(i), t, n, o)
|
|
973
|
+
};
|
|
974
|
+
return new Proxy(r, {
|
|
975
|
+
/**
|
|
976
|
+
* A trap for the delete operator.
|
|
977
|
+
*/
|
|
978
|
+
deleteProperty(i, s) {
|
|
979
|
+
return delete i[s], delete e[s], !0;
|
|
980
|
+
},
|
|
981
|
+
/**
|
|
982
|
+
* A trap for getting property values.
|
|
983
|
+
*/
|
|
984
|
+
get(i, s, a) {
|
|
985
|
+
return Te(i, s, () => yt(i, s, a));
|
|
986
|
+
},
|
|
987
|
+
/**
|
|
988
|
+
* A trap for Object.getOwnPropertyDescriptor.
|
|
989
|
+
* Also used by Object.hasOwnProperty.
|
|
990
|
+
*/
|
|
991
|
+
getOwnPropertyDescriptor(i, s) {
|
|
992
|
+
return i._descriptors.allKeys ? Reflect.has(e, s) ? {
|
|
993
|
+
enumerable: !0,
|
|
994
|
+
configurable: !0
|
|
995
|
+
} : void 0 : Reflect.getOwnPropertyDescriptor(e, s);
|
|
996
|
+
},
|
|
997
|
+
/**
|
|
998
|
+
* A trap for Object.getPrototypeOf.
|
|
999
|
+
*/
|
|
1000
|
+
getPrototypeOf() {
|
|
1001
|
+
return Reflect.getPrototypeOf(e);
|
|
1002
|
+
},
|
|
1003
|
+
/**
|
|
1004
|
+
* A trap for the in operator.
|
|
1005
|
+
*/
|
|
1006
|
+
has(i, s) {
|
|
1007
|
+
return Reflect.has(e, s);
|
|
1008
|
+
},
|
|
1009
|
+
/**
|
|
1010
|
+
* A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.
|
|
1011
|
+
*/
|
|
1012
|
+
ownKeys() {
|
|
1013
|
+
return Reflect.ownKeys(e);
|
|
1014
|
+
},
|
|
1015
|
+
/**
|
|
1016
|
+
* A trap for setting property values.
|
|
1017
|
+
*/
|
|
1018
|
+
set(i, s, a) {
|
|
1019
|
+
return e[s] = a, delete i[s], !0;
|
|
1020
|
+
}
|
|
1021
|
+
});
|
|
1022
|
+
}
|
|
1023
|
+
function pt(e, t = {
|
|
1024
|
+
scriptable: !0,
|
|
1025
|
+
indexable: !0
|
|
1026
|
+
}) {
|
|
1027
|
+
const { _scriptable: n = t.scriptable, _indexable: o = t.indexable, _allKeys: r = t.allKeys } = e;
|
|
1028
|
+
return {
|
|
1029
|
+
allKeys: r,
|
|
1030
|
+
scriptable: n,
|
|
1031
|
+
indexable: o,
|
|
1032
|
+
isScriptable: F(n) ? n : () => n,
|
|
1033
|
+
isIndexable: F(o) ? o : () => o
|
|
1034
|
+
};
|
|
1035
|
+
}
|
|
1036
|
+
const bt = (e, t) => e ? e + ye(t) : t, X = (e, t) => _(t) && e !== "adapters" && (Object.getPrototypeOf(t) === null || t.constructor === Object);
|
|
1037
|
+
function Te(e, t, n) {
|
|
1038
|
+
if (Object.prototype.hasOwnProperty.call(e, t) || t === "constructor")
|
|
1039
|
+
return e[t];
|
|
1040
|
+
const o = n();
|
|
1041
|
+
return e[t] = o, o;
|
|
1042
|
+
}
|
|
1043
|
+
function yt(e, t, n) {
|
|
1044
|
+
const { _proxy: o, _context: r, _subProxy: i, _descriptors: s } = e;
|
|
1045
|
+
let a = o[t];
|
|
1046
|
+
return F(a) && s.isScriptable(t) && (a = _t(t, a, e, n)), M(a) && a.length && (a = Mt(t, a, e, s.isIndexable)), X(t, a) && (a = H(a, r, i && i[t], s)), a;
|
|
1047
|
+
}
|
|
1048
|
+
function _t(e, t, n, o) {
|
|
1049
|
+
const { _proxy: r, _context: i, _subProxy: s, _stack: a } = n;
|
|
1050
|
+
if (a.has(e))
|
|
1051
|
+
throw new Error("Recursion detected: " + Array.from(a).join("->") + "->" + e);
|
|
1052
|
+
a.add(e);
|
|
1053
|
+
let c = t(i, s || o);
|
|
1054
|
+
return a.delete(e), X(e, c) && (c = Z(r._scopes, r, e, c)), c;
|
|
1055
|
+
}
|
|
1056
|
+
function Mt(e, t, n, o) {
|
|
1057
|
+
const { _proxy: r, _context: i, _subProxy: s, _descriptors: a } = n;
|
|
1058
|
+
if (typeof i.index < "u" && o(e))
|
|
1059
|
+
return t[i.index % t.length];
|
|
1060
|
+
if (_(t[0])) {
|
|
1061
|
+
const c = t, l = r._scopes.filter((u) => u !== c);
|
|
1062
|
+
t = [];
|
|
1063
|
+
for (const u of c) {
|
|
1064
|
+
const d = Z(l, r, e, u);
|
|
1065
|
+
t.push(H(d, i, s && s[e], a));
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
return t;
|
|
1069
|
+
}
|
|
1070
|
+
function xe(e, t, n) {
|
|
1071
|
+
return F(e) ? e(t, n) : e;
|
|
1072
|
+
}
|
|
1073
|
+
const St = (e, t) => e === !0 ? t : typeof e == "string" ? be(t, e) : void 0;
|
|
1074
|
+
function Ot(e, t, n, o, r) {
|
|
1075
|
+
for (const i of t) {
|
|
1076
|
+
const s = St(n, i);
|
|
1077
|
+
if (s) {
|
|
1078
|
+
e.add(s);
|
|
1079
|
+
const a = xe(s._fallback, n, r);
|
|
1080
|
+
if (typeof a < "u" && a !== n && a !== o)
|
|
1081
|
+
return a;
|
|
1082
|
+
} else if (s === !1 && typeof o < "u" && n !== o)
|
|
1083
|
+
return null;
|
|
1084
|
+
}
|
|
1085
|
+
return !1;
|
|
1086
|
+
}
|
|
1087
|
+
function Z(e, t, n, o) {
|
|
1088
|
+
const r = t._rootScopes, i = xe(t._fallback, n, o), s = [
|
|
1089
|
+
...e,
|
|
1090
|
+
...r
|
|
1091
|
+
], a = /* @__PURE__ */ new Set();
|
|
1092
|
+
a.add(o);
|
|
1093
|
+
let c = le(a, s, n, i || n, o);
|
|
1094
|
+
return c === null || typeof i < "u" && i !== n && (c = le(a, s, i, c, o), c === null) ? !1 : Pe(Array.from(a), [
|
|
1095
|
+
""
|
|
1096
|
+
], r, i, () => wt(t, n, o));
|
|
1097
|
+
}
|
|
1098
|
+
function le(e, t, n, o, r) {
|
|
1099
|
+
for (; n; )
|
|
1100
|
+
n = Ot(e, t, n, o, r);
|
|
1101
|
+
return n;
|
|
1102
|
+
}
|
|
1103
|
+
function wt(e, t, n) {
|
|
1104
|
+
const o = e._getTarget();
|
|
1105
|
+
t in o || (o[t] = {});
|
|
1106
|
+
const r = o[t];
|
|
1107
|
+
return M(r) && _(n) ? n : r || {};
|
|
1108
|
+
}
|
|
1109
|
+
function Pt(e, t, n, o) {
|
|
1110
|
+
let r;
|
|
1111
|
+
for (const i of t)
|
|
1112
|
+
if (r = Ce(bt(i, e), n), typeof r < "u")
|
|
1113
|
+
return X(e, r) ? Z(n, o, e, r) : r;
|
|
1114
|
+
}
|
|
1115
|
+
function Ce(e, t) {
|
|
1116
|
+
for (const n of t) {
|
|
1117
|
+
if (!n)
|
|
1118
|
+
continue;
|
|
1119
|
+
const o = n[e];
|
|
1120
|
+
if (typeof o < "u")
|
|
1121
|
+
return o;
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
function ue(e) {
|
|
1125
|
+
let t = e._keys;
|
|
1126
|
+
return t || (t = e._keys = Tt(e._scopes)), t;
|
|
1127
|
+
}
|
|
1128
|
+
function Tt(e) {
|
|
1129
|
+
const t = /* @__PURE__ */ new Set();
|
|
1130
|
+
for (const n of e)
|
|
1131
|
+
for (const o of Object.keys(n).filter((r) => !r.startsWith("_")))
|
|
1132
|
+
t.add(o);
|
|
1133
|
+
return Array.from(t);
|
|
1134
|
+
}
|
|
1135
|
+
function qn(e, t, n, o) {
|
|
1136
|
+
const { iScale: r } = e, { key: i = "r" } = this._parsing, s = new Array(o);
|
|
1137
|
+
let a, c, l, u;
|
|
1138
|
+
for (a = 0, c = o; a < c; ++a)
|
|
1139
|
+
l = a + n, u = t[l], s[a] = {
|
|
1140
|
+
r: r.parse(be(u, i), l)
|
|
1141
|
+
};
|
|
1142
|
+
return s;
|
|
1143
|
+
}
|
|
1144
|
+
const xt = Number.EPSILON || 1e-14, I = (e, t) => t < e.length && !e[t].skip && e[t], ke = (e) => e === "x" ? "y" : "x";
|
|
1145
|
+
function Ct(e, t, n, o) {
|
|
1146
|
+
const r = e.skip ? t : e, i = t, s = n.skip ? t : n, a = oe(i, r), c = oe(s, i);
|
|
1147
|
+
let l = a / (a + c), u = c / (a + c);
|
|
1148
|
+
l = isNaN(l) ? 0 : l, u = isNaN(u) ? 0 : u;
|
|
1149
|
+
const d = o * l, h = o * u;
|
|
1150
|
+
return {
|
|
1151
|
+
previous: {
|
|
1152
|
+
x: i.x - d * (s.x - r.x),
|
|
1153
|
+
y: i.y - d * (s.y - r.y)
|
|
1154
|
+
},
|
|
1155
|
+
next: {
|
|
1156
|
+
x: i.x + h * (s.x - r.x),
|
|
1157
|
+
y: i.y + h * (s.y - r.y)
|
|
1158
|
+
}
|
|
1159
|
+
};
|
|
1160
|
+
}
|
|
1161
|
+
function kt(e, t, n) {
|
|
1162
|
+
const o = e.length;
|
|
1163
|
+
let r, i, s, a, c, l = I(e, 0);
|
|
1164
|
+
for (let u = 0; u < o - 1; ++u)
|
|
1165
|
+
if (c = l, l = I(e, u + 1), !(!c || !l)) {
|
|
1166
|
+
if (_e(t[u], 0, xt)) {
|
|
1167
|
+
n[u] = n[u + 1] = 0;
|
|
1168
|
+
continue;
|
|
1169
|
+
}
|
|
1170
|
+
r = n[u] / t[u], i = n[u + 1] / t[u], a = Math.pow(r, 2) + Math.pow(i, 2), !(a <= 9) && (s = 3 / Math.sqrt(a), n[u] = r * s * t[u], n[u + 1] = i * s * t[u]);
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
function Rt(e, t, n = "x") {
|
|
1174
|
+
const o = ke(n), r = e.length;
|
|
1175
|
+
let i, s, a, c = I(e, 0);
|
|
1176
|
+
for (let l = 0; l < r; ++l) {
|
|
1177
|
+
if (s = a, a = c, c = I(e, l + 1), !a)
|
|
1178
|
+
continue;
|
|
1179
|
+
const u = a[n], d = a[o];
|
|
1180
|
+
s && (i = (u - s[n]) / 3, a[`cp1${n}`] = u - i, a[`cp1${o}`] = d - i * t[l]), c && (i = (c[n] - u) / 3, a[`cp2${n}`] = u + i, a[`cp2${o}`] = d + i * t[l]);
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
function It(e, t = "x") {
|
|
1184
|
+
const n = ke(t), o = e.length, r = Array(o).fill(0), i = Array(o);
|
|
1185
|
+
let s, a, c, l = I(e, 0);
|
|
1186
|
+
for (s = 0; s < o; ++s)
|
|
1187
|
+
if (a = c, c = l, l = I(e, s + 1), !!c) {
|
|
1188
|
+
if (l) {
|
|
1189
|
+
const u = l[t] - c[t];
|
|
1190
|
+
r[s] = u !== 0 ? (l[n] - c[n]) / u : 0;
|
|
1191
|
+
}
|
|
1192
|
+
i[s] = a ? l ? ne(r[s - 1]) !== ne(r[s]) ? 0 : (r[s - 1] + r[s]) / 2 : r[s - 1] : r[s];
|
|
1193
|
+
}
|
|
1194
|
+
kt(e, r, i), Rt(e, i, t);
|
|
1195
|
+
}
|
|
1196
|
+
function D(e, t, n) {
|
|
1197
|
+
return Math.max(Math.min(e, n), t);
|
|
1198
|
+
}
|
|
1199
|
+
function vt(e, t) {
|
|
1200
|
+
let n, o, r, i, s, a = ce(e[0], t);
|
|
1201
|
+
for (n = 0, o = e.length; n < o; ++n)
|
|
1202
|
+
s = i, i = a, a = n < o - 1 && ce(e[n + 1], t), i && (r = e[n], s && (r.cp1x = D(r.cp1x, t.left, t.right), r.cp1y = D(r.cp1y, t.top, t.bottom)), a && (r.cp2x = D(r.cp2x, t.left, t.right), r.cp2y = D(r.cp2y, t.top, t.bottom)));
|
|
1203
|
+
}
|
|
1204
|
+
function Kn(e, t, n, o, r) {
|
|
1205
|
+
let i, s, a, c;
|
|
1206
|
+
if (t.spanGaps && (e = e.filter((l) => !l.skip)), t.cubicInterpolationMode === "monotone")
|
|
1207
|
+
It(e, r);
|
|
1208
|
+
else {
|
|
1209
|
+
let l = o ? e[e.length - 1] : e[0];
|
|
1210
|
+
for (i = 0, s = e.length; i < s; ++i)
|
|
1211
|
+
a = e[i], c = Ct(l, a, e[Math.min(i + 1, s - (o ? 0 : 1)) % s], t.tension), a.cp1x = c.previous.x, a.cp1y = c.previous.y, a.cp2x = c.next.x, a.cp2y = c.next.y, l = a;
|
|
1212
|
+
}
|
|
1213
|
+
t.capBezierPoints && vt(e, n);
|
|
1214
|
+
}
|
|
1215
|
+
function At() {
|
|
1216
|
+
return typeof window < "u" && typeof document < "u";
|
|
1217
|
+
}
|
|
1218
|
+
function Bt(e) {
|
|
1219
|
+
let t = e.parentNode;
|
|
1220
|
+
return t && t.toString() === "[object ShadowRoot]" && (t = t.host), t;
|
|
1221
|
+
}
|
|
1222
|
+
function q(e, t, n) {
|
|
1223
|
+
let o;
|
|
1224
|
+
return typeof e == "string" ? (o = parseInt(e, 10), e.indexOf("%") !== -1 && (o = o / 100 * t.parentNode[n])) : o = e, o;
|
|
1225
|
+
}
|
|
1226
|
+
const K = (e) => e.ownerDocument.defaultView.getComputedStyle(e, null);
|
|
1227
|
+
function jt(e, t) {
|
|
1228
|
+
return K(e).getPropertyValue(t);
|
|
1229
|
+
}
|
|
1230
|
+
const Dt = [
|
|
1231
|
+
"top",
|
|
1232
|
+
"right",
|
|
1233
|
+
"bottom",
|
|
1234
|
+
"left"
|
|
1235
|
+
];
|
|
1236
|
+
function x(e, t, n) {
|
|
1237
|
+
const o = {};
|
|
1238
|
+
n = n ? "-" + n : "";
|
|
1239
|
+
for (let r = 0; r < 4; r++) {
|
|
1240
|
+
const i = Dt[r];
|
|
1241
|
+
o[i] = parseFloat(e[t + "-" + i + n]) || 0;
|
|
1242
|
+
}
|
|
1243
|
+
return o.width = o.left + o.right, o.height = o.top + o.bottom, o;
|
|
1244
|
+
}
|
|
1245
|
+
const Wt = (e, t, n) => (e > 0 || t > 0) && (!n || !n.shadowRoot);
|
|
1246
|
+
function Lt(e, t) {
|
|
1247
|
+
const n = e.touches, o = n && n.length ? n[0] : e, { offsetX: r, offsetY: i } = o;
|
|
1248
|
+
let s = !1, a, c;
|
|
1249
|
+
if (Wt(r, i, e.target))
|
|
1250
|
+
a = r, c = i;
|
|
1251
|
+
else {
|
|
1252
|
+
const l = t.getBoundingClientRect();
|
|
1253
|
+
a = o.clientX - l.left, c = o.clientY - l.top, s = !0;
|
|
1254
|
+
}
|
|
1255
|
+
return {
|
|
1256
|
+
x: a,
|
|
1257
|
+
y: c,
|
|
1258
|
+
box: s
|
|
1259
|
+
};
|
|
1260
|
+
}
|
|
1261
|
+
function Qn(e, t) {
|
|
1262
|
+
if ("native" in e)
|
|
1263
|
+
return e;
|
|
1264
|
+
const { canvas: n, currentDevicePixelRatio: o } = t, r = K(n), i = r.boxSizing === "border-box", s = x(r, "padding"), a = x(r, "border", "width"), { x: c, y: l, box: u } = Lt(e, n), d = s.left + (u && a.left), h = s.top + (u && a.top);
|
|
1265
|
+
let { width: m, height: p } = t;
|
|
1266
|
+
return i && (m -= s.width + a.width, p -= s.height + a.height), {
|
|
1267
|
+
x: Math.round((c - d) / m * n.width / o),
|
|
1268
|
+
y: Math.round((l - h) / p * n.height / o)
|
|
1269
|
+
};
|
|
1270
|
+
}
|
|
1271
|
+
function Nt(e, t, n) {
|
|
1272
|
+
let o, r;
|
|
1273
|
+
if (t === void 0 || n === void 0) {
|
|
1274
|
+
const i = e && Bt(e);
|
|
1275
|
+
if (!i)
|
|
1276
|
+
t = e.clientWidth, n = e.clientHeight;
|
|
1277
|
+
else {
|
|
1278
|
+
const s = i.getBoundingClientRect(), a = K(i), c = x(a, "border", "width"), l = x(a, "padding");
|
|
1279
|
+
t = s.width - l.width - c.width, n = s.height - l.height - c.height, o = q(a.maxWidth, i, "clientWidth"), r = q(a.maxHeight, i, "clientHeight");
|
|
1280
|
+
}
|
|
1281
|
+
}
|
|
1282
|
+
return {
|
|
1283
|
+
width: t,
|
|
1284
|
+
height: n,
|
|
1285
|
+
maxWidth: o || z,
|
|
1286
|
+
maxHeight: r || z
|
|
1287
|
+
};
|
|
1288
|
+
}
|
|
1289
|
+
const W = (e) => Math.round(e * 10) / 10;
|
|
1290
|
+
function Gn(e, t, n, o) {
|
|
1291
|
+
const r = K(e), i = x(r, "margin"), s = q(r.maxWidth, e, "clientWidth") || z, a = q(r.maxHeight, e, "clientHeight") || z, c = Nt(e, t, n);
|
|
1292
|
+
let { width: l, height: u } = c;
|
|
1293
|
+
if (r.boxSizing === "content-box") {
|
|
1294
|
+
const h = x(r, "border", "width"), m = x(r, "padding");
|
|
1295
|
+
l -= m.width + h.width, u -= m.height + h.height;
|
|
1296
|
+
}
|
|
1297
|
+
return l = Math.max(0, l - i.width), u = Math.max(0, o ? l / o : u - i.height), l = W(Math.min(l, s, c.maxWidth)), u = W(Math.min(u, a, c.maxHeight)), l && !u && (u = W(l / 2)), (t !== void 0 || n !== void 0) && o && c.height && u > c.height && (u = c.height, l = W(Math.floor(u * o))), {
|
|
1298
|
+
width: l,
|
|
1299
|
+
height: u
|
|
1300
|
+
};
|
|
1301
|
+
}
|
|
1302
|
+
function Un(e, t, n) {
|
|
1303
|
+
const o = t || 1, r = Math.floor(e.height * o), i = Math.floor(e.width * o);
|
|
1304
|
+
e.height = Math.floor(e.height), e.width = Math.floor(e.width);
|
|
1305
|
+
const s = e.canvas;
|
|
1306
|
+
return s.style && (n || !s.style.height && !s.style.width) && (s.style.height = `${e.height}px`, s.style.width = `${e.width}px`), e.currentDevicePixelRatio !== o || s.height !== r || s.width !== i ? (e.currentDevicePixelRatio = o, s.height = r, s.width = i, e.ctx.setTransform(o, 0, 0, o, 0, 0), !0) : !1;
|
|
1307
|
+
}
|
|
1308
|
+
const $n = function() {
|
|
1309
|
+
let e = !1;
|
|
1310
|
+
try {
|
|
1311
|
+
const t = {
|
|
1312
|
+
get passive() {
|
|
1313
|
+
return e = !0, !1;
|
|
1314
|
+
}
|
|
1315
|
+
};
|
|
1316
|
+
At() && (window.addEventListener("test", null, t), window.removeEventListener("test", null, t));
|
|
1317
|
+
} catch {
|
|
1318
|
+
}
|
|
1319
|
+
return e;
|
|
1320
|
+
}();
|
|
1321
|
+
function Yn(e, t) {
|
|
1322
|
+
const n = jt(e, t), o = n && n.match(/^(\d+)(\.\d+)?px$/);
|
|
1323
|
+
return o ? +o[1] : void 0;
|
|
1324
|
+
}
|
|
1325
|
+
function R(e, t, n, o) {
|
|
1326
|
+
return {
|
|
1327
|
+
x: e.x + n * (t.x - e.x),
|
|
1328
|
+
y: e.y + n * (t.y - e.y)
|
|
1329
|
+
};
|
|
1330
|
+
}
|
|
1331
|
+
function Jn(e, t, n, o) {
|
|
1332
|
+
return {
|
|
1333
|
+
x: e.x + n * (t.x - e.x),
|
|
1334
|
+
y: o === "middle" ? n < 0.5 ? e.y : t.y : o === "after" ? n < 1 ? e.y : t.y : n > 0 ? t.y : e.y
|
|
1335
|
+
};
|
|
1336
|
+
}
|
|
1337
|
+
function Xn(e, t, n, o) {
|
|
1338
|
+
const r = {
|
|
1339
|
+
x: e.cp2x,
|
|
1340
|
+
y: e.cp2y
|
|
1341
|
+
}, i = {
|
|
1342
|
+
x: t.cp1x,
|
|
1343
|
+
y: t.cp1y
|
|
1344
|
+
}, s = R(e, r, n), a = R(r, i, n), c = R(i, t, n), l = R(s, a, n), u = R(a, c, n);
|
|
1345
|
+
return R(l, u, n);
|
|
1346
|
+
}
|
|
1347
|
+
const Et = function(e, t) {
|
|
1348
|
+
return {
|
|
1349
|
+
x(n) {
|
|
1350
|
+
return e + e + t - n;
|
|
1351
|
+
},
|
|
1352
|
+
setWidth(n) {
|
|
1353
|
+
t = n;
|
|
1354
|
+
},
|
|
1355
|
+
textAlign(n) {
|
|
1356
|
+
return n === "center" ? n : n === "right" ? "left" : "right";
|
|
1357
|
+
},
|
|
1358
|
+
xPlus(n, o) {
|
|
1359
|
+
return n - o;
|
|
1360
|
+
},
|
|
1361
|
+
leftForLtr(n, o) {
|
|
1362
|
+
return n - o;
|
|
1363
|
+
}
|
|
1364
|
+
};
|
|
1365
|
+
}, Ft = function() {
|
|
1366
|
+
return {
|
|
1367
|
+
x(e) {
|
|
1368
|
+
return e;
|
|
1369
|
+
},
|
|
1370
|
+
setWidth(e) {
|
|
1371
|
+
},
|
|
1372
|
+
textAlign(e) {
|
|
1373
|
+
return e;
|
|
1374
|
+
},
|
|
1375
|
+
xPlus(e, t) {
|
|
1376
|
+
return e + t;
|
|
1377
|
+
},
|
|
1378
|
+
leftForLtr(e, t) {
|
|
1379
|
+
return e;
|
|
1380
|
+
}
|
|
1381
|
+
};
|
|
1382
|
+
};
|
|
1383
|
+
function Zn(e, t, n) {
|
|
1384
|
+
return e ? Et(t, n) : Ft();
|
|
1385
|
+
}
|
|
1386
|
+
function Vn(e, t) {
|
|
1387
|
+
let n, o;
|
|
1388
|
+
(t === "ltr" || t === "rtl") && (n = e.canvas.style, o = [
|
|
1389
|
+
n.getPropertyValue("direction"),
|
|
1390
|
+
n.getPropertyPriority("direction")
|
|
1391
|
+
], n.setProperty("direction", t, "important"), e.prevTextDirection = o);
|
|
1392
|
+
}
|
|
1393
|
+
function eo(e, t) {
|
|
1394
|
+
t !== void 0 && (delete e.prevTextDirection, e.canvas.style.setProperty("direction", t[0], t[1]));
|
|
1395
|
+
}
|
|
1396
|
+
function Re(e) {
|
|
1397
|
+
return e === "angle" ? {
|
|
1398
|
+
between: qe,
|
|
1399
|
+
compare: He,
|
|
1400
|
+
normalize: w
|
|
1401
|
+
} : {
|
|
1402
|
+
between: Ke,
|
|
1403
|
+
compare: (t, n) => t - n,
|
|
1404
|
+
normalize: (t) => t
|
|
1405
|
+
};
|
|
1406
|
+
}
|
|
1407
|
+
function fe({ start: e, end: t, count: n, loop: o, style: r }) {
|
|
1408
|
+
return {
|
|
1409
|
+
start: e % n,
|
|
1410
|
+
end: t % n,
|
|
1411
|
+
loop: o && (t - e + 1) % n === 0,
|
|
1412
|
+
style: r
|
|
1413
|
+
};
|
|
1414
|
+
}
|
|
1415
|
+
function zt(e, t, n) {
|
|
1416
|
+
const { property: o, start: r, end: i } = n, { between: s, normalize: a } = Re(o), c = t.length;
|
|
1417
|
+
let { start: l, end: u, loop: d } = e, h, m;
|
|
1418
|
+
if (d) {
|
|
1419
|
+
for (l += c, u += c, h = 0, m = c; h < m && s(a(t[l % c][o]), r, i); ++h)
|
|
1420
|
+
l--, u--;
|
|
1421
|
+
l %= c, u %= c;
|
|
1422
|
+
}
|
|
1423
|
+
return u < l && (u += c), {
|
|
1424
|
+
start: l,
|
|
1425
|
+
end: u,
|
|
1426
|
+
loop: d,
|
|
1427
|
+
style: e.style
|
|
1428
|
+
};
|
|
1429
|
+
}
|
|
1430
|
+
function Ht(e, t, n) {
|
|
1431
|
+
if (!n)
|
|
1432
|
+
return [
|
|
1433
|
+
e
|
|
1434
|
+
];
|
|
1435
|
+
const { property: o, start: r, end: i } = n, s = t.length, { compare: a, between: c, normalize: l } = Re(o), { start: u, end: d, loop: h, style: m } = zt(e, t, n), p = [];
|
|
1436
|
+
let g = !1, f = null, y, C, v;
|
|
1437
|
+
const Ie = () => c(r, v, y) && a(r, v) !== 0, ve = () => a(i, y) === 0 || c(i, v, y), Ae = () => g || Ie(), Be = () => !g || ve();
|
|
1438
|
+
for (let k = u, V = u; k <= d; ++k)
|
|
1439
|
+
C = t[k % s], !C.skip && (y = l(C[o]), y !== v && (g = c(y, r, i), f === null && Ae() && (f = a(y, r) === 0 ? k : V), f !== null && Be() && (p.push(fe({
|
|
1440
|
+
start: f,
|
|
1441
|
+
end: k,
|
|
1442
|
+
loop: h,
|
|
1443
|
+
count: s,
|
|
1444
|
+
style: m
|
|
1445
|
+
})), f = null), V = k, v = y));
|
|
1446
|
+
return f !== null && p.push(fe({
|
|
1447
|
+
start: f,
|
|
1448
|
+
end: d,
|
|
1449
|
+
loop: h,
|
|
1450
|
+
count: s,
|
|
1451
|
+
style: m
|
|
1452
|
+
})), p;
|
|
1453
|
+
}
|
|
1454
|
+
function to(e, t) {
|
|
1455
|
+
const n = [], o = e.segments;
|
|
1456
|
+
for (let r = 0; r < o.length; r++) {
|
|
1457
|
+
const i = Ht(o[r], e.points, t);
|
|
1458
|
+
i.length && n.push(...i);
|
|
1459
|
+
}
|
|
1460
|
+
return n;
|
|
1461
|
+
}
|
|
1462
|
+
function qt(e, t, n, o) {
|
|
1463
|
+
let r = 0, i = t - 1;
|
|
1464
|
+
if (n && !o)
|
|
1465
|
+
for (; r < t && !e[r].skip; )
|
|
1466
|
+
r++;
|
|
1467
|
+
for (; r < t && e[r].skip; )
|
|
1468
|
+
r++;
|
|
1469
|
+
for (r %= t, n && (i += r); i > r && e[i % t].skip; )
|
|
1470
|
+
i--;
|
|
1471
|
+
return i %= t, {
|
|
1472
|
+
start: r,
|
|
1473
|
+
end: i
|
|
1474
|
+
};
|
|
1475
|
+
}
|
|
1476
|
+
function Kt(e, t, n, o) {
|
|
1477
|
+
const r = e.length, i = [];
|
|
1478
|
+
let s = t, a = e[t], c;
|
|
1479
|
+
for (c = t + 1; c <= n; ++c) {
|
|
1480
|
+
const l = e[c % r];
|
|
1481
|
+
l.skip || l.stop ? a.skip || (o = !1, i.push({
|
|
1482
|
+
start: t % r,
|
|
1483
|
+
end: (c - 1) % r,
|
|
1484
|
+
loop: o
|
|
1485
|
+
}), t = s = l.stop ? c : null) : (s = c, a.skip && (t = c)), a = l;
|
|
1486
|
+
}
|
|
1487
|
+
return s !== null && i.push({
|
|
1488
|
+
start: t % r,
|
|
1489
|
+
end: s % r,
|
|
1490
|
+
loop: o
|
|
1491
|
+
}), i;
|
|
1492
|
+
}
|
|
1493
|
+
function no(e, t) {
|
|
1494
|
+
const n = e.points, o = e.options.spanGaps, r = n.length;
|
|
1495
|
+
if (!r)
|
|
1496
|
+
return [];
|
|
1497
|
+
const i = !!e._loop, { start: s, end: a } = qt(n, r, i, o);
|
|
1498
|
+
if (o === !0)
|
|
1499
|
+
return de(e, [
|
|
1500
|
+
{
|
|
1501
|
+
start: s,
|
|
1502
|
+
end: a,
|
|
1503
|
+
loop: i
|
|
1504
|
+
}
|
|
1505
|
+
], n, t);
|
|
1506
|
+
const c = a < s ? a + r : a, l = !!e._fullLoop && s === 0 && a === r - 1;
|
|
1507
|
+
return de(e, Kt(n, s, c, l), n, t);
|
|
1508
|
+
}
|
|
1509
|
+
function de(e, t, n, o) {
|
|
1510
|
+
return !o || !o.setContext || !n ? t : Qt(e, t, n, o);
|
|
1511
|
+
}
|
|
1512
|
+
function Qt(e, t, n, o) {
|
|
1513
|
+
const r = e._chart.getContext(), i = he(e.options), { _datasetIndex: s, options: { spanGaps: a } } = e, c = n.length, l = [];
|
|
1514
|
+
let u = i, d = t[0].start, h = d;
|
|
1515
|
+
function m(p, g, f, y) {
|
|
1516
|
+
const C = a ? -1 : 1;
|
|
1517
|
+
if (p !== g) {
|
|
1518
|
+
for (p += c; n[p % c].skip; )
|
|
1519
|
+
p -= C;
|
|
1520
|
+
for (; n[g % c].skip; )
|
|
1521
|
+
g += C;
|
|
1522
|
+
p % c !== g % c && (l.push({
|
|
1523
|
+
start: p % c,
|
|
1524
|
+
end: g % c,
|
|
1525
|
+
loop: f,
|
|
1526
|
+
style: y
|
|
1527
|
+
}), u = y, d = g % c);
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1530
|
+
for (const p of t) {
|
|
1531
|
+
d = a ? d : p.start;
|
|
1532
|
+
let g = n[d % c], f;
|
|
1533
|
+
for (h = d + 1; h <= p.end; h++) {
|
|
1534
|
+
const y = n[h % c];
|
|
1535
|
+
f = he(o.setContext(mt(r, {
|
|
1536
|
+
type: "segment",
|
|
1537
|
+
p0: g,
|
|
1538
|
+
p1: y,
|
|
1539
|
+
p0DataIndex: (h - 1) % c,
|
|
1540
|
+
p1DataIndex: h % c,
|
|
1541
|
+
datasetIndex: s
|
|
1542
|
+
}))), Gt(f, u) && m(d, h - 1, p.loop, u), g = y, u = f;
|
|
1543
|
+
}
|
|
1544
|
+
d < h - 1 && m(d, h - 1, p.loop, u);
|
|
1545
|
+
}
|
|
1546
|
+
return l;
|
|
1547
|
+
}
|
|
1548
|
+
function he(e) {
|
|
1549
|
+
return {
|
|
1550
|
+
backgroundColor: e.backgroundColor,
|
|
1551
|
+
borderCapStyle: e.borderCapStyle,
|
|
1552
|
+
borderDash: e.borderDash,
|
|
1553
|
+
borderDashOffset: e.borderDashOffset,
|
|
1554
|
+
borderJoinStyle: e.borderJoinStyle,
|
|
1555
|
+
borderWidth: e.borderWidth,
|
|
1556
|
+
borderColor: e.borderColor
|
|
1557
|
+
};
|
|
1558
|
+
}
|
|
1559
|
+
function Gt(e, t) {
|
|
1560
|
+
if (!t)
|
|
1561
|
+
return !1;
|
|
1562
|
+
const n = [], o = function(r, i) {
|
|
1563
|
+
return J(i) ? (n.includes(i) || n.push(i), n.indexOf(i)) : i;
|
|
1564
|
+
};
|
|
1565
|
+
return JSON.stringify(e, o) !== JSON.stringify(t, o);
|
|
1566
|
+
}
|
|
1567
|
+
export {
|
|
1568
|
+
Bn as $,
|
|
1569
|
+
mn as A,
|
|
1570
|
+
B,
|
|
1571
|
+
ce as C,
|
|
1572
|
+
hn as D,
|
|
1573
|
+
En as E,
|
|
1574
|
+
Vt as F,
|
|
1575
|
+
Gn as G,
|
|
1576
|
+
O as H,
|
|
1577
|
+
Bt as I,
|
|
1578
|
+
Yn as J,
|
|
1579
|
+
$n as K,
|
|
1580
|
+
Mn as L,
|
|
1581
|
+
At as M,
|
|
1582
|
+
sn as N,
|
|
1583
|
+
Jt as O,
|
|
1584
|
+
b as P,
|
|
1585
|
+
Zt as Q,
|
|
1586
|
+
Hn as R,
|
|
1587
|
+
Y as S,
|
|
1588
|
+
S as T,
|
|
1589
|
+
fn as U,
|
|
1590
|
+
ae as V,
|
|
1591
|
+
gn as W,
|
|
1592
|
+
Rn as X,
|
|
1593
|
+
An as Y,
|
|
1594
|
+
Wn as Z,
|
|
1595
|
+
_n as _,
|
|
1596
|
+
zn as a,
|
|
1597
|
+
Fn as a0,
|
|
1598
|
+
On as a1,
|
|
1599
|
+
wn as a2,
|
|
1600
|
+
tt as a3,
|
|
1601
|
+
E as a4,
|
|
1602
|
+
ye as a5,
|
|
1603
|
+
nt as a6,
|
|
1604
|
+
F as a7,
|
|
1605
|
+
H as a8,
|
|
1606
|
+
Pe as a9,
|
|
1607
|
+
Vn as aA,
|
|
1608
|
+
Pn as aB,
|
|
1609
|
+
eo as aC,
|
|
1610
|
+
st as aD,
|
|
1611
|
+
oe as aE,
|
|
1612
|
+
$t as aF,
|
|
1613
|
+
ln as aG,
|
|
1614
|
+
rn as aH,
|
|
1615
|
+
cn as aI,
|
|
1616
|
+
_e as aJ,
|
|
1617
|
+
dn as aK,
|
|
1618
|
+
Ve as aL,
|
|
1619
|
+
$ as aM,
|
|
1620
|
+
kn as aN,
|
|
1621
|
+
pn as aO,
|
|
1622
|
+
Me as aP,
|
|
1623
|
+
J as aQ,
|
|
1624
|
+
G as aR,
|
|
1625
|
+
N as aS,
|
|
1626
|
+
De as aT,
|
|
1627
|
+
Le as aU,
|
|
1628
|
+
Ne as aW,
|
|
1629
|
+
it as aX,
|
|
1630
|
+
Ct as aY,
|
|
1631
|
+
It as aZ,
|
|
1632
|
+
jt as a_,
|
|
1633
|
+
pt as aa,
|
|
1634
|
+
We as ab,
|
|
1635
|
+
Yt as ac,
|
|
1636
|
+
Sn as ad,
|
|
1637
|
+
Un as ae,
|
|
1638
|
+
In as af,
|
|
1639
|
+
nn as ag,
|
|
1640
|
+
en as ah,
|
|
1641
|
+
on as ai,
|
|
1642
|
+
Ke as aj,
|
|
1643
|
+
we as ak,
|
|
1644
|
+
Kn as al,
|
|
1645
|
+
no as am,
|
|
1646
|
+
to as an,
|
|
1647
|
+
Jn as ao,
|
|
1648
|
+
Xn as ap,
|
|
1649
|
+
R as aq,
|
|
1650
|
+
jn as ar,
|
|
1651
|
+
Dn as as,
|
|
1652
|
+
vn as at,
|
|
1653
|
+
Ln as au,
|
|
1654
|
+
gt as av,
|
|
1655
|
+
Nn as aw,
|
|
1656
|
+
Ht as ax,
|
|
1657
|
+
w as ay,
|
|
1658
|
+
Zn as az,
|
|
1659
|
+
M as b,
|
|
1660
|
+
dt as b0,
|
|
1661
|
+
Fe as b1,
|
|
1662
|
+
z as b2,
|
|
1663
|
+
ze as b3,
|
|
1664
|
+
P as b4,
|
|
1665
|
+
te as b5,
|
|
1666
|
+
He as b6,
|
|
1667
|
+
Cn as c,
|
|
1668
|
+
rt as d,
|
|
1669
|
+
Q as e,
|
|
1670
|
+
be as f,
|
|
1671
|
+
me as g,
|
|
1672
|
+
tn as h,
|
|
1673
|
+
_ as i,
|
|
1674
|
+
mt as j,
|
|
1675
|
+
L as k,
|
|
1676
|
+
bn as l,
|
|
1677
|
+
Xt as m,
|
|
1678
|
+
je as n,
|
|
1679
|
+
Xe as o,
|
|
1680
|
+
qe as p,
|
|
1681
|
+
Tn as q,
|
|
1682
|
+
Qe as r,
|
|
1683
|
+
ne as s,
|
|
1684
|
+
un as t,
|
|
1685
|
+
yn as u,
|
|
1686
|
+
T as v,
|
|
1687
|
+
xn as w,
|
|
1688
|
+
an as x,
|
|
1689
|
+
qn as y,
|
|
1690
|
+
Qn as z
|
|
1691
|
+
};
|