bt-core-app 1.4.359 → 1.4.360
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 +5 -2
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -39782,6 +39782,7 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39782
39782
|
}), bV = /* @__PURE__ */ Qe({
|
|
39783
39783
|
__name: "BT-Signature-Overlay",
|
|
39784
39784
|
props: {
|
|
39785
|
+
canEdit: { type: Boolean },
|
|
39785
39786
|
fullscreen: { type: Boolean, default: !0 },
|
|
39786
39787
|
hideButton: { type: Boolean, default: !1 },
|
|
39787
39788
|
lineColor: {},
|
|
@@ -39876,12 +39877,14 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39876
39877
|
}),
|
|
39877
39878
|
y(Pe, {
|
|
39878
39879
|
onClick: h,
|
|
39880
|
+
disabled: !u.canEdit,
|
|
39879
39881
|
icon: "$eraser"
|
|
39880
|
-
}),
|
|
39882
|
+
}, null, 8, ["disabled"]),
|
|
39881
39883
|
y(Pe, {
|
|
39882
39884
|
onClick: v,
|
|
39885
|
+
disabled: !u.canEdit,
|
|
39883
39886
|
icon: "$content-save"
|
|
39884
|
-
})
|
|
39887
|
+
}, null, 8, ["disabled"])
|
|
39885
39888
|
]),
|
|
39886
39889
|
_: 1
|
|
39887
39890
|
})
|
package/package.json
CHANGED