bt-core-app 2.0.183 → 2.0.185
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 -3
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -56722,6 +56722,7 @@ const QK = ["success", "info", "warning", "error"], JK = Ye({
|
|
|
56722
56722
|
default: O(() => [
|
|
56723
56723
|
!d.value && !E.hideToolbar && E.variant != "pure" ? (B(), ue(Cr, {
|
|
56724
56724
|
key: 0,
|
|
56725
|
+
class: "overflow-x-auto",
|
|
56725
56726
|
color: C.value,
|
|
56726
56727
|
density: E.density,
|
|
56727
56728
|
ref_key: "handle",
|
|
@@ -56744,7 +56745,10 @@ const QK = ["success", "info", "warning", "error"], JK = Ye({
|
|
|
56744
56745
|
qe(Ne(E.label), 1)
|
|
56745
56746
|
]),
|
|
56746
56747
|
_: 1
|
|
56747
|
-
})) : !E.showOnlyTitleLeft && E.label != null ? (B(), ue(bn, {
|
|
56748
|
+
})) : !E.showOnlyTitleLeft && E.label != null ? (B(), ue(bn, {
|
|
56749
|
+
key: 1,
|
|
56750
|
+
class: "text-truncate"
|
|
56751
|
+
}, {
|
|
56748
56752
|
default: O(() => [
|
|
56749
56753
|
qe(Ne(E.label), 1)
|
|
56750
56754
|
]),
|
|
@@ -69689,6 +69693,7 @@ const wh = ut()({
|
|
|
69689
69693
|
inheritAttrs: !1,
|
|
69690
69694
|
__name: "BT-Field-Date",
|
|
69691
69695
|
props: {
|
|
69696
|
+
canSelectNone: { type: Boolean },
|
|
69692
69697
|
cols: { type: [String, Boolean], default: "12" },
|
|
69693
69698
|
colClass: {},
|
|
69694
69699
|
dateFrom: {},
|
|
@@ -69756,7 +69761,7 @@ const wh = ut()({
|
|
|
69756
69761
|
"open-delay": "5"
|
|
69757
69762
|
}, {
|
|
69758
69763
|
activator: O(({ props: v }) => [
|
|
69759
|
-
k(qa, ge(v, {
|
|
69764
|
+
k(qa, ge({ clearable: w.canSelectNone }, v, {
|
|
69760
69765
|
"hide-details": p.value == null,
|
|
69761
69766
|
label: w.label,
|
|
69762
69767
|
readonly: "",
|
|
@@ -69764,7 +69769,7 @@ const wh = ut()({
|
|
|
69764
69769
|
variant: m.value ? M(h) : M(g),
|
|
69765
69770
|
modelValue: c.value,
|
|
69766
69771
|
"onUpdate:modelValue": b[0] || (b[0] = (C) => c.value = C)
|
|
69767
|
-
}), null, 16, ["hide-details", "label", "rules", "variant", "modelValue"])
|
|
69772
|
+
}), null, 16, ["clearable", "hide-details", "label", "rules", "variant", "modelValue"])
|
|
69768
69773
|
]),
|
|
69769
69774
|
default: O(() => [
|
|
69770
69775
|
k(M(xp), ge({
|
package/package.json
CHANGED