bt-core-app 2.2.11 → 2.2.13
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/components/BT-Cron.vue.mjs +19 -18
- package/dist/components/BT-Form.vue.mjs +2 -2
- package/dist/components/BT-Select-Inline.vue.d.ts +6 -19
- package/dist/components/BT-Select-Inline.vue.mjs +99 -72
- package/dist/components/BT-Select-Inline.vue2.mjs +1 -24
- package/dist/components/BT-Select-Inline.vue3.mjs +5 -1
- package/dist/components/BT-Select-List-Box.vue.mjs +9 -9
- package/dist/core2.mjs +63 -62
- package/dist/style.css +1 -1
- package/package.json +5 -2
|
@@ -2,13 +2,14 @@ import { defineComponent as G, ref as w, computed as J, watch as K, resolveCompo
|
|
|
2
2
|
import { useCron as ee, regularityOptions as P, hourOptions as te, weekOptions as le, weekdayOptions as ae } from "../composables/cron.mjs";
|
|
3
3
|
import { useCronAdjustments as ne } from "../composables/cron-adjustments.mjs";
|
|
4
4
|
import h from "./BT-Select-Inline.vue.mjs";
|
|
5
|
+
import "./BT-Select-Inline.vue2.mjs";
|
|
5
6
|
import { VDialog as z } from "../bt-core/core/node_modules/vuetify/lib/components/VDialog/VDialog.mjs";
|
|
6
7
|
import { VCardTitle as ue } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCardTitle.mjs";
|
|
7
8
|
import { VContainer as oe } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VContainer.mjs";
|
|
8
9
|
import { VRow as j } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VRow.mjs";
|
|
9
10
|
import { VSlideYTransition as L, VSlideYReverseTransition as ie, VSlideXTransition as se } from "../bt-core/core/node_modules/vuetify/lib/components/transitions/index.mjs";
|
|
10
11
|
import { VCol as m } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VCol.mjs";
|
|
11
|
-
import { VListSubheader as
|
|
12
|
+
import { VListSubheader as _ } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListSubheader.mjs";
|
|
12
13
|
import { VBtn as V } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
|
|
13
14
|
import { VCard as N } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
|
|
14
15
|
import { VSpacer as R } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VSpacer.mjs";
|
|
@@ -26,7 +27,7 @@ const pe = {
|
|
|
26
27
|
}, ce = { class: "text-caption text-grey" }, Ve = { key: 0 }, ke = { key: 1 }, xe = { key: 0 }, Ce = { key: "0" }, he = { class: "text-caption text-grey" }, Le = {
|
|
27
28
|
class: "text-error",
|
|
28
29
|
key: "1"
|
|
29
|
-
},
|
|
30
|
+
}, _e = { key: "2" }, De = { class: "text-caption text-grey" }, Te = { key: "3" }, Ae = { class: "text-caption text-grey" }, be = { class: "d-flex flex-column" }, we = { class: "text-caption" }, Je = /* @__PURE__ */ G({
|
|
30
31
|
__name: "BT-Cron",
|
|
31
32
|
props: {
|
|
32
33
|
adjustments: {},
|
|
@@ -48,8 +49,8 @@ const pe = {
|
|
|
48
49
|
useLeadTimeRight: { type: Boolean }
|
|
49
50
|
},
|
|
50
51
|
emits: ["update:modelValue", "update:adjustments"],
|
|
51
|
-
setup(
|
|
52
|
-
const x =
|
|
52
|
+
setup(M, { emit: O }) {
|
|
53
|
+
const x = M, S = O, A = w(!1), U = J(() => `${y.filteredAdjustments.value.length} Adjustment${y.filteredAdjustments.value.length == 1 ? "" : "s"}`), p = w(void 0), D = w(!1), i = ee({
|
|
53
54
|
...x,
|
|
54
55
|
value: x.modelValue
|
|
55
56
|
}), y = ne({
|
|
@@ -57,11 +58,11 @@ const pe = {
|
|
|
57
58
|
cronExpression: i.cronExpression.value,
|
|
58
59
|
futureLimit: x.adjustmentFutureLimit ?? 2
|
|
59
60
|
});
|
|
60
|
-
function
|
|
61
|
+
function I() {
|
|
61
62
|
A.value = !1, S("update:adjustments", y.stringify());
|
|
62
63
|
}
|
|
63
64
|
function W() {
|
|
64
|
-
p.value && y.applyAdjustment(p.value),
|
|
65
|
+
p.value && y.applyAdjustment(p.value), D.value = !1;
|
|
65
66
|
}
|
|
66
67
|
function H(n) {
|
|
67
68
|
p.value = {
|
|
@@ -71,7 +72,7 @@ const pe = {
|
|
|
71
72
|
leadTimeRight: 0,
|
|
72
73
|
leadLeftDate: n.leadLeftDate,
|
|
73
74
|
leadRightDate: n.leadRightDate
|
|
74
|
-
},
|
|
75
|
+
}, D.value = !0;
|
|
75
76
|
}
|
|
76
77
|
function Y(n) {
|
|
77
78
|
n || (i.applyRawExpression(), k());
|
|
@@ -96,7 +97,7 @@ const pe = {
|
|
|
96
97
|
}, {
|
|
97
98
|
default: l(() => [
|
|
98
99
|
n.inline ? (u(), v("div", pe, [
|
|
99
|
-
t(e(
|
|
100
|
+
t(e(_), null, {
|
|
100
101
|
default: l(() => [
|
|
101
102
|
c(f(n.label), 1)
|
|
102
103
|
]),
|
|
@@ -108,7 +109,7 @@ const pe = {
|
|
|
108
109
|
modelValue: e(i).regularity.value,
|
|
109
110
|
"onUpdate:modelValue": a[0] || (a[0] = (s) => e(i).regularity.value = s)
|
|
110
111
|
}, null, 8, ["items", "modelValue"])
|
|
111
|
-
])) : (u(), d(e(
|
|
112
|
+
])) : (u(), d(e(_), { key: 1 }, {
|
|
112
113
|
default: l(() => [
|
|
113
114
|
c(f(n.label), 1)
|
|
114
115
|
]),
|
|
@@ -347,8 +348,8 @@ const pe = {
|
|
|
347
348
|
value: o.replacingDate
|
|
348
349
|
}, null, 8, ["value"])
|
|
349
350
|
])) : (u(), v("div", Le, "(Cancelled)")),
|
|
350
|
-
o.replacingDate != null && (o.leadTimeLeft > 0 || o.leadLeftDate != null) ? (u(), v("div",
|
|
351
|
-
g("div",
|
|
351
|
+
o.replacingDate != null && (o.leadTimeLeft > 0 || o.leadLeftDate != null) ? (u(), v("div", _e, [
|
|
352
|
+
g("div", De, f(n.adjustmentLeftLabel), 1),
|
|
352
353
|
t(C, {
|
|
353
354
|
filter: "toDayShortDateAndTime",
|
|
354
355
|
value: o.leadLeftDate
|
|
@@ -424,7 +425,7 @@ const pe = {
|
|
|
424
425
|
}, null, 8, ["onClick"]),
|
|
425
426
|
t(e(R)),
|
|
426
427
|
t(e(V), {
|
|
427
|
-
onClick:
|
|
428
|
+
onClick: I,
|
|
428
429
|
"prepend-icon": "$content-save",
|
|
429
430
|
text: "Save"
|
|
430
431
|
})
|
|
@@ -438,8 +439,8 @@ const pe = {
|
|
|
438
439
|
_: 1
|
|
439
440
|
}, 8, ["modelValue"]),
|
|
440
441
|
t(e(z), {
|
|
441
|
-
modelValue:
|
|
442
|
-
"onUpdate:modelValue": a[12] || (a[12] = (s) =>
|
|
442
|
+
modelValue: D.value,
|
|
443
|
+
"onUpdate:modelValue": a[12] || (a[12] = (s) => D.value = s),
|
|
443
444
|
persistent: "",
|
|
444
445
|
width: "auto"
|
|
445
446
|
}, {
|
|
@@ -462,7 +463,7 @@ const pe = {
|
|
|
462
463
|
default: l(() => [
|
|
463
464
|
t(e(m), null, {
|
|
464
465
|
default: l(() => [
|
|
465
|
-
t(e(
|
|
466
|
+
t(e(_), null, {
|
|
466
467
|
default: l(() => [
|
|
467
468
|
c(f(n.replacementLabel), 1)
|
|
468
469
|
]),
|
|
@@ -479,7 +480,7 @@ const pe = {
|
|
|
479
480
|
}),
|
|
480
481
|
n.useLeadTimeLeft ? (u(), d(e(m), { key: 0 }, {
|
|
481
482
|
default: l(() => [
|
|
482
|
-
t(e(
|
|
483
|
+
t(e(_), null, {
|
|
483
484
|
default: l(() => [
|
|
484
485
|
c(f(n.adjustmentLeftLabel), 1)
|
|
485
486
|
]),
|
|
@@ -495,7 +496,7 @@ const pe = {
|
|
|
495
496
|
})) : r("", !0),
|
|
496
497
|
n.useLeadTimeRight ? (u(), d(e(m), { key: 1 }, {
|
|
497
498
|
default: l(() => [
|
|
498
|
-
t(e(
|
|
499
|
+
t(e(_), null, {
|
|
499
500
|
default: l(() => [
|
|
500
501
|
c(f(n.adjustmentRightLabel), 1)
|
|
501
502
|
]),
|
|
@@ -549,5 +550,5 @@ const pe = {
|
|
|
549
550
|
}
|
|
550
551
|
});
|
|
551
552
|
export {
|
|
552
|
-
|
|
553
|
+
Je as default
|
|
553
554
|
};
|
|
@@ -144,7 +144,7 @@ const ce = { class: "text-h6 ml-3" }, fe = {
|
|
|
144
144
|
a(l(A), { class: "ma-0 pa-0" }, {
|
|
145
145
|
default: n(() => [
|
|
146
146
|
a(l(ee), {
|
|
147
|
-
class: "mx-
|
|
147
|
+
class: "mx-auto",
|
|
148
148
|
"max-width": "900",
|
|
149
149
|
style: b(l(I)),
|
|
150
150
|
theme: l(W)
|
|
@@ -333,7 +333,7 @@ const ce = { class: "text-h6 ml-3" }, fe = {
|
|
|
333
333
|
a(l(le), null, {
|
|
334
334
|
default: n(({ errors: d, isValid: h }) => [
|
|
335
335
|
a(l(ee), {
|
|
336
|
-
class: "mx-
|
|
336
|
+
class: "mx-auto",
|
|
337
337
|
"max-width": "900",
|
|
338
338
|
style: b(l(I)),
|
|
339
339
|
theme: l(W)
|
|
@@ -7,7 +7,7 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
7
7
|
};
|
|
8
8
|
chipProps: {
|
|
9
9
|
type: ObjectConstructor;
|
|
10
|
-
default: () =>
|
|
10
|
+
default: () => {};
|
|
11
11
|
};
|
|
12
12
|
modelValue: {
|
|
13
13
|
type: import("vue").PropType<any>;
|
|
@@ -43,23 +43,10 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
43
43
|
type: BooleanConstructor;
|
|
44
44
|
default: boolean;
|
|
45
45
|
};
|
|
46
|
-
}>, {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
itemRows: any[][];
|
|
51
|
-
setItems: (items: any[]) => void;
|
|
52
|
-
setValues: (values: any) => void;
|
|
53
|
-
isEmpty: import("vue").ComputedRef<boolean>;
|
|
54
|
-
has: (item: any) => boolean;
|
|
55
|
-
values: Set<any>;
|
|
56
|
-
add: (item: any) => void;
|
|
57
|
-
toggle: (item: any) => void;
|
|
58
|
-
remove: (item: any) => void;
|
|
59
|
-
clear: () => void;
|
|
60
|
-
updated: import("vue").Ref<number, number>;
|
|
61
|
-
equals: (items: any[]) => boolean;
|
|
62
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:model-value")[], "change" | "update:model-value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
47
|
+
change: (...args: any[]) => void;
|
|
48
|
+
"update:model-value": (...args: any[]) => void;
|
|
49
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
50
|
menuProps: {
|
|
64
51
|
type: ObjectConstructor;
|
|
65
52
|
default: () => {
|
|
@@ -68,7 +55,7 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
68
55
|
};
|
|
69
56
|
chipProps: {
|
|
70
57
|
type: ObjectConstructor;
|
|
71
|
-
default: () =>
|
|
58
|
+
default: () => {};
|
|
72
59
|
};
|
|
73
60
|
modelValue: {
|
|
74
61
|
type: import("vue").PropType<any>;
|
|
@@ -1,74 +1,101 @@
|
|
|
1
|
-
import b from "
|
|
2
|
-
import {
|
|
3
|
-
import "
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
1
|
+
import { defineComponent as y, openBlock as r, createBlock as l, unref as e, mergeProps as u, withCtx as t, withModifiers as g, createCommentVNode as d, createVNode as a, createTextVNode as f, toDisplayString as V, createElementBlock as S, Fragment as b, renderList as P } from "vue";
|
|
2
|
+
import { selectProps as w, setupSelect as B } from "../composables/select.mjs";
|
|
3
|
+
import { VChip as $ } from "../bt-core/core/node_modules/vuetify/lib/components/VChip/VChip.mjs";
|
|
4
|
+
import { VVirtualScroll as x } from "../bt-core/core/node_modules/vuetify/lib/components/VVirtualScroll/VVirtualScroll.mjs";
|
|
5
|
+
import { VIcon as k } from "../bt-core/core/node_modules/vuetify/lib/components/VIcon/VIcon.mjs";
|
|
6
|
+
import { VMenu as N } from "../bt-core/core/node_modules/vuetify/lib/components/VMenu/VMenu.mjs";
|
|
7
|
+
import { VCard as _ } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
|
|
8
|
+
import { VRow as j } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VRow.mjs";
|
|
9
|
+
import { VCol as z } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VCol.mjs";
|
|
10
|
+
import { VListItem as E } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListItem.mjs";
|
|
11
|
+
const J = /* @__PURE__ */ y({
|
|
12
|
+
name: "CustomSelect",
|
|
13
|
+
inheritAttrs: !1,
|
|
14
|
+
__name: "BT-Select-Inline",
|
|
15
|
+
props: {
|
|
16
|
+
...w(),
|
|
17
|
+
menuProps: {
|
|
18
|
+
type: Object,
|
|
19
|
+
default: () => ({ maxHeight: "300px" })
|
|
20
|
+
},
|
|
21
|
+
chipProps: {
|
|
22
|
+
type: Object,
|
|
23
|
+
default: () => ({})
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
emits: ["update:model-value", "change"],
|
|
27
|
+
setup(s, { emit: h }) {
|
|
28
|
+
const m = s, o = B(
|
|
29
|
+
m,
|
|
30
|
+
() => m.modelValue,
|
|
31
|
+
{ emit: h }
|
|
32
|
+
// Type assertion used as per your existing signature
|
|
33
|
+
);
|
|
34
|
+
return (i, c) => (r(), l(e($), u(s.chipProps, { disabled: i.disabled }), {
|
|
35
|
+
append: t(() => [
|
|
36
|
+
i.clearable && !e(o).isEmpty.value ? (r(), l(e(k), {
|
|
37
|
+
key: 0,
|
|
38
|
+
size: "small",
|
|
39
|
+
icon: "$close",
|
|
40
|
+
onClick: c[0] || (c[0] = g((p) => e(o).clear(), ["stop"]))
|
|
41
|
+
})) : d("", !0),
|
|
42
|
+
a(e(k), {
|
|
43
|
+
size: "small",
|
|
44
|
+
icon: "$chevron-down"
|
|
45
|
+
})
|
|
46
|
+
]),
|
|
47
|
+
default: t(() => [
|
|
48
|
+
f(" " + V(i.selection ?? e(o).selectedStr) + " ", 1),
|
|
49
|
+
a(e(N), u({ activator: "parent" }, s.menuProps, {
|
|
50
|
+
"close-on-content-click": !i.multiple
|
|
51
|
+
}), {
|
|
52
|
+
default: t(() => [
|
|
53
|
+
a(e(_), null, {
|
|
54
|
+
default: t(() => [
|
|
55
|
+
a(e(x), {
|
|
56
|
+
class: "pa-0 ma-0",
|
|
57
|
+
height: 170,
|
|
58
|
+
items: e(o).itemRows
|
|
59
|
+
}, {
|
|
60
|
+
default: t(({ index: p, item: v }) => [
|
|
61
|
+
(r(), l(e(j), {
|
|
62
|
+
key: p,
|
|
63
|
+
"no-gutters": ""
|
|
64
|
+
}, {
|
|
65
|
+
default: t(() => [
|
|
66
|
+
(r(!0), S(b, null, P(v, (n, C) => (r(), l(e(z), { key: C }, {
|
|
67
|
+
default: t(() => [
|
|
68
|
+
n ? (r(), l(e(E), {
|
|
69
|
+
key: 0,
|
|
70
|
+
class: "vcron-v-item",
|
|
71
|
+
onClick: (M) => e(o).select(n),
|
|
72
|
+
active: e(o).has(n)
|
|
73
|
+
}, {
|
|
74
|
+
default: t(() => [
|
|
75
|
+
f(V(n.text), 1)
|
|
76
|
+
]),
|
|
77
|
+
_: 2
|
|
78
|
+
}, 1032, ["onClick", "active"])) : d("", !0)
|
|
79
|
+
]),
|
|
80
|
+
_: 2
|
|
81
|
+
}, 1024))), 128))
|
|
82
|
+
]),
|
|
83
|
+
_: 2
|
|
84
|
+
}, 1024))
|
|
85
|
+
]),
|
|
86
|
+
_: 1
|
|
87
|
+
}, 8, ["items"])
|
|
88
|
+
]),
|
|
89
|
+
_: 1
|
|
90
|
+
})
|
|
91
|
+
]),
|
|
92
|
+
_: 1
|
|
93
|
+
}, 16, ["close-on-content-click"])
|
|
94
|
+
]),
|
|
95
|
+
_: 1
|
|
96
|
+
}, 16, ["disabled"]));
|
|
97
|
+
}
|
|
98
|
+
});
|
|
72
99
|
export {
|
|
73
|
-
|
|
100
|
+
J as default
|
|
74
101
|
};
|
|
@@ -1,24 +1 @@
|
|
|
1
|
-
|
|
2
|
-
const r = {
|
|
3
|
-
inheritAttrs: !1,
|
|
4
|
-
name: "CustomSelect",
|
|
5
|
-
props: {
|
|
6
|
-
...s(),
|
|
7
|
-
menuProps: {
|
|
8
|
-
type: Object,
|
|
9
|
-
default: () => ({ maxHeight: "300px" })
|
|
10
|
-
},
|
|
11
|
-
chipProps: {
|
|
12
|
-
type: Object,
|
|
13
|
-
default: () => {
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
emits: ["update:model-value", "change"],
|
|
18
|
-
setup(e, t) {
|
|
19
|
-
return a(e, () => e.modelValue, t);
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
export {
|
|
23
|
-
r as default
|
|
24
|
-
};
|
|
1
|
+
|
|
@@ -2,15 +2,15 @@ import { defineComponent as Y, ref as V, inject as C, computed as m, openBlock a
|
|
|
2
2
|
import { useList as Z } from "../composables/list.mjs";
|
|
3
3
|
import { useFilters as x } from "../composables/filters.mjs";
|
|
4
4
|
import { nestedValue as R, isLengthyArray as _ } from "../composables/helpers.mjs";
|
|
5
|
-
import {
|
|
6
|
-
import { VCol as te } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VCol.mjs";
|
|
5
|
+
import { VCol as ee } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VCol.mjs";
|
|
7
6
|
import { VListItem as S } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListItem.mjs";
|
|
8
7
|
import { VIcon as E } from "../bt-core/core/node_modules/vuetify/lib/components/VIcon/VIcon.mjs";
|
|
9
8
|
import { VMenu as H } from "../bt-core/core/node_modules/vuetify/lib/components/VMenu/VMenu.mjs";
|
|
10
9
|
import { VBtn as A } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
|
|
11
10
|
import { VList as I } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VList.mjs";
|
|
12
|
-
import { VSlideYTransition as
|
|
13
|
-
import { VTextField as
|
|
11
|
+
import { VSlideYTransition as te, VSlideXTransition as le } from "../bt-core/core/node_modules/vuetify/lib/components/transitions/index.mjs";
|
|
12
|
+
import { VTextField as ne } from "../bt-core/core/node_modules/vuetify/lib/components/VTextField/VTextField.mjs";
|
|
13
|
+
import { VVirtualScroll as oe } from "../bt-core/core/node_modules/vuetify/lib/components/VVirtualScroll/VVirtualScroll.mjs";
|
|
14
14
|
import { VListItemTitle as T } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListItemTitle.mjs";
|
|
15
15
|
import { VListItemSubtitle as w } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListItemSubtitle.mjs";
|
|
16
16
|
import { VDivider as ie } from "../bt-core/core/node_modules/vuetify/lib/components/VDivider/VDivider.mjs";
|
|
@@ -156,7 +156,7 @@ const re = { class: "d-flex align-center" }, ue = { class: "d-flex align-center"
|
|
|
156
156
|
const e = n.itemValue ?? "id";
|
|
157
157
|
return n.modelValue != null && d.asyncItems.value != null ? d.asyncItems.value.find((l) => l[e] == n.modelValue) : null;
|
|
158
158
|
}), F = C("isMobile", () => V(!1), !0), q = m(() => n.isMobile ?? F.value ? !1 : n.lg), Q = m(() => n.isMobile ?? F.value ? !1 : n.md), X = m(() => n.isMobile ?? F.value ? !1 : n.sm);
|
|
159
|
-
return (e, l) => (a(), s(t(
|
|
159
|
+
return (e, l) => (a(), s(t(ee), {
|
|
160
160
|
class: J(e.colClass),
|
|
161
161
|
lg: q.value,
|
|
162
162
|
md: Q.value,
|
|
@@ -206,12 +206,12 @@ const re = { class: "d-flex align-center" }, ue = { class: "d-flex align-center"
|
|
|
206
206
|
]),
|
|
207
207
|
_: 3
|
|
208
208
|
}, 8, ["density", "subtitle"])) : p("", !0),
|
|
209
|
-
r(t(
|
|
209
|
+
r(t(te), {
|
|
210
210
|
"hide-on-leave": "",
|
|
211
211
|
group: ""
|
|
212
212
|
}, {
|
|
213
213
|
default: i(() => [
|
|
214
|
-
(e.alwaysOpen || y.value) && t(_)(e.searchProps) ? (a(), s(t(
|
|
214
|
+
(e.alwaysOpen || y.value) && t(_)(e.searchProps) ? (a(), s(t(ne), {
|
|
215
215
|
"onClick:prependInner": l[2] || (l[2] = (o) => t(d).searchString.value = void 0),
|
|
216
216
|
"hide-details": "",
|
|
217
217
|
key: "1",
|
|
@@ -231,7 +231,7 @@ const re = { class: "d-flex align-center" }, ue = { class: "d-flex align-center"
|
|
|
231
231
|
]),
|
|
232
232
|
_: 1
|
|
233
233
|
}, 8, ["prepend-inner-icon", "modelValue"])) : p("", !0),
|
|
234
|
-
(e.alwaysOpen || y.value) && e.useVirtualScroller ? (a(), s(t(
|
|
234
|
+
(e.alwaysOpen || y.value) && e.useVirtualScroller ? (a(), s(t(oe), {
|
|
235
235
|
height: e.height,
|
|
236
236
|
"item-height": "50",
|
|
237
237
|
items: t(d).filteredItems.value,
|
|
@@ -286,7 +286,7 @@ const re = { class: "d-flex align-center" }, ue = { class: "d-flex align-center"
|
|
|
286
286
|
onClick: l[4] || (l[4] = (o) => v(null)),
|
|
287
287
|
subtitle: "(Select None)"
|
|
288
288
|
}, null, 8, ["density"])) : p("", !0),
|
|
289
|
-
r(t(
|
|
289
|
+
r(t(le), {
|
|
290
290
|
group: "",
|
|
291
291
|
"hide-on-leave": ""
|
|
292
292
|
}, {
|