overview-components 1.0.92 → 1.0.95

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 (117) 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/index.js +4 -0
  7. package/dist/_virtual/lodash.js +4 -0
  8. package/dist/_virtual/pdf.js +4 -0
  9. package/dist/_virtual/react.production.js +4 -0
  10. package/dist/assets/generated/locales/de.js +73 -0
  11. package/dist/assets/generated/locales/en.js +73 -0
  12. package/dist/assets/generated/locales/fr.js +73 -0
  13. package/dist/assets/generated/locales/hr.js +73 -0
  14. package/dist/assets/generated/locales/it.js +73 -0
  15. package/dist/assets/generated/locales/pl.js +73 -0
  16. package/dist/assets/generated/locales/ro.js +73 -0
  17. package/dist/assets/generated/locales/sk.js +73 -0
  18. package/dist/assets/generated/locales/sr.js +73 -0
  19. package/dist/components/lit-attachments-tab.js +519 -0
  20. package/dist/components/lit-badge.js +100 -0
  21. package/dist/components/lit-case-variables-tab.js +727 -0
  22. package/dist/components/lit-chart.js +395 -0
  23. package/dist/components/lit-data-grid-tanstack.js +1733 -0
  24. package/dist/components/lit-filter-modal.js +312 -0
  25. package/dist/components/lit-multiselect-item.js +530 -0
  26. package/dist/components/lit-section-tab.js +133 -0
  27. package/dist/components/lit-tabs-overview.js +304 -0
  28. package/dist/components/react-wrappers/attachments-tab.js +14 -0
  29. package/dist/components/react-wrappers/badge.js +14 -0
  30. package/dist/components/react-wrappers/button.js +14 -0
  31. package/dist/components/react-wrappers/case-variables-tab.js +14 -0
  32. package/dist/components/react-wrappers/chart.js +14 -0
  33. package/dist/components/react-wrappers/data-grid-tanstack.js +14 -0
  34. package/dist/components/react-wrappers/filter-modal.js +14 -0
  35. package/dist/components/react-wrappers/progress-bar.js +14 -0
  36. package/dist/components/react-wrappers/section-tab.js +14 -0
  37. package/dist/components/react-wrappers/tabs-overview.js +14 -0
  38. package/dist/index.js +42 -0
  39. package/dist/libs/xlsx.mini.min.js +10 -0
  40. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +432 -0
  41. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +306 -0
  42. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +127 -0
  43. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +127 -0
  44. package/dist/node_modules/@kurkle/color/dist/color.esm.js +448 -0
  45. package/dist/node_modules/@lit/localize/init/install.js +11 -0
  46. package/dist/node_modules/@lit/localize/init/runtime.js +42 -0
  47. package/dist/node_modules/@lit/localize/internal/default-msg.js +10 -0
  48. package/dist/node_modules/@lit/localize/internal/deferred.js +21 -0
  49. package/dist/node_modules/@lit/localize/internal/fnv1a64.js +17 -0
  50. package/dist/node_modules/@lit/localize/internal/id-generation.js +14 -0
  51. package/dist/node_modules/@lit/localize/internal/locale-status-event.js +9 -0
  52. package/dist/node_modules/@lit/localize/internal/runtime-msg.js +42 -0
  53. package/dist/node_modules/@lit/localize/internal/str-tag.js +15 -0
  54. package/dist/node_modules/@lit/react/create-component.js +35 -0
  55. package/dist/node_modules/@lit/reactive-element/css-tag.js +50 -0
  56. package/dist/node_modules/@lit/reactive-element/decorators/base.js +9 -0
  57. package/dist/node_modules/@lit/reactive-element/decorators/custom-element.js +13 -0
  58. package/dist/node_modules/@lit/reactive-element/decorators/property.js +37 -0
  59. package/dist/node_modules/@lit/reactive-element/decorators/query.js +20 -0
  60. package/dist/node_modules/@lit/reactive-element/decorators/state.js +12 -0
  61. package/dist/node_modules/@lit/reactive-element/reactive-element.js +250 -0
  62. package/dist/node_modules/@tanstack/lit-table/build/lib/index.js +104 -0
  63. package/dist/node_modules/@tanstack/lit-virtual/dist/esm/index.js +40 -0
  64. package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1956 -0
  65. package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +490 -0
  66. package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +52 -0
  67. package/dist/node_modules/chart.js/dist/chart.js +7122 -0
  68. package/dist/node_modules/chart.js/dist/chunks/helpers.segment.js +1691 -0
  69. package/dist/node_modules/file-saver/dist/FileSaver.min.js +74 -0
  70. package/dist/node_modules/lit-element/lit-element.js +51 -0
  71. package/dist/node_modules/lit-html/async-directive.js +69 -0
  72. package/dist/node_modules/lit-html/directive-helpers.js +45 -0
  73. package/dist/node_modules/lit-html/directive.js +27 -0
  74. package/dist/node_modules/lit-html/directives/ref.js +42 -0
  75. package/dist/node_modules/lit-html/directives/repeat.js +61 -0
  76. package/dist/node_modules/lit-html/directives/style-map.js +36 -0
  77. package/dist/node_modules/lit-html/directives/unsafe-html.js +27 -0
  78. package/dist/node_modules/lit-html/lit-html.js +243 -0
  79. package/dist/node_modules/lodash/lodash.js +3678 -0
  80. package/dist/node_modules/luxon/src/datetime.js +1793 -0
  81. package/dist/node_modules/luxon/src/duration.js +723 -0
  82. package/dist/node_modules/luxon/src/errors.js +40 -0
  83. package/dist/node_modules/luxon/src/impl/conversions.js +92 -0
  84. package/dist/node_modules/luxon/src/impl/diff.js +36 -0
  85. package/dist/node_modules/luxon/src/impl/digits.js +74 -0
  86. package/dist/node_modules/luxon/src/impl/english.js +138 -0
  87. package/dist/node_modules/luxon/src/impl/formats.js +150 -0
  88. package/dist/node_modules/luxon/src/impl/formatter.js +245 -0
  89. package/dist/node_modules/luxon/src/impl/invalid.js +11 -0
  90. package/dist/node_modules/luxon/src/impl/locale.js +282 -0
  91. package/dist/node_modules/luxon/src/impl/regexParser.js +202 -0
  92. package/dist/node_modules/luxon/src/impl/tokenParser.js +329 -0
  93. package/dist/node_modules/luxon/src/impl/util.js +206 -0
  94. package/dist/node_modules/luxon/src/impl/zoneUtil.js +19 -0
  95. package/dist/node_modules/luxon/src/info.js +180 -0
  96. package/dist/node_modules/luxon/src/interval.js +466 -0
  97. package/dist/node_modules/luxon/src/settings.js +150 -0
  98. package/dist/node_modules/luxon/src/zone.js +88 -0
  99. package/dist/node_modules/luxon/src/zones/IANAZone.js +178 -0
  100. package/dist/node_modules/luxon/src/zones/fixedOffsetZone.js +125 -0
  101. package/dist/node_modules/luxon/src/zones/invalidZone.js +41 -0
  102. package/dist/node_modules/luxon/src/zones/systemZone.js +47 -0
  103. package/dist/node_modules/pdfjs-dist/build/pdf.js +10310 -0
  104. package/dist/node_modules/react/cjs/react.production.js +417 -0
  105. package/dist/node_modules/react/index.js +10 -0
  106. package/dist/node_modules/sortablejs/modular/sortable.esm.js +1261 -0
  107. package/dist/shared/lit-button.js +142 -0
  108. package/dist/shared/lit-progress-bar.js +83 -0
  109. package/dist/shared/simple-tooltip.js +174 -0
  110. package/dist/shared/styles/button-shared-styles.js +205 -0
  111. package/dist/utils/currency.js +13 -0
  112. package/dist/utils/custom-filters.js +50 -0
  113. package/dist/utils/date.js +15 -0
  114. package/dist/utils/getOperatorByType.js +52 -0
  115. package/dist/utils/localization.js +30 -0
  116. package/dist/vite.svg +1 -0
  117. package/package.json +76 -74
@@ -0,0 +1,304 @@
1
+ import { customElement as f } from "../node_modules/@lit/reactive-element/decorators/custom-element.js";
2
+ import { property as c } from "../node_modules/@lit/reactive-element/decorators/property.js";
3
+ import { state as l } from "../node_modules/@lit/reactive-element/decorators/state.js";
4
+ import "../node_modules/@lit/reactive-element/reactive-element.js";
5
+ import { html as h } from "../node_modules/lit-html/lit-html.js";
6
+ import { LitElement as v } from "../node_modules/lit-element/lit-element.js";
7
+ import { msg as g } from "../node_modules/@lit/localize/init/install.js";
8
+ import "../node_modules/@lit/localize/init/runtime.js";
9
+ import y from "../node_modules/sortablejs/modular/sortable.esm.js";
10
+ import { css as C } from "../node_modules/@lit/reactive-element/css-tag.js";
11
+ var S = Object.defineProperty, T = Object.getOwnPropertyDescriptor, n = (t, e, a, o) => {
12
+ for (var s = o > 1 ? void 0 : o ? T(e, a) : e, d = t.length - 1, r; d >= 0; d--)
13
+ (r = t[d]) && (s = (o ? r(e, a, s) : r(s)) || s);
14
+ return o && s && S(e, a, s), s;
15
+ };
16
+ let i = class extends v {
17
+ constructor() {
18
+ super(...arguments), this.tabs = [], this.enableSettings = !1, this.userLang = "cs", this.allowedLang = ["cs"], this.onSettingsChanged = () => {
19
+ }, this.selectedTabId = "", this.editTabId = "", this.deleteTabId = "", this.hasContentForTab = {}, this.isOpenModal = !1, this.isOpenDeleteModal = !1, this.sortableInstances = [], this.isAddMode = !1, this.sortableGroupId = `group-${Math.random().toString(36).substring(2, 9)}`;
20
+ }
21
+ connectedCallback() {
22
+ super.connectedCallback();
23
+ }
24
+ disconnectedCallback() {
25
+ this.destroySortables(), super.disconnectedCallback();
26
+ }
27
+ destroySortables() {
28
+ this.sortableInstances.forEach((t) => t.destroy()), this.sortableInstances = [];
29
+ }
30
+ initSortable() {
31
+ this.updateComplete.then(() => {
32
+ var o;
33
+ const t = (o = this.shadowRoot) == null ? void 0 : o.querySelector(".tabs-container");
34
+ if (!t) return;
35
+ let e = [];
36
+ const a = y.create(t, {
37
+ group: this.sortableGroupId,
38
+ animation: 150,
39
+ handle: ".drag-handle",
40
+ ghostClass: "sortable-ghost",
41
+ chosenClass: "sortable-chosen",
42
+ dragClass: "sortable-drag",
43
+ sort: !0,
44
+ onStart: (s) => {
45
+ e = Array.from(s.from.childNodes);
46
+ },
47
+ onEnd: (s) => {
48
+ var b;
49
+ s.from.innerHTML = "", e.forEach((u) => s.from.appendChild(u));
50
+ const { oldIndex: d, newIndex: r } = s;
51
+ if (d == null || r == null || d === r) return;
52
+ const p = [...this.tabs], [m] = p.splice(d, 1);
53
+ p.splice(r, 0, m), this.tabs = p, (b = this.onSettingsChanged) == null || b.call(this, p), this.onSettingsChangedEvent(p);
54
+ }
55
+ });
56
+ this.sortableInstances.push(a);
57
+ });
58
+ }
59
+ onSettingsChangedEvent(t) {
60
+ this.dispatchEvent(
61
+ new CustomEvent("onSettingsChanged", {
62
+ bubbles: !0,
63
+ composed: !0,
64
+ detail: t
65
+ })
66
+ );
67
+ }
68
+ selectTab(t) {
69
+ this.selectedTabId = t;
70
+ }
71
+ firstUpdated() {
72
+ this.initialSelectedTabId ? this.selectedTabId = this.initialSelectedTabId : this.tabs.length > 0 && (this.selectedTabId = this.tabs[0].id), this.enableSettings && this.initSortable();
73
+ }
74
+ handleSlotChange(t, e) {
75
+ const s = t.target.assignedNodes({ flatten: !0 }).length > 0;
76
+ this.hasContentForTab = {
77
+ ...this.hasContentForTab,
78
+ [e]: s
79
+ };
80
+ }
81
+ toggleModal(t) {
82
+ t && (this.editTabId = t), this.isOpenModal = !this.isOpenModal;
83
+ }
84
+ onSettingsChangedCallback(t) {
85
+ var e;
86
+ this.isAddMode = !1, this.tabs = t ? [...t] : [], (e = this.onSettingsChanged) == null || e.call(this, this.tabs), this.onSettingsChangedEvent(this.tabs);
87
+ }
88
+ deleteTab(t) {
89
+ var e;
90
+ this.tabs = this.tabs.filter((a) => a.id !== t), (e = this.onSettingsChanged) == null || e.call(this, this.tabs), this.onSettingsChangedEvent(this.tabs), this.isOpenDeleteModal = !1;
91
+ }
92
+ render() {
93
+ return h`
94
+ <div class="tabs-wrapper">
95
+ <div class="tabs-header">
96
+ <div class="tabs-container">
97
+ ${this.tabs.map(
98
+ (t) => {
99
+ var e, a, o;
100
+ return h`
101
+ <div class="tab">
102
+ ${this.enableSettings ? h`<div class="drag-handle">
103
+ <lit-icon
104
+ style="cursor: pointer"
105
+ icon="${"hamburger"}"
106
+ size="1rem"
107
+ ></lit-icon>
108
+ </div>` : null}
109
+
110
+ <lit-button
111
+ variant="text"
112
+ label="${(e = t.label) != null && e[this.userLang] ? (a = t.label) == null ? void 0 : a[this.userLang] : (o = t.label) == null ? void 0 : o.default}"
113
+ .icon="${t.icon}"
114
+ .active="${t.id === this.selectedTabId ? "active" : ""}"
115
+ @click=${() => this.selectTab(t.id)}
116
+ >
117
+ </lit-button>
118
+ ${this.enableSettings ? h`<div
119
+ style="display: flex;flex-direction: column;align-items: center"
120
+ >
121
+ <lit-icon
122
+ style="cursor: pointer"
123
+ @click="${() => {
124
+ this.isAddMode = !1, this.toggleModal(t.id);
125
+ }}"
126
+ icon="${"pen"}"
127
+ size="1rem"
128
+ ></lit-icon>
129
+ <lit-icon
130
+ style="cursor: pointer"
131
+ @click="${() => {
132
+ this.deleteTabId = t.id, this.isOpenDeleteModal = !0;
133
+ }}"
134
+ icon="${"trash"}"
135
+ size="1rem"
136
+ ></lit-icon>
137
+ </div> ` : null}
138
+ </div>
139
+ `;
140
+ }
141
+ )}
142
+ </div>
143
+ ${this.enableSettings ? h`
144
+ <lit-icon-button
145
+ variant="dashed"
146
+ size="medium"
147
+ .icon="${"add"}"
148
+ @click="${() => {
149
+ this.isAddMode = !0, this.toggleModal();
150
+ }}"
151
+ ></lit-icon-button>
152
+ ` : null}
153
+ </div>
154
+ <tabs-overview-settings
155
+ .allowedLang="${this.allowedLang}"
156
+ .onClose="${() => {
157
+ this.isOpenModal = !1, this.editTabId = "";
158
+ }}"
159
+ .isOpenModal="${this.isOpenModal}"
160
+ .tabs="${this.tabs}"
161
+ .selectedTabId="${this.editTabId}"
162
+ .onSettingsChangedModal="${this.onSettingsChangedCallback.bind(this)}"
163
+ .isAddMode="${this.isAddMode}"
164
+ ></tabs-overview-settings>
165
+ <lit-delete-modal
166
+ .isOpen="${this.isOpenDeleteModal}"
167
+ .text="${g("Opravdu chcete tab odstranit?")}"
168
+ .onClose="${() => {
169
+ this.isOpenDeleteModal = !1;
170
+ }}"
171
+ .onDelete="${() => {
172
+ this.isOpenDeleteModal = !1, this.deleteTab(this.deleteTabId);
173
+ }}"
174
+ ></lit-delete-modal>
175
+ <div class="tabs-content">
176
+ ${this.tabs.map(
177
+ (t) => {
178
+ var e, a, o;
179
+ return t.id === this.selectedTabId ? h`
180
+ <div class="tab-panel">
181
+ <slot
182
+ class="tab-slot"
183
+ name="${t.id}"
184
+ @slotchange=${(s) => this.handleSlotChange(s, t.id)}
185
+ ></slot>
186
+
187
+ ${this.hasContentForTab[t.id] ? null : h`
188
+ <div class="no-content">
189
+ <div
190
+ style="max-height: 7.125rem; max-width: 7.125rem"
191
+ >
192
+ <no-content></no-content>
193
+ </div>
194
+ ${g(
195
+ `${(e = t.noContentText) != null && e[this.userLang] ? (a = t.noContentText) == null ? void 0 : a[this.userLang] : ((o = t.noContentText) == null ? void 0 : o.default) || "Pro tento tab není momentálně k dispozici žádný obsah."}`
196
+ )}
197
+ </div>
198
+ `}
199
+ </div>
200
+ ` : null;
201
+ }
202
+ )}
203
+ </div>
204
+ </div>
205
+ `;
206
+ }
207
+ };
208
+ i.styles = [
209
+ C`
210
+ :host {
211
+ font-family: 'Inter', sans-serif;
212
+ }
213
+ .tabs-wrapper {
214
+ height: 100%;
215
+ display: block;
216
+ }
217
+ .tabs-content {
218
+ height: calc(100% - 3.4375rem);
219
+ }
220
+ ::slotted(*) {
221
+ height: 100%;
222
+ }
223
+ .tab-panel {
224
+ height: 100%;
225
+ }
226
+ .tabs-header {
227
+ display: flex;
228
+ gap: 0.625rem;
229
+ margin: 0 0 0.625rem;
230
+ }
231
+
232
+ .tabs-container {
233
+ display: flex;
234
+ gap: 0.625rem;
235
+ }
236
+ .tab {
237
+ display: flex;
238
+ gap: 2px;
239
+ }
240
+
241
+ .no-content {
242
+ height: 100%;
243
+ font-size: 0.875rem;
244
+ text-align: center;
245
+ display: flex;
246
+ align-items: center;
247
+ justify-content: center;
248
+ flex-direction: column;
249
+ }
250
+
251
+ .drag-handle {
252
+ display: flex;
253
+ align-items: center;
254
+ }
255
+ `
256
+ ];
257
+ n([
258
+ c({ type: Array })
259
+ ], i.prototype, "tabs", 2);
260
+ n([
261
+ c({ type: String })
262
+ ], i.prototype, "initialSelectedTabId", 2);
263
+ n([
264
+ c({ type: Boolean })
265
+ ], i.prototype, "enableSettings", 2);
266
+ n([
267
+ c({ type: String })
268
+ ], i.prototype, "userLang", 2);
269
+ n([
270
+ c({ type: Array })
271
+ ], i.prototype, "allowedLang", 2);
272
+ n([
273
+ c({ attribute: !1 })
274
+ ], i.prototype, "onSettingsChanged", 2);
275
+ n([
276
+ l()
277
+ ], i.prototype, "selectedTabId", 2);
278
+ n([
279
+ l()
280
+ ], i.prototype, "editTabId", 2);
281
+ n([
282
+ l()
283
+ ], i.prototype, "deleteTabId", 2);
284
+ n([
285
+ l()
286
+ ], i.prototype, "hasContentForTab", 2);
287
+ n([
288
+ l()
289
+ ], i.prototype, "isOpenModal", 2);
290
+ n([
291
+ l()
292
+ ], i.prototype, "isOpenDeleteModal", 2);
293
+ n([
294
+ l()
295
+ ], i.prototype, "sortableInstances", 2);
296
+ n([
297
+ l()
298
+ ], i.prototype, "isAddMode", 2);
299
+ i = n([
300
+ f("lit-tabs-overview")
301
+ ], i);
302
+ export {
303
+ i as LitTabsOverview
304
+ };
@@ -0,0 +1,14 @@
1
+ import t from "../../node_modules/react/index.js";
2
+ import { createComponent as a } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitAttachmentsTab as e } from "../lit-attachments-tab.js";
4
+ const c = a({
5
+ tagName: "lit-attachments-tab",
6
+ // Názov custom elementu
7
+ elementClass: e,
8
+ // Trieda Lit komponentu
9
+ react: t
10
+ // React objekt
11
+ });
12
+ export {
13
+ c as AttachmentsTab
14
+ };
@@ -0,0 +1,14 @@
1
+ import e from "../../node_modules/react/index.js";
2
+ import { createComponent as t } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitBadge as o } from "../lit-badge.js";
4
+ const i = t({
5
+ tagName: "lit-badge",
6
+ // Názov custom elementu
7
+ elementClass: o,
8
+ // Trieda Lit komponentu
9
+ react: e
10
+ // React objekt
11
+ });
12
+ export {
13
+ i as Badge
14
+ };
@@ -0,0 +1,14 @@
1
+ import t from "../../node_modules/react/index.js";
2
+ import { createComponent as o } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitButton as e } from "../../shared/lit-button.js";
4
+ const n = o({
5
+ tagName: "lit-button",
6
+ // Názov custom elementu
7
+ elementClass: e,
8
+ // Trieda Lit komponentu
9
+ react: t
10
+ // React objekt
11
+ });
12
+ export {
13
+ n as Button
14
+ };
@@ -0,0 +1,14 @@
1
+ import a from "../../node_modules/react/index.js";
2
+ import { createComponent as e } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitCaseVariablesTab as t } from "../lit-case-variables-tab.js";
4
+ const m = e({
5
+ tagName: "lit-case-variables-tab",
6
+ // Názov custom elementu
7
+ elementClass: t,
8
+ // Trieda Lit komponentu
9
+ react: a
10
+ // React objekt
11
+ });
12
+ export {
13
+ m as CaseVariablesTab
14
+ };
@@ -0,0 +1,14 @@
1
+ import t from "../../node_modules/react/index.js";
2
+ import { createComponent as r } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitChart as o } from "../lit-chart.js";
4
+ const c = r({
5
+ tagName: "lit-chart",
6
+ // Názov custom elementu
7
+ elementClass: o,
8
+ // Trieda Lit komponentu
9
+ react: t
10
+ // React objekt
11
+ });
12
+ export {
13
+ c as Chart
14
+ };
@@ -0,0 +1,14 @@
1
+ import t from "../../node_modules/react/index.js";
2
+ import { createComponent as a } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitDataGridTanstack as r } from "../lit-data-grid-tanstack.js";
4
+ const i = a({
5
+ tagName: "lit-data-grid-tanstack",
6
+ // Názov custom elementu
7
+ elementClass: r,
8
+ // Trieda Lit komponentu
9
+ react: t
10
+ // React objekt
11
+ });
12
+ export {
13
+ i as DataGridTanstack
14
+ };
@@ -0,0 +1,14 @@
1
+ import t from "../../node_modules/react/index.js";
2
+ import { createComponent as o } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitFilterModal as e } from "../lit-filter-modal.js";
4
+ const l = o({
5
+ tagName: "lit-filter-modal",
6
+ // Názov custom elementu
7
+ elementClass: e,
8
+ // Trieda Lit komponentu
9
+ react: t
10
+ // React objekt
11
+ });
12
+ export {
13
+ l as FilterModal
14
+ };
@@ -0,0 +1,14 @@
1
+ import r from "../../node_modules/react/index.js";
2
+ import { createComponent as o } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitProgressBar as e } from "../../shared/lit-progress-bar.js";
4
+ const m = o({
5
+ tagName: "lit-progress-bar",
6
+ // Názov custom elementu
7
+ elementClass: e,
8
+ // Trieda Lit komponentu
9
+ react: r
10
+ // React objekt
11
+ });
12
+ export {
13
+ m as ProgressBar
14
+ };
@@ -0,0 +1,14 @@
1
+ import t from "../../node_modules/react/index.js";
2
+ import { createComponent as o } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitSectionTab as e } from "../lit-section-tab.js";
4
+ const i = o({
5
+ tagName: "lit-section-tab",
6
+ // Názov custom elementu
7
+ elementClass: e,
8
+ // Trieda Lit komponentu
9
+ react: t
10
+ // React objekt
11
+ });
12
+ export {
13
+ i as SectionTab
14
+ };
@@ -0,0 +1,14 @@
1
+ import e from "../../node_modules/react/index.js";
2
+ import { createComponent as t } from "../../node_modules/@lit/react/create-component.js";
3
+ import { LitTabsOverview as o } from "../lit-tabs-overview.js";
4
+ const i = t({
5
+ tagName: "lit-tabs-overview",
6
+ // Názov custom elementu
7
+ elementClass: o,
8
+ // Trieda Lit komponentu
9
+ react: e
10
+ // React objekt
11
+ });
12
+ export {
13
+ i as TabsOverview
14
+ };
package/dist/index.js ADDED
@@ -0,0 +1,42 @@
1
+ import { LitCaseVariablesTab as o } from "./components/lit-case-variables-tab.js";
2
+ import { LitDataGridTanstack as a } from "./components/lit-data-grid-tanstack.js";
3
+ import { LitAttachmentsTab as i } from "./components/lit-attachments-tab.js";
4
+ import { LitSectionTab as p } from "./components/lit-section-tab.js";
5
+ import { LitBadge as s } from "./components/lit-badge.js";
6
+ import { LitFilterModal as L } from "./components/lit-filter-modal.js";
7
+ import { LitChart as l } from "./components/lit-chart.js";
8
+ import { LitTabsOverview as c } from "./components/lit-tabs-overview.js";
9
+ import { LitMultiselectItem as B } from "./components/lit-multiselect-item.js";
10
+ import { LitButton as v } from "./shared/lit-button.js";
11
+ import { CaseVariablesTab as g } from "./components/react-wrappers/case-variables-tab.js";
12
+ import { DataGridTanstack as M } from "./components/react-wrappers/data-grid-tanstack.js";
13
+ import { AttachmentsTab as w } from "./components/react-wrappers/attachments-tab.js";
14
+ import { SectionTab as D } from "./components/react-wrappers/section-tab.js";
15
+ import { Badge as G } from "./components/react-wrappers/badge.js";
16
+ import { FilterModal as S } from "./components/react-wrappers/filter-modal.js";
17
+ import { Chart as I } from "./components/react-wrappers/chart.js";
18
+ import { TabsOverview as j } from "./components/react-wrappers/tabs-overview.js";
19
+ import { ProgressBar as y } from "./components/react-wrappers/progress-bar.js";
20
+ import { Button as E } from "./components/react-wrappers/button.js";
21
+ export {
22
+ w as AttachmentsTab,
23
+ G as Badge,
24
+ E as Button,
25
+ g as CaseVariablesTab,
26
+ I as Chart,
27
+ M as DataGridTanstack,
28
+ S as FilterModal,
29
+ i as LitAttachmentsTab,
30
+ s as LitBadge,
31
+ v as LitButton,
32
+ o as LitCaseVariablesTab,
33
+ l as LitChart,
34
+ a as LitDataGridTanstack,
35
+ L as LitFilterModal,
36
+ B as LitMultiselectItem,
37
+ p as LitSectionTab,
38
+ c as LitTabsOverview,
39
+ y as ProgressBar,
40
+ D as SectionTab,
41
+ j as TabsOverview
42
+ };