bt-core-app 2.0.184 → 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 +3 -2
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -69693,6 +69693,7 @@ const wh = ut()({
|
|
|
69693
69693
|
inheritAttrs: !1,
|
|
69694
69694
|
__name: "BT-Field-Date",
|
|
69695
69695
|
props: {
|
|
69696
|
+
canSelectNone: { type: Boolean },
|
|
69696
69697
|
cols: { type: [String, Boolean], default: "12" },
|
|
69697
69698
|
colClass: {},
|
|
69698
69699
|
dateFrom: {},
|
|
@@ -69760,7 +69761,7 @@ const wh = ut()({
|
|
|
69760
69761
|
"open-delay": "5"
|
|
69761
69762
|
}, {
|
|
69762
69763
|
activator: O(({ props: v }) => [
|
|
69763
|
-
k(qa, ge(v, {
|
|
69764
|
+
k(qa, ge({ clearable: w.canSelectNone }, v, {
|
|
69764
69765
|
"hide-details": p.value == null,
|
|
69765
69766
|
label: w.label,
|
|
69766
69767
|
readonly: "",
|
|
@@ -69768,7 +69769,7 @@ const wh = ut()({
|
|
|
69768
69769
|
variant: m.value ? M(h) : M(g),
|
|
69769
69770
|
modelValue: c.value,
|
|
69770
69771
|
"onUpdate:modelValue": b[0] || (b[0] = (C) => c.value = C)
|
|
69771
|
-
}), null, 16, ["hide-details", "label", "rules", "variant", "modelValue"])
|
|
69772
|
+
}), null, 16, ["clearable", "hide-details", "label", "rules", "variant", "modelValue"])
|
|
69772
69773
|
]),
|
|
69773
69774
|
default: O(() => [
|
|
69774
69775
|
k(M(xp), ge({
|
package/package.json
CHANGED