@win2win/shared-ui 0.3.87 → 0.3.89
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/pdf/PdfContainer.vue.d.ts.map +1 -1
- package/dist/components/pdf/sections/SignatureSection.vue.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/w2w-shared-ui.js +8248 -7573
- package/dist/w2w-shared-ui.umd.cjs +24 -24
- package/package.json +2 -3
- package/dist/components/Inputs/WinInput.vue.d.ts +0 -48
- package/dist/components/Inputs/WinInput.vue.d.ts.map +0 -1
- package/dist/components/Inputs/WinSelect.vue.d.ts +0 -44
- package/dist/components/Inputs/WinSelect.vue.d.ts.map +0 -1
- package/dist/components/MapLocationForm/GeocodingInput.vue.d.ts +0 -12
- package/dist/components/MapLocationForm/GeocodingInput.vue.d.ts.map +0 -1
- package/dist/components/MapLocationForm/MapLocationForm.vue.d.ts +0 -26
- package/dist/components/MapLocationForm/MapLocationForm.vue.d.ts.map +0 -1
- package/dist/components/MapLocationForm/consts.d.ts +0 -5
- package/dist/components/MapLocationForm/consts.d.ts.map +0 -1
- package/dist/components/MapLocationForm/helpers.d.ts +0 -2
- package/dist/components/MapLocationForm/helpers.d.ts.map +0 -1
- package/dist/components/MapLocationForm/models.d.ts +0 -50
- package/dist/components/MapLocationForm/models.d.ts.map +0 -1
- package/dist/components/MapLocationForm/useGeocoding.d.ts +0 -46
- package/dist/components/MapLocationForm/useGeocoding.d.ts.map +0 -1
- package/dist/components/pdf/PdfPage.vue.d.ts +0 -3
- package/dist/components/pdf/PdfPage.vue.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@win2win/shared-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.89",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -29,8 +29,7 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"pdf-vue3": "^1.0.12",
|
|
31
31
|
"pinia": "^2.1.0",
|
|
32
|
-
"vue-signature-pad": "^3.0.2"
|
|
33
|
-
"vue3-google-map": "^0.21.1"
|
|
32
|
+
"vue-signature-pad": "^3.0.2"
|
|
34
33
|
},
|
|
35
34
|
"peerDependencies": {
|
|
36
35
|
"@quasar/extras": "^1.16.0",
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { QInputProps } from "quasar";
|
|
2
|
-
type __VLS_Props = QInputProps & {
|
|
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;
|
|
13
|
-
};
|
|
14
|
-
type __VLS_PublicProps = __VLS_Props & {
|
|
15
|
-
modelValue?: number | string | null;
|
|
16
|
-
};
|
|
17
|
-
declare var __VLS_16: {}, __VLS_18: {};
|
|
18
|
-
type __VLS_Slots = {} & {
|
|
19
|
-
prepend?: (props: typeof __VLS_16) => any;
|
|
20
|
-
} & {
|
|
21
|
-
append?: (props: typeof __VLS_18) => any;
|
|
22
|
-
};
|
|
23
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
24
|
-
validate: () => boolean | Promise<boolean> | undefined;
|
|
25
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
-
"update:modelValue": (value: string | number | null | undefined) => any;
|
|
27
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
28
|
-
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
29
|
-
}>, {
|
|
30
|
-
loading: boolean;
|
|
31
|
-
type: "number" | "search" | "text" | "textarea" | "time" | "password" | "date" | "email" | "tel" | "file" | "url" | "datetime-local";
|
|
32
|
-
disable: boolean;
|
|
33
|
-
required: boolean;
|
|
34
|
-
height: string;
|
|
35
|
-
step: number;
|
|
36
|
-
readonly: boolean;
|
|
37
|
-
useFieldOnReadonly: boolean;
|
|
38
|
-
decimals: number;
|
|
39
|
-
currencySymbol: string;
|
|
40
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
41
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
42
|
-
export default _default;
|
|
43
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
44
|
-
new (): {
|
|
45
|
-
$slots: S;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
//# sourceMappingURL=WinInput.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
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;AAM7C,KAAK,WAAW,GAAG,WAAW,GAAG;IAC3B,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;AA4CN,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;CACnC,CAAC;AA+GF,QAAA,IAAyB,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACpE,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AA4B/C,QAAA,MAAM,eAAe;;;;;;;;;;cAtMJ,OAAO;YACT,MAAM;UACR,MAAM;;wBAGQ,OAAO;cADjB,MAAM;oBAIA,MAAM;6EAuM3B,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { QSelectProps } from "quasar";
|
|
2
|
-
type __VLS_Props = QSelectProps & {
|
|
3
|
-
showOptionsOnChange?: boolean;
|
|
4
|
-
height?: string;
|
|
5
|
-
filterBy?: string[];
|
|
6
|
-
useFieldOnReadonly?: boolean;
|
|
7
|
-
required?: boolean;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_PublicProps = __VLS_Props & {
|
|
10
|
-
modelValue?: any;
|
|
11
|
-
};
|
|
12
|
-
declare var __VLS_21: {}, __VLS_23: {};
|
|
13
|
-
type __VLS_Slots = {} & {
|
|
14
|
-
append?: (props: typeof __VLS_21) => any;
|
|
15
|
-
} & {
|
|
16
|
-
prepend?: (props: typeof __VLS_23) => any;
|
|
17
|
-
};
|
|
18
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
-
"update:modelValue": (value: any) => any;
|
|
20
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
22
|
-
}>, {
|
|
23
|
-
label: string;
|
|
24
|
-
loading: boolean;
|
|
25
|
-
disable: boolean;
|
|
26
|
-
required: boolean;
|
|
27
|
-
height: string;
|
|
28
|
-
options: readonly any[];
|
|
29
|
-
readonly: boolean;
|
|
30
|
-
optionValue: string | ((option: string | any) => any);
|
|
31
|
-
optionLabel: string | ((option: string | any) => string);
|
|
32
|
-
optionsSelectedClass: string;
|
|
33
|
-
mapOptions: boolean;
|
|
34
|
-
emitValue: boolean;
|
|
35
|
-
useFieldOnReadonly: boolean;
|
|
36
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
37
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
38
|
-
export default _default;
|
|
39
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
40
|
-
new (): {
|
|
41
|
-
$slots: S;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
//# sourceMappingURL=WinSelect.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"WinSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Inputs/WinSelect.vue"],"names":[],"mappings":"AA2MA,OAAO,EAAW,YAAY,EAAE,MAAM,QAAQ,CAAC;AAM/C,KAAK,WAAW,GAAG,YAAY,GAAG;IAC5B,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,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAiIN,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,CAAC;AA6HF,QAAA,IAAyB,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACpE,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AA+BhD,QAAA,MAAM,eAAe;;;;;;;;cAnSJ,OAAO;YAHT,MAAM;;;;;;;;wBAEM,OAAO;6EA4ShC,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
readonly?: boolean;
|
|
3
|
-
};
|
|
4
|
-
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
-
onLocation: (...args: any[]) => void;
|
|
6
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
7
|
-
onOnLocation?: ((...args: any[]) => any) | undefined;
|
|
8
|
-
}>, {
|
|
9
|
-
readonly: boolean;
|
|
10
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
export default _default;
|
|
12
|
-
//# sourceMappingURL=GeocodingInput.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GeocodingInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/MapLocationForm/GeocodingInput.vue"],"names":[],"mappings":"AAiCA,KAAK,WAAW,GAAG;IAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC;;;;;;cAAV,OAAO;;AAuGvC,wBAQG"}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { AppLocation, Geolocation, MapType } from "./models";
|
|
2
|
-
type __VLS_Props = {
|
|
3
|
-
readonly?: boolean;
|
|
4
|
-
mapType?: MapType;
|
|
5
|
-
height?: string;
|
|
6
|
-
obfuscatedFields?: string[];
|
|
7
|
-
omitFields?: string[];
|
|
8
|
-
apiKey: string;
|
|
9
|
-
defaultCenter: Geolocation;
|
|
10
|
-
};
|
|
11
|
-
type __VLS_PublicProps = __VLS_Props & {
|
|
12
|
-
modelValue?: AppLocation;
|
|
13
|
-
};
|
|
14
|
-
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
-
"update:modelValue": (...args: any[]) => void;
|
|
16
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
18
|
-
}>, {
|
|
19
|
-
height: string;
|
|
20
|
-
readonly: boolean;
|
|
21
|
-
mapType: MapType;
|
|
22
|
-
obfuscatedFields: string[];
|
|
23
|
-
omitFields: string[];
|
|
24
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
-
export default _default;
|
|
26
|
-
//# sourceMappingURL=MapLocationForm.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MapLocationForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/MapLocationForm/MapLocationForm.vue"],"names":[],"mappings":"AAqSA,OAAO,EAAgB,WAAW,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAG3E,KAAK,WAAW,GAAG;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,WAAW,CAAC;CAC5B,CAAC;AAqFJ,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,WAAW,CAAC;CACxB,CAAC;;;;;;YA5FW,MAAM;cAFJ,OAAO;aACR,OAAO;sBAEE,MAAM,EAAE;gBACd,MAAM,EAAE;;AAsfzB,wBAWG"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { AddressField, AppLocation } from "./models";
|
|
2
|
-
export declare const DEFAULT_LOCATION: AppLocation;
|
|
3
|
-
export declare const LOCATION_FIELDS_LABELS: Record<AddressField, string>;
|
|
4
|
-
export declare const ADDRESS_COMPONENTS_MAP: Record<AddressField, string>;
|
|
5
|
-
//# sourceMappingURL=consts.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../src/components/MapLocationForm/consts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAErD,eAAO,MAAM,gBAAgB,EAiBxB,WAAW,CAAC;AAGjB,eAAO,MAAM,sBAAsB,EAW9B,MAAM,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;AAGlC,eAAO,MAAM,sBAAsB,EAW9B,MAAM,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../src/components/MapLocationForm/helpers.ts"],"names":[],"mappings":"AACA,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,WAG3C"}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
export interface AppLocation {
|
|
2
|
-
geolocation: Geolocation;
|
|
3
|
-
streetNumber: string;
|
|
4
|
-
street: string;
|
|
5
|
-
city: string;
|
|
6
|
-
zone: string;
|
|
7
|
-
town: string;
|
|
8
|
-
country: string;
|
|
9
|
-
postalCode: string;
|
|
10
|
-
fullAddress?: string;
|
|
11
|
-
registry?: string;
|
|
12
|
-
fecha_validacion?: string;
|
|
13
|
-
colony?: string;
|
|
14
|
-
confirmed?: boolean;
|
|
15
|
-
street_between_1?: string;
|
|
16
|
-
street_between_2?: string;
|
|
17
|
-
}
|
|
18
|
-
export type AddressField = keyof AppLocation;
|
|
19
|
-
export type Geolocation = {
|
|
20
|
-
lng: number;
|
|
21
|
-
lat: number;
|
|
22
|
-
};
|
|
23
|
-
export type MapType = "satellite" | "roadmap" | "hybrid" | "terrain";
|
|
24
|
-
export interface Place {
|
|
25
|
-
address_components: AddressComponent[];
|
|
26
|
-
formatted_address: string;
|
|
27
|
-
geometry: Geometry;
|
|
28
|
-
place_id: string;
|
|
29
|
-
types: string[];
|
|
30
|
-
}
|
|
31
|
-
export interface AddressComponent {
|
|
32
|
-
long_name: string;
|
|
33
|
-
short_name: string;
|
|
34
|
-
types: string[];
|
|
35
|
-
}
|
|
36
|
-
export interface Geometry {
|
|
37
|
-
bounds: Bounds;
|
|
38
|
-
location: LatLng;
|
|
39
|
-
location_type: string;
|
|
40
|
-
viewport: Bounds;
|
|
41
|
-
}
|
|
42
|
-
export interface Bounds {
|
|
43
|
-
northeast: LatLng;
|
|
44
|
-
southwest: LatLng;
|
|
45
|
-
}
|
|
46
|
-
export interface LatLng {
|
|
47
|
-
lat: number;
|
|
48
|
-
lng: number;
|
|
49
|
-
}
|
|
50
|
-
//# sourceMappingURL=models.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../../src/components/MapLocationForm/models.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,WAAW;IAC1B,WAAW,EAAE,WAAW,CAAC;IACzB,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AACD,MAAM,MAAM,YAAY,GAAG,MAAM,WAAW,CAAA;AAC5C,MAAM,MAAM,WAAW,GAAG;IAAE,GAAG,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAC;AACvD,MAAM,MAAM,OAAO,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC;AAErE,MAAM,WAAW,KAAK;IACpB,kBAAkB,EAAE,gBAAgB,EAAE,CAAC;IACvC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,EAAE,CAAC;CACjB;AAED,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,EAAE,CAAC;CACjB;AAED,MAAM,WAAW,QAAQ;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,MAAM;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,MAAM;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACb"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { AppLocation } from './models';
|
|
2
|
-
export declare function useGeocoding(): {
|
|
3
|
-
options: import("vue").Ref<{
|
|
4
|
-
geolocation: {
|
|
5
|
-
lng: number;
|
|
6
|
-
lat: number;
|
|
7
|
-
};
|
|
8
|
-
streetNumber: string;
|
|
9
|
-
street: string;
|
|
10
|
-
city: string;
|
|
11
|
-
zone: string;
|
|
12
|
-
town: string;
|
|
13
|
-
country: string;
|
|
14
|
-
postalCode: string;
|
|
15
|
-
fullAddress?: string | undefined;
|
|
16
|
-
registry?: string | undefined;
|
|
17
|
-
fecha_validacion?: string | undefined;
|
|
18
|
-
colony?: string | undefined;
|
|
19
|
-
confirmed?: boolean | undefined;
|
|
20
|
-
street_between_1?: string | undefined;
|
|
21
|
-
street_between_2?: string | undefined;
|
|
22
|
-
}[], AppLocation[] | {
|
|
23
|
-
geolocation: {
|
|
24
|
-
lng: number;
|
|
25
|
-
lat: number;
|
|
26
|
-
};
|
|
27
|
-
streetNumber: string;
|
|
28
|
-
street: string;
|
|
29
|
-
city: string;
|
|
30
|
-
zone: string;
|
|
31
|
-
town: string;
|
|
32
|
-
country: string;
|
|
33
|
-
postalCode: string;
|
|
34
|
-
fullAddress?: string | undefined;
|
|
35
|
-
registry?: string | undefined;
|
|
36
|
-
fecha_validacion?: string | undefined;
|
|
37
|
-
colony?: string | undefined;
|
|
38
|
-
confirmed?: boolean | undefined;
|
|
39
|
-
street_between_1?: string | undefined;
|
|
40
|
-
street_between_2?: string | undefined;
|
|
41
|
-
}[]>;
|
|
42
|
-
loading: import("vue").Ref<boolean, boolean>;
|
|
43
|
-
location: Location;
|
|
44
|
-
search: (address: string) => Promise<void>;
|
|
45
|
-
};
|
|
46
|
-
//# sourceMappingURL=useGeocoding.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useGeocoding.d.ts","sourceRoot":"","sources":["../../../src/components/MapLocationForm/useGeocoding.ts"],"names":[],"mappings":"AAIA,OAAO,EAAgB,WAAW,EAAS,MAAM,UAAU,CAAC;AAE5D,wBAAgB,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAMK,MAAM;EAgDtC"}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
3
|
-
//# sourceMappingURL=PdfPage.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PdfPage.vue.d.ts","sourceRoot":"","sources":["../../../src/components/pdf/PdfPage.vue"],"names":[],"mappings":";AAkDA,wBAKG"}
|