@arkyn/types 1.3.98 → 1.3.100
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/GoogleMapProps.d.ts +0 -1
- package/dist/components/GoogleMapProps.d.ts.map +1 -1
- package/dist/components/GoogleProviderProps.d.ts +4 -0
- package/dist/components/GoogleProviderProps.d.ts.map +1 -0
- package/dist/components/GoogleProviderProps.js +1 -0
- package/dist/components/GoogleSearchPlacesProps.d.ts +4 -1
- package/dist/components/GoogleSearchPlacesProps.d.ts.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/src/components/GoogleMapProps.ts +0 -1
- package/src/components/GoogleProviderProps.ts +5 -0
- package/src/components/GoogleSearchPlacesProps.ts +1 -1
- package/src/index.ts +2 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"GoogleMapProps.d.ts","sourceRoot":"","sources":["../../src/components/GoogleMapProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AAEhD,KAAK,cAAc,GAAG;IACpB,
|
1
|
+
{"version":3,"file":"GoogleMapProps.d.ts","sourceRoot":"","sources":["../../src/components/GoogleMapProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AAEhD,KAAK,cAAc,GAAG;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;CAC5C,GAAG,kBAAkB,CAAC,cAAc,CAAC,CAAC;AAEvC,YAAY,EAAE,cAAc,EAAE,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"GoogleProviderProps.d.ts","sourceRoot":"","sources":["../../src/components/GoogleProviderProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAEzD,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC;AAE/C,YAAY,EAAE,mBAAmB,EAAE,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,13 +1,16 @@
|
|
1
1
|
import type { StandaloneSearchBoxProps } from "@react-google-maps/api";
|
2
2
|
import type { SimpleInputProps } from "./InputProps";
|
3
3
|
type GoogleSearchPlacesProps = {
|
4
|
-
googleMapsApiKey: string;
|
5
4
|
onChange?: (e: {
|
6
5
|
street: string;
|
7
6
|
city: string;
|
8
7
|
state: string;
|
9
8
|
district: string;
|
10
9
|
cep: string;
|
10
|
+
coordinates: {
|
11
|
+
lat: number;
|
12
|
+
lng: number;
|
13
|
+
};
|
11
14
|
}) => void;
|
12
15
|
options?: StandaloneSearchBoxProps["options"];
|
13
16
|
} & Omit<SimpleInputProps, "onLoad" | "onChange" | "type">;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"GoogleSearchPlacesProps.d.ts","sourceRoot":"","sources":["../../src/components/GoogleSearchPlacesProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AACvE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAErD,KAAK,uBAAuB,GAAG;IAC7B,
|
1
|
+
{"version":3,"file":"GoogleSearchPlacesProps.d.ts","sourceRoot":"","sources":["../../src/components/GoogleSearchPlacesProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AACvE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAErD,KAAK,uBAAuB,GAAG;IAC7B,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE;QACb,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;QACjB,GAAG,EAAE,MAAM,CAAC;QACZ,WAAW,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,GAAG,EAAE,MAAM,CAAA;SAAE,CAAC;KAC3C,KAAK,IAAI,CAAC;IACX,OAAO,CAAC,EAAE,wBAAwB,CAAC,SAAS,CAAC,CAAC;CAC/C,GAAG,IAAI,CAAC,gBAAgB,EAAE,QAAQ,GAAG,UAAU,GAAG,MAAM,CAAC,CAAC;AAE3D,YAAY,EAAE,uBAAuB,EAAE,CAAC"}
|
package/dist/index.d.ts
CHANGED
@@ -18,6 +18,8 @@ export * from "./components/DividerProps";
|
|
18
18
|
export * from "./components/DrawerProps";
|
19
19
|
export * from "./components/FormProps";
|
20
20
|
export * from "./components/GoogleMapProps";
|
21
|
+
export * from "./components/GoogleProviderProps";
|
22
|
+
export * from "./components/GoogleSearchPlacesProps";
|
21
23
|
export * from "./components/IconButtonProps";
|
22
24
|
export * from "./components/InputProps";
|
23
25
|
export * from "./components/ModalProps";
|
@@ -26,7 +28,6 @@ export * from "./components/PopoverProps";
|
|
26
28
|
export * from "./components/RadioProps";
|
27
29
|
export * from "./components/SelectProps";
|
28
30
|
export * from "./components/SkeletonProps";
|
29
|
-
export * from "./components/GoogleSearchPlacesProps";
|
30
31
|
export * from "./components/SwitchProps";
|
31
32
|
export * from "./components/TableProps";
|
32
33
|
export * from "./components/TabProps";
|
package/dist/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAG7B,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAG7B,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,kCAAkC,CAAC;AACjD,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAG1C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAG9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,wCAAwC,CAAC;AACvD,cAAc,sCAAsC,CAAC"}
|
package/dist/index.js
CHANGED
@@ -20,6 +20,8 @@ export * from "./components/DividerProps";
|
|
20
20
|
export * from "./components/DrawerProps";
|
21
21
|
export * from "./components/FormProps";
|
22
22
|
export * from "./components/GoogleMapProps";
|
23
|
+
export * from "./components/GoogleProviderProps";
|
24
|
+
export * from "./components/GoogleSearchPlacesProps";
|
23
25
|
export * from "./components/IconButtonProps";
|
24
26
|
export * from "./components/InputProps";
|
25
27
|
export * from "./components/ModalProps";
|
@@ -28,7 +30,6 @@ export * from "./components/PopoverProps";
|
|
28
30
|
export * from "./components/RadioProps";
|
29
31
|
export * from "./components/SelectProps";
|
30
32
|
export * from "./components/SkeletonProps";
|
31
|
-
export * from "./components/GoogleSearchPlacesProps";
|
32
33
|
export * from "./components/SwitchProps";
|
33
34
|
export * from "./components/TableProps";
|
34
35
|
export * from "./components/TabProps";
|
package/package.json
CHANGED
@@ -2,13 +2,13 @@ import type { StandaloneSearchBoxProps } from "@react-google-maps/api";
|
|
2
2
|
import type { SimpleInputProps } from "./InputProps";
|
3
3
|
|
4
4
|
type GoogleSearchPlacesProps = {
|
5
|
-
googleMapsApiKey: string;
|
6
5
|
onChange?: (e: {
|
7
6
|
street: string;
|
8
7
|
city: string;
|
9
8
|
state: string;
|
10
9
|
district: string;
|
11
10
|
cep: string;
|
11
|
+
coordinates: { lat: number; lng: number };
|
12
12
|
}) => void;
|
13
13
|
options?: StandaloneSearchBoxProps["options"];
|
14
14
|
} & Omit<SimpleInputProps, "onLoad" | "onChange" | "type">;
|
package/src/index.ts
CHANGED
@@ -21,6 +21,8 @@ export * from "./components/DividerProps";
|
|
21
21
|
export * from "./components/DrawerProps";
|
22
22
|
export * from "./components/FormProps";
|
23
23
|
export * from "./components/GoogleMapProps";
|
24
|
+
export * from "./components/GoogleProviderProps";
|
25
|
+
export * from "./components/GoogleSearchPlacesProps";
|
24
26
|
export * from "./components/IconButtonProps";
|
25
27
|
export * from "./components/InputProps";
|
26
28
|
export * from "./components/ModalProps";
|
@@ -29,7 +31,6 @@ export * from "./components/PopoverProps";
|
|
29
31
|
export * from "./components/RadioProps";
|
30
32
|
export * from "./components/SelectProps";
|
31
33
|
export * from "./components/SkeletonProps";
|
32
|
-
export * from "./components/GoogleSearchPlacesProps";
|
33
34
|
export * from "./components/SwitchProps";
|
34
35
|
export * from "./components/TableProps";
|
35
36
|
export * from "./components/TabProps";
|