bt-core-app 2.2.12 → 2.2.14
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-Background-Task.vue.d.ts +1 -1
- package/dist/components/BT-Banner.vue.d.ts +35 -0
- package/dist/components/BT-Banner.vue.mjs +115 -0
- package/dist/components/BT-Banner.vue2.mjs +4 -0
- package/dist/components/BT-Blade-Item.vue.d.ts +2 -2
- package/dist/components/BT-Blade-Items.vue.d.ts +5 -5
- package/dist/components/BT-Blade-Steps.vue.d.ts +5 -5
- package/dist/components/BT-Blade.vue.d.ts +2 -2
- package/dist/components/BT-Btn.vue.d.ts +1 -1
- package/dist/components/BT-Col.vue.d.ts +2 -2
- package/dist/components/BT-Cron.vue.mjs +19 -18
- package/dist/components/BT-Field-Checkbox.vue.d.ts +3 -3
- package/dist/components/BT-Field-Date.vue.d.ts +3 -3
- package/dist/components/BT-Field-Entity.vue.d.ts +2 -2
- package/dist/components/BT-Field-Select-Simple.vue.d.ts +3 -3
- package/dist/components/BT-Field-Select.vue.d.ts +3 -3
- package/dist/components/BT-Field-String.vue.d.ts +3 -3
- package/dist/components/BT-Field-Switch.vue.d.ts +3 -3
- package/dist/components/BT-Field-Tags.vue.d.ts +3 -3
- package/dist/components/BT-Field-Textarea.vue.d.ts +3 -3
- package/dist/components/BT-Field-Trigger.vue.d.ts +3 -3
- package/dist/components/BT-Field.vue.d.ts +2 -2
- package/dist/components/BT-Form-Field.vue.d.ts +2 -2
- package/dist/components/BT-Form.vue.mjs +2 -2
- package/dist/components/BT-Numpad.vue.d.ts +2 -2
- package/dist/components/BT-Select-Inline.vue.d.ts +7 -20
- 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.d.ts +5 -5
- package/dist/components/BT-Select-List-Box.vue.mjs +9 -9
- package/dist/components/BT-Select-Simple.vue.d.ts +1 -1
- package/dist/components/BT-Select.vue.d.ts +1 -1
- package/dist/components/BT-Signature-Overlay.vue.d.ts +1 -1
- package/dist/components/BT-Square-Check.vue.d.ts +1 -1
- package/dist/composables/banners.d.ts +40 -0
- package/dist/composables/banners.mjs +43 -0
- package/dist/composables/blade.mjs +7 -7
- package/dist/composables/forms.mjs +17 -18
- package/dist/composables/graph-pro.mjs +14 -15
- package/dist/composables/list.mjs +9 -10
- package/dist/core2.mjs +63 -62
- package/dist/index.d.ts +4 -1
- package/dist/index.mjs +261 -257
- package/dist/node_modules/bt-core-app/dist/bt-core-app.mjs +1617 -1638
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -25,8 +25,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
25
25
|
minWidth: string;
|
|
26
26
|
text: string;
|
|
27
27
|
}>>> & Readonly<{}>, {
|
|
28
|
-
minWidth: string;
|
|
29
28
|
text: string;
|
|
29
|
+
minWidth: string;
|
|
30
30
|
btnClass: string;
|
|
31
31
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
32
32
|
default?(_: {
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { UseBannersOptions } from '../composables/banners.ts';
|
|
2
|
+
|
|
3
|
+
interface BannerOptions extends UseBannersOptions {
|
|
4
|
+
name: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<BannerOptions>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<BannerOptions>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Partial<Record<string, (_: {
|
|
8
|
+
data: {
|
|
9
|
+
doShow: boolean;
|
|
10
|
+
isComplete: boolean;
|
|
11
|
+
bannerName: string;
|
|
12
|
+
canIgnore?: boolean | undefined;
|
|
13
|
+
noText?: string | undefined;
|
|
14
|
+
onRespond?: ((confirm?: boolean | undefined) => Promise<void>) | undefined;
|
|
15
|
+
subtitle?: string | undefined;
|
|
16
|
+
text?: string | undefined;
|
|
17
|
+
title?: string | undefined;
|
|
18
|
+
yesText?: string | undefined;
|
|
19
|
+
};
|
|
20
|
+
}) => any>>>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
24
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
+
} : {
|
|
27
|
+
type: import('vue').PropType<T[K]>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { defineComponent as V, resolveComponent as $, unref as e, openBlock as l, createBlock as a, withCtx as n, createVNode as r, isRef as w, createElementBlock as T, Fragment as I, renderList as N, renderSlot as S, createSlots as _, withModifiers as s, createCommentVNode as u } from "vue";
|
|
2
|
+
import { useBanners as A } from "../composables/banners.mjs";
|
|
3
|
+
import { VCard as v } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
|
|
4
|
+
import { VWindow as F } from "../bt-core/core/node_modules/vuetify/lib/components/VWindow/VWindow.mjs";
|
|
5
|
+
import { VWindowItem as L } from "../bt-core/core/node_modules/vuetify/lib/components/VWindow/VWindowItem.mjs";
|
|
6
|
+
import { VBtn as p } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
|
|
7
|
+
import { VCardActions as W } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCardActions.mjs";
|
|
8
|
+
const q = /* @__PURE__ */ V({
|
|
9
|
+
__name: "BT-Banner",
|
|
10
|
+
props: {
|
|
11
|
+
name: {},
|
|
12
|
+
title: {},
|
|
13
|
+
getBanners: { type: Function },
|
|
14
|
+
banners: {}
|
|
15
|
+
},
|
|
16
|
+
setup(x) {
|
|
17
|
+
const d = x, {
|
|
18
|
+
currentBannerInd: i,
|
|
19
|
+
displayBanners: y,
|
|
20
|
+
isLoading: k,
|
|
21
|
+
nextStage: m,
|
|
22
|
+
previousStage: g
|
|
23
|
+
} = A(d.name, d);
|
|
24
|
+
return (c, o) => {
|
|
25
|
+
const C = $("v-spacer");
|
|
26
|
+
return e(i) >= 0 ? (l(), a(e(v), {
|
|
27
|
+
key: 0,
|
|
28
|
+
color: "primary",
|
|
29
|
+
loading: e(k),
|
|
30
|
+
tile: "",
|
|
31
|
+
title: c.title
|
|
32
|
+
}, {
|
|
33
|
+
default: n(() => [
|
|
34
|
+
r(e(F), {
|
|
35
|
+
modelValue: e(i),
|
|
36
|
+
"onUpdate:modelValue": o[3] || (o[3] = (t) => w(i) ? i.value = t : null),
|
|
37
|
+
class: "transparent",
|
|
38
|
+
style: { width: "100%" },
|
|
39
|
+
touchless: ""
|
|
40
|
+
}, {
|
|
41
|
+
default: n(() => [
|
|
42
|
+
(l(!0), T(I, null, N(e(y), (t, B) => (l(), a(e(L), {
|
|
43
|
+
key: `${B}-${t.bannerName}`
|
|
44
|
+
}, {
|
|
45
|
+
default: n(() => [
|
|
46
|
+
S(c.$slots, t.bannerName, { data: t }, () => [
|
|
47
|
+
r(e(v), {
|
|
48
|
+
class: "ma-2",
|
|
49
|
+
text: t.text,
|
|
50
|
+
subtitle: t.subtitle,
|
|
51
|
+
title: t.title,
|
|
52
|
+
variant: "outlined"
|
|
53
|
+
}, _({
|
|
54
|
+
prepend: n(() => [
|
|
55
|
+
r(e(p), {
|
|
56
|
+
icon: "$chevron-left",
|
|
57
|
+
onClick: s(e(g), ["stop"]),
|
|
58
|
+
variant: "text"
|
|
59
|
+
}, null, 8, ["onClick"])
|
|
60
|
+
]),
|
|
61
|
+
default: n(() => [
|
|
62
|
+
r(e(W), null, {
|
|
63
|
+
default: n(() => [
|
|
64
|
+
t.noText != null ? (l(), a(e(p), {
|
|
65
|
+
key: 0,
|
|
66
|
+
onClick: o[1] || (o[1] = s((f) => e(m)({ respond: !1 }), ["stop"])),
|
|
67
|
+
color: "primary",
|
|
68
|
+
text: t.noText,
|
|
69
|
+
variant: "elevated"
|
|
70
|
+
}, null, 8, ["text"])) : u("", !0),
|
|
71
|
+
r(C),
|
|
72
|
+
t.yesText != null ? (l(), a(e(p), {
|
|
73
|
+
key: 1,
|
|
74
|
+
onClick: o[2] || (o[2] = s((f) => e(m)({ respond: !0 }), ["stop"])),
|
|
75
|
+
color: "primary",
|
|
76
|
+
text: t.yesText,
|
|
77
|
+
variant: "elevated"
|
|
78
|
+
}, null, 8, ["text"])) : u("", !0)
|
|
79
|
+
]),
|
|
80
|
+
_: 2
|
|
81
|
+
}, 1024)
|
|
82
|
+
]),
|
|
83
|
+
_: 2
|
|
84
|
+
}, [
|
|
85
|
+
t.canIgnore ? {
|
|
86
|
+
name: "append",
|
|
87
|
+
fn: n(() => [
|
|
88
|
+
r(e(p), {
|
|
89
|
+
"append-icon": "$chevron-right",
|
|
90
|
+
onClick: o[0] || (o[0] = s((f) => e(m)({ neverAgain: !0 }), ["stop"])),
|
|
91
|
+
color: "primary",
|
|
92
|
+
size: "small",
|
|
93
|
+
text: "Ignore",
|
|
94
|
+
variant: "elevated"
|
|
95
|
+
})
|
|
96
|
+
]),
|
|
97
|
+
key: "0"
|
|
98
|
+
} : void 0
|
|
99
|
+
]), 1032, ["text", "subtitle", "title"])
|
|
100
|
+
])
|
|
101
|
+
]),
|
|
102
|
+
_: 2
|
|
103
|
+
}, 1024))), 128))
|
|
104
|
+
]),
|
|
105
|
+
_: 3
|
|
106
|
+
}, 8, ["modelValue"])
|
|
107
|
+
]),
|
|
108
|
+
_: 3
|
|
109
|
+
}, 8, ["loading", "title"])) : u("", !0);
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
export {
|
|
114
|
+
q as default
|
|
115
|
+
};
|
|
@@ -67,10 +67,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
67
67
|
}>, {
|
|
68
68
|
flat: boolean;
|
|
69
69
|
eager: boolean;
|
|
70
|
+
variant: import("../composables/blade.ts").BladeVariant;
|
|
71
|
+
density: BladeDensity;
|
|
70
72
|
useBladeSrc: boolean;
|
|
71
73
|
useRouteSrc: boolean;
|
|
72
|
-
density: BladeDensity;
|
|
73
|
-
variant: import("../composables/blade.ts").BladeVariant;
|
|
74
74
|
alwaysClose: boolean;
|
|
75
75
|
canDelete: boolean;
|
|
76
76
|
canEdit: boolean;
|
|
@@ -116,22 +116,22 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
116
116
|
onInput?: ((item: any) => any) | undefined;
|
|
117
117
|
onSelect?: ((item: any) => any) | undefined;
|
|
118
118
|
onChange?: ((item: any) => any) | undefined;
|
|
119
|
+
onConfirm?: ((item: any) => any) | undefined;
|
|
119
120
|
onDeleted?: ((item: any) => any) | undefined;
|
|
120
121
|
onFetched?: ((item: any) => any) | undefined;
|
|
121
|
-
onConfirm?: ((item: any) => any) | undefined;
|
|
122
122
|
"onMouse-over-item"?: ((item: any) => any) | undefined;
|
|
123
123
|
"onUpdate:selected"?: ((value: any) => any) | undefined;
|
|
124
124
|
}>, {
|
|
125
125
|
size: string | number;
|
|
126
126
|
eager: boolean;
|
|
127
|
-
useBladeSrc: boolean;
|
|
128
|
-
useRouteSrc: boolean;
|
|
129
|
-
density: BladeDensity;
|
|
130
127
|
variant: import("../composables/blade.ts").BladeVariant;
|
|
128
|
+
density: BladeDensity;
|
|
131
129
|
ripple: boolean;
|
|
130
|
+
activeClass: string;
|
|
131
|
+
useBladeSrc: boolean;
|
|
132
|
+
useRouteSrc: boolean;
|
|
132
133
|
canDelete: boolean;
|
|
133
134
|
heightStrat: "fixed" | "upto";
|
|
134
|
-
activeClass: string;
|
|
135
135
|
hideSubtoolbar: boolean;
|
|
136
136
|
actionButtonSize: string;
|
|
137
137
|
canAdd: boolean;
|
|
@@ -132,25 +132,25 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
132
132
|
onInput?: ((item: any) => any) | undefined;
|
|
133
133
|
onSelect?: ((item: any) => any) | undefined;
|
|
134
134
|
onChange?: ((item: any) => any) | undefined;
|
|
135
|
+
onConfirm?: ((item: any) => any) | undefined;
|
|
135
136
|
onDeleted?: ((item: any) => any) | undefined;
|
|
136
137
|
onFetched?: ((item: any) => any) | undefined;
|
|
137
|
-
onConfirm?: ((item: any) => any) | undefined;
|
|
138
138
|
"onMouse-over-item"?: ((item: any) => any) | undefined;
|
|
139
139
|
onSaved?: ((item: any, isNew?: boolean | undefined) => any) | undefined;
|
|
140
140
|
}>, {
|
|
141
141
|
size: string | number;
|
|
142
142
|
eager: boolean;
|
|
143
|
-
useBladeSrc: boolean;
|
|
144
|
-
useRouteSrc: boolean;
|
|
145
|
-
density: BladeDensity;
|
|
146
143
|
variant: import("../composables/blade.ts").BladeVariant;
|
|
144
|
+
density: BladeDensity;
|
|
147
145
|
ripple: boolean;
|
|
146
|
+
activeClass: string;
|
|
147
|
+
useBladeSrc: boolean;
|
|
148
|
+
useRouteSrc: boolean;
|
|
148
149
|
canDelete: boolean;
|
|
149
150
|
heightStrat: "fixed" | "upto";
|
|
150
151
|
canSave: boolean;
|
|
151
152
|
startEditing: boolean;
|
|
152
153
|
trackChanges: boolean;
|
|
153
|
-
activeClass: string;
|
|
154
154
|
actionButtonSize: string;
|
|
155
155
|
canAdd: boolean;
|
|
156
156
|
canSearch: boolean;
|
|
@@ -62,10 +62,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
62
62
|
flat: boolean;
|
|
63
63
|
size: string | number;
|
|
64
64
|
width: string | number;
|
|
65
|
-
bladeStartShowing: boolean;
|
|
66
|
-
density: BladeDensity;
|
|
67
65
|
variant: BladeVariant;
|
|
66
|
+
bladeStartShowing: boolean;
|
|
68
67
|
minHeight: string;
|
|
68
|
+
density: BladeDensity;
|
|
69
69
|
showOnlyTitleLeft: boolean;
|
|
70
70
|
hideToolbarSettings: boolean;
|
|
71
71
|
noMargins: boolean;
|
|
@@ -24,7 +24,7 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
24
24
|
}>, {
|
|
25
25
|
size: string;
|
|
26
26
|
icon: string;
|
|
27
|
-
variant: "flat" | "
|
|
27
|
+
variant: "flat" | "text" | "outlined" | "plain" | "elevated" | "tonal";
|
|
28
28
|
isEditing: boolean;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
30
30
|
export default _default;
|
|
@@ -18,9 +18,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
18
18
|
sm: string;
|
|
19
19
|
}>>> & Readonly<{}>, {
|
|
20
20
|
sm: string | boolean;
|
|
21
|
-
cols: string | boolean;
|
|
22
|
-
lg: string | boolean;
|
|
23
21
|
md: string | boolean;
|
|
22
|
+
lg: string | boolean;
|
|
23
|
+
cols: string | boolean;
|
|
24
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
25
25
|
default?(_: {}): any;
|
|
26
26
|
}>;
|
|
@@ -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
|
};
|
|
@@ -31,11 +31,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
31
31
|
}>>> & Readonly<{
|
|
32
32
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
|
-
isEditing: boolean;
|
|
35
34
|
sm: string | boolean;
|
|
36
|
-
cols: string | boolean;
|
|
37
|
-
lg: string | boolean;
|
|
38
35
|
md: string | boolean;
|
|
36
|
+
lg: string | boolean;
|
|
37
|
+
cols: string | boolean;
|
|
38
|
+
isEditing: boolean;
|
|
39
39
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
40
40
|
export default _default;
|
|
41
41
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -41,11 +41,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
41
41
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
42
42
|
}>, {
|
|
43
43
|
format: string;
|
|
44
|
-
isEditing: boolean;
|
|
45
44
|
sm: string | boolean;
|
|
46
|
-
cols: string | boolean;
|
|
47
|
-
lg: string | boolean;
|
|
48
45
|
md: string | boolean;
|
|
46
|
+
lg: string | boolean;
|
|
47
|
+
cols: string | boolean;
|
|
48
|
+
isEditing: boolean;
|
|
49
49
|
fromNow: boolean;
|
|
50
50
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
51
51
|
export default _default;
|
|
@@ -24,9 +24,9 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
24
24
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
sm: string | boolean;
|
|
27
|
-
cols: string | boolean;
|
|
28
|
-
lg: string | boolean;
|
|
29
27
|
md: string | boolean;
|
|
28
|
+
lg: string | boolean;
|
|
29
|
+
cols: string | boolean;
|
|
30
30
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
31
|
export default _default;
|
|
32
32
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -29,11 +29,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
29
29
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
30
30
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
|
-
isEditing: boolean;
|
|
33
32
|
sm: string | boolean;
|
|
34
|
-
cols: string | boolean;
|
|
35
|
-
lg: string | boolean;
|
|
36
33
|
md: string | boolean;
|
|
34
|
+
lg: string | boolean;
|
|
35
|
+
cols: string | boolean;
|
|
36
|
+
isEditing: boolean;
|
|
37
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
38
38
|
export default _default;
|
|
39
39
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -29,11 +29,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
29
29
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
30
30
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
|
-
isEditing: boolean;
|
|
33
32
|
sm: string | boolean;
|
|
34
|
-
cols: string | boolean;
|
|
35
|
-
lg: string | boolean;
|
|
36
33
|
md: string | boolean;
|
|
34
|
+
lg: string | boolean;
|
|
35
|
+
cols: string | boolean;
|
|
36
|
+
isEditing: boolean;
|
|
37
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
38
38
|
item?(_: {
|
|
39
39
|
item: import('vuetify/lib/composables/list-items.mjs').ListItem<any>;
|
|
@@ -31,11 +31,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
31
31
|
}>>> & Readonly<{
|
|
32
32
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
|
-
isEditing: boolean;
|
|
35
34
|
sm: string | boolean;
|
|
36
|
-
cols: string | boolean;
|
|
37
|
-
lg: string | boolean;
|
|
38
35
|
md: string | boolean;
|
|
36
|
+
lg: string | boolean;
|
|
37
|
+
cols: string | boolean;
|
|
38
|
+
isEditing: boolean;
|
|
39
39
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
40
40
|
export default _default;
|
|
41
41
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -25,11 +25,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
25
25
|
}>>> & Readonly<{
|
|
26
26
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
|
-
isEditing: boolean;
|
|
29
28
|
sm: string | boolean;
|
|
30
|
-
cols: string | boolean;
|
|
31
|
-
lg: string | boolean;
|
|
32
29
|
md: string | boolean;
|
|
30
|
+
lg: string | boolean;
|
|
31
|
+
cols: string | boolean;
|
|
32
|
+
isEditing: boolean;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
34
|
export default _default;
|
|
35
35
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -27,11 +27,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
27
27
|
}>>> & Readonly<{
|
|
28
28
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
|
-
isEditing: boolean;
|
|
31
30
|
sm: string | boolean;
|
|
32
|
-
cols: string | boolean;
|
|
33
|
-
lg: string | boolean;
|
|
34
31
|
md: string | boolean;
|
|
32
|
+
lg: string | boolean;
|
|
33
|
+
cols: string | boolean;
|
|
34
|
+
isEditing: boolean;
|
|
35
35
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
36
36
|
export default _default;
|
|
37
37
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -27,11 +27,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
27
27
|
}>>> & Readonly<{
|
|
28
28
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
|
-
isEditing: boolean;
|
|
31
30
|
sm: string | boolean;
|
|
32
|
-
cols: string | boolean;
|
|
33
|
-
lg: string | boolean;
|
|
34
31
|
md: string | boolean;
|
|
32
|
+
lg: string | boolean;
|
|
33
|
+
cols: string | boolean;
|
|
34
|
+
isEditing: boolean;
|
|
35
35
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
36
36
|
export default _default;
|
|
37
37
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -76,11 +76,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
76
76
|
"onUpdate:guide"?: ((...args: any[]) => any) | undefined;
|
|
77
77
|
"onUpdate:trigger"?: ((...args: any[]) => any) | undefined;
|
|
78
78
|
}>, {
|
|
79
|
-
isEditing: boolean;
|
|
80
79
|
sm: string | boolean;
|
|
81
|
-
cols: string | boolean;
|
|
82
|
-
lg: string | boolean;
|
|
83
80
|
md: string | boolean;
|
|
81
|
+
lg: string | boolean;
|
|
82
|
+
cols: string | boolean;
|
|
83
|
+
isEditing: boolean;
|
|
84
84
|
displayStrategy: "both" | "responsive" | "icons" | "words";
|
|
85
85
|
useAutomation: boolean;
|
|
86
86
|
useAutomationDaily: boolean;
|
|
@@ -25,9 +25,9 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
25
25
|
sm: string;
|
|
26
26
|
}>>> & Readonly<{}>, {
|
|
27
27
|
sm: string | boolean;
|
|
28
|
-
cols: string | boolean;
|
|
29
|
-
lg: string | boolean;
|
|
30
28
|
md: string | boolean;
|
|
29
|
+
lg: string | boolean;
|
|
30
|
+
cols: string | boolean;
|
|
31
31
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
32
32
|
export default _default;
|
|
33
33
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -9,8 +9,8 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
9
9
|
isSelected?: boolean | undefined;
|
|
10
10
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
11
|
select: (...args: any[]) => void;
|
|
12
|
-
onSubmit: (...args: any[]) => void;
|
|
13
12
|
"update:modelValue": (...args: any[]) => void;
|
|
13
|
+
onSubmit: (...args: any[]) => void;
|
|
14
14
|
moveup: (...args: any[]) => void;
|
|
15
15
|
movedown: (...args: any[]) => void;
|
|
16
16
|
duplicate: (...args: any[]) => void;
|
|
@@ -23,8 +23,8 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
|
|
|
23
23
|
isSelected?: boolean | undefined;
|
|
24
24
|
}>>> & Readonly<{
|
|
25
25
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
26
|
-
onOnSubmit?: ((...args: any[]) => any) | undefined;
|
|
27
26
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
onOnSubmit?: ((...args: any[]) => any) | undefined;
|
|
28
28
|
onMoveup?: ((...args: any[]) => any) | undefined;
|
|
29
29
|
onMovedown?: ((...args: any[]) => any) | undefined;
|
|
30
30
|
onDuplicate?: ((...args: any[]) => any) | undefined;
|
|
@@ -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)
|
|
@@ -34,10 +34,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
34
34
|
"onUpdate:currentValue"?: ((...args: any[]) => any) | undefined;
|
|
35
35
|
}>, {
|
|
36
36
|
buttonHeight: string;
|
|
37
|
-
showAddRemove: boolean;
|
|
38
37
|
showDecimal: boolean;
|
|
39
|
-
showOk: boolean;
|
|
40
38
|
showNegative: boolean;
|
|
39
|
+
showAddRemove: boolean;
|
|
40
|
+
showOk: boolean;
|
|
41
41
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
42
42
|
display?(_: {
|
|
43
43
|
value: string;
|