Skip to content

Commit

Permalink
chore(build): prepare release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Vheissu committed Feb 3, 2018
1 parent 216b359 commit d47ef6a
Show file tree
Hide file tree
Showing 42 changed files with 2,463 additions and 868 deletions.
6 changes: 6 additions & 0 deletions dist/amd/configure.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ export interface ConfigInterface {
apiKey: string;
apiLibraries: string;
options: any;
markerCluster: {
enable: boolean;
src?: string;
imagePath?: string;
imageExtension?: string;
};
}
export declare class Configure {
private _config;
Expand Down
12 changes: 10 additions & 2 deletions dist/amd/configure.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/configure.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion dist/amd/google-maps-api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/google-maps-api.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion dist/amd/google-maps.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { TaskQueue } from 'aurelia-task-queue';
import { BindingEngine } from 'aurelia-binding';
import { Configure } from './configure';
import { GoogleMapsAPI } from './google-maps-api';
import { MarkerClustering } from './marker-clustering';
export interface Marker {
icon?: string;
label?: string;
Expand All @@ -23,6 +24,7 @@ export declare class GoogleMaps {
private config;
private bindingEngine;
private googleMapsApi;
private markerClustering;
private _currentInfoWindow;
longitude: number;
latitude: number;
Expand All @@ -48,7 +50,7 @@ export declare class GoogleMaps {
drawingManager: any;
_renderedPolygons: any;
_polygonsSubscription: any;
constructor(element: Element, taskQueue: TaskQueue, config: Configure, bindingEngine: BindingEngine, googleMapsApi: GoogleMapsAPI);
constructor(element: Element, taskQueue: TaskQueue, config: Configure, bindingEngine: BindingEngine, googleMapsApi: GoogleMapsAPI, markerClustering: MarkerClustering);
clearMarkers(): void;
attached(): void;
sendBoundsEvent(): void;
Expand Down
21 changes: 16 additions & 5 deletions dist/amd/google-maps.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/google-maps.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions dist/commonjs/configure.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ export interface ConfigInterface {
apiKey: string;
apiLibraries: string;
options: any;
markerCluster: {
enable: boolean;
src?: string;
imagePath?: string;
imageExtension?: string;
};
}
export declare class Configure {
private _config;
Expand Down
12 changes: 10 additions & 2 deletions dist/commonjs/configure.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/configure.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion dist/commonjs/google-maps-api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d47ef6a

Please sign in to comment.