bt-core-app 2.0.308 → 2.0.310
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/bt-core-app.js +4 -5
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -70290,7 +70290,6 @@ const kne = /* @__PURE__ */ tt({
|
|
|
70290
70290
|
label: {},
|
|
70291
70291
|
lg: { type: [String, Boolean], default: !1 },
|
|
70292
70292
|
md: { type: [String, Boolean], default: !1 },
|
|
70293
|
-
modelValue: {},
|
|
70294
70293
|
prefix: {},
|
|
70295
70294
|
prependIcon: {},
|
|
70296
70295
|
sm: { type: [String, Boolean], default: "6" },
|
|
@@ -79321,14 +79320,14 @@ const Kre = Ye({
|
|
|
79321
79320
|
onClick: g[3] || (g[3] = (D) => o.value++),
|
|
79322
79321
|
class: "ma-4",
|
|
79323
79322
|
color: _(y),
|
|
79324
|
-
disabled: !h.value,
|
|
79323
|
+
disabled: x.fields.filter((D) => !!D.isRequired).length > 0 && !h.value,
|
|
79325
79324
|
key: "1",
|
|
79326
79325
|
text: "Next"
|
|
79327
79326
|
}, null, 8, ["color", "disabled"])) : C.isEditing && C.canSubmit && !c.value && o.value >= C.schema.slides.length - 1 ? (B(), ue(Ve, {
|
|
79328
79327
|
onClick: T,
|
|
79329
79328
|
class: "ma-4",
|
|
79330
79329
|
color: _(y),
|
|
79331
|
-
disabled: !h.value,
|
|
79330
|
+
disabled: x.fields.filter((D) => !!D.isRequired).length > 0 && !h.value,
|
|
79332
79331
|
key: "2",
|
|
79333
79332
|
text: "Submit"
|
|
79334
79333
|
}, null, 8, ["color", "disabled"])) : Q("", !0)
|
|
@@ -79631,13 +79630,13 @@ const Kre = Ye({
|
|
|
79631
79630
|
o.value < C.schema.slides.length - 1 ? (B(), ue(Ve, {
|
|
79632
79631
|
onClick: g[11] || (g[11] = (D) => o.value++),
|
|
79633
79632
|
class: "ma-4",
|
|
79634
|
-
disabled: !h.value,
|
|
79633
|
+
disabled: x.fields.filter((D) => !!D.isRequired).length > 0 && !h.value,
|
|
79635
79634
|
key: "1",
|
|
79636
79635
|
text: "Next"
|
|
79637
79636
|
}, null, 8, ["disabled"])) : C.isEditing && C.canSubmit && !c.value && o.value >= C.schema.slides.length - 1 ? (B(), ue(Ve, {
|
|
79638
79637
|
onClick: T,
|
|
79639
79638
|
class: "ma-4",
|
|
79640
|
-
disabled: !h.value,
|
|
79639
|
+
disabled: x.fields.filter((D) => !!D.isRequired).length > 0 && !h.value,
|
|
79641
79640
|
key: "2",
|
|
79642
79641
|
text: "Submit"
|
|
79643
79642
|
}, null, 8, ["disabled"])) : Q("", !0)
|
package/package.json
CHANGED