@anzusystems/common-admin 1.47.0-beta.335 → 1.47.0-beta.336
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/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-DersLykS.mjs +6713 -0
- package/dist/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-DersLykS.mjs.map +1 -0
- package/dist/common-admin.css +1 -1
- package/dist/common-admin.d.ts +240 -46
- package/dist/common-admin.js +2 -2
- package/dist/labs.js +2 -2
- package/package.json +7 -7
- package/dist/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-Dnemaxpx.mjs +0 -6601
- package/dist/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-Dnemaxpx.mjs.map +0 -1
package/dist/common-admin.d.ts
CHANGED
|
@@ -202,8 +202,9 @@ hideDetails: boolean;
|
|
|
202
202
|
clearable: boolean;
|
|
203
203
|
defaultValue: string | null;
|
|
204
204
|
hideSetToNow: boolean;
|
|
205
|
+
lastMinuteMoment: boolean;
|
|
205
206
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
206
|
-
|
|
207
|
+
inputInstance: CreateComponentPublicInstanceWithMixins< {
|
|
207
208
|
style: string | false | StyleValue[] | CSSProperties | null;
|
|
208
209
|
focused: boolean;
|
|
209
210
|
errorMessages: string | readonly string[] | null;
|
|
@@ -287,11 +288,15 @@ label: string | undefined;
|
|
|
287
288
|
props: Record<string, any>;
|
|
288
289
|
}) => VNodeChild) | undefined;
|
|
289
290
|
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
290
|
-
default?: ((
|
|
291
|
+
default?: ((arg: {
|
|
292
|
+
id: Readonly<Ref<string, string>>;
|
|
293
|
+
}) => VNodeChild) | undefined;
|
|
291
294
|
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
292
295
|
} | {
|
|
293
296
|
$stable?: boolean | undefined;
|
|
294
|
-
} | ((
|
|
297
|
+
} | ((arg: {
|
|
298
|
+
id: Readonly<Ref<string, string>>;
|
|
299
|
+
}) => VNodeChild) | VNodeChild;
|
|
295
300
|
"v-slots"?: {
|
|
296
301
|
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
297
302
|
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
@@ -307,7 +312,9 @@ label: string | undefined;
|
|
|
307
312
|
props: Record<string, any>;
|
|
308
313
|
}) => VNodeChild) | undefined;
|
|
309
314
|
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
310
|
-
default?: false | ((
|
|
315
|
+
default?: false | ((arg: {
|
|
316
|
+
id: Readonly<Ref<string, string>>;
|
|
317
|
+
}) => VNodeChild) | undefined;
|
|
311
318
|
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
312
319
|
} | undefined;
|
|
313
320
|
} & {
|
|
@@ -317,7 +324,9 @@ counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
|
317
324
|
props: Record<string, any>;
|
|
318
325
|
}) => VNodeChild) | undefined;
|
|
319
326
|
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
320
|
-
"v-slot:default"?: false | ((
|
|
327
|
+
"v-slot:default"?: false | ((arg: {
|
|
328
|
+
id: Readonly<Ref<string, string>>;
|
|
329
|
+
}) => VNodeChild) | undefined;
|
|
321
330
|
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
322
331
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
323
332
|
label: string | undefined;
|
|
@@ -631,6 +640,7 @@ variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-invert
|
|
|
631
640
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
632
641
|
id?: string | undefined;
|
|
633
642
|
details: boolean;
|
|
643
|
+
labelId?: string | undefined;
|
|
634
644
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
635
645
|
$attrs: {
|
|
636
646
|
[x: string]: unknown;
|
|
@@ -703,6 +713,7 @@ prependInnerIcon?: IconValue | undefined;
|
|
|
703
713
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
704
714
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
705
715
|
id?: string | undefined;
|
|
716
|
+
labelId?: string | undefined;
|
|
706
717
|
} & {
|
|
707
718
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
708
719
|
}, {
|
|
@@ -828,6 +839,7 @@ prependInnerIcon?: IconValue | undefined;
|
|
|
828
839
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
829
840
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
830
841
|
id?: string | undefined;
|
|
842
|
+
labelId?: string | undefined;
|
|
831
843
|
} & {
|
|
832
844
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
833
845
|
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine"> & ShallowUnwrapRef< {
|
|
@@ -836,7 +848,7 @@ fieldIconColor: ComputedRef<string | undefined>;
|
|
|
836
848
|
}> & ComponentCustomProperties & GenericProps< {
|
|
837
849
|
modelValue?: unknown;
|
|
838
850
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
839
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
851
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
840
852
|
_allExposed: {
|
|
841
853
|
reset: () => Promise<void>;
|
|
842
854
|
resetValidation: () => Promise<void>;
|
|
@@ -916,7 +928,9 @@ props: Record<string, any>;
|
|
|
916
928
|
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
917
929
|
[key: string]: any;
|
|
918
930
|
}>[];
|
|
919
|
-
default: (
|
|
931
|
+
default: (arg: {
|
|
932
|
+
id: Readonly<Ref<string, string>>;
|
|
933
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
920
934
|
[key: string]: any;
|
|
921
935
|
}>[];
|
|
922
936
|
counter: (arg: VCounterSlot) => VNode<RendererNode, RendererElement, {
|
|
@@ -1013,11 +1027,15 @@ label: string | undefined;
|
|
|
1013
1027
|
props: Record<string, any>;
|
|
1014
1028
|
}) => VNodeChild) | undefined;
|
|
1015
1029
|
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
1016
|
-
default?: ((
|
|
1030
|
+
default?: ((arg: {
|
|
1031
|
+
id: Readonly<Ref<string, string>>;
|
|
1032
|
+
}) => VNodeChild) | undefined;
|
|
1017
1033
|
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
1018
1034
|
} | {
|
|
1019
1035
|
$stable?: boolean | undefined;
|
|
1020
|
-
} | ((
|
|
1036
|
+
} | ((arg: {
|
|
1037
|
+
id: Readonly<Ref<string, string>>;
|
|
1038
|
+
}) => VNodeChild) | VNodeChild;
|
|
1021
1039
|
"v-slots"?: {
|
|
1022
1040
|
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
1023
1041
|
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
@@ -1033,7 +1051,9 @@ label: string | undefined;
|
|
|
1033
1051
|
props: Record<string, any>;
|
|
1034
1052
|
}) => VNodeChild) | undefined;
|
|
1035
1053
|
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
1036
|
-
default?: false | ((
|
|
1054
|
+
default?: false | ((arg: {
|
|
1055
|
+
id: Readonly<Ref<string, string>>;
|
|
1056
|
+
}) => VNodeChild) | undefined;
|
|
1037
1057
|
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
1038
1058
|
} | undefined;
|
|
1039
1059
|
} & {
|
|
@@ -1043,7 +1063,9 @@ counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
|
1043
1063
|
props: Record<string, any>;
|
|
1044
1064
|
}) => VNodeChild) | undefined;
|
|
1045
1065
|
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
1046
|
-
"v-slot:default"?: false | ((
|
|
1066
|
+
"v-slot:default"?: false | ((arg: {
|
|
1067
|
+
id: Readonly<Ref<string, string>>;
|
|
1068
|
+
}) => VNodeChild) | undefined;
|
|
1047
1069
|
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
1048
1070
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
1049
1071
|
label: string | undefined;
|
|
@@ -1357,6 +1379,7 @@ variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-invert
|
|
|
1357
1379
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1358
1380
|
id?: string | undefined;
|
|
1359
1381
|
details: boolean;
|
|
1382
|
+
labelId?: string | undefined;
|
|
1360
1383
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
1361
1384
|
$attrs: {
|
|
1362
1385
|
[x: string]: unknown;
|
|
@@ -1429,6 +1452,7 @@ prependInnerIcon?: IconValue | undefined;
|
|
|
1429
1452
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1430
1453
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1431
1454
|
id?: string | undefined;
|
|
1455
|
+
labelId?: string | undefined;
|
|
1432
1456
|
} & {
|
|
1433
1457
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1434
1458
|
}, {
|
|
@@ -1554,6 +1578,7 @@ prependInnerIcon?: IconValue | undefined;
|
|
|
1554
1578
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1555
1579
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1556
1580
|
id?: string | undefined;
|
|
1581
|
+
labelId?: string | undefined;
|
|
1557
1582
|
} & {
|
|
1558
1583
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1559
1584
|
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine"> & ShallowUnwrapRef< {
|
|
@@ -1562,7 +1587,7 @@ fieldIconColor: ComputedRef<string | undefined>;
|
|
|
1562
1587
|
}> & ComponentCustomProperties & GenericProps< {
|
|
1563
1588
|
modelValue?: unknown;
|
|
1564
1589
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
1565
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
1590
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
1566
1591
|
_allExposed: {
|
|
1567
1592
|
reset: () => Promise<void>;
|
|
1568
1593
|
resetValidation: () => Promise<void>;
|
|
@@ -1605,6 +1630,54 @@ persistentPlaceholder: boolean;
|
|
|
1605
1630
|
persistentCounter: boolean;
|
|
1606
1631
|
type: string;
|
|
1607
1632
|
}> | null;
|
|
1633
|
+
timePickerInstance: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1634
|
+
modelValue: null | {
|
|
1635
|
+
hours: number;
|
|
1636
|
+
minutes: number;
|
|
1637
|
+
};
|
|
1638
|
+
}> & Readonly<{
|
|
1639
|
+
"onUpdate:modelValue"?: ((value: {
|
|
1640
|
+
hours: number;
|
|
1641
|
+
minutes: number;
|
|
1642
|
+
} | null) => any) | undefined;
|
|
1643
|
+
onOnEnterKeyup?: (() => any) | undefined;
|
|
1644
|
+
onFocusConfirm?: (() => any) | undefined;
|
|
1645
|
+
}>, {
|
|
1646
|
+
focusHour: () => void;
|
|
1647
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1648
|
+
"update:modelValue": (value: {
|
|
1649
|
+
hours: number;
|
|
1650
|
+
minutes: number;
|
|
1651
|
+
} | null) => any;
|
|
1652
|
+
} & {
|
|
1653
|
+
onEnterKeyup: () => any;
|
|
1654
|
+
focusConfirm: () => any;
|
|
1655
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1656
|
+
hoursRefInput: HTMLInputElement;
|
|
1657
|
+
minutesRefInput: HTMLInputElement;
|
|
1658
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
1659
|
+
P: {};
|
|
1660
|
+
B: {};
|
|
1661
|
+
D: {};
|
|
1662
|
+
C: {};
|
|
1663
|
+
M: {};
|
|
1664
|
+
Defaults: {};
|
|
1665
|
+
}, Readonly<{
|
|
1666
|
+
modelValue: null | {
|
|
1667
|
+
hours: number;
|
|
1668
|
+
minutes: number;
|
|
1669
|
+
};
|
|
1670
|
+
}> & Readonly<{
|
|
1671
|
+
"onUpdate:modelValue"?: ((value: {
|
|
1672
|
+
hours: number;
|
|
1673
|
+
minutes: number;
|
|
1674
|
+
} | null) => any) | undefined;
|
|
1675
|
+
onOnEnterKeyup?: (() => any) | undefined;
|
|
1676
|
+
onFocusConfirm?: (() => any) | undefined;
|
|
1677
|
+
}>, {
|
|
1678
|
+
focusHour: () => void;
|
|
1679
|
+
}, {}, {}, {}, {}> | null;
|
|
1680
|
+
confirmRefButton: HTMLButtonElement;
|
|
1608
1681
|
}, any>;
|
|
1609
1682
|
|
|
1610
1683
|
declare const __VLS_component_14: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -3128,11 +3201,15 @@ label: string | undefined;
|
|
|
3128
3201
|
props: Record<string, any>;
|
|
3129
3202
|
}) => VNodeChild) | undefined;
|
|
3130
3203
|
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
3131
|
-
default?: ((
|
|
3204
|
+
default?: ((arg: {
|
|
3205
|
+
id: Readonly<Ref<string, string>>;
|
|
3206
|
+
}) => VNodeChild) | undefined;
|
|
3132
3207
|
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
3133
3208
|
} | {
|
|
3134
3209
|
$stable?: boolean | undefined;
|
|
3135
|
-
} | ((
|
|
3210
|
+
} | ((arg: {
|
|
3211
|
+
id: Readonly<Ref<string, string>>;
|
|
3212
|
+
}) => VNodeChild) | VNodeChild;
|
|
3136
3213
|
"v-slots"?: {
|
|
3137
3214
|
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
3138
3215
|
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
@@ -3148,7 +3225,9 @@ label: string | undefined;
|
|
|
3148
3225
|
props: Record<string, any>;
|
|
3149
3226
|
}) => VNodeChild) | undefined;
|
|
3150
3227
|
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
3151
|
-
default?: false | ((
|
|
3228
|
+
default?: false | ((arg: {
|
|
3229
|
+
id: Readonly<Ref<string, string>>;
|
|
3230
|
+
}) => VNodeChild) | undefined;
|
|
3152
3231
|
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
3153
3232
|
} | undefined;
|
|
3154
3233
|
} & {
|
|
@@ -3158,7 +3237,9 @@ counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
|
3158
3237
|
props: Record<string, any>;
|
|
3159
3238
|
}) => VNodeChild) | undefined;
|
|
3160
3239
|
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
3161
|
-
"v-slot:default"?: false | ((
|
|
3240
|
+
"v-slot:default"?: false | ((arg: {
|
|
3241
|
+
id: Readonly<Ref<string, string>>;
|
|
3242
|
+
}) => VNodeChild) | undefined;
|
|
3162
3243
|
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
3163
3244
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
3164
3245
|
label: string | undefined;
|
|
@@ -3472,6 +3553,7 @@ variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-invert
|
|
|
3472
3553
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3473
3554
|
id?: string | undefined;
|
|
3474
3555
|
details: boolean;
|
|
3556
|
+
labelId?: string | undefined;
|
|
3475
3557
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
3476
3558
|
$attrs: {
|
|
3477
3559
|
[x: string]: unknown;
|
|
@@ -3544,6 +3626,7 @@ prependInnerIcon?: IconValue | undefined;
|
|
|
3544
3626
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3545
3627
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3546
3628
|
id?: string | undefined;
|
|
3629
|
+
labelId?: string | undefined;
|
|
3547
3630
|
} & {
|
|
3548
3631
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3549
3632
|
}, {
|
|
@@ -3669,6 +3752,7 @@ prependInnerIcon?: IconValue | undefined;
|
|
|
3669
3752
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3670
3753
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3671
3754
|
id?: string | undefined;
|
|
3755
|
+
labelId?: string | undefined;
|
|
3672
3756
|
} & {
|
|
3673
3757
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3674
3758
|
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine"> & ShallowUnwrapRef< {
|
|
@@ -3677,7 +3761,7 @@ fieldIconColor: ComputedRef<string | undefined>;
|
|
|
3677
3761
|
}> & ComponentCustomProperties & GenericProps< {
|
|
3678
3762
|
modelValue?: unknown;
|
|
3679
3763
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
3680
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
3764
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
3681
3765
|
_allExposed: {
|
|
3682
3766
|
reset: () => Promise<void>;
|
|
3683
3767
|
resetValidation: () => Promise<void>;
|
|
@@ -3757,7 +3841,9 @@ props: Record<string, any>;
|
|
|
3757
3841
|
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
3758
3842
|
[key: string]: any;
|
|
3759
3843
|
}>[];
|
|
3760
|
-
default: (
|
|
3844
|
+
default: (arg: {
|
|
3845
|
+
id: Readonly<Ref<string, string>>;
|
|
3846
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
3761
3847
|
[key: string]: any;
|
|
3762
3848
|
}>[];
|
|
3763
3849
|
counter: (arg: VCounterSlot) => VNode<RendererNode, RendererElement, {
|
|
@@ -3854,11 +3940,15 @@ label: string | undefined;
|
|
|
3854
3940
|
props: Record<string, any>;
|
|
3855
3941
|
}) => VNodeChild) | undefined;
|
|
3856
3942
|
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
3857
|
-
default?: ((
|
|
3943
|
+
default?: ((arg: {
|
|
3944
|
+
id: Readonly<Ref<string, string>>;
|
|
3945
|
+
}) => VNodeChild) | undefined;
|
|
3858
3946
|
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
3859
3947
|
} | {
|
|
3860
3948
|
$stable?: boolean | undefined;
|
|
3861
|
-
} | ((
|
|
3949
|
+
} | ((arg: {
|
|
3950
|
+
id: Readonly<Ref<string, string>>;
|
|
3951
|
+
}) => VNodeChild) | VNodeChild;
|
|
3862
3952
|
"v-slots"?: {
|
|
3863
3953
|
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
3864
3954
|
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
@@ -3874,7 +3964,9 @@ label: string | undefined;
|
|
|
3874
3964
|
props: Record<string, any>;
|
|
3875
3965
|
}) => VNodeChild) | undefined;
|
|
3876
3966
|
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
3877
|
-
default?: false | ((
|
|
3967
|
+
default?: false | ((arg: {
|
|
3968
|
+
id: Readonly<Ref<string, string>>;
|
|
3969
|
+
}) => VNodeChild) | undefined;
|
|
3878
3970
|
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
3879
3971
|
} | undefined;
|
|
3880
3972
|
} & {
|
|
@@ -3884,7 +3976,9 @@ counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
|
3884
3976
|
props: Record<string, any>;
|
|
3885
3977
|
}) => VNodeChild) | undefined;
|
|
3886
3978
|
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
3887
|
-
"v-slot:default"?: false | ((
|
|
3979
|
+
"v-slot:default"?: false | ((arg: {
|
|
3980
|
+
id: Readonly<Ref<string, string>>;
|
|
3981
|
+
}) => VNodeChild) | undefined;
|
|
3888
3982
|
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
3889
3983
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
3890
3984
|
label: string | undefined;
|
|
@@ -4198,6 +4292,7 @@ variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-invert
|
|
|
4198
4292
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4199
4293
|
id?: string | undefined;
|
|
4200
4294
|
details: boolean;
|
|
4295
|
+
labelId?: string | undefined;
|
|
4201
4296
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
4202
4297
|
$attrs: {
|
|
4203
4298
|
[x: string]: unknown;
|
|
@@ -4270,6 +4365,7 @@ prependInnerIcon?: IconValue | undefined;
|
|
|
4270
4365
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4271
4366
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4272
4367
|
id?: string | undefined;
|
|
4368
|
+
labelId?: string | undefined;
|
|
4273
4369
|
} & {
|
|
4274
4370
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
4275
4371
|
}, {
|
|
@@ -4395,6 +4491,7 @@ prependInnerIcon?: IconValue | undefined;
|
|
|
4395
4491
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4396
4492
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4397
4493
|
id?: string | undefined;
|
|
4494
|
+
labelId?: string | undefined;
|
|
4398
4495
|
} & {
|
|
4399
4496
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
4400
4497
|
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine"> & ShallowUnwrapRef< {
|
|
@@ -4403,7 +4500,7 @@ fieldIconColor: ComputedRef<string | undefined>;
|
|
|
4403
4500
|
}> & ComponentCustomProperties & GenericProps< {
|
|
4404
4501
|
modelValue?: unknown;
|
|
4405
4502
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
4406
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
4503
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
4407
4504
|
_allExposed: {
|
|
4408
4505
|
reset: () => Promise<void>;
|
|
4409
4506
|
resetValidation: () => Promise<void>;
|
|
@@ -5694,6 +5791,7 @@ declare type __VLS_Props_30 = {
|
|
|
5694
5791
|
dataCy?: string;
|
|
5695
5792
|
defaultValue?: DatetimeUTC | null | undefined;
|
|
5696
5793
|
errorMessages?: string[];
|
|
5794
|
+
lastMinuteMoment?: boolean;
|
|
5697
5795
|
};
|
|
5698
5796
|
|
|
5699
5797
|
declare type __VLS_Props_31 = {
|
|
@@ -6455,7 +6553,7 @@ declare function __VLS_template_13(): {
|
|
|
6455
6553
|
'append-inner'?(_: {}): any;
|
|
6456
6554
|
};
|
|
6457
6555
|
refs: {
|
|
6458
|
-
|
|
6556
|
+
inputInstance: CreateComponentPublicInstanceWithMixins< {
|
|
6459
6557
|
style: string | false | StyleValue[] | CSSProperties | null;
|
|
6460
6558
|
focused: boolean;
|
|
6461
6559
|
errorMessages: string | readonly string[] | null;
|
|
@@ -6539,11 +6637,15 @@ declare function __VLS_template_13(): {
|
|
|
6539
6637
|
props: Record<string, any>;
|
|
6540
6638
|
}) => VNodeChild) | undefined;
|
|
6541
6639
|
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
6542
|
-
default?: ((
|
|
6640
|
+
default?: ((arg: {
|
|
6641
|
+
id: Readonly<Ref<string, string>>;
|
|
6642
|
+
}) => VNodeChild) | undefined;
|
|
6543
6643
|
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6544
6644
|
} | {
|
|
6545
6645
|
$stable?: boolean | undefined;
|
|
6546
|
-
} | ((
|
|
6646
|
+
} | ((arg: {
|
|
6647
|
+
id: Readonly<Ref<string, string>>;
|
|
6648
|
+
}) => VNodeChild) | VNodeChild;
|
|
6547
6649
|
"v-slots"?: {
|
|
6548
6650
|
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6549
6651
|
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
@@ -6559,7 +6661,9 @@ declare function __VLS_template_13(): {
|
|
|
6559
6661
|
props: Record<string, any>;
|
|
6560
6662
|
}) => VNodeChild) | undefined;
|
|
6561
6663
|
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
6562
|
-
default?: false | ((
|
|
6664
|
+
default?: false | ((arg: {
|
|
6665
|
+
id: Readonly<Ref<string, string>>;
|
|
6666
|
+
}) => VNodeChild) | undefined;
|
|
6563
6667
|
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6564
6668
|
} | undefined;
|
|
6565
6669
|
} & {
|
|
@@ -6569,7 +6673,9 @@ declare function __VLS_template_13(): {
|
|
|
6569
6673
|
props: Record<string, any>;
|
|
6570
6674
|
}) => VNodeChild) | undefined;
|
|
6571
6675
|
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6572
|
-
"v-slot:default"?: false | ((
|
|
6676
|
+
"v-slot:default"?: false | ((arg: {
|
|
6677
|
+
id: Readonly<Ref<string, string>>;
|
|
6678
|
+
}) => VNodeChild) | undefined;
|
|
6573
6679
|
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6574
6680
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
6575
6681
|
label: string | undefined;
|
|
@@ -6883,6 +6989,7 @@ declare function __VLS_template_13(): {
|
|
|
6883
6989
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6884
6990
|
id?: string | undefined;
|
|
6885
6991
|
details: boolean;
|
|
6992
|
+
labelId?: string | undefined;
|
|
6886
6993
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
6887
6994
|
$attrs: {
|
|
6888
6995
|
[x: string]: unknown;
|
|
@@ -6955,6 +7062,7 @@ declare function __VLS_template_13(): {
|
|
|
6955
7062
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6956
7063
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6957
7064
|
id?: string | undefined;
|
|
7065
|
+
labelId?: string | undefined;
|
|
6958
7066
|
} & {
|
|
6959
7067
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
6960
7068
|
}, {
|
|
@@ -7080,6 +7188,7 @@ declare function __VLS_template_13(): {
|
|
|
7080
7188
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7081
7189
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7082
7190
|
id?: string | undefined;
|
|
7191
|
+
labelId?: string | undefined;
|
|
7083
7192
|
} & {
|
|
7084
7193
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
7085
7194
|
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine"> & ShallowUnwrapRef< {
|
|
@@ -7088,7 +7197,7 @@ declare function __VLS_template_13(): {
|
|
|
7088
7197
|
}> & ComponentCustomProperties & GenericProps< {
|
|
7089
7198
|
modelValue?: unknown;
|
|
7090
7199
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
7091
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
7200
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
7092
7201
|
_allExposed: {
|
|
7093
7202
|
reset: () => Promise<void>;
|
|
7094
7203
|
resetValidation: () => Promise<void>;
|
|
@@ -7168,7 +7277,9 @@ declare function __VLS_template_13(): {
|
|
|
7168
7277
|
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
7169
7278
|
[key: string]: any;
|
|
7170
7279
|
}>[];
|
|
7171
|
-
default: (
|
|
7280
|
+
default: (arg: {
|
|
7281
|
+
id: Readonly<Ref<string, string>>;
|
|
7282
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
7172
7283
|
[key: string]: any;
|
|
7173
7284
|
}>[];
|
|
7174
7285
|
counter: (arg: VCounterSlot) => VNode<RendererNode, RendererElement, {
|
|
@@ -7265,11 +7376,15 @@ declare function __VLS_template_13(): {
|
|
|
7265
7376
|
props: Record<string, any>;
|
|
7266
7377
|
}) => VNodeChild) | undefined;
|
|
7267
7378
|
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
7268
|
-
default?: ((
|
|
7379
|
+
default?: ((arg: {
|
|
7380
|
+
id: Readonly<Ref<string, string>>;
|
|
7381
|
+
}) => VNodeChild) | undefined;
|
|
7269
7382
|
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
7270
7383
|
} | {
|
|
7271
7384
|
$stable?: boolean | undefined;
|
|
7272
|
-
} | ((
|
|
7385
|
+
} | ((arg: {
|
|
7386
|
+
id: Readonly<Ref<string, string>>;
|
|
7387
|
+
}) => VNodeChild) | VNodeChild;
|
|
7273
7388
|
"v-slots"?: {
|
|
7274
7389
|
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
7275
7390
|
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
@@ -7285,7 +7400,9 @@ declare function __VLS_template_13(): {
|
|
|
7285
7400
|
props: Record<string, any>;
|
|
7286
7401
|
}) => VNodeChild) | undefined;
|
|
7287
7402
|
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
7288
|
-
default?: false | ((
|
|
7403
|
+
default?: false | ((arg: {
|
|
7404
|
+
id: Readonly<Ref<string, string>>;
|
|
7405
|
+
}) => VNodeChild) | undefined;
|
|
7289
7406
|
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
7290
7407
|
} | undefined;
|
|
7291
7408
|
} & {
|
|
@@ -7295,7 +7412,9 @@ declare function __VLS_template_13(): {
|
|
|
7295
7412
|
props: Record<string, any>;
|
|
7296
7413
|
}) => VNodeChild) | undefined;
|
|
7297
7414
|
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
7298
|
-
"v-slot:default"?: false | ((
|
|
7415
|
+
"v-slot:default"?: false | ((arg: {
|
|
7416
|
+
id: Readonly<Ref<string, string>>;
|
|
7417
|
+
}) => VNodeChild) | undefined;
|
|
7299
7418
|
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
7300
7419
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
7301
7420
|
label: string | undefined;
|
|
@@ -7609,6 +7728,7 @@ declare function __VLS_template_13(): {
|
|
|
7609
7728
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7610
7729
|
id?: string | undefined;
|
|
7611
7730
|
details: boolean;
|
|
7731
|
+
labelId?: string | undefined;
|
|
7612
7732
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
7613
7733
|
$attrs: {
|
|
7614
7734
|
[x: string]: unknown;
|
|
@@ -7681,6 +7801,7 @@ declare function __VLS_template_13(): {
|
|
|
7681
7801
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7682
7802
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7683
7803
|
id?: string | undefined;
|
|
7804
|
+
labelId?: string | undefined;
|
|
7684
7805
|
} & {
|
|
7685
7806
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
7686
7807
|
}, {
|
|
@@ -7806,6 +7927,7 @@ declare function __VLS_template_13(): {
|
|
|
7806
7927
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7807
7928
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7808
7929
|
id?: string | undefined;
|
|
7930
|
+
labelId?: string | undefined;
|
|
7809
7931
|
} & {
|
|
7810
7932
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
7811
7933
|
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine"> & ShallowUnwrapRef< {
|
|
@@ -7814,7 +7936,7 @@ declare function __VLS_template_13(): {
|
|
|
7814
7936
|
}> & ComponentCustomProperties & GenericProps< {
|
|
7815
7937
|
modelValue?: unknown;
|
|
7816
7938
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
7817
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
7939
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
7818
7940
|
_allExposed: {
|
|
7819
7941
|
reset: () => Promise<void>;
|
|
7820
7942
|
resetValidation: () => Promise<void>;
|
|
@@ -7857,6 +7979,54 @@ declare function __VLS_template_13(): {
|
|
|
7857
7979
|
persistentCounter: boolean;
|
|
7858
7980
|
type: string;
|
|
7859
7981
|
}> | null;
|
|
7982
|
+
timePickerInstance: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
7983
|
+
modelValue: null | {
|
|
7984
|
+
hours: number;
|
|
7985
|
+
minutes: number;
|
|
7986
|
+
};
|
|
7987
|
+
}> & Readonly<{
|
|
7988
|
+
"onUpdate:modelValue"?: ((value: {
|
|
7989
|
+
hours: number;
|
|
7990
|
+
minutes: number;
|
|
7991
|
+
} | null) => any) | undefined;
|
|
7992
|
+
onOnEnterKeyup?: (() => any) | undefined;
|
|
7993
|
+
onFocusConfirm?: (() => any) | undefined;
|
|
7994
|
+
}>, {
|
|
7995
|
+
focusHour: () => void;
|
|
7996
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
7997
|
+
"update:modelValue": (value: {
|
|
7998
|
+
hours: number;
|
|
7999
|
+
minutes: number;
|
|
8000
|
+
} | null) => any;
|
|
8001
|
+
} & {
|
|
8002
|
+
onEnterKeyup: () => any;
|
|
8003
|
+
focusConfirm: () => any;
|
|
8004
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
8005
|
+
hoursRefInput: HTMLInputElement;
|
|
8006
|
+
minutesRefInput: HTMLInputElement;
|
|
8007
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
8008
|
+
P: {};
|
|
8009
|
+
B: {};
|
|
8010
|
+
D: {};
|
|
8011
|
+
C: {};
|
|
8012
|
+
M: {};
|
|
8013
|
+
Defaults: {};
|
|
8014
|
+
}, Readonly<{
|
|
8015
|
+
modelValue: null | {
|
|
8016
|
+
hours: number;
|
|
8017
|
+
minutes: number;
|
|
8018
|
+
};
|
|
8019
|
+
}> & Readonly<{
|
|
8020
|
+
"onUpdate:modelValue"?: ((value: {
|
|
8021
|
+
hours: number;
|
|
8022
|
+
minutes: number;
|
|
8023
|
+
} | null) => any) | undefined;
|
|
8024
|
+
onOnEnterKeyup?: (() => any) | undefined;
|
|
8025
|
+
onFocusConfirm?: (() => any) | undefined;
|
|
8026
|
+
}>, {
|
|
8027
|
+
focusHour: () => void;
|
|
8028
|
+
}, {}, {}, {}, {}> | null;
|
|
8029
|
+
confirmRefButton: HTMLButtonElement;
|
|
7860
8030
|
};
|
|
7861
8031
|
rootEl: any;
|
|
7862
8032
|
};
|
|
@@ -9353,11 +9523,15 @@ declare function __VLS_template_5(): {
|
|
|
9353
9523
|
props: Record<string, any>;
|
|
9354
9524
|
}) => VNodeChild) | undefined;
|
|
9355
9525
|
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
9356
|
-
default?: ((
|
|
9526
|
+
default?: ((arg: {
|
|
9527
|
+
id: Readonly<Ref<string, string>>;
|
|
9528
|
+
}) => VNodeChild) | undefined;
|
|
9357
9529
|
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
9358
9530
|
} | {
|
|
9359
9531
|
$stable?: boolean | undefined;
|
|
9360
|
-
} | ((
|
|
9532
|
+
} | ((arg: {
|
|
9533
|
+
id: Readonly<Ref<string, string>>;
|
|
9534
|
+
}) => VNodeChild) | VNodeChild;
|
|
9361
9535
|
"v-slots"?: {
|
|
9362
9536
|
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
9363
9537
|
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
@@ -9373,7 +9547,9 @@ declare function __VLS_template_5(): {
|
|
|
9373
9547
|
props: Record<string, any>;
|
|
9374
9548
|
}) => VNodeChild) | undefined;
|
|
9375
9549
|
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
9376
|
-
default?: false | ((
|
|
9550
|
+
default?: false | ((arg: {
|
|
9551
|
+
id: Readonly<Ref<string, string>>;
|
|
9552
|
+
}) => VNodeChild) | undefined;
|
|
9377
9553
|
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
9378
9554
|
} | undefined;
|
|
9379
9555
|
} & {
|
|
@@ -9383,7 +9559,9 @@ declare function __VLS_template_5(): {
|
|
|
9383
9559
|
props: Record<string, any>;
|
|
9384
9560
|
}) => VNodeChild) | undefined;
|
|
9385
9561
|
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
9386
|
-
"v-slot:default"?: false | ((
|
|
9562
|
+
"v-slot:default"?: false | ((arg: {
|
|
9563
|
+
id: Readonly<Ref<string, string>>;
|
|
9564
|
+
}) => VNodeChild) | undefined;
|
|
9387
9565
|
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
9388
9566
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
9389
9567
|
label: string | undefined;
|
|
@@ -9697,6 +9875,7 @@ declare function __VLS_template_5(): {
|
|
|
9697
9875
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
9698
9876
|
id?: string | undefined;
|
|
9699
9877
|
details: boolean;
|
|
9878
|
+
labelId?: string | undefined;
|
|
9700
9879
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
9701
9880
|
$attrs: {
|
|
9702
9881
|
[x: string]: unknown;
|
|
@@ -9769,6 +9948,7 @@ declare function __VLS_template_5(): {
|
|
|
9769
9948
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
9770
9949
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
9771
9950
|
id?: string | undefined;
|
|
9951
|
+
labelId?: string | undefined;
|
|
9772
9952
|
} & {
|
|
9773
9953
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
9774
9954
|
}, {
|
|
@@ -9894,6 +10074,7 @@ declare function __VLS_template_5(): {
|
|
|
9894
10074
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
9895
10075
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
9896
10076
|
id?: string | undefined;
|
|
10077
|
+
labelId?: string | undefined;
|
|
9897
10078
|
} & {
|
|
9898
10079
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
9899
10080
|
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine"> & ShallowUnwrapRef< {
|
|
@@ -9902,7 +10083,7 @@ declare function __VLS_template_5(): {
|
|
|
9902
10083
|
}> & ComponentCustomProperties & GenericProps< {
|
|
9903
10084
|
modelValue?: unknown;
|
|
9904
10085
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
9905
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
10086
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
9906
10087
|
_allExposed: {
|
|
9907
10088
|
reset: () => Promise<void>;
|
|
9908
10089
|
resetValidation: () => Promise<void>;
|
|
@@ -9982,7 +10163,9 @@ declare function __VLS_template_5(): {
|
|
|
9982
10163
|
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
9983
10164
|
[key: string]: any;
|
|
9984
10165
|
}>[];
|
|
9985
|
-
default: (
|
|
10166
|
+
default: (arg: {
|
|
10167
|
+
id: Readonly<Ref<string, string>>;
|
|
10168
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
9986
10169
|
[key: string]: any;
|
|
9987
10170
|
}>[];
|
|
9988
10171
|
counter: (arg: VCounterSlot) => VNode<RendererNode, RendererElement, {
|
|
@@ -10079,11 +10262,15 @@ declare function __VLS_template_5(): {
|
|
|
10079
10262
|
props: Record<string, any>;
|
|
10080
10263
|
}) => VNodeChild) | undefined;
|
|
10081
10264
|
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
10082
|
-
default?: ((
|
|
10265
|
+
default?: ((arg: {
|
|
10266
|
+
id: Readonly<Ref<string, string>>;
|
|
10267
|
+
}) => VNodeChild) | undefined;
|
|
10083
10268
|
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
10084
10269
|
} | {
|
|
10085
10270
|
$stable?: boolean | undefined;
|
|
10086
|
-
} | ((
|
|
10271
|
+
} | ((arg: {
|
|
10272
|
+
id: Readonly<Ref<string, string>>;
|
|
10273
|
+
}) => VNodeChild) | VNodeChild;
|
|
10087
10274
|
"v-slots"?: {
|
|
10088
10275
|
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
10089
10276
|
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
@@ -10099,7 +10286,9 @@ declare function __VLS_template_5(): {
|
|
|
10099
10286
|
props: Record<string, any>;
|
|
10100
10287
|
}) => VNodeChild) | undefined;
|
|
10101
10288
|
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
10102
|
-
default?: false | ((
|
|
10289
|
+
default?: false | ((arg: {
|
|
10290
|
+
id: Readonly<Ref<string, string>>;
|
|
10291
|
+
}) => VNodeChild) | undefined;
|
|
10103
10292
|
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
10104
10293
|
} | undefined;
|
|
10105
10294
|
} & {
|
|
@@ -10109,7 +10298,9 @@ declare function __VLS_template_5(): {
|
|
|
10109
10298
|
props: Record<string, any>;
|
|
10110
10299
|
}) => VNodeChild) | undefined;
|
|
10111
10300
|
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
10112
|
-
"v-slot:default"?: false | ((
|
|
10301
|
+
"v-slot:default"?: false | ((arg: {
|
|
10302
|
+
id: Readonly<Ref<string, string>>;
|
|
10303
|
+
}) => VNodeChild) | undefined;
|
|
10113
10304
|
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
10114
10305
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
10115
10306
|
label: string | undefined;
|
|
@@ -10423,6 +10614,7 @@ declare function __VLS_template_5(): {
|
|
|
10423
10614
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10424
10615
|
id?: string | undefined;
|
|
10425
10616
|
details: boolean;
|
|
10617
|
+
labelId?: string | undefined;
|
|
10426
10618
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
10427
10619
|
$attrs: {
|
|
10428
10620
|
[x: string]: unknown;
|
|
@@ -10495,6 +10687,7 @@ declare function __VLS_template_5(): {
|
|
|
10495
10687
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10496
10688
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10497
10689
|
id?: string | undefined;
|
|
10690
|
+
labelId?: string | undefined;
|
|
10498
10691
|
} & {
|
|
10499
10692
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
10500
10693
|
}, {
|
|
@@ -10620,6 +10813,7 @@ declare function __VLS_template_5(): {
|
|
|
10620
10813
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10621
10814
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10622
10815
|
id?: string | undefined;
|
|
10816
|
+
labelId?: string | undefined;
|
|
10623
10817
|
} & {
|
|
10624
10818
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
10625
10819
|
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine"> & ShallowUnwrapRef< {
|
|
@@ -10628,7 +10822,7 @@ declare function __VLS_template_5(): {
|
|
|
10628
10822
|
}> & ComponentCustomProperties & GenericProps< {
|
|
10629
10823
|
modelValue?: unknown;
|
|
10630
10824
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
10631
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
10825
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
10632
10826
|
_allExposed: {
|
|
10633
10827
|
reset: () => Promise<void>;
|
|
10634
10828
|
resetValidation: () => Promise<void>;
|