@win2win/shared-ui 0.1.41 → 0.1.43
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/Data/Field.vue.d.ts +61 -0
- package/dist/components/Data/Field.vue.d.ts.map +1 -0
- package/dist/components/{DynamicForm/FormStepsIndicator.vue.d.ts → Data/IndicatorColor.vue.d.ts} +3 -6
- package/dist/components/Data/IndicatorColor.vue.d.ts.map +1 -0
- package/dist/components/DynamicForm/DynamicForm.vue.d.ts +0 -1
- package/dist/components/DynamicForm/DynamicForm.vue.d.ts.map +1 -1
- package/dist/components/Inputs/WinInput.vue.d.ts +40 -68
- package/dist/components/Inputs/WinInput.vue.d.ts.map +1 -1
- package/dist/components/Inputs/WinSelect.vue.d.ts +82 -227
- package/dist/components/Inputs/WinSelect.vue.d.ts.map +1 -1
- package/dist/components/MapLocationForm/GeocodingInput.vue.d.ts +34 -0
- package/dist/components/MapLocationForm/GeocodingInput.vue.d.ts.map +1 -0
- package/dist/components/MapLocationForm/MapLocationForm.vue.d.ts +55 -0
- package/dist/components/MapLocationForm/MapLocationForm.vue.d.ts.map +1 -0
- package/dist/components/MapLocationForm/consts.d.ts +5 -0
- package/dist/components/MapLocationForm/consts.d.ts.map +1 -0
- package/dist/components/MapLocationForm/helpers.d.ts +2 -0
- package/dist/components/MapLocationForm/helpers.d.ts.map +1 -0
- package/dist/components/MapLocationForm/models.d.ts +50 -0
- package/dist/components/MapLocationForm/models.d.ts.map +1 -0
- package/dist/components/MapLocationForm/useGeocoding.d.ts +26 -0
- package/dist/components/MapLocationForm/useGeocoding.d.ts.map +1 -0
- package/dist/components/TestUi.vue.d.ts +1 -0
- package/dist/components/TestUi.vue.d.ts.map +1 -1
- package/dist/components/pdf/SectionsContainer.vue.d.ts +2 -2
- package/dist/components/pdf/SectionsContainer.vue.d.ts.map +1 -1
- package/dist/components/pdf/sections/TextSection.vue.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/w2w-shared-ui.js +3902 -3790
- package/dist/w2w-shared-ui.umd.cjs +13 -13
- package/package.json +4 -2
- package/dist/components/DynamicForm/Controls/DynamicArrayControl.vue.d.ts +0 -23
- package/dist/components/DynamicForm/Controls/DynamicArrayControl.vue.d.ts.map +0 -1
- package/dist/components/DynamicForm/Controls/ObjectControl.vue.d.ts +0 -23
- package/dist/components/DynamicForm/Controls/ObjectControl.vue.d.ts.map +0 -1
- package/dist/components/DynamicForm/FormStepsIndicator.vue.d.ts.map +0 -1
- package/dist/components/DynamicForm/MapLocation.vue.d.ts +0 -3
- package/dist/components/DynamicForm/MapLocation.vue.d.ts.map +0 -1
- package/dist/components/DynamicForm/SelectCurrencyControl.vue.d.ts +0 -23
- package/dist/components/DynamicForm/SelectCurrencyControl.vue.d.ts.map +0 -1
- package/dist/components/DynamicForm/SelectZoneControl.vue.d.ts +0 -23
- package/dist/components/DynamicForm/SelectZoneControl.vue.d.ts.map +0 -1
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
sm?: boolean | undefined;
|
|
3
|
+
label: string;
|
|
4
|
+
value: string | number | (string | number)[];
|
|
5
|
+
row?: boolean | undefined;
|
|
6
|
+
loading?: boolean | undefined;
|
|
7
|
+
hoverable?: boolean | undefined;
|
|
8
|
+
bordered?: boolean | undefined;
|
|
9
|
+
colouredLabel?: boolean | undefined;
|
|
10
|
+
dense?: boolean | undefined;
|
|
11
|
+
indicatorColor?: string | undefined;
|
|
12
|
+
format?: ((v: any) => string) | undefined;
|
|
13
|
+
badge?: ((v: any) => string) | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
row: boolean;
|
|
16
|
+
hoverable: boolean;
|
|
17
|
+
dense: boolean;
|
|
18
|
+
colouredLabel: boolean;
|
|
19
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
20
|
+
sm?: boolean | undefined;
|
|
21
|
+
label: string;
|
|
22
|
+
value: string | number | (string | number)[];
|
|
23
|
+
row?: boolean | undefined;
|
|
24
|
+
loading?: boolean | undefined;
|
|
25
|
+
hoverable?: boolean | undefined;
|
|
26
|
+
bordered?: boolean | undefined;
|
|
27
|
+
colouredLabel?: boolean | undefined;
|
|
28
|
+
dense?: boolean | undefined;
|
|
29
|
+
indicatorColor?: string | undefined;
|
|
30
|
+
format?: ((v: any) => string) | undefined;
|
|
31
|
+
badge?: ((v: any) => string) | undefined;
|
|
32
|
+
}>, {
|
|
33
|
+
row: boolean;
|
|
34
|
+
hoverable: boolean;
|
|
35
|
+
dense: boolean;
|
|
36
|
+
colouredLabel: boolean;
|
|
37
|
+
}>>>, {
|
|
38
|
+
row: boolean;
|
|
39
|
+
hoverable: boolean;
|
|
40
|
+
colouredLabel: boolean;
|
|
41
|
+
dense: boolean;
|
|
42
|
+
}, {}>;
|
|
43
|
+
export default _default;
|
|
44
|
+
type __VLS_WithDefaults<P, D> = {
|
|
45
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
46
|
+
default: D[K];
|
|
47
|
+
}> : P[K];
|
|
48
|
+
};
|
|
49
|
+
type __VLS_Prettify<T> = {
|
|
50
|
+
[K in keyof T]: T[K];
|
|
51
|
+
} & {};
|
|
52
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
53
|
+
type __VLS_TypePropsToOption<T> = {
|
|
54
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
55
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
56
|
+
} : {
|
|
57
|
+
type: import('vue').PropType<T[K]>;
|
|
58
|
+
required: true;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
//# sourceMappingURL=Field.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Field.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Data/Field.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+LA,wBAMG;AAOH,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GACvC,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AAEN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AAExD,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|
package/dist/components/{DynamicForm/FormStepsIndicator.vue.d.ts → Data/IndicatorColor.vue.d.ts}
RENAMED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
import { FormStep } from './models';
|
|
2
1
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
|
-
|
|
4
|
-
formSteps: FormStep[];
|
|
2
|
+
color?: string | undefined;
|
|
5
3
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
6
|
-
|
|
7
|
-
formSteps: FormStep[];
|
|
4
|
+
color?: string | undefined;
|
|
8
5
|
}>>>, {}, {}>;
|
|
9
6
|
export default _default;
|
|
10
7
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -16,4 +13,4 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
16
13
|
required: true;
|
|
17
14
|
};
|
|
18
15
|
};
|
|
19
|
-
//# sourceMappingURL=
|
|
16
|
+
//# sourceMappingURL=IndicatorColor.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IndicatorColor.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Data/IndicatorColor.vue"],"names":[],"mappings":";;;;;AAoIA,wBAMG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamicForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicForm/DynamicForm.vue"],"names":[],"mappings":"AA6DA,OAAO,EAAE,OAAO,EAAY,MAAM,UAAU,CAAC;;;;;;;;;;;;AAqJ7C,wBAAwG;
|
|
1
|
+
{"version":3,"file":"DynamicForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicForm/DynamicForm.vue"],"names":[],"mappings":"AA6DA,OAAO,EAAE,OAAO,EAAY,MAAM,UAAU,CAAC;;;;;;;;;;;;AAqJ7C,wBAAwG;AAOxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACpC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC;AAEN,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|
|
@@ -1,89 +1,61 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
rules?: any;
|
|
4
|
-
label?: string;
|
|
5
|
-
placeholder?: string;
|
|
6
|
-
mask?: string;
|
|
7
|
-
prefix?: string;
|
|
8
|
-
suffix?: string;
|
|
9
|
-
hint?: string;
|
|
10
|
-
maxlength?: number;
|
|
11
|
-
type?: 'text' | 'number';
|
|
12
|
-
transparent?: boolean;
|
|
13
|
-
width?: string;
|
|
14
|
-
height?: string;
|
|
15
|
-
inputHeight?: string;
|
|
16
|
-
readonly?: boolean;
|
|
17
|
-
fillMask?: boolean;
|
|
18
|
-
minWidth?: string;
|
|
19
|
-
inputStyle?: string | object;
|
|
20
|
-
labelStyle?: string;
|
|
21
|
-
hintOptions?: any;
|
|
22
|
-
counter?: boolean;
|
|
23
|
-
dense?: boolean;
|
|
1
|
+
import { QInputProps } from "quasar";
|
|
2
|
+
declare let __VLS_typeProps: QInputProps & {
|
|
24
3
|
required?: boolean;
|
|
4
|
+
height?: string;
|
|
5
|
+
step?: number;
|
|
6
|
+
currency?: boolean;
|
|
7
|
+
decimals?: number;
|
|
8
|
+
useFieldOnReadonly?: boolean;
|
|
9
|
+
fieldFormat?: (v: any) => any;
|
|
10
|
+
percentage?: boolean;
|
|
11
|
+
currencySymbol?: string;
|
|
12
|
+
rows?: string;
|
|
25
13
|
};
|
|
26
|
-
declare function focus(): void;
|
|
27
14
|
type __VLS_PublicProps = {
|
|
28
|
-
modelValue?:
|
|
15
|
+
modelValue?: number | string | null;
|
|
29
16
|
} & typeof __VLS_typeProps;
|
|
30
17
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
31
18
|
type: string;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
fillMask: boolean;
|
|
36
|
-
minWidth: string;
|
|
37
|
-
inputStyle: string;
|
|
38
|
-
labelStyle: string;
|
|
39
|
-
hintOptions: {
|
|
40
|
-
color: string;
|
|
41
|
-
position: string;
|
|
42
|
-
};
|
|
43
|
-
counter: boolean;
|
|
44
|
-
dense: boolean;
|
|
19
|
+
disable: boolean;
|
|
20
|
+
loading: boolean;
|
|
21
|
+
readonly: boolean;
|
|
45
22
|
required: boolean;
|
|
23
|
+
height: string;
|
|
24
|
+
step: number;
|
|
25
|
+
decimals: number;
|
|
26
|
+
useFieldOnReadonly: boolean;
|
|
27
|
+
currencySymbol: string;
|
|
46
28
|
}>, {
|
|
47
|
-
|
|
29
|
+
validate: () => boolean | Promise<boolean> | undefined;
|
|
48
30
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
49
|
-
"update:modelValue": (modelValue:
|
|
31
|
+
"update:modelValue": (modelValue: string | number | null) => void;
|
|
50
32
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
51
33
|
type: string;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
fillMask: boolean;
|
|
56
|
-
minWidth: string;
|
|
57
|
-
inputStyle: string;
|
|
58
|
-
labelStyle: string;
|
|
59
|
-
hintOptions: {
|
|
60
|
-
color: string;
|
|
61
|
-
position: string;
|
|
62
|
-
};
|
|
63
|
-
counter: boolean;
|
|
64
|
-
dense: boolean;
|
|
34
|
+
disable: boolean;
|
|
35
|
+
loading: boolean;
|
|
36
|
+
readonly: boolean;
|
|
65
37
|
required: boolean;
|
|
38
|
+
height: string;
|
|
39
|
+
step: number;
|
|
40
|
+
decimals: number;
|
|
41
|
+
useFieldOnReadonly: boolean;
|
|
42
|
+
currencySymbol: string;
|
|
66
43
|
}>>> & {
|
|
67
|
-
"onUpdate:modelValue"?: ((modelValue:
|
|
44
|
+
"onUpdate:modelValue"?: ((modelValue: string | number | null) => any) | undefined;
|
|
68
45
|
}, {
|
|
69
46
|
required: boolean;
|
|
70
|
-
type: "number" | "text";
|
|
47
|
+
type: "number" | "email" | "url" | "text" | "tel" | "textarea" | "date" | "time" | "search" | "password" | "file" | "datetime-local";
|
|
71
48
|
height: string;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
hintOptions: any;
|
|
80
|
-
counter: boolean;
|
|
49
|
+
loading: boolean;
|
|
50
|
+
disable: boolean;
|
|
51
|
+
readonly: boolean;
|
|
52
|
+
step: number;
|
|
53
|
+
decimals: number;
|
|
54
|
+
useFieldOnReadonly: boolean;
|
|
55
|
+
currencySymbol: string;
|
|
81
56
|
}, {}>, {
|
|
82
|
-
|
|
83
|
-
class: string;
|
|
84
|
-
}): any;
|
|
57
|
+
prepend?(_: {}): any;
|
|
85
58
|
append?(_: {}): any;
|
|
86
|
-
bottom?(_: {}): any;
|
|
87
59
|
}>;
|
|
88
60
|
export default _default;
|
|
89
61
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WinInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Inputs/WinInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"WinInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Inputs/WinInput.vue"],"names":[],"mappings":"AAqHA,OAAO,EAAU,WAAW,EAAE,MAAM,QAAQ,CAAC;AAQ7C,QAAA,IAAI,eAAe,EAAG,WAAW,GAAG;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,GAAG,CAAC;IAC9B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AA8CN,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;CACnC,GAAG,OAAO,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+I3B,wBAAwG;AAOxG,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GACvC,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AAEN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AAExD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACpC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC;AAEN,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|
|
@@ -1,234 +1,89 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
type: BooleanConstructor;
|
|
14
|
-
default: boolean;
|
|
15
|
-
require: boolean;
|
|
16
|
-
};
|
|
17
|
-
glass: {
|
|
18
|
-
type: BooleanConstructor;
|
|
19
|
-
default: boolean;
|
|
20
|
-
require: boolean;
|
|
21
|
-
};
|
|
22
|
-
loading: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
require: boolean;
|
|
26
|
-
};
|
|
27
|
-
mapOptions: {
|
|
28
|
-
type: BooleanConstructor;
|
|
29
|
-
default: boolean;
|
|
30
|
-
require: boolean;
|
|
31
|
-
};
|
|
32
|
-
label: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
default: string;
|
|
35
|
-
require: boolean;
|
|
36
|
-
};
|
|
37
|
-
keyValue: {
|
|
38
|
-
type: StringConstructor;
|
|
39
|
-
default: string;
|
|
40
|
-
require: boolean;
|
|
41
|
-
};
|
|
42
|
-
options: {
|
|
43
|
-
type: {
|
|
44
|
-
(arrayLength: number): any[];
|
|
45
|
-
(...items: any[]): any[];
|
|
46
|
-
new (arrayLength: number): any[];
|
|
47
|
-
new (...items: any[]): any[];
|
|
48
|
-
isArray(arg: any): arg is any[];
|
|
49
|
-
readonly prototype: any[];
|
|
50
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
51
|
-
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
52
|
-
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
53
|
-
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
54
|
-
of<T_4>(...items: T_4[]): T_4[];
|
|
55
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
56
|
-
};
|
|
57
|
-
default(): never[];
|
|
58
|
-
};
|
|
59
|
-
fnDescripcion: {
|
|
60
|
-
type: FunctionConstructor;
|
|
61
|
-
required: true;
|
|
62
|
-
};
|
|
63
|
-
width: {
|
|
64
|
-
type: StringConstructor;
|
|
65
|
-
default: string;
|
|
66
|
-
require: boolean;
|
|
67
|
-
};
|
|
68
|
-
height: {
|
|
69
|
-
type: StringConstructor;
|
|
70
|
-
default: string;
|
|
71
|
-
require: boolean;
|
|
72
|
-
};
|
|
73
|
-
count: {
|
|
74
|
-
type: NumberConstructor;
|
|
75
|
-
default: number;
|
|
76
|
-
require: boolean;
|
|
77
|
-
};
|
|
78
|
-
showItemsCount: {
|
|
79
|
-
type: BooleanConstructor;
|
|
80
|
-
default: boolean;
|
|
81
|
-
require: boolean;
|
|
82
|
-
};
|
|
83
|
-
acceptInput: {
|
|
84
|
-
type: BooleanConstructor;
|
|
85
|
-
default: boolean;
|
|
86
|
-
require: boolean;
|
|
87
|
-
};
|
|
88
|
-
clear: {
|
|
89
|
-
type: BooleanConstructor;
|
|
90
|
-
default: boolean;
|
|
91
|
-
require: boolean;
|
|
92
|
-
};
|
|
93
|
-
readonly: {
|
|
94
|
-
type: BooleanConstructor;
|
|
95
|
-
default: boolean;
|
|
96
|
-
require: boolean;
|
|
97
|
-
};
|
|
98
|
-
}, unknown, {
|
|
99
|
-
localModel: any;
|
|
100
|
-
isFocus: boolean;
|
|
101
|
-
useInput: boolean;
|
|
102
|
-
optionsValues: any[];
|
|
103
|
-
}, {
|
|
104
|
-
labelSize(): "17.5px" | "15px";
|
|
105
|
-
}, {
|
|
106
|
-
updateValue(optionSelected: any): void;
|
|
107
|
-
filterFn(val: any, update: any): void;
|
|
108
|
-
handleInputChange(event: any): void;
|
|
109
|
-
updateLocalModel(val: any): void;
|
|
110
|
-
clearEvent(): void;
|
|
111
|
-
handleFocus(): void;
|
|
112
|
-
handleBlur(): void;
|
|
113
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "update:modelValue" | "input" | "inputChange")[], "clear" | "update:modelValue" | "input" | "inputChange", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
114
|
-
modelValue: {
|
|
115
|
-
type: (NumberConstructor | StringConstructor | ObjectConstructor)[];
|
|
116
|
-
default: string;
|
|
117
|
-
require: boolean;
|
|
118
|
-
};
|
|
119
|
-
hideSelected: {
|
|
120
|
-
type: BooleanConstructor;
|
|
121
|
-
default: boolean;
|
|
122
|
-
require: boolean;
|
|
123
|
-
};
|
|
124
|
-
fillInput: {
|
|
125
|
-
type: BooleanConstructor;
|
|
126
|
-
default: boolean;
|
|
127
|
-
require: boolean;
|
|
128
|
-
};
|
|
129
|
-
glass: {
|
|
130
|
-
type: BooleanConstructor;
|
|
131
|
-
default: boolean;
|
|
132
|
-
require: boolean;
|
|
133
|
-
};
|
|
134
|
-
loading: {
|
|
135
|
-
type: BooleanConstructor;
|
|
136
|
-
default: boolean;
|
|
137
|
-
require: boolean;
|
|
138
|
-
};
|
|
139
|
-
mapOptions: {
|
|
140
|
-
type: BooleanConstructor;
|
|
141
|
-
default: boolean;
|
|
142
|
-
require: boolean;
|
|
143
|
-
};
|
|
144
|
-
label: {
|
|
145
|
-
type: StringConstructor;
|
|
146
|
-
default: string;
|
|
147
|
-
require: boolean;
|
|
148
|
-
};
|
|
149
|
-
keyValue: {
|
|
150
|
-
type: StringConstructor;
|
|
151
|
-
default: string;
|
|
152
|
-
require: boolean;
|
|
153
|
-
};
|
|
154
|
-
options: {
|
|
155
|
-
type: {
|
|
156
|
-
(arrayLength: number): any[];
|
|
157
|
-
(...items: any[]): any[];
|
|
158
|
-
new (arrayLength: number): any[];
|
|
159
|
-
new (...items: any[]): any[];
|
|
160
|
-
isArray(arg: any): arg is any[];
|
|
161
|
-
readonly prototype: any[];
|
|
162
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
163
|
-
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
164
|
-
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
165
|
-
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
166
|
-
of<T_4>(...items: T_4[]): T_4[];
|
|
167
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
168
|
-
};
|
|
169
|
-
default(): never[];
|
|
170
|
-
};
|
|
171
|
-
fnDescripcion: {
|
|
172
|
-
type: FunctionConstructor;
|
|
173
|
-
required: true;
|
|
174
|
-
};
|
|
175
|
-
width: {
|
|
176
|
-
type: StringConstructor;
|
|
177
|
-
default: string;
|
|
178
|
-
require: boolean;
|
|
179
|
-
};
|
|
180
|
-
height: {
|
|
181
|
-
type: StringConstructor;
|
|
182
|
-
default: string;
|
|
183
|
-
require: boolean;
|
|
184
|
-
};
|
|
185
|
-
count: {
|
|
186
|
-
type: NumberConstructor;
|
|
187
|
-
default: number;
|
|
188
|
-
require: boolean;
|
|
189
|
-
};
|
|
190
|
-
showItemsCount: {
|
|
191
|
-
type: BooleanConstructor;
|
|
192
|
-
default: boolean;
|
|
193
|
-
require: boolean;
|
|
194
|
-
};
|
|
195
|
-
acceptInput: {
|
|
196
|
-
type: BooleanConstructor;
|
|
197
|
-
default: boolean;
|
|
198
|
-
require: boolean;
|
|
199
|
-
};
|
|
200
|
-
clear: {
|
|
201
|
-
type: BooleanConstructor;
|
|
202
|
-
default: boolean;
|
|
203
|
-
require: boolean;
|
|
204
|
-
};
|
|
205
|
-
readonly: {
|
|
206
|
-
type: BooleanConstructor;
|
|
207
|
-
default: boolean;
|
|
208
|
-
require: boolean;
|
|
209
|
-
};
|
|
210
|
-
}>> & {
|
|
211
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
212
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
213
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
214
|
-
onInputChange?: ((...args: any[]) => any) | undefined;
|
|
215
|
-
}, {
|
|
216
|
-
clear: boolean;
|
|
1
|
+
import { QSelectProps } from "quasar";
|
|
2
|
+
declare let __VLS_typeProps: QSelectProps & {
|
|
3
|
+
showOptionsOnChange?: boolean;
|
|
4
|
+
height?: string;
|
|
5
|
+
filterBy?: string[];
|
|
6
|
+
useFieldOnReadonly?: boolean;
|
|
7
|
+
required: boolean;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_PublicProps = {
|
|
10
|
+
modelValue?: any;
|
|
11
|
+
} & typeof __VLS_typeProps;
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
217
13
|
label: string;
|
|
218
|
-
|
|
219
|
-
|
|
14
|
+
placeholder: string;
|
|
15
|
+
type: string;
|
|
16
|
+
disable: boolean;
|
|
17
|
+
loading: boolean;
|
|
18
|
+
readonly: boolean;
|
|
19
|
+
mapOptions: boolean;
|
|
20
|
+
optionLabel: string;
|
|
21
|
+
optionValue: string;
|
|
22
|
+
emitValue: boolean;
|
|
220
23
|
height: string;
|
|
221
|
-
|
|
24
|
+
useFieldOnReadonly: boolean;
|
|
25
|
+
optionsSelectedClass: string;
|
|
26
|
+
required: boolean;
|
|
27
|
+
options: any;
|
|
28
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
|
+
"update:modelValue": (modelValue: any) => void;
|
|
30
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
31
|
+
label: string;
|
|
32
|
+
placeholder: string;
|
|
33
|
+
type: string;
|
|
34
|
+
disable: boolean;
|
|
35
|
+
loading: boolean;
|
|
222
36
|
readonly: boolean;
|
|
37
|
+
mapOptions: boolean;
|
|
38
|
+
optionLabel: string;
|
|
39
|
+
optionValue: string;
|
|
40
|
+
emitValue: boolean;
|
|
41
|
+
height: string;
|
|
42
|
+
useFieldOnReadonly: boolean;
|
|
43
|
+
optionsSelectedClass: string;
|
|
44
|
+
required: boolean;
|
|
45
|
+
options: any;
|
|
46
|
+
}>>> & {
|
|
47
|
+
"onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
|
|
48
|
+
}, {
|
|
49
|
+
required: boolean;
|
|
50
|
+
label: string;
|
|
51
|
+
options: readonly any[];
|
|
52
|
+
height: string;
|
|
223
53
|
loading: boolean;
|
|
54
|
+
disable: boolean;
|
|
55
|
+
readonly: boolean;
|
|
56
|
+
useFieldOnReadonly: boolean;
|
|
57
|
+
emitValue: boolean;
|
|
58
|
+
optionLabel: string | ((option: any) => string);
|
|
224
59
|
mapOptions: boolean;
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
acceptInput: boolean;
|
|
232
|
-
}, {}>;
|
|
60
|
+
optionValue: string | ((option: any) => any);
|
|
61
|
+
optionsSelectedClass: string;
|
|
62
|
+
}, {}>, {
|
|
63
|
+
append?(_: {}): any;
|
|
64
|
+
prepend?(_: {}): any;
|
|
65
|
+
}>;
|
|
233
66
|
export default _default;
|
|
67
|
+
type __VLS_WithDefaults<P, D> = {
|
|
68
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
69
|
+
default: D[K];
|
|
70
|
+
}> : P[K];
|
|
71
|
+
};
|
|
72
|
+
type __VLS_Prettify<T> = {
|
|
73
|
+
[K in keyof T]: T[K];
|
|
74
|
+
} & {};
|
|
75
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
76
|
+
new (): {
|
|
77
|
+
$slots: S;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
81
|
+
type __VLS_TypePropsToOption<T> = {
|
|
82
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
83
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
84
|
+
} : {
|
|
85
|
+
type: import('vue').PropType<T[K]>;
|
|
86
|
+
required: true;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
234
89
|
//# sourceMappingURL=WinSelect.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WinSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Inputs/WinSelect.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"WinSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Inputs/WinSelect.vue"],"names":[],"mappings":"AAgNA,OAAO,EAAW,YAAY,EAAE,MAAM,QAAQ,CAAC;AAQ/C,QAAA,IAAI,eAAe,EAAG,YAAY,GAAG;IAC/B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC;AAwIN,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,OAAO,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyK3B,wBAAwG;AAOxG,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GACvC,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AAEN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AAExD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACpC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC;AAEN,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
readonly: boolean;
|
|
3
|
+
}>, {
|
|
4
|
+
readonly: boolean;
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
onLocation: (...args: any[]) => void;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
|
+
readonly: boolean;
|
|
9
|
+
}>, {
|
|
10
|
+
readonly: boolean;
|
|
11
|
+
}>>> & {
|
|
12
|
+
onOnLocation?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
}, {
|
|
14
|
+
readonly: boolean;
|
|
15
|
+
}, {}>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithDefaults<P, D> = {
|
|
18
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
19
|
+
default: D[K];
|
|
20
|
+
}> : P[K];
|
|
21
|
+
};
|
|
22
|
+
type __VLS_Prettify<T> = {
|
|
23
|
+
[K in keyof T]: T[K];
|
|
24
|
+
} & {};
|
|
25
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
|
+
type __VLS_TypePropsToOption<T> = {
|
|
27
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
28
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
29
|
+
} : {
|
|
30
|
+
type: import('vue').PropType<T[K]>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=GeocodingInput.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GeocodingInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/MapLocationForm/GeocodingInput.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;AAoJA,wBAOG;AAOH,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GACvC,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AAEN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AAExD,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|