diff --git a/.editorconfig b/.editorconfig index cb75c3d..26e2883 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# Editor configuration, see http://editorconfig.org +# Editor configuration, see https://editorconfig.org root = true [*] @@ -9,6 +9,9 @@ indent_size = 2 insert_final_newline = true trim_trailing_whitespace = true +[*.ts] +quote_type = single + [*.md] max_line_length = off trim_trailing_whitespace = false diff --git a/docs/components/AppComponent.html b/docs/components/AppComponent.html index 6f136cb..d113236 100644 --- a/docs/components/AppComponent.html +++ b/docs/components/AppComponent.html @@ -173,7 +173,6 @@
Methods
  • Public - Async onResponse
  • @@ -278,7 +277,6 @@

    Public - Async onResponse @@ -333,7 +331,7 @@

    - Returns : any + Returns : void
    @@ -622,7 +620,7 @@

    @Component({ selector: 'app-root', templateUrl: './app.component.html', - styleUrls: ['./app.component.css'], + styleUrls: ['./app.component.css'] }) export class AppComponent { @@ -647,11 +645,11 @@

    public map: google.maps.Map; // Save GoogleMap instance - public onMapReady(event: google.maps.Map) { + public onMapReady(event: google.maps.Map): void { this.map = event; } - public async onResponse(event: google.maps.DirectionsResult) { + public onResponse(event: google.maps.DirectionsResult): void { // Default style const polylineOptions: google.maps.PolygonOptions = { @@ -706,7 +704,7 @@

    ./app.component.css

    agm-map {
    -  height: 80vh;
    +  height: 90vh;
     }
     

    diff --git a/docs/dependencies.html b/docs/dependencies.html index 7e0dcc3..e43f486 100644 --- a/docs/dependencies.html +++ b/docs/dependencies.html @@ -48,7 +48,7 @@
    • - tslib : ^1.10.0
    • + tslib : ^2.0.0
    @@ -58,13 +58,13 @@
    • - @agm/core : ^1.0.0-beta.2
    • + @agm/core : ^1.1.0
    • - @angular/common : ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
    • + @angular/common : ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
    • - @angular/core : ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
    • + @angular/core : ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
    • - rxjs : >= 6.4.0
    • + rxjs : ~6.6.0
    diff --git a/docs/directives/AgmDirection.html b/docs/directives/AgmDirection.html index 891c1f2..b6a8450 100644 --- a/docs/directives/AgmDirection.html +++ b/docs/directives/AgmDirection.html @@ -97,6 +97,7 @@

    Properties