quasar-ui-danx 0.4.55 → 0.4.56
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 +36 -31
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +2 -2
- package/dist/danx.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ActionTable/Form/ActionForm.vue +2 -2
- package/src/components/ActionTable/Form/Fields/BooleanField.vue +2 -2
- package/src/components/ActionTable/Form/Fields/MultiFileField.vue +4 -4
- package/src/components/ActionTable/Form/Fields/SelectOrCreateField.vue +1 -1
- package/src/components/ActionTable/Form/Fields/SelectionMenuField.vue +5 -2
- package/src/components/ActionTable/Form/Fields/SingleFileField.vue +3 -3
- package/src/components/ActionTable/Form/Fields/WysiwygField.vue +2 -2
- package/src/components/ActionTable/Form/RenderedForm.vue +6 -4
- package/src/components/Utility/Dialogs/InfoDialog.vue +2 -2
- package/src/components/Utility/Dialogs/RenderedFormDialog.vue +2 -2
- package/src/types/forms.d.ts +1 -1
package/dist/danx.es.js
CHANGED
@@ -1923,7 +1923,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
1923
1923
|
__name: "InfoDialog",
|
1924
1924
|
props: {
|
1925
1925
|
...nl.props,
|
1926
|
-
|
1926
|
+
disabled: Boolean,
|
1927
1927
|
doneClass: {
|
1928
1928
|
type: [String, Object],
|
1929
1929
|
default: ""
|
@@ -1947,7 +1947,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
1947
1947
|
O(o, {
|
1948
1948
|
label: t.doneText,
|
1949
1949
|
class: L(["dx-dialog-button dx-dialog-button-done", t.doneClass]),
|
1950
|
-
disable: t.
|
1950
|
+
disable: t.disabled,
|
1951
1951
|
onClick: r
|
1952
1952
|
}, {
|
1953
1953
|
default: N(() => [
|
@@ -2064,7 +2064,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
2064
2064
|
},
|
2065
2065
|
showName: Boolean,
|
2066
2066
|
toggleIndeterminate: Boolean,
|
2067
|
-
|
2067
|
+
disabled: Boolean,
|
2068
2068
|
readonly: Boolean
|
2069
2069
|
},
|
2070
2070
|
emits: ["update:model-value"],
|
@@ -2074,7 +2074,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
2074
2074
|
return m(), E(r, {
|
2075
2075
|
"data-testid": "boolean-field-" + (t.name || t.label),
|
2076
2076
|
"model-value": t.modelValue || (t.toggleIndeterminate ? t.modelValue : !1),
|
2077
|
-
disable: t.
|
2077
|
+
disable: t.disabled || t.readonly,
|
2078
2078
|
"toggle-indeterminate": t.toggleIndeterminate,
|
2079
2079
|
"indeterminate-value": void 0,
|
2080
2080
|
"onUpdate:modelValue": n[0] || (n[0] = (s) => e.$emit("update:model-value", s))
|
@@ -2962,7 +2962,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
2962
2962
|
field: { default: null },
|
2963
2963
|
label: { default: "" },
|
2964
2964
|
showName: { type: Boolean },
|
2965
|
-
|
2965
|
+
disabled: { type: Boolean },
|
2966
2966
|
readonly: { type: Boolean },
|
2967
2967
|
width: { default: 128 },
|
2968
2968
|
height: { default: 128 },
|
@@ -2994,7 +2994,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
2994
2994
|
key: 0,
|
2995
2995
|
label: d.label
|
2996
2996
|
}, null, 8, ["label"])) : P("", !0),
|
2997
|
-
!d.
|
2997
|
+
!d.disabled && !d.readonly ? (m(), b("input", {
|
2998
2998
|
key: 1,
|
2999
2999
|
ref: "file",
|
3000
3000
|
class: "hidden",
|
@@ -3011,10 +3011,10 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3011
3011
|
file: _,
|
3012
3012
|
"related-files": _.transcodes || S(l),
|
3013
3013
|
downloadable: "",
|
3014
|
-
removable: !d.readonly && !d.
|
3014
|
+
removable: !d.readonly && !d.disabled,
|
3015
3015
|
onRemove: (p) => S(u)(_)
|
3016
3016
|
}, null, 8, ["class", "style", "file", "related-files", "removable", "onRemove"]))), 128)),
|
3017
|
-
!d.
|
3017
|
+
!d.disabled && !d.readonly ? (m(), b("div", {
|
3018
3018
|
key: 0,
|
3019
3019
|
class: L(["dx-add-remove-files m-2 flex flex-col flex-nowrap items-center overflow-hidden cursor-pointer", d.filePreviewClass]),
|
3020
3020
|
style: Wn(c.value)
|
@@ -3599,7 +3599,8 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3599
3599
|
deletable: { type: Boolean },
|
3600
3600
|
nameEditable: { type: Boolean },
|
3601
3601
|
clearable: { type: Boolean },
|
3602
|
-
|
3602
|
+
disabled: { type: Boolean },
|
3603
|
+
editDisabled: { type: Boolean },
|
3603
3604
|
size: { default: "md" }
|
3604
3605
|
}, {
|
3605
3606
|
selected: {},
|
@@ -3617,7 +3618,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3617
3618
|
key: 0,
|
3618
3619
|
modelValue: r.value,
|
3619
3620
|
"onUpdate:modelValue": i[3] || (i[3] = (c) => r.value = c),
|
3620
|
-
|
3621
|
+
disabled: s.disabled,
|
3621
3622
|
label: s.selectText,
|
3622
3623
|
saving: s.loading,
|
3623
3624
|
class: L([s.selectClass, "mr-2"]),
|
@@ -3671,7 +3672,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3671
3672
|
}, 8, ["model-value"])
|
3672
3673
|
]),
|
3673
3674
|
_: 1
|
3674
|
-
}, 8, ["modelValue", "
|
3675
|
+
}, 8, ["modelValue", "disabled", "label", "saving", "class", "show-icon", "size"])) : P("", !0),
|
3675
3676
|
F("div", {
|
3676
3677
|
class: L(s.labelClass)
|
3677
3678
|
}, [
|
@@ -3695,9 +3696,11 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3695
3696
|
label: s.editText,
|
3696
3697
|
class: L([s.editClass, "opacity-0 group-hover:opacity-100 transition-all"]),
|
3697
3698
|
size: s.size,
|
3699
|
+
disabled: s.editDisabled,
|
3698
3700
|
"show-icon": S(Or),
|
3699
|
-
"hide-icon": S(wd)
|
3700
|
-
|
3701
|
+
"hide-icon": S(wd),
|
3702
|
+
tooltip: s.editDisabled ? "You are not allowed to edit" : ""
|
3703
|
+
}, null, 8, ["modelValue", "label", "class", "size", "disabled", "show-icon", "hide-icon", "tooltip"])) : P("", !0),
|
3701
3704
|
s.clearable && e.value ? (m(), E(a, {
|
3702
3705
|
key: 2,
|
3703
3706
|
label: s.clearText,
|
@@ -3755,11 +3758,11 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3755
3758
|
key: 0,
|
3756
3759
|
modelValue: n.value,
|
3757
3760
|
"onUpdate:modelValue": s[1] || (s[1] = (o) => n.value = o),
|
3758
|
-
|
3761
|
+
disabled: !r.canEdit,
|
3759
3762
|
label: r.editText,
|
3760
3763
|
class: L(r.editClass),
|
3761
3764
|
"show-icon": S(Or)
|
3762
|
-
}, null, 8, ["modelValue", "
|
3765
|
+
}, null, 8, ["modelValue", "disabled", "label", "class", "show-icon"])) : P("", !0),
|
3763
3766
|
O(S(vs), {
|
3764
3767
|
modelValue: e.value,
|
3765
3768
|
"onUpdate:modelValue": s[2] || (s[2] = (o) => e.value = o),
|
@@ -3847,7 +3850,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3847
3850
|
label: {},
|
3848
3851
|
name: {},
|
3849
3852
|
showName: { type: Boolean },
|
3850
|
-
|
3853
|
+
disabled: { type: Boolean },
|
3851
3854
|
readonly: { type: Boolean }
|
3852
3855
|
},
|
3853
3856
|
emits: ["update:model-value"],
|
@@ -3872,7 +3875,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3872
3875
|
"show-name": u.showName,
|
3873
3876
|
class: "text-sm font-semibold"
|
3874
3877
|
}, null, 8, ["label", "name", "show-name"])) : P("", !0),
|
3875
|
-
!u.
|
3878
|
+
!u.disabled && !u.readonly ? (m(), b("div", qg, [
|
3876
3879
|
F("a", {
|
3877
3880
|
class: "text-blue-600",
|
3878
3881
|
onClick: c[0] || (c[0] = (d) => u.$refs.file.click())
|
@@ -3896,7 +3899,7 @@ const Ym = { class: "flex-grow" }, Km = {
|
|
3896
3899
|
class: L(["w-32 cursor-pointer mt-2", { "border border-dashed border-blue-600": !S(l), "mx-auto": !u.readonly }]),
|
3897
3900
|
file: S(l) || void 0,
|
3898
3901
|
downloadable: "",
|
3899
|
-
onClick: c[3] || (c[3] = (d) => !u.
|
3902
|
+
onClick: c[3] || (c[3] = (d) => !u.disabled && u.$refs.file.click())
|
3900
3903
|
}, null, 8, ["class", "file"])) : u.readonly ? (m(), b("div", Bg, " -- ")) : P("", !0)
|
3901
3904
|
], 34));
|
3902
3905
|
}
|
@@ -4202,7 +4205,7 @@ const ry = ["innerHTML"], sy = {
|
|
4202
4205
|
},
|
4203
4206
|
noLabel: Boolean,
|
4204
4207
|
showName: Boolean,
|
4205
|
-
|
4208
|
+
disabled: Boolean,
|
4206
4209
|
readonly: Boolean
|
4207
4210
|
},
|
4208
4211
|
emits: ["update:model-value"],
|
@@ -4221,7 +4224,7 @@ const ry = ["innerHTML"], sy = {
|
|
4221
4224
|
key: 2,
|
4222
4225
|
class: "mt-2",
|
4223
4226
|
"api-key": S(Se).tinyMceApiKey,
|
4224
|
-
disabled: t.
|
4227
|
+
disabled: t.disabled,
|
4225
4228
|
"model-value": t.modelValue,
|
4226
4229
|
"onUpdate:modelValue": n[0] || (n[0] = (r) => e.$emit("update:model-value", r))
|
4227
4230
|
}, null, 8, ["api-key", "disabled", "model-value"]))
|
@@ -4269,7 +4272,7 @@ const ry = ["innerHTML"], sy = {
|
|
4269
4272
|
form: {},
|
4270
4273
|
noLabel: { type: Boolean },
|
4271
4274
|
showName: { type: Boolean },
|
4272
|
-
|
4275
|
+
disabled: { type: Boolean },
|
4273
4276
|
readonly: { type: Boolean },
|
4274
4277
|
saving: { type: Boolean },
|
4275
4278
|
clearable: { type: Boolean },
|
@@ -4317,7 +4320,8 @@ const ry = ["innerHTML"], sy = {
|
|
4317
4320
|
label: $.label,
|
4318
4321
|
clearable: $.clearable || n.clearable,
|
4319
4322
|
readonly: n.readonly,
|
4320
|
-
|
4323
|
+
disabled: n.disabled,
|
4324
|
+
disable: n.disabled,
|
4321
4325
|
showName: n.showName,
|
4322
4326
|
noLabel: n.noLabel
|
4323
4327
|
};
|
@@ -4325,7 +4329,7 @@ const ry = ["innerHTML"], sy = {
|
|
4325
4329
|
const c = M(() => {
|
4326
4330
|
const $ = [...new Set(o.value.map((q) => q.variation))].sort();
|
4327
4331
|
return $.length === 0 && $.push(""), $;
|
4328
|
-
}), d = H(c.value[0] || ""), f = H(""), _ = H(!1), p = H(""), h = M(() => n.canModifyVariations && !n.readonly && !n.
|
4332
|
+
}), d = H(c.value[0] || ""), f = H(""), _ = H(!1), p = H(""), h = M(() => n.canModifyVariations && !n.readonly && !n.disabled && c.value.length < (n.form.variations || 0));
|
4329
4333
|
function g($, q) {
|
4330
4334
|
if (o.value)
|
4331
4335
|
return o.value.find((z) => z.variation === (q !== void 0 ? q : d.value) && z.name === $);
|
@@ -4418,7 +4422,7 @@ const ry = ["innerHTML"], sy = {
|
|
4418
4422
|
})
|
4419
4423
|
])),
|
4420
4424
|
F("div", cy, D(Y || "1"), 1),
|
4421
|
-
!$.
|
4425
|
+
!$.disabled && !$.readonly && $.canModifyVariations ? (m(), b("div", dy, [
|
4422
4426
|
F("a", {
|
4423
4427
|
class: "ml-1 p-1 hover:opacity-100 opacity-20 hover:bg-blue-200 rounded",
|
4424
4428
|
onClick: () => (_.value = Y) && (f.value = Y)
|
@@ -4476,10 +4480,11 @@ const ry = ["innerHTML"], sy = {
|
|
4476
4480
|
"no-label": $.noLabel,
|
4477
4481
|
"show-name": $.showName,
|
4478
4482
|
clearable: Y.clearable || $.clearable,
|
4479
|
-
|
4483
|
+
disabled: $.disabled,
|
4484
|
+
disable: $.disabled,
|
4480
4485
|
readonly: $.readonly,
|
4481
4486
|
"onUpdate:modelValue": (Ne) => x(Y.name, Ne)
|
4482
|
-
}, null, 8, ["model-value", "field", "label", "no-label", "show-name", "clearable", "disable", "readonly", "onUpdate:modelValue"]))
|
4487
|
+
}, null, 8, ["model-value", "field", "label", "no-label", "show-name", "clearable", "disabled", "disable", "readonly", "onUpdate:modelValue"]))
|
4483
4488
|
], 2)), [
|
4484
4489
|
[Ph, a(Y)]
|
4485
4490
|
])), 128)),
|
@@ -4526,7 +4531,7 @@ const ry = ["innerHTML"], sy = {
|
|
4526
4531
|
form: {},
|
4527
4532
|
noLabel: { type: Boolean },
|
4528
4533
|
showName: { type: Boolean },
|
4529
|
-
|
4534
|
+
disabled: { type: Boolean },
|
4530
4535
|
readonly: { type: Boolean },
|
4531
4536
|
clearable: { type: Boolean },
|
4532
4537
|
fieldClass: { default: "" },
|
@@ -4539,7 +4544,7 @@ const ry = ["innerHTML"], sy = {
|
|
4539
4544
|
form: r.form,
|
4540
4545
|
noLabel: r.noLabel,
|
4541
4546
|
showName: r.showName,
|
4542
|
-
|
4547
|
+
disabled: r.disabled,
|
4543
4548
|
readonly: r.readonly,
|
4544
4549
|
clearable: r.clearable,
|
4545
4550
|
fieldClass: r.fieldClass,
|
@@ -4578,7 +4583,7 @@ const ry = ["innerHTML"], sy = {
|
|
4578
4583
|
form: {},
|
4579
4584
|
noLabel: { type: Boolean },
|
4580
4585
|
showName: { type: Boolean },
|
4581
|
-
|
4586
|
+
disabled: { type: Boolean },
|
4582
4587
|
readonly: { type: Boolean },
|
4583
4588
|
clearable: { type: Boolean },
|
4584
4589
|
fieldClass: {},
|
@@ -4595,7 +4600,7 @@ const ry = ["innerHTML"], sy = {
|
|
4595
4600
|
form: e.form,
|
4596
4601
|
noLabel: e.noLabel,
|
4597
4602
|
showName: e.showName,
|
4598
|
-
|
4603
|
+
disabled: e.disabled,
|
4599
4604
|
readonly: e.readonly,
|
4600
4605
|
clearable: e.clearable,
|
4601
4606
|
fieldClass: e.fieldClass,
|
@@ -26577,7 +26582,7 @@ function VI(t, e = "") {
|
|
26577
26582
|
function kh(t, e = "") {
|
26578
26583
|
return Object.entries(t).map(([n, r]) => typeof r == "object" ? kh(r, `${e}${n}-`) : `--${e}${n}: ${r}`).join(";");
|
26579
26584
|
}
|
26580
|
-
const x9 = "0.4.
|
26585
|
+
const x9 = "0.4.56", k9 = {
|
26581
26586
|
version: x9
|
26582
26587
|
}, { version: S9 } = k9;
|
26583
26588
|
function HI() {
|