@bagelink/vue 0.0.451 → 0.0.455
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Card.vue.d.ts +2 -2
- package/dist/components/Flag.vue.d.ts +9 -5
- package/dist/components/Flag.vue.d.ts.map +1 -1
- package/dist/components/MapEmbed.vue.d.ts +20 -0
- package/dist/components/MapEmbed.vue.d.ts.map +1 -0
- package/dist/components/Modal.vue.d.ts.map +1 -1
- package/dist/components/Popover.vue.d.ts +10 -0
- package/dist/components/Popover.vue.d.ts.map +1 -0
- package/dist/components/TableSchema.vue.d.ts +18 -6
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/form/BglField.vue.d.ts.map +1 -1
- package/dist/components/form/ItemRef.vue.d.ts +0 -1
- package/dist/components/form/ItemRef.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectField.vue.d.ts +4 -1
- package/dist/components/form/inputs/SelectField.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TelInput.vue.d.ts +203 -127
- package/dist/components/form/inputs/TelInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TextInput.vue.d.ts +5 -0
- package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/layout/Layout.vue.d.ts +1 -1
- package/dist/index.cjs +30656 -16731
- package/dist/index.mjs +30656 -16731
- package/dist/plugins/bagel.d.ts +1 -1
- package/dist/plugins/modal.d.ts +1 -1
- package/dist/plugins/modal.d.ts.map +1 -1
- package/dist/style.css +806 -1127
- package/dist/types/BagelForm.d.ts +1 -0
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/dist/types/materialIcon.d.ts +2 -0
- package/dist/types/materialIcon.d.ts.map +1 -0
- package/package.json +4 -2
- package/src/components/Flag.vue +45 -1341
- package/src/components/MapEmbed.vue +67 -0
- package/src/components/Modal.vue +4 -9
- package/src/components/form/BglField.vue +1 -0
- package/src/components/form/inputs/RichText.vue +2 -2
- package/src/components/form/inputs/SelectInput.vue +7 -8
- package/src/components/form/inputs/TelInput.vue +164 -108
- package/src/components/form/inputs/TextInput.vue +6 -9
- package/src/components/index.ts +1 -0
- package/src/plugins/modal.ts +13 -12
- package/src/styles/appearance.css +54 -19
- package/src/styles/layout.css +5 -0
- package/src/styles/mobilLayout.css +6 -0
- package/src/styles/text.css +32 -3
- package/src/types/BagelForm.ts +1 -0
- package/dist/components/Drop.vue.d.ts +0 -34
- package/dist/components/Drop.vue.d.ts.map +0 -1
- package/dist/components/FileUploader.vue.d.ts +0 -60
- package/dist/components/FileUploader.vue.d.ts.map +0 -1
|
@@ -5,7 +5,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
5
5
|
h100?: boolean | undefined;
|
|
6
6
|
overflowX?: boolean | undefined;
|
|
7
7
|
overflowY?: boolean | undefined;
|
|
8
|
-
bg?: "info" | "light" | "warning" | "white" | "gray" | "primary" | "transparent" | "
|
|
8
|
+
bg?: "info" | "light" | "warning" | "white" | "gray" | "primary" | "transparent" | "dark" | "secondary" | "success" | "danger" | undefined;
|
|
9
9
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
10
|
label?: string | undefined;
|
|
11
11
|
thin?: boolean | undefined;
|
|
@@ -13,7 +13,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
13
13
|
h100?: boolean | undefined;
|
|
14
14
|
overflowX?: boolean | undefined;
|
|
15
15
|
overflowY?: boolean | undefined;
|
|
16
|
-
bg?: "info" | "light" | "warning" | "white" | "gray" | "primary" | "transparent" | "
|
|
16
|
+
bg?: "info" | "light" | "warning" | "white" | "gray" | "primary" | "transparent" | "dark" | "secondary" | "success" | "danger" | undefined;
|
|
17
17
|
}>>>, {}, {}>, {
|
|
18
18
|
default?(_: {}): any;
|
|
19
19
|
}>;
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { CountryCode } from 'libphonenumber-js';
|
|
2
|
+
|
|
3
|
+
type FlagProps = {
|
|
4
|
+
country: CountryCode;
|
|
5
|
+
size?: number | string;
|
|
6
|
+
circle?: boolean;
|
|
7
|
+
square?: boolean;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<FlagProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FlagProps>>>, {}, {}>;
|
|
6
10
|
export default _default;
|
|
7
11
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
12
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Flag.vue.d.ts","sourceRoot":"","sources":["../../src/components/Flag.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Flag.vue.d.ts","sourceRoot":"","sources":["../../src/components/Flag.vue"],"names":[],"mappings":"AAOA;AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAIhD,KAAK,SAAS,GAAG;IAChB,OAAO,EAAE,WAAW,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;CACjB,CAAC;;AAuEF,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { LatLngExpression } from 'leaflet';
|
|
2
|
+
|
|
3
|
+
type MapProps = {
|
|
4
|
+
center?: LatLngExpression;
|
|
5
|
+
zoom?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
address?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<MapProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<MapProps>>>, {}, {}>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
13
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
14
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
15
|
+
} : {
|
|
16
|
+
type: import('vue').PropType<T[K]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=MapEmbed.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MapEmbed.vue.d.ts","sourceRoot":"","sources":["../../src/components/MapEmbed.vue"],"names":[],"mappings":"AAGA;AAGA,OAAO,KAAK,EAAE,gBAAgB,EAAe,MAAM,SAAS,CAAC;AAC7D,OAAO,0BAA0B,CAAC;AAKlC,KAAK,QAAQ,GAAG;IACf,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;;AAiFF,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.vue.d.ts","sourceRoot":"","sources":["../../src/components/Modal.vue"],"names":[],"mappings":"AA2CA;AAKA,OAAO,EACN,KAAK,UAAU,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,qBAAqB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Modal.vue.d.ts","sourceRoot":"","sources":["../../src/components/Modal.vue"],"names":[],"mappings":"AA2CA;AAKA,OAAO,EACN,KAAK,UAAU,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,qBAAqB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;AAgR7B,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
+
trigger?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=Popover.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Popover.vue.d.ts","sourceRoot":"","sources":["../../src/components/Popover.vue"],"names":[],"mappings":"AAoBA;AAEA,OAAO,6BAA6B,CAAC;;;;AAmHrC,wBAAwG;AACxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -30,6 +30,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
30
30
|
class?: import('..').AttributeValue | import('..').AttributeFn<Record<string, any>>;
|
|
31
31
|
attrs?: import('..').Attributes<Record<string, any>> | undefined;
|
|
32
32
|
required?: boolean | undefined;
|
|
33
|
+
disabled?: boolean | undefined;
|
|
33
34
|
helptext?: string | undefined;
|
|
34
35
|
options?: string | (string | number | Record<string, any> | {
|
|
35
36
|
label?: string | undefined;
|
|
@@ -73,6 +74,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
73
74
|
required: {
|
|
74
75
|
type: import('vue').PropType<boolean>;
|
|
75
76
|
};
|
|
77
|
+
disabled: {
|
|
78
|
+
type: import('vue').PropType<boolean>;
|
|
79
|
+
};
|
|
76
80
|
helptext: {
|
|
77
81
|
type: import('vue').PropType<string>;
|
|
78
82
|
};
|
|
@@ -82,9 +86,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
82
86
|
shrink: {
|
|
83
87
|
type: import('vue').PropType<boolean>;
|
|
84
88
|
};
|
|
85
|
-
disabled: {
|
|
86
|
-
type: import('vue').PropType<boolean>;
|
|
87
|
-
};
|
|
88
89
|
nativeInputAttrs: {
|
|
89
90
|
type: import('vue').PropType<Record<string, any>>;
|
|
90
91
|
};
|
|
@@ -109,6 +110,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
109
110
|
autofocus: {
|
|
110
111
|
type: import('vue').PropType<boolean>;
|
|
111
112
|
};
|
|
113
|
+
debounceDelay: {
|
|
114
|
+
type: import('vue').PropType<number>;
|
|
115
|
+
default: number;
|
|
116
|
+
};
|
|
112
117
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
113
118
|
"update:modelValue": (...args: any[]) => void;
|
|
114
119
|
debounce: (...args: any[]) => void;
|
|
@@ -145,6 +150,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
145
150
|
required: {
|
|
146
151
|
type: import('vue').PropType<boolean>;
|
|
147
152
|
};
|
|
153
|
+
disabled: {
|
|
154
|
+
type: import('vue').PropType<boolean>;
|
|
155
|
+
};
|
|
148
156
|
helptext: {
|
|
149
157
|
type: import('vue').PropType<string>;
|
|
150
158
|
};
|
|
@@ -154,9 +162,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
154
162
|
shrink: {
|
|
155
163
|
type: import('vue').PropType<boolean>;
|
|
156
164
|
};
|
|
157
|
-
disabled: {
|
|
158
|
-
type: import('vue').PropType<boolean>;
|
|
159
|
-
};
|
|
160
165
|
nativeInputAttrs: {
|
|
161
166
|
type: import('vue').PropType<Record<string, any>>;
|
|
162
167
|
};
|
|
@@ -181,12 +186,17 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
181
186
|
autofocus: {
|
|
182
187
|
type: import('vue').PropType<boolean>;
|
|
183
188
|
};
|
|
189
|
+
debounceDelay: {
|
|
190
|
+
type: import('vue').PropType<number>;
|
|
191
|
+
default: number;
|
|
192
|
+
};
|
|
184
193
|
}>> & {
|
|
185
194
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
186
195
|
onDebounce?: ((...args: any[]) => any) | undefined;
|
|
187
196
|
}, {
|
|
188
197
|
type: string;
|
|
189
198
|
modelValue: string | number;
|
|
199
|
+
debounceDelay: number;
|
|
190
200
|
}, {}>;
|
|
191
201
|
id: string;
|
|
192
202
|
type?: string | undefined;
|
|
@@ -196,6 +206,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
196
206
|
class?: import('..').AttributeValue | import('..').AttributeFn<Record<string, any>>;
|
|
197
207
|
attrs?: import('..').Attributes<Record<string, any>> | undefined;
|
|
198
208
|
required?: boolean | undefined;
|
|
209
|
+
disabled?: boolean | undefined;
|
|
199
210
|
helptext?: string | undefined;
|
|
200
211
|
options?: string | (string | number | Record<string, any> | {
|
|
201
212
|
label?: string | undefined;
|
|
@@ -406,6 +417,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
406
417
|
class?: import('..').AttributeValue | import('..').AttributeFn<Record<string, any>>;
|
|
407
418
|
attrs?: import('..').Attributes<Record<string, any>> | undefined;
|
|
408
419
|
required?: boolean | undefined;
|
|
420
|
+
disabled?: boolean | undefined;
|
|
409
421
|
helptext?: string | undefined;
|
|
410
422
|
options?: string | (string | number | Record<string, any> | {
|
|
411
423
|
label?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableSchema.vue.d.ts","sourceRoot":"","sources":["../../src/components/TableSchema.vue"],"names":[],"mappings":"AA2DA;AAGA,OAAO,EACN,KAAK,cAAc,EAInB,MAAM,eAAe,CAAC
|
|
1
|
+
{"version":3,"file":"TableSchema.vue.d.ts","sourceRoot":"","sources":["../../src/components/TableSchema.vue"],"names":[],"mappings":"AA2DA;AAGA,OAAO,EACN,KAAK,cAAc,EAInB,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoYvB,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BglField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/BglField.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BglField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/BglField.vue"],"names":[],"mappings":"AA4BA;AAEA,OAAO,EACN,KAAK,KAAK,EAQV,MAAM,eAAe,CAAC;;WA6Id,KAAK;gBACA,OAAO,MAAM,EAAE,GAAG,CAAC;;;;;;WADxB,KAAK;gBACA,OAAO,MAAM,EAAE,GAAG,CAAC;;;;;;gBAAnB,OAAO,MAAM,EAAE,GAAG,CAAC;;AAPjC,wBAUG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ItemRef.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/ItemRef.vue"],"names":[],"mappings":"AAoBA;AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC
|
|
1
|
+
{"version":3,"file":"ItemRef.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/ItemRef.vue"],"names":[],"mappings":"AAoBA;AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;;gBAqI5B,OAAO,MAAM,EAAE,GAAG,CAAC;;YAEvB,MAAM;;gBAFF,OAAO,MAAM,EAAE,GAAG,CAAC;;YAEvB,MAAM;;AARf,wBAUG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -4,6 +4,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
4
4
|
field: SelectBagelField;
|
|
5
5
|
modelValue: any;
|
|
6
6
|
small?: boolean | undefined;
|
|
7
|
+
label?: string | undefined;
|
|
8
|
+
description?: string | undefined;
|
|
7
9
|
}>, {
|
|
8
10
|
description: string;
|
|
9
11
|
editMode: boolean;
|
|
@@ -17,6 +19,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
19
|
field: SelectBagelField;
|
|
18
20
|
modelValue: any;
|
|
19
21
|
small?: boolean | undefined;
|
|
22
|
+
label?: string | undefined;
|
|
23
|
+
description?: string | undefined;
|
|
20
24
|
}>, {
|
|
21
25
|
description: string;
|
|
22
26
|
editMode: boolean;
|
|
@@ -28,7 +32,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
28
32
|
}, {
|
|
29
33
|
description: string;
|
|
30
34
|
label: string;
|
|
31
|
-
placeholder: string;
|
|
32
35
|
editMode: boolean;
|
|
33
36
|
}, {}>;
|
|
34
37
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectField.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectField.vue"],"names":[],"mappings":"AA6CA;AAOA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;;;
|
|
1
|
+
{"version":3,"file":"SelectField.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectField.vue"],"names":[],"mappings":"AA6CA;AAOA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;;;WAiV5C,gBAAgB;gBACX,GAAG;;;;;;;;;;;;;;WADR,gBAAgB;gBACX,GAAG;;;;;;;;;;;;;iBAGD,MAAM;WADZ,MAAM;cAJH,OAAO;;AANrB,wBAcG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AAwEA;AAIA,OAAO,wBAAwB,CAAC;AAChC,OAAO,
|
|
1
|
+
{"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AAwEA;AAIA,OAAO,wBAAwB,CAAC;AAChC,OAAO,EACiB,KAAK,aAAa,EACzC,MAAM,eAAe,CAAC;AAIvB,KAAK,MAAM,GACR,MAAM,GACN,MAAM,GACN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GACnB;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8d7C,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,165 +1,241 @@
|
|
|
1
|
+
import { NumberFormat } from 'libphonenumber-js';
|
|
2
|
+
import { Raw, StyleValue } from 'vue';
|
|
1
3
|
import { Country } from '../../..';
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
showDialCodeInList?: boolean;
|
|
8
|
-
};
|
|
9
|
-
type InputOptions = {
|
|
10
|
-
autofocus?: boolean;
|
|
11
|
-
'aria-describedby'?: string;
|
|
12
|
-
maxlength?: number;
|
|
13
|
-
name?: string;
|
|
14
|
-
placeholder?: string;
|
|
15
|
-
readonly?: boolean;
|
|
16
|
-
tabindex?: number;
|
|
17
|
-
showDialCode?: boolean;
|
|
18
|
-
};
|
|
19
|
-
type Props = {
|
|
20
|
-
label?: string;
|
|
21
|
-
id?: string;
|
|
22
|
-
autocomplete?: 'on' | 'off';
|
|
23
|
-
placeholder?: string;
|
|
24
|
-
required?: boolean;
|
|
25
|
-
modelValue: string;
|
|
26
|
-
allCountries?: Country[];
|
|
27
|
-
autoFormat?: boolean;
|
|
28
|
-
customValidate?: boolean | RegExp;
|
|
29
|
-
defaultCountry?: string | number;
|
|
30
|
-
disabled?: boolean;
|
|
31
|
-
searchable?: boolean;
|
|
32
|
-
autoDefaultCountry?: boolean;
|
|
33
|
-
dropdownOptions?: DropdownOptions;
|
|
34
|
-
excludeCountries?: string[];
|
|
35
|
-
inputOptions?: InputOptions;
|
|
36
|
-
invalidMsg?: string;
|
|
37
|
-
mode?: 'auto' | 'international' | 'national';
|
|
38
|
-
onlyCountries?: string[];
|
|
39
|
-
preferredCountries?: string[];
|
|
40
|
-
};
|
|
41
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
42
|
-
modelValue: string;
|
|
43
|
-
autocomplete: string;
|
|
44
|
-
allCountries: () => Country[];
|
|
45
|
-
autoFormat: boolean;
|
|
46
|
-
customValidate: boolean;
|
|
47
|
-
defaultCountry: string;
|
|
48
|
-
placeholder: string;
|
|
49
|
-
searchable: boolean;
|
|
50
|
-
dropdownOptions: () => {
|
|
51
|
-
disabled: boolean;
|
|
52
|
-
showFlags: boolean;
|
|
53
|
-
showDialCodeInSelection: boolean;
|
|
54
|
-
showDialCodeInList: boolean;
|
|
55
|
-
searchable: boolean;
|
|
5
|
+
declare const _default: import('vue').DefineComponent<{
|
|
6
|
+
modelValue: import('vue').PropType<string>;
|
|
7
|
+
label: {
|
|
8
|
+
type: import('vue').PropType<string>;
|
|
56
9
|
};
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
excludeCountries: () => never[];
|
|
60
|
-
inputOptions: () => {
|
|
61
|
-
showDialCode: boolean;
|
|
62
|
-
autofocus: boolean;
|
|
63
|
-
'aria-describedby': string;
|
|
64
|
-
id: string;
|
|
65
|
-
maxlength: number;
|
|
66
|
-
name: string;
|
|
67
|
-
readonly: boolean;
|
|
68
|
-
tabindex: number;
|
|
10
|
+
id: {
|
|
11
|
+
type: import('vue').PropType<string>;
|
|
69
12
|
};
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
13
|
+
placeholder: {
|
|
14
|
+
type: import('vue').PropType<string>;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
required: {
|
|
18
|
+
type: import('vue').PropType<boolean>;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
disabled: {
|
|
22
|
+
type: import('vue').PropType<boolean>;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
autocomplete: {
|
|
26
|
+
type: import('vue').PropType<"tel" | "on" | "off">;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
debounceDelay: {
|
|
30
|
+
type: import('vue').PropType<number>;
|
|
31
|
+
default: number;
|
|
32
|
+
};
|
|
33
|
+
searchable: {
|
|
34
|
+
type: import('vue').PropType<boolean>;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
mode: {
|
|
38
|
+
type: import('vue').PropType<NumberFormat>;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
allCountries: {
|
|
42
|
+
type: import('vue').PropType<Country[]>;
|
|
43
|
+
default: () => Country[];
|
|
44
|
+
};
|
|
45
|
+
autoFormat: {
|
|
46
|
+
type: import('vue').PropType<boolean>;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
customValidate: {
|
|
50
|
+
type: import('vue').PropType<boolean | RegExp>;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
defaultCountry: {
|
|
54
|
+
type: import('vue').PropType<string | number>;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
autoDefaultCountry: {
|
|
58
|
+
type: import('vue').PropType<boolean>;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
inputOptions: {
|
|
62
|
+
type: import('vue').PropType<Partial<{
|
|
63
|
+
showDialCode: boolean;
|
|
64
|
+
autofocus: boolean;
|
|
65
|
+
'aria-describedby': string;
|
|
66
|
+
id: string;
|
|
67
|
+
maxlength: number;
|
|
68
|
+
minlength: number;
|
|
69
|
+
pattern: string;
|
|
70
|
+
name: string;
|
|
71
|
+
readonly: boolean;
|
|
72
|
+
tabindex: number;
|
|
73
|
+
style: Raw<StyleValue>;
|
|
74
|
+
placeholder: string;
|
|
75
|
+
}>>;
|
|
76
|
+
};
|
|
77
|
+
dropdownOptions: {
|
|
78
|
+
type: import('vue').PropType<Partial<{
|
|
79
|
+
hide: boolean;
|
|
80
|
+
disabled: boolean;
|
|
81
|
+
showFlags: boolean;
|
|
82
|
+
showDialCodeInSelection: boolean;
|
|
83
|
+
showDialCodeInList: boolean;
|
|
84
|
+
searchable: boolean;
|
|
85
|
+
}>>;
|
|
86
|
+
};
|
|
87
|
+
excludeCountries: {
|
|
88
|
+
type: import('vue').PropType<string[]>;
|
|
89
|
+
default: () => never[];
|
|
90
|
+
};
|
|
91
|
+
onlyCountries: {
|
|
92
|
+
type: import('vue').PropType<string[]>;
|
|
93
|
+
default: () => never[];
|
|
94
|
+
};
|
|
95
|
+
preferredCountries: {
|
|
96
|
+
type: import('vue').PropType<string[]>;
|
|
97
|
+
default: () => never[];
|
|
98
|
+
};
|
|
99
|
+
parseArg: {
|
|
100
|
+
type: import('vue').PropType<{
|
|
101
|
+
extract?: boolean | undefined;
|
|
102
|
+
}>;
|
|
103
|
+
};
|
|
104
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
76
105
|
input: (...args: any[]) => void;
|
|
77
106
|
blur: (...args: any[]) => void;
|
|
78
107
|
change: (...args: any[]) => void;
|
|
79
108
|
focus: (...args: any[]) => void;
|
|
80
109
|
"update:modelValue": (...args: any[]) => void;
|
|
110
|
+
debounce: (...args: any[]) => void;
|
|
81
111
|
enter: (...args: any[]) => void;
|
|
82
112
|
"country-changed": (...args: any[]) => void;
|
|
83
113
|
space: (...args: any[]) => void;
|
|
84
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<
|
|
85
|
-
modelValue: string
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
autoFormat: boolean;
|
|
89
|
-
customValidate: boolean;
|
|
90
|
-
defaultCountry: string;
|
|
91
|
-
placeholder: string;
|
|
92
|
-
searchable: boolean;
|
|
93
|
-
dropdownOptions: () => {
|
|
94
|
-
disabled: boolean;
|
|
95
|
-
showFlags: boolean;
|
|
96
|
-
showDialCodeInSelection: boolean;
|
|
97
|
-
showDialCodeInList: boolean;
|
|
98
|
-
searchable: boolean;
|
|
114
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
115
|
+
modelValue: import('vue').PropType<string>;
|
|
116
|
+
label: {
|
|
117
|
+
type: import('vue').PropType<string>;
|
|
99
118
|
};
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
excludeCountries: () => never[];
|
|
103
|
-
inputOptions: () => {
|
|
104
|
-
showDialCode: boolean;
|
|
105
|
-
autofocus: boolean;
|
|
106
|
-
'aria-describedby': string;
|
|
107
|
-
id: string;
|
|
108
|
-
maxlength: number;
|
|
109
|
-
name: string;
|
|
110
|
-
readonly: boolean;
|
|
111
|
-
tabindex: number;
|
|
119
|
+
id: {
|
|
120
|
+
type: import('vue').PropType<string>;
|
|
112
121
|
};
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
122
|
+
placeholder: {
|
|
123
|
+
type: import('vue').PropType<string>;
|
|
124
|
+
default: string;
|
|
125
|
+
};
|
|
126
|
+
required: {
|
|
127
|
+
type: import('vue').PropType<boolean>;
|
|
128
|
+
default: boolean;
|
|
129
|
+
};
|
|
130
|
+
disabled: {
|
|
131
|
+
type: import('vue').PropType<boolean>;
|
|
132
|
+
default: boolean;
|
|
133
|
+
};
|
|
134
|
+
autocomplete: {
|
|
135
|
+
type: import('vue').PropType<"tel" | "on" | "off">;
|
|
136
|
+
default: string;
|
|
137
|
+
};
|
|
138
|
+
debounceDelay: {
|
|
139
|
+
type: import('vue').PropType<number>;
|
|
140
|
+
default: number;
|
|
141
|
+
};
|
|
142
|
+
searchable: {
|
|
143
|
+
type: import('vue').PropType<boolean>;
|
|
144
|
+
default: boolean;
|
|
145
|
+
};
|
|
146
|
+
mode: {
|
|
147
|
+
type: import('vue').PropType<NumberFormat>;
|
|
148
|
+
default: string;
|
|
149
|
+
};
|
|
150
|
+
allCountries: {
|
|
151
|
+
type: import('vue').PropType<Country[]>;
|
|
152
|
+
default: () => Country[];
|
|
153
|
+
};
|
|
154
|
+
autoFormat: {
|
|
155
|
+
type: import('vue').PropType<boolean>;
|
|
156
|
+
default: boolean;
|
|
157
|
+
};
|
|
158
|
+
customValidate: {
|
|
159
|
+
type: import('vue').PropType<boolean | RegExp>;
|
|
160
|
+
default: boolean;
|
|
161
|
+
};
|
|
162
|
+
defaultCountry: {
|
|
163
|
+
type: import('vue').PropType<string | number>;
|
|
164
|
+
default: string;
|
|
165
|
+
};
|
|
166
|
+
autoDefaultCountry: {
|
|
167
|
+
type: import('vue').PropType<boolean>;
|
|
168
|
+
default: boolean;
|
|
169
|
+
};
|
|
170
|
+
inputOptions: {
|
|
171
|
+
type: import('vue').PropType<Partial<{
|
|
172
|
+
showDialCode: boolean;
|
|
173
|
+
autofocus: boolean;
|
|
174
|
+
'aria-describedby': string;
|
|
175
|
+
id: string;
|
|
176
|
+
maxlength: number;
|
|
177
|
+
minlength: number;
|
|
178
|
+
pattern: string;
|
|
179
|
+
name: string;
|
|
180
|
+
readonly: boolean;
|
|
181
|
+
tabindex: number;
|
|
182
|
+
style: Raw<StyleValue>;
|
|
183
|
+
placeholder: string;
|
|
184
|
+
}>>;
|
|
185
|
+
};
|
|
186
|
+
dropdownOptions: {
|
|
187
|
+
type: import('vue').PropType<Partial<{
|
|
188
|
+
hide: boolean;
|
|
189
|
+
disabled: boolean;
|
|
190
|
+
showFlags: boolean;
|
|
191
|
+
showDialCodeInSelection: boolean;
|
|
192
|
+
showDialCodeInList: boolean;
|
|
193
|
+
searchable: boolean;
|
|
194
|
+
}>>;
|
|
195
|
+
};
|
|
196
|
+
excludeCountries: {
|
|
197
|
+
type: import('vue').PropType<string[]>;
|
|
198
|
+
default: () => never[];
|
|
199
|
+
};
|
|
200
|
+
onlyCountries: {
|
|
201
|
+
type: import('vue').PropType<string[]>;
|
|
202
|
+
default: () => never[];
|
|
203
|
+
};
|
|
204
|
+
preferredCountries: {
|
|
205
|
+
type: import('vue').PropType<string[]>;
|
|
206
|
+
default: () => never[];
|
|
207
|
+
};
|
|
208
|
+
parseArg: {
|
|
209
|
+
type: import('vue').PropType<{
|
|
210
|
+
extract?: boolean | undefined;
|
|
211
|
+
}>;
|
|
212
|
+
};
|
|
213
|
+
}>> & {
|
|
119
214
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
120
215
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
121
216
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
122
217
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
123
218
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
219
|
+
onDebounce?: ((...args: any[]) => any) | undefined;
|
|
124
220
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
125
221
|
"onCountry-changed"?: ((...args: any[]) => any) | undefined;
|
|
126
222
|
onSpace?: ((...args: any[]) => any) | undefined;
|
|
127
223
|
}, {
|
|
128
|
-
modelValue: string;
|
|
129
224
|
placeholder: string;
|
|
130
225
|
required: boolean;
|
|
131
226
|
disabled: boolean;
|
|
132
|
-
autocomplete: "on" | "off";
|
|
227
|
+
autocomplete: "tel" | "on" | "off";
|
|
228
|
+
debounceDelay: number;
|
|
133
229
|
searchable: boolean;
|
|
134
|
-
mode:
|
|
230
|
+
mode: NumberFormat;
|
|
135
231
|
allCountries: Country[];
|
|
136
232
|
autoFormat: boolean;
|
|
137
233
|
customValidate: boolean | RegExp;
|
|
138
234
|
defaultCountry: string | number;
|
|
139
235
|
autoDefaultCountry: boolean;
|
|
140
|
-
dropdownOptions: DropdownOptions;
|
|
141
236
|
excludeCountries: string[];
|
|
142
|
-
inputOptions: InputOptions;
|
|
143
|
-
invalidMsg: string;
|
|
144
237
|
onlyCountries: string[];
|
|
145
238
|
preferredCountries: string[];
|
|
146
239
|
}, {}>;
|
|
147
240
|
export default _default;
|
|
148
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
149
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
150
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
151
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
152
|
-
} : {
|
|
153
|
-
type: import('vue').PropType<T[K]>;
|
|
154
|
-
required: true;
|
|
155
|
-
};
|
|
156
|
-
};
|
|
157
|
-
type __VLS_WithDefaults<P, D> = {
|
|
158
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
159
|
-
default: D[K];
|
|
160
|
-
}> : P[K];
|
|
161
|
-
};
|
|
162
|
-
type __VLS_Prettify<T> = {
|
|
163
|
-
[K in keyof T]: T[K];
|
|
164
|
-
} & {};
|
|
165
241
|
//# sourceMappingURL=TelInput.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TelInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/TelInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TelInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/TelInput.vue"],"names":[],"mappings":"AA0GA;AAEA,OAAO,EAMN,KAAK,OAAO,EAEZ,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,KAAK,GAAG,EAAE,KAAK,UAAU,EAAoB,MAAM,KAAK,CAAC;AAClE,OAAO,EAEN,KAAK,YAAY,EAEjB,MAAM,mBAAmB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmoB3B,wBAUG"}
|