bt-core-app 1.4.351 → 1.4.352
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 -4
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -39697,6 +39697,7 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39697
39697
|
fullscreen: { type: Boolean, default: !1 },
|
|
39698
39698
|
height: { default: "400px" },
|
|
39699
39699
|
label: {},
|
|
39700
|
+
lineColor: {},
|
|
39700
39701
|
width: { default: "100%" },
|
|
39701
39702
|
modelValue: {},
|
|
39702
39703
|
openToggle: { type: Boolean },
|
|
@@ -39712,7 +39713,7 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39712
39713
|
const f = rt(a);
|
|
39713
39714
|
if (f != null)
|
|
39714
39715
|
return f.signaturePad.canvas.width / window.devicePixelRatio;
|
|
39715
|
-
}), o = C(() => l.name.value == "dark" ? "white" : "black"), s = C(() => ({
|
|
39716
|
+
}), o = C(() => n.lineColor ?? (l.name.value == "dark" ? "white" : "black")), s = C(() => ({
|
|
39716
39717
|
dotSize: 0.5,
|
|
39717
39718
|
penColor: o.value
|
|
39718
39719
|
}));
|
|
@@ -39778,6 +39779,7 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39778
39779
|
props: {
|
|
39779
39780
|
fullscreen: { type: Boolean, default: !0 },
|
|
39780
39781
|
hideButton: { type: Boolean, default: !1 },
|
|
39782
|
+
lineColor: {},
|
|
39781
39783
|
modelValue: {},
|
|
39782
39784
|
openToggle: { type: Boolean },
|
|
39783
39785
|
transparent: { type: Boolean, default: !1 },
|
|
@@ -39785,7 +39787,7 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39785
39787
|
},
|
|
39786
39788
|
emits: ["cancel", "change", "close", "open", "update:modelValue"],
|
|
39787
39789
|
setup(e, { emit: t }) {
|
|
39788
|
-
const n = t, a = e, l = C(() => a.fullscreen == !0 ? `height: calc(100vh - ${a.usedHeight}px); width: 100%;` : ""), r = W(), i = W(), o = W(!1), s = W(null), d = yr(), f = C(() => d.name.value == "dark" ? "white" : "black"), c = C(() => ({
|
|
39790
|
+
const n = t, a = e, l = C(() => a.fullscreen == !0 ? `height: calc(100vh - ${a.usedHeight}px); width: 100%;` : ""), r = W(), i = W(), o = W(!1), s = W(null), d = yr(), f = C(() => a.lineColor ?? (d.name.value == "dark" ? "white" : "black")), c = C(() => ({
|
|
39789
39791
|
penColor: f.value
|
|
39790
39792
|
}));
|
|
39791
39793
|
_e(s, (u) => {
|
|
@@ -39829,7 +39831,6 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39829
39831
|
onClick: Aa(g, ["stop"])
|
|
39830
39832
|
}, u.$attrs), null, 16)) : Q("", !0),
|
|
39831
39833
|
y(Ka, {
|
|
39832
|
-
opacity: 0.75,
|
|
39833
39834
|
modelValue: o.value,
|
|
39834
39835
|
"onUpdate:modelValue": p[0] || (p[0] = (S) => o.value = S),
|
|
39835
39836
|
"z-index": "1001"
|
|
@@ -39847,8 +39848,10 @@ const pV = /* @__PURE__ */ Qe({
|
|
|
39847
39848
|
ref: s
|
|
39848
39849
|
}, null, 8, ["options"]),
|
|
39849
39850
|
y(QC, {
|
|
39851
|
+
"bg-color": "primary",
|
|
39850
39852
|
density: "comfortable",
|
|
39851
|
-
grow: ""
|
|
39853
|
+
grow: "",
|
|
39854
|
+
name: "sign"
|
|
39852
39855
|
}, {
|
|
39853
39856
|
default: F(() => [
|
|
39854
39857
|
y(Pe, {
|
package/package.json
CHANGED