@feedmepos/mf-report 5.12.0-beta.0 → 5.13.0-beta.0

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 (22) hide show
  1. package/dist/{App-Dt-SMnWu.js → App-Ct3yuLBM.js} +3 -3
  2. package/dist/{v4-DW_zpoT-.js → BaseDialog.vue_vue_type_script_setup_true_lang-BVh9CBG8.js} +582 -508
  3. package/dist/{Default.vue_vue_type_script_setup_true_lang-BSwve-GF.js → Default.vue_vue_type_script_setup_true_lang-Dm_oN-5O.js} +1 -1
  4. package/dist/{DynamicWidget.vue_vue_type_script_setup_true_lang-BWxjFFx4.js → DynamicWidget.vue_vue_type_script_setup_true_lang-wpgkxZrA.js} +1 -1
  5. package/dist/{InsightView-Cf_uIadw.js → InsightView-DRwRR0H4.js} +2 -2
  6. package/dist/{Layout-DcBp5c1L.js → Layout-C1VAizPU.js} +1 -1
  7. package/dist/{MenuTab.vue_vue_type_script_setup_true_lang-COVQ5t0s.js → MenuTab.vue_vue_type_script_setup_true_lang-BUhdTqWm.js} +24 -22
  8. package/dist/{NavigationTab.vue_vue_type_script_setup_true_lang-CcgTfmOk.js → NavigationTab.vue_vue_type_script_setup_true_lang-CyvrW5EA.js} +25 -26
  9. package/dist/{OverviewView-C-xKuZxs.js → OverviewView-CyMUY5vR.js} +4 -4
  10. package/dist/{Report-DcL0fAqT.js → Report-C5VE4kBy.js} +2 -2
  11. package/dist/ReportEditor-JeuV4I-i.js +1017 -0
  12. package/dist/{ReportView-BUMzxXKN.js → ReportView-Cdotft9j.js} +5 -5
  13. package/dist/{Setting-Dx-ZiLqK.js → Setting-T1QsZfb_.js} +2 -2
  14. package/dist/TileEditor-CjtPunhn.js +2735 -0
  15. package/dist/TransitionFade-lILBAWNM.js +2499 -0
  16. package/dist/app.js +21 -9
  17. package/dist/assets/{formatChartData.worker-qsKmK9pO.js → formatChartData.worker-CvTUNmfE.js} +2 -2
  18. package/package.json +1 -1
  19. package/dist/BaseDialog.vue_vue_type_script_setup_true_lang-DTNiGKgd.js +0 -59
  20. package/dist/ReportEditor-C2TOXxs9.js +0 -972
  21. package/dist/TileEditor-TWUJBLe7.js +0 -3252
  22. package/dist/TransitionFade-CfPTdxon.js +0 -1980
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-report",
3
- "version": "5.12.0-beta.0",
3
+ "version": "5.13.0-beta.0",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
@@ -1,59 +0,0 @@
1
- import { defineComponent as y, mergeModels as i, useModel as c, watch as v, resolveComponent as d, createBlock as g, openBlock as b, withCtx as n, createElementVNode as B, createVNode as m, renderSlot as V, createTextVNode as C, toDisplayString as w } from "vue";
2
- const k = /* @__PURE__ */ y({
3
- __name: "BaseDialog",
4
- props: /* @__PURE__ */ i({
5
- title: {
6
- type: String,
7
- default: "Title"
8
- },
9
- primaryButtonLabel: {
10
- type: String,
11
- default: "Confirm"
12
- },
13
- secondaryButtonLabel: {
14
- type: String,
15
- default: "Cancel"
16
- }
17
- }, {
18
- modelValue: { type: Boolean, required: !0 },
19
- modelModifiers: {}
20
- }),
21
- emits: /* @__PURE__ */ i(["confirm"], ["update:modelValue"]),
22
- setup(a, { emit: u }) {
23
- const t = c(a, "modelValue"), o = a, s = u;
24
- return v(t, () => {
25
- t.value ? document.body.style.overflow = "hidden" : document.body.style.overflow = "scroll";
26
- }), (p, e) => {
27
- const r = d("FmButton"), f = d("FmDialog");
28
- return b(), g(f, {
29
- modelValue: t.value,
30
- "onUpdate:modelValue": e[2] || (e[2] = (l) => t.value = l),
31
- overlay: ""
32
- }, {
33
- "dialog-header": n(() => [
34
- C(w(o.title), 1)
35
- ]),
36
- default: n(() => [
37
- V(p.$slots, "content")
38
- ]),
39
- "dialog-footer": n(() => [
40
- e[3] || (e[3] = B("div", { class: "grow" }, null, -1)),
41
- m(r, {
42
- label: o.secondaryButtonLabel,
43
- variant: "tertiary",
44
- onClick: e[0] || (e[0] = (l) => t.value = !1)
45
- }, null, 8, ["label"]),
46
- m(r, {
47
- label: o.primaryButtonLabel,
48
- variant: "primary",
49
- onClick: e[1] || (e[1] = (l) => s("confirm"))
50
- }, null, 8, ["label"])
51
- ]),
52
- _: 3
53
- }, 8, ["modelValue"]);
54
- };
55
- }
56
- });
57
- export {
58
- k as _
59
- };