bt-core-app 2.0.184 → 2.0.186
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
|
@@ -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,15 +69761,18 @@ const wh = ut()({
|
|
|
69760
69761
|
"open-delay": "5"
|
|
69761
69762
|
}, {
|
|
69762
69763
|
activator: O(({ props: v }) => [
|
|
69763
|
-
k(qa, ge(
|
|
69764
|
+
k(qa, ge({
|
|
69765
|
+
"append-inner-icon": w.canSelectNone && s.value != null && s.value.length > 0 ? "$close" : void 0,
|
|
69766
|
+
"onClick:appendInner": b[0] || (b[0] = (C) => s.value = void 0)
|
|
69767
|
+
}, v, {
|
|
69764
69768
|
"hide-details": p.value == null,
|
|
69765
69769
|
label: w.label,
|
|
69766
69770
|
readonly: "",
|
|
69767
69771
|
rules: p.value,
|
|
69768
69772
|
variant: m.value ? M(h) : M(g),
|
|
69769
69773
|
modelValue: c.value,
|
|
69770
|
-
"onUpdate:modelValue": b[
|
|
69771
|
-
}), null, 16, ["hide-details", "label", "rules", "variant", "modelValue"])
|
|
69774
|
+
"onUpdate:modelValue": b[1] || (b[1] = (C) => c.value = C)
|
|
69775
|
+
}), null, 16, ["append-inner-icon", "hide-details", "label", "rules", "variant", "modelValue"])
|
|
69772
69776
|
]),
|
|
69773
69777
|
default: O(() => [
|
|
69774
69778
|
k(M(xp), ge({
|
|
@@ -69782,7 +69786,7 @@ const wh = ut()({
|
|
|
69782
69786
|
utc: ""
|
|
69783
69787
|
}, w.$attrs, {
|
|
69784
69788
|
modelValue: s.value,
|
|
69785
|
-
"onUpdate:modelValue": b[
|
|
69789
|
+
"onUpdate:modelValue": b[2] || (b[2] = (v) => s.value = v)
|
|
69786
69790
|
}), null, 16, ["dark", "enable-time-picker", "time-picker-inline", "timezone", "modelValue"])
|
|
69787
69791
|
]),
|
|
69788
69792
|
_: 1
|
package/package.json
CHANGED