@heycar/heycars-map 0.4.5 → 0.4.7

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,3 +1,3 @@
1
- export { pointInfoBoxEmphasize, pointLayout, pointSingleInfoBox, } from "../StartEndPoint/StartEndPoint.css";
1
+ export { pointInfoBoxEmphasize, pointInfoBoxTitle, pointLayout, pointSingleInfoBox, } from "../StartEndPoint/StartEndPoint.css";
2
2
  export declare const taxiCarLayout: string;
3
3
  export declare const carIcon: string;
@@ -4,6 +4,14 @@ import type { VectorMapForeign } from "../../utils/transform";
4
4
  export interface AmapProps extends Omit<AMap.MapOptions, "vectorMapForeign"> {
5
5
  vectorMapForeign?: VectorMapForeign;
6
6
  mapRef?: SetMap<AMap.Map>;
7
+ dragEnable?: boolean;
8
+ zoomEnable?: boolean;
9
+ rotateEnable?: boolean;
10
+ doubleClickZoom?: boolean;
11
+ scrollWheel?: boolean;
12
+ touchZoom?: boolean;
13
+ keyboardEnable?: boolean;
14
+ pitchEnable?: boolean;
7
15
  onDragStart?: MapEventHandler<AMap.Map>;
8
16
  onDragEnd?: MapEventHandler<AMap.Map>;
9
17
  onZoomEnd?: MapEventHandler<AMap.Map>;