quasar-ui-danx 0.3.43 → 0.3.44
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/danx.es.js +129 -101
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +4 -4
- package/dist/danx.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ActionTable/Form/Fields/FileUploadButton.vue +7 -9
- package/src/helpers/FileUpload.ts +11 -19
- package/src/helpers/download.ts +51 -0
package/dist/danx.es.js
CHANGED
@@ -5589,6 +5589,31 @@ function HT(t) {
|
|
5589
5589
|
function WT(t, e) {
|
5590
5590
|
return li(e).diff(li(t), ["days"]).days;
|
5591
5591
|
}
|
5592
|
+
async function A1(t, e = "download") {
|
5593
|
+
return await new Promise((r, i) => {
|
5594
|
+
if (t instanceof File) {
|
5595
|
+
const o = URL.createObjectURL(t);
|
5596
|
+
r(o);
|
5597
|
+
} else if (typeof t == "string")
|
5598
|
+
r(t);
|
5599
|
+
else if (t instanceof Blob) {
|
5600
|
+
const o = URL.createObjectURL(t);
|
5601
|
+
r(o);
|
5602
|
+
} else
|
5603
|
+
console.error("blobOrUrl was not a Blob or URL", t), i(new Error("The provided value must be a Blob or a Blob URL string."));
|
5604
|
+
}).then((r) => {
|
5605
|
+
const i = document.createElement("a");
|
5606
|
+
i.style.display = "none", i.href = r, i.download = e, i.target = "_blank", document.body.appendChild(i);
|
5607
|
+
const o = new MouseEvent("click", {
|
5608
|
+
view: window,
|
5609
|
+
bubbles: !0,
|
5610
|
+
cancelable: !0
|
5611
|
+
});
|
5612
|
+
i.dispatchEvent(o), document.body.removeChild(i), t instanceof Blob && setTimeout(() => URL.revokeObjectURL(r), 100);
|
5613
|
+
}).catch((r) => {
|
5614
|
+
console.error("An error occurred while downloading the file:", r);
|
5615
|
+
});
|
5616
|
+
}
|
5592
5617
|
function as(t, e, n) {
|
5593
5618
|
var r = window, i = "application/octet-stream", o = n || i, s = t, l = !e && !n && s, a = document.createElement("a"), u = function(S) {
|
5594
5619
|
return String(S);
|
@@ -5648,7 +5673,7 @@ function as(t, e, n) {
|
|
5648
5673
|
}
|
5649
5674
|
return !0;
|
5650
5675
|
}
|
5651
|
-
async function
|
5676
|
+
async function jT(t, e = "", n = null) {
|
5652
5677
|
let r;
|
5653
5678
|
n && (r = {
|
5654
5679
|
method: "POST",
|
@@ -9714,41 +9739,40 @@ class hs {
|
|
9714
9739
|
* Start uploading all files
|
9715
9740
|
*/
|
9716
9741
|
async upload() {
|
9717
|
-
console.log && console.log("FileUploader@upload():", this.fileUploads, this.options);
|
9718
9742
|
for (const e of this.fileUploads)
|
9719
9743
|
try {
|
9720
9744
|
const n = e.file.mimeType || e.file.type, r = this.options.presignedUploadUrl(this.options.directory, e.file.name, n);
|
9721
|
-
|
9722
|
-
|
9723
|
-
|
9724
|
-
|
9725
|
-
|
9726
|
-
|
9727
|
-
|
9728
|
-
if (
|
9745
|
+
let i = null, o = 60;
|
9746
|
+
for (; !i && o-- > 0; )
|
9747
|
+
try {
|
9748
|
+
i = await fetch(r).then((a) => a.json());
|
9749
|
+
} catch (a) {
|
9750
|
+
console.warn(`Upload failed, trying ${o} more times....`, a), await Ko(1e3);
|
9751
|
+
}
|
9752
|
+
if (!(i != null && i.url)) {
|
9729
9753
|
bt.error("Could not fetch presigned upload URL for file " + e.file.name);
|
9730
9754
|
continue;
|
9731
9755
|
}
|
9732
|
-
const
|
9756
|
+
const s = !i.url.match("upload-presigned-url-contents");
|
9733
9757
|
e.file.resource_id = i.id;
|
9734
|
-
const
|
9735
|
-
|
9758
|
+
const l = new XMLHttpRequest();
|
9759
|
+
s ? (l.open("PUT", i.url), l.setRequestHeader("Content-Type", n), e.body = e.file) : (l.open("POST", i.url), e.body = e.formData), e.xhr = l;
|
9736
9760
|
} catch (n) {
|
9737
9761
|
console.error && console.error("FileUploader@upload():", "Failed to fetch presigned upload URL", n), this.errorHandler(null, e.file, n);
|
9738
9762
|
}
|
9739
|
-
this.setXhrCallbacks()
|
9763
|
+
this.setXhrCallbacks();
|
9740
9764
|
for (const e of this.fileUploads)
|
9741
9765
|
e.xhr.send(e.body);
|
9742
9766
|
}
|
9743
9767
|
}
|
9744
9768
|
const _i = B([]), fi = B([]);
|
9745
|
-
function
|
9769
|
+
function QT(t) {
|
9746
9770
|
_i.value = [..._i.value, t];
|
9747
9771
|
}
|
9748
|
-
function
|
9772
|
+
function XT(t, e, n) {
|
9749
9773
|
fi.value.push({ id: n, name: t, callback: e });
|
9750
9774
|
}
|
9751
|
-
function
|
9775
|
+
function KT(t) {
|
9752
9776
|
fi.value = fi.value.filter((e) => e.id !== t);
|
9753
9777
|
}
|
9754
9778
|
function aa(t, e, n) {
|
@@ -9760,7 +9784,7 @@ function aa(t, e, n) {
|
|
9760
9784
|
function ua(t) {
|
9761
9785
|
return t.key ? ("" + t.key).toLowerCase() : t.keyCode;
|
9762
9786
|
}
|
9763
|
-
function
|
9787
|
+
function JT(t) {
|
9764
9788
|
_i.value = t, window.addEventListener("keydown", (e) => {
|
9765
9789
|
aa("keydown", ua(e), e);
|
9766
9790
|
}), window.addEventListener("keyup", (e) => {
|
@@ -9834,7 +9858,7 @@ const ca = B({
|
|
9834
9858
|
}).then((r) => r.json());
|
9835
9859
|
}
|
9836
9860
|
};
|
9837
|
-
async function
|
9861
|
+
async function e3(t, e, n, r) {
|
9838
9862
|
let i;
|
9839
9863
|
n && (i = e.value.find((o) => o.id === n) || (await t({ id: n }))[0]), e.value = await t(r), i && !e.value.find((o) => o.id === n) && e.value.push(i);
|
9840
9864
|
}
|
@@ -9876,7 +9900,7 @@ function _n(t, e = null) {
|
|
9876
9900
|
const n = localStorage.getItem(t);
|
9877
9901
|
return n ? JSON.parse(n) : e;
|
9878
9902
|
}
|
9879
|
-
function
|
9903
|
+
function t3(t, e = "") {
|
9880
9904
|
const n = Lc(t, e), r = document.createElement("style");
|
9881
9905
|
r.innerHTML = `:root {${n}}`, document.head.appendChild(r);
|
9882
9906
|
}
|
@@ -10651,7 +10675,7 @@ const $y = { render: My }, Ly = {
|
|
10651
10675
|
function zy(t, e) {
|
10652
10676
|
return m(), y("svg", Ly, [...By]);
|
10653
10677
|
}
|
10654
|
-
const ps = { render: zy },
|
10678
|
+
const ps = { render: zy }, n3 = {
|
10655
10679
|
__name: "ExportButton",
|
10656
10680
|
props: {
|
10657
10681
|
exporter: {
|
@@ -10684,7 +10708,7 @@ const ps = { render: zy }, t3 = {
|
|
10684
10708
|
}, 8, ["loading"]);
|
10685
10709
|
};
|
10686
10710
|
}
|
10687
|
-
},
|
10711
|
+
}, r3 = {
|
10688
10712
|
__name: "RefreshButton",
|
10689
10713
|
props: {
|
10690
10714
|
loading: Boolean
|
@@ -10704,7 +10728,7 @@ const ps = { render: zy }, t3 = {
|
|
10704
10728
|
}, 8, ["loading"]);
|
10705
10729
|
};
|
10706
10730
|
}
|
10707
|
-
}, Vy = { class: "previous-next-controls" },
|
10731
|
+
}, Vy = { class: "previous-next-controls" }, i3 = {
|
10708
10732
|
__name: "PreviousNextControls",
|
10709
10733
|
props: {
|
10710
10734
|
isLoading: Boolean
|
@@ -11236,7 +11260,7 @@ const ps = { render: zy }, t3 = {
|
|
11236
11260
|
}, wx = /* @__PURE__ */ Ft(xx, [["__cssModules", vx]]), Sx = {
|
11237
11261
|
key: 0,
|
11238
11262
|
class: "p-4 m-4 absolute-top-right top right cursor-pointer"
|
11239
|
-
},
|
11263
|
+
}, o3 = {
|
11240
11264
|
__name: "FullScreenDialog",
|
11241
11265
|
props: {
|
11242
11266
|
modelValue: Boolean,
|
@@ -11386,7 +11410,7 @@ const ps = { render: zy }, t3 = {
|
|
11386
11410
|
}, 8, ["full-height", "full-width", "model-value", "no-backdrop-dismiss", "maximized"]);
|
11387
11411
|
};
|
11388
11412
|
}
|
11389
|
-
},
|
11413
|
+
}, s3 = {
|
11390
11414
|
__name: "InputDialog",
|
11391
11415
|
props: {
|
11392
11416
|
...mi.props,
|
@@ -11860,7 +11884,7 @@ const ps = { render: zy }, t3 = {
|
|
11860
11884
|
}, _v = {
|
11861
11885
|
key: 1,
|
11862
11886
|
class: "address-line-3"
|
11863
|
-
}, fv = { class: "address-city-state-zip" },
|
11887
|
+
}, fv = { class: "address-city-state-zip" }, l3 = {
|
11864
11888
|
__name: "AddressFormat",
|
11865
11889
|
props: {
|
11866
11890
|
address: {
|
@@ -11884,7 +11908,7 @@ const ps = { render: zy }, t3 = {
|
|
11884
11908
|
], 64)) : M("", !0)
|
11885
11909
|
]));
|
11886
11910
|
}
|
11887
|
-
},
|
11911
|
+
}, a3 = {
|
11888
11912
|
__name: "FlatListFormat",
|
11889
11913
|
props: {
|
11890
11914
|
items: {
|
@@ -11906,7 +11930,7 @@ const ps = { render: zy }, t3 = {
|
|
11906
11930
|
}, mv = { class: "flex flex-nowrap items-center" }, hv = {
|
11907
11931
|
key: 0,
|
11908
11932
|
class: "whitespace-nowrap"
|
11909
|
-
},
|
11933
|
+
}, u3 = {
|
11910
11934
|
__name: "GpsCoordinatesFormat",
|
11911
11935
|
props: {
|
11912
11936
|
location: {
|
@@ -11935,7 +11959,7 @@ const ps = { render: zy }, t3 = {
|
|
11935
11959
|
]);
|
11936
11960
|
};
|
11937
11961
|
}
|
11938
|
-
}, pv = { class: "flex items-center flex-nowrap" },
|
11962
|
+
}, pv = { class: "flex items-center flex-nowrap" }, c3 = {
|
11939
11963
|
__name: "IconWithTextFormat",
|
11940
11964
|
props: {
|
11941
11965
|
icon: {
|
@@ -11969,7 +11993,7 @@ const ps = { render: zy }, t3 = {
|
|
11969
11993
|
], 2)
|
11970
11994
|
]));
|
11971
11995
|
}
|
11972
|
-
}, gv = { class: "text-xs font-bold" },
|
11996
|
+
}, gv = { class: "text-xs font-bold" }, d3 = {
|
11973
11997
|
__name: "LabelValueFormat",
|
11974
11998
|
props: {
|
11975
11999
|
label: {
|
@@ -12769,7 +12793,7 @@ const xr = Zc, m2 = {
|
|
12769
12793
|
], 2);
|
12770
12794
|
};
|
12771
12795
|
}
|
12772
|
-
},
|
12796
|
+
}, _3 = {
|
12773
12797
|
__name: "InteractiveTooltip",
|
12774
12798
|
props: { tooltip: { type: String, default: "" } },
|
12775
12799
|
setup(t) {
|
@@ -12817,7 +12841,7 @@ const xr = Zc, m2 = {
|
|
12817
12841
|
}, 8, ["modelValue"]);
|
12818
12842
|
};
|
12819
12843
|
}
|
12820
|
-
}, b2 = { class: "flex items-center w-full" }, y2 = { class: "flex-grow text-sm" },
|
12844
|
+
}, b2 = { class: "flex items-center w-full" }, y2 = { class: "flex-grow text-sm" }, f3 = {
|
12821
12845
|
__name: "BadgeTab",
|
12822
12846
|
props: {
|
12823
12847
|
name: {
|
@@ -12855,7 +12879,7 @@ const xr = Zc, m2 = {
|
|
12855
12879
|
}, 8, ["name"]);
|
12856
12880
|
};
|
12857
12881
|
}
|
12858
|
-
}, x2 = { class: "flex items-center w-full" }, v2 = { class: "flex-grow text-sm" },
|
12882
|
+
}, x2 = { class: "flex items-center w-full" }, v2 = { class: "flex-grow text-sm" }, m3 = {
|
12859
12883
|
__name: "IndicatorTab",
|
12860
12884
|
props: {
|
12861
12885
|
name: {
|
@@ -12916,7 +12940,7 @@ const xr = Zc, m2 = {
|
|
12916
12940
|
_: 3
|
12917
12941
|
}, 8, ["name"]));
|
12918
12942
|
}
|
12919
|
-
},
|
12943
|
+
}, h3 = {
|
12920
12944
|
__name: "SlideTransition",
|
12921
12945
|
props: {
|
12922
12946
|
name: {
|
@@ -14952,7 +14976,7 @@ Ue("x,y,z,top,right,bottom,left,width,height,fontSize,padding,margin,perspective
|
|
14952
14976
|
ze.registerPlugin(Gd);
|
14953
14977
|
var Qo = ze.registerPlugin(Gd) || ze;
|
14954
14978
|
Qo.core.Tween;
|
14955
|
-
const
|
14979
|
+
const p3 = {
|
14956
14980
|
__name: "StaggeredListTransition",
|
14957
14981
|
props: {
|
14958
14982
|
height: {
|
@@ -15197,7 +15221,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
15197
15221
|
])
|
15198
15222
|
], 32));
|
15199
15223
|
}
|
15200
|
-
}, Vw = /* @__PURE__ */ O("div", { class: "mb-4 text-sm" }, " Customize columns by visibility, order, or priority (maximum 3 additional). ", -1),
|
15224
|
+
}, Vw = /* @__PURE__ */ O("div", { class: "mb-4 text-sm" }, " Customize columns by visibility, order, or priority (maximum 3 additional). ", -1), g3 = {
|
15201
15225
|
__name: "ColumnSettingsDialog",
|
15202
15226
|
props: {
|
15203
15227
|
hiddenColumnNames: {
|
@@ -15645,7 +15669,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
15645
15669
|
}
|
15646
15670
|
}, p4 = {
|
15647
15671
|
$style: d4
|
15648
|
-
},
|
15672
|
+
}, b3 = /* @__PURE__ */ Ft(h4, [["__cssModules", p4]]), y3 = {
|
15649
15673
|
__name: "CollapsableFiltersSidebar",
|
15650
15674
|
props: {
|
15651
15675
|
name: {
|
@@ -15837,7 +15861,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
15837
15861
|
]);
|
15838
15862
|
};
|
15839
15863
|
}
|
15840
|
-
},
|
15864
|
+
}, x3 = {
|
15841
15865
|
__name: "ConfirmPasswordField",
|
15842
15866
|
props: {
|
15843
15867
|
name: {
|
@@ -16101,7 +16125,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
16101
16125
|
});
|
16102
16126
|
};
|
16103
16127
|
}
|
16104
|
-
},
|
16128
|
+
}, v3 = {
|
16105
16129
|
__name: "DateTimeField",
|
16106
16130
|
props: {
|
16107
16131
|
modelValue: {
|
@@ -16159,7 +16183,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
16159
16183
|
]);
|
16160
16184
|
};
|
16161
16185
|
}
|
16162
|
-
},
|
16186
|
+
}, w3 = {
|
16163
16187
|
__name: "EditableDiv",
|
16164
16188
|
props: {
|
16165
16189
|
modelValue: {
|
@@ -16185,7 +16209,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
16185
16209
|
onInput: s
|
16186
16210
|
}, P(i.value), 33));
|
16187
16211
|
}
|
16188
|
-
}, k4 = ["accept", "capture"],
|
16212
|
+
}, k4 = ["accept", "capture"], S3 = {
|
16189
16213
|
__name: "FileUploadButton",
|
16190
16214
|
props: {
|
16191
16215
|
...Ms.props,
|
@@ -16218,7 +16242,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
16218
16242
|
o.value.click();
|
16219
16243
|
}
|
16220
16244
|
async function l({ target: { files: u } }) {
|
16221
|
-
|
16245
|
+
i.autoDownloadCapture && await a(u), r("uploading", u);
|
16222
16246
|
let c = new hs(u).onProgress(({ file: d, progress: _ }) => {
|
16223
16247
|
d.progress = _, r("file-progress", d);
|
16224
16248
|
}).onComplete(({ file: d, uploadedFile: _ }) => {
|
@@ -16226,15 +16250,18 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
16226
16250
|
}).onAllComplete(() => {
|
16227
16251
|
r("complete", c.files);
|
16228
16252
|
});
|
16229
|
-
console.log("created fileUpload", c);
|
16230
|
-
debugger;
|
16231
16253
|
i.geolocation && await c.resolveLocation(i.locationWaitMessage), c.upload();
|
16232
16254
|
}
|
16233
16255
|
async function a(u) {
|
16234
16256
|
await Ko(10);
|
16235
16257
|
for (let c of u) {
|
16236
16258
|
let d = i.downloadName + "-" + ls(null, { format: " M-d-yy h:mm a" });
|
16237
|
-
c.name ? d += "__" + c.name : d += "." + (c.mime || c.type).split("/").pop() || "jpg"
|
16259
|
+
c.name ? d += "__" + c.name : d += "." + (c.mime || c.type).split("/").pop() || "jpg";
|
16260
|
+
try {
|
16261
|
+
await A1(c, d);
|
16262
|
+
} catch (_) {
|
16263
|
+
console.error("Failed to download file", _);
|
16264
|
+
}
|
16238
16265
|
}
|
16239
16266
|
}
|
16240
16267
|
return (u, c) => (m(), E(v(Ms), Zt(u.$props, {
|
@@ -16260,7 +16287,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
16260
16287
|
_: 3
|
16261
16288
|
}, 16));
|
16262
16289
|
}
|
16263
|
-
}, F4 = { class: "inline-block" }, O4 = { class: "cursor-pointer py-2 hover:bg-blue-200 flex items-center justify-end" },
|
16290
|
+
}, F4 = { class: "inline-block" }, O4 = { class: "cursor-pointer py-2 hover:bg-blue-200 flex items-center justify-end" }, T3 = {
|
16264
16291
|
__name: "InlineDateTimeField",
|
16265
16292
|
props: {
|
16266
16293
|
modelValue: {
|
@@ -16811,7 +16838,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
16811
16838
|
}, null, 8, ["modelValue", "field", "no-label"])
|
16812
16839
|
]));
|
16813
16840
|
}
|
16814
|
-
},
|
16841
|
+
}, C3 = {
|
16815
16842
|
__name: "NewPasswordField",
|
16816
16843
|
props: {
|
16817
16844
|
name: {
|
@@ -16943,7 +16970,7 @@ const Uw = { class: "flex items-center" }, Rw = { key: 0 }, Bw = { class: "flex-
|
|
16943
16970
|
]);
|
16944
16971
|
};
|
16945
16972
|
}
|
16946
|
-
}, q4 = ["data-dusk", "onClick"],
|
16973
|
+
}, q4 = ["data-dusk", "onClick"], E3 = {
|
16947
16974
|
__name: "SelectDrawer",
|
16948
16975
|
props: {
|
16949
16976
|
modelValue: {
|
@@ -17718,7 +17745,7 @@ const _S = ["innerHTML"], fS = {
|
|
17718
17745
|
}, TS = /* @__PURE__ */ Ft(SS, [["__scopeId", "data-v-a0bc1dac"]]), CS = { class: "w-full flex justify-end items-center flex-nowrap border-b" }, ES = { class: "flex-grow" }, IS = {
|
17719
17746
|
key: 0,
|
17720
17747
|
class: "flex justify-end items-stretch flex-nowrap p-4"
|
17721
|
-
},
|
17748
|
+
}, I3 = {
|
17722
17749
|
__name: "FilterToolbarLayout",
|
17723
17750
|
props: {
|
17724
17751
|
filter: {
|
@@ -17763,7 +17790,7 @@ const _S = ["innerHTML"], fS = {
|
|
17763
17790
|
}, DS = { class: "flex-grow" }, PS = {
|
17764
17791
|
key: 1,
|
17765
17792
|
class: "flex flex-nowrap items-center mr-2"
|
17766
|
-
}, NS = ["onClick"], MS = ["onClick"],
|
17793
|
+
}, NS = ["onClick"], MS = ["onClick"], k3 = {
|
17767
17794
|
__name: "RenderedForm",
|
17768
17795
|
props: {
|
17769
17796
|
values: {
|
@@ -17984,7 +18011,7 @@ function RS(t, e) {
|
|
17984
18011
|
])
|
17985
18012
|
]);
|
17986
18013
|
}
|
17987
|
-
const
|
18014
|
+
const F3 = /* @__PURE__ */ Ft($S, [["render", RS]]);
|
17988
18015
|
function BS(t) {
|
17989
18016
|
xn(() => {
|
17990
18017
|
const e = t.value.$el.getElementsByClassName("q-table__middle")[0];
|
@@ -18016,7 +18043,7 @@ function VS(t, e = null) {
|
|
18016
18043
|
}
|
18017
18044
|
return n;
|
18018
18045
|
}
|
18019
|
-
function
|
18046
|
+
function O3({
|
18020
18047
|
listRoute: t,
|
18021
18048
|
summaryRoute: e = null,
|
18022
18049
|
filterFieldOptionsRoute: n = null,
|
@@ -18195,7 +18222,7 @@ function F3({
|
|
18195
18222
|
setItemInList: _e
|
18196
18223
|
};
|
18197
18224
|
}
|
18198
|
-
function
|
18225
|
+
function A3(t, e) {
|
18199
18226
|
const n = `${t}-column-order`, r = `${t}-visible-columns`, i = `${t}-title-columns`, o = B(_n(n) || []), s = B(_n(r, [])), l = B(_n(i, [])), a = U(() => u.value.slice(0, 1)), u = U(() => [...e].sort((f, p) => {
|
18200
18227
|
const h = o.value.indexOf(f.name), g = o.value.indexOf(p.name);
|
18201
18228
|
return h === -1 ? 1 : g === -1 ? -1 : h - g;
|
@@ -18764,7 +18791,7 @@ const qS = {
|
|
18764
18791
|
_: 1
|
18765
18792
|
}, 8, ["class"]));
|
18766
18793
|
}
|
18767
|
-
}, E6 = { class: "overflow-hidden w-full" },
|
18794
|
+
}, E6 = { class: "overflow-hidden w-full" }, D3 = {
|
18768
18795
|
__name: "ActionTable",
|
18769
18796
|
props: {
|
18770
18797
|
name: {
|
@@ -18933,7 +18960,7 @@ const qS = {
|
|
18933
18960
|
], 64))
|
18934
18961
|
]));
|
18935
18962
|
}
|
18936
|
-
}, F6 = { class: "text-gray-700 flex items-stretch flex-nowrap p-4" }, O6 = { class: "flex-grow text-sm w-3/5 overflow-auto" }, A6 = { class: "flex flex-nowrap items-center mt-4" }, D6 = { class: "bg-red-200 line-through p-2" }, P6 = { class: "bg-emerald-200 ml-2.5 p-2" }, N6 = { class: "ml-4 text-sm w-2/5" }, M6 = ["href"],
|
18963
|
+
}, F6 = { class: "text-gray-700 flex items-stretch flex-nowrap p-4" }, O6 = { class: "flex-grow text-sm w-3/5 overflow-auto" }, A6 = { class: "flex flex-nowrap items-center mt-4" }, D6 = { class: "bg-red-200 line-through p-2" }, P6 = { class: "bg-emerald-200 ml-2.5 p-2" }, N6 = { class: "ml-4 text-sm w-2/5" }, M6 = ["href"], P3 = {
|
18937
18964
|
__name: "AuditHistoryItem",
|
18938
18965
|
props: {
|
18939
18966
|
item: {
|
@@ -18990,7 +19017,7 @@ const qS = {
|
|
18990
19017
|
}, $6 = ["onClick"], L6 = {
|
18991
19018
|
key: 0,
|
18992
19019
|
class: "flex-shrink-0"
|
18993
|
-
},
|
19020
|
+
}, N3 = {
|
18994
19021
|
__name: "NavigationMenu",
|
18995
19022
|
props: {
|
18996
19023
|
collapsed: Boolean,
|
@@ -19374,7 +19401,7 @@ const qS = {
|
|
19374
19401
|
}, uT = /* @__PURE__ */ Ft(lT, [["__cssModules", aT]]), cT = { class: "flex flex-col flex-nowrap h-full" }, dT = { class: "flex items-center px-6 py-4 border-b" }, _T = { class: "flex-grow" }, fT = { class: "flex-grow overflow-hidden h-full" }, mT = { class: "flex items-stretch flex-nowrap h-full" }, hT = { class: "border-r w-[13.5rem] overflow-y-auto" }, pT = {
|
19375
19402
|
key: 0,
|
19376
19403
|
class: "border-l overflow-y-auto"
|
19377
|
-
},
|
19404
|
+
}, M3 = {
|
19378
19405
|
__name: "PanelsDrawer",
|
19379
19406
|
props: {
|
19380
19407
|
modelValue: {
|
@@ -19448,7 +19475,7 @@ const qS = {
|
|
19448
19475
|
});
|
19449
19476
|
};
|
19450
19477
|
}
|
19451
|
-
}, gT = "quasar-ui-danx", bT = "0.3.
|
19478
|
+
}, gT = "quasar-ui-danx", bT = "0.3.44", yT = "Dan <dan@flytedesk.com>", xT = "DanX Vue / Quasar component library", vT = "MIT", wT = "module", ST = "dist/danx.es.js", TT = "dist/danx.es.js", CT = {
|
19452
19479
|
dev: "cd dev && quasar dev && cd ..",
|
19453
19480
|
build: "vite build",
|
19454
19481
|
preview: "vite preview",
|
@@ -19513,106 +19540,106 @@ const qS = {
|
|
19513
19540
|
dependencies: kT,
|
19514
19541
|
browserslist: FT
|
19515
19542
|
}, { version: AT } = OT;
|
19516
|
-
function
|
19543
|
+
function $3(t) {
|
19517
19544
|
console.log(`Installing Danx UI ${AT}... Nothing to do really.`);
|
19518
19545
|
}
|
19519
19546
|
export {
|
19520
19547
|
qS as ActionMenu,
|
19521
|
-
|
19548
|
+
D3 as ActionTable,
|
19522
19549
|
HS as ActionTableColumn,
|
19523
19550
|
g6 as ActionTableHeaderColumn,
|
19524
|
-
|
19551
|
+
F3 as ActionTableLayout,
|
19525
19552
|
m2 as ActionVnode,
|
19526
|
-
|
19527
|
-
|
19553
|
+
l3 as AddressFormat,
|
19554
|
+
P3 as AuditHistoryItem,
|
19528
19555
|
Na as AuditHistoryItemValue,
|
19529
|
-
|
19556
|
+
f3 as BadgeTab,
|
19530
19557
|
Zd as BooleanField,
|
19531
19558
|
Ub as CaretDownIcon,
|
19532
|
-
|
19559
|
+
y3 as CollapsableFiltersSidebar,
|
19533
19560
|
qv as CollapsableSidebar,
|
19534
19561
|
fa as ColumnListItem,
|
19535
|
-
|
19562
|
+
g3 as ColumnSettingsDialog,
|
19536
19563
|
mi as ConfirmDialog,
|
19537
|
-
|
19564
|
+
x3 as ConfirmPasswordField,
|
19538
19565
|
Gc as ContentDrawer,
|
19539
19566
|
Wd as DateField,
|
19540
19567
|
jd as DateRangeField,
|
19541
|
-
|
19568
|
+
v3 as DateTimeField,
|
19542
19569
|
Yd as DateTimePicker,
|
19543
19570
|
Vc as DragAndDrop,
|
19544
19571
|
qb as DragHandleDotsIcon,
|
19545
19572
|
jb as DragHandleIcon,
|
19546
|
-
|
19573
|
+
w3 as EditableDiv,
|
19547
19574
|
v6 as EmptyTableState,
|
19548
|
-
|
19575
|
+
n3 as ExportButton,
|
19549
19576
|
tr as FieldLabel,
|
19550
19577
|
yr as FilePreview,
|
19551
19578
|
hs as FileUpload,
|
19552
|
-
|
19579
|
+
S3 as FileUploadButton,
|
19553
19580
|
yS as FilterFieldItem,
|
19554
19581
|
vS as FilterFieldList,
|
19555
19582
|
Jb as FilterIcon,
|
19556
19583
|
TS as FilterListToggle,
|
19557
|
-
|
19584
|
+
I3 as FilterToolbarLayout,
|
19558
19585
|
Pa as FilterableField,
|
19559
19586
|
bt as FlashMessages,
|
19560
|
-
|
19587
|
+
a3 as FlatListFormat,
|
19561
19588
|
wx as FullScreenCarouselDialog,
|
19562
|
-
|
19563
|
-
|
19589
|
+
o3 as FullScreenDialog,
|
19590
|
+
u3 as GpsCoordinatesFormat,
|
19564
19591
|
Pb as HandleDraggable,
|
19565
|
-
|
19592
|
+
c3 as IconWithTextFormat,
|
19566
19593
|
sy as ImageIcon,
|
19567
|
-
|
19594
|
+
m3 as IndicatorTab,
|
19568
19595
|
Ix as InfoDialog,
|
19569
|
-
|
19570
|
-
|
19596
|
+
T3 as InlineDateTimeField,
|
19597
|
+
s3 as InputDialog,
|
19571
19598
|
A4 as IntegerField,
|
19572
|
-
|
19599
|
+
_3 as InteractiveTooltip,
|
19573
19600
|
P4 as LabelValueBlock,
|
19574
|
-
|
19601
|
+
d3 as LabelValueFormat,
|
19575
19602
|
Hd as LabeledInput,
|
19576
19603
|
Lw as ListDragAndDrop,
|
19577
19604
|
zw as ListItemDraggable,
|
19578
19605
|
w2 as ListTransition,
|
19579
19606
|
L4 as MultiFileField,
|
19580
19607
|
R4 as MultiKeywordField,
|
19581
|
-
|
19582
|
-
|
19608
|
+
N3 as NavigationMenu,
|
19609
|
+
C3 as NewPasswordField,
|
19583
19610
|
wi as NumberField,
|
19584
19611
|
ao as NumberRangeField,
|
19585
|
-
|
19612
|
+
M3 as PanelsDrawer,
|
19586
19613
|
U6 as PanelsDrawerPanels,
|
19587
19614
|
uT as PanelsDrawerTabs,
|
19588
19615
|
_y as PdfIcon,
|
19589
19616
|
gy as PercentIcon,
|
19590
19617
|
g2 as PopoverMenu,
|
19591
|
-
|
19592
|
-
|
19618
|
+
i3 as PreviousNextControls,
|
19619
|
+
r3 as RefreshButton,
|
19593
19620
|
h2 as RenderComponent,
|
19594
19621
|
xr as RenderVnode,
|
19595
|
-
|
19596
|
-
|
19622
|
+
k3 as RenderedForm,
|
19623
|
+
E3 as SelectDrawer,
|
19597
19624
|
Si as SelectField,
|
19598
19625
|
W4 as SelectWithChildrenField,
|
19599
19626
|
Q4 as SingleFileField,
|
19600
19627
|
wy as SkipNextIcon,
|
19601
19628
|
Iy as SkipPreviousIcon,
|
19602
|
-
|
19603
|
-
|
19629
|
+
h3 as SlideTransition,
|
19630
|
+
p3 as StaggeredListTransition,
|
19604
19631
|
sv as SvgImg,
|
19605
19632
|
C6 as TableSummaryRow,
|
19606
19633
|
Xo as TextField,
|
19607
19634
|
qw as TitleColumnFormat,
|
19608
19635
|
qc as TrashIcon,
|
19609
|
-
|
19636
|
+
b3 as VisibleColumnsToggleButtons,
|
19610
19637
|
$y as WarningIcon,
|
19611
19638
|
fS as WysiwygField,
|
19612
19639
|
ps as XIcon,
|
19613
19640
|
Pn as activeActionVnode,
|
19614
|
-
|
19615
|
-
|
19641
|
+
QT as addHotkey,
|
19642
|
+
t3 as applyCssVars,
|
19616
19643
|
Lc as buildCssVars,
|
19617
19644
|
ZT as centerTruncate,
|
19618
19645
|
MT as configure,
|
@@ -19620,7 +19647,8 @@ export {
|
|
19620
19647
|
vl as dbDateTime,
|
19621
19648
|
WT as diffInDays,
|
19622
19649
|
as as download,
|
19623
|
-
A1 as
|
19650
|
+
A1 as downloadBlobOrUrl,
|
19651
|
+
jT as downloadFile,
|
19624
19652
|
D1 as downloadFileResponse,
|
19625
19653
|
zu as fCurrency,
|
19626
19654
|
Tt as fDate,
|
@@ -19631,14 +19659,14 @@ export {
|
|
19631
19659
|
HT as fPhone,
|
19632
19660
|
qT as fQDate,
|
19633
19661
|
GT as fSecondsToTime,
|
19634
|
-
|
19662
|
+
e3 as fetchResourceListWithSelected,
|
19635
19663
|
VS as getFilterFromUrl,
|
19636
19664
|
_n as getItem,
|
19637
19665
|
wl as getResponseHeader,
|
19638
19666
|
_b as getUrlParam,
|
19639
19667
|
I_ as incrementName,
|
19640
|
-
|
19641
|
-
|
19668
|
+
$3 as install,
|
19669
|
+
XT as listen,
|
19642
19670
|
Bu as localizedDateTime,
|
19643
19671
|
zS as mapSortBy,
|
19644
19672
|
BT as metersToMiles,
|
@@ -19649,7 +19677,7 @@ export {
|
|
19649
19677
|
li as parseDateTime,
|
19650
19678
|
yo as parseQDate,
|
19651
19679
|
xl as parseQDateTime,
|
19652
|
-
|
19680
|
+
JT as registerHotkeys,
|
19653
19681
|
BS as registerStickyScrolling,
|
19654
19682
|
F1 as remoteDateTime,
|
19655
19683
|
ni as remove,
|
@@ -19659,13 +19687,13 @@ export {
|
|
19659
19687
|
dn as setItem,
|
19660
19688
|
Ko as sleep,
|
19661
19689
|
UT as uniqueBy,
|
19662
|
-
|
19690
|
+
KT as unlisten,
|
19663
19691
|
LT as useActions,
|
19664
19692
|
k_ as useCompatibility,
|
19665
|
-
|
19693
|
+
O3 as useListControls,
|
19666
19694
|
db as useMultiFileUpload,
|
19667
19695
|
fb as useSingleFileUpload,
|
19668
|
-
|
19696
|
+
A3 as useTableColumns,
|
19669
19697
|
AT as version,
|
19670
19698
|
zs as waitForRef
|
19671
19699
|
};
|