overview-components 1.0.110 → 1.0.112

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/dist/_virtual/FileSaver.min.js +4 -0
  2. package/dist/_virtual/___vite-browser-external.js +6 -0
  3. package/dist/_virtual/__vite-browser-external.js +4 -0
  4. package/dist/_virtual/_commonjs-dynamic-modules.js +6 -0
  5. package/dist/_virtual/_commonjsHelpers.js +28 -0
  6. package/dist/_virtual/air-datepicker.js +4 -0
  7. package/dist/_virtual/index.js +4 -0
  8. package/dist/_virtual/lodash.js +4 -0
  9. package/dist/_virtual/pdf.js +4 -0
  10. package/dist/_virtual/react.production.js +4 -0
  11. package/dist/libs/xlsx.mini.min.js +10 -0
  12. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +486 -0
  13. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +391 -0
  14. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +131 -0
  15. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +129 -0
  16. package/dist/node_modules/@kurkle/color/dist/color.esm.js +448 -0
  17. package/dist/node_modules/@lit/localize/init/install.js +11 -0
  18. package/dist/node_modules/@lit/localize/init/runtime.js +42 -0
  19. package/dist/node_modules/@lit/localize/internal/default-msg.js +10 -0
  20. package/dist/node_modules/@lit/localize/internal/deferred.js +21 -0
  21. package/dist/node_modules/@lit/localize/internal/fnv1a64.js +17 -0
  22. package/dist/node_modules/@lit/localize/internal/id-generation.js +14 -0
  23. package/dist/node_modules/@lit/localize/internal/locale-status-event.js +9 -0
  24. package/dist/node_modules/@lit/localize/internal/runtime-msg.js +42 -0
  25. package/dist/node_modules/@lit/localize/internal/str-tag.js +15 -0
  26. package/dist/node_modules/@lit/react/create-component.js +35 -0
  27. package/dist/node_modules/@lit/reactive-element/css-tag.js +50 -0
  28. package/dist/node_modules/@lit/reactive-element/decorators/base.js +9 -0
  29. package/dist/node_modules/@lit/reactive-element/decorators/custom-element.js +13 -0
  30. package/dist/node_modules/@lit/reactive-element/decorators/property.js +37 -0
  31. package/dist/node_modules/@lit/reactive-element/decorators/query.js +20 -0
  32. package/dist/node_modules/@lit/reactive-element/decorators/state.js +12 -0
  33. package/dist/node_modules/@lit/reactive-element/reactive-element.js +250 -0
  34. package/dist/node_modules/@tanstack/lit-table/build/lib/index.js +104 -0
  35. package/dist/node_modules/@tanstack/lit-virtual/dist/esm/index.js +40 -0
  36. package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1956 -0
  37. package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +490 -0
  38. package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +52 -0
  39. package/dist/node_modules/air-datepicker/air-datepicker.js +1147 -0
  40. package/dist/node_modules/air-datepicker/index.es.js +4 -0
  41. package/dist/node_modules/chart.js/dist/chart.js +7122 -0
  42. package/dist/node_modules/chart.js/dist/chunks/helpers.segment.js +1691 -0
  43. package/dist/node_modules/file-saver/dist/FileSaver.min.js +74 -0
  44. package/dist/node_modules/lit-element/lit-element.js +51 -0
  45. package/dist/node_modules/lit-html/async-directive.js +69 -0
  46. package/dist/node_modules/lit-html/directive-helpers.js +45 -0
  47. package/dist/node_modules/lit-html/directive.js +27 -0
  48. package/dist/node_modules/lit-html/directives/class-map.js +34 -0
  49. package/dist/node_modules/lit-html/directives/ref.js +42 -0
  50. package/dist/node_modules/lit-html/directives/repeat.js +61 -0
  51. package/dist/node_modules/lit-html/directives/style-map.js +36 -0
  52. package/dist/node_modules/lit-html/directives/unsafe-html.js +27 -0
  53. package/dist/node_modules/lit-html/lit-html.js +243 -0
  54. package/dist/node_modules/lodash/lodash.js +3678 -0
  55. package/dist/node_modules/luxon/src/datetime.js +1793 -0
  56. package/dist/node_modules/luxon/src/duration.js +723 -0
  57. package/dist/node_modules/luxon/src/errors.js +40 -0
  58. package/dist/node_modules/luxon/src/impl/conversions.js +92 -0
  59. package/dist/node_modules/luxon/src/impl/diff.js +36 -0
  60. package/dist/node_modules/luxon/src/impl/digits.js +74 -0
  61. package/dist/node_modules/luxon/src/impl/english.js +138 -0
  62. package/dist/node_modules/luxon/src/impl/formats.js +150 -0
  63. package/dist/node_modules/luxon/src/impl/formatter.js +245 -0
  64. package/dist/node_modules/luxon/src/impl/invalid.js +11 -0
  65. package/dist/node_modules/luxon/src/impl/locale.js +282 -0
  66. package/dist/node_modules/luxon/src/impl/regexParser.js +202 -0
  67. package/dist/node_modules/luxon/src/impl/tokenParser.js +329 -0
  68. package/dist/node_modules/luxon/src/impl/util.js +206 -0
  69. package/dist/node_modules/luxon/src/impl/zoneUtil.js +19 -0
  70. package/dist/node_modules/luxon/src/info.js +180 -0
  71. package/dist/node_modules/luxon/src/interval.js +466 -0
  72. package/dist/node_modules/luxon/src/settings.js +150 -0
  73. package/dist/node_modules/luxon/src/zone.js +88 -0
  74. package/dist/node_modules/luxon/src/zones/IANAZone.js +178 -0
  75. package/dist/node_modules/luxon/src/zones/fixedOffsetZone.js +125 -0
  76. package/dist/node_modules/luxon/src/zones/invalidZone.js +41 -0
  77. package/dist/node_modules/luxon/src/zones/systemZone.js +47 -0
  78. package/dist/node_modules/pdfjs-dist/build/pdf.js +10310 -0
  79. package/dist/node_modules/react/cjs/react.production.js +417 -0
  80. package/dist/node_modules/react/index.js +10 -0
  81. package/dist/node_modules/sortablejs/modular/sortable.esm.js +1261 -0
  82. package/dist/style.css +1 -0
  83. package/dist/vite.svg +1 -0
  84. package/package.json +2 -2
@@ -0,0 +1,4 @@
1
+ var e = { exports: {} };
2
+ export {
3
+ e as __module
4
+ };
@@ -0,0 +1,6 @@
1
+ import * as e from "./__vite-browser-external.js";
2
+ import { getAugmentedNamespace as r } from "./_commonjsHelpers.js";
3
+ const o = /* @__PURE__ */ r(e);
4
+ export {
5
+ o as default
6
+ };
@@ -0,0 +1,4 @@
1
+ const e = {};
2
+ export {
3
+ e as default
4
+ };
@@ -0,0 +1,6 @@
1
+ function r(o) {
2
+ throw new Error('Could not dynamically require "' + o + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
3
+ }
4
+ export {
5
+ r as commonjsRequire
6
+ };
@@ -0,0 +1,28 @@
1
+ var u = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
2
+ function f(e) {
3
+ return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
4
+ }
5
+ function l(e) {
6
+ if (e.__esModule) return e;
7
+ var r = e.default;
8
+ if (typeof r == "function") {
9
+ var t = function o() {
10
+ return this instanceof o ? Reflect.construct(r, arguments, this.constructor) : r.apply(this, arguments);
11
+ };
12
+ t.prototype = r.prototype;
13
+ } else t = {};
14
+ return Object.defineProperty(t, "__esModule", { value: !0 }), Object.keys(e).forEach(function(o) {
15
+ var n = Object.getOwnPropertyDescriptor(e, o);
16
+ Object.defineProperty(t, o, n.get ? n : {
17
+ enumerable: !0,
18
+ get: function() {
19
+ return e[o];
20
+ }
21
+ });
22
+ }), t;
23
+ }
24
+ export {
25
+ u as commonjsGlobal,
26
+ l as getAugmentedNamespace,
27
+ f as getDefaultExportFromCjs
28
+ };
@@ -0,0 +1,4 @@
1
+ var e = { exports: {} };
2
+ export {
3
+ e as __module
4
+ };
@@ -0,0 +1,4 @@
1
+ var e = { exports: {} };
2
+ export {
3
+ e as __module
4
+ };
@@ -0,0 +1,4 @@
1
+ var o = { exports: {} };
2
+ export {
3
+ o as __module
4
+ };
@@ -0,0 +1,4 @@
1
+ var e = { exports: {} };
2
+ export {
3
+ e as __module
4
+ };
@@ -0,0 +1,4 @@
1
+ var r = {};
2
+ export {
3
+ r as __exports
4
+ };