bt-core-app 1.4.359 → 1.4.361
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 +7 -3
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -35414,7 +35414,7 @@ const fE = /* @__PURE__ */ Qe({
|
|
|
35414
35414
|
errorMsg: {},
|
|
35415
35415
|
ignorePermissions: { type: Boolean },
|
|
35416
35416
|
includeDetails: { type: Boolean },
|
|
35417
|
-
isSingle: { type: Boolean },
|
|
35417
|
+
isSingle: { type: Boolean, default: !0 },
|
|
35418
35418
|
item: {},
|
|
35419
35419
|
itemID: {},
|
|
35420
35420
|
loadingMsg: {},
|
|
@@ -35482,6 +35482,7 @@ const fE = /* @__PURE__ */ Qe({
|
|
|
35482
35482
|
He($e(d.prefix), 1)
|
|
35483
35483
|
]),
|
|
35484
35484
|
me(d.$slots, "default", {
|
|
35485
|
+
isChanged: A(r).isChanged,
|
|
35485
35486
|
item: A(r).asyncItem.value,
|
|
35486
35487
|
deleteItem: A(r).deleteItem,
|
|
35487
35488
|
save: A(r).saveItem
|
|
@@ -39782,6 +39783,7 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39782
39783
|
}), bV = /* @__PURE__ */ Qe({
|
|
39783
39784
|
__name: "BT-Signature-Overlay",
|
|
39784
39785
|
props: {
|
|
39786
|
+
canEdit: { type: Boolean },
|
|
39785
39787
|
fullscreen: { type: Boolean, default: !0 },
|
|
39786
39788
|
hideButton: { type: Boolean, default: !1 },
|
|
39787
39789
|
lineColor: {},
|
|
@@ -39876,12 +39878,14 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39876
39878
|
}),
|
|
39877
39879
|
y(Pe, {
|
|
39878
39880
|
onClick: h,
|
|
39881
|
+
disabled: !u.canEdit,
|
|
39879
39882
|
icon: "$eraser"
|
|
39880
|
-
}),
|
|
39883
|
+
}, null, 8, ["disabled"]),
|
|
39881
39884
|
y(Pe, {
|
|
39882
39885
|
onClick: v,
|
|
39886
|
+
disabled: !u.canEdit,
|
|
39883
39887
|
icon: "$content-save"
|
|
39884
|
-
})
|
|
39888
|
+
}, null, 8, ["disabled"])
|
|
39885
39889
|
]),
|
|
39886
39890
|
_: 1
|
|
39887
39891
|
})
|
package/package.json
CHANGED