@quidgest/ui 0.16.8 → 0.16.10
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/ui.esm.js +928 -927
- package/dist/ui.js +9 -9
- package/dist/ui.min.js +666 -664
- package/dist/ui.scss +1 -1
- package/esm/components/QCombobox/QCombobox.d.ts +20 -20
- package/esm/components/QCombobox/index.d.ts +35 -35
- package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +24 -23
- package/esm/components/QDateTimePicker/index.d.ts +3 -0
- package/esm/components/QDateTimePicker/index.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/types.d.ts +4 -0
- package/esm/components/QDateTimePicker/types.d.ts.map +1 -1
- package/esm/components/QDismissibleLayer/QDismissibleLayer.d.ts +2 -2
- package/esm/components/QDismissibleLayer/QDismissibleLayer.vue.js +17 -20
- package/esm/components/QDismissibleLayer/index.d.ts +1 -1
- package/esm/components/QField/QField.d.ts +3 -3
- package/esm/components/QField/QField.d.ts.map +1 -1
- package/esm/components/QField/QField.vue.js +16 -17
- package/esm/components/QField/index.d.ts +4 -4
- package/esm/components/QOverlay/index.d.ts +3 -3
- package/esm/components/QOverlay/types.d.ts +1 -1
- package/esm/components/QOverlay/types.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.d.ts +10 -10
- package/esm/components/QPasswordField/index.d.ts +5 -5
- package/esm/components/QSelect/QSelect.d.ts +6 -6
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +17 -17
- package/esm/components/QSelect/index.d.ts +3 -3
- package/esm/components/QSidebar/QSidebar.vue.js +16 -13
- package/esm/components/QSidebar/QSidebarAnchor.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebarAnchor.vue.js +35 -34
- package/esm/components/QSidebar/types.d.ts +2 -2
- package/esm/components/QSidebar/types.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.d.ts +7 -7
- package/esm/components/QTextField/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -69,7 +69,7 @@ declare function __VLS_template(): {
|
|
|
69
69
|
$refs: {
|
|
70
70
|
[x: string]: unknown;
|
|
71
71
|
} & {
|
|
72
|
-
|
|
72
|
+
field: HTMLDivElement;
|
|
73
73
|
};
|
|
74
74
|
$slots: Readonly<{
|
|
75
75
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -80,7 +80,7 @@ declare function __VLS_template(): {
|
|
|
80
80
|
$emit: (event: string, ...args: any[]) => void;
|
|
81
81
|
$el: any;
|
|
82
82
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
83
|
-
fieldRef: import('vue').
|
|
83
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
84
84
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
85
85
|
size: import('..').QFieldSize;
|
|
86
86
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -106,7 +106,7 @@ declare function __VLS_template(): {
|
|
|
106
106
|
} & Readonly<{
|
|
107
107
|
size: import('..').QFieldSize;
|
|
108
108
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
109
|
-
fieldRef: import('vue').
|
|
109
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
110
110
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
111
111
|
$slots: {
|
|
112
112
|
'label.prepend'?(_: {}): any;
|
|
@@ -150,7 +150,7 @@ declare function __VLS_template(): {
|
|
|
150
150
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
151
151
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
152
152
|
}>, {
|
|
153
|
-
fieldRef: import('vue').ComputedRef<
|
|
153
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
154
154
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
155
155
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
156
156
|
"update:modelValue": (value: string) => any;
|
|
@@ -202,7 +202,7 @@ declare function __VLS_template(): {
|
|
|
202
202
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
203
203
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
204
204
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
205
|
-
fieldRef: import('vue').ComputedRef<
|
|
205
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
206
206
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
207
207
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
208
208
|
$slots: {
|
|
@@ -536,7 +536,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
536
536
|
$refs: {
|
|
537
537
|
[x: string]: unknown;
|
|
538
538
|
} & {
|
|
539
|
-
|
|
539
|
+
field: HTMLDivElement;
|
|
540
540
|
};
|
|
541
541
|
$slots: Readonly<{
|
|
542
542
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -547,7 +547,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
547
547
|
$emit: (event: string, ...args: any[]) => void;
|
|
548
548
|
$el: any;
|
|
549
549
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
550
|
-
fieldRef: import('vue').
|
|
550
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
551
551
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
552
552
|
size: import('..').QFieldSize;
|
|
553
553
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -573,7 +573,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
573
573
|
} & Readonly<{
|
|
574
574
|
size: import('..').QFieldSize;
|
|
575
575
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
576
|
-
fieldRef: import('vue').
|
|
576
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
577
577
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
578
578
|
$slots: {
|
|
579
579
|
'label.prepend'?(_: {}): any;
|
|
@@ -617,7 +617,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
617
617
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
618
618
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
619
619
|
}>, {
|
|
620
|
-
fieldRef: import('vue').ComputedRef<
|
|
620
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
621
621
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
622
622
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
623
623
|
"update:modelValue": (value: string) => any;
|
|
@@ -669,7 +669,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
669
669
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
670
670
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
671
671
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
672
|
-
fieldRef: import('vue').ComputedRef<
|
|
672
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
673
673
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
674
674
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
675
675
|
$slots: {
|
|
@@ -727,7 +727,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
727
727
|
$refs: {
|
|
728
728
|
[x: string]: unknown;
|
|
729
729
|
} & {
|
|
730
|
-
|
|
730
|
+
field: HTMLDivElement;
|
|
731
731
|
};
|
|
732
732
|
$slots: Readonly<{
|
|
733
733
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -738,7 +738,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
738
738
|
$emit: (event: string, ...args: any[]) => void;
|
|
739
739
|
$el: any;
|
|
740
740
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
741
|
-
fieldRef: import('vue').
|
|
741
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
742
742
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
743
743
|
size: import('..').QFieldSize;
|
|
744
744
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -764,7 +764,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
764
764
|
} & Readonly<{
|
|
765
765
|
size: import('..').QFieldSize;
|
|
766
766
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
767
|
-
fieldRef: import('vue').
|
|
767
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
768
768
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
769
769
|
$slots: {
|
|
770
770
|
'label.prepend'?(_: {}): any;
|
|
@@ -808,7 +808,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
808
808
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
809
809
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
810
810
|
}>, {
|
|
811
|
-
fieldRef: import('vue').ComputedRef<
|
|
811
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
812
812
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
813
813
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
814
814
|
"update:modelValue": (value: string) => any;
|
|
@@ -860,7 +860,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
860
860
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
861
861
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
862
862
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
863
|
-
fieldRef: import('vue').ComputedRef<
|
|
863
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
864
864
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
865
865
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
866
866
|
$slots: {
|
|
@@ -951,7 +951,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
951
951
|
$refs: {
|
|
952
952
|
[x: string]: unknown;
|
|
953
953
|
} & {
|
|
954
|
-
|
|
954
|
+
field: HTMLDivElement;
|
|
955
955
|
};
|
|
956
956
|
$slots: Readonly<{
|
|
957
957
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -962,7 +962,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
962
962
|
$emit: (event: string, ...args: any[]) => void;
|
|
963
963
|
$el: any;
|
|
964
964
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
965
|
-
fieldRef: import('vue').
|
|
965
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
966
966
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
967
967
|
size: import('..').QFieldSize;
|
|
968
968
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -988,7 +988,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
988
988
|
} & Readonly<{
|
|
989
989
|
size: import('..').QFieldSize;
|
|
990
990
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
991
|
-
fieldRef: import('vue').
|
|
991
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
992
992
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
993
993
|
$slots: {
|
|
994
994
|
'label.prepend'?(_: {}): any;
|
|
@@ -1032,7 +1032,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
1032
1032
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1033
1033
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1034
1034
|
}>, {
|
|
1035
|
-
fieldRef: import('vue').ComputedRef<
|
|
1035
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1036
1036
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1037
1037
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1038
1038
|
"update:modelValue": (value: string) => any;
|
|
@@ -1084,7 +1084,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
1084
1084
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1085
1085
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1086
1086
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
1087
|
-
fieldRef: import('vue').ComputedRef<
|
|
1087
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1088
1088
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1089
1089
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1090
1090
|
$slots: {
|
|
@@ -72,7 +72,7 @@ declare const QCombobox: {
|
|
|
72
72
|
$refs: {
|
|
73
73
|
[x: string]: unknown;
|
|
74
74
|
} & {
|
|
75
|
-
|
|
75
|
+
field: HTMLDivElement;
|
|
76
76
|
};
|
|
77
77
|
$slots: Readonly<{
|
|
78
78
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -83,7 +83,7 @@ declare const QCombobox: {
|
|
|
83
83
|
$emit: (event: string, ...args: any[]) => void;
|
|
84
84
|
$el: any;
|
|
85
85
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
86
|
-
fieldRef: import('vue').
|
|
86
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
87
87
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
88
88
|
size: import('..').QFieldSize;
|
|
89
89
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -109,7 +109,7 @@ declare const QCombobox: {
|
|
|
109
109
|
} & Readonly<{
|
|
110
110
|
size: import('..').QFieldSize;
|
|
111
111
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
112
|
-
fieldRef: import('vue').
|
|
112
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
113
113
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
114
114
|
$slots: {
|
|
115
115
|
'label.prepend'?(_: {}): any;
|
|
@@ -153,7 +153,7 @@ declare const QCombobox: {
|
|
|
153
153
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
154
154
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
155
155
|
}>, {
|
|
156
|
-
fieldRef: import('vue').ComputedRef<
|
|
156
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
157
157
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
158
158
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
159
159
|
"update:modelValue": (value: string) => any;
|
|
@@ -205,7 +205,7 @@ declare const QCombobox: {
|
|
|
205
205
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
206
206
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
207
207
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
208
|
-
fieldRef: import('vue').ComputedRef<
|
|
208
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
209
209
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
210
210
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
211
211
|
$slots: {
|
|
@@ -263,7 +263,7 @@ declare const QCombobox: {
|
|
|
263
263
|
$refs: {
|
|
264
264
|
[x: string]: unknown;
|
|
265
265
|
} & {
|
|
266
|
-
|
|
266
|
+
field: HTMLDivElement;
|
|
267
267
|
};
|
|
268
268
|
$slots: Readonly<{
|
|
269
269
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -274,7 +274,7 @@ declare const QCombobox: {
|
|
|
274
274
|
$emit: (event: string, ...args: any[]) => void;
|
|
275
275
|
$el: any;
|
|
276
276
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
277
|
-
fieldRef: import('vue').
|
|
277
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
278
278
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
279
279
|
size: import('..').QFieldSize;
|
|
280
280
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -300,7 +300,7 @@ declare const QCombobox: {
|
|
|
300
300
|
} & Readonly<{
|
|
301
301
|
size: import('..').QFieldSize;
|
|
302
302
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
303
|
-
fieldRef: import('vue').
|
|
303
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
304
304
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
305
305
|
$slots: {
|
|
306
306
|
'label.prepend'?(_: {}): any;
|
|
@@ -344,7 +344,7 @@ declare const QCombobox: {
|
|
|
344
344
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
345
345
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
346
346
|
}>, {
|
|
347
|
-
fieldRef: import('vue').ComputedRef<
|
|
347
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
348
348
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
349
349
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
350
350
|
"update:modelValue": (value: string) => any;
|
|
@@ -396,7 +396,7 @@ declare const QCombobox: {
|
|
|
396
396
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
397
397
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
398
398
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
399
|
-
fieldRef: import('vue').ComputedRef<
|
|
399
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
400
400
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
401
401
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
402
402
|
$slots: {
|
|
@@ -479,7 +479,7 @@ declare const QCombobox: {
|
|
|
479
479
|
$refs: {
|
|
480
480
|
[x: string]: unknown;
|
|
481
481
|
} & {
|
|
482
|
-
|
|
482
|
+
field: HTMLDivElement;
|
|
483
483
|
};
|
|
484
484
|
$slots: Readonly<{
|
|
485
485
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -490,7 +490,7 @@ declare const QCombobox: {
|
|
|
490
490
|
$emit: (event: string, ...args: any[]) => void;
|
|
491
491
|
$el: any;
|
|
492
492
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
493
|
-
fieldRef: import('vue').
|
|
493
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
494
494
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
495
495
|
size: import('..').QFieldSize;
|
|
496
496
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -516,7 +516,7 @@ declare const QCombobox: {
|
|
|
516
516
|
} & Readonly<{
|
|
517
517
|
size: import('..').QFieldSize;
|
|
518
518
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
519
|
-
fieldRef: import('vue').
|
|
519
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
520
520
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
521
521
|
$slots: {
|
|
522
522
|
'label.prepend'?(_: {}): any;
|
|
@@ -560,7 +560,7 @@ declare const QCombobox: {
|
|
|
560
560
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
561
561
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
562
562
|
}>, {
|
|
563
|
-
fieldRef: import('vue').ComputedRef<
|
|
563
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
564
564
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
565
565
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
566
566
|
"update:modelValue": (value: string) => any;
|
|
@@ -612,7 +612,7 @@ declare const QCombobox: {
|
|
|
612
612
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
613
613
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
614
614
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
615
|
-
fieldRef: import('vue').ComputedRef<
|
|
615
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
616
616
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
617
617
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
618
618
|
$slots: {
|
|
@@ -973,7 +973,7 @@ declare const QCombobox: {
|
|
|
973
973
|
$refs: {
|
|
974
974
|
[x: string]: unknown;
|
|
975
975
|
} & {
|
|
976
|
-
|
|
976
|
+
field: HTMLDivElement;
|
|
977
977
|
};
|
|
978
978
|
$slots: Readonly<{
|
|
979
979
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -984,7 +984,7 @@ declare const QCombobox: {
|
|
|
984
984
|
$emit: (event: string, ...args: any[]) => void;
|
|
985
985
|
$el: any;
|
|
986
986
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
987
|
-
fieldRef: import('vue').
|
|
987
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
988
988
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
989
989
|
size: import('..').QFieldSize;
|
|
990
990
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -1010,7 +1010,7 @@ declare const QCombobox: {
|
|
|
1010
1010
|
} & Readonly<{
|
|
1011
1011
|
size: import('..').QFieldSize;
|
|
1012
1012
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
1013
|
-
fieldRef: import('vue').
|
|
1013
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
1014
1014
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1015
1015
|
$slots: {
|
|
1016
1016
|
'label.prepend'?(_: {}): any;
|
|
@@ -1054,7 +1054,7 @@ declare const QCombobox: {
|
|
|
1054
1054
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1055
1055
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1056
1056
|
}>, {
|
|
1057
|
-
fieldRef: import('vue').ComputedRef<
|
|
1057
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1058
1058
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1059
1059
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1060
1060
|
"update:modelValue": (value: string) => any;
|
|
@@ -1106,7 +1106,7 @@ declare const QCombobox: {
|
|
|
1106
1106
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1107
1107
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1108
1108
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
1109
|
-
fieldRef: import('vue').ComputedRef<
|
|
1109
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1110
1110
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1111
1111
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1112
1112
|
$slots: {
|
|
@@ -1164,7 +1164,7 @@ declare const QCombobox: {
|
|
|
1164
1164
|
$refs: {
|
|
1165
1165
|
[x: string]: unknown;
|
|
1166
1166
|
} & {
|
|
1167
|
-
|
|
1167
|
+
field: HTMLDivElement;
|
|
1168
1168
|
};
|
|
1169
1169
|
$slots: Readonly<{
|
|
1170
1170
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -1175,7 +1175,7 @@ declare const QCombobox: {
|
|
|
1175
1175
|
$emit: (event: string, ...args: any[]) => void;
|
|
1176
1176
|
$el: any;
|
|
1177
1177
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
1178
|
-
fieldRef: import('vue').
|
|
1178
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
1179
1179
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1180
1180
|
size: import('..').QFieldSize;
|
|
1181
1181
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -1201,7 +1201,7 @@ declare const QCombobox: {
|
|
|
1201
1201
|
} & Readonly<{
|
|
1202
1202
|
size: import('..').QFieldSize;
|
|
1203
1203
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
1204
|
-
fieldRef: import('vue').
|
|
1204
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
1205
1205
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1206
1206
|
$slots: {
|
|
1207
1207
|
'label.prepend'?(_: {}): any;
|
|
@@ -1245,7 +1245,7 @@ declare const QCombobox: {
|
|
|
1245
1245
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1246
1246
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1247
1247
|
}>, {
|
|
1248
|
-
fieldRef: import('vue').ComputedRef<
|
|
1248
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1249
1249
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1250
1250
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1251
1251
|
"update:modelValue": (value: string) => any;
|
|
@@ -1297,7 +1297,7 @@ declare const QCombobox: {
|
|
|
1297
1297
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1298
1298
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1299
1299
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
1300
|
-
fieldRef: import('vue').ComputedRef<
|
|
1300
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1301
1301
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1302
1302
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1303
1303
|
$slots: {
|
|
@@ -1399,7 +1399,7 @@ declare const QCombobox: {
|
|
|
1399
1399
|
$refs: {
|
|
1400
1400
|
[x: string]: unknown;
|
|
1401
1401
|
} & {
|
|
1402
|
-
|
|
1402
|
+
field: HTMLDivElement;
|
|
1403
1403
|
};
|
|
1404
1404
|
$slots: Readonly<{
|
|
1405
1405
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -1410,7 +1410,7 @@ declare const QCombobox: {
|
|
|
1410
1410
|
$emit: (event: string, ...args: any[]) => void;
|
|
1411
1411
|
$el: any;
|
|
1412
1412
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
1413
|
-
fieldRef: import('vue').
|
|
1413
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
1414
1414
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1415
1415
|
size: import('..').QFieldSize;
|
|
1416
1416
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -1436,7 +1436,7 @@ declare const QCombobox: {
|
|
|
1436
1436
|
} & Readonly<{
|
|
1437
1437
|
size: import('..').QFieldSize;
|
|
1438
1438
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
1439
|
-
fieldRef: import('vue').
|
|
1439
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
1440
1440
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1441
1441
|
$slots: {
|
|
1442
1442
|
'label.prepend'?(_: {}): any;
|
|
@@ -1480,7 +1480,7 @@ declare const QCombobox: {
|
|
|
1480
1480
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1481
1481
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1482
1482
|
}>, {
|
|
1483
|
-
fieldRef: import('vue').ComputedRef<
|
|
1483
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1484
1484
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1485
1485
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1486
1486
|
"update:modelValue": (value: string) => any;
|
|
@@ -1532,7 +1532,7 @@ declare const QCombobox: {
|
|
|
1532
1532
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1533
1533
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1534
1534
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
1535
|
-
fieldRef: import('vue').ComputedRef<
|
|
1535
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1536
1536
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1537
1537
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1538
1538
|
$slots: {
|
|
@@ -1590,7 +1590,7 @@ declare const QCombobox: {
|
|
|
1590
1590
|
$refs: {
|
|
1591
1591
|
[x: string]: unknown;
|
|
1592
1592
|
} & {
|
|
1593
|
-
|
|
1593
|
+
field: HTMLDivElement;
|
|
1594
1594
|
};
|
|
1595
1595
|
$slots: Readonly<{
|
|
1596
1596
|
[name: string]: import('vue').Slot<any> | undefined;
|
|
@@ -1601,7 +1601,7 @@ declare const QCombobox: {
|
|
|
1601
1601
|
$emit: (event: string, ...args: any[]) => void;
|
|
1602
1602
|
$el: any;
|
|
1603
1603
|
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
|
|
1604
|
-
fieldRef: import('vue').
|
|
1604
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
1605
1605
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1606
1606
|
size: import('..').QFieldSize;
|
|
1607
1607
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -1627,7 +1627,7 @@ declare const QCombobox: {
|
|
|
1627
1627
|
} & Readonly<{
|
|
1628
1628
|
size: import('..').QFieldSize;
|
|
1629
1629
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
1630
|
-
fieldRef: import('vue').
|
|
1630
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
1631
1631
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1632
1632
|
$slots: {
|
|
1633
1633
|
'label.prepend'?(_: {}): any;
|
|
@@ -1671,7 +1671,7 @@ declare const QCombobox: {
|
|
|
1671
1671
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1672
1672
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1673
1673
|
}>, {
|
|
1674
|
-
fieldRef: import('vue').ComputedRef<
|
|
1674
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1675
1675
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1676
1676
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1677
1677
|
"update:modelValue": (value: string) => any;
|
|
@@ -1723,7 +1723,7 @@ declare const QCombobox: {
|
|
|
1723
1723
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1724
1724
|
"onClick:clear"?: ((event: Event) => any) | undefined;
|
|
1725
1725
|
}>, "type" | "fieldRef" | "inputRef"> & import('vue').ShallowUnwrapRef<{
|
|
1726
|
-
fieldRef: import('vue').ComputedRef<
|
|
1726
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
|
1727
1727
|
inputRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
1728
1728
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1729
1729
|
$slots: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as C, mergeModels as O, useModel as F, computed as t, ref as U, createBlock as w, openBlock as D, unref as r, normalizeClass as P, createSlots as E, withCtx as n, createVNode as s, createElementVNode as N, mergeProps as y, renderSlot as Q } from "vue";
|
|
2
2
|
import { DEFAULT_TEXTS as H, DEFAULT_ICONS as I } from "./types.js";
|
|
3
3
|
import { QClearButton as Z } from "../__internal__/QClearButton/index.js";
|
|
4
4
|
import { QField as $ } from "../QField/index.js";
|
|
@@ -9,10 +9,10 @@ import { convertDatePatternToMask as X } from "../../utils/date/date.js";
|
|
|
9
9
|
import { isTimeOnlyFormat as j } from "../../utils/date/tokens.js";
|
|
10
10
|
import { formatUsesTime as G, formatUsesSeconds as W, uses12HourFormat as J } from "../../utils/time.js";
|
|
11
11
|
import { useTheme as Y } from "../../composables/theme.js";
|
|
12
|
-
const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput", "onBlur", "onFocus", "onKeypress", "onKeydown", "onPaste"],
|
|
12
|
+
const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput", "onBlur", "onFocus", "onKeypress", "onKeydown", "onPaste"], ce = /* @__PURE__ */ C({
|
|
13
13
|
inheritAttrs: !1,
|
|
14
14
|
__name: "QDateTimePicker",
|
|
15
|
-
props: /* @__PURE__ */
|
|
15
|
+
props: /* @__PURE__ */ O({
|
|
16
16
|
id: {},
|
|
17
17
|
class: {},
|
|
18
18
|
label: {},
|
|
@@ -28,6 +28,7 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
28
28
|
locale: { default: "en-US" },
|
|
29
29
|
placeholder: {},
|
|
30
30
|
inline: { type: Boolean },
|
|
31
|
+
closeOnSelect: { type: Boolean },
|
|
31
32
|
icons: { default: () => I },
|
|
32
33
|
texts: { default: () => H }
|
|
33
34
|
}, {
|
|
@@ -36,12 +37,12 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
36
37
|
}),
|
|
37
38
|
emits: ["update:modelValue"],
|
|
38
39
|
setup(d) {
|
|
39
|
-
const e = d, m =
|
|
40
|
+
const e = d, m = F(d, "modelValue"), u = t({
|
|
40
41
|
get: () => m.value,
|
|
41
42
|
set: (o) => m.value = o || void 0
|
|
42
|
-
}), k = t(() => i.value ? "format" : void 0), v = {
|
|
43
|
-
closeOnAutoApply:
|
|
44
|
-
}, b = Y(), T = t(() => b.current.value.mode === "dark"), x = t(() => G(e.format)), h = t(() => W(e.format)), i = t(() => j(e.format)), z = t(() => J(e.format)),
|
|
43
|
+
}), k = t(() => i.value ? "format" : void 0), v = t(() => ({
|
|
44
|
+
closeOnAutoApply: e.closeOnSelect
|
|
45
|
+
})), b = Y(), T = t(() => b.current.value.mode === "dark"), x = t(() => G(e.format)), h = t(() => W(e.format)), i = t(() => j(e.format)), z = t(() => J(e.format)), B = t(() => p(e.minTime)), _ = t(() => p(e.maxTime)), A = t(() => i.value ? e.icons.clock : e.icons.calendar), M = t(() => ({
|
|
45
46
|
mask: X(e.format),
|
|
46
47
|
tokens: {
|
|
47
48
|
// Default tokens
|
|
@@ -69,9 +70,9 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
69
70
|
},
|
|
70
71
|
eager: !0
|
|
71
72
|
// Show static characters before the user types them
|
|
72
|
-
})),
|
|
73
|
-
R(
|
|
74
|
-
function
|
|
73
|
+
})), c = U();
|
|
74
|
+
R(c, M);
|
|
75
|
+
function p(o) {
|
|
75
76
|
if (!o) return;
|
|
76
77
|
const a = o.split(":");
|
|
77
78
|
return {
|
|
@@ -80,7 +81,7 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
80
81
|
seconds: a[2]
|
|
81
82
|
};
|
|
82
83
|
}
|
|
83
|
-
return (o, a) => (
|
|
84
|
+
return (o, a) => (D(), w(r($), {
|
|
84
85
|
id: e.id,
|
|
85
86
|
class: P(e.class),
|
|
86
87
|
label: e.label,
|
|
@@ -93,7 +94,7 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
93
94
|
prepend: n(() => [
|
|
94
95
|
s(
|
|
95
96
|
r(K),
|
|
96
|
-
y({ class: "q-date-time-picker__input-icon" },
|
|
97
|
+
y({ class: "q-date-time-picker__input-icon" }, A.value),
|
|
97
98
|
null,
|
|
98
99
|
16
|
|
99
100
|
/* FULL_PROPS */
|
|
@@ -104,8 +105,8 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
104
105
|
modelValue: u.value,
|
|
105
106
|
"onUpdate:modelValue": a[0] || (a[0] = (l) => u.value = l),
|
|
106
107
|
"model-type": k.value,
|
|
107
|
-
"min-time":
|
|
108
|
-
"max-time":
|
|
108
|
+
"min-time": B.value,
|
|
109
|
+
"max-time": _.value,
|
|
109
110
|
disabled: e.disabled,
|
|
110
111
|
readonly: e.readonly,
|
|
111
112
|
format: e.format,
|
|
@@ -114,7 +115,7 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
114
115
|
"enable-time-picker": x.value,
|
|
115
116
|
"enable-seconds": h.value,
|
|
116
117
|
"time-picker": i.value,
|
|
117
|
-
config: v,
|
|
118
|
+
config: v.value,
|
|
118
119
|
teleport: !e.inline,
|
|
119
120
|
offset: 16,
|
|
120
121
|
dark: T.value,
|
|
@@ -123,10 +124,10 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
123
124
|
clearable: "",
|
|
124
125
|
"auto-apply": ""
|
|
125
126
|
}, {
|
|
126
|
-
"dp-input": n(({ value: l, onInput:
|
|
127
|
+
"dp-input": n(({ value: l, onInput: S, onBlur: q, onFocus: V, onKeypress: f, onPaste: g }) => [
|
|
127
128
|
N("input", y({
|
|
128
129
|
ref_key: "inputRef",
|
|
129
|
-
ref:
|
|
130
|
+
ref: c,
|
|
130
131
|
"data-test-id": "dp-input",
|
|
131
132
|
class: "dp__input",
|
|
132
133
|
type: "text",
|
|
@@ -136,12 +137,12 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
136
137
|
readonly: e.readonly,
|
|
137
138
|
required: e.required
|
|
138
139
|
}, o.$attrs, {
|
|
139
|
-
onInput:
|
|
140
|
-
onBlur:
|
|
141
|
-
onFocus:
|
|
140
|
+
onInput: S,
|
|
141
|
+
onBlur: q,
|
|
142
|
+
onFocus: V,
|
|
142
143
|
onKeypress: f,
|
|
143
144
|
onKeydown: f,
|
|
144
|
-
onPaste:
|
|
145
|
+
onPaste: g
|
|
145
146
|
}), null, 16, ee)
|
|
146
147
|
]),
|
|
147
148
|
"clear-icon": n(({ clear: l }) => [
|
|
@@ -152,7 +153,7 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
152
153
|
]),
|
|
153
154
|
_: 1
|
|
154
155
|
/* STABLE */
|
|
155
|
-
}, 8, ["modelValue", "model-type", "min-time", "max-time", "disabled", "readonly", "format", "is24", "locale", "enable-time-picker", "enable-seconds", "time-picker", "teleport", "dark"])
|
|
156
|
+
}, 8, ["modelValue", "model-type", "min-time", "max-time", "disabled", "readonly", "format", "is24", "locale", "enable-time-picker", "enable-seconds", "time-picker", "config", "teleport", "dark"])
|
|
156
157
|
]),
|
|
157
158
|
_: 2
|
|
158
159
|
/* DYNAMIC */
|
|
@@ -168,5 +169,5 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
168
169
|
}
|
|
169
170
|
});
|
|
170
171
|
export {
|
|
171
|
-
|
|
172
|
+
ce as default
|
|
172
173
|
};
|