bt-core-app 1.4.537 → 1.4.538
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 +8 -4
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -37976,12 +37976,14 @@ const qE = /* @__PURE__ */ Xe({
|
|
|
37976
37976
|
additionalURL: {},
|
|
37977
37977
|
canEdit: { type: Boolean, default: !0 },
|
|
37978
37978
|
color: {},
|
|
37979
|
-
dialogWidth: { default: "
|
|
37979
|
+
dialogWidth: { default: "auto" },
|
|
37980
37980
|
height: { default: 100 },
|
|
37981
37981
|
id: {},
|
|
37982
37982
|
imageHeight: { default: 256 },
|
|
37983
37983
|
imageWidth: { default: 256 },
|
|
37984
37984
|
label: {},
|
|
37985
|
+
maxDialogWidth: { default: 600 },
|
|
37986
|
+
minDialogWidth: { default: 100 },
|
|
37985
37987
|
nav: {},
|
|
37986
37988
|
placeholderIcon: { default: "$cube-outline" },
|
|
37987
37989
|
proxyID: {},
|
|
@@ -38022,6 +38024,8 @@ const qE = /* @__PURE__ */ Xe({
|
|
|
38022
38024
|
key: 0,
|
|
38023
38025
|
modelValue: o.value,
|
|
38024
38026
|
"onUpdate:modelValue": x[1] || (x[1] = (T) => o.value = T),
|
|
38027
|
+
"max-width": d.maxDialogWidth,
|
|
38028
|
+
"min-width": d.minDialogWidth,
|
|
38025
38029
|
width: d.dialogWidth
|
|
38026
38030
|
}, {
|
|
38027
38031
|
activator: R(({ props: T }) => [
|
|
@@ -38093,7 +38097,7 @@ const qE = /* @__PURE__ */ Xe({
|
|
|
38093
38097
|
b(pn, {
|
|
38094
38098
|
class: "text-center",
|
|
38095
38099
|
loading: D(s) != null,
|
|
38096
|
-
width:
|
|
38100
|
+
width: "100%"
|
|
38097
38101
|
}, {
|
|
38098
38102
|
default: R(() => [
|
|
38099
38103
|
b(vs, null, {
|
|
@@ -38147,10 +38151,10 @@ const qE = /* @__PURE__ */ Xe({
|
|
|
38147
38151
|
})
|
|
38148
38152
|
]),
|
|
38149
38153
|
_: 1
|
|
38150
|
-
}, 8, ["loading"
|
|
38154
|
+
}, 8, ["loading"])
|
|
38151
38155
|
]),
|
|
38152
38156
|
_: 1
|
|
38153
|
-
}, 8, ["modelValue", "width"])) : (B(), te(hs, { key: 1 }, {
|
|
38157
|
+
}, 8, ["modelValue", "max-width", "min-width", "width"])) : (B(), te(hs, { key: 1 }, {
|
|
38154
38158
|
default: R(() => [
|
|
38155
38159
|
b(zl, {
|
|
38156
38160
|
src: v.value,
|
package/package.json
CHANGED