@heycar/heycars-map 0.4.4 → 0.4.6

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.
@@ -0,0 +1,4 @@
1
+ export declare const useFirstWorkflowRecomendLoading: () => {
2
+ isFirstWorkflowRecomendLoadingRef: import("vue-demi").Ref<boolean>;
3
+ completeFirstWorkflowRecomend: () => void;
4
+ };
@@ -7,7 +7,6 @@ export type BusinessTaxiServiceMapProps = Omit<HeycarMapProps, "center" | "zoom"
7
7
  log?: boolean;
8
8
  dispatchingTitle: string;
9
9
  bookDispatchingTitle: string;
10
- bookDispatchedTitle: string;
11
10
  driverArrivedTitle: string;
12
11
  driverStatus: DriverStatus;
13
12
  interval: number;
@@ -22,7 +22,7 @@ export declare const SectionDriverStartService: import("vue").DefineComponent<im
22
22
  type SectionBookDispatchedProps = Required<MROP> & {
23
23
  passengerPosition?: Point;
24
24
  from: Place;
25
- title: string;
25
+ to: Place;
26
26
  };
27
27
  export declare const SectionBookDispatched: import("vue").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<SectionBookDispatchedProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<SectionBookDispatchedProps, Required<SectionBookDispatchedProps>>, never, SectionBookDispatchedProps, {} | {}>;
28
28
  type SectionDriverArrivedProps = Required<MROP> & {
@@ -1,9 +1,9 @@
1
1
  export declare const passengerCircle: import("@vanilla-extract/recipes").RuntimeFn<{
2
2
  size: {
3
3
  small: {
4
- width: "4.53vw";
5
- height: "4.53vw";
6
- marginBottom: "-2.265vw";
4
+ width: "6.6vw";
5
+ height: "6.6vw";
6
+ marginBottom: "-3.3vw";
7
7
  };
8
8
  large: {
9
9
  width: "16.27vw";
@@ -1,5 +1,6 @@
1
- import type { GmapOverlay, MapRegisterOverlayProps } from "../../hooks/useOverlay";
2
- interface PassengerCircleProps<T> extends MapRegisterOverlayProps<T> {
1
+ import type { GmapOverlay, MROP, MapRegisterOverlayProps } from "../../hooks/useOverlay";
2
+ import type { Point } from "../../types/interface";
3
+ export interface PassengerCircleProps<T> extends MapRegisterOverlayProps<T> {
3
4
  position: [number, number];
4
5
  size?: "small" | "large";
5
6
  }
@@ -18310,4 +18311,8 @@ export declare const PassengerCircle: import("vue").DefineComponent<import("vue/
18310
18311
  emit(type: AMap.EventType, data?: any): any;
18311
18312
  getEvents(): Record<string, any[]>;
18312
18313
  }> | PassengerCircleProps<GmapOverlay>, {} | {}>;
18313
- export {};
18314
+ export type ConditionalFittablePassengerCircleProps = MROP & {
18315
+ condition: boolean;
18316
+ position?: Point;
18317
+ };
18318
+ export declare const ConditionalFittablePassengerCircle: import("vue").DefineComponent<import("vue/types/v3-component-props").ComponentObjectPropsOptions<ConditionalFittablePassengerCircleProps>, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").Empty, import("../../types/helper").EmitByProps<ConditionalFittablePassengerCircleProps, Required<ConditionalFittablePassengerCircleProps>>, never, ConditionalFittablePassengerCircleProps, {} | {}>;
@@ -30,7 +30,7 @@ export declare const useAmapRecomendPlace: <C>(props: UseMapRecomendPlaceProps<C
30
30
  availableRef: Ref<boolean>;
31
31
  isElectedRef: import("vue-demi").ComputedRef<boolean>;
32
32
  updateRecomandPlace: () => void;
33
- updatePlaceCandidates: () => Promise<void>;
33
+ updatePlaceCandidates: (place: Place) => Promise<void>;
34
34
  updatePlace: (value: Point) => void;
35
35
  setPlace: (value: Place) => void;
36
36
  updateCity: (value: Place) => void;
@@ -55,7 +55,7 @@ export declare const useGmapRecomendPlace: <C>(props: UseMapRecomendPlaceProps<C
55
55
  availableRef: Ref<boolean>;
56
56
  isElectedRef: import("vue-demi").ComputedRef<boolean>;
57
57
  updateRecomandPlace: () => void;
58
- updatePlaceCandidates: () => Promise<void>;
58
+ updatePlaceCandidates: (place: Place) => Promise<void>;
59
59
  updatePlace: (value: Point) => void;
60
60
  setPlace: (value: Place) => void;
61
61
  updateCity: (value: Place) => Promise<void>;
@@ -80,7 +80,7 @@ export declare const useMapRecomendPlace: <C>(props: UseMapRecomendPlaceProps<C>
80
80
  availableRef: Ref<boolean>;
81
81
  isElectedRef: import("vue-demi").ComputedRef<boolean>;
82
82
  updateRecomandPlace: () => void;
83
- updatePlaceCandidates: () => Promise<void>;
83
+ updatePlaceCandidates: (place: Place) => Promise<void>;
84
84
  updatePlace: (value: Point) => void;
85
85
  setPlace: (value: Place) => void;
86
86
  updateCity: (value: Place) => void;