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 @@
./app.component.css
agm-map {
- height: 80vh;
+ height: 90vh;
}
literal type
+
+ { origin: {}, destination: {}, waypoints: {} }
+ any
+ Type : google.maps.DirectionsResult | null
google.maps.DirectionsWaypoint[]
+
+ []
+ import 'googlemaps';
-import { Directive, Input, Output, OnChanges, OnInit, EventEmitter, OnDestroy } from '@angular/core';
+ import { Directive, Input, Output, OnChanges, OnInit, EventEmitter, OnDestroy } from '@angular/core';
import { GoogleMapsAPIWrapper } from '@agm/core';
@Directive({
@@ -1421,17 +1434,17 @@
})
export class AgmDirection implements OnChanges, OnInit, OnDestroy {
- @Input() origin?: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;
+ @Input() origin: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;
- @Input() destination?: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;
+ @Input() destination: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;
- @Input() travelMode: google.maps.TravelMode;
+ @Input() travelMode?: google.maps.TravelMode;
- @Input() transitOptions: google.maps.TransitOptions;
+ @Input() transitOptions?: google.maps.TransitOptions;
- @Input() drivingOptions: google.maps.DrivingOptions;
+ @Input() drivingOptions?: google.maps.DrivingOptions;
- @Input() waypoints: google.maps.DirectionsWaypoint[];
+ @Input() waypoints: google.maps.DirectionsWaypoint[] = [];
@Input() optimizeWaypoints = true;
@@ -1441,7 +1454,7 @@
@Input() avoidTolls = false;
- @Input() renderOptions: google.maps.DirectionsRendererOptions;
+ @Input() renderOptions?: google.maps.DirectionsRendererOptions;
@Input() panel?: Element;
@@ -1449,7 +1462,7 @@
origin: google.maps.MarkerOptions,
destination: google.maps.MarkerOptions,
waypoints: google.maps.MarkerOptions,
- };
+ } = { origin: {}, destination: {}, waypoints: {} };
@Input() infoWindow: google.maps.InfoWindow;
@@ -1457,7 +1470,7 @@
@Input() visible = true;
// Render exist direction
- @Input() renderRoute: any;
+ @Input() renderRoute?: google.maps.DirectionsResult | null;
// Direction change event handler
@Output() onChange: EventEmitter<google.maps.DirectionsResult> = new EventEmitter<google.maps.DirectionsResult>();
@@ -1479,8 +1492,8 @@
public directionsRenderer: google.maps.DirectionsRenderer;
// Use for custom marker
- private originMarker: any;
- private destinationMarker: any;
+ private originMarker?: any;
+ private destinationMarker?: any;
private waypointsMarker: Array<google.maps.Marker> = [];
// Use for visible flag
@@ -1564,16 +1577,16 @@
}
// Render exist direction
- if (typeof this.renderRoute === 'object' && this.renderRoute !== null) {
+ if (this.renderRoute) {
this.directionsRenderer.setDirections(this.renderRoute);
- this.renderRoute = null; // or set undefined, ''
+ this.renderRoute = undefined;
} else {
// Request new direction
this.directionsService.route({
origin: this.origin,
destination: this.destination,
- travelMode: this.travelMode,
+ travelMode: this.travelMode || google.maps.TravelMode.DRIVING,
transitOptions: this.transitOptions,
drivingOptions: this.drivingOptions,
waypoints: this.waypoints,
@@ -1717,13 +1730,11 @@
marker = new google.maps.Marker(markerOpts);
// https://developers.google.com/maps/documentation/javascript/reference/marker?hl=zh-tw#MarkerOptions.clickable
- // @ts-ignore
- if (marker.clickable) {
+ if (marker.getClickable()) {
marker.addListener('click', () => {
const infowindoContent: string = typeof markerOpts.infoWindow === 'undefined' ? content : markerOpts.infoWindow;
this.infoWindow.setContent(infowindoContent);
- // @ts-ignore
- this.infoWindow.open(map, marker);
+ this.infoWindow.open(map, marker as google.maps.MVCObject);
});
}
return marker;
diff --git a/docs/js/menu-wc.js b/docs/js/menu-wc.js
index 426313a..f96bc32 100644
--- a/docs/js/menu-wc.js
+++ b/docs/js/menu-wc.js
@@ -60,13 +60,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
AgmDirectionModule
-
+
-
AgmDirection
diff --git a/docs/js/search/search_index.js b/docs/js/search/search_index.js
index 3d65af9..e6bf6e8 100644
--- a/docs/js/search/search_index.js
+++ b/docs/js/search/search_index.js
@@ -1,4 +1,4 @@
var COMPODOC_SEARCH_INDEX = {
- "index": {"version":"2.3.8","fields":["title","body"],"fieldVectors":[["title/directives/AgmDirection.html",[0,0.736,1,0.736]],["body/directives/AgmDirection.html",[0,0.39,1,0.519,2,0.532,3,0.277,4,0.277,5,0.223,6,3.145,7,0.532,8,1.215,9,1.615,10,1.615,11,1.615,12,0.532,13,0.927,14,0.597,15,1.526,16,0.484,17,1.477,18,3.933,19,1.615,20,1.184,21,1.615,22,1.615,23,1.615,24,1.615,25,1.615,26,0.597,27,1.935,28,1.935,29,1.215,30,1.935,31,1.477,32,1.935,33,1.935,34,1.615,35,1.215,36,1.935,37,1.935,38,1.671,39,1.935,40,2.411,41,1.615,42,1.935,43,1.753,44,1.615,45,1.935,46,1.477,47,1.615,48,1.935,49,1.935,50,2.411,51,1.98,52,1.215,53,1.615,54,1.615,55,1.233,56,1.615,57,1.615,58,2.593,59,1.215,60,0.696,61,1.935,62,2.017,63,1.215,64,1.233,65,0.085,66,1.233,67,1.907,68,1.233,69,1.215,70,1.671,71,1.576,72,2.292,73,0.696,74,0.696,75,2.099,76,1.935,77,2.593,78,1.935,79,0.696,80,1.215,81,0.696,82,1.615,83,0.696,84,0.532,85,0.696,86,1.576,87,0.696,88,0.696,89,0.738,90,0.696,91,0.696,92,1.215,93,0.696,94,0.696,95,1.215,96,0.696,97,1.215,98,0.696,99,0.696,100,2.195,101,0.696,102,3.636,103,0.696,104,0.696,105,0.696,106,0.696,107,0.696,108,0.696,109,0.696,110,1.824,111,2.75,112,1.215,113,2.593,114,1.417,115,2.292,116,0.696,117,1.215,118,1.215,119,1.215,120,1.215,121,0.696,122,0.696,123,0.696,124,0.696,125,0.696,126,2.593,127,1.615,128,0.696,129,0.696,130,1.477,131,3.539,132,2.195,133,1.935,134,1.98,135,0.696,136,1.98,137,1.215,138,0.696,139,2.039,140,1.215,141,2.039,142,0.696,143,1.215,144,0.696,145,1.615,146,0.696,147,0.696,148,1.233,149,0.696,150,0.519,151,0.696,152,3.539,153,2.593,154,0.223,155,0.342,156,0.223,157,0.101,158,1.615,159,0.696,160,1.215,161,0.927,162,1.215,163,1.215,164,1.215,165,1.215,166,0.696,167,1.215,168,1.215,169,0.696,170,0.738,171,0.696,172,1.215,173,2.195,174,0.696,175,1.615,176,1.615,177,1.615,178,1.615,179,0.696,180,1.215,181,1.215,182,1.215,183,3.59,184,2.195,185,3.68,186,0.738,187,0.597,188,0.696,189,0.696,190,0.696,191,1.215,192,0.696,193,1.233,194,0.696,195,0.696,196,0.696,197,1.841,198,2.411,199,0.696,200,0.696,201,0.696,202,1.215,203,0.696,204,1.215,205,0.696,206,1.615,207,0.738,208,1.215,209,0.696,210,1.615,211,0.696,212,0.927,213,0.927,214,0.696,215,0.696,216,0.696,217,0.696,218,0.696,219,0.696,220,0.696,221,0.696,222,0.696,223,1.215,224,0.696,225,0.696,226,0.696,227,1.215,228,1.215,229,0.696,230,0.696,231,0.696,232,0.696,233,0.696,234,0.696,235,0.696,236,1.215,237,0.696,238,0.696,239,0.696,240,1.935,241,1.215,242,0.696,243,1.615,244,0.696,245,0.696,246,0.696,247,1.215,248,0.696,249,0.696,250,0.696,251,1.935,252,0.696,253,0.696,254,0.696,255,0.696,256,0.696,257,1.215,258,0.696,259,0.696,260,0.696,261,0.696,262,0.696,263,1.935,264,1.215,265,1.215,266,0.696,267,0.696,268,0.696,269,1.215,270,0.696,271,1.935,272,0.696,273,0.696,274,1.615,275,0.696,276,0.696,277,0.696,278,0.696,279,0.696,280,0.532,281,0.696,282,0.696,283,0.696,284,1.935,285,0.696,286,1.215,287,0.696,288,0.696,289,0.696,290,0.696,291,0.696,292,0.696,293,0.696,294,1.215,295,0.696,296,0.696,297,0.696,298,0.696,299,1.215,300,1.215,301,0.696,302,0.696,303,1.215,304,1.615,305,1.215,306,1.215,307,0.696,308,0.696,309,0.013,310,0.022,311,0.013]],["title/modules/AgmDirectionModule.html",[312,0.914,313,0.736]],["body/modules/AgmDirectionModule.html",[1,1.431,3,1.059,4,1.059,5,0.853,20,1.675,26,1.306,62,1.675,65,0.084,114,1.675,150,1.094,154,0.853,156,0.853,157,0.386,186,2.071,187,1.306,309,0.048,310,0.062,311,0.048,312,1.059,313,1.402,314,0.853,315,1.059,316,1.306,317,1.849,318,1.306,319,1.306,320,2.287,321,2.029,322,2.029,323,2.029,324,2.071,325,1.306,326,3.763,327,2.658,328,3.969,329,3.763,330,2.658,331,4.104,332,3.763,333,2.658,334,2.412,335,2.658,336,2.658]],["title/components/AppComponent.html",[337,1.127,338,0.736]],["body/components/AppComponent.html",[0,0.498,1,0.498,2,1.183,3,0.617,4,0.617,5,0.498,12,1.183,13,2.392,14,1.148,15,0.762,16,0.931,17,1.785,20,2.184,26,1.148,38,1.71,43,1.904,46,2.148,51,2.148,55,1.785,62,1.934,64,1.785,65,0.084,66,2.567,67,1.934,68,1.785,70,2.295,71,2.229,86,2.148,89,1.42,110,1.71,114,1.148,115,1.183,130,2.567,136,1.785,139,2.043,141,0.942,148,2.392,150,0.498,154,0.498,156,0.498,157,0.225,161,1.183,193,2.567,207,0.942,309,0.028,310,0.042,311,0.028,316,0.762,337,1.382,338,1.006,339,2.338,340,1.55,341,1.55,342,1.55,343,1.55,344,1.183,345,2.814,346,2.148,347,2.338,348,2.814,349,2.338,350,2.338,351,2.148,352,2.148,353,3.669,354,2.338,355,2.814,356,2.338,357,1.55,358,2.338,359,2.814,360,1.55,361,2.338,362,2.338,363,2.338,364,2.883,365,1.55,366,2.338,367,1.785,368,1.55,369,1.785,370,1.55,371,1.55,372,2.338,373,2.338,374,1.785,375,1.55,376,1.55,377,2.338,378,1.55,379,2.392,380,3.133,381,2.338,382,2.338,383,3.133,384,3.133,385,2.338,386,2.338,387,1.55,388,1.55,389,1.55,390,1.183,391,1.55,392,1.55,393,1.55,394,1.55,395,1.55,396,1.55,397,1.55,398,1.55,399,1.55,400,1.55,401,2.338,402,1.55,403,2.338,404,1.55,405,1.55,406,1.55,407,1.55,408,1.55,409,1.55,410,1.55,411,1.55,412,1.55,413,1.55,414,1.55,415,1.55,416,1.55,417,1.55,418,1.55,419,1.55,420,1.55,421,1.55,422,1.55,423,1.183,424,1.55,425,1.785,426,3.133,427,1.55,428,1.55]],["title/modules/AppModule.html",[312,0.914,429,0.914]],["body/modules/AppModule.html",[3,1.069,4,1.069,5,0.861,14,1.318,15,1.318,65,0.084,150,1.351,154,0.861,155,1.318,156,0.861,157,0.39,187,1.318,309,0.049,310,0.062,311,0.049,312,1.069,313,1.351,314,0.861,315,1.069,316,1.318,317,1.857,318,1.857,319,1.685,320,1.631,324,2.084,325,1.318,334,2.084,338,1.433,429,1.743,430,2.049,431,2.049,432,2.684,433,2.049,434,2.684,435,2.619,436,2.619,437,2.049,438,1.318,439,2.049,440,2.049,441,1.631,442,2.684,443,2.049,444,2.049,445,2.684]],["title/classes/AppPage.html",[157,0.333,446,1.394]],["body/classes/AppPage.html",[3,1.217,4,1.217,5,0.981,16,1.217,26,1.827,62,1.827,65,0.082,89,1.857,114,1.827,134,2.333,150,0.981,156,0.981,157,0.444,186,2.26,309,0.056,310,0.068,311,0.056,346,2.333,438,1.501,446,2.26,447,3.056,448,2.333,449,4.172,450,4.172,451,3.056,452,4.349,453,3.056,454,3.056,455,3.056,456,3.056,457,3.056]],["title/coverage.html",[458,2.362]],["body/coverage.html",[0,0.984,1,0.984,5,0.984,6,2.34,7,2.34,65,0.081,67,1.506,141,1.862,157,0.445,309,0.056,310,0.068,311,0.056,337,1.506,338,0.984,344,2.34,441,2.264,446,1.862,448,2.34,458,2.34,459,2.34,460,3.065,461,3.065,462,4.352,463,3.065,464,3.065,465,2.34,466,4.176,467,4.176,468,2.34,469,2.844,470,2.34,471,2.34,472,3.065,473,3.065,474,3.065,475,3.065]],["title/dependencies.html",[315,1.095,476,1.933]],["body/dependencies.html",[65,0.084,154,1.042,155,1.594,309,0.059,310,0.07,311,0.059,315,1.536,477,3.245,478,3.245,479,3.245,480,3.245,481,3.245,482,3.245,483,3.856,484,3.856,485,3.856,486,3.856,487,3.245,488,3.245]],["title/index.html",[16,0.77,489,1.476,490,1.476]],["body/index.html",[0,0.704,14,2.066,15,2.037,20,1.807,31,1.674,38,1.332,43,1.332,65,0.084,75,1.674,139,1.823,150,1.236,154,0.704,155,1.954,156,0.704,157,0.318,170,1.823,197,1.674,212,2.29,213,2.29,280,1.674,309,0.04,310,0.054,311,0.04,313,1.098,314,0.704,317,1.077,318,1.077,319,1.077,334,1.823,338,1.098,351,2.611,352,2.611,364,1.674,367,2.29,369,2.29,374,1.674,379,1.674,390,1.674,423,1.674,425,1.674,429,0.873,435,1.674,436,2.29,437,1.674,438,1.077,439,1.674,440,1.674,443,1.674,444,1.674,491,2.192,492,3,493,2.192,494,3,495,2.192,496,2.192,497,2.192,498,3,499,2.192,500,2.192,501,3.678,502,3.42,503,2.192,504,3,505,3,506,2.192,507,3,508,2.192,509,2.192,510,2.192,511,2.192,512,2.192,513,2.192,514,2.192,515,2.192,516,2.192,517,2.192,518,2.192,519,3,520,2.192,521,2.192,522,2.192,523,2.192,524,2.192,525,3,526,2.192,527,2.192,528,2.192,529,2.192,530,2.192,531,2.192,532,3,533,2.192,534,2.192,535,2.192,536,2.192,537,2.192,538,3,539,2.192,540,2.192,541,1.332,542,1.674]],["title/license.html",[489,1.476,490,1.476,541,1.175]],["body/license.html",[65,0.063,110,1.676,170,2.12,309,0.05,310,0.063,311,0.05,325,1.355,459,2.105,541,1.676,542,2.105,543,3.828,544,2.758,545,2.758,546,2.758,547,3.49,548,2.758,549,2.758,550,2.758,551,2.758,552,2.758,553,2.758,554,3.49,555,4.398,556,2.758,557,2.758,558,2.758,559,3.828,560,2.758,561,3.49,562,2.758,563,2.758,564,2.758,565,2.758,566,2.758,567,2.758,568,2.758,569,2.758,570,2.758,571,3.49,572,2.758,573,2.758,574,2.758,575,2.758,576,2.758,577,2.758,578,2.758,579,3.49,580,3.49,581,2.758,582,2.758,583,2.758,584,2.758,585,2.758,586,2.758,587,2.758,588,2.758,589,2.758,590,2.758,591,2.758,592,2.758,593,2.758,594,2.758,595,2.758,596,2.758,597,2.758,598,2.758,599,2.758,600,2.758,601,2.758,602,2.758,603,2.758,604,2.758,605,2.758,606,2.758,607,2.758,608,2.758,609,2.758]],["title/modules.html",[314,0.993]],["body/modules.html",[65,0.073,309,0.063,310,0.073,311,0.063,313,1.11,314,1.11,429,1.378,438,1.967,610,4.004,611,4.004,612,4.004]],["title/overview.html",[613,2.362]],["body/overview.html",[0,0.968,1,1.409,65,0.08,157,0.438,187,1.481,309,0.055,310,0.067,311,0.055,312,1.201,313,1.391,314,0.968,315,1.201,316,1.481,317,1.481,318,1.481,319,1.481,320,1.832,321,2.301,322,2.301,323,2.301,324,2.241,325,1.481,337,1.481,338,1.409,429,1.749,430,2.301,431,2.301,433,2.301,613,2.301,614,3.014,615,3.985]],["title/miscellaneous/variables.html",[616,1.476,617,2.098]],["body/miscellaneous/variables.html",[16,1.224,65,0.083,67,2.054,70,2.442,71,2.442,72,2.346,84,2.346,86,2.268,207,2.268,309,0.056,310,0.068,311,0.056,441,2.54,465,2.346,468,2.346,469,2.346,470,2.849,471,2.849,616,2.346,617,2.346,618,3.732,619,3.073,620,3.073,621,3.073,622,3.073,623,3.732,624,3.073,625,3.073,626,3.073]]],"invertedIndex":[["",{"_index":65,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":462,"title":{},"body":{"coverage.html":{}}}],["0.55",{"_index":400,"title":{},"body":{"components/AppComponent.html":{}}}],["0/1",{"_index":467,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":464,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":463,"title":{},"body":{"coverage.html":{}}}],["0000ff",{"_index":403,"title":{},"body":{"components/AppComponent.html":{}}}],["1",{"_index":615,"title":{},"body":{"overview.html":{}}}],["1.0.0",{"_index":480,"title":{},"body":{"dependencies.html":{}}}],["1.10.0",{"_index":478,"title":{},"body":{"dependencies.html":{}}}],["120.975017",{"_index":514,"title":{},"body":{"index.html":{}}}],["120.979021",{"_index":369,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["13",{"_index":472,"title":{},"body":{"coverage.html":{}}}],["2",{"_index":614,"title":{},"body":{"overview.html":{}}}],["2018",{"_index":545,"title":{},"body":{"license.html":{}}}],["24.799448",{"_index":367,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["24.799524",{"_index":513,"title":{},"body":{"index.html":{}}}],["400px",{"_index":510,"title":{},"body":{"index.html":{}}}],["5/38",{"_index":473,"title":{},"body":{"coverage.html":{}}}],["6",{"_index":398,"title":{},"body":{"components/AppComponent.html":{}}}],["6.0.0",{"_index":483,"title":{},"body":{"dependencies.html":{}}}],["6.4.0",{"_index":488,"title":{},"body":{"dependencies.html":{}}}],["7.0.0",{"_index":484,"title":{},"body":{"dependencies.html":{}}}],["8.0.0",{"_index":485,"title":{},"body":{"dependencies.html":{}}}],["80vh",{"_index":424,"title":{},"body":{"components/AppComponent.html":{}}}],["9.0.0",{"_index":486,"title":{},"body":{"dependencies.html":{}}}],["_map",{"_index":194,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route",{"_index":234,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.end_address",{"_index":252,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.end_location",{"_index":250,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.start_address",{"_index":242,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.start_location",{"_index":239,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.via_waypoints[index",{"_index":263,"title":{},"body":{"directives/AgmDirection.html":{}}}],["above",{"_index":578,"title":{},"body":{"license.html":{}}}],["action",{"_index":603,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":428,"title":{},"body":{"components/AppComponent.html":{}}}],["add",{"_index":505,"title":{},"body":{"index.html":{}}}],["agm",{"_index":14,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"index.html":{}}}],["agm/core",{"_index":155,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["agmcoremodule",{"_index":440,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmcoremodule.forroot",{"_index":443,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmdirection",{"_index":1,"title":{"directives/AgmDirection.html":{}},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"coverage.html":{},"overview.html":{}}}],["agmdirectionmodule",{"_index":313,"title":{"modules/AgmDirectionModule.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["aizasybe2xky725",{"_index":625,"title":{},"body":{"miscellaneous/variables.html":{}}}],["allowed",{"_index":281,"title":{},"body":{"directives/AgmDirection.html":{}}}],["and/or",{"_index":569,"title":{},"body":{"license.html":{}}}],["angular",{"_index":492,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":482,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":154,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/platform",{"_index":437,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["api",{"_index":494,"title":{},"body":{"index.html":{}}}],["apikey",{"_index":444,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["app",{"_index":345,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component",{"_index":439,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["app.component.css",{"_index":348,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.html",{"_index":350,"title":{},"body":{"components/AppComponent.html":{}}}],["appcomponent",{"_index":338,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["appmodule",{"_index":429,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["apppage",{"_index":446,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["arising",{"_index":607,"title":{},"body":{"license.html":{}}}],["array",{"_index":148,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["array.isarray(this.markeroptions.waypoints",{"_index":260,"title":{},"body":{"directives/AgmDirection.html":{}}}],["associated",{"_index":556,"title":{},"body":{"license.html":{}}}],["async",{"_index":355,"title":{},"body":{"components/AppComponent.html":{}}}],["authors",{"_index":596,"title":{},"body":{"license.html":{}}}],["avoidhighways",{"_index":36,"title":{},"body":{"directives/AgmDirection.html":{}}}],["avoidtolls",{"_index":37,"title":{},"body":{"directives/AgmDirection.html":{}}}],["beta.2",{"_index":481,"title":{},"body":{"dependencies.html":{}}}],["bootstrap",{"_index":318,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["break",{"_index":274,"title":{},"body":{"directives/AgmDirection.html":{}}}],["browse",{"_index":612,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":438,"title":{},"body":{"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"modules.html":{}}}],["browser.get(browser.baseurl",{"_index":455,"title":{},"body":{"classes/AppPage.html":{}}}],["browsermodule",{"_index":436,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["buildnpm",{"_index":533,"title":{},"body":{"index.html":{}}}],["c",{"_index":544,"title":{},"body":{"license.html":{}}}],["case",{"_index":228,"title":{},"body":{"directives/AgmDirection.html":{}}}],["catch",{"_index":178,"title":{},"body":{"directives/AgmDirection.html":{}}}],["change",{"_index":162,"title":{},"body":{"directives/AgmDirection.html":{}}}],["charge",{"_index":551,"title":{},"body":{"license.html":{}}}],["chung",{"_index":380,"title":{},"body":{"components/AppComponent.html":{}}}],["claim",{"_index":599,"title":{},"body":{"license.html":{}}}],["class",{"_index":157,"title":{"classes/AppPage.html":{}},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["classes",{"_index":447,"title":{},"body":{"classes/AppPage.html":{}}}],["clear",{"_index":405,"title":{},"body":{"components/AppComponent.html":{}}}],["click",{"_index":304,"title":{},"body":{"directives/AgmDirection.html":{}}}],["clone",{"_index":528,"title":{},"body":{"index.html":{}}}],["cluster_agmdirectionmodule",{"_index":321,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_declarations",{"_index":322,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_exports",{"_index":323,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":430,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":433,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":431,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":432,"title":{},"body":{"modules/AppModule.html":{}}}],["color",{"_index":416,"title":{},"body":{"components/AppComponent.html":{}}}],["colors",{"_index":402,"title":{},"body":{"components/AppComponent.html":{}}}],["colors[index",{"_index":418,"title":{},"body":{"components/AppComponent.html":{}}}],["command",{"_index":503,"title":{},"body":{"index.html":{}}}],["component",{"_index":337,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"coverage.html":{},"overview.html":{}}}],["component_template",{"_index":427,"title":{},"body":{"components/AppComponent.html":{}}}],["components",{"_index":339,"title":{},"body":{"components/AppComponent.html":{}}}],["conditions",{"_index":577,"title":{},"body":{"license.html":{}}}],["connection",{"_index":608,"title":{},"body":{"license.html":{}}}],["console.error('can",{"_index":308,"title":{},"body":{"directives/AgmDirection.html":{}}}],["console.error('markeroptions",{"_index":272,"title":{},"body":{"directives/AgmDirection.html":{}}}],["console.warn('the",{"_index":275,"title":{},"body":{"directives/AgmDirection.html":{}}}],["console.warn(status",{"_index":283,"title":{},"body":{"directives/AgmDirection.html":{}}}],["const",{"_index":193,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["constructor",{"_index":59,"title":{},"body":{"directives/AgmDirection.html":{}}}],["constructor(gmapsapi",{"_index":60,"title":{},"body":{"directives/AgmDirection.html":{}}}],["content",{"_index":134,"title":{},"body":{"directives/AgmDirection.html":{},"classes/AppPage.html":{}}}],["context",{"_index":470,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["contract",{"_index":604,"title":{},"body":{"license.html":{}}}],["copies",{"_index":571,"title":{},"body":{"license.html":{}}}],["copy",{"_index":554,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":543,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":458,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["creating",{"_index":118,"title":{},"body":{"directives/AgmDirection.html":{}}}],["css",{"_index":509,"title":{},"body":{"index.html":{}}}],["current",{"_index":389,"title":{},"body":{"components/AppComponent.html":{}}}],["custom",{"_index":136,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["damages",{"_index":600,"title":{},"body":{"license.html":{}}}],["deal",{"_index":558,"title":{},"body":{"license.html":{}}}],["dealings",{"_index":609,"title":{},"body":{"license.html":{}}}],["declarations",{"_index":317,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["default",{"_index":70,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"miscellaneous/variables.html":{}}}],["defined",{"_index":62,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["dependencies",{"_index":315,"title":{"dependencies.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"overview.html":{}}}],["description",{"_index":138,"title":{},"body":{"directives/AgmDirection.html":{}}}],["destination",{"_index":38,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"index.html":{}}}],["destinationdrag",{"_index":53,"title":{},"body":{"directives/AgmDirection.html":{}}}],["destinationmarker",{"_index":19,"title":{},"body":{"directives/AgmDirection.html":{}}}],["destroy",{"_index":112,"title":{},"body":{"directives/AgmDirection.html":{}}}],["destroymarkers",{"_index":27,"title":{},"body":{"directives/AgmDirection.html":{}}}],["development",{"_index":523,"title":{},"body":{"index.html":{}}}],["direction",{"_index":15,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"index.html":{}}}],["direction.directive",{"_index":336,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.directive.ts",{"_index":7,"title":{},"body":{"directives/AgmDirection.html":{},"coverage.html":{}}}],["direction.directive.ts:10",{"_index":88,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:119",{"_index":123,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:12",{"_index":79,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:127",{"_index":116,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:14",{"_index":98,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:16",{"_index":96,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:18",{"_index":81,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:20",{"_index":101,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:22",{"_index":87,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:24",{"_index":91,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:26",{"_index":73,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:28",{"_index":74,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:293",{"_index":135,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:30",{"_index":93,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:32",{"_index":90,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:321",{"_index":128,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:338",{"_index":125,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:34",{"_index":85,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:351",{"_index":109,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:40",{"_index":83,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:43",{"_index":99,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:46",{"_index":94,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:49",{"_index":104,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:52",{"_index":105,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:55",{"_index":107,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:58",{"_index":108,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:61",{"_index":106,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:62",{"_index":103,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:64",{"_index":146,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:65",{"_index":144,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:68",{"_index":147,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:69",{"_index":142,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:70",{"_index":149,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:73",{"_index":63,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:79",{"_index":124,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:85",{"_index":121,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.gitnpm",{"_index":530,"title":{},"body":{"index.html":{}}}],["direction.module.ts",{"_index":327,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.module.ts:13",{"_index":333,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.module.ts:19",{"_index":330,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["directiondraw",{"_index":28,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directions",{"_index":127,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directionsrenderer",{"_index":21,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directionsresult",{"_index":231,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directionsservice",{"_index":22,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directionsstatus",{"_index":225,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directive",{"_index":0,"title":{"directives/AgmDirection.html":{}},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["directive/agm",{"_index":335,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["directives",{"_index":2,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["display",{"_index":188,"title":{},"body":{"directives/AgmDirection.html":{}}}],["distribute",{"_index":567,"title":{},"body":{"license.html":{}}}],["docs",{"_index":520,"title":{},"body":{"index.html":{}}}],["document",{"_index":519,"title":{},"body":{"index.html":{}}}],["documentation",{"_index":459,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["dom",{"_index":342,"title":{},"body":{"components/AppComponent.html":{}}}],["done",{"_index":499,"title":{},"body":{"index.html":{}}}],["drag",{"_index":169,"title":{},"body":{"directives/AgmDirection.html":{}}}],["dragend",{"_index":305,"title":{},"body":{"directives/AgmDirection.html":{}}}],["draw",{"_index":159,"title":{},"body":{"directives/AgmDirection.html":{}}}],["drivingoptions",{"_index":39,"title":{},"body":{"directives/AgmDirection.html":{}}}],["e",{"_index":179,"title":{},"body":{"directives/AgmDirection.html":{}}}],["element",{"_index":89,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["element(by.css('app",{"_index":456,"title":{},"body":{"classes/AppPage.html":{}}}],["emit",{"_index":223,"title":{},"body":{"directives/AgmDirection.html":{}}}],["end",{"_index":269,"title":{},"body":{"directives/AgmDirection.html":{}}}],["environment",{"_index":441,"title":{},"body":{"modules/AppModule.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["environment.googleapikey",{"_index":445,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.tsnpm",{"_index":536,"title":{},"body":{"index.html":{}}}],["environments/environment",{"_index":442,"title":{},"body":{"modules/AppModule.html":{}}}],["err",{"_index":271,"title":{},"body":{"directives/AgmDirection.html":{}}}],["error",{"_index":273,"title":{},"body":{"directives/AgmDirection.html":{}}}],["event",{"_index":110,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"license.html":{}}}],["event.routes[0",{"_index":409,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":102,"title":{},"body":{"directives/AgmDirection.html":{}}}],["exist",{"_index":161,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["export",{"_index":156,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{}}}],["exports",{"_index":320,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["express",{"_index":587,"title":{},"body":{"license.html":{}}}],["false",{"_index":72,"title":{},"body":{"directives/AgmDirection.html":{},"miscellaneous/variables.html":{}}}],["ff0000",{"_index":404,"title":{},"body":{"components/AppComponent.html":{}}}],["file",{"_index":5,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{}}}],["files",{"_index":557,"title":{},"body":{"license.html":{}}}],["fired",{"_index":111,"title":{},"body":{"directives/AgmDirection.html":{}}}],["first",{"_index":181,"title":{},"body":{"directives/AgmDirection.html":{}}}],["fitness",{"_index":592,"title":{},"body":{"license.html":{}}}],["flag",{"_index":171,"title":{},"body":{"directives/AgmDirection.html":{}}}],["following",{"_index":576,"title":{},"body":{"license.html":{}}}],["forchild",{"_index":329,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["foreach",{"_index":270,"title":{},"body":{"directives/AgmDirection.html":{}}}],["forest",{"_index":362,"title":{},"body":{"components/AppComponent.html":{}}}],["forroot",{"_index":332,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["free",{"_index":550,"title":{},"body":{"license.html":{}}}],["furnished",{"_index":574,"title":{},"body":{"license.html":{}}}],["fyvgmafg_1noblizzxvhhwi",{"_index":626,"title":{},"body":{"miscellaneous/variables.html":{}}}],["generated",{"_index":539,"title":{},"body":{"index.html":{}}}],["getdirection",{"_index":512,"title":{},"body":{"index.html":{}}}],["getting",{"_index":489,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettitletext",{"_index":449,"title":{},"body":{"classes/AppPage.html":{}}}],["git",{"_index":527,"title":{},"body":{"index.html":{}}}],["gmap",{"_index":535,"title":{},"body":{"index.html":{}}}],["gmapsapi",{"_index":69,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google",{"_index":493,"title":{},"body":{"index.html":{}}}],["google.maps.directionsrenderer",{"_index":143,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsrenderer(this.renderoptions",{"_index":196,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsrendereroptions",{"_index":92,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsresult",{"_index":359,"title":{},"body":{"components/AppComponent.html":{}}}],["google.maps.directionsservice",{"_index":145,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsstatus.ok",{"_index":229,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsstatus.over_query_limit",{"_index":168,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionswaypoint",{"_index":100,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.drivingoptions",{"_index":80,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.event.clearlisteners(this.destinationmarker",{"_index":306,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.event.clearlisteners(this.originmarker",{"_index":303,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.event.clearlisteners(w",{"_index":307,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.infowindow",{"_index":82,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.latlng",{"_index":77,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.latlngliteral",{"_index":78,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.map",{"_index":130,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["google.maps.marker",{"_index":132,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.marker(markeropts",{"_index":288,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.markeroptions",{"_index":158,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.place",{"_index":76,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.polygonoptions",{"_index":396,"title":{},"body":{"components/AppComponent.html":{}}}],["google.maps.polyline(polylineoptions",{"_index":415,"title":{},"body":{"components/AppComponent.html":{}}}],["google.maps.transitoptions",{"_index":95,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.travelmode",{"_index":97,"title":{},"body":{"directives/AgmDirection.html":{}}}],["googleapikey",{"_index":624,"title":{},"body":{"miscellaneous/variables.html":{}}}],["googlemap",{"_index":391,"title":{},"body":{"components/AppComponent.html":{}}}],["googlemaps",{"_index":151,"title":{},"body":{"directives/AgmDirection.html":{}}}],["googlemapsapiwrapper",{"_index":61,"title":{},"body":{"directives/AgmDirection.html":{}}}],["granted",{"_index":549,"title":{},"body":{"license.html":{}}}],["handler",{"_index":163,"title":{},"body":{"directives/AgmDirection.html":{}}}],["height",{"_index":423,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["hereby",{"_index":548,"title":{},"body":{"license.html":{}}}],["hide",{"_index":388,"title":{},"body":{"components/AppComponent.html":{}}}],["holders",{"_index":597,"title":{},"body":{"license.html":{}}}],["hsing",{"_index":386,"title":{},"body":{"components/AppComponent.html":{}}}],["html",{"_index":425,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["https://developers.google.com/maps/documentation/javascript/directions#directionsstatus",{"_index":226,"title":{},"body":{"directives/AgmDirection.html":{}}}],["https://developers.google.com/maps/documentation/javascript/directions?hl=en#directionsresults",{"_index":232,"title":{},"body":{"directives/AgmDirection.html":{}}}],["https://developers.google.com/maps/documentation/javascript/reference/marker?hl=zh",{"_index":289,"title":{},"body":{"directives/AgmDirection.html":{}}}],["https://github.com/explooosion/agm",{"_index":529,"title":{},"body":{"index.html":{}}}],["icon",{"_index":137,"title":{},"body":{"directives/AgmDirection.html":{}}}],["identifier",{"_index":460,"title":{},"body":{"coverage.html":{}}}],["ignore",{"_index":198,"title":{},"body":{"directives/AgmDirection.html":{}}}],["implements",{"_index":8,"title":{},"body":{"directives/AgmDirection.html":{}}}],["implied",{"_index":588,"title":{},"body":{"license.html":{}}}],["import",{"_index":150,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{}}}],["importing",{"_index":506,"title":{},"body":{"index.html":{}}}],["imports",{"_index":435,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["included",{"_index":581,"title":{},"body":{"license.html":{}}}],["including",{"_index":561,"title":{},"body":{"license.html":{}}}],["index",{"_index":16,"title":{"index.html":{}},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["infowindocontent",{"_index":293,"title":{},"body":{"directives/AgmDirection.html":{}}}],["infowindow",{"_index":40,"title":{},"body":{"directives/AgmDirection.html":{}}}],["input",{"_index":152,"title":{},"body":{"directives/AgmDirection.html":{}}}],["inputs",{"_index":35,"title":{},"body":{"directives/AgmDirection.html":{}}}],["install",{"_index":502,"title":{},"body":{"index.html":{}}}],["installation",{"_index":498,"title":{},"body":{"index.html":{}}}],["installnpm",{"_index":531,"title":{},"body":{"index.html":{}}}],["instance",{"_index":392,"title":{},"body":{"components/AppComponent.html":{}}}],["isfirstchange",{"_index":23,"title":{},"body":{"directives/AgmDirection.html":{}}}],["key",{"_index":507,"title":{},"body":{"index.html":{}}}],["kind",{"_index":586,"title":{},"body":{"license.html":{}}}],["lat",{"_index":351,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["layer",{"_index":174,"title":{},"body":{"directives/AgmDirection.html":{}}}],["leg.steps.foreach(step",{"_index":411,"title":{},"body":{"components/AppComponent.html":{}}}],["legend",{"_index":316,"title":{},"body":{"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["legs",{"_index":408,"title":{},"body":{"components/AppComponent.html":{}}}],["legs.foreach((leg",{"_index":410,"title":{},"body":{"components/AppComponent.html":{}}}],["less",{"_index":521,"title":{},"body":{"index.html":{}}}],["liability",{"_index":601,"title":{},"body":{"license.html":{}}}],["liable",{"_index":598,"title":{},"body":{"license.html":{}}}],["library",{"_index":538,"title":{},"body":{"index.html":{}}}],["license",{"_index":541,"title":{"license.html":{}},"body":{"index.html":{},"license.html":{}}}],["limitation",{"_index":562,"title":{},"body":{"license.html":{}}}],["limited",{"_index":589,"title":{},"body":{"license.html":{}}}],["literal",{"_index":84,"title":{},"body":{"directives/AgmDirection.html":{},"miscellaneous/variables.html":{}}}],["lng",{"_index":352,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["location",{"_index":379,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["main",{"_index":516,"title":{},"body":{"index.html":{}}}],["many",{"_index":278,"title":{},"body":{"directives/AgmDirection.html":{}}}],["map",{"_index":139,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"index.html":{}}}],["marker",{"_index":131,"title":{},"body":{"directives/AgmDirection.html":{}}}],["marker's",{"_index":140,"title":{},"body":{"directives/AgmDirection.html":{}}}],["marker.addlistener('click",{"_index":292,"title":{},"body":{"directives/AgmDirection.html":{}}}],["marker.clickable",{"_index":291,"title":{},"body":{"directives/AgmDirection.html":{}}}],["markeroptions",{"_index":41,"title":{},"body":{"directives/AgmDirection.html":{}}}],["markeropts",{"_index":133,"title":{},"body":{"directives/AgmDirection.html":{}}}],["markeropts.infowindow",{"_index":294,"title":{},"body":{"directives/AgmDirection.html":{}}}],["markers",{"_index":113,"title":{},"body":{"directives/AgmDirection.html":{}}}],["matching",{"_index":310,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["medical",{"_index":382,"title":{},"body":{"components/AppComponent.html":{}}}],["memberof",{"_index":285,"title":{},"body":{"directives/AgmDirection.html":{}}}],["merchantability",{"_index":591,"title":{},"body":{"license.html":{}}}],["merge",{"_index":565,"title":{},"body":{"license.html":{}}}],["metadata",{"_index":12,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["methods",{"_index":26,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["miscellaneous",{"_index":616,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["mit",{"_index":542,"title":{},"body":{"index.html":{},"license.html":{}}}],["modify",{"_index":564,"title":{},"body":{"license.html":{}}}],["module",{"_index":312,"title":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["modules",{"_index":314,"title":{"modules.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["modulewithproviders",{"_index":331,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["name",{"_index":66,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["national",{"_index":385,"title":{},"body":{"components/AppComponent.html":{}}}],["navigateto",{"_index":450,"title":{},"body":{"classes/AppPage.html":{}}}],["new",{"_index":141,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"coverage.html":{}}}],["nextsegment",{"_index":412,"title":{},"body":{"components/AppComponent.html":{}}}],["nextsegment.foreach(next",{"_index":419,"title":{},"body":{"components/AppComponent.html":{}}}],["ngmodule",{"_index":334,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{}}}],["ngonchanges",{"_index":29,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ngonchanges(obj",{"_index":120,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ngondestroy",{"_index":30,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ngoninit",{"_index":31,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["noninfringement",{"_index":595,"title":{},"body":{"license.html":{}}}],["notice",{"_index":579,"title":{},"body":{"license.html":{}}}],["npm",{"_index":501,"title":{},"body":{"index.html":{}}}],["null",{"_index":208,"title":{},"body":{"directives/AgmDirection.html":{}}}],["number",{"_index":366,"title":{},"body":{"components/AppComponent.html":{}}}],["obj",{"_index":122,"title":{},"body":{"directives/AgmDirection.html":{}}}],["obj.renderoptions",{"_index":189,"title":{},"body":{"directives/AgmDirection.html":{}}}],["obj.renderoptions.firstchange",{"_index":190,"title":{},"body":{"directives/AgmDirection.html":{}}}],["object",{"_index":207,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"miscellaneous/variables.html":{}}}],["obtaining",{"_index":553,"title":{},"body":{"license.html":{}}}],["office",{"_index":518,"title":{},"body":{"index.html":{}}}],["official",{"_index":491,"title":{},"body":{"index.html":{}}}],["onchange",{"_index":54,"title":{},"body":{"directives/AgmDirection.html":{}}}],["onchanges",{"_index":9,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ondestroy",{"_index":11,"title":{},"body":{"directives/AgmDirection.html":{}}}],["oninit",{"_index":10,"title":{},"body":{"directives/AgmDirection.html":{}}}],["onmapready",{"_index":354,"title":{},"body":{"components/AppComponent.html":{}}}],["onmapready(event",{"_index":356,"title":{},"body":{"components/AppComponent.html":{}}}],["onresponse",{"_index":55,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["onresponse(event",{"_index":358,"title":{},"body":{"components/AppComponent.html":{}}}],["optimizewaypoints",{"_index":42,"title":{},"body":{"directives/AgmDirection.html":{}}}],["optional",{"_index":68,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["origin",{"_index":43,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"index.html":{}}}],["origindrag",{"_index":56,"title":{},"body":{"directives/AgmDirection.html":{}}}],["originmarker",{"_index":24,"title":{},"body":{"directives/AgmDirection.html":{}}}],["otherwise",{"_index":606,"title":{},"body":{"license.html":{}}}],["out",{"_index":325,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"license.html":{},"overview.html":{}}}],["output",{"_index":153,"title":{},"body":{"directives/AgmDirection.html":{}}}],["outputs",{"_index":52,"title":{},"body":{"directives/AgmDirection.html":{}}}],["overview",{"_index":613,"title":{"overview.html":{}},"body":{"overview.html":{}}}],["pack:libcd",{"_index":534,"title":{},"body":{"index.html":{}}}],["package",{"_index":476,"title":{"dependencies.html":{}},"body":{}}],["panel",{"_index":44,"title":{},"body":{"directives/AgmDirection.html":{}}}],["param",{"_index":284,"title":{},"body":{"directives/AgmDirection.html":{}}}],["parameters",{"_index":64,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["park",{"_index":363,"title":{},"body":{"components/AppComponent.html":{}}}],["particular",{"_index":593,"title":{},"body":{"license.html":{}}}],["peer",{"_index":479,"title":{},"body":{"dependencies.html":{}}}],["period",{"_index":282,"title":{},"body":{"directives/AgmDirection.html":{}}}],["permission",{"_index":547,"title":{},"body":{"license.html":{}}}],["permit",{"_index":572,"title":{},"body":{"license.html":{}}}],["person",{"_index":552,"title":{},"body":{"license.html":{}}}],["persons",{"_index":573,"title":{},"body":{"license.html":{}}}],["playground",{"_index":525,"title":{},"body":{"index.html":{}}}],["playground/.../environment.prod.ts",{"_index":619,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../environment.ts",{"_index":620,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../test.ts",{"_index":618,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/e2e/src/app.po.ts",{"_index":448,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["playground/e2e/src/app.po.ts:4",{"_index":453,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/e2e/src/app.po.ts:8",{"_index":451,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/src/app/app.component.ts",{"_index":344,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["playground/src/app/app.component.ts:10",{"_index":368,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:11",{"_index":370,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:13",{"_index":375,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:14",{"_index":365,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:16",{"_index":387,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:22",{"_index":378,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:25",{"_index":376,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:28",{"_index":371,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:31",{"_index":357,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:35",{"_index":360,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.module.ts",{"_index":434,"title":{},"body":{"modules/AppModule.html":{}}}],["playground/src/environments/environment.prod.ts",{"_index":465,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/environments/environment.ts",{"_index":468,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/test.ts",{"_index":469,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["polyline.setmap(null",{"_index":407,"title":{},"body":{"components/AppComponent.html":{}}}],["polylineoptions",{"_index":395,"title":{},"body":{"components/AppComponent.html":{}}}],["polylines",{"_index":353,"title":{},"body":{"components/AppComponent.html":{}}}],["portions",{"_index":583,"title":{},"body":{"license.html":{}}}],["presidential",{"_index":517,"title":{},"body":{"index.html":{}}}],["private",{"_index":18,"title":{},"body":{"directives/AgmDirection.html":{}}}],["production",{"_index":623,"title":{},"body":{"miscellaneous/variables.html":{}}}],["project",{"_index":526,"title":{},"body":{"index.html":{}}}],["promise",{"_index":452,"title":{},"body":{"classes/AppPage.html":{}}}],["properties",{"_index":17,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["protractor",{"_index":454,"title":{},"body":{"classes/AppPage.html":{}}}],["provided",{"_index":584,"title":{},"body":{"license.html":{}}}],["provideroutealternatives",{"_index":45,"title":{},"body":{"directives/AgmDirection.html":{}}}],["providers",{"_index":319,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["public",{"_index":20,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"index.html":{}}}],["publish",{"_index":566,"title":{},"body":{"license.html":{}}}],["purpose",{"_index":594,"title":{},"body":{"license.html":{}}}],["query",{"_index":167,"title":{},"body":{"directives/AgmDirection.html":{}}}],["railway",{"_index":373,"title":{},"body":{"components/AppComponent.html":{}}}],["reading",{"_index":497,"title":{},"body":{"index.html":{}}}],["remove",{"_index":126,"title":{},"body":{"directives/AgmDirection.html":{}}}],["removedirections",{"_index":32,"title":{},"body":{"directives/AgmDirection.html":{}}}],["removemarkers",{"_index":33,"title":{},"body":{"directives/AgmDirection.html":{}}}],["render",{"_index":160,"title":{},"body":{"directives/AgmDirection.html":{}}}],["renderoptions",{"_index":46,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["renderroute",{"_index":47,"title":{},"body":{"directives/AgmDirection.html":{}}}],["request",{"_index":165,"title":{},"body":{"directives/AgmDirection.html":{}}}],["requests",{"_index":279,"title":{},"body":{"directives/AgmDirection.html":{}}}],["require",{"_index":471,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["require.context",{"_index":621,"title":{},"body":{"miscellaneous/variables.html":{}}}],["reset",{"_index":187,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["response",{"_index":164,"title":{},"body":{"directives/AgmDirection.html":{}}}],["response.routes[0].legs[0",{"_index":235,"title":{},"body":{"directives/AgmDirection.html":{}}}],["restriction",{"_index":560,"title":{},"body":{"license.html":{}}}],["result",{"_index":309,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["results",{"_index":311,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["return",{"_index":186,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"classes/AppPage.html":{}}}],["returns",{"_index":114,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["rights",{"_index":563,"title":{},"body":{"license.html":{}}}],["robby",{"_index":546,"title":{},"body":{"license.html":{}}}],["root",{"_index":346,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["run",{"_index":532,"title":{},"body":{"index.html":{}}}],["rxjs",{"_index":487,"title":{},"body":{"dependencies.html":{}}}],["same",{"_index":259,"title":{},"body":{"directives/AgmDirection.html":{}}}],["save",{"_index":390,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["selector",{"_index":13,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["sell",{"_index":570,"title":{},"body":{"license.html":{}}}],["send",{"_index":166,"title":{},"body":{"directives/AgmDirection.html":{}}}],["sendinfowindow",{"_index":57,"title":{},"body":{"directives/AgmDirection.html":{}}}],["sent",{"_index":277,"title":{},"body":{"directives/AgmDirection.html":{}}}],["set",{"_index":210,"title":{},"body":{"directives/AgmDirection.html":{}}}],["setmarker",{"_index":34,"title":{},"body":{"directives/AgmDirection.html":{}}}],["setmarker(map",{"_index":129,"title":{},"body":{"directives/AgmDirection.html":{}}}],["shall",{"_index":580,"title":{},"body":{"license.html":{}}}],["shan",{"_index":381,"title":{},"body":{"components/AppComponent.html":{}}}],["software",{"_index":555,"title":{},"body":{"license.html":{}}}],["source",{"_index":4,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["span')).gettext",{"_index":457,"title":{},"body":{"classes/AppPage.html":{}}}],["spec\\.ts",{"_index":622,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/directive/agm",{"_index":6,"title":{},"body":{"directives/AgmDirection.html":{},"coverage.html":{}}}],["src/modules/agm",{"_index":326,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["start",{"_index":496,"title":{},"body":{"index.html":{}}}],["started",{"_index":490,"title":{"index.html":{},"license.html":{}},"body":{}}],["starter",{"_index":540,"title":{},"body":{"index.html":{}}}],["startgenerator",{"_index":537,"title":{},"body":{"index.html":{}}}],["statements",{"_index":461,"title":{},"body":{"coverage.html":{}}}],["static",{"_index":328,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["station",{"_index":374,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["status",{"_index":58,"title":{},"body":{"directives/AgmDirection.html":{}}}],["step.path",{"_index":413,"title":{},"body":{"components/AppComponent.html":{}}}],["steppolyline",{"_index":414,"title":{},"body":{"components/AppComponent.html":{}}}],["steppolyline.getpath().push(next",{"_index":420,"title":{},"body":{"components/AppComponent.html":{}}}],["steppolyline.setmap(this.map",{"_index":422,"title":{},"body":{"components/AppComponent.html":{}}}],["steppolyline.setoptions",{"_index":417,"title":{},"body":{"components/AppComponent.html":{}}}],["stopover",{"_index":384,"title":{},"body":{"components/AppComponent.html":{}}}],["string",{"_index":75,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["strokecolor",{"_index":401,"title":{},"body":{"components/AppComponent.html":{}}}],["strokeopacity",{"_index":399,"title":{},"body":{"components/AppComponent.html":{}}}],["strokeweight",{"_index":397,"title":{},"body":{"components/AppComponent.html":{}}}],["style",{"_index":394,"title":{},"body":{"components/AppComponent.html":{}}}],["styles",{"_index":341,"title":{},"body":{"components/AppComponent.html":{}}}],["styleurls",{"_index":347,"title":{},"body":{"components/AppComponent.html":{}}}],["subject",{"_index":575,"title":{},"body":{"license.html":{}}}],["sublicense",{"_index":568,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":582,"title":{},"body":{"license.html":{}}}],["support",{"_index":610,"title":{},"body":{"modules.html":{}}}],["suppresspolylines",{"_index":377,"title":{},"body":{"components/AppComponent.html":{}}}],["svg",{"_index":611,"title":{},"body":{"modules.html":{}}}],["switch",{"_index":227,"title":{},"body":{"directives/AgmDirection.html":{}}}],["table",{"_index":475,"title":{},"body":{"coverage.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":474,"title":{},"body":{"coverage.html":{}}}],["taichung",{"_index":372,"title":{},"body":{"components/AppComponent.html":{}}}],["taipei",{"_index":515,"title":{},"body":{"index.html":{}}}],["taiwan",{"_index":364,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["template",{"_index":340,"title":{},"body":{"components/AppComponent.html":{}}}],["templateurl",{"_index":349,"title":{},"body":{"components/AppComponent.html":{}}}],["this.avoidhighways",{"_index":220,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.avoidtolls",{"_index":221,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destination",{"_index":213,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["this.destinationdrag.emit(this.destination",{"_index":256,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destinationmarker",{"_index":251,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destinationmarker.addlistener('dragend",{"_index":254,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destinationmarker.position",{"_index":255,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destinationmarker.setmap(null",{"_index":298,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destroymarkers",{"_index":191,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directiondraw",{"_index":173,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer",{"_index":184,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.addlistener('directions_changed",{"_index":200,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setdirections(response",{"_index":230,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setdirections(this.renderroute",{"_index":209,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setmap(map",{"_index":199,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setmap(null",{"_index":302,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setpanel(null",{"_index":204,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setpanel(this.panel",{"_index":205,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsservice",{"_index":202,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsservice.route",{"_index":211,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.drivingoptions",{"_index":216,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.getdirection",{"_index":511,"title":{},"body":{"index.html":{}}}],["this.gmapsapi.getnativemap().then(_map",{"_index":192,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.infowindow",{"_index":286,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.infowindow.open(map",{"_index":296,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.infowindow.setcontent(infowindocontent",{"_index":295,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.isfirstchange",{"_index":180,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.map",{"_index":393,"title":{},"body":{"components/AppComponent.html":{}}}],["this.markeroptions",{"_index":233,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.destination",{"_index":247,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.destination.draggable",{"_index":253,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.destination.map",{"_index":248,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.destination.position",{"_index":249,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.origin",{"_index":236,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.origin.draggable",{"_index":243,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.origin.map",{"_index":237,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.origin.position",{"_index":238,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints",{"_index":257,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints.map",{"_index":261,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints.position",{"_index":262,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints[index",{"_index":268,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints[index].map",{"_index":266,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints[index].position",{"_index":267,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.onchange.emit(this.directionsrenderer.getdirections",{"_index":201,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.onresponse.emit(response",{"_index":222,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.optimizewaypoints",{"_index":218,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.origin",{"_index":212,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["this.origindrag.emit(this.origin",{"_index":246,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.originmarker",{"_index":240,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.originmarker.addlistener('dragend",{"_index":244,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.originmarker.position",{"_index":245,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.originmarker.setmap(null",{"_index":297,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.panel",{"_index":203,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.polylines.foreach(polyline",{"_index":406,"title":{},"body":{"components/AppComponent.html":{}}}],["this.polylines.push(steppolyline",{"_index":421,"title":{},"body":{"components/AppComponent.html":{}}}],["this.provideroutealternatives",{"_index":219,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.removedirections",{"_index":177,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.removemarkers",{"_index":176,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.renderroute",{"_index":206,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.sendinfowindow.emit(this.infowindow",{"_index":287,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.setmarker",{"_index":241,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.status.emit(status",{"_index":224,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.transitoptions",{"_index":215,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.travelmode",{"_index":214,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.visible",{"_index":172,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.waypoints",{"_index":217,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.waypoints.foreach((waypoint",{"_index":258,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.waypointsmarker.foreach((w",{"_index":299,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.waypointsmarker.push(this.setmarker",{"_index":264,"title":{},"body":{"directives/AgmDirection.html":{}}}],["time",{"_index":182,"title":{},"body":{"directives/AgmDirection.html":{}}}],["tort",{"_index":605,"title":{},"body":{"license.html":{}}}],["transitoptions",{"_index":48,"title":{},"body":{"directives/AgmDirection.html":{}}}],["travelmode",{"_index":49,"title":{},"body":{"directives/AgmDirection.html":{}}}],["tree",{"_index":343,"title":{},"body":{"components/AppComponent.html":{}}}],["true",{"_index":86,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"miscellaneous/variables.html":{}}}],["try",{"_index":175,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ts",{"_index":197,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["tslib",{"_index":477,"title":{},"body":{"dependencies.html":{}}}],["tw#markeroptions.clickable",{"_index":290,"title":{},"body":{"directives/AgmDirection.html":{}}}],["type",{"_index":67,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["typeof",{"_index":183,"title":{},"body":{"directives/AgmDirection.html":{}}}],["undefined",{"_index":185,"title":{},"body":{"directives/AgmDirection.html":{}}}],["university",{"_index":383,"title":{},"body":{"components/AppComponent.html":{}}}],["unknown",{"_index":195,"title":{},"body":{"directives/AgmDirection.html":{}}}],["updating",{"_index":119,"title":{},"body":{"directives/AgmDirection.html":{}}}],["usage",{"_index":508,"title":{},"body":{"index.html":{}}}],["use",{"_index":170,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{},"license.html":{}}}],["use?👉",{"_index":495,"title":{},"body":{"index.html":{}}}],["useful",{"_index":522,"title":{},"body":{"index.html":{}}}],["user",{"_index":117,"title":{},"body":{"directives/AgmDirection.html":{}}}],["using",{"_index":500,"title":{},"body":{"index.html":{}}}],["value",{"_index":71,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"miscellaneous/variables.html":{}}}],["var",{"_index":426,"title":{},"body":{"components/AppComponent.html":{}}}],["variable",{"_index":466,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":617,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["visible",{"_index":50,"title":{},"body":{"directives/AgmDirection.html":{}}}],["void",{"_index":115,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["w",{"_index":300,"title":{},"body":{"directives/AgmDirection.html":{}}}],["w.setmap(null",{"_index":301,"title":{},"body":{"directives/AgmDirection.html":{}}}],["warranties",{"_index":590,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":585,"title":{},"body":{"license.html":{}}}],["waypoint",{"_index":265,"title":{},"body":{"directives/AgmDirection.html":{}}}],["waypoints",{"_index":51,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["waypointsmarker",{"_index":25,"title":{},"body":{"directives/AgmDirection.html":{}}}],["webpage",{"_index":276,"title":{},"body":{"directives/AgmDirection.html":{}}}],["wenxin",{"_index":361,"title":{},"body":{"components/AppComponent.html":{}}}],["whether",{"_index":602,"title":{},"body":{"license.html":{}}}],["within",{"_index":280,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["without",{"_index":559,"title":{},"body":{"license.html":{}}}],["x1f449",{"_index":524,"title":{},"body":{"index.html":{}}}],["yarn",{"_index":504,"title":{},"body":{"index.html":{}}}],["zoom",{"_index":324,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]},
- "store": {"directives/AgmDirection.html":{"url":"directives/AgmDirection.html","title":"directive - AgmDirection","body":"\n \n\n\n\n\n\n\n\n Directives\n AgmDirection\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/directive/agm-direction.directive.ts\n \n\n\n \n Implements\n \n \n OnChanges\n OnInit\n OnDestroy\n \n\n\n \n Metadata\n \n \n\n \n Selector\n agm-direction\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n destinationMarker\n \n \n Public\n directionsRenderer\n \n \n Public\n directionsService\n \n \n Private\n isFirstChange\n \n \n Private\n originMarker\n \n \n Private\n waypointsMarker\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Private\n destroyMarkers\n \n \n Private\n directionDraw\n \n \n ngOnChanges\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n Private\n removeDirections\n \n \n Private\n removeMarkers\n \n \n Private\n setMarker\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n avoidHighways\n \n \n avoidTolls\n \n \n destination\n \n \n drivingOptions\n \n \n infoWindow\n \n \n markerOptions\n \n \n optimizeWaypoints\n \n \n origin\n \n \n panel\n \n \n provideRouteAlternatives\n \n \n renderOptions\n \n \n renderRoute\n \n \n transitOptions\n \n \n travelMode\n \n \n visible\n \n \n waypoints\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n destinationDrag\n \n \n onChange\n \n \n onResponse\n \n \n originDrag\n \n \n sendInfoWindow\n \n \n status\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(gmapsApi: GoogleMapsAPIWrapper)\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:73\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n gmapsApi\n \n \n GoogleMapsAPIWrapper\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n avoidHighways\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:26\n \n \n \n \n \n \n \n \n \n avoidTolls\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:28\n \n \n \n \n \n \n \n \n \n destination\n \n \n \n \n Type : string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:12\n \n \n \n \n \n \n \n \n \n drivingOptions\n \n \n \n \n Type : google.maps.DrivingOptions\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:18\n \n \n \n \n \n \n \n \n \n infoWindow\n \n \n \n \n Type : google.maps.InfoWindow\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:40\n \n \n \n \n \n \n \n \n \n markerOptions\n \n \n \n \n Type : literal type\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:34\n \n \n \n \n \n \n \n \n \n optimizeWaypoints\n \n \n \n \n Default value : true\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:22\n \n \n \n \n \n \n \n \n \n origin\n \n \n \n \n Type : string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:10\n \n \n \n \n \n \n \n \n \n panel\n \n \n \n \n Type : Element\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:32\n \n \n \n \n \n \n \n \n \n provideRouteAlternatives\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:24\n \n \n \n \n \n \n \n \n \n renderOptions\n \n \n \n \n Type : google.maps.DirectionsRendererOptions\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:30\n \n \n \n \n \n \n \n \n \n renderRoute\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:46\n \n \n \n \n \n \n \n \n \n transitOptions\n \n \n \n \n Type : google.maps.TransitOptions\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:16\n \n \n \n \n \n \n \n \n \n travelMode\n \n \n \n \n Type : google.maps.TravelMode\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:14\n \n \n \n \n \n \n \n \n \n visible\n \n \n \n \n Default value : true\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:43\n \n \n \n \n \n \n \n \n \n waypoints\n \n \n \n \n Type : google.maps.DirectionsWaypoint[]\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:20\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n destinationDrag\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:62\n \n \n \n \n \n \n \n \n \n onChange\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:49\n \n \n \n \n \n \n \n \n \n onResponse\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:52\n \n \n \n \n \n \n \n \n \n originDrag\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:61\n \n \n \n \n \n \n \n \n \n sendInfoWindow\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:55\n \n \n \n \n \n \n \n \n \n status\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:58\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Private\n destroyMarkers\n \n \n \n \n \n \n \n \n destroyMarkers()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:351\n \n \n\n\n \n \n This event is fired when destroy markers\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n directionDraw\n \n \n \n \n \n \n \n \n directionDraw()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:127\n \n \n\n\n \n \n This event is fired when the user creating or updating this direction\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges(obj: any)\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:85\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n obj\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:119\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:79\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n removeDirections\n \n \n \n \n \n \n \n \n removeDirections()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:338\n \n \n\n\n \n \n This event is fired when remove directions\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n removeMarkers\n \n \n \n \n \n \n \n \n removeMarkers()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:321\n \n \n\n\n \n \n This event is fired when remove markers\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n setMarker\n \n \n \n \n \n \n \n \n setMarker(map: google.maps.Map, marker: google.maps.Marker | google.maps.DirectionsWaypoint, markerOpts: any, content: google.maps.LatLng | string)\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:293\n \n \n\n\n \n \n Custom Origin and Destination Icon\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n map\n \n google.maps.Map\n \n\n \n No\n \n\n\n \n map\n\n \n \n \n marker\n \n google.maps.Marker | google.maps.DirectionsWaypoint\n \n\n \n No\n \n\n\n \n marker\n\n \n \n \n markerOpts\n \n any\n \n\n \n No\n \n\n\n \n properties\n\n \n \n \n content\n \n google.maps.LatLng | string\n \n\n \n No\n \n\n\n \n marker's infowindow content\n\n \n \n \n \n \n \n \n \n Returns : google.maps.Marker\n\n \n \n new marker\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n destinationMarker\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:69\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n directionsRenderer\n \n \n \n \n \n \n Type : google.maps.DirectionsRenderer\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:65\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n directionsService\n \n \n \n \n \n \n Type : google.maps.DirectionsService\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:64\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n isFirstChange\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:73\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n originMarker\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:68\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n waypointsMarker\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:70\n \n \n\n\n \n \n\n\n\n \n\n\n \n import 'googlemaps';\nimport { Directive, Input, Output, OnChanges, OnInit, EventEmitter, OnDestroy } from '@angular/core';\nimport { GoogleMapsAPIWrapper } from '@agm/core';\n\n@Directive({\n selector: 'agm-direction',\n})\nexport class AgmDirection implements OnChanges, OnInit, OnDestroy {\n\n @Input() origin?: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;\n\n @Input() destination?: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;\n\n @Input() travelMode: google.maps.TravelMode;\n\n @Input() transitOptions: google.maps.TransitOptions;\n\n @Input() drivingOptions: google.maps.DrivingOptions;\n\n @Input() waypoints: google.maps.DirectionsWaypoint[];\n\n @Input() optimizeWaypoints = true;\n\n @Input() provideRouteAlternatives = false;\n\n @Input() avoidHighways = false;\n\n @Input() avoidTolls = false;\n\n @Input() renderOptions: google.maps.DirectionsRendererOptions;\n\n @Input() panel?: Element;\n\n @Input() markerOptions: {\n origin: google.maps.MarkerOptions,\n destination: google.maps.MarkerOptions,\n waypoints: google.maps.MarkerOptions,\n };\n\n @Input() infoWindow: google.maps.InfoWindow;\n\n // Remove or draw direction\n @Input() visible = true;\n\n // Render exist direction\n @Input() renderRoute: any;\n\n // Direction change event handler\n @Output() onChange: EventEmitter = new EventEmitter();\n\n // Direction response for the new request\n @Output() onResponse: EventEmitter = new EventEmitter();\n\n // Send a custom infowindow\n @Output() sendInfoWindow: EventEmitter = new EventEmitter();\n\n // Status of Directions Query (google.maps.DirectionsStatus.OVER_QUERY_LIMIT)\n @Output() status: EventEmitter = new EventEmitter();\n\n // Marker drag event handler\n @Output() originDrag: EventEmitter = new EventEmitter();\n @Output() destinationDrag: EventEmitter = new EventEmitter();\n\n public directionsService: google.maps.DirectionsService;\n public directionsRenderer: google.maps.DirectionsRenderer;\n\n // Use for custom marker\n private originMarker: any;\n private destinationMarker: any;\n private waypointsMarker: Array = [];\n\n // Use for visible flag\n private isFirstChange = true;\n\n constructor(\n private gmapsApi: GoogleMapsAPIWrapper,\n ) { }\n\n ngOnInit() {\n if (this.visible === true) {\n this.directionDraw();\n }\n }\n\n ngOnChanges(obj: any) {\n /**\n * When visible is false then remove the direction layer\n */\n if (!this.visible) {\n try {\n this.removeMarkers();\n this.removeDirections();\n } catch (e) { }\n } else {\n if (this.isFirstChange) {\n /**\n * When visible is false at the first time\n */\n if (typeof this.directionsRenderer === 'undefined') {\n this.directionDraw();\n }\n this.isFirstChange = false;\n return;\n }\n\n /**\n * When renderOptions are not first change then reset the display\n */\n if (typeof obj.renderOptions !== 'undefined') {\n if (obj.renderOptions.firstChange === false) {\n this.removeMarkers();\n this.removeDirections();\n }\n }\n this.directionDraw();\n }\n }\n\n ngOnDestroy() {\n this.destroyMarkers();\n this.removeDirections();\n }\n\n /**\n * This event is fired when the user creating or updating this direction\n */\n private directionDraw() {\n this.gmapsApi.getNativeMap().then(_map => {\n\n const map = _map as unknown as google.maps.Map;\n\n if (typeof this.directionsRenderer === 'undefined') {\n this.directionsRenderer = new google.maps.DirectionsRenderer(this.renderOptions);\n // @ts-ignore\n this.directionsRenderer.setMap(map);\n this.directionsRenderer.addListener('directions_changed', () => {\n this.onChange.emit(this.directionsRenderer.getDirections());\n });\n }\n\n if (typeof this.directionsService === 'undefined') {\n this.directionsService = new google.maps.DirectionsService();\n }\n\n if (typeof this.panel === 'undefined') {\n // @ts-ignore\n this.directionsRenderer.setPanel(null);\n } else {\n this.directionsRenderer.setPanel(this.panel);\n }\n\n // Render exist direction\n if (typeof this.renderRoute === 'object' && this.renderRoute !== null) {\n this.directionsRenderer.setDirections(this.renderRoute);\n this.renderRoute = null; // or set undefined, ''\n } else {\n\n // Request new direction\n this.directionsService.route({\n origin: this.origin,\n destination: this.destination,\n travelMode: this.travelMode,\n transitOptions: this.transitOptions,\n drivingOptions: this.drivingOptions,\n waypoints: this.waypoints,\n optimizeWaypoints: this.optimizeWaypoints,\n provideRouteAlternatives: this.provideRouteAlternatives,\n avoidHighways: this.avoidHighways,\n avoidTolls: this.avoidTolls,\n }, (response, status) => {\n\n this.onResponse.emit(response);\n\n // Emit Query Status\n this.status.emit(status);\n\n /**\n * DirectionsStatus\n * https://developers.google.com/maps/documentation/javascript/directions#DirectionsStatus\n */\n switch (status) {\n case google.maps.DirectionsStatus.OK:\n\n this.directionsRenderer.setDirections(response);\n\n /**\n * Emit The DirectionsResult Object\n * https://developers.google.com/maps/documentation/javascript/directions?hl=en#DirectionsResults\n */\n // Custom Markers\n if (typeof this.markerOptions !== 'undefined') {\n\n this.destroyMarkers();\n\n // Set custom markers\n const _route = response.routes[0].legs[0];\n try {\n // Origin Marker\n if (typeof this.markerOptions.origin !== 'undefined') {\n this.markerOptions.origin.map = map;\n this.markerOptions.origin.position = _route.start_location;\n this.originMarker = this.setMarker(\n map,\n this.originMarker,\n this.markerOptions.origin,\n _route.start_address,\n );\n\n if (this.markerOptions.origin.draggable) {\n this.originMarker.addListener('dragend', () => {\n this.origin = this.originMarker.position;\n this.directionDraw();\n this.originDrag.emit(this.origin);\n });\n }\n }\n // Destination Marker\n if (typeof this.markerOptions.destination !== 'undefined') {\n this.markerOptions.destination.map = map;\n this.markerOptions.destination.position = _route.end_location;\n this.destinationMarker = this.setMarker(\n map,\n this.destinationMarker,\n this.markerOptions.destination,\n _route.end_address,\n );\n if (this.markerOptions.destination.draggable) {\n this.destinationMarker.addListener('dragend', () => {\n this.destination = this.destinationMarker.position;\n this.directionDraw();\n this.destinationDrag.emit(this.destination);\n });\n }\n }\n\n // Waypoints Marker\n if (typeof this.markerOptions.waypoints !== 'undefined') {\n\n this.waypoints.forEach((waypoint, index) => {\n\n // If waypoints are not array then set all the same\n if (!Array.isArray(this.markerOptions.waypoints)) {\n this.markerOptions.waypoints.map = map;\n this.markerOptions.waypoints.position = _route.via_waypoints[index];\n this.waypointsMarker.push(this.setMarker(\n map,\n waypoint,\n this.markerOptions.waypoints,\n _route.via_waypoints[index],\n ));\n } else {\n this.markerOptions.waypoints[index].map = map;\n this.markerOptions.waypoints[index].position = _route.via_waypoints[index];\n this.waypointsMarker.push(this.setMarker(\n map,\n waypoint,\n this.markerOptions.waypoints[index],\n _route.via_waypoints[index],\n ));\n }\n\n }); // End forEach\n\n }\n } catch (err) {\n console.error('MarkerOptions error.', err);\n }\n }\n\n break;\n\n case google.maps.DirectionsStatus.OVER_QUERY_LIMIT:\n console.warn('The webpage has sent too many requests within the allowed time period.');\n break;\n default:\n // console.warn(status);\n break;\n } // End switch\n });\n }\n });\n }\n\n /**\n * Custom Origin and Destination Icon\n * @param map map\n * @param marker marker\n * @param markerOpts properties\n * @param content marker's infowindow content\n * @returns new marker\n * @memberof AgmDirection\n */\n private setMarker(\n map: google.maps.Map,\n marker: google.maps.Marker | google.maps.DirectionsWaypoint,\n markerOpts: any,\n content: google.maps.LatLng | string\n ): google.maps.Marker {\n if (typeof this.infoWindow === 'undefined') {\n this.infoWindow = new google.maps.InfoWindow();\n this.sendInfoWindow.emit(this.infoWindow);\n }\n\n marker = new google.maps.Marker(markerOpts);\n // https://developers.google.com/maps/documentation/javascript/reference/marker?hl=zh-tw#MarkerOptions.clickable\n // @ts-ignore\n if (marker.clickable) {\n marker.addListener('click', () => {\n const infowindoContent: string = typeof markerOpts.infoWindow === 'undefined' ? content : markerOpts.infoWindow;\n this.infoWindow.setContent(infowindoContent);\n // @ts-ignore\n this.infoWindow.open(map, marker);\n });\n }\n return marker;\n }\n\n /**\n * This event is fired when remove markers\n */\n private removeMarkers(): void {\n if (typeof this.originMarker !== 'undefined') {\n this.originMarker.setMap(null);\n }\n if (typeof this.destinationMarker !== 'undefined') {\n this.destinationMarker.setMap(null);\n }\n this.waypointsMarker.forEach((w: any) => {\n if (typeof w !== 'undefined') {\n w.setMap(null);\n }\n });\n }\n\n /**\n * This event is fired when remove directions\n */\n private removeDirections(): void {\n if (this.directionsRenderer !== undefined) {\n // @ts-ignore\n this.directionsRenderer.setPanel(null);\n this.directionsRenderer.setMap(null);\n // @ts-ignore\n this.directionsRenderer = undefined;\n }\n }\n\n /**\n * This event is fired when destroy markers\n */\n private destroyMarkers(): void {\n // Remove origin markers\n try {\n if (typeof this.originMarker !== 'undefined') {\n google.maps.event.clearListeners(this.originMarker, 'click');\n if (this.markerOptions.origin.draggable) {\n google.maps.event.clearListeners(this.originMarker, 'dragend');\n }\n }\n if (typeof this.destinationMarker !== 'undefined') {\n google.maps.event.clearListeners(this.destinationMarker, 'click');\n if (this.markerOptions.origin.draggable) {\n google.maps.event.clearListeners(this.destinationMarker, 'dragend');\n }\n }\n this.waypointsMarker.forEach((w: any) => {\n if (typeof w !== 'undefined') {\n google.maps.event.clearListeners(w, 'click');\n }\n });\n this.removeMarkers();\n\n } catch (err) {\n console.error('Can not reset custom marker.', err);\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AgmDirectionModule.html":{"url":"modules/AgmDirectionModule.html","title":"module - AgmDirectionModule","body":"\n \n\n\n\n\n Modules\n AgmDirectionModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/modules/agm-direction.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AgmDirection\n \n \n \n \n Exports\n \n \n AgmDirection\n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n forChild\n \n \n \n \n \n \n \n \n forChild()\n \n \n\n\n \n \n Defined in src/modules/agm-direction.module.ts:19\n \n \n\n\n \n \n\n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n \n forRoot()\n \n \n\n\n \n \n Defined in src/modules/agm-direction.module.ts:13\n \n \n\n\n \n \n\n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n\n \n\n\n \n import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { AgmDirection } from '../directive/agm-direction.directive';\n\n@NgModule({\n declarations: [\n AgmDirection,\n ],\n exports: [\n AgmDirection,\n ]\n})\nexport class AgmDirectionModule {\n public static forRoot(): ModuleWithProviders {\n return {\n ngModule: AgmDirectionModule,\n };\n }\n\n public static forChild(): ModuleWithProviders {\n return {\n ngModule: AgmDirectionModule,\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n \n\n\n\n\n\n Components\n AppComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n playground/src/app/app.component.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-root\n \n\n \n styleUrls\n ./app.component.css\n \n\n\n\n \n templateUrl\n ./app.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n destination\n \n \n Public\n lat\n \n \n Public\n lng\n \n \n Public\n map\n \n \n Public\n origin\n \n \n Public\n polylines\n \n \n Public\n renderOptions\n \n \n Public\n waypoints\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n onMapReady\n \n \n Public\n Async\n onResponse\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n onMapReady\n \n \n \n \n \n \n \n \n onMapReady(event: google.maps.Map)\n \n \n\n\n \n \n Defined in playground/src/app/app.component.ts:31\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n google.maps.Map\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n onResponse\n \n \n \n \n \n \n \n \n onResponse(event: google.maps.DirectionsResult)\n \n \n\n\n \n \n Defined in playground/src/app/app.component.ts:35\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n google.maps.DirectionsResult\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n destination\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : 'Wenxin Forest Park, Taiwan'\n \n \n \n \n Defined in playground/src/app/app.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n lat\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 24.799448\n \n \n \n \n Defined in playground/src/app/app.component.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n lng\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 120.979021\n \n \n \n \n Defined in playground/src/app/app.component.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n map\n \n \n \n \n \n \n Type : google.maps.Map\n\n \n \n \n \n Defined in playground/src/app/app.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n origin\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : 'Taichung Railway Station, Taiwan'\n \n \n \n \n Defined in playground/src/app/app.component.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n polylines\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in playground/src/app/app.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n renderOptions\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : { suppressPolylines: true }\n \n \n \n \n Defined in playground/src/app/app.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n waypoints\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n { location: 'Chung Shan Medical University, Taiwan', stopover: true },\n { location: 'National Chung Hsing University, Taiwan', stopover: true },\n ]\n \n \n \n \n Defined in playground/src/app/app.component.ts:16\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.css'],\n})\nexport class AppComponent {\n\n public lat = 24.799448;\n public lng = 120.979021;\n\n public origin: any = 'Taichung Railway Station, Taiwan';\n public destination: any = 'Wenxin Forest Park, Taiwan';\n\n public waypoints: Array = [\n { location: 'Chung Shan Medical University, Taiwan', stopover: true },\n { location: 'National Chung Hsing University, Taiwan', stopover: true },\n ];\n\n // Hide origin polylines\n public renderOptions = { suppressPolylines: true };\n\n // Custom polylines\n public polylines: Array = [];\n\n // Current map\n public map: google.maps.Map;\n\n // Save GoogleMap instance\n public onMapReady(event: google.maps.Map) {\n this.map = event;\n }\n\n public async onResponse(event: google.maps.DirectionsResult) {\n\n // Default style\n const polylineOptions: google.maps.PolygonOptions = {\n strokeWeight: 6,\n strokeOpacity: 0.55,\n };\n\n // Polylines strokeColor\n const colors = ['#0000FF', '#FF0000', '#0000FF'];\n\n // Clear exist polylines\n this.polylines.forEach(polyline => polyline.setMap(null));\n\n const { legs } = event.routes[0];\n\n legs.forEach((leg, index) => {\n\n leg.steps.forEach(step => {\n const nextSegment = step.path;\n const stepPolyline = new google.maps.Polyline(polylineOptions);\n\n // Custom color\n stepPolyline.setOptions({ strokeColor: colors[index] });\n\n nextSegment.forEach(next => stepPolyline.getPath().push(next));\n\n this.polylines.push(stepPolyline);\n stepPolyline.setMap(this.map);\n });\n });\n }\n}\n\n \n\n \n \n \n \n\n\n \n\n \n \n ./app.component.css\n \n agm-map {\n height: 80vh;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'app-root'}];\n var DIRECTIVES = [{'name': 'AgmDirection', 'selector': 'agm-direction'}];\n var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n playground/src/app/app.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n \n \n Imports\n \n \n AgmDirectionModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n\n\n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\n\nimport { AppComponent } from './app.component';\n\nimport { AgmCoreModule } from '@agm/core';\nimport { AgmDirectionModule } from 'agm-direction';\n\nimport { environment } from '../environments/environment';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({\n apiKey: environment.googleAPIKey,\n }),\n AgmDirectionModule,\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n playground/e2e/src/app.po.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getTitleText\n \n \n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getTitleText\n \n \n \n \n \n \n \ngetTitleText()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:8\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n navigateTo\n \n \n \n \n \n \n \nnavigateTo()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:4\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n navigateTo(): Promise {\n return browser.get(browser.baseUrl) as Promise;\n }\n\n getTitleText(): Promise {\n return element(by.css('app-root .content span')).getText() as Promise;\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n Documentation coverage\n\n\n\n \n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n playground/e2e/src/app.po.ts\n \n class\n AppPage\n \n 0 %\n (0/3)\n \n \n \n \n \n playground/src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n playground/src/environments/environment.prod.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/environments/environment.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n variable\n context\n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n variable\n require\n \n 0 %\n (0/1)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n directive\n AgmDirection\n \n 13 %\n (5/38)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n tslib : ^1.10.0\n \n\n\n \n \n Peer dependencies\n \n \n \n @agm/core : ^1.0.0-beta.2\n \n @angular/common : ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0\n \n @angular/core : ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0\n \n rxjs : >= 6.4.0\n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nAgm-Direction\n\n\n\n\n\n\nAgm-Direction is the directive for @agm/core (not official)\n\nAngular\nGoogle Map API\n\nHow to use?👉 Start Reading\n\nInstallation\nInstallation is done using the\nnpm install command:\n\nUse npm\nnpm install --save @agm/core agm-direction\nUse yarn\nyarn add @agm/core agm-direction\n\nImporting Modules\nimport { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { AppComponent } from './app.component';\n\nimport { AgmCoreModule } from '@agm/core'; // @agm/core\nimport { AgmDirectionModule } from 'agm-direction'; // agm-direction\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({ // @agm/core\n apiKey: 'your key',\n }),\n AgmDirectionModule, // agm-direction\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }Usage\nHTML\n\n \n \nCSS\nagm-map {\n height: 400px;\n}TS\npublic lat = 24.799448;\npublic lng = 120.979021;\n\npublic origin: any;\npublic destination: any;\n\nngOnInit() {\n this.getDirection();\n}\n\ngetDirection() {\n this.origin = { lat: 24.799448, lng: 120.979021 };\n this.destination = { lat: 24.799524, lng: 120.975017 };\n\n // Location within a string\n // this.origin = 'Taipei Main Station';\n // this.destination = 'Taiwan Presidential Office';\n}Document\n\nDocument Agm-Direction-Docs\nLess useful AgmDirectionModule\n\nDevelopment\n👉 Playground Project\ngit clone https://github.com/explooosion/Agm-Direction.gitnpm installnpm run buildnpm run pack:libcd playground && npm install# Add gmap api key in environment.tsnpm startGenerator\nThis library generated by angular-library-starter.\nLicense\nMIT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2018 Robby\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AgmDirectionModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n \n\n \n \n \n \n \n \n 2 Modules\n \n \n \n \n \n \n \n \n 1 Component\n \n \n \n \n \n \n \n 1 Directive\n \n \n \n \n \n \n \n 1 Class\n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n context   (playground/.../test.ts)\n \n \n environment   (playground/.../environment.prod.ts)\n \n \n environment   (playground/.../environment.ts)\n \n \n require   (playground/.../test.ts)\n \n \n \n \n \n \n\n\n playground/src/test.ts\n \n \n \n \n \n \n \n \n context\n \n \n \n \n \n \n Default value : require.context('./', true, /\\.spec\\.ts$/)\n \n \n\n\n \n \n \n \n \n \n \n \n \n require\n \n \n \n \n \n \n Type : literal type\n\n \n \n\n\n \n \n\n playground/src/environments/environment.prod.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true\n}\n \n \n\n\n \n \n\n playground/src/environments/environment.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false,\n googleAPIKey: 'AIzaSyBe2XKY725-FyVGmafG_1nObliZzxVhhWI',\n}\n \n \n\n\n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}}
+ "index": {"version":"2.3.8","fields":["title","body"],"fieldVectors":[["title/directives/AgmDirection.html",[0,0.736,1,0.736]],["body/directives/AgmDirection.html",[0,0.388,1,0.516,2,0.529,3,0.276,4,0.276,5,0.222,6,3.142,7,0.529,8,1.208,9,1.608,10,1.608,11,1.608,12,0.529,13,0.923,14,0.594,15,1.522,16,0.481,17,1.471,18,3.928,19,1.974,20,1.608,21,1.18,22,1.608,23,1.608,24,1.608,25,1.608,26,1.608,27,0.594,28,1.927,29,1.927,30,1.208,31,1.927,32,1.471,33,1.927,34,1.927,35,1.608,36,1.208,37,1.927,38,1.927,39,1.82,40,1.927,41,2.403,42,1.608,43,1.927,44,1.883,45,1.608,46,1.927,47,1.471,48,1.608,49,1.927,50,1.927,51,2.403,52,2.196,53,1.208,54,1.608,55,1.608,56,1.228,57,1.608,58,1.608,59,2.585,60,1.208,61,0.692,62,1.927,63,2.015,64,1.208,65,1.228,66,0.085,67,1.228,68,1.904,69,1.208,70,1.82,71,1.748,72,2.287,73,0.692,74,0.692,75,2.093,76,1.927,77,2.585,78,1.927,79,0.692,80,1.208,81,0.692,82,1.608,83,0.692,84,0.529,85,0.692,86,1.571,87,0.692,88,0.692,89,0.734,90,0.692,91,0.692,92,1.208,93,0.692,94,0.923,95,1.208,96,0.692,97,1.208,98,0.692,99,1.208,100,0.692,101,0.692,102,2.187,103,0.692,104,3.631,105,0.692,106,0.692,107,0.692,108,0.692,109,0.692,110,0.692,111,0.692,112,1.82,113,2.742,114,1.208,115,2.585,116,1.413,117,2.287,118,0.692,119,1.208,120,1.208,121,1.208,122,1.208,123,0.692,124,0.692,125,0.692,126,0.692,127,0.692,128,2.585,129,1.608,130,0.692,131,0.692,132,1.471,133,3.533,134,2.187,135,1.927,136,1.974,137,0.692,138,1.974,139,1.208,140,0.692,141,2.035,142,1.208,143,2.035,144,0.692,145,1.208,146,0.692,147,1.608,148,0.692,149,0.692,150,1.228,151,0.692,152,0.388,153,3.533,154,2.585,155,0.222,156,0.34,157,0.222,158,0.101,159,1.608,160,0.692,161,1.208,162,0.923,163,1.208,164,1.208,165,1.208,166,1.208,167,0.692,168,1.208,169,1.208,170,0.692,171,0.734,172,0.692,173,1.208,174,2.187,175,0.692,176,1.608,177,1.608,178,1.608,179,1.608,180,0.692,181,1.208,182,1.208,183,1.208,184,3.533,185,2.187,186,3.674,187,0.734,188,0.594,189,0.692,190,0.692,191,0.692,192,1.208,193,0.692,194,1.228,195,0.692,196,0.692,197,0.692,198,1.471,199,1.927,200,0.692,201,0.692,202,0.692,203,1.208,204,0.692,205,1.208,206,0.692,207,1.208,208,0.692,209,0.692,210,0.923,211,0.923,212,0.692,213,0.692,214,0.692,215,0.692,216,0.692,217,0.692,218,0.692,219,0.692,220,0.692,221,0.692,222,1.208,223,0.692,224,0.692,225,0.692,226,1.208,227,1.208,228,0.692,229,0.692,230,0.692,231,0.421,232,0.692,233,0.692,234,1.208,235,0.692,236,0.692,237,1.208,238,0.692,239,0.692,240,0.692,241,1.927,242,1.208,243,0.692,244,1.608,245,0.692,246,0.692,247,0.692,248,1.208,249,0.692,250,0.692,251,0.692,252,1.927,253,0.692,254,0.692,255,0.692,256,0.692,257,0.692,258,1.208,259,0.692,260,0.692,261,0.692,262,0.692,263,0.692,264,1.927,265,1.208,266,1.208,267,0.692,268,0.692,269,0.692,270,1.208,271,0.692,272,1.927,273,0.692,274,0.692,275,1.608,276,0.692,277,0.692,278,0.692,279,0.692,280,0.692,281,0.529,282,0.692,283,0.692,284,0.692,285,1.927,286,0.692,287,1.208,288,0.692,289,0.692,290,0.692,291,0.692,292,0.692,293,0.692,294,0.692,295,1.208,296,0.692,297,0.692,298,0.692,299,0.692,300,0.692,301,1.208,302,1.208,303,0.692,304,0.692,305,1.208,306,1.608,307,1.208,308,1.208,309,0.692,310,0.692,311,0.013,312,0.022,313,0.013]],["title/modules/AgmDirectionModule.html",[314,0.914,315,0.736]],["body/modules/AgmDirectionModule.html",[1,1.431,3,1.061,4,1.061,5,0.855,21,1.677,27,1.309,63,1.677,66,0.084,116,1.677,152,1.096,155,0.855,157,0.855,158,0.387,187,2.074,188,1.309,311,0.048,312,0.062,313,0.048,314,1.061,315,1.403,316,0.855,317,1.061,318,1.309,319,1.851,320,1.309,321,1.309,322,2.289,323,2.034,324,2.034,325,2.034,326,2.074,327,1.309,328,3.767,329,2.664,330,3.973,331,3.767,332,2.664,333,4.107,334,3.767,335,2.664,336,2.414,337,2.664,338,2.664]],["title/components/AppComponent.html",[339,1.127,340,0.736]],["body/components/AppComponent.html",[0,0.5,1,0.5,2,1.189,3,0.62,4,0.62,5,0.5,12,1.189,13,2.398,14,1.153,15,0.765,16,0.935,17,1.791,19,1.791,21,2.185,27,1.153,39,1.715,44,1.909,47,2.155,52,2.155,56,1.791,63,1.937,65,1.791,66,0.084,67,2.572,68,1.937,70,2.298,71,2.233,86,2.152,89,1.426,94,2.155,112,1.715,116,1.153,117,2.398,132,2.572,138,1.791,141,2.047,143,0.946,150,2.398,152,0.5,155,0.5,157,0.5,158,0.226,162,1.189,194,2.572,231,0.946,311,0.028,312,0.043,313,0.028,318,0.765,339,1.386,340,1.008,341,2.346,342,1.558,343,1.558,344,1.558,345,1.558,346,1.189,347,2.822,348,2.155,349,2.346,350,2.822,351,2.346,352,2.346,353,2.155,354,2.155,355,3.675,356,2.346,357,2.346,358,1.558,359,2.346,360,1.558,361,2.346,362,2.346,363,2.346,364,2.887,365,1.558,366,2.346,367,1.791,368,1.558,369,1.791,370,1.558,371,1.558,372,2.346,373,2.346,374,1.791,375,1.558,376,1.558,377,2.346,378,1.558,379,2.398,380,3.141,381,2.346,382,2.346,383,3.141,384,3.141,385,2.346,386,2.346,387,1.558,388,1.558,389,1.558,390,1.189,391,1.558,392,1.558,393,1.558,394,1.558,395,1.558,396,1.558,397,1.558,398,1.558,399,1.558,400,1.558,401,2.346,402,1.558,403,2.346,404,1.558,405,1.558,406,1.558,407,1.558,408,1.558,409,1.558,410,1.558,411,1.558,412,1.558,413,1.558,414,1.558,415,1.558,416,1.558,417,1.558,418,1.558,419,1.558,420,1.558,421,1.558,422,1.558,423,1.189,424,1.558,425,1.791,426,3.141,427,1.558,428,1.558]],["title/modules/AppModule.html",[314,0.914,429,0.914]],["body/modules/AppModule.html",[3,1.071,4,1.071,5,0.863,14,1.321,15,1.321,66,0.084,152,1.352,155,0.863,156,1.321,157,0.863,158,0.391,188,1.321,311,0.049,312,0.062,313,0.049,314,1.071,315,1.352,316,0.863,317,1.071,318,1.321,319,1.859,320,1.859,321,1.687,322,1.634,326,2.087,327,1.321,336,2.087,340,1.433,429,1.744,430,2.053,431,2.053,432,2.69,433,2.053,434,2.69,435,2.622,436,2.622,437,2.053,438,1.321,439,2.053,440,2.053,441,1.634,442,2.69,443,2.053,444,2.053,445,2.69]],["title/classes/AppPage.html",[158,0.333,446,1.394]],["body/classes/AppPage.html",[3,1.219,4,1.219,5,0.982,16,1.219,27,1.829,63,1.829,66,0.082,89,1.86,116,1.829,136,2.336,152,0.982,157,0.982,158,0.444,187,2.262,311,0.056,312,0.068,313,0.056,348,2.336,438,1.503,446,2.262,447,3.06,448,2.336,449,4.174,450,4.174,451,3.06,452,4.35,453,3.06,454,3.06,455,3.06,456,3.06,457,3.06]],["title/coverage.html",[458,2.362]],["body/coverage.html",[0,0.985,1,0.985,5,0.985,6,2.343,7,2.343,66,0.081,68,1.508,143,1.865,158,0.446,311,0.056,312,0.068,313,0.056,339,1.508,340,0.985,346,2.343,441,2.266,446,1.865,448,2.343,458,2.343,459,2.343,460,3.069,461,3.069,462,4.353,463,3.069,464,3.069,465,2.343,466,4.178,467,4.178,468,2.343,469,2.847,470,2.343,471,2.343,472,3.069,473,3.069,474,3.069,475,3.069]],["title/dependencies.html",[317,1.095,476,1.933]],["body/dependencies.html",[66,0.084,155,1.037,156,1.586,311,0.059,312,0.07,313,0.059,317,1.532,477,3.229,478,3.229,479,3.229,480,3.229,481,3.229,482,3.845,483,3.845,484,3.845,485,3.845,486,3.845,487,3.229,488,3.229]],["title/index.html",[16,0.77,489,1.476,490,1.476]],["body/index.html",[0,0.706,14,2.067,15,2.038,21,1.809,32,1.679,39,1.336,44,1.336,66,0.084,75,1.679,141,1.827,152,1.238,155,0.706,156,1.956,157,0.706,158,0.319,171,1.827,198,1.679,210,2.296,211,2.296,281,1.679,311,0.04,312,0.055,313,0.04,315,1.1,316,0.706,319,1.08,320,1.08,321,1.08,336,1.827,340,1.1,353,2.616,354,2.616,364,1.679,367,2.296,369,2.296,374,1.679,379,1.679,390,1.679,423,1.679,425,1.679,429,0.876,435,1.679,436,2.296,437,1.679,438,1.08,439,1.679,440,1.679,443,1.679,444,1.679,491,2.199,492,3.007,493,2.199,494,3.007,495,2.199,496,2.199,497,2.199,498,3.007,499,2.199,500,2.199,501,3.683,502,3.426,503,2.199,504,3.007,505,3.007,506,2.199,507,3.007,508,2.199,509,2.199,510,2.199,511,2.199,512,2.199,513,2.199,514,2.199,515,2.199,516,2.199,517,2.199,518,2.199,519,3.007,520,2.199,521,2.199,522,2.199,523,2.199,524,2.199,525,3.007,526,2.199,527,2.199,528,2.199,529,2.199,530,2.199,531,2.199,532,3.007,533,2.199,534,2.199,535,2.199,536,2.199,537,2.199,538,3.007,539,2.199,540,2.199,541,1.336,542,1.679]],["title/license.html",[489,1.476,490,1.476,541,1.175]],["body/license.html",[66,0.063,112,1.679,171,2.123,311,0.05,312,0.063,313,0.05,327,1.357,459,2.11,541,1.679,542,2.11,543,3.832,544,2.763,545,2.763,546,2.763,547,3.494,548,2.763,549,2.763,550,2.763,551,2.763,552,2.763,553,2.763,554,3.494,555,4.399,556,2.763,557,2.763,558,2.763,559,3.832,560,2.763,561,3.494,562,2.763,563,2.763,564,2.763,565,2.763,566,2.763,567,2.763,568,2.763,569,2.763,570,2.763,571,3.494,572,2.763,573,2.763,574,2.763,575,2.763,576,2.763,577,2.763,578,2.763,579,3.494,580,3.494,581,2.763,582,2.763,583,2.763,584,2.763,585,2.763,586,2.763,587,2.763,588,2.763,589,2.763,590,2.763,591,2.763,592,2.763,593,2.763,594,2.763,595,2.763,596,2.763,597,2.763,598,2.763,599,2.763,600,2.763,601,2.763,602,2.763,603,2.763,604,2.763,605,2.763,606,2.763,607,2.763,608,2.763,609,2.763]],["title/modules.html",[316,0.993]],["body/modules.html",[66,0.073,311,0.063,312,0.073,313,0.063,315,1.111,316,1.111,429,1.379,438,1.967,610,4.005,611,4.005,612,4.005]],["title/overview.html",[613,2.362]],["body/overview.html",[0,0.969,1,1.409,66,0.08,158,0.438,188,1.483,311,0.055,312,0.067,313,0.055,314,1.202,315,1.392,316,0.969,317,1.202,318,1.483,319,1.483,320,1.483,321,1.483,322,1.834,323,2.305,324,2.305,325,2.305,326,2.243,327,1.483,339,1.483,340,1.409,429,1.749,430,2.305,431,2.305,433,2.305,613,2.305,614,3.019,615,3.988]],["title/miscellaneous/variables.html",[616,1.476,617,2.098]],["body/miscellaneous/variables.html",[16,1.229,66,0.083,68,2.056,70,2.447,71,2.447,72,2.356,84,2.356,86,2.273,231,2.273,311,0.056,312,0.068,313,0.056,441,2.544,465,2.356,468,2.356,469,2.356,470,2.856,471,2.856,616,2.356,617,2.356,618,3.741,619,3.086,620,3.086,621,3.086,622,3.086,623,3.741,624,3.086]]],"invertedIndex":[["",{"_index":66,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":462,"title":{},"body":{"coverage.html":{}}}],["0.55",{"_index":400,"title":{},"body":{"components/AppComponent.html":{}}}],["0/1",{"_index":467,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":464,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":463,"title":{},"body":{"coverage.html":{}}}],["0000ff",{"_index":403,"title":{},"body":{"components/AppComponent.html":{}}}],["1",{"_index":615,"title":{},"body":{"overview.html":{}}}],["1.1.0",{"_index":480,"title":{},"body":{"dependencies.html":{}}}],["10.0.0",{"_index":486,"title":{},"body":{"dependencies.html":{}}}],["120.975017",{"_index":514,"title":{},"body":{"index.html":{}}}],["120.979021",{"_index":369,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["13",{"_index":472,"title":{},"body":{"coverage.html":{}}}],["2",{"_index":614,"title":{},"body":{"overview.html":{}}}],["2.0.0",{"_index":478,"title":{},"body":{"dependencies.html":{}}}],["2018",{"_index":545,"title":{},"body":{"license.html":{}}}],["24.799448",{"_index":367,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["24.799524",{"_index":513,"title":{},"body":{"index.html":{}}}],["400px",{"_index":510,"title":{},"body":{"index.html":{}}}],["5/38",{"_index":473,"title":{},"body":{"coverage.html":{}}}],["6",{"_index":398,"title":{},"body":{"components/AppComponent.html":{}}}],["6.0.0",{"_index":482,"title":{},"body":{"dependencies.html":{}}}],["6.6.0",{"_index":488,"title":{},"body":{"dependencies.html":{}}}],["7.0.0",{"_index":483,"title":{},"body":{"dependencies.html":{}}}],["8.0.0",{"_index":484,"title":{},"body":{"dependencies.html":{}}}],["9.0.0",{"_index":485,"title":{},"body":{"dependencies.html":{}}}],["90vh",{"_index":424,"title":{},"body":{"components/AppComponent.html":{}}}],["_map",{"_index":195,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route",{"_index":235,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.end_address",{"_index":253,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.end_location",{"_index":251,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.start_address",{"_index":243,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.start_location",{"_index":240,"title":{},"body":{"directives/AgmDirection.html":{}}}],["_route.via_waypoints[index",{"_index":264,"title":{},"body":{"directives/AgmDirection.html":{}}}],["above",{"_index":578,"title":{},"body":{"license.html":{}}}],["action",{"_index":603,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":428,"title":{},"body":{"components/AppComponent.html":{}}}],["add",{"_index":505,"title":{},"body":{"index.html":{}}}],["agm",{"_index":14,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"index.html":{}}}],["agm/core",{"_index":156,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["agmcoremodule",{"_index":440,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmcoremodule.forroot",{"_index":443,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["agmdirection",{"_index":1,"title":{"directives/AgmDirection.html":{}},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"coverage.html":{},"overview.html":{}}}],["agmdirectionmodule",{"_index":315,"title":{"modules/AgmDirectionModule.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["allowed",{"_index":282,"title":{},"body":{"directives/AgmDirection.html":{}}}],["and/or",{"_index":569,"title":{},"body":{"license.html":{}}}],["angular",{"_index":492,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":481,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":155,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/platform",{"_index":437,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["api",{"_index":494,"title":{},"body":{"index.html":{}}}],["apikey",{"_index":444,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["app",{"_index":347,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component",{"_index":439,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["app.component.css",{"_index":350,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.html",{"_index":352,"title":{},"body":{"components/AppComponent.html":{}}}],["appcomponent",{"_index":340,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["appmodule",{"_index":429,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["apppage",{"_index":446,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["arising",{"_index":607,"title":{},"body":{"license.html":{}}}],["array",{"_index":150,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["array.isarray(this.markeroptions.waypoints",{"_index":261,"title":{},"body":{"directives/AgmDirection.html":{}}}],["associated",{"_index":556,"title":{},"body":{"license.html":{}}}],["authors",{"_index":596,"title":{},"body":{"license.html":{}}}],["avoidhighways",{"_index":37,"title":{},"body":{"directives/AgmDirection.html":{}}}],["avoidtolls",{"_index":38,"title":{},"body":{"directives/AgmDirection.html":{}}}],["bootstrap",{"_index":320,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["break",{"_index":275,"title":{},"body":{"directives/AgmDirection.html":{}}}],["browse",{"_index":612,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":438,"title":{},"body":{"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{},"modules.html":{}}}],["browser.get(browser.baseurl",{"_index":455,"title":{},"body":{"classes/AppPage.html":{}}}],["browsermodule",{"_index":436,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["buildnpm",{"_index":533,"title":{},"body":{"index.html":{}}}],["c",{"_index":544,"title":{},"body":{"license.html":{}}}],["case",{"_index":227,"title":{},"body":{"directives/AgmDirection.html":{}}}],["catch",{"_index":179,"title":{},"body":{"directives/AgmDirection.html":{}}}],["change",{"_index":163,"title":{},"body":{"directives/AgmDirection.html":{}}}],["charge",{"_index":551,"title":{},"body":{"license.html":{}}}],["chung",{"_index":380,"title":{},"body":{"components/AppComponent.html":{}}}],["claim",{"_index":599,"title":{},"body":{"license.html":{}}}],["class",{"_index":158,"title":{"classes/AppPage.html":{}},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["classes",{"_index":447,"title":{},"body":{"classes/AppPage.html":{}}}],["clear",{"_index":405,"title":{},"body":{"components/AppComponent.html":{}}}],["click",{"_index":306,"title":{},"body":{"directives/AgmDirection.html":{}}}],["clone",{"_index":528,"title":{},"body":{"index.html":{}}}],["cluster_agmdirectionmodule",{"_index":323,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_declarations",{"_index":324,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_agmdirectionmodule_exports",{"_index":325,"title":{},"body":{"modules/AgmDirectionModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":430,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":433,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":431,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":432,"title":{},"body":{"modules/AppModule.html":{}}}],["color",{"_index":416,"title":{},"body":{"components/AppComponent.html":{}}}],["colors",{"_index":402,"title":{},"body":{"components/AppComponent.html":{}}}],["colors[index",{"_index":418,"title":{},"body":{"components/AppComponent.html":{}}}],["command",{"_index":503,"title":{},"body":{"index.html":{}}}],["component",{"_index":339,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"coverage.html":{},"overview.html":{}}}],["component_template",{"_index":427,"title":{},"body":{"components/AppComponent.html":{}}}],["components",{"_index":341,"title":{},"body":{"components/AppComponent.html":{}}}],["conditions",{"_index":577,"title":{},"body":{"license.html":{}}}],["connection",{"_index":608,"title":{},"body":{"license.html":{}}}],["console.error('can",{"_index":310,"title":{},"body":{"directives/AgmDirection.html":{}}}],["console.error('markeroptions",{"_index":273,"title":{},"body":{"directives/AgmDirection.html":{}}}],["console.warn('the",{"_index":276,"title":{},"body":{"directives/AgmDirection.html":{}}}],["console.warn(status",{"_index":284,"title":{},"body":{"directives/AgmDirection.html":{}}}],["const",{"_index":194,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["constructor",{"_index":60,"title":{},"body":{"directives/AgmDirection.html":{}}}],["constructor(gmapsapi",{"_index":61,"title":{},"body":{"directives/AgmDirection.html":{}}}],["content",{"_index":136,"title":{},"body":{"directives/AgmDirection.html":{},"classes/AppPage.html":{}}}],["context",{"_index":470,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["contract",{"_index":604,"title":{},"body":{"license.html":{}}}],["copies",{"_index":571,"title":{},"body":{"license.html":{}}}],["copy",{"_index":554,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":543,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":458,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["creating",{"_index":120,"title":{},"body":{"directives/AgmDirection.html":{}}}],["css",{"_index":509,"title":{},"body":{"index.html":{}}}],["current",{"_index":389,"title":{},"body":{"components/AppComponent.html":{}}}],["custom",{"_index":138,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["damages",{"_index":600,"title":{},"body":{"license.html":{}}}],["deal",{"_index":558,"title":{},"body":{"license.html":{}}}],["dealings",{"_index":609,"title":{},"body":{"license.html":{}}}],["declarations",{"_index":319,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["default",{"_index":70,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"miscellaneous/variables.html":{}}}],["defined",{"_index":63,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["dependencies",{"_index":317,"title":{"dependencies.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"dependencies.html":{},"overview.html":{}}}],["description",{"_index":140,"title":{},"body":{"directives/AgmDirection.html":{}}}],["destination",{"_index":39,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"index.html":{}}}],["destinationdrag",{"_index":54,"title":{},"body":{"directives/AgmDirection.html":{}}}],["destinationmarker",{"_index":20,"title":{},"body":{"directives/AgmDirection.html":{}}}],["destroy",{"_index":114,"title":{},"body":{"directives/AgmDirection.html":{}}}],["destroymarkers",{"_index":28,"title":{},"body":{"directives/AgmDirection.html":{}}}],["development",{"_index":523,"title":{},"body":{"index.html":{}}}],["direction",{"_index":15,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"index.html":{}}}],["direction.directive",{"_index":338,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.directive.ts",{"_index":7,"title":{},"body":{"directives/AgmDirection.html":{},"coverage.html":{}}}],["direction.directive.ts:11",{"_index":79,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:118",{"_index":125,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:126",{"_index":118,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:13",{"_index":100,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:15",{"_index":98,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:17",{"_index":81,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:19",{"_index":103,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:21",{"_index":87,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:23",{"_index":91,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:25",{"_index":73,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:27",{"_index":74,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:29",{"_index":93,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:292",{"_index":137,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:31",{"_index":90,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:318",{"_index":130,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:33",{"_index":85,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:335",{"_index":127,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:348",{"_index":111,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:39",{"_index":83,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:42",{"_index":101,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:45",{"_index":96,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:48",{"_index":106,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:51",{"_index":107,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:54",{"_index":109,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:57",{"_index":110,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:60",{"_index":108,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:61",{"_index":105,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:63",{"_index":148,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:64",{"_index":146,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:67",{"_index":149,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:68",{"_index":144,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:69",{"_index":151,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:72",{"_index":64,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:78",{"_index":126,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:84",{"_index":123,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.directive.ts:9",{"_index":88,"title":{},"body":{"directives/AgmDirection.html":{}}}],["direction.gitnpm",{"_index":530,"title":{},"body":{"index.html":{}}}],["direction.module.ts",{"_index":329,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.module.ts:13",{"_index":335,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["direction.module.ts:19",{"_index":332,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["directiondraw",{"_index":29,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directions",{"_index":129,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directionsrenderer",{"_index":22,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directionsresult",{"_index":230,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directionsservice",{"_index":23,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directionsstatus",{"_index":224,"title":{},"body":{"directives/AgmDirection.html":{}}}],["directive",{"_index":0,"title":{"directives/AgmDirection.html":{}},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["directive/agm",{"_index":337,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["directives",{"_index":2,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["display",{"_index":189,"title":{},"body":{"directives/AgmDirection.html":{}}}],["distribute",{"_index":567,"title":{},"body":{"license.html":{}}}],["docs",{"_index":520,"title":{},"body":{"index.html":{}}}],["document",{"_index":519,"title":{},"body":{"index.html":{}}}],["documentation",{"_index":459,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["dom",{"_index":344,"title":{},"body":{"components/AppComponent.html":{}}}],["done",{"_index":499,"title":{},"body":{"index.html":{}}}],["drag",{"_index":170,"title":{},"body":{"directives/AgmDirection.html":{}}}],["dragend",{"_index":307,"title":{},"body":{"directives/AgmDirection.html":{}}}],["draw",{"_index":160,"title":{},"body":{"directives/AgmDirection.html":{}}}],["drivingoptions",{"_index":40,"title":{},"body":{"directives/AgmDirection.html":{}}}],["e",{"_index":180,"title":{},"body":{"directives/AgmDirection.html":{}}}],["element",{"_index":89,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["element(by.css('app",{"_index":456,"title":{},"body":{"classes/AppPage.html":{}}}],["emit",{"_index":222,"title":{},"body":{"directives/AgmDirection.html":{}}}],["end",{"_index":270,"title":{},"body":{"directives/AgmDirection.html":{}}}],["environment",{"_index":441,"title":{},"body":{"modules/AppModule.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["environment.googleapikey",{"_index":445,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.tsnpm",{"_index":536,"title":{},"body":{"index.html":{}}}],["environments/environment",{"_index":442,"title":{},"body":{"modules/AppModule.html":{}}}],["err",{"_index":272,"title":{},"body":{"directives/AgmDirection.html":{}}}],["error",{"_index":274,"title":{},"body":{"directives/AgmDirection.html":{}}}],["event",{"_index":112,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"license.html":{}}}],["event.routes[0",{"_index":409,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":104,"title":{},"body":{"directives/AgmDirection.html":{}}}],["exist",{"_index":162,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["export",{"_index":157,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{}}}],["exports",{"_index":322,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["express",{"_index":587,"title":{},"body":{"license.html":{}}}],["false",{"_index":72,"title":{},"body":{"directives/AgmDirection.html":{},"miscellaneous/variables.html":{}}}],["ff0000",{"_index":404,"title":{},"body":{"components/AppComponent.html":{}}}],["file",{"_index":5,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{}}}],["files",{"_index":557,"title":{},"body":{"license.html":{}}}],["fired",{"_index":113,"title":{},"body":{"directives/AgmDirection.html":{}}}],["first",{"_index":182,"title":{},"body":{"directives/AgmDirection.html":{}}}],["fitness",{"_index":592,"title":{},"body":{"license.html":{}}}],["flag",{"_index":172,"title":{},"body":{"directives/AgmDirection.html":{}}}],["following",{"_index":576,"title":{},"body":{"license.html":{}}}],["forchild",{"_index":331,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["foreach",{"_index":271,"title":{},"body":{"directives/AgmDirection.html":{}}}],["forest",{"_index":362,"title":{},"body":{"components/AppComponent.html":{}}}],["forroot",{"_index":334,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["free",{"_index":550,"title":{},"body":{"license.html":{}}}],["furnished",{"_index":574,"title":{},"body":{"license.html":{}}}],["generated",{"_index":539,"title":{},"body":{"index.html":{}}}],["getdirection",{"_index":512,"title":{},"body":{"index.html":{}}}],["getting",{"_index":489,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettitletext",{"_index":449,"title":{},"body":{"classes/AppPage.html":{}}}],["git",{"_index":527,"title":{},"body":{"index.html":{}}}],["gmap",{"_index":535,"title":{},"body":{"index.html":{}}}],["gmapsapi",{"_index":69,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google",{"_index":493,"title":{},"body":{"index.html":{}}}],["google.maps.directionsrenderer",{"_index":145,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsrenderer(this.renderoptions",{"_index":197,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsrendereroptions",{"_index":92,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsresult",{"_index":94,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["google.maps.directionsservice",{"_index":147,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsstatus.ok",{"_index":228,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionsstatus.over_query_limit",{"_index":169,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.directionswaypoint",{"_index":102,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.drivingoptions",{"_index":80,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.event.clearlisteners(this.destinationmarker",{"_index":308,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.event.clearlisteners(this.originmarker",{"_index":305,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.event.clearlisteners(w",{"_index":309,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.infowindow",{"_index":82,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.latlng",{"_index":77,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.latlngliteral",{"_index":78,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.map",{"_index":132,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["google.maps.marker",{"_index":134,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.marker(markeropts",{"_index":289,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.markeroptions",{"_index":159,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.mvcobject",{"_index":298,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.place",{"_index":76,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.polygonoptions",{"_index":396,"title":{},"body":{"components/AppComponent.html":{}}}],["google.maps.polyline(polylineoptions",{"_index":415,"title":{},"body":{"components/AppComponent.html":{}}}],["google.maps.transitoptions",{"_index":97,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.travelmode",{"_index":99,"title":{},"body":{"directives/AgmDirection.html":{}}}],["google.maps.travelmode.driving",{"_index":213,"title":{},"body":{"directives/AgmDirection.html":{}}}],["googleapikey",{"_index":624,"title":{},"body":{"miscellaneous/variables.html":{}}}],["googlemap",{"_index":391,"title":{},"body":{"components/AppComponent.html":{}}}],["googlemapsapiwrapper",{"_index":62,"title":{},"body":{"directives/AgmDirection.html":{}}}],["granted",{"_index":549,"title":{},"body":{"license.html":{}}}],["handler",{"_index":164,"title":{},"body":{"directives/AgmDirection.html":{}}}],["height",{"_index":423,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["hereby",{"_index":548,"title":{},"body":{"license.html":{}}}],["hide",{"_index":388,"title":{},"body":{"components/AppComponent.html":{}}}],["holders",{"_index":597,"title":{},"body":{"license.html":{}}}],["hsing",{"_index":386,"title":{},"body":{"components/AppComponent.html":{}}}],["html",{"_index":425,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["https://developers.google.com/maps/documentation/javascript/directions#directionsstatus",{"_index":225,"title":{},"body":{"directives/AgmDirection.html":{}}}],["https://developers.google.com/maps/documentation/javascript/directions?hl=en#directionsresults",{"_index":232,"title":{},"body":{"directives/AgmDirection.html":{}}}],["https://developers.google.com/maps/documentation/javascript/reference/marker?hl=zh",{"_index":290,"title":{},"body":{"directives/AgmDirection.html":{}}}],["https://github.com/explooosion/agm",{"_index":529,"title":{},"body":{"index.html":{}}}],["icon",{"_index":139,"title":{},"body":{"directives/AgmDirection.html":{}}}],["identifier",{"_index":460,"title":{},"body":{"coverage.html":{}}}],["ignore",{"_index":199,"title":{},"body":{"directives/AgmDirection.html":{}}}],["implements",{"_index":8,"title":{},"body":{"directives/AgmDirection.html":{}}}],["implied",{"_index":588,"title":{},"body":{"license.html":{}}}],["import",{"_index":152,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"index.html":{}}}],["importing",{"_index":506,"title":{},"body":{"index.html":{}}}],["imports",{"_index":435,"title":{},"body":{"modules/AppModule.html":{},"index.html":{}}}],["included",{"_index":581,"title":{},"body":{"license.html":{}}}],["including",{"_index":561,"title":{},"body":{"license.html":{}}}],["index",{"_index":16,"title":{"index.html":{}},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["infowindocontent",{"_index":294,"title":{},"body":{"directives/AgmDirection.html":{}}}],["infowindow",{"_index":41,"title":{},"body":{"directives/AgmDirection.html":{}}}],["input",{"_index":153,"title":{},"body":{"directives/AgmDirection.html":{}}}],["inputs",{"_index":36,"title":{},"body":{"directives/AgmDirection.html":{}}}],["install",{"_index":502,"title":{},"body":{"index.html":{}}}],["installation",{"_index":498,"title":{},"body":{"index.html":{}}}],["installnpm",{"_index":531,"title":{},"body":{"index.html":{}}}],["instance",{"_index":392,"title":{},"body":{"components/AppComponent.html":{}}}],["isfirstchange",{"_index":24,"title":{},"body":{"directives/AgmDirection.html":{}}}],["key",{"_index":507,"title":{},"body":{"index.html":{}}}],["kind",{"_index":586,"title":{},"body":{"license.html":{}}}],["lat",{"_index":353,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["layer",{"_index":175,"title":{},"body":{"directives/AgmDirection.html":{}}}],["leg.steps.foreach(step",{"_index":411,"title":{},"body":{"components/AppComponent.html":{}}}],["legend",{"_index":318,"title":{},"body":{"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["legs",{"_index":408,"title":{},"body":{"components/AppComponent.html":{}}}],["legs.foreach((leg",{"_index":410,"title":{},"body":{"components/AppComponent.html":{}}}],["less",{"_index":521,"title":{},"body":{"index.html":{}}}],["liability",{"_index":601,"title":{},"body":{"license.html":{}}}],["liable",{"_index":598,"title":{},"body":{"license.html":{}}}],["library",{"_index":538,"title":{},"body":{"index.html":{}}}],["license",{"_index":541,"title":{"license.html":{}},"body":{"index.html":{},"license.html":{}}}],["limitation",{"_index":562,"title":{},"body":{"license.html":{}}}],["limited",{"_index":589,"title":{},"body":{"license.html":{}}}],["literal",{"_index":84,"title":{},"body":{"directives/AgmDirection.html":{},"miscellaneous/variables.html":{}}}],["lng",{"_index":354,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["location",{"_index":379,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["main",{"_index":516,"title":{},"body":{"index.html":{}}}],["many",{"_index":279,"title":{},"body":{"directives/AgmDirection.html":{}}}],["map",{"_index":141,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"index.html":{}}}],["marker",{"_index":133,"title":{},"body":{"directives/AgmDirection.html":{}}}],["marker's",{"_index":142,"title":{},"body":{"directives/AgmDirection.html":{}}}],["marker.addlistener('click",{"_index":293,"title":{},"body":{"directives/AgmDirection.html":{}}}],["marker.getclickable",{"_index":292,"title":{},"body":{"directives/AgmDirection.html":{}}}],["markeroptions",{"_index":42,"title":{},"body":{"directives/AgmDirection.html":{}}}],["markeropts",{"_index":135,"title":{},"body":{"directives/AgmDirection.html":{}}}],["markeropts.infowindow",{"_index":295,"title":{},"body":{"directives/AgmDirection.html":{}}}],["markers",{"_index":115,"title":{},"body":{"directives/AgmDirection.html":{}}}],["matching",{"_index":312,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["medical",{"_index":382,"title":{},"body":{"components/AppComponent.html":{}}}],["memberof",{"_index":286,"title":{},"body":{"directives/AgmDirection.html":{}}}],["merchantability",{"_index":591,"title":{},"body":{"license.html":{}}}],["merge",{"_index":565,"title":{},"body":{"license.html":{}}}],["metadata",{"_index":12,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["methods",{"_index":27,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["miscellaneous",{"_index":616,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["mit",{"_index":542,"title":{},"body":{"index.html":{},"license.html":{}}}],["modify",{"_index":564,"title":{},"body":{"license.html":{}}}],["module",{"_index":314,"title":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["modules",{"_index":316,"title":{"modules.html":{}},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["modulewithproviders",{"_index":333,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["name",{"_index":67,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["national",{"_index":385,"title":{},"body":{"components/AppComponent.html":{}}}],["navigateto",{"_index":450,"title":{},"body":{"classes/AppPage.html":{}}}],["new",{"_index":143,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"coverage.html":{}}}],["nextsegment",{"_index":412,"title":{},"body":{"components/AppComponent.html":{}}}],["nextsegment.foreach(next",{"_index":419,"title":{},"body":{"components/AppComponent.html":{}}}],["ngmodule",{"_index":336,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{}}}],["ngonchanges",{"_index":30,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ngonchanges(obj",{"_index":122,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ngondestroy",{"_index":31,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ngoninit",{"_index":32,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["noninfringement",{"_index":595,"title":{},"body":{"license.html":{}}}],["notice",{"_index":579,"title":{},"body":{"license.html":{}}}],["npm",{"_index":501,"title":{},"body":{"index.html":{}}}],["null",{"_index":95,"title":{},"body":{"directives/AgmDirection.html":{}}}],["number",{"_index":366,"title":{},"body":{"components/AppComponent.html":{}}}],["obj",{"_index":124,"title":{},"body":{"directives/AgmDirection.html":{}}}],["obj.renderoptions",{"_index":190,"title":{},"body":{"directives/AgmDirection.html":{}}}],["obj.renderoptions.firstchange",{"_index":191,"title":{},"body":{"directives/AgmDirection.html":{}}}],["object",{"_index":231,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"miscellaneous/variables.html":{}}}],["obtaining",{"_index":553,"title":{},"body":{"license.html":{}}}],["office",{"_index":518,"title":{},"body":{"index.html":{}}}],["official",{"_index":491,"title":{},"body":{"index.html":{}}}],["onchange",{"_index":55,"title":{},"body":{"directives/AgmDirection.html":{}}}],["onchanges",{"_index":9,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ondestroy",{"_index":11,"title":{},"body":{"directives/AgmDirection.html":{}}}],["oninit",{"_index":10,"title":{},"body":{"directives/AgmDirection.html":{}}}],["onmapready",{"_index":356,"title":{},"body":{"components/AppComponent.html":{}}}],["onmapready(event",{"_index":357,"title":{},"body":{"components/AppComponent.html":{}}}],["onresponse",{"_index":56,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["onresponse(event",{"_index":359,"title":{},"body":{"components/AppComponent.html":{}}}],["optimizewaypoints",{"_index":43,"title":{},"body":{"directives/AgmDirection.html":{}}}],["optional",{"_index":19,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["origin",{"_index":44,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"index.html":{}}}],["origindrag",{"_index":57,"title":{},"body":{"directives/AgmDirection.html":{}}}],["originmarker",{"_index":25,"title":{},"body":{"directives/AgmDirection.html":{}}}],["otherwise",{"_index":606,"title":{},"body":{"license.html":{}}}],["out",{"_index":327,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"license.html":{},"overview.html":{}}}],["output",{"_index":154,"title":{},"body":{"directives/AgmDirection.html":{}}}],["outputs",{"_index":53,"title":{},"body":{"directives/AgmDirection.html":{}}}],["overview",{"_index":613,"title":{"overview.html":{}},"body":{"overview.html":{}}}],["pack:libcd",{"_index":534,"title":{},"body":{"index.html":{}}}],["package",{"_index":476,"title":{"dependencies.html":{}},"body":{}}],["panel",{"_index":45,"title":{},"body":{"directives/AgmDirection.html":{}}}],["param",{"_index":285,"title":{},"body":{"directives/AgmDirection.html":{}}}],["parameters",{"_index":65,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["park",{"_index":363,"title":{},"body":{"components/AppComponent.html":{}}}],["particular",{"_index":593,"title":{},"body":{"license.html":{}}}],["peer",{"_index":479,"title":{},"body":{"dependencies.html":{}}}],["period",{"_index":283,"title":{},"body":{"directives/AgmDirection.html":{}}}],["permission",{"_index":547,"title":{},"body":{"license.html":{}}}],["permit",{"_index":572,"title":{},"body":{"license.html":{}}}],["person",{"_index":552,"title":{},"body":{"license.html":{}}}],["persons",{"_index":573,"title":{},"body":{"license.html":{}}}],["playground",{"_index":525,"title":{},"body":{"index.html":{}}}],["playground/.../environment.prod.ts",{"_index":619,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../environment.ts",{"_index":620,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/.../test.ts",{"_index":618,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playground/e2e/src/app.po.ts",{"_index":448,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["playground/e2e/src/app.po.ts:4",{"_index":453,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/e2e/src/app.po.ts:8",{"_index":451,"title":{},"body":{"classes/AppPage.html":{}}}],["playground/src/app/app.component.ts",{"_index":346,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["playground/src/app/app.component.ts:10",{"_index":368,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:11",{"_index":370,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:13",{"_index":375,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:14",{"_index":365,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:16",{"_index":387,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:22",{"_index":378,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:25",{"_index":376,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:28",{"_index":371,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:31",{"_index":358,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.component.ts:35",{"_index":360,"title":{},"body":{"components/AppComponent.html":{}}}],["playground/src/app/app.module.ts",{"_index":434,"title":{},"body":{"modules/AppModule.html":{}}}],["playground/src/environments/environment.prod.ts",{"_index":465,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/environments/environment.ts",{"_index":468,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["playground/src/test.ts",{"_index":469,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["polyline.setmap(null",{"_index":407,"title":{},"body":{"components/AppComponent.html":{}}}],["polylineoptions",{"_index":395,"title":{},"body":{"components/AppComponent.html":{}}}],["polylines",{"_index":355,"title":{},"body":{"components/AppComponent.html":{}}}],["portions",{"_index":583,"title":{},"body":{"license.html":{}}}],["presidential",{"_index":517,"title":{},"body":{"index.html":{}}}],["private",{"_index":18,"title":{},"body":{"directives/AgmDirection.html":{}}}],["production",{"_index":623,"title":{},"body":{"miscellaneous/variables.html":{}}}],["project",{"_index":526,"title":{},"body":{"index.html":{}}}],["promise",{"_index":452,"title":{},"body":{"classes/AppPage.html":{}}}],["properties",{"_index":17,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["protractor",{"_index":454,"title":{},"body":{"classes/AppPage.html":{}}}],["provided",{"_index":584,"title":{},"body":{"license.html":{}}}],["provideroutealternatives",{"_index":46,"title":{},"body":{"directives/AgmDirection.html":{}}}],["providers",{"_index":321,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"index.html":{},"overview.html":{}}}],["public",{"_index":21,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"index.html":{}}}],["publish",{"_index":566,"title":{},"body":{"license.html":{}}}],["purpose",{"_index":594,"title":{},"body":{"license.html":{}}}],["query",{"_index":168,"title":{},"body":{"directives/AgmDirection.html":{}}}],["railway",{"_index":373,"title":{},"body":{"components/AppComponent.html":{}}}],["reading",{"_index":497,"title":{},"body":{"index.html":{}}}],["remove",{"_index":128,"title":{},"body":{"directives/AgmDirection.html":{}}}],["removedirections",{"_index":33,"title":{},"body":{"directives/AgmDirection.html":{}}}],["removemarkers",{"_index":34,"title":{},"body":{"directives/AgmDirection.html":{}}}],["render",{"_index":161,"title":{},"body":{"directives/AgmDirection.html":{}}}],["renderoptions",{"_index":47,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["renderroute",{"_index":48,"title":{},"body":{"directives/AgmDirection.html":{}}}],["request",{"_index":166,"title":{},"body":{"directives/AgmDirection.html":{}}}],["requests",{"_index":280,"title":{},"body":{"directives/AgmDirection.html":{}}}],["require",{"_index":471,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["require.context",{"_index":621,"title":{},"body":{"miscellaneous/variables.html":{}}}],["reset",{"_index":188,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}],["response",{"_index":165,"title":{},"body":{"directives/AgmDirection.html":{}}}],["response.routes[0].legs[0",{"_index":236,"title":{},"body":{"directives/AgmDirection.html":{}}}],["restriction",{"_index":560,"title":{},"body":{"license.html":{}}}],["result",{"_index":311,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["results",{"_index":313,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"coverage.html":{},"dependencies.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["return",{"_index":187,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"classes/AppPage.html":{}}}],["returns",{"_index":116,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["rights",{"_index":563,"title":{},"body":{"license.html":{}}}],["robby",{"_index":546,"title":{},"body":{"license.html":{}}}],["root",{"_index":348,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["run",{"_index":532,"title":{},"body":{"index.html":{}}}],["rxjs",{"_index":487,"title":{},"body":{"dependencies.html":{}}}],["same",{"_index":260,"title":{},"body":{"directives/AgmDirection.html":{}}}],["save",{"_index":390,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["selector",{"_index":13,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["sell",{"_index":570,"title":{},"body":{"license.html":{}}}],["send",{"_index":167,"title":{},"body":{"directives/AgmDirection.html":{}}}],["sendinfowindow",{"_index":58,"title":{},"body":{"directives/AgmDirection.html":{}}}],["sent",{"_index":278,"title":{},"body":{"directives/AgmDirection.html":{}}}],["set",{"_index":234,"title":{},"body":{"directives/AgmDirection.html":{}}}],["setmarker",{"_index":35,"title":{},"body":{"directives/AgmDirection.html":{}}}],["setmarker(map",{"_index":131,"title":{},"body":{"directives/AgmDirection.html":{}}}],["shall",{"_index":580,"title":{},"body":{"license.html":{}}}],["shan",{"_index":381,"title":{},"body":{"components/AppComponent.html":{}}}],["software",{"_index":555,"title":{},"body":{"license.html":{}}}],["source",{"_index":4,"title":{},"body":{"directives/AgmDirection.html":{},"modules/AgmDirectionModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{}}}],["span')).gettext",{"_index":457,"title":{},"body":{"classes/AppPage.html":{}}}],["spec\\.ts",{"_index":622,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/directive/agm",{"_index":6,"title":{},"body":{"directives/AgmDirection.html":{},"coverage.html":{}}}],["src/modules/agm",{"_index":328,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["start",{"_index":496,"title":{},"body":{"index.html":{}}}],["started",{"_index":490,"title":{"index.html":{},"license.html":{}},"body":{}}],["starter",{"_index":540,"title":{},"body":{"index.html":{}}}],["startgenerator",{"_index":537,"title":{},"body":{"index.html":{}}}],["statements",{"_index":461,"title":{},"body":{"coverage.html":{}}}],["static",{"_index":330,"title":{},"body":{"modules/AgmDirectionModule.html":{}}}],["station",{"_index":374,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["status",{"_index":59,"title":{},"body":{"directives/AgmDirection.html":{}}}],["step.path",{"_index":413,"title":{},"body":{"components/AppComponent.html":{}}}],["steppolyline",{"_index":414,"title":{},"body":{"components/AppComponent.html":{}}}],["steppolyline.getpath().push(next",{"_index":420,"title":{},"body":{"components/AppComponent.html":{}}}],["steppolyline.setmap(this.map",{"_index":422,"title":{},"body":{"components/AppComponent.html":{}}}],["steppolyline.setoptions",{"_index":417,"title":{},"body":{"components/AppComponent.html":{}}}],["stopover",{"_index":384,"title":{},"body":{"components/AppComponent.html":{}}}],["string",{"_index":75,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["strokecolor",{"_index":401,"title":{},"body":{"components/AppComponent.html":{}}}],["strokeopacity",{"_index":399,"title":{},"body":{"components/AppComponent.html":{}}}],["strokeweight",{"_index":397,"title":{},"body":{"components/AppComponent.html":{}}}],["style",{"_index":394,"title":{},"body":{"components/AppComponent.html":{}}}],["styles",{"_index":343,"title":{},"body":{"components/AppComponent.html":{}}}],["styleurls",{"_index":349,"title":{},"body":{"components/AppComponent.html":{}}}],["subject",{"_index":575,"title":{},"body":{"license.html":{}}}],["sublicense",{"_index":568,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":582,"title":{},"body":{"license.html":{}}}],["support",{"_index":610,"title":{},"body":{"modules.html":{}}}],["suppresspolylines",{"_index":377,"title":{},"body":{"components/AppComponent.html":{}}}],["svg",{"_index":611,"title":{},"body":{"modules.html":{}}}],["switch",{"_index":226,"title":{},"body":{"directives/AgmDirection.html":{}}}],["table",{"_index":475,"title":{},"body":{"coverage.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":474,"title":{},"body":{"coverage.html":{}}}],["taichung",{"_index":372,"title":{},"body":{"components/AppComponent.html":{}}}],["taipei",{"_index":515,"title":{},"body":{"index.html":{}}}],["taiwan",{"_index":364,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["template",{"_index":342,"title":{},"body":{"components/AppComponent.html":{}}}],["templateurl",{"_index":351,"title":{},"body":{"components/AppComponent.html":{}}}],["this.avoidhighways",{"_index":219,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.avoidtolls",{"_index":220,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destination",{"_index":211,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["this.destinationdrag.emit(this.destination",{"_index":257,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destinationmarker",{"_index":252,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destinationmarker.addlistener('dragend",{"_index":255,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destinationmarker.position",{"_index":256,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destinationmarker.setmap(null",{"_index":300,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.destroymarkers",{"_index":192,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directiondraw",{"_index":174,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer",{"_index":185,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.addlistener('directions_changed",{"_index":201,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setdirections(response",{"_index":229,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setdirections(this.renderroute",{"_index":208,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setmap(map",{"_index":200,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setmap(null",{"_index":304,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setpanel(null",{"_index":205,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsrenderer.setpanel(this.panel",{"_index":206,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsservice",{"_index":203,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.directionsservice.route",{"_index":209,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.drivingoptions",{"_index":215,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.getdirection",{"_index":511,"title":{},"body":{"index.html":{}}}],["this.gmapsapi.getnativemap().then(_map",{"_index":193,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.infowindow",{"_index":287,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.infowindow.open(map",{"_index":297,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.infowindow.setcontent(infowindocontent",{"_index":296,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.isfirstchange",{"_index":181,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.map",{"_index":393,"title":{},"body":{"components/AppComponent.html":{}}}],["this.markeroptions",{"_index":233,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.destination",{"_index":248,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.destination.draggable",{"_index":254,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.destination.map",{"_index":249,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.destination.position",{"_index":250,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.origin",{"_index":237,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.origin.draggable",{"_index":244,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.origin.map",{"_index":238,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.origin.position",{"_index":239,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints",{"_index":258,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints.map",{"_index":262,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints.position",{"_index":263,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints[index",{"_index":269,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints[index].map",{"_index":267,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.markeroptions.waypoints[index].position",{"_index":268,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.onchange.emit(this.directionsrenderer.getdirections",{"_index":202,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.onresponse.emit(response",{"_index":221,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.optimizewaypoints",{"_index":217,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.origin",{"_index":210,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["this.origindrag.emit(this.origin",{"_index":247,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.originmarker",{"_index":241,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.originmarker.addlistener('dragend",{"_index":245,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.originmarker.position",{"_index":246,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.originmarker.setmap(null",{"_index":299,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.panel",{"_index":204,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.polylines.foreach(polyline",{"_index":406,"title":{},"body":{"components/AppComponent.html":{}}}],["this.polylines.push(steppolyline",{"_index":421,"title":{},"body":{"components/AppComponent.html":{}}}],["this.provideroutealternatives",{"_index":218,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.removedirections",{"_index":178,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.removemarkers",{"_index":177,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.renderroute",{"_index":207,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.sendinfowindow.emit(this.infowindow",{"_index":288,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.setmarker",{"_index":242,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.status.emit(status",{"_index":223,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.transitoptions",{"_index":214,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.travelmode",{"_index":212,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.visible",{"_index":173,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.waypoints",{"_index":216,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.waypoints.foreach((waypoint",{"_index":259,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.waypointsmarker.foreach((w",{"_index":301,"title":{},"body":{"directives/AgmDirection.html":{}}}],["this.waypointsmarker.push(this.setmarker",{"_index":265,"title":{},"body":{"directives/AgmDirection.html":{}}}],["time",{"_index":183,"title":{},"body":{"directives/AgmDirection.html":{}}}],["tort",{"_index":605,"title":{},"body":{"license.html":{}}}],["transitoptions",{"_index":49,"title":{},"body":{"directives/AgmDirection.html":{}}}],["travelmode",{"_index":50,"title":{},"body":{"directives/AgmDirection.html":{}}}],["tree",{"_index":345,"title":{},"body":{"components/AppComponent.html":{}}}],["true",{"_index":86,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"miscellaneous/variables.html":{}}}],["try",{"_index":176,"title":{},"body":{"directives/AgmDirection.html":{}}}],["ts",{"_index":198,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["tslib",{"_index":477,"title":{},"body":{"dependencies.html":{}}}],["tw#markeroptions.clickable",{"_index":291,"title":{},"body":{"directives/AgmDirection.html":{}}}],["type",{"_index":68,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["typeof",{"_index":184,"title":{},"body":{"directives/AgmDirection.html":{}}}],["undefined",{"_index":186,"title":{},"body":{"directives/AgmDirection.html":{}}}],["university",{"_index":383,"title":{},"body":{"components/AppComponent.html":{}}}],["unknown",{"_index":196,"title":{},"body":{"directives/AgmDirection.html":{}}}],["updating",{"_index":121,"title":{},"body":{"directives/AgmDirection.html":{}}}],["usage",{"_index":508,"title":{},"body":{"index.html":{}}}],["use",{"_index":171,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{},"license.html":{}}}],["use?👉",{"_index":495,"title":{},"body":{"index.html":{}}}],["useful",{"_index":522,"title":{},"body":{"index.html":{}}}],["user",{"_index":119,"title":{},"body":{"directives/AgmDirection.html":{}}}],["using",{"_index":500,"title":{},"body":{"index.html":{}}}],["value",{"_index":71,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{},"miscellaneous/variables.html":{}}}],["var",{"_index":426,"title":{},"body":{"components/AppComponent.html":{}}}],["variable",{"_index":466,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":617,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["visible",{"_index":51,"title":{},"body":{"directives/AgmDirection.html":{}}}],["void",{"_index":117,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["w",{"_index":302,"title":{},"body":{"directives/AgmDirection.html":{}}}],["w.setmap(null",{"_index":303,"title":{},"body":{"directives/AgmDirection.html":{}}}],["warranties",{"_index":590,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":585,"title":{},"body":{"license.html":{}}}],["waypoint",{"_index":266,"title":{},"body":{"directives/AgmDirection.html":{}}}],["waypoints",{"_index":52,"title":{},"body":{"directives/AgmDirection.html":{},"components/AppComponent.html":{}}}],["waypointsmarker",{"_index":26,"title":{},"body":{"directives/AgmDirection.html":{}}}],["webpage",{"_index":277,"title":{},"body":{"directives/AgmDirection.html":{}}}],["wenxin",{"_index":361,"title":{},"body":{"components/AppComponent.html":{}}}],["whether",{"_index":602,"title":{},"body":{"license.html":{}}}],["within",{"_index":281,"title":{},"body":{"directives/AgmDirection.html":{},"index.html":{}}}],["without",{"_index":559,"title":{},"body":{"license.html":{}}}],["x1f449",{"_index":524,"title":{},"body":{"index.html":{}}}],["yarn",{"_index":504,"title":{},"body":{"index.html":{}}}],["zoom",{"_index":326,"title":{},"body":{"modules/AgmDirectionModule.html":{},"modules/AppModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]},
+ "store": {"directives/AgmDirection.html":{"url":"directives/AgmDirection.html","title":"directive - AgmDirection","body":"\n \n\n\n\n\n\n\n\n Directives\n AgmDirection\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/directive/agm-direction.directive.ts\n \n\n\n \n Implements\n \n \n OnChanges\n OnInit\n OnDestroy\n \n\n\n \n Metadata\n \n \n\n \n Selector\n agm-direction\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Optional\n destinationMarker\n \n \n Public\n directionsRenderer\n \n \n Public\n directionsService\n \n \n Private\n isFirstChange\n \n \n Private\n Optional\n originMarker\n \n \n Private\n waypointsMarker\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Private\n destroyMarkers\n \n \n Private\n directionDraw\n \n \n ngOnChanges\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n Private\n removeDirections\n \n \n Private\n removeMarkers\n \n \n Private\n setMarker\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n avoidHighways\n \n \n avoidTolls\n \n \n destination\n \n \n drivingOptions\n \n \n infoWindow\n \n \n markerOptions\n \n \n optimizeWaypoints\n \n \n origin\n \n \n panel\n \n \n provideRouteAlternatives\n \n \n renderOptions\n \n \n renderRoute\n \n \n transitOptions\n \n \n travelMode\n \n \n visible\n \n \n waypoints\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n destinationDrag\n \n \n onChange\n \n \n onResponse\n \n \n originDrag\n \n \n sendInfoWindow\n \n \n status\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(gmapsApi: GoogleMapsAPIWrapper)\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:72\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n gmapsApi\n \n \n GoogleMapsAPIWrapper\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n avoidHighways\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:25\n \n \n \n \n \n \n \n \n \n avoidTolls\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:27\n \n \n \n \n \n \n \n \n \n destination\n \n \n \n \n Type : string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:11\n \n \n \n \n \n \n \n \n \n drivingOptions\n \n \n \n \n Type : google.maps.DrivingOptions\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:17\n \n \n \n \n \n \n \n \n \n infoWindow\n \n \n \n \n Type : google.maps.InfoWindow\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:39\n \n \n \n \n \n \n \n \n \n markerOptions\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : { origin: {}, destination: {}, waypoints: {} }\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:33\n \n \n \n \n \n \n \n \n \n optimizeWaypoints\n \n \n \n \n Default value : true\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:21\n \n \n \n \n \n \n \n \n \n origin\n \n \n \n \n Type : string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:9\n \n \n \n \n \n \n \n \n \n panel\n \n \n \n \n Type : Element\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:31\n \n \n \n \n \n \n \n \n \n provideRouteAlternatives\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:23\n \n \n \n \n \n \n \n \n \n renderOptions\n \n \n \n \n Type : google.maps.DirectionsRendererOptions\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:29\n \n \n \n \n \n \n \n \n \n renderRoute\n \n \n \n \n Type : google.maps.DirectionsResult | null\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:45\n \n \n \n \n \n \n \n \n \n transitOptions\n \n \n \n \n Type : google.maps.TransitOptions\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:15\n \n \n \n \n \n \n \n \n \n travelMode\n \n \n \n \n Type : google.maps.TravelMode\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:13\n \n \n \n \n \n \n \n \n \n visible\n \n \n \n \n Default value : true\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:42\n \n \n \n \n \n \n \n \n \n waypoints\n \n \n \n \n Type : google.maps.DirectionsWaypoint[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:19\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n destinationDrag\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:61\n \n \n \n \n \n \n \n \n \n onChange\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:48\n \n \n \n \n \n \n \n \n \n onResponse\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:51\n \n \n \n \n \n \n \n \n \n originDrag\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:60\n \n \n \n \n \n \n \n \n \n sendInfoWindow\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:54\n \n \n \n \n \n \n \n \n \n status\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:57\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Private\n destroyMarkers\n \n \n \n \n \n \n \n \n destroyMarkers()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:348\n \n \n\n\n \n \n This event is fired when destroy markers\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n directionDraw\n \n \n \n \n \n \n \n \n directionDraw()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:126\n \n \n\n\n \n \n This event is fired when the user creating or updating this direction\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges(obj: any)\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:84\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n obj\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:118\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:78\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n removeDirections\n \n \n \n \n \n \n \n \n removeDirections()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:335\n \n \n\n\n \n \n This event is fired when remove directions\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n removeMarkers\n \n \n \n \n \n \n \n \n removeMarkers()\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:318\n \n \n\n\n \n \n This event is fired when remove markers\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n setMarker\n \n \n \n \n \n \n \n \n setMarker(map: google.maps.Map, marker: google.maps.Marker | google.maps.DirectionsWaypoint, markerOpts: any, content: google.maps.LatLng | string)\n \n \n\n\n \n \n Defined in src/directive/agm-direction.directive.ts:292\n \n \n\n\n \n \n Custom Origin and Destination Icon\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n map\n \n google.maps.Map\n \n\n \n No\n \n\n\n \n map\n\n \n \n \n marker\n \n google.maps.Marker | google.maps.DirectionsWaypoint\n \n\n \n No\n \n\n\n \n marker\n\n \n \n \n markerOpts\n \n any\n \n\n \n No\n \n\n\n \n properties\n\n \n \n \n content\n \n google.maps.LatLng | string\n \n\n \n No\n \n\n\n \n marker's infowindow content\n\n \n \n \n \n \n \n \n \n Returns : google.maps.Marker\n\n \n \n new marker\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n Optional\n destinationMarker\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:68\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n directionsRenderer\n \n \n \n \n \n \n Type : google.maps.DirectionsRenderer\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:64\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n directionsService\n \n \n \n \n \n \n Type : google.maps.DirectionsService\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n isFirstChange\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:72\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n Optional\n originMarker\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:67\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n waypointsMarker\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/directive/agm-direction.directive.ts:69\n \n \n\n\n \n \n\n\n\n \n\n\n \n import { Directive, Input, Output, OnChanges, OnInit, EventEmitter, OnDestroy } from '@angular/core';\nimport { GoogleMapsAPIWrapper } from '@agm/core';\n\n@Directive({\n selector: 'agm-direction',\n})\nexport class AgmDirection implements OnChanges, OnInit, OnDestroy {\n\n @Input() origin: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;\n\n @Input() destination: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;\n\n @Input() travelMode?: google.maps.TravelMode;\n\n @Input() transitOptions?: google.maps.TransitOptions;\n\n @Input() drivingOptions?: google.maps.DrivingOptions;\n\n @Input() waypoints: google.maps.DirectionsWaypoint[] = [];\n\n @Input() optimizeWaypoints = true;\n\n @Input() provideRouteAlternatives = false;\n\n @Input() avoidHighways = false;\n\n @Input() avoidTolls = false;\n\n @Input() renderOptions?: google.maps.DirectionsRendererOptions;\n\n @Input() panel?: Element;\n\n @Input() markerOptions: {\n origin: google.maps.MarkerOptions,\n destination: google.maps.MarkerOptions,\n waypoints: google.maps.MarkerOptions,\n } = { origin: {}, destination: {}, waypoints: {} };\n\n @Input() infoWindow: google.maps.InfoWindow;\n\n // Remove or draw direction\n @Input() visible = true;\n\n // Render exist direction\n @Input() renderRoute?: google.maps.DirectionsResult | null;\n\n // Direction change event handler\n @Output() onChange: EventEmitter = new EventEmitter();\n\n // Direction response for the new request\n @Output() onResponse: EventEmitter = new EventEmitter();\n\n // Send a custom infowindow\n @Output() sendInfoWindow: EventEmitter = new EventEmitter();\n\n // Status of Directions Query (google.maps.DirectionsStatus.OVER_QUERY_LIMIT)\n @Output() status: EventEmitter = new EventEmitter();\n\n // Marker drag event handler\n @Output() originDrag: EventEmitter = new EventEmitter();\n @Output() destinationDrag: EventEmitter = new EventEmitter();\n\n public directionsService: google.maps.DirectionsService;\n public directionsRenderer: google.maps.DirectionsRenderer;\n\n // Use for custom marker\n private originMarker?: any;\n private destinationMarker?: any;\n private waypointsMarker: Array = [];\n\n // Use for visible flag\n private isFirstChange = true;\n\n constructor(\n private gmapsApi: GoogleMapsAPIWrapper,\n ) { }\n\n ngOnInit() {\n if (this.visible === true) {\n this.directionDraw();\n }\n }\n\n ngOnChanges(obj: any) {\n /**\n * When visible is false then remove the direction layer\n */\n if (!this.visible) {\n try {\n this.removeMarkers();\n this.removeDirections();\n } catch (e) { }\n } else {\n if (this.isFirstChange) {\n /**\n * When visible is false at the first time\n */\n if (typeof this.directionsRenderer === 'undefined') {\n this.directionDraw();\n }\n this.isFirstChange = false;\n return;\n }\n\n /**\n * When renderOptions are not first change then reset the display\n */\n if (typeof obj.renderOptions !== 'undefined') {\n if (obj.renderOptions.firstChange === false) {\n this.removeMarkers();\n this.removeDirections();\n }\n }\n this.directionDraw();\n }\n }\n\n ngOnDestroy() {\n this.destroyMarkers();\n this.removeDirections();\n }\n\n /**\n * This event is fired when the user creating or updating this direction\n */\n private directionDraw() {\n this.gmapsApi.getNativeMap().then(_map => {\n\n const map = _map as unknown as google.maps.Map;\n\n if (typeof this.directionsRenderer === 'undefined') {\n this.directionsRenderer = new google.maps.DirectionsRenderer(this.renderOptions);\n // @ts-ignore\n this.directionsRenderer.setMap(map);\n this.directionsRenderer.addListener('directions_changed', () => {\n this.onChange.emit(this.directionsRenderer.getDirections());\n });\n }\n\n if (typeof this.directionsService === 'undefined') {\n this.directionsService = new google.maps.DirectionsService();\n }\n\n if (typeof this.panel === 'undefined') {\n // @ts-ignore\n this.directionsRenderer.setPanel(null);\n } else {\n this.directionsRenderer.setPanel(this.panel);\n }\n\n // Render exist direction\n if (this.renderRoute) {\n this.directionsRenderer.setDirections(this.renderRoute);\n this.renderRoute = undefined;\n } else {\n\n // Request new direction\n this.directionsService.route({\n origin: this.origin,\n destination: this.destination,\n travelMode: this.travelMode || google.maps.TravelMode.DRIVING,\n transitOptions: this.transitOptions,\n drivingOptions: this.drivingOptions,\n waypoints: this.waypoints,\n optimizeWaypoints: this.optimizeWaypoints,\n provideRouteAlternatives: this.provideRouteAlternatives,\n avoidHighways: this.avoidHighways,\n avoidTolls: this.avoidTolls,\n }, (response, status) => {\n\n this.onResponse.emit(response);\n\n // Emit Query Status\n this.status.emit(status);\n\n /**\n * DirectionsStatus\n * https://developers.google.com/maps/documentation/javascript/directions#DirectionsStatus\n */\n switch (status) {\n case google.maps.DirectionsStatus.OK:\n\n this.directionsRenderer.setDirections(response);\n\n /**\n * Emit The DirectionsResult Object\n * https://developers.google.com/maps/documentation/javascript/directions?hl=en#DirectionsResults\n */\n // Custom Markers\n if (typeof this.markerOptions !== 'undefined') {\n\n this.destroyMarkers();\n\n // Set custom markers\n const _route = response.routes[0].legs[0];\n try {\n // Origin Marker\n if (typeof this.markerOptions.origin !== 'undefined') {\n this.markerOptions.origin.map = map;\n this.markerOptions.origin.position = _route.start_location;\n this.originMarker = this.setMarker(\n map,\n this.originMarker,\n this.markerOptions.origin,\n _route.start_address,\n );\n\n if (this.markerOptions.origin.draggable) {\n this.originMarker.addListener('dragend', () => {\n this.origin = this.originMarker.position;\n this.directionDraw();\n this.originDrag.emit(this.origin);\n });\n }\n }\n // Destination Marker\n if (typeof this.markerOptions.destination !== 'undefined') {\n this.markerOptions.destination.map = map;\n this.markerOptions.destination.position = _route.end_location;\n this.destinationMarker = this.setMarker(\n map,\n this.destinationMarker,\n this.markerOptions.destination,\n _route.end_address,\n );\n if (this.markerOptions.destination.draggable) {\n this.destinationMarker.addListener('dragend', () => {\n this.destination = this.destinationMarker.position;\n this.directionDraw();\n this.destinationDrag.emit(this.destination);\n });\n }\n }\n\n // Waypoints Marker\n if (typeof this.markerOptions.waypoints !== 'undefined') {\n\n this.waypoints.forEach((waypoint, index) => {\n\n // If waypoints are not array then set all the same\n if (!Array.isArray(this.markerOptions.waypoints)) {\n this.markerOptions.waypoints.map = map;\n this.markerOptions.waypoints.position = _route.via_waypoints[index];\n this.waypointsMarker.push(this.setMarker(\n map,\n waypoint,\n this.markerOptions.waypoints,\n _route.via_waypoints[index],\n ));\n } else {\n this.markerOptions.waypoints[index].map = map;\n this.markerOptions.waypoints[index].position = _route.via_waypoints[index];\n this.waypointsMarker.push(this.setMarker(\n map,\n waypoint,\n this.markerOptions.waypoints[index],\n _route.via_waypoints[index],\n ));\n }\n\n }); // End forEach\n\n }\n } catch (err) {\n console.error('MarkerOptions error.', err);\n }\n }\n\n break;\n\n case google.maps.DirectionsStatus.OVER_QUERY_LIMIT:\n console.warn('The webpage has sent too many requests within the allowed time period.');\n break;\n default:\n // console.warn(status);\n break;\n } // End switch\n });\n }\n });\n }\n\n /**\n * Custom Origin and Destination Icon\n * @param map map\n * @param marker marker\n * @param markerOpts properties\n * @param content marker's infowindow content\n * @returns new marker\n * @memberof AgmDirection\n */\n private setMarker(\n map: google.maps.Map,\n marker: google.maps.Marker | google.maps.DirectionsWaypoint,\n markerOpts: any,\n content: google.maps.LatLng | string\n ): google.maps.Marker {\n if (typeof this.infoWindow === 'undefined') {\n this.infoWindow = new google.maps.InfoWindow();\n this.sendInfoWindow.emit(this.infoWindow);\n }\n\n marker = new google.maps.Marker(markerOpts);\n // https://developers.google.com/maps/documentation/javascript/reference/marker?hl=zh-tw#MarkerOptions.clickable\n if (marker.getClickable()) {\n marker.addListener('click', () => {\n const infowindoContent: string = typeof markerOpts.infoWindow === 'undefined' ? content : markerOpts.infoWindow;\n this.infoWindow.setContent(infowindoContent);\n this.infoWindow.open(map, marker as google.maps.MVCObject);\n });\n }\n return marker;\n }\n\n /**\n * This event is fired when remove markers\n */\n private removeMarkers(): void {\n if (typeof this.originMarker !== 'undefined') {\n this.originMarker.setMap(null);\n }\n if (typeof this.destinationMarker !== 'undefined') {\n this.destinationMarker.setMap(null);\n }\n this.waypointsMarker.forEach((w: any) => {\n if (typeof w !== 'undefined') {\n w.setMap(null);\n }\n });\n }\n\n /**\n * This event is fired when remove directions\n */\n private removeDirections(): void {\n if (this.directionsRenderer !== undefined) {\n // @ts-ignore\n this.directionsRenderer.setPanel(null);\n this.directionsRenderer.setMap(null);\n // @ts-ignore\n this.directionsRenderer = undefined;\n }\n }\n\n /**\n * This event is fired when destroy markers\n */\n private destroyMarkers(): void {\n // Remove origin markers\n try {\n if (typeof this.originMarker !== 'undefined') {\n google.maps.event.clearListeners(this.originMarker, 'click');\n if (this.markerOptions.origin.draggable) {\n google.maps.event.clearListeners(this.originMarker, 'dragend');\n }\n }\n if (typeof this.destinationMarker !== 'undefined') {\n google.maps.event.clearListeners(this.destinationMarker, 'click');\n if (this.markerOptions.origin.draggable) {\n google.maps.event.clearListeners(this.destinationMarker, 'dragend');\n }\n }\n this.waypointsMarker.forEach((w: any) => {\n if (typeof w !== 'undefined') {\n google.maps.event.clearListeners(w, 'click');\n }\n });\n this.removeMarkers();\n\n } catch (err) {\n console.error('Can not reset custom marker.', err);\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AgmDirectionModule.html":{"url":"modules/AgmDirectionModule.html","title":"module - AgmDirectionModule","body":"\n \n\n\n\n\n Modules\n AgmDirectionModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/modules/agm-direction.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AgmDirection\n \n \n \n \n Exports\n \n \n AgmDirection\n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n forChild\n \n \n \n \n \n \n \n \n forChild()\n \n \n\n\n \n \n Defined in src/modules/agm-direction.module.ts:19\n \n \n\n\n \n \n\n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n \n forRoot()\n \n \n\n\n \n \n Defined in src/modules/agm-direction.module.ts:13\n \n \n\n\n \n \n\n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n\n \n\n\n \n import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { AgmDirection } from '../directive/agm-direction.directive';\n\n@NgModule({\n declarations: [\n AgmDirection,\n ],\n exports: [\n AgmDirection,\n ]\n})\nexport class AgmDirectionModule {\n public static forRoot(): ModuleWithProviders {\n return {\n ngModule: AgmDirectionModule,\n };\n }\n\n public static forChild(): ModuleWithProviders {\n return {\n ngModule: AgmDirectionModule,\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n \n\n\n\n\n\n Components\n AppComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n playground/src/app/app.component.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-root\n \n\n \n styleUrls\n ./app.component.css\n \n\n\n\n \n templateUrl\n ./app.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n destination\n \n \n Public\n lat\n \n \n Public\n lng\n \n \n Public\n map\n \n \n Public\n origin\n \n \n Public\n polylines\n \n \n Public\n renderOptions\n \n \n Public\n waypoints\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n onMapReady\n \n \n Public\n onResponse\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n onMapReady\n \n \n \n \n \n \n \n \n onMapReady(event: google.maps.Map)\n \n \n\n\n \n \n Defined in playground/src/app/app.component.ts:31\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n google.maps.Map\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n onResponse\n \n \n \n \n \n \n \n \n onResponse(event: google.maps.DirectionsResult)\n \n \n\n\n \n \n Defined in playground/src/app/app.component.ts:35\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n google.maps.DirectionsResult\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n destination\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : 'Wenxin Forest Park, Taiwan'\n \n \n \n \n Defined in playground/src/app/app.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n lat\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 24.799448\n \n \n \n \n Defined in playground/src/app/app.component.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n lng\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 120.979021\n \n \n \n \n Defined in playground/src/app/app.component.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n map\n \n \n \n \n \n \n Type : google.maps.Map\n\n \n \n \n \n Defined in playground/src/app/app.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n origin\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : 'Taichung Railway Station, Taiwan'\n \n \n \n \n Defined in playground/src/app/app.component.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n polylines\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in playground/src/app/app.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n renderOptions\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : { suppressPolylines: true }\n \n \n \n \n Defined in playground/src/app/app.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n waypoints\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n { location: 'Chung Shan Medical University, Taiwan', stopover: true },\n { location: 'National Chung Hsing University, Taiwan', stopover: true },\n ]\n \n \n \n \n Defined in playground/src/app/app.component.ts:16\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.css']\n})\nexport class AppComponent {\n\n public lat = 24.799448;\n public lng = 120.979021;\n\n public origin: any = 'Taichung Railway Station, Taiwan';\n public destination: any = 'Wenxin Forest Park, Taiwan';\n\n public waypoints: Array = [\n { location: 'Chung Shan Medical University, Taiwan', stopover: true },\n { location: 'National Chung Hsing University, Taiwan', stopover: true },\n ];\n\n // Hide origin polylines\n public renderOptions = { suppressPolylines: true };\n\n // Custom polylines\n public polylines: Array = [];\n\n // Current map\n public map: google.maps.Map;\n\n // Save GoogleMap instance\n public onMapReady(event: google.maps.Map): void {\n this.map = event;\n }\n\n public onResponse(event: google.maps.DirectionsResult): void {\n\n // Default style\n const polylineOptions: google.maps.PolygonOptions = {\n strokeWeight: 6,\n strokeOpacity: 0.55,\n };\n\n // Polylines strokeColor\n const colors = ['#0000FF', '#FF0000', '#0000FF'];\n\n // Clear exist polylines\n this.polylines.forEach(polyline => polyline.setMap(null));\n\n const { legs } = event.routes[0];\n\n legs.forEach((leg, index) => {\n\n leg.steps.forEach(step => {\n const nextSegment = step.path;\n const stepPolyline = new google.maps.Polyline(polylineOptions);\n\n // Custom color\n stepPolyline.setOptions({ strokeColor: colors[index] });\n\n nextSegment.forEach(next => stepPolyline.getPath().push(next));\n\n this.polylines.push(stepPolyline);\n stepPolyline.setMap(this.map);\n });\n });\n }\n}\n\n \n\n \n \n \n \n\n\n \n\n \n \n ./app.component.css\n \n agm-map {\n height: 90vh;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'app-root'}];\n var DIRECTIVES = [{'name': 'AgmDirection', 'selector': 'agm-direction'}];\n var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n playground/src/app/app.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n \n \n Imports\n \n \n AgmDirectionModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n\n\n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\n\nimport { AppComponent } from './app.component';\n\nimport { AgmCoreModule } from '@agm/core';\nimport { AgmDirectionModule } from 'agm-direction';\n\nimport { environment } from '../environments/environment';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({\n apiKey: environment.googleAPIKey,\n }),\n AgmDirectionModule,\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n playground/e2e/src/app.po.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getTitleText\n \n \n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getTitleText\n \n \n \n \n \n \n \ngetTitleText()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:8\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n navigateTo\n \n \n \n \n \n \n \nnavigateTo()\n \n \n\n\n \n \n Defined in playground/e2e/src/app.po.ts:4\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n navigateTo(): Promise {\n return browser.get(browser.baseUrl) as Promise;\n }\n\n getTitleText(): Promise {\n return element(by.css('app-root .content span')).getText() as Promise;\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n Documentation coverage\n\n\n\n \n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n playground/e2e/src/app.po.ts\n \n class\n AppPage\n \n 0 %\n (0/3)\n \n \n \n \n \n playground/src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n playground/src/environments/environment.prod.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/environments/environment.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n variable\n context\n \n 0 %\n (0/1)\n \n \n \n \n \n playground/src/test.ts\n \n variable\n require\n \n 0 %\n (0/1)\n \n \n \n \n \n src/directive/agm-direction.directive.ts\n \n directive\n AgmDirection\n \n 13 %\n (5/38)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n tslib : ^2.0.0\n \n\n\n \n \n Peer dependencies\n \n \n \n @agm/core : ^1.1.0\n \n @angular/common : ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0\n \n @angular/core : ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0\n \n rxjs : ~6.6.0\n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nAgm-Direction\n\n\n\n\n\n\nAgm-Direction is the directive for @agm/core (not official)\n\nAngular\nGoogle Map API\n\nHow to use?👉 Start Reading\n\nInstallation\nInstallation is done using the\nnpm install command:\n\nUse npm\nnpm install --save @agm/core agm-direction\nUse yarn\nyarn add @agm/core agm-direction\n\nImporting Modules\nimport { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { AppComponent } from './app.component';\n\nimport { AgmCoreModule } from '@agm/core'; // @agm/core\nimport { AgmDirectionModule } from 'agm-direction'; // agm-direction\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AgmCoreModule.forRoot({ // @agm/core\n apiKey: 'your key',\n }),\n AgmDirectionModule, // agm-direction\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }Usage\nHTML\n\n \n \nCSS\nagm-map {\n height: 400px;\n}TS\npublic lat = 24.799448;\npublic lng = 120.979021;\n\npublic origin: any;\npublic destination: any;\n\nngOnInit() {\n this.getDirection();\n}\n\ngetDirection() {\n this.origin = { lat: 24.799448, lng: 120.979021 };\n this.destination = { lat: 24.799524, lng: 120.975017 };\n\n // Location within a string\n // this.origin = 'Taipei Main Station';\n // this.destination = 'Taiwan Presidential Office';\n}Document\n\nDocument Agm-Direction-Docs\nLess useful AgmDirectionModule\n\nDevelopment\n👉 Playground Project\ngit clone https://github.com/explooosion/Agm-Direction.gitnpm installnpm run buildnpm run pack:libcd playground && npm install# Add gmap api key in environment.tsnpm startGenerator\nThis library generated by angular-library-starter.\nLicense\nMIT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2018 Robby\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AgmDirectionModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AgmDirectionModule\n\n\n\ncluster_AgmDirectionModule_declarations\n\n\n\ncluster_AgmDirectionModule_exports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAgmDirection\n\nAgmDirection\n\n\n\nAgmDirectionModule\n\nAgmDirectionModule\n\nAgmDirectionModule -->\n\nAgmDirection->AgmDirectionModule\n\n\n\n\n\nAgmDirection \n\nAgmDirection \n\nAgmDirection -->\n\nAgmDirectionModule->AgmDirection \n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAgmDirectionModule->AppModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n \n\n \n \n \n \n \n \n 2 Modules\n \n \n \n \n \n \n \n \n 1 Component\n \n \n \n \n \n \n \n 1 Directive\n \n \n \n \n \n \n \n 1 Class\n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n context   (playground/.../test.ts)\n \n \n environment   (playground/.../environment.prod.ts)\n \n \n environment   (playground/.../environment.ts)\n \n \n require   (playground/.../test.ts)\n \n \n \n \n \n \n\n\n playground/src/test.ts\n \n \n \n \n \n \n \n \n context\n \n \n \n \n \n \n Default value : require.context('./', true, /\\.spec\\.ts$/)\n \n \n\n\n \n \n \n \n \n \n \n \n \n require\n \n \n \n \n \n \n Type : literal type\n\n \n \n\n\n \n \n\n playground/src/environments/environment.prod.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true\n}\n \n \n\n\n \n \n\n playground/src/environments/environment.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false,\n googleAPIKey: '',\n}\n \n \n\n\n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}}
}
diff --git a/docs/miscellaneous/variables.html b/docs/miscellaneous/variables.html
index 96756b5..0620eeb 100644
--- a/docs/miscellaneous/variables.html
+++ b/docs/miscellaneous/variables.html
@@ -178,7 +178,7 @@
Default value : {
production: false,
- googleAPIKey: 'AIzaSyBe2XKY725-FyVGmafG_1nObliZzxVhhWI',
+ googleAPIKey: '',
}
diff --git a/docs/modules/AgmDirectionModule.html b/docs/modules/AgmDirectionModule.html
index 94aec1a..c64a541 100644
--- a/docs/modules/AgmDirectionModule.html
+++ b/docs/modules/AgmDirectionModule.html
@@ -201,7 +201,7 @@
- Returns : ModuleWithProviders
+ Returns : ModuleWithProviders<AgmDirectionModule>
@@ -242,7 +242,7 @@
- Returns : ModuleWithProviders
+ Returns : ModuleWithProviders<AgmDirectionModule>
@@ -266,13 +266,13 @@
]
})
export class AgmDirectionModule {
- public static forRoot(): ModuleWithProviders {
+ public static forRoot(): ModuleWithProviders<AgmDirectionModule> {
return {
ngModule: AgmDirectionModule,
};
}
- public static forChild(): ModuleWithProviders {
+ public static forChild(): ModuleWithProviders<AgmDirectionModule> {
return {
ngModule: AgmDirectionModule,
};
diff --git a/package.json b/package.json
index 6760ec3..b9fd2ae 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "agm-direction",
- "version": "0.8.1",
+ "version": "0.8.6",
"description": "directive for agm (not official)",
"main": "./bundles/agm-direction.umd.js",
"module": "./fesm5/agm-direction.js",
@@ -13,9 +13,7 @@
"scripts": {
"build": "node build.js",
"pack:lib": "npm pack ./dist",
- "pack:build": "npm run build && npm pack ./dist",
- "publish:lib": "npm run build && npm publish ./dist",
- "publish:lib:next": "npm run build && npm publish --tag next ./dist",
+ "pack:build": "npm run build && npm pack ./dist && cd ./dist && yarn link",
"compodoc": "compodoc -p tsconfig.json -d docs",
"compodoc:serve": "compodoc -p tsconfig.json -s -d docs"
},
@@ -34,33 +32,38 @@
"keywords": [
"angular",
"agm",
+ "direction",
+ "google",
"googlemap",
- "direction"
+ "gmaps",
+ "maps",
+ "ng"
],
"license": "MIT",
"dependencies": {
- "tslib": "^1.10.0"
+ "@types/googlemaps": "^3.39.9",
+ "tslib": "^2.0.0"
},
"peerDependencies": {
- "@agm/core": "^1.0.0-beta.2",
- "@angular/common": "^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",
- "rxjs": ">= 6.4.0"
+ "@agm/core": "^1.1.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 || ^10.0.0",
+ "rxjs": "~6.6.0"
},
"devDependencies": {
- "@agm/core": "^1.0.0-beta.2",
- "@angular/animations": "9.1.7",
- "@angular/common": "9.1.7",
- "@angular/compiler": "9.1.7",
- "@angular/compiler-cli": "9.1.7",
- "@angular/core": "9.1.7",
- "@angular/platform-browser": "9.1.7",
- "@angular/platform-browser-dynamic": "9.1.7",
- "@angular/platform-server": "9.1.7",
+ "@agm/core": "^1.1.0",
+ "@angular/animations": "10.0.0",
+ "@angular/common": "10.0.0",
+ "@angular/compiler": "10.0.0",
+ "@angular/compiler-cli": "10.0.0",
+ "@angular/core": "10.0.0",
+ "@angular/platform-browser": "10.0.0",
+ "@angular/platform-browser-dynamic": "10.0.0",
+ "@angular/platform-server": "10.0.0",
"@compodoc/compodoc": "^1.1.11",
"@types/googlemaps": "^3.39.9",
"@types/jasmine": "3.5.0",
- "@types/node": "12.11.1",
+ "@types/node": "^14.0.22",
"angular2-template-loader": "0.6.2",
"chalk": "2.4.2",
"codelyzer": "5.2.2",
@@ -82,20 +85,20 @@
"rollup-plugin-license": "2.0.1",
"rollup-plugin-node-resolve": "5.0.0",
"rollup-plugin-sourcemaps": "0.4.2",
- "rxjs": "6.5.2",
+ "rxjs": "~6.6.0",
"sass-loader": "7.1.0",
"shelljs": "0.8.3",
"source-map-loader": "0.2.4",
"to-string-loader": "1.1.5",
"ts-loader": "6.0.1",
"tsickle": "0.38.1",
- "tslint": "5.19.0",
+ "tslint": "~6.1.0",
"tslint-angular": "3.0.2",
- "typescript": "3.8.2",
+ "typescript": "~3.9.5",
"uglify-js": "3.6.0",
"webpack": "4.43.0",
"webpack-filter-warnings-plugin": "1.2.1",
- "zone.js": "0.9.1"
+ "zone.js": "~0.10.3"
},
"sideEffects": false
}
diff --git a/playground/.browserslistrc b/playground/.browserslistrc
new file mode 100644
index 0000000..0ccadaf
--- /dev/null
+++ b/playground/.browserslistrc
@@ -0,0 +1,18 @@
+# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
+# For additional information regarding the format and rule options, please see:
+# https://github.com/browserslist/browserslist#queries
+
+# For the full list of supported browsers by the Angular framework, please see:
+# https://angular.io/guide/browser-support
+
+# You can see what browsers were selected by your queries by running:
+# npx browserslist
+
+last 1 Chrome version
+last 1 Firefox version
+last 2 Edge major versions
+last 2 Safari major versions
+last 2 iOS major versions
+Firefox ESR
+not IE 9-10 # Angular support for IE 9-10 has been deprecated and will be removed as of Angular v11. To opt-in, remove the 'not' prefix on this line.
+not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.
diff --git a/playground/README.md b/playground/README.md
index 65b0376..66321d6 100644
--- a/playground/README.md
+++ b/playground/README.md
@@ -1,6 +1,6 @@
# Playground
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.7.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 10.0.3.
## Development server
diff --git a/playground/browserslist b/playground/browserslist
deleted file mode 100644
index 8084853..0000000
--- a/playground/browserslist
+++ /dev/null
@@ -1,12 +0,0 @@
-# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
-# For additional information regarding the format and rule options, please see:
-# https://github.com/browserslist/browserslist#queries
-
-# You can see what browsers were selected by your queries by running:
-# npx browserslist
-
-> 0.5%
-last 2 versions
-Firefox ESR
-not dead
-not IE 9-11 # For IE 9-11 support, remove 'not'.
\ No newline at end of file
diff --git a/playground/e2e/protractor.conf.js b/playground/e2e/protractor.conf.js
index 7c798cf..f238c0b 100644
--- a/playground/e2e/protractor.conf.js
+++ b/playground/e2e/protractor.conf.js
@@ -2,7 +2,7 @@
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts
-const { SpecReporter } = require('jasmine-spec-reporter');
+const { SpecReporter, StacktraceOption } = require('jasmine-spec-reporter');
/**
* @type { import("protractor").Config }
@@ -27,6 +27,10 @@ exports.config = {
require('ts-node').register({
project: require('path').join(__dirname, './tsconfig.json')
});
- jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
+ jasmine.getEnv().addReporter(new SpecReporter({
+ spec: {
+ displayStacktrace: StacktraceOption.PRETTY
+ }
+ }));
}
};
\ No newline at end of file
diff --git a/playground/e2e/tsconfig.json b/playground/e2e/tsconfig.json
index 39b800f..1807fd6 100644
--- a/playground/e2e/tsconfig.json
+++ b/playground/e2e/tsconfig.json
@@ -1,9 +1,10 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
- "extends": "../tsconfig.json",
+ "extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"module": "commonjs",
- "target": "es5",
+ "target": "es2018",
"types": [
"jasmine",
"jasminewd2",
diff --git a/playground/package.json b/playground/package.json
index 2085cbe..3e47339 100644
--- a/playground/package.json
+++ b/playground/package.json
@@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
- "start": "ng serve --host 0.0.0.0",
+ "start": "yarn link agm-direction && ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
@@ -12,38 +12,36 @@
"private": true,
"dependencies": {
"@agm/core": "^1.1.0",
- "@angular/animations": "~9.1.9",
- "@angular/common": "~9.1.9",
- "@angular/compiler": "~9.1.9",
- "@angular/core": "~9.1.9",
- "@angular/forms": "~9.1.9",
- "@angular/platform-browser": "~9.1.9",
- "@angular/platform-browser-dynamic": "~9.1.9",
- "@angular/router": "~9.1.9",
- "agm-direction": "file:../agm-direction-0.8.0.tgz",
- "rxjs": "~6.5.4",
- "tslib": "^1.10.0",
- "zone.js": "~0.10.2"
+ "@angular/animations": "~10.0.4",
+ "@angular/common": "~10.0.4",
+ "@angular/compiler": "~10.0.4",
+ "@angular/core": "~10.0.4",
+ "@angular/forms": "~10.0.4",
+ "@angular/platform-browser": "~10.0.4",
+ "@angular/platform-browser-dynamic": "~10.0.4",
+ "@angular/router": "~10.0.4",
+ "rxjs": "~6.5.5",
+ "tslib": "^2.0.0",
+ "zone.js": "~0.10.3"
},
"devDependencies": {
- "@angular-devkit/build-angular": "~0.901.7",
- "@angular/cli": "~9.1.7",
- "@angular/compiler-cli": "~9.1.9",
- "@types/googlemaps": "^3.39.9",
+ "@angular-devkit/build-angular": "~0.1000.3",
+ "@angular/cli": "~10.0.3",
+ "@angular/compiler-cli": "~10.0.4",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
- "codelyzer": "^5.1.2",
+ "codelyzer": "^6.0.0",
"jasmine-core": "~3.5.0",
- "jasmine-spec-reporter": "~4.2.1",
+ "jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
- "karma-coverage-istanbul-reporter": "~2.1.0",
- "karma-jasmine": "~3.0.1",
- "karma-jasmine-html-reporter": "^1.4.2",
+ "karma-coverage-istanbul-reporter": "~3.0.2",
+ "karma-jasmine": "~3.3.0",
+ "karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
- "typescript": "~3.8.3"
+ "typescript": "~3.9.5"
}
}
diff --git a/playground/src/app/app.component.css b/playground/src/app/app.component.css
index 198d0e8..c57cc83 100644
--- a/playground/src/app/app.component.css
+++ b/playground/src/app/app.component.css
@@ -1,3 +1,3 @@
agm-map {
- height: 80vh;
+ height: 90vh;
}
diff --git a/playground/src/app/app.component.ts b/playground/src/app/app.component.ts
index d8a53f9..b5d3bed 100644
--- a/playground/src/app/app.component.ts
+++ b/playground/src/app/app.component.ts
@@ -3,7 +3,7 @@ import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
- styleUrls: ['./app.component.css'],
+ styleUrls: ['./app.component.css']
})
export class AppComponent {
@@ -28,11 +28,11 @@ export class AppComponent {
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 = {
diff --git a/playground/tsconfig.app.json b/playground/tsconfig.app.json
index f7089f7..232c3a5 100644
--- a/playground/tsconfig.app.json
+++ b/playground/tsconfig.app.json
@@ -1,20 +1,15 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
- "extends": "./tsconfig.json",
+ "extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
- "types": [
- "googlemaps"
- ]
+ "types": []
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
- "src/**/*.ts"
- ],
- "exclude": [
- "src/test.ts",
- "src/**/*.spec.ts"
+ "src/**/*.d.ts"
]
}
diff --git a/playground/tsconfig.base.json b/playground/tsconfig.base.json
new file mode 100644
index 0000000..96e3cfa
--- /dev/null
+++ b/playground/tsconfig.base.json
@@ -0,0 +1,28 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "baseUrl": "./",
+ "outDir": "./dist/out-tsc",
+ "sourceMap": true,
+ "declaration": false,
+ "downlevelIteration": true,
+ "experimentalDecorators": true,
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "target": "es2015",
+ "module": "es2020",
+ "lib": [
+ "es2018",
+ "dom"
+ ],
+ "paths": {
+ "@angular/*": [
+ "./node_modules/@angular/*"
+ ],
+ "@agm/*": [
+ "./node_modules/@agm/*"
+ ]
+ }
+ }
+}
diff --git a/playground/tsconfig.json b/playground/tsconfig.json
index 646c1a1..2338536 100644
--- a/playground/tsconfig.json
+++ b/playground/tsconfig.json
@@ -1,26 +1,17 @@
+/*
+ This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
+ It is not intended to be used to perform a compilation.
+
+ To learn more about this file see: https://angular.io/config/solution-tsconfig.
+*/
{
- "compileOnSave": false,
- "compilerOptions": {
- "baseUrl": "./",
- "outDir": "./dist/out-tsc",
- "sourceMap": true,
- "declaration": false,
- "downlevelIteration": true,
- "experimentalDecorators": true,
- "module": "esnext",
- "moduleResolution": "node",
- "importHelpers": true,
- "target": "es2015",
- "typeRoots": [
- "node_modules/@types"
- ],
- "lib": [
- "es2018",
- "dom"
- ],
- },
- "angularCompilerOptions": {
- "fullTemplateTypeCheck": true,
- "strictInjectionParameters": true
- }
+ "files": [],
+ "references": [
+ {
+ "path": "./tsconfig.app.json"
+ },
+ {
+ "path": "./tsconfig.spec.json"
+ }
+]
}
diff --git a/playground/tsconfig.spec.json b/playground/tsconfig.spec.json
index 6400fde..729a6d6 100644
--- a/playground/tsconfig.spec.json
+++ b/playground/tsconfig.spec.json
@@ -1,10 +1,10 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
- "extends": "./tsconfig.json",
+ "extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"types": [
- "jasmine",
- "node"
+ "jasmine"
]
},
"files": [
diff --git a/playground/tslint.json b/playground/tslint.json
index d92ff5d..67bcdea 100644
--- a/playground/tslint.json
+++ b/playground/tslint.json
@@ -94,6 +94,10 @@
"named": "never"
}
},
+ "typedef": [
+ true,
+ "call-signature"
+ ],
"typedef-whitespace": {
"options": [
{
diff --git a/playground/yarn.lock b/playground/yarn.lock
index 11c36ec..946c6b3 100644
--- a/playground/yarn.lock
+++ b/playground/yarn.lock
@@ -9,161 +9,168 @@
dependencies:
tslib "^1.9.0"
-"@angular-devkit/architect@0.901.7":
- version "0.901.7"
- resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.901.7.tgz#6a09cb076ca92b3202053fca757a456d1f8e4395"
- integrity sha512-yW/PUEqle55QihOFbmeNXaVTodhfeXkteoFDUpz+YpX3xiQDXDtNbIJSzKOQTojtBKdSMKMvZkQLr+RAa7/1EA==
- dependencies:
- "@angular-devkit/core" "9.1.7"
- rxjs "6.5.4"
-
-"@angular-devkit/build-angular@~0.901.7":
- version "0.901.7"
- resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.901.7.tgz#10d55e3c73213971ba7d733f15d66494dfe9918a"
- integrity sha512-NiBwapx/XJqYGzSmENff78i6Yif9PjYDJ9BB+59t2eDofkCZUcPFrhQmRgliO7rt6RATvT81lDP89+LBXCTQPw==
- dependencies:
- "@angular-devkit/architect" "0.901.7"
- "@angular-devkit/build-optimizer" "0.901.7"
- "@angular-devkit/build-webpack" "0.901.7"
- "@angular-devkit/core" "9.1.7"
- "@babel/core" "7.9.0"
- "@babel/generator" "7.9.3"
- "@babel/preset-env" "7.9.0"
+"@angular-devkit/architect@0.1000.3":
+ version "0.1000.3"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1000.3.tgz#f23ea9d370edac8b0dd979d2574b12aa9923c3d4"
+ integrity sha512-8ZszTAkRvGGMXERFvyLT6SJPfJXjNNfHamA76uDPTBXy+EijJ1XVTUr1+SYEe73E4ovtxqxAnsApEFxS7/Ni5w==
+ dependencies:
+ "@angular-devkit/core" "10.0.3"
+ rxjs "6.5.5"
+
+"@angular-devkit/build-angular@~0.1000.3":
+ version "0.1000.3"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.1000.3.tgz#c5af97a1868adb2d0be9cb97e5d8b3c3c8428d4d"
+ integrity sha512-r3KJj39AwkYYzbixSM095l4fOGvhyByr0XvmAEu0l5dGGdL4tNXywvgXkNhEVRDo0jZYpTMegiTqzOik/9YCDw==
+ dependencies:
+ "@angular-devkit/architect" "0.1000.3"
+ "@angular-devkit/build-optimizer" "0.1000.3"
+ "@angular-devkit/build-webpack" "0.1000.3"
+ "@angular-devkit/core" "10.0.3"
+ "@babel/core" "7.9.6"
+ "@babel/generator" "7.9.6"
+ "@babel/plugin-transform-runtime" "7.9.6"
+ "@babel/preset-env" "7.9.6"
+ "@babel/runtime" "7.9.6"
"@babel/template" "7.8.6"
"@jsdevtools/coverage-istanbul-loader" "3.0.3"
- "@ngtools/webpack" "9.1.7"
- ajv "6.12.0"
- autoprefixer "9.7.4"
- babel-loader "8.0.6"
+ "@ngtools/webpack" "10.0.3"
+ ajv "6.12.2"
+ autoprefixer "9.8.0"
+ babel-loader "8.1.0"
browserslist "^4.9.1"
- cacache "15.0.0"
+ cacache "15.0.3"
caniuse-lite "^1.0.30001032"
circular-dependency-plugin "5.2.0"
- copy-webpack-plugin "5.1.1"
+ copy-webpack-plugin "6.0.3"
core-js "3.6.4"
- css-loader "3.5.1"
+ css-loader "3.5.3"
cssnano "4.1.10"
file-loader "6.0.0"
find-cache-dir "3.3.1"
glob "7.1.6"
- jest-worker "25.1.0"
+ jest-worker "26.0.0"
karma-source-map-support "1.4.0"
- less "3.11.1"
- less-loader "5.0.0"
- license-webpack-plugin "2.1.4"
+ less-loader "6.1.0"
+ license-webpack-plugin "2.2.0"
loader-utils "2.0.0"
mini-css-extract-plugin "0.9.0"
minimatch "3.0.4"
- open "7.0.3"
+ open "7.0.4"
parse5 "4.0.0"
- postcss "7.0.27"
+ pnp-webpack-plugin "1.6.4"
+ postcss "7.0.31"
postcss-import "12.0.1"
postcss-loader "3.0.0"
- raw-loader "4.0.0"
+ raw-loader "4.0.1"
regenerator-runtime "0.13.5"
+ resolve-url-loader "3.1.1"
rimraf "3.0.2"
- rollup "2.1.0"
- rxjs "6.5.4"
- sass "1.26.3"
+ rollup "2.10.9"
+ rxjs "6.5.5"
+ sass "1.26.5"
sass-loader "8.0.2"
- semver "7.1.3"
+ semver "7.3.2"
source-map "0.7.3"
- source-map-loader "0.2.4"
- speed-measure-webpack-plugin "1.3.1"
- style-loader "1.1.3"
+ source-map-loader "1.0.0"
+ source-map-support "0.5.19"
+ speed-measure-webpack-plugin "1.3.3"
+ style-loader "1.2.1"
stylus "0.54.7"
stylus-loader "3.0.2"
- terser "4.6.10"
- terser-webpack-plugin "2.3.5"
+ terser "4.7.0"
+ terser-webpack-plugin "3.0.1"
tree-kill "1.2.2"
- webpack "4.42.0"
+ webpack "4.43.0"
webpack-dev-middleware "3.7.2"
webpack-dev-server "3.11.0"
webpack-merge "4.2.2"
webpack-sources "1.4.3"
- webpack-subresource-integrity "1.4.0"
+ webpack-subresource-integrity "1.4.1"
worker-plugin "4.0.3"
-"@angular-devkit/build-optimizer@0.901.7":
- version "0.901.7"
- resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.901.7.tgz#e72fc3031207a78aee175a76d3317cdf226984e9"
- integrity sha512-Xuce3StdxhcgLYb0BAaFGr3Bzj5EM2OsAqIT15PkikWY1k5cK50vPxoC/BkX4QDL9eXSHtqAfMBfA6h5N422vw==
+"@angular-devkit/build-optimizer@0.1000.3":
+ version "0.1000.3"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.1000.3.tgz#05f7a853a5907ad3381a598896a2e053e47e925d"
+ integrity sha512-6mFoubg08UCWC0fE2mGoawEt2R1VlGStvUNAP2PRCjoj1ZySa1NnVYoKk65cyAAA3K2o7vSoDZesNq1uABjZbg==
dependencies:
loader-utils "2.0.0"
source-map "0.7.3"
- tslib "1.11.1"
- typescript "3.6.5"
+ tslib "2.0.0"
webpack-sources "1.4.3"
-"@angular-devkit/build-webpack@0.901.7":
- version "0.901.7"
- resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.901.7.tgz#6d93c38756540a02e67d2c3ccfac4220c62962de"
- integrity sha512-pTLW5Eqy9cHgv78LKiH0e30lxqKzUPjh1djvNtFsEemOHsfKQdAfjLjikoaQvqMoBKVaUU7r2vmyyS17cH+1yw==
+"@angular-devkit/build-webpack@0.1000.3":
+ version "0.1000.3"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1000.3.tgz#2709ccfc5201c2be9301551ef1d815c6aafedfbc"
+ integrity sha512-+vmn9d9THFubSWS28K1+nElUfOrhT576ptVZMd0a5S24momV8loW3J8iBOBfnGal/P86ZCAyP46kSirlAzH9Jg==
dependencies:
- "@angular-devkit/architect" "0.901.7"
- "@angular-devkit/core" "9.1.7"
- rxjs "6.5.4"
+ "@angular-devkit/architect" "0.1000.3"
+ "@angular-devkit/core" "10.0.3"
+ rxjs "6.5.5"
-"@angular-devkit/core@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-9.1.7.tgz#f193ccbae4c80b34188bc9cc401c16b3ced50339"
- integrity sha512-guvolu9Cl+qYMTtedLZD9wCqustJjdqzJ2psD2C1Sr1LrX9T0mprmDldR/YnhsitThveJEb6sM/0EvqWxoSvKw==
+"@angular-devkit/core@10.0.3":
+ version "10.0.3"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-10.0.3.tgz#7654766c9f2d3c510beaad8bca3e2a71643c6b8e"
+ integrity sha512-m27ogjq44j80x64RnEswSvy8UewUqeCVJBbEuY6fzrWoaiCf12sgPlrSCwjwfhtQrLgl1e/i9zYA7U6ulGRXyg==
dependencies:
- ajv "6.12.0"
+ ajv "6.12.2"
fast-json-stable-stringify "2.1.0"
magic-string "0.25.7"
- rxjs "6.5.4"
+ rxjs "6.5.5"
source-map "0.7.3"
-"@angular-devkit/schematics@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-9.1.7.tgz#45394a1c928db449b412dacf205c3ec78fb5ef0c"
- integrity sha512-oeHPJePBcPp/bd94jHQeFUnft93PGF5iJiKV9szxqS8WWC5OMZ5eK7icRY0PwvLyfenspAZxdZcNaqJqPMul5A==
- dependencies:
- "@angular-devkit/core" "9.1.7"
- ora "4.0.3"
- rxjs "6.5.4"
-
-"@angular/animations@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-9.1.9.tgz#de54334ea195189402487855c9a98f5618605da4"
- integrity sha512-qWVi0TxmU6HeXAgEsfpQvFFygh+a0kH2kGe6bWij4XvG6dWfV3xZjlaFwSIYGk+yK4yL0+9+PAXH+ENfxNw+Cw==
-
-"@angular/cli@~9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-9.1.7.tgz#0532b9c55d267cd6ee3edb79fec8b19c4e64e607"
- integrity sha512-NhsIa725S/U/n7nDxp6ForusdYHEXF4aSIvsFRdoK6vbQ889c5e1Rdj+T5EWXLmpQZxeprSKhLI2alNX0nVhhQ==
- dependencies:
- "@angular-devkit/architect" "0.901.7"
- "@angular-devkit/core" "9.1.7"
- "@angular-devkit/schematics" "9.1.7"
- "@schematics/angular" "9.1.7"
- "@schematics/update" "0.901.7"
+"@angular-devkit/schematics@10.0.3":
+ version "10.0.3"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-10.0.3.tgz#84e1a337692ba36cbae145b5e678592878df722f"
+ integrity sha512-TjA2ZSPCgUK9l4FiRTIQY7DceXMAvNzOMWffy9o3kv2HPtxG9kuBrQXk++Z99zpylK0cAsugV7t/5ANpUkrIiA==
+ dependencies:
+ "@angular-devkit/core" "10.0.3"
+ ora "4.0.4"
+ rxjs "6.5.5"
+
+"@angular/animations@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-10.0.4.tgz#179e4e63e3f2468ee1fe961c12eb143dd8350b23"
+ integrity sha512-UzQiWhDHY6wixS1Nh+Jwpzq1weiLGXJPt3Pa4pETpt3Hg7MIUu62dik6OFWuGYQPbn9DJYH+CH+sRxN1GCVjww==
+ dependencies:
+ tslib "^2.0.0"
+
+"@angular/cli@~10.0.3":
+ version "10.0.3"
+ resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-10.0.3.tgz#0b8c5e263deaa63d05b6efda790a2000b8a24a85"
+ integrity sha512-ONK8YG20KuakQetY0lPKDAOA3uBoLurdpSfFspFkcECyDimwJYSEydi3FUnCxEexeoKvrQWcol+q+u9YPoHCyg==
+ dependencies:
+ "@angular-devkit/architect" "0.1000.3"
+ "@angular-devkit/core" "10.0.3"
+ "@angular-devkit/schematics" "10.0.3"
+ "@schematics/angular" "10.0.3"
+ "@schematics/update" "0.1000.3"
"@yarnpkg/lockfile" "1.1.0"
ansi-colors "4.1.1"
debug "4.1.1"
ini "1.3.5"
inquirer "7.1.0"
npm-package-arg "8.0.1"
- npm-pick-manifest "6.0.0"
- open "7.0.3"
+ npm-pick-manifest "6.1.0"
+ open "7.0.4"
pacote "9.5.12"
read-package-tree "5.3.1"
rimraf "3.0.2"
- semver "7.1.3"
+ semver "7.3.2"
symbol-observable "1.2.0"
universal-analytics "0.4.20"
- uuid "7.0.2"
+ uuid "8.1.0"
-"@angular/common@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/common/-/common-9.1.9.tgz#16e77b2db675b80e32f1788a20c538150fd09294"
- integrity sha512-y/tJtkuOJhV2kcaXZyrLZH84i4uQ1r+vaaEHvXj+JZYfYfcMMd/TDqMiPcIkUb3RxqghtZ+q0ZNW5D1Nlru3Pw==
+"@angular/common@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/common/-/common-10.0.4.tgz#f585e0b1ef723bb96e54af831138184999490e3d"
+ integrity sha512-9DJMD8GgHz7i2fMz0f1IHZlDSIz83uE6fcH8SIq1iCSWT2dubRRpCX000VpIyhAgfkCgdNCYXQ7VGNsZceoagQ==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/compiler-cli@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-9.1.9.tgz#e3c234d888074002fa5f6b7eab4f63f4ddbdb7bd"
- integrity sha512-aLr2eaDlREN8XybgTbelvjtSZ8eAkxBPilnkddc700BgiC6ImyUSKaItOwa8bnjQwq4Wlz5eVG0ibsrX+5MXwg==
+"@angular/compiler-cli@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-10.0.4.tgz#b241f8d41ca01dfed67b5ed4928ab0f13e2879af"
+ integrity sha512-uZKk6Ab4Pw8qcaXhpORuEoCbPSHWx3TWcs9OXIKIhzOOoMMe9OSt2SzOkHCrySSaik1IhQODnHww7sGRw5mxwQ==
dependencies:
canonical-path "1.0.0"
chokidar "^3.0.0"
@@ -176,67 +183,90 @@
semver "^6.3.0"
source-map "^0.6.1"
sourcemap-codec "^1.4.8"
+ tslib "^2.0.0"
yargs "15.3.0"
-"@angular/compiler@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-9.1.9.tgz#cbf678ee28a0811a8ef3ee7be565d4911ff28ec7"
- integrity sha512-kjFgaTB2ckr9lgmkS1dOGRT7kmzpQueydxsxXSHWgICNVE6F/u1PHyeSOyJRpxW0GnrkLq3QM2EUFnQGGga5bg==
+"@angular/compiler@9.0.0":
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-9.0.0.tgz#87e0bef4c369b6cadae07e3a4295778fc93799d5"
+ integrity sha512-ctjwuntPfZZT2mNj2NDIVu51t9cvbhl/16epc5xEwyzyDt76pX9UgwvY+MbXrf/C/FWwdtmNtfP698BKI+9leQ==
+
+"@angular/compiler@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-10.0.4.tgz#786a5c1653a429233bee9f53614b5a82c62841ce"
+ integrity sha512-1rnEmSHJtrKC1QD+PyF36xwMnSqG4Slgi5+PYk3BxIa5vbWBibrYijtd/uCNhscfPSpfb06MVM2mRsrc+BmbQg==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/core@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/core/-/core-9.1.9.tgz#db4241f867d6e14b81ed6e7c50334813c6ebfc10"
- integrity sha512-q/DERgVU6vK2LtTcdVCGGBcoO424WsEfImh3Vcuy+P/ZVmthlDUC/+q+tSKt8MMf4hLpxFDQJE8vUSkktj7QEw==
+"@angular/core@9.0.0":
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/core/-/core-9.0.0.tgz#227dc53e1ac81824f998c6e76000b7efc522641e"
+ integrity sha512-6Pxgsrf0qF9iFFqmIcWmjJGkkCaCm6V5QNnxMy2KloO3SDq6QuMVRbN9RtC8Urmo25LP+eZ6ZgYqFYpdD8Hd9w==
-"@angular/forms@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-9.1.9.tgz#20c9a79d1dcb2cace45df9e2f304b658e02c1687"
- integrity sha512-r675yImnb/0pY7K5W3V2ITa7YETu1I2AS+bRfII6UQ6gthyeFFOHb5noa7YneC2yqQiM6E4DQmF5ig3daPuFNg==
+"@angular/core@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/core/-/core-10.0.4.tgz#700eda7711b50796298679d245e091cb54155071"
+ integrity sha512-lA8RDagJ/O0gUX95h00+nnUZs/1QmmhAVWVtHcuI12ueC836tJhLtPGnEx9ib9NXrgRyNwb8lO1xJPmmuQgdQQ==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/platform-browser-dynamic@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-9.1.9.tgz#12f8b05d3c9ef0844df88f3833e29ea1e49ec5e0"
- integrity sha512-b9MG5MWne+IuL3uLm8jwPhlJzqYaGBGk/qibOqb17T24j1iyrlO7T5bZ8zO6pUy5iT/TahVfHPnPJC1qTK5OmA==
+"@angular/forms@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-10.0.4.tgz#d37fe47d5c91b0ef249066e904338905b2687847"
+ integrity sha512-SJSYZCfHua9fi/dks1q+ad9OGBblRUn3Q1V4B7r99fJYr39qRiIHcegikhY4h8H3Wk1bJRGJG7iXmxJhjWXK3Q==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/platform-browser@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-9.1.9.tgz#c2fcc50aebfdc268521b407e32dc0d967cb40411"
- integrity sha512-V861X3MxJp1AlMTnkUPldpBLIJbApXF3ka0A5Dq2nVJCyOFeteGkaRWSBgqe2jxmq+LVpJbzcNvtDFXw6mQ0jA==
+"@angular/platform-browser-dynamic@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-10.0.4.tgz#77844511154eeb5eec5e68566767c215654f34e8"
+ integrity sha512-RoUMqYhUwF6+Mvk/aH0IZQ1D0SDEi9k5EZlx9CJ3RvNuKygk7to+S4vMWVpGxFQlwdS3bytRLKi+Kki6f4nLkg==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/router@~9.1.9":
- version "9.1.9"
- resolved "https://registry.yarnpkg.com/@angular/router/-/router-9.1.9.tgz#5d79d72cb62ea1c04ea70238846653ecf9c4a73c"
- integrity sha512-4u+CWMPB4hCkAsFCEzC94YEWT0wVozqGkc/Dortt2hFaqvZpIegg6iJVZlDxuyDjzFYBPnnbTDdgiTTA8ckfuA==
+"@angular/platform-browser@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-10.0.4.tgz#58131215e414be7ee9d4024e47f61b4a02166b28"
+ integrity sha512-iaZ8pFS5XUgPCO6/C47TzSFPzlzgleayq099cVOOx9z0t/SwUCSKt4AdAVhyQ8RTnx6l1JmmwBgRaXpScZlqzg==
+ dependencies:
+ tslib "^2.0.0"
+
+"@angular/router@~10.0.4":
+ version "10.0.4"
+ resolved "https://registry.yarnpkg.com/@angular/router/-/router-10.0.4.tgz#d68c2711b53f3bdc1508d9b7e90b181b4e09f42c"
+ integrity sha512-iDLWdmltU5pZ6M/fBKC5Kg2o9Aqb1YJ+oHXFu186BQAl2RNeNCmMQ0VaCxjpMgD/MoSxpuRuGQ6rRrCSFCxtcQ==
+ dependencies:
+ tslib "^2.0.0"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.1", "@babel/code-frame@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.1.tgz#d5481c5095daa1c57e16e54c6f9198443afb49ff"
- integrity sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.8.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
+ integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
dependencies:
- "@babel/highlight" "^7.10.1"
+ "@babel/highlight" "^7.10.4"
-"@babel/compat-data@^7.10.1", "@babel/compat-data@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.1.tgz#b1085ffe72cd17bf2c0ee790fc09f9626011b2db"
- integrity sha512-CHvCj7So7iCkGKPRFUfryXIkU2gSBw7VSZFYLsqVhrS47269VK2Hfi9S/YcublPMW8k1u2bQBlbDruoQEm4fgw==
+"@babel/compat-data@^7.10.4", "@babel/compat-data@^7.9.6":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.5.tgz#d38425e67ea96b1480a3f50404d1bf85676301a6"
+ integrity sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw==
dependencies:
browserslist "^4.12.0"
invariant "^2.2.4"
semver "^5.5.0"
-"@babel/core@7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e"
- integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==
+"@babel/core@7.9.6":
+ version "7.9.6"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.6.tgz#d9aa1f580abf3b2286ef40b6904d390904c63376"
+ integrity sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg==
dependencies:
"@babel/code-frame" "^7.8.3"
- "@babel/generator" "^7.9.0"
+ "@babel/generator" "^7.9.6"
"@babel/helper-module-transforms" "^7.9.0"
- "@babel/helpers" "^7.9.0"
- "@babel/parser" "^7.9.0"
+ "@babel/helpers" "^7.9.6"
+ "@babel/parser" "^7.9.6"
"@babel/template" "^7.8.6"
- "@babel/traverse" "^7.9.0"
- "@babel/types" "^7.9.0"
+ "@babel/traverse" "^7.9.6"
+ "@babel/types" "^7.9.6"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.1"
@@ -247,315 +277,314 @@
source-map "^0.5.0"
"@babel/core@^7.7.5":
- version "7.10.2"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.2.tgz#bd6786046668a925ac2bd2fd95b579b92a23b36a"
- integrity sha512-KQmV9yguEjQsXqyOUGKjS4+3K8/DlOCE2pZcq4augdQmtTy5iv5EHtmMSJ7V4c1BIPjuwtZYqYLCq9Ga+hGBRQ==
- dependencies:
- "@babel/code-frame" "^7.10.1"
- "@babel/generator" "^7.10.2"
- "@babel/helper-module-transforms" "^7.10.1"
- "@babel/helpers" "^7.10.1"
- "@babel/parser" "^7.10.2"
- "@babel/template" "^7.10.1"
- "@babel/traverse" "^7.10.1"
- "@babel/types" "^7.10.2"
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.5.tgz#1f15e2cca8ad9a1d78a38ddba612f5e7cdbbd330"
+ integrity sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/generator" "^7.10.5"
+ "@babel/helper-module-transforms" "^7.10.5"
+ "@babel/helpers" "^7.10.4"
+ "@babel/parser" "^7.10.5"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.10.5"
+ "@babel/types" "^7.10.5"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.1"
json5 "^2.1.2"
- lodash "^4.17.13"
+ lodash "^4.17.19"
resolve "^1.3.2"
semver "^5.4.1"
source-map "^0.5.0"
-"@babel/generator@7.9.3":
- version "7.9.3"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.3.tgz#7c8b2956c6f68b3ab732bd16305916fbba521d94"
- integrity sha512-RpxM252EYsz9qLUIq6F7YJyK1sv0wWDBFuztfDGWaQKzHjqDHysxSiRUpA/X9jmfqo+WzkAVKFaUily5h+gDCQ==
+"@babel/generator@7.9.6":
+ version "7.9.6"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.6.tgz#5408c82ac5de98cda0d77d8124e99fa1f2170a43"
+ integrity sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ==
dependencies:
- "@babel/types" "^7.9.0"
+ "@babel/types" "^7.9.6"
jsesc "^2.5.1"
lodash "^4.17.13"
source-map "^0.5.0"
-"@babel/generator@^7.10.1", "@babel/generator@^7.10.2", "@babel/generator@^7.4.0", "@babel/generator@^7.9.0":
- version "7.10.2"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.2.tgz#0fa5b5b2389db8bfdfcc3492b551ee20f5dd69a9"
- integrity sha512-AxfBNHNu99DTMvlUPlt1h2+Hn7knPpH5ayJ8OqDWSeLld+Fi2AYBTC/IejWDM9Edcii4UzZRCsbUt0WlSDsDsA==
+"@babel/generator@^7.10.5", "@babel/generator@^7.9.6":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.5.tgz#1b903554bc8c583ee8d25f1e8969732e6b829a69"
+ integrity sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig==
dependencies:
- "@babel/types" "^7.10.2"
+ "@babel/types" "^7.10.5"
jsesc "^2.5.1"
- lodash "^4.17.13"
source-map "^0.5.0"
-"@babel/helper-annotate-as-pure@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.1.tgz#f6d08acc6f70bbd59b436262553fb2e259a1a268"
- integrity sha512-ewp3rvJEwLaHgyWGe4wQssC2vjks3E80WiUe2BpMb0KhreTjMROCbxXcEovTrbeGVdQct5VjQfrv9EgC+xMzCw==
+"@babel/helper-annotate-as-pure@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
+ integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==
dependencies:
- "@babel/types" "^7.10.1"
+ "@babel/types" "^7.10.4"
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.1.tgz#0ec7d9be8174934532661f87783eb18d72290059"
- integrity sha512-cQpVq48EkYxUU0xozpGCLla3wlkdRRqLWu1ksFMXA9CM5KQmyyRpSEsYXbao7JUkOw/tAaYKCaYyZq6HOFYtyw==
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
+ integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
dependencies:
- "@babel/helper-explode-assignable-expression" "^7.10.1"
- "@babel/types" "^7.10.1"
+ "@babel/helper-explode-assignable-expression" "^7.10.4"
+ "@babel/types" "^7.10.4"
-"@babel/helper-compilation-targets@^7.8.7":
- version "7.10.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.2.tgz#a17d9723b6e2c750299d2a14d4637c76936d8285"
- integrity sha512-hYgOhF4To2UTB4LTaZepN/4Pl9LD4gfbJx8A34mqoluT8TLbof1mhUlYuNWTEebONa8+UlCC4X0TEXu7AOUyGA==
+"@babel/helper-compilation-targets@^7.9.6":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2"
+ integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==
dependencies:
- "@babel/compat-data" "^7.10.1"
+ "@babel/compat-data" "^7.10.4"
browserslist "^4.12.0"
invariant "^2.2.4"
levenary "^1.1.1"
semver "^5.5.0"
-"@babel/helper-create-regexp-features-plugin@^7.10.1", "@babel/helper-create-regexp-features-plugin@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.1.tgz#1b8feeab1594cbcfbf3ab5a3bbcabac0468efdbd"
- integrity sha512-Rx4rHS0pVuJn5pJOqaqcZR4XSgeF9G/pO/79t+4r7380tXFJdzImFnxMU19f83wjSrmKHq6myrM10pFHTGzkUA==
+"@babel/helper-create-regexp-features-plugin@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8"
+ integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.1"
- "@babel/helper-regex" "^7.10.1"
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-regex" "^7.10.4"
regexpu-core "^4.7.0"
-"@babel/helper-define-map@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.1.tgz#5e69ee8308648470dd7900d159c044c10285221d"
- integrity sha512-+5odWpX+OnvkD0Zmq7panrMuAGQBu6aPUgvMzuMGo4R+jUOvealEj2hiqI6WhxgKrTpFoFj0+VdsuA8KDxHBDg==
- dependencies:
- "@babel/helper-function-name" "^7.10.1"
- "@babel/types" "^7.10.1"
- lodash "^4.17.13"
-
-"@babel/helper-explode-assignable-expression@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.1.tgz#e9d76305ee1162ca467357ae25df94f179af2b7e"
- integrity sha512-vcUJ3cDjLjvkKzt6rHrl767FeE7pMEYfPanq5L16GRtrXIoznc0HykNW2aEYkcnP76P0isoqJ34dDMFZwzEpJg==
- dependencies:
- "@babel/traverse" "^7.10.1"
- "@babel/types" "^7.10.1"
-
-"@babel/helper-function-name@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.1.tgz#92bd63829bfc9215aca9d9defa85f56b539454f4"
- integrity sha512-fcpumwhs3YyZ/ttd5Rz0xn0TpIwVkN7X0V38B9TWNfVF42KEkhkAAuPCQ3oXmtTRtiPJrmZ0TrfS0GKF0eMaRQ==
- dependencies:
- "@babel/helper-get-function-arity" "^7.10.1"
- "@babel/template" "^7.10.1"
- "@babel/types" "^7.10.1"
-
-"@babel/helper-get-function-arity@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.1.tgz#7303390a81ba7cb59613895a192b93850e373f7d"
- integrity sha512-F5qdXkYGOQUb0hpRaPoetF9AnsXknKjWMZ+wmsIRsp5ge5sFh4c3h1eH2pRTTuy9KKAA2+TTYomGXAtEL2fQEw==
- dependencies:
- "@babel/types" "^7.10.1"
-
-"@babel/helper-hoist-variables@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.1.tgz#7e77c82e5dcae1ebf123174c385aaadbf787d077"
- integrity sha512-vLm5srkU8rI6X3+aQ1rQJyfjvCBLXP8cAGeuw04zeAM2ItKb1e7pmVmLyHb4sDaAYnLL13RHOZPLEtcGZ5xvjg==
- dependencies:
- "@babel/types" "^7.10.1"
-
-"@babel/helper-member-expression-to-functions@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.1.tgz#432967fd7e12a4afef66c4687d4ca22bc0456f15"
- integrity sha512-u7XLXeM2n50gb6PWJ9hoO5oO7JFPaZtrh35t8RqKLT1jFKj9IWeD1zrcrYp1q1qiZTdEarfDWfTIP8nGsu0h5g==
- dependencies:
- "@babel/types" "^7.10.1"
-
-"@babel/helper-module-imports@^7.10.1", "@babel/helper-module-imports@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.1.tgz#dd331bd45bccc566ce77004e9d05fe17add13876"
- integrity sha512-SFxgwYmZ3HZPyZwJRiVNLRHWuW2OgE5k2nrVs6D9Iv4PPnXVffuEHy83Sfx/l4SqF+5kyJXjAyUmrG7tNm+qVg==
- dependencies:
- "@babel/types" "^7.10.1"
-
-"@babel/helper-module-transforms@^7.10.1", "@babel/helper-module-transforms@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.1.tgz#24e2f08ee6832c60b157bb0936c86bef7210c622"
- integrity sha512-RLHRCAzyJe7Q7sF4oy2cB+kRnU4wDZY/H2xJFGof+M+SJEGhZsb+GFj5j1AD8NiSaVBJ+Pf0/WObiXu/zxWpFg==
- dependencies:
- "@babel/helper-module-imports" "^7.10.1"
- "@babel/helper-replace-supers" "^7.10.1"
- "@babel/helper-simple-access" "^7.10.1"
- "@babel/helper-split-export-declaration" "^7.10.1"
- "@babel/template" "^7.10.1"
- "@babel/types" "^7.10.1"
- lodash "^4.17.13"
-
-"@babel/helper-optimise-call-expression@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.1.tgz#b4a1f2561870ce1247ceddb02a3860fa96d72543"
- integrity sha512-a0DjNS1prnBsoKx83dP2falChcs7p3i8VMzdrSbfLhuQra/2ENC4sbri34dz/rWmDADsmF1q5GbfaXydh0Jbjg==
- dependencies:
- "@babel/types" "^7.10.1"
-
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.1", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz#ec5a5cf0eec925b66c60580328b122c01230a127"
- integrity sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==
-
-"@babel/helper-regex@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.1.tgz#021cf1a7ba99822f993222a001cc3fec83255b96"
- integrity sha512-7isHr19RsIJWWLLFn21ubFt223PjQyg1HY7CZEMRr820HttHPpVvrsIN3bUOo44DEfFV4kBXO7Abbn9KTUZV7g==
+"@babel/helper-define-map@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
+ integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
+ dependencies:
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/types" "^7.10.5"
+ lodash "^4.17.19"
+
+"@babel/helper-explode-assignable-expression@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c"
+ integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A==
+ dependencies:
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-function-name@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
+ integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
dependencies:
- lodash "^4.17.13"
-
-"@babel/helper-remap-async-to-generator@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.1.tgz#bad6aaa4ff39ce8d4b82ccaae0bfe0f7dbb5f432"
- integrity sha512-RfX1P8HqsfgmJ6CwaXGKMAqbYdlleqglvVtht0HGPMSsy2V6MqLlOJVF/0Qyb/m2ZCi2z3q3+s6Pv7R/dQuZ6A==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.1"
- "@babel/helper-wrap-function" "^7.10.1"
- "@babel/template" "^7.10.1"
- "@babel/traverse" "^7.10.1"
- "@babel/types" "^7.10.1"
-
-"@babel/helper-replace-supers@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.1.tgz#ec6859d20c5d8087f6a2dc4e014db7228975f13d"
- integrity sha512-SOwJzEfpuQwInzzQJGjGaiG578UYmyi2Xw668klPWV5n07B73S0a9btjLk/52Mlcxa+5AdIYqws1KyXRfMoB7A==
- dependencies:
- "@babel/helper-member-expression-to-functions" "^7.10.1"
- "@babel/helper-optimise-call-expression" "^7.10.1"
- "@babel/traverse" "^7.10.1"
- "@babel/types" "^7.10.1"
-
-"@babel/helper-simple-access@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.1.tgz#08fb7e22ace9eb8326f7e3920a1c2052f13d851e"
- integrity sha512-VSWpWzRzn9VtgMJBIWTZ+GP107kZdQ4YplJlCmIrjoLVSi/0upixezHCDG8kpPVTBJpKfxTH01wDhh+jS2zKbw==
- dependencies:
- "@babel/template" "^7.10.1"
- "@babel/types" "^7.10.1"
-
-"@babel/helper-split-export-declaration@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.1.tgz#c6f4be1cbc15e3a868e4c64a17d5d31d754da35f"
- integrity sha512-UQ1LVBPrYdbchNhLwj6fetj46BcFwfS4NllJo/1aJsT+1dLTEnXJL0qHqtY7gPzF8S2fXBJamf1biAXV3X077g==
- dependencies:
- "@babel/types" "^7.10.1"
-
-"@babel/helper-validator-identifier@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.1.tgz#5770b0c1a826c4f53f5ede5e153163e0318e94b5"
- integrity sha512-5vW/JXLALhczRCWP0PnFDMCJAchlBvM7f4uk/jXritBnIa6E1KmqmtrS3yn1LAnxFBypQ3eneLuXjsnfQsgILw==
-
-"@babel/helper-wrap-function@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.1.tgz#956d1310d6696257a7afd47e4c42dfda5dfcedc9"
- integrity sha512-C0MzRGteVDn+H32/ZgbAv5r56f2o1fZSA/rj/TYo8JEJNHg+9BdSmKBUND0shxWRztWhjlT2cvHYuynpPsVJwQ==
- dependencies:
- "@babel/helper-function-name" "^7.10.1"
- "@babel/template" "^7.10.1"
- "@babel/traverse" "^7.10.1"
- "@babel/types" "^7.10.1"
-
-"@babel/helpers@^7.10.1", "@babel/helpers@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.1.tgz#a6827b7cb975c9d9cef5fd61d919f60d8844a973"
- integrity sha512-muQNHF+IdU6wGgkaJyhhEmI54MOZBKsFfsXFhboz1ybwJ1Kl7IHlbm2a++4jwrmY5UYsgitt5lfqo1wMFcHmyw==
- dependencies:
- "@babel/template" "^7.10.1"
- "@babel/traverse" "^7.10.1"
- "@babel/types" "^7.10.1"
-
-"@babel/highlight@^7.10.1":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.1.tgz#841d098ba613ba1a427a2b383d79e35552c38ae0"
- integrity sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg==
- dependencies:
- "@babel/helper-validator-identifier" "^7.10.1"
+ "@babel/helper-get-function-arity" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-get-function-arity@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
+ integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-hoist-variables@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
+ integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-member-expression-to-functions@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz#172f56e7a63e78112f3a04055f24365af702e7ee"
+ integrity sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA==
+ dependencies:
+ "@babel/types" "^7.10.5"
+
+"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.8.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620"
+ integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.9.0":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz#120c271c0b3353673fcdfd8c053db3c544a260d6"
+ integrity sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA==
+ dependencies:
+ "@babel/helper-module-imports" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.10.4"
+ "@babel/helper-simple-access" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/types" "^7.10.5"
+ lodash "^4.17.19"
+
+"@babel/helper-optimise-call-expression@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
+ integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
+ integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
+
+"@babel/helper-regex@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0"
+ integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==
+ dependencies:
+ lodash "^4.17.19"
+
+"@babel/helper-remap-async-to-generator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5"
+ integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-wrap-function" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-replace-supers@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf"
+ integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==
+ dependencies:
+ "@babel/helper-member-expression-to-functions" "^7.10.4"
+ "@babel/helper-optimise-call-expression" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-simple-access@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461"
+ integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==
+ dependencies:
+ "@babel/template" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-split-export-declaration@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1"
+ integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-validator-identifier@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
+ integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
+
+"@babel/helper-wrap-function@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87"
+ integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==
+ dependencies:
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helpers@^7.10.4", "@babel/helpers@^7.9.6":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044"
+ integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==
+ dependencies:
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/highlight@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
+ integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.10.4"
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.10.1", "@babel/parser@^7.10.2", "@babel/parser@^7.4.3", "@babel/parser@^7.8.6", "@babel/parser@^7.9.0":
- version "7.10.2"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.2.tgz#871807f10442b92ff97e4783b9b54f6a0ca812d0"
- integrity sha512-PApSXlNMJyB4JiGVhCOlzKIif+TKFTvu0aQAhnTvfP/z3vVSN6ZypH5bfUNwFXXjRQtUEBNFd2PtmCmG2Py3qQ==
+"@babel/parser@^7.10.4", "@babel/parser@^7.10.5", "@babel/parser@^7.8.6", "@babel/parser@^7.9.6":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b"
+ integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==
"@babel/plugin-proposal-async-generator-functions@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.1.tgz#6911af5ba2e615c4ff3c497fe2f47b35bf6d7e55"
- integrity sha512-vzZE12ZTdB336POZjmpblWfNNRpMSua45EYnRigE2XsZxcXcIyly2ixnTJasJE4Zq3U7t2d8rRF7XRUuzHxbOw==
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558"
+ integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
- "@babel/helper-remap-async-to-generator" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-remap-async-to-generator" "^7.10.4"
"@babel/plugin-syntax-async-generators" "^7.8.0"
"@babel/plugin-proposal-dynamic-import@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.1.tgz#e36979dc1dc3b73f6d6816fc4951da2363488ef0"
- integrity sha512-Cpc2yUVHTEGPlmiQzXj026kqwjEQAD9I4ZC16uzdbgWgitg/UHKHLffKNCQZ5+y8jpIZPJcKcwsr2HwPh+w3XA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e"
+ integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
"@babel/plugin-proposal-json-strings@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.1.tgz#b1e691ee24c651b5a5e32213222b2379734aff09"
- integrity sha512-m8r5BmV+ZLpWPtMY2mOKN7wre6HIO4gfIiV+eOmsnZABNenrt/kzYBwrh+KOfgumSWpnlGs5F70J8afYMSJMBg==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db"
+ integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings" "^7.8.0"
"@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.1.tgz#02dca21673842ff2fe763ac253777f235e9bbf78"
- integrity sha512-56cI/uHYgL2C8HVuHOuvVowihhX0sxb3nnfVRzUeVHTWmRHTZrKuAh/OBIMggGU/S1g/1D2CRCXqP+3u7vX7iA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a"
+ integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
"@babel/plugin-proposal-numeric-separator@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.1.tgz#a9a38bc34f78bdfd981e791c27c6fdcec478c123"
- integrity sha512-jjfym4N9HtCiNfyyLAVD8WqPYeHUrw4ihxuAynWj6zzp2gf9Ey2f7ImhFm6ikB3CLf5Z/zmcJDri6B4+9j9RsA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06"
+ integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
- "@babel/plugin-syntax-numeric-separator" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-"@babel/plugin-proposal-object-rest-spread@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.1.tgz#cba44908ac9f142650b4a65b8aa06bf3478d5fb6"
- integrity sha512-Z+Qri55KiQkHh7Fc4BW6o+QBuTagbOp9txE+4U1i79u9oWlf2npkiDx+Rf3iK3lbcHBuNy9UOkwuR5wOMH3LIQ==
+"@babel/plugin-proposal-object-rest-spread@^7.9.6":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz#50129ac216b9a6a55b3853fdd923e74bf553a4c0"
+ integrity sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
- "@babel/plugin-transform-parameters" "^7.10.1"
+ "@babel/plugin-transform-parameters" "^7.10.4"
"@babel/plugin-proposal-optional-catch-binding@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.1.tgz#c9f86d99305f9fa531b568ff5ab8c964b8b223d2"
- integrity sha512-VqExgeE62YBqI3ogkGoOJp1R6u12DFZjqwJhqtKc2o5m1YTUuUWnos7bZQFBhwkxIFpWYJ7uB75U7VAPPiKETA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd"
+ integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
"@babel/plugin-proposal-optional-chaining@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.1.tgz#15f5d6d22708629451a91be28f8facc55b0e818c"
- integrity sha512-dqQj475q8+/avvok72CF3AOSV/SGEcH29zT5hhohqqvvZ2+boQoOr7iGldBG5YXTO2qgCgc2B3WvVLUdbeMlGA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.4.tgz#750f1255e930a1f82d8cdde45031f81a0d0adff7"
+ integrity sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.1.tgz#dc04feb25e2dd70c12b05d680190e138fa2c0c6f"
- integrity sha512-JjfngYRvwmPwmnbRZyNiPFI8zxCZb8euzbCG/LxyKdeTb59tVciKo9GK9bi6JYKInk1H11Dq9j/zRqIH4KigfQ==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d"
+ integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-async-generators@^7.8.0":
version "7.8.4"
@@ -585,12 +614,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-numeric-separator@^7.10.1", "@babel/plugin-syntax-numeric-separator@^7.8.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.1.tgz#25761ee7410bc8cf97327ba741ee94e4a61b7d99"
- integrity sha512-uTd0OsHrpe3tH5gRPTxG8Voh99/WCU78vIm5NMRYPAqC8lR4vajt6KkCAknCHrx24vkPdd/05yfdGSB4EIY2mg==
+"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.0":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+ integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.0":
version "7.8.3"
@@ -614,263 +643,272 @@
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-top-level-await@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.1.tgz#8b8733f8c57397b3eaa47ddba8841586dcaef362"
- integrity sha512-hgA5RYkmZm8FTFT3yu2N9Bx7yVVOKYT6yEdXXo6j2JTm0wNxgqaGeQVaSHRjhfnQbX91DtjFB6McRFSlcJH3xQ==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d"
+ integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-arrow-functions@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.1.tgz#cb5ee3a36f0863c06ead0b409b4cc43a889b295b"
- integrity sha512-6AZHgFJKP3DJX0eCNJj01RpytUa3SOGawIxweHkNX2L6PYikOZmoh5B0d7hIHaIgveMjX990IAa/xK7jRTN8OA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd"
+ integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-async-to-generator@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.1.tgz#e5153eb1a3e028f79194ed8a7a4bf55f862b2062"
- integrity sha512-XCgYjJ8TY2slj6SReBUyamJn3k2JLUIiiR5b6t1mNCMSvv7yx+jJpaewakikp0uWFQSF7ChPPoe3dHmXLpISkg==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37"
+ integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==
dependencies:
- "@babel/helper-module-imports" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
- "@babel/helper-remap-async-to-generator" "^7.10.1"
+ "@babel/helper-module-imports" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-remap-async-to-generator" "^7.10.4"
"@babel/plugin-transform-block-scoped-functions@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.1.tgz#146856e756d54b20fff14b819456b3e01820b85d"
- integrity sha512-B7K15Xp8lv0sOJrdVAoukKlxP9N59HS48V1J3U/JGj+Ad+MHq+am6xJVs85AgXrQn4LV8vaYFOB+pr/yIuzW8Q==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8"
+ integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-block-scoping@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.1.tgz#47092d89ca345811451cd0dc5d91605982705d5e"
- integrity sha512-8bpWG6TtF5akdhIm/uWTyjHqENpy13Fx8chg7pFH875aNLwX8JxIxqm08gmAT+Whe6AOmaTeLPe7dpLbXt+xUw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
- lodash "^4.17.13"
-
-"@babel/plugin-transform-classes@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.1.tgz#6e11dd6c4dfae70f540480a4702477ed766d733f"
- integrity sha512-P9V0YIh+ln/B3RStPoXpEQ/CoAxQIhRSUn7aXqQ+FZJ2u8+oCtjIXR3+X0vsSD8zv+mb56K7wZW1XiDTDGiDRQ==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.1"
- "@babel/helper-define-map" "^7.10.1"
- "@babel/helper-function-name" "^7.10.1"
- "@babel/helper-optimise-call-expression" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
- "@babel/helper-replace-supers" "^7.10.1"
- "@babel/helper-split-export-declaration" "^7.10.1"
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz#b81b8aafefbfe68f0f65f7ef397b9ece68a6037d"
+ integrity sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-classes@^7.9.5":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7"
+ integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-define-map" "^7.10.4"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-optimise-call-expression" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.10.4"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.1.tgz#59aa399064429d64dce5cf76ef9b90b7245ebd07"
- integrity sha512-mqSrGjp3IefMsXIenBfGcPXxJxweQe2hEIwMQvjtiDQ9b1IBvDUjkAtV/HMXX47/vXf14qDNedXsIiNd1FmkaQ==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb"
+ integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-destructuring@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.1.tgz#abd58e51337815ca3a22a336b85f62b998e71907"
- integrity sha512-V/nUc4yGWG71OhaTH705pU8ZSdM6c1KmmLP8ys59oOYbT7RpMYAR3MsVOt6OHL0WzG7BlTU076va9fjJyYzJMA==
+"@babel/plugin-transform-destructuring@^7.9.5":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5"
+ integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.1.tgz#920b9fec2d78bb57ebb64a644d5c2ba67cc104ee"
- integrity sha512-19VIMsD1dp02RvduFUmfzj8uknaO3uiHHF0s3E1OHnVsNj8oge8EQ5RzHRbJjGSetRnkEuBYO7TG1M5kKjGLOA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee"
+ integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-duplicate-keys@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.1.tgz#c900a793beb096bc9d4d0a9d0cde19518ffc83b9"
- integrity sha512-wIEpkX4QvX8Mo9W6XF3EdGttrIPZWozHfEaDTU0WJD/TDnXMvdDh30mzUl/9qWhnf7naicYartcEfUghTCSNpA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47"
+ integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-exponentiation-operator@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.1.tgz#279c3116756a60dd6e6f5e488ba7957db9c59eb3"
- integrity sha512-lr/przdAbpEA2BUzRvjXdEDLrArGRRPwbaF9rvayuHRvdQ7lUTTkZnhZrJ4LE2jvgMRFF4f0YuPQ20vhiPYxtA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e"
+ integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==
dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-for-of@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.1.tgz#ff01119784eb0ee32258e8646157ba2501fcfda5"
- integrity sha512-US8KCuxfQcn0LwSCMWMma8M2R5mAjJGsmoCBVwlMygvmDUMkTCykc84IqN1M7t+agSfOmLYTInLCHJM+RUoz+w==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9"
+ integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-function-name@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.1.tgz#4ed46fd6e1d8fde2a2ec7b03c66d853d2c92427d"
- integrity sha512-//bsKsKFBJfGd65qSNNh1exBy5Y9gD9ZN+DvrJ8f7HXr4avE5POW6zB7Rj6VnqHV33+0vXWUwJT0wSHubiAQkw==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7"
+ integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==
dependencies:
- "@babel/helper-function-name" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-literals@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.1.tgz#5794f8da82846b22e4e6631ea1658bce708eb46a"
- integrity sha512-qi0+5qgevz1NHLZroObRm5A+8JJtibb7vdcPQF1KQE12+Y/xxl8coJ+TpPW9iRq+Mhw/NKLjm+5SHtAHCC7lAw==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c"
+ integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-member-expression-literals@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.1.tgz#90347cba31bca6f394b3f7bd95d2bbfd9fce2f39"
- integrity sha512-UmaWhDokOFT2GcgU6MkHC11i0NQcL63iqeufXWfRy6pUOGYeCGEKhvfFO6Vz70UfYJYHwveg62GS83Rvpxn+NA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7"
+ integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-modules-amd@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.1.tgz#65950e8e05797ebd2fe532b96e19fc5482a1d52a"
- integrity sha512-31+hnWSFRI4/ACFr1qkboBbrTxoBIzj7qA69qlq8HY8p7+YCzkCT6/TvQ1a4B0z27VeWtAeJd6pr5G04dc1iHw==
+"@babel/plugin-transform-modules-amd@^7.9.6":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1"
+ integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==
dependencies:
- "@babel/helper-module-transforms" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-module-transforms" "^7.10.5"
+ "@babel/helper-plugin-utils" "^7.10.4"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-commonjs@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.1.tgz#d5ff4b4413ed97ffded99961056e1fb980fb9301"
- integrity sha512-AQG4fc3KOah0vdITwt7Gi6hD9BtQP/8bhem7OjbaMoRNCH5Djx42O2vYMfau7QnAzQCa+RJnhJBmFFMGpQEzrg==
+"@babel/plugin-transform-modules-commonjs@^7.9.6":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0"
+ integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==
dependencies:
- "@babel/helper-module-transforms" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
- "@babel/helper-simple-access" "^7.10.1"
+ "@babel/helper-module-transforms" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-simple-access" "^7.10.4"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-systemjs@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.1.tgz#9962e4b0ac6aaf2e20431ada3d8ec72082cbffb6"
- integrity sha512-ewNKcj1TQZDL3YnO85qh9zo1YF1CHgmSTlRQgHqe63oTrMI85cthKtZjAiZSsSNjPQ5NCaYo5QkbYqEw1ZBgZA==
+"@babel/plugin-transform-modules-systemjs@^7.9.6":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85"
+ integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==
dependencies:
- "@babel/helper-hoist-variables" "^7.10.1"
- "@babel/helper-module-transforms" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-hoist-variables" "^7.10.4"
+ "@babel/helper-module-transforms" "^7.10.5"
+ "@babel/helper-plugin-utils" "^7.10.4"
babel-plugin-dynamic-import-node "^2.3.3"
"@babel/plugin-transform-modules-umd@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.1.tgz#ea080911ffc6eb21840a5197a39ede4ee67b1595"
- integrity sha512-EIuiRNMd6GB6ulcYlETnYYfgv4AxqrswghmBRQbWLHZxN4s7mupxzglnHqk9ZiUpDI4eRWewedJJNj67PWOXKA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e"
+ integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==
dependencies:
- "@babel/helper-module-transforms" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-module-transforms" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c"
- integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6"
+ integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.8.3"
+ "@babel/helper-create-regexp-features-plugin" "^7.10.4"
"@babel/plugin-transform-new-target@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.1.tgz#6ee41a5e648da7632e22b6fb54012e87f612f324"
- integrity sha512-MBlzPc1nJvbmO9rPr1fQwXOM2iGut+JC92ku6PbiJMMK7SnQc1rytgpopveE3Evn47gzvGYeCdgfCDbZo0ecUw==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888"
+ integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-object-super@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.1.tgz#2e3016b0adbf262983bf0d5121d676a5ed9c4fde"
- integrity sha512-WnnStUDN5GL+wGQrJylrnnVlFhFmeArINIR9gjhSeYyvroGhBrSAXYg/RHsnfzmsa+onJrTJrEClPzgNmmQ4Gw==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894"
+ integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
- "@babel/helper-replace-supers" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.10.4"
-"@babel/plugin-transform-parameters@^7.10.1", "@babel/plugin-transform-parameters@^7.8.7":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.1.tgz#b25938a3c5fae0354144a720b07b32766f683ddd"
- integrity sha512-tJ1T0n6g4dXMsL45YsSzzSDZCxiHXAQp/qHrucOq5gEHncTA3xDxnd5+sZcoQp+N1ZbieAaB8r/VUCG0gqseOg==
+"@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.9.5":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a"
+ integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==
dependencies:
- "@babel/helper-get-function-arity" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-get-function-arity" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-property-literals@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.1.tgz#cffc7315219230ed81dc53e4625bf86815b6050d"
- integrity sha512-Kr6+mgag8auNrgEpbfIWzdXYOvqDHZOF0+Bx2xh4H2EDNwcbRb9lY6nkZg8oSjsX+DH9Ebxm9hOqtKW+gRDeNA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0"
+ integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-regenerator@^7.8.7":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.1.tgz#10e175cbe7bdb63cc9b39f9b3f823c5c7c5c5490"
- integrity sha512-B3+Y2prScgJ2Bh/2l9LJxKbb8C8kRfsG4AdPT+n7ixBHIxJaIG8bi8tgjxUMege1+WqSJ+7gu1YeoMVO3gPWzw==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63"
+ integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==
dependencies:
regenerator-transform "^0.14.2"
"@babel/plugin-transform-reserved-words@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.1.tgz#0fc1027312b4d1c3276a57890c8ae3bcc0b64a86"
- integrity sha512-qN1OMoE2nuqSPmpTqEM7OvJ1FkMEV+BjVeZZm9V9mq/x1JLKQ4pcv8riZJMNN3u2AUGl0ouOMjRr2siecvHqUQ==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd"
+ integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-runtime@7.9.6":
+ version "7.9.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.6.tgz#3ba804438ad0d880a17bca5eaa0cdf1edeedb2fd"
+ integrity sha512-qcmiECD0mYOjOIt8YHNsAP1SxPooC/rDmfmiSK9BNY72EitdSc7l44WTEklaWuFtbOEBjNhWWyph/kOImbNJ4w==
+ dependencies:
+ "@babel/helper-module-imports" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.8.3"
+ resolve "^1.8.1"
+ semver "^5.5.1"
"@babel/plugin-transform-shorthand-properties@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.1.tgz#e8b54f238a1ccbae482c4dce946180ae7b3143f3"
- integrity sha512-AR0E/lZMfLstScFwztApGeyTHJ5u3JUKMjneqRItWeEqDdHWZwAOKycvQNCasCK/3r5YXsuNG25funcJDu7Y2g==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6"
+ integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-spread@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.1.tgz#0c6d618a0c4461a274418460a28c9ccf5239a7c8"
- integrity sha512-8wTPym6edIrClW8FI2IoaePB91ETOtg36dOkj3bYcNe7aDMN2FXEoUa+WrmPc4xa1u2PQK46fUX2aCb+zo9rfw==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.4.tgz#4e2c85ea0d6abaee1b24dcfbbae426fe8d674cff"
+ integrity sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-sticky-regex@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.1.tgz#90fc89b7526228bed9842cff3588270a7a393b00"
- integrity sha512-j17ojftKjrL7ufX8ajKvwRilwqTok4q+BjkknmQw9VNHnItTyMP5anPFzxFJdCQs7clLcWpCV3ma+6qZWLnGMA==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d"
+ integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
- "@babel/helper-regex" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-regex" "^7.10.4"
"@babel/plugin-transform-template-literals@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.1.tgz#914c7b7f4752c570ea00553b4284dad8070e8628"
- integrity sha512-t7B/3MQf5M1T9hPCRG28DNGZUuxAuDqLYS03rJrIk2prj/UV7Z6FOneijhQhnv/Xa039vidXeVbvjK2SK5f7Gg==
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c"
+ integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-typeof-symbol@^7.8.4":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.1.tgz#60c0239b69965d166b80a84de7315c1bc7e0bb0e"
- integrity sha512-qX8KZcmbvA23zDi+lk9s6hC1FM7jgLHYIjuLgULgc8QtYnmB3tAVIYkNoKRQ75qWBeyzcoMoK8ZQmogGtC/w0g==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc"
+ integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==
dependencies:
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-unicode-regex@^7.8.3":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.1.tgz#6b58f2aea7b68df37ac5025d9c88752443a6b43f"
- integrity sha512-Y/2a2W299k0VIUdbqYm9X2qS6fE0CUBhhiPpimK6byy7OJ/kORLlIX+J6UrjgNu5awvs62k+6RSslxhcvVw2Tw==
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8"
+ integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.10.1"
- "@babel/helper-plugin-utils" "^7.10.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/preset-env@7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.0.tgz#a5fc42480e950ae8f5d9f8f2bbc03f52722df3a8"
- integrity sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==
+"@babel/preset-env@7.9.6":
+ version "7.9.6"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.6.tgz#df063b276c6455ec6fcfc6e53aacc38da9b0aea6"
+ integrity sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ==
dependencies:
- "@babel/compat-data" "^7.9.0"
- "@babel/helper-compilation-targets" "^7.8.7"
+ "@babel/compat-data" "^7.9.6"
+ "@babel/helper-compilation-targets" "^7.9.6"
"@babel/helper-module-imports" "^7.8.3"
"@babel/helper-plugin-utils" "^7.8.3"
"@babel/plugin-proposal-async-generator-functions" "^7.8.3"
@@ -878,7 +916,7 @@
"@babel/plugin-proposal-json-strings" "^7.8.3"
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3"
"@babel/plugin-proposal-numeric-separator" "^7.8.3"
- "@babel/plugin-proposal-object-rest-spread" "^7.9.0"
+ "@babel/plugin-proposal-object-rest-spread" "^7.9.6"
"@babel/plugin-proposal-optional-catch-binding" "^7.8.3"
"@babel/plugin-proposal-optional-chaining" "^7.9.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.8.3"
@@ -895,9 +933,9 @@
"@babel/plugin-transform-async-to-generator" "^7.8.3"
"@babel/plugin-transform-block-scoped-functions" "^7.8.3"
"@babel/plugin-transform-block-scoping" "^7.8.3"
- "@babel/plugin-transform-classes" "^7.9.0"
+ "@babel/plugin-transform-classes" "^7.9.5"
"@babel/plugin-transform-computed-properties" "^7.8.3"
- "@babel/plugin-transform-destructuring" "^7.8.3"
+ "@babel/plugin-transform-destructuring" "^7.9.5"
"@babel/plugin-transform-dotall-regex" "^7.8.3"
"@babel/plugin-transform-duplicate-keys" "^7.8.3"
"@babel/plugin-transform-exponentiation-operator" "^7.8.3"
@@ -905,14 +943,14 @@
"@babel/plugin-transform-function-name" "^7.8.3"
"@babel/plugin-transform-literals" "^7.8.3"
"@babel/plugin-transform-member-expression-literals" "^7.8.3"
- "@babel/plugin-transform-modules-amd" "^7.9.0"
- "@babel/plugin-transform-modules-commonjs" "^7.9.0"
- "@babel/plugin-transform-modules-systemjs" "^7.9.0"
+ "@babel/plugin-transform-modules-amd" "^7.9.6"
+ "@babel/plugin-transform-modules-commonjs" "^7.9.6"
+ "@babel/plugin-transform-modules-systemjs" "^7.9.6"
"@babel/plugin-transform-modules-umd" "^7.9.0"
"@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3"
"@babel/plugin-transform-new-target" "^7.8.3"
"@babel/plugin-transform-object-super" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.8.7"
+ "@babel/plugin-transform-parameters" "^7.9.5"
"@babel/plugin-transform-property-literals" "^7.8.3"
"@babel/plugin-transform-regenerator" "^7.8.7"
"@babel/plugin-transform-reserved-words" "^7.8.3"
@@ -923,8 +961,8 @@
"@babel/plugin-transform-typeof-symbol" "^7.8.4"
"@babel/plugin-transform-unicode-regex" "^7.8.3"
"@babel/preset-modules" "^0.1.3"
- "@babel/types" "^7.9.0"
- browserslist "^4.9.1"
+ "@babel/types" "^7.9.6"
+ browserslist "^4.11.1"
core-js-compat "^3.6.2"
invariant "^2.2.2"
levenary "^1.1.1"
@@ -941,10 +979,17 @@
"@babel/types" "^7.4.4"
esutils "^2.0.2"
+"@babel/runtime@7.9.6":
+ version "7.9.6"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f"
+ integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==
+ dependencies:
+ regenerator-runtime "^0.13.4"
+
"@babel/runtime@^7.8.4":
- version "7.10.2"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.2.tgz#d103f21f2602497d38348a32e008637d506db839"
- integrity sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg==
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.5.tgz#303d8bd440ecd5a491eae6117fd3367698674c5c"
+ integrity sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg==
dependencies:
regenerator-runtime "^0.13.4"
@@ -957,37 +1002,37 @@
"@babel/parser" "^7.8.6"
"@babel/types" "^7.8.6"
-"@babel/template@^7.10.1", "@babel/template@^7.4.0", "@babel/template@^7.8.6":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.1.tgz#e167154a94cb5f14b28dc58f5356d2162f539811"
- integrity sha512-OQDg6SqvFSsc9A0ej6SKINWrpJiNonRIniYondK2ViKhB06i3c0s+76XUft71iqBEe9S1OKsHwPAjfHnuvnCig==
- dependencies:
- "@babel/code-frame" "^7.10.1"
- "@babel/parser" "^7.10.1"
- "@babel/types" "^7.10.1"
-
-"@babel/traverse@^7.10.1", "@babel/traverse@^7.4.3", "@babel/traverse@^7.9.0":
- version "7.10.1"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.1.tgz#bbcef3031e4152a6c0b50147f4958df54ca0dd27"
- integrity sha512-C/cTuXeKt85K+p08jN6vMDz8vSV0vZcI0wmQ36o6mjbuo++kPMdpOYw23W2XH04dbRt9/nMEfA4W3eR21CD+TQ==
- dependencies:
- "@babel/code-frame" "^7.10.1"
- "@babel/generator" "^7.10.1"
- "@babel/helper-function-name" "^7.10.1"
- "@babel/helper-split-export-declaration" "^7.10.1"
- "@babel/parser" "^7.10.1"
- "@babel/types" "^7.10.1"
+"@babel/template@^7.10.4", "@babel/template@^7.8.6":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
+ integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/parser" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/traverse@^7.10.4", "@babel/traverse@^7.10.5", "@babel/traverse@^7.9.6":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz#77ce464f5b258be265af618d8fddf0536f20b564"
+ integrity sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/generator" "^7.10.5"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.10.4"
+ "@babel/parser" "^7.10.5"
+ "@babel/types" "^7.10.5"
debug "^4.1.0"
globals "^11.1.0"
- lodash "^4.17.13"
+ lodash "^4.17.19"
-"@babel/types@^7.10.1", "@babel/types@^7.10.2", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.8.6", "@babel/types@^7.9.0":
- version "7.10.2"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.2.tgz#30283be31cad0dbf6fb00bd40641ca0ea675172d"
- integrity sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==
+"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.4.4", "@babel/types@^7.8.6", "@babel/types@^7.9.6":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15"
+ integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==
dependencies:
- "@babel/helper-validator-identifier" "^7.10.1"
- lodash "^4.17.13"
+ "@babel/helper-validator-identifier" "^7.10.4"
+ lodash "^4.17.19"
to-fast-properties "^2.0.0"
"@istanbuljs/schema@^0.1.2":
@@ -1006,37 +1051,65 @@
merge-source-map "^1.1.0"
schema-utils "^2.6.4"
-"@ngtools/webpack@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-9.1.7.tgz#4322757b029e1175a3361183c06b31d0576538d8"
- integrity sha512-A7VB2I42Kn+7jl0tDKzGNLAoZLWSqkKo9Hg1bmKpvAAIz+DSbq3uV+JWgGgTprM3tn0lfkVgmqk4H17HKwAOcg==
+"@ngtools/webpack@10.0.3":
+ version "10.0.3"
+ resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-10.0.3.tgz#2f8b2674108f7c36ffcdfc9e9aa024abfe3c7e04"
+ integrity sha512-0TuvYMCLtsApLtCHXeDBYGEoAQXzsRLpgFxPM5W7CGcj0ecthZO4NYrMAt+J8ky//KmbxqQSFHWmss2cbirIPA==
dependencies:
- "@angular-devkit/core" "9.1.7"
+ "@angular-devkit/core" "10.0.3"
enhanced-resolve "4.1.1"
- rxjs "6.5.4"
+ rxjs "6.5.5"
webpack-sources "1.4.3"
-"@schematics/angular@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-9.1.7.tgz#b7801a5e20f844da560db81d2971590e8ac090ff"
- integrity sha512-ld3WcoMWvup04V3OWioQ+AFGQBzz7IDM4Fxc5+Qc3wILWkDJnNkrc4EmJAow96Ab4/T1+Wl1vof3tV4At0BTzA==
+"@nodelib/fs.scandir@2.1.3":
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b"
+ integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==
dependencies:
- "@angular-devkit/core" "9.1.7"
- "@angular-devkit/schematics" "9.1.7"
+ "@nodelib/fs.stat" "2.0.3"
+ run-parallel "^1.1.9"
+
+"@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3"
+ integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==
-"@schematics/update@0.901.7":
- version "0.901.7"
- resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.901.7.tgz#164bff4e97383a0a7d266fe5eb2e1bf41f14dfe9"
- integrity sha512-6IpQVFvbu47CrXfqqHAzv2vi7AOdfi1S+SiayXU6FWTeA2wV47H8R60VjxurL8JkDGoVhFgC4+lK6KG++g3dQw==
+"@nodelib/fs.walk@^1.2.3":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976"
+ integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==
+ dependencies:
+ "@nodelib/fs.scandir" "2.1.3"
+ fastq "^1.6.0"
+
+"@npmcli/move-file@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.0.1.tgz#de103070dac0f48ce49cf6693c23af59c0f70464"
+ integrity sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==
+ dependencies:
+ mkdirp "^1.0.4"
+
+"@schematics/angular@10.0.3":
+ version "10.0.3"
+ resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-10.0.3.tgz#a4d54389918a7f9c82345d4f639d930f22b62c6b"
+ integrity sha512-Or2pCqjpPbAvmbxtfMosGwQbNbSL4xodK5Key7678ZAPGB+rcxrVkBI9yxEJ/qzF/LrmMoKqy0JCmVLK7Grpog==
+ dependencies:
+ "@angular-devkit/core" "10.0.3"
+ "@angular-devkit/schematics" "10.0.3"
+
+"@schematics/update@0.1000.3":
+ version "0.1000.3"
+ resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.1000.3.tgz#d361f23ae49cd3ac9b547b6f4c2470d7ca86aabd"
+ integrity sha512-Nncdklmzi1tyzkoAh7GlSslxriRhftlmfqPVmFHrrPRttYACtT/QH5qcWsrPgTPpHGINYEHrPjpeljsMoMchBQ==
dependencies:
- "@angular-devkit/core" "9.1.7"
- "@angular-devkit/schematics" "9.1.7"
+ "@angular-devkit/core" "10.0.3"
+ "@angular-devkit/schematics" "10.0.3"
"@yarnpkg/lockfile" "1.1.0"
ini "1.3.5"
npm-package-arg "^8.0.0"
pacote "9.5.12"
- rxjs "6.5.4"
- semver "7.1.3"
+ rxjs "6.5.5"
+ semver "7.3.2"
semver-intersect "1.4.0"
"@types/color-name@^1.1.1":
@@ -1045,22 +1118,17 @@
integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
"@types/glob@^7.1.1":
- version "7.1.2"
- resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.2.tgz#06ca26521353a545d94a0adc74f38a59d232c987"
- integrity sha512-VgNIkxK+j7Nz5P7jvUZlRvhuPSmsEfS03b0alKcq5V/STUKAa3Plemsn5mrQUO7am6OErJ4rhGEGJbACclrtRA==
+ version "7.1.3"
+ resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183"
+ integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
-"@types/googlemaps@^3.39.9":
- version "3.39.9"
- resolved "https://registry.yarnpkg.com/@types/googlemaps/-/googlemaps-3.39.9.tgz#641f5285527d2e2a36b042ac2b0d75b7563cec64"
- integrity sha512-T6QSosejFkUxXLF4FpDAIjVCS9ptieCj8illG4k6abbB/oVaxwrD4+gx/grkv68cFLmEfH+xO510obIyNjL9Tw==
-
"@types/jasmine@*", "@types/jasmine@~3.5.0":
- version "3.5.10"
- resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-3.5.10.tgz#a1a41012012b5da9d4b205ba9eba58f6cce2ab7b"
- integrity sha512-3F8qpwBAiVc5+HPJeXJpbrl+XjawGmciN5LgiO7Gv1pl1RHtjoMNqZpqEksaPJW05ViKe8snYInRs6xB25Xdew==
+ version "3.5.11"
+ resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-3.5.11.tgz#ba8e80639dffbe277f49c708b45373a320d158e2"
+ integrity sha512-fg1rOd/DehQTIJTifGqGVY6q92lDgnLfs7C6t1ccSwQrMyoTGSoH6wWzhJDZb6ezhsdwAX4EIBLe8w5fXWmEng==
"@types/jasminewd2@~2.0.3":
version "2.0.8"
@@ -1070,9 +1138,9 @@
"@types/jasmine" "*"
"@types/json-schema@^7.0.4":
- version "7.0.4"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339"
- integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd"
+ integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==
"@types/minimatch@*":
version "3.0.3"
@@ -1080,14 +1148,14 @@
integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
"@types/node@*":
- version "14.0.11"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.11.tgz#61d4886e2424da73b7b25547f59fdcb534c165a3"
- integrity sha512-lCvvI24L21ZVeIiyIUHZ5Oflv1hhHQ5E1S25IRlKIXaRkVgmXpJMI3wUJkmym2bTbCe+WoIibQnMVAU3FguaOg==
+ version "14.0.23"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.23.tgz#676fa0883450ed9da0bb24156213636290892806"
+ integrity sha512-Z4U8yDAl5TFkmYsZdFPdjeMa57NOvnaf1tljHzhouaPEp7LCj2JKkejpI1ODviIAQuW4CcQmxkQ77rnLsOOoKw==
"@types/node@^12.11.1":
- version "12.12.44"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.44.tgz#0d400a1453adcb359b133acceae4dd8bb0e0a159"
- integrity sha512-jM6QVv0Sm5d3nW+nUD5jSzPcO6oPqboitSNcwgBay9hifVq/Rauq1PYnROnsmuw45JMBiTnsPAno0bKu2e2xrg==
+ version "12.12.50"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.50.tgz#e9b2e85fafc15f2a8aa8fdd41091b983da5fd6ee"
+ integrity sha512-5ImO01Fb8YsEOYpV+aeyGYztcYcjGsBvN4D7G5r1ef2cuQOpymjWNQi5V0rKHE6PC2ru3HkoUr/Br2/8GUA84w==
"@types/q@^0.0.32":
version "0.0.32"
@@ -1118,150 +1186,149 @@
"@types/source-list-map" "*"
source-map "^0.6.1"
-"@webassemblyjs/ast@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359"
- integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==
- dependencies:
- "@webassemblyjs/helper-module-context" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/wast-parser" "1.8.5"
-
-"@webassemblyjs/floating-point-hex-parser@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721"
- integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==
-
-"@webassemblyjs/helper-api-error@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7"
- integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==
-
-"@webassemblyjs/helper-buffer@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204"
- integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==
-
-"@webassemblyjs/helper-code-frame@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e"
- integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==
- dependencies:
- "@webassemblyjs/wast-printer" "1.8.5"
-
-"@webassemblyjs/helper-fsm@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452"
- integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==
-
-"@webassemblyjs/helper-module-context@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245"
- integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- mamacro "^0.0.3"
-
-"@webassemblyjs/helper-wasm-bytecode@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61"
- integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==
-
-"@webassemblyjs/helper-wasm-section@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf"
- integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-buffer" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/wasm-gen" "1.8.5"
-
-"@webassemblyjs/ieee754@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e"
- integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==
+"@webassemblyjs/ast@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
+ integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
+ dependencies:
+ "@webassemblyjs/helper-module-context" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/wast-parser" "1.9.0"
+
+"@webassemblyjs/floating-point-hex-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
+ integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
+
+"@webassemblyjs/helper-api-error@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
+ integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
+
+"@webassemblyjs/helper-buffer@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
+ integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
+
+"@webassemblyjs/helper-code-frame@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
+ integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
+ dependencies:
+ "@webassemblyjs/wast-printer" "1.9.0"
+
+"@webassemblyjs/helper-fsm@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
+ integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
+
+"@webassemblyjs/helper-module-context@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
+ integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+
+"@webassemblyjs/helper-wasm-bytecode@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
+ integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
+
+"@webassemblyjs/helper-wasm-section@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
+ integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-buffer" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/wasm-gen" "1.9.0"
+
+"@webassemblyjs/ieee754@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
+ integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
dependencies:
"@xtuc/ieee754" "^1.2.0"
-"@webassemblyjs/leb128@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10"
- integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==
+"@webassemblyjs/leb128@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
+ integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
dependencies:
"@xtuc/long" "4.2.2"
-"@webassemblyjs/utf8@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc"
- integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==
-
-"@webassemblyjs/wasm-edit@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a"
- integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-buffer" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/helper-wasm-section" "1.8.5"
- "@webassemblyjs/wasm-gen" "1.8.5"
- "@webassemblyjs/wasm-opt" "1.8.5"
- "@webassemblyjs/wasm-parser" "1.8.5"
- "@webassemblyjs/wast-printer" "1.8.5"
-
-"@webassemblyjs/wasm-gen@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc"
- integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/ieee754" "1.8.5"
- "@webassemblyjs/leb128" "1.8.5"
- "@webassemblyjs/utf8" "1.8.5"
-
-"@webassemblyjs/wasm-opt@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264"
- integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-buffer" "1.8.5"
- "@webassemblyjs/wasm-gen" "1.8.5"
- "@webassemblyjs/wasm-parser" "1.8.5"
-
-"@webassemblyjs/wasm-parser@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d"
- integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-api-error" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/ieee754" "1.8.5"
- "@webassemblyjs/leb128" "1.8.5"
- "@webassemblyjs/utf8" "1.8.5"
-
-"@webassemblyjs/wast-parser@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c"
- integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/floating-point-hex-parser" "1.8.5"
- "@webassemblyjs/helper-api-error" "1.8.5"
- "@webassemblyjs/helper-code-frame" "1.8.5"
- "@webassemblyjs/helper-fsm" "1.8.5"
+"@webassemblyjs/utf8@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
+ integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
+
+"@webassemblyjs/wasm-edit@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
+ integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-buffer" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/helper-wasm-section" "1.9.0"
+ "@webassemblyjs/wasm-gen" "1.9.0"
+ "@webassemblyjs/wasm-opt" "1.9.0"
+ "@webassemblyjs/wasm-parser" "1.9.0"
+ "@webassemblyjs/wast-printer" "1.9.0"
+
+"@webassemblyjs/wasm-gen@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
+ integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/ieee754" "1.9.0"
+ "@webassemblyjs/leb128" "1.9.0"
+ "@webassemblyjs/utf8" "1.9.0"
+
+"@webassemblyjs/wasm-opt@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
+ integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-buffer" "1.9.0"
+ "@webassemblyjs/wasm-gen" "1.9.0"
+ "@webassemblyjs/wasm-parser" "1.9.0"
+
+"@webassemblyjs/wasm-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
+ integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-api-error" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/ieee754" "1.9.0"
+ "@webassemblyjs/leb128" "1.9.0"
+ "@webassemblyjs/utf8" "1.9.0"
+
+"@webassemblyjs/wast-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
+ integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/floating-point-hex-parser" "1.9.0"
+ "@webassemblyjs/helper-api-error" "1.9.0"
+ "@webassemblyjs/helper-code-frame" "1.9.0"
+ "@webassemblyjs/helper-fsm" "1.9.0"
"@xtuc/long" "4.2.2"
-"@webassemblyjs/wast-printer@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc"
- integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==
+"@webassemblyjs/wast-printer@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
+ integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/wast-parser" "1.8.5"
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/wast-parser" "1.9.0"
"@xtuc/long" "4.2.2"
"@xtuc/ieee754@^1.2.0":
@@ -1287,6 +1354,11 @@ JSONStream@^1.3.4:
jsonparse "^1.2.0"
through ">=2.2.7 <3"
+abab@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a"
+ integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==
+
accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7:
version "1.3.7"
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
@@ -1295,15 +1367,26 @@ accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7:
mime-types "~2.1.24"
negotiator "0.6.2"
-acorn@^6.2.1:
+acorn@^6.4.1:
version "6.4.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474"
integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==
+adjust-sourcemap-loader@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz#6471143af75ec02334b219f54bc7970c52fb29a4"
+ integrity sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA==
+ dependencies:
+ assert "1.4.1"
+ camelcase "5.0.0"
+ loader-utils "1.2.3"
+ object-path "0.11.4"
+ regex-parser "2.2.10"
+
adm-zip@^0.4.9:
- version "0.4.14"
- resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.4.14.tgz#2cf312bcc9f8875df835b0f6040bd89be0a727a9"
- integrity sha512-/9aQCnQHF+0IiCl0qhXoK7qs//SwYE7zX8lsr/DNk1BRAHYxeLZPL4pguwK29gUEqasYQjqPtEpDRSWEkdHn9g==
+ version "0.4.16"
+ resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.4.16.tgz#cf4c508fdffab02c269cbc7f471a875f05570365"
+ integrity sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==
after@0.8.2:
version "0.8.2"
@@ -1339,26 +1422,20 @@ aggregate-error@^3.0.0:
clean-stack "^2.0.0"
indent-string "^4.0.0"
-"agm-direction@file:../agm-direction-0.8.0.tgz":
- version "0.8.0"
- resolved "file:../agm-direction-0.8.0.tgz#a517052f1abcedb52ebbd0d75effab41f9f68461"
- dependencies:
- tslib "^1.10.0"
-
ajv-errors@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
ajv-keywords@^3.1.0, ajv-keywords@^3.4.1:
- version "3.4.1"
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da"
- integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.1.tgz#b83ca89c5d42d69031f424cad49aada0236c6957"
+ integrity sha512-KWcq3xN8fDjSB+IMoh2VaXVhRI0BBGxoYp3rx7Pkb6z0cFjYR9Q9l4yZqqals0/zsioCmocC5H6UvsGD4MoIBA==
-ajv@6.12.0:
- version "6.12.0"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7"
- integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==
+ajv@6.12.2:
+ version "6.12.2"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd"
+ integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==
dependencies:
fast-deep-equal "^3.1.1"
fast-json-stable-stringify "^2.0.0"
@@ -1366,9 +1443,9 @@ ajv@6.12.0:
uri-js "^4.2.2"
ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.5.5:
- version "6.12.2"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd"
- integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==
+ version "6.12.3"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706"
+ integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==
dependencies:
fast-deep-equal "^3.1.1"
fast-json-stable-stringify "^2.0.0"
@@ -1453,17 +1530,10 @@ anymatch@~3.1.1:
normalize-path "^3.0.0"
picomatch "^2.0.4"
-app-root-path@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz#d0df4a682ee408273583d43f6f79e9892624bc9a"
- integrity sha512-91IFKeKk7FjfmezPKkwtaRvSpnUc4gDwPAjA1YZ9Gn0q0PPeW+vbeUsZuyDwjI7+QTHhcLen2v25fi/AmhvbJA==
-
-append-transform@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab"
- integrity sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==
- dependencies:
- default-require-extensions "^2.0.0"
+app-root-path@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-3.0.0.tgz#210b6f43873227e18a4b810a032283311555d5ad"
+ integrity sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw==
aproba@^1.1.1:
version "1.2.0"
@@ -1490,6 +1560,11 @@ aria-query@^3.0.0:
ast-types-flow "0.0.7"
commander "^2.11.0"
+arity-n@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745"
+ integrity sha1-2edrEXM+CFacCEeuezmyhgswt0U=
+
arr-diff@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
@@ -1522,6 +1597,11 @@ array-union@^1.0.1:
dependencies:
array-uniq "^1.0.1"
+array-union@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
+ integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+
array-uniq@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
@@ -1542,7 +1622,7 @@ arrify@^1.0.0:
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
-asap@^2.0.0, asap@~2.0.3:
+asap@^2.0.0:
version "2.0.6"
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
@@ -1568,6 +1648,13 @@ assert-plus@1.0.0, assert-plus@^1.0.0:
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
+assert@1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
+ integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=
+ dependencies:
+ util "0.10.3"
+
assert@^1.1.1:
version "1.5.0"
resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
@@ -1596,7 +1683,7 @@ async-limiter@~1.0.0:
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
-async@^2.5.0, async@^2.6.2:
+async@^2.6.2:
version "2.6.3"
resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
@@ -1613,18 +1700,18 @@ atob@^2.1.2:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-autoprefixer@9.7.4:
- version "9.7.4"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.4.tgz#f8bf3e06707d047f0641d87aee8cfb174b2a5378"
- integrity sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g==
+autoprefixer@9.8.0:
+ version "9.8.0"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.0.tgz#68e2d2bef7ba4c3a65436f662d0a56a741e56511"
+ integrity sha512-D96ZiIHXbDmU02dBaemyAg53ez+6F5yZmapmgKcjm35yEe1uVDYI8hGW3VYoGRaG290ZFf91YxHrR518vC0u/A==
dependencies:
- browserslist "^4.8.3"
- caniuse-lite "^1.0.30001020"
+ browserslist "^4.12.0"
+ caniuse-lite "^1.0.30001061"
chalk "^2.4.2"
normalize-range "^0.1.2"
num2fraction "^1.2.2"
- postcss "^7.0.26"
- postcss-value-parser "^4.0.2"
+ postcss "^7.0.30"
+ postcss-value-parser "^4.1.0"
aws-sign2@~0.7.0:
version "0.7.0"
@@ -1643,15 +1730,16 @@ axobject-query@2.0.2:
dependencies:
ast-types-flow "0.0.7"
-babel-loader@8.0.6:
- version "8.0.6"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb"
- integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==
+babel-loader@8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
+ integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
dependencies:
- find-cache-dir "^2.0.0"
- loader-utils "^1.0.2"
- mkdirp "^0.5.1"
+ find-cache-dir "^2.1.0"
+ loader-utils "^1.4.0"
+ mkdirp "^0.5.3"
pify "^4.0.1"
+ schema-utils "^2.6.5"
babel-plugin-dynamic-import-node@^2.3.3:
version "2.3.3"
@@ -1728,9 +1816,9 @@ binary-extensions@^1.0.0:
integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
binary-extensions@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c"
- integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9"
+ integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==
bindings@^1.5.0:
version "1.5.0"
@@ -1823,7 +1911,7 @@ braces@^2.3.1, braces@^2.3.2:
split-string "^3.0.2"
to-regex "^3.0.1"
-braces@^3.0.2, braces@~3.0.2:
+braces@^3.0.1, braces@^3.0.2, braces@~3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
@@ -1896,15 +1984,15 @@ browserify-zlib@^0.2.0:
dependencies:
pako "~1.0.5"
-browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.3, browserslist@^4.8.5, browserslist@^4.9.1:
- version "4.12.0"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d"
- integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==
+browserslist@^4.0.0, browserslist@^4.11.1, browserslist@^4.12.0, browserslist@^4.8.5, browserslist@^4.9.1:
+ version "4.13.0"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d"
+ integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ==
dependencies:
- caniuse-lite "^1.0.30001043"
- electron-to-chromium "^1.3.413"
- node-releases "^1.1.53"
- pkg-up "^2.0.0"
+ caniuse-lite "^1.0.30001093"
+ electron-to-chromium "^1.3.488"
+ escalade "^3.0.1"
+ node-releases "^1.1.58"
browserstack@^1.5.1:
version "1.6.0"
@@ -1962,12 +2050,12 @@ bytes@3.1.0:
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
-cacache@15.0.0:
- version "15.0.0"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.0.tgz#133b59edbd2a37ea8ef2d54964c6f247e47e5059"
- integrity sha512-L0JpXHhplbJSiDGzyJJnJCTL7er7NzbBgxzVqLswEb4bO91Zbv17OUMuUeu/q0ZwKn3V+1HM4wb9tO4eVE/K8g==
+cacache@15.0.3:
+ version "15.0.3"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.3.tgz#2225c2d1dd8e872339950d6a39c051e0e9334392"
+ integrity sha512-bc3jKYjqv7k4pWh7I/ixIjfcjPul4V4jme/WbjvwGS5LzoPL/GzXr4C5EgPNLO/QEZl9Oi61iGitYEdwcrwLCQ==
dependencies:
- chownr "^1.1.2"
+ chownr "^2.0.0"
fs-minipass "^2.0.0"
glob "^7.1.4"
infer-owner "^1.0.4"
@@ -1977,15 +2065,15 @@ cacache@15.0.0:
minipass-flush "^1.0.5"
minipass-pipeline "^1.2.2"
mkdirp "^1.0.3"
- move-concurrently "^1.0.1"
- p-map "^3.0.0"
+ move-file "^2.0.0"
+ p-map "^4.0.0"
promise-inflight "^1.0.1"
- rimraf "^2.7.1"
+ rimraf "^3.0.2"
ssri "^8.0.0"
- tar "^6.0.1"
+ tar "^6.0.2"
unique-filename "^1.1.1"
-cacache@^12.0.0, cacache@^12.0.2, cacache@^12.0.3:
+cacache@^12.0.0, cacache@^12.0.2:
version "12.0.4"
resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
@@ -2006,28 +2094,27 @@ cacache@^12.0.0, cacache@^12.0.2, cacache@^12.0.3:
unique-filename "^1.1.1"
y18n "^4.0.0"
-cacache@^13.0.1:
- version "13.0.1"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c"
- integrity sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==
+cacache@^15.0.3, cacache@^15.0.4:
+ version "15.0.5"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0"
+ integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==
dependencies:
- chownr "^1.1.2"
- figgy-pudding "^3.5.1"
+ "@npmcli/move-file" "^1.0.1"
+ chownr "^2.0.0"
fs-minipass "^2.0.0"
glob "^7.1.4"
- graceful-fs "^4.2.2"
infer-owner "^1.0.4"
- lru-cache "^5.1.1"
- minipass "^3.0.0"
+ lru-cache "^6.0.0"
+ minipass "^3.1.1"
minipass-collect "^1.0.2"
minipass-flush "^1.0.5"
minipass-pipeline "^1.2.2"
- mkdirp "^0.5.1"
- move-concurrently "^1.0.1"
- p-map "^3.0.0"
+ mkdirp "^1.0.3"
+ p-map "^4.0.0"
promise-inflight "^1.0.1"
- rimraf "^2.7.1"
- ssri "^7.0.0"
+ rimraf "^3.0.2"
+ ssri "^8.0.0"
+ tar "^6.0.2"
unique-filename "^1.1.1"
cache-base@^1.0.1:
@@ -2069,7 +2156,12 @@ callsites@^2.0.0:
resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
-camelcase@^5.0.0, camelcase@^5.3.1:
+camelcase@5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42"
+ integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==
+
+camelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1:
version "5.3.1"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
@@ -2084,10 +2176,10 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001020, caniuse-lite@^1.0.30001032, caniuse-lite@^1.0.30001043:
- version "1.0.30001078"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001078.tgz#e1b6e2ae327b6a1ec11f65ec7a0dde1e7093074c"
- integrity sha512-sF12qXe9VMm32IEf/+NDvmTpwJaaU7N1igpiH2FdI4DyABJSsOqG3ZAcFvszLkoLoo1y6VJLMYivukUAxaMASw==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001032, caniuse-lite@^1.0.30001061, caniuse-lite@^1.0.30001093:
+ version "1.0.30001100"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001100.tgz#2a58615e0c01cf716ab349b20ca4d86ef944aa4e"
+ integrity sha512-0eYdp1+wFCnMlCj2oudciuQn2B9xAFq3WpgpcBIZTxk/1HNA/O2YA7rpeYhnOqsqAJq1AHUgx6i1jtafg7m2zA==
canonical-path@1.0.0:
version "1.0.0"
@@ -2133,9 +2225,9 @@ chardet@^0.7.0:
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
"chokidar@>=2.0.0 <4.0.0", chokidar@^3.0.0, chokidar@^3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8"
- integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.1.tgz#e905bdecf10eaa0a0b1db0c664481cc4cbc22ba1"
+ integrity sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g==
dependencies:
anymatch "~3.1.1"
braces "~3.0.2"
@@ -2260,7 +2352,7 @@ clone@^1.0.2:
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
-clone@^2.1.1, clone@^2.1.2:
+clone@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f"
integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=
@@ -2274,20 +2366,25 @@ coa@^2.0.2:
chalk "^2.4.1"
q "^1.1.2"
-codelyzer@^5.1.2:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/codelyzer/-/codelyzer-5.2.2.tgz#d0530a455784e6bea0b6d7e97166c73c30a5347f"
- integrity sha512-jB4FZ1Sx7kZhvZVdf+N2BaKTdrrNZOL0Bj10RRfrhHrb3zEvXjJvvq298JPMJAiyiCS/v4zs1QlGU0ip7xGqeA==
+codelyzer@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/codelyzer/-/codelyzer-6.0.0.tgz#50c98581cc2890e0e9a9f93878dc317115d836ed"
+ integrity sha512-edJIQCIcxD9DhVSyBEdJ38AbLikm515Wl91t5RDGNT88uA6uQdTm4phTWfn9JhzAI8kXNUcfYyAE90lJElpGtA==
dependencies:
- app-root-path "^2.2.1"
+ "@angular/compiler" "9.0.0"
+ "@angular/core" "9.0.0"
+ app-root-path "^3.0.0"
aria-query "^3.0.0"
axobject-query "2.0.2"
css-selector-tokenizer "^0.7.1"
cssauron "^1.4.0"
damerau-levenshtein "^1.0.4"
+ rxjs "^6.5.3"
semver-dsl "^1.0.1"
source-map "^0.5.7"
sprintf-js "^1.1.2"
+ tslib "^1.10.0"
+ zone.js "~0.10.3"
collection-visit@^1.0.0:
version "1.0.0"
@@ -2337,12 +2434,7 @@ color@^3.0.0:
color-convert "^1.9.1"
color-string "^1.5.2"
-colors@1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
- integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM=
-
-colors@^1.4.0:
+colors@1.4.0, colors@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
@@ -2364,11 +2456,6 @@ commondir@^1.0.1:
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
-compare-versions@^3.4.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
- integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
-
component-bind@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"
@@ -2389,6 +2476,13 @@ component-inherit@0.0.3:
resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=
+compose-function@3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f"
+ integrity sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=
+ dependencies:
+ arity-n "^1.0.4"
+
compressible@~2.0.16:
version "2.0.18"
resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
@@ -2461,13 +2555,18 @@ content-type@~1.0.4:
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
-convert-source-map@^1.5.1, convert-source-map@^1.7.0:
+convert-source-map@1.7.0, convert-source-map@^1.5.1, convert-source-map@^1.7.0:
version "1.7.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
dependencies:
safe-buffer "~5.1.1"
+convert-source-map@^0.3.3:
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190"
+ integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA=
+
cookie-signature@1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
@@ -2500,23 +2599,22 @@ copy-descriptor@^0.1.0:
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-copy-webpack-plugin@5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz#5481a03dea1123d88a988c6ff8b78247214f0b88"
- integrity sha512-P15M5ZC8dyCjQHWwd4Ia/dm0SgVvZJMYeykVIVYXbGyqO4dWB5oyPHp9i7wjwo5LhtlhKbiBCdS2NvM07Wlybg==
- dependencies:
- cacache "^12.0.3"
- find-cache-dir "^2.1.0"
- glob-parent "^3.1.0"
- globby "^7.1.1"
- is-glob "^4.0.1"
- loader-utils "^1.2.3"
- minimatch "^3.0.4"
+copy-webpack-plugin@6.0.3:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-6.0.3.tgz#2b3d2bfc6861b96432a65f0149720adbd902040b"
+ integrity sha512-q5m6Vz4elsuyVEIUXr7wJdIdePWTubsqVbEMvf1WQnHGv0Q+9yPRu7MtYFPt+GBOXRav9lvIINifTQ1vSCs+eA==
+ dependencies:
+ cacache "^15.0.4"
+ fast-glob "^3.2.4"
+ find-cache-dir "^3.3.1"
+ glob-parent "^5.1.1"
+ globby "^11.0.1"
+ loader-utils "^2.0.0"
normalize-path "^3.0.0"
- p-limit "^2.2.1"
- schema-utils "^1.0.0"
- serialize-javascript "^2.1.2"
- webpack-log "^2.0.0"
+ p-limit "^3.0.1"
+ schema-utils "^2.7.0"
+ serialize-javascript "^4.0.0"
+ webpack-sources "^1.4.3"
core-js-compat@^3.6.2:
version "3.6.5"
@@ -2618,10 +2716,10 @@ css-declaration-sorter@^4.0.1:
postcss "^7.0.1"
timsort "^0.3.0"
-css-loader@3.5.1:
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.5.1.tgz#db2b2336f4169edb68e6a829ad4fd36552647b77"
- integrity sha512-0G4CbcZzQ9D1Q6ndOfjFuMDo8uLYMu5vc9Abs5ztyHcKvmil6GJrMiNjzzi3tQvUF+mVRuDg7bE6Oc0Prolgig==
+css-loader@3.5.3:
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.5.3.tgz#95ac16468e1adcd95c844729e0bb167639eb0bcf"
+ integrity sha512-UEr9NH5Lmi7+dguAm+/JSPovNjYbm2k3TK58EiwQHzOHH5Jfq1Y+XoP2bQO6TMn7PptMd0opxxedAWcaSTRKHw==
dependencies:
camelcase "^5.3.1"
cssesc "^3.0.0"
@@ -2634,7 +2732,7 @@ css-loader@3.5.1:
postcss-modules-scope "^2.2.0"
postcss-modules-values "^3.0.0"
postcss-value-parser "^4.0.3"
- schema-utils "^2.6.5"
+ schema-utils "^2.6.6"
semver "^6.3.0"
css-parse@~2.0.0:
@@ -2796,6 +2894,14 @@ cyclist@^1.0.1:
resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
+d@1, d@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a"
+ integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==
+ dependencies:
+ es5-ext "^0.10.50"
+ type "^1.0.1"
+
damerau-levenshtein@^1.0.4:
version "1.0.6"
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791"
@@ -2808,6 +2914,15 @@ dashdash@^1.12.0:
dependencies:
assert-plus "^1.0.0"
+data-urls@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
+ integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
+ dependencies:
+ abab "^2.0.3"
+ whatwg-mimetype "^2.3.0"
+ whatwg-url "^8.0.0"
+
date-format@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/date-format/-/date-format-2.1.0.tgz#31d5b5ea211cf5fd764cd38baf9d033df7e125cf"
@@ -2881,13 +2996,6 @@ default-gateway@^4.2.0:
execa "^1.0.0"
ip-regex "^2.1.0"
-default-require-extensions@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7"
- integrity sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=
- dependencies:
- strip-bom "^3.0.0"
-
defaults@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
@@ -3010,12 +3118,12 @@ diffie-hellman@^5.0.0:
miller-rabin "^4.0.0"
randombytes "^2.0.0"
-dir-glob@^2.0.0:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4"
- integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==
+dir-glob@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
+ integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
dependencies:
- path-type "^3.0.0"
+ path-type "^4.0.0"
dns-equal@^1.0.0:
version "1.0.0"
@@ -3108,15 +3216,15 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-electron-to-chromium@^1.3.413:
- version "1.3.462"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.462.tgz#82087404c20ed664963ececab23337ac7a150e21"
- integrity sha512-HST/xWLOeA0LGUhxBqvcPDDUGHjB6rn99VBgPWmaHv+zqwXgOaZO5RnRcd5owjRE7nh+z1c0SwcK8qP8o7sofg==
+electron-to-chromium@^1.3.488:
+ version "1.3.498"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.498.tgz#fd7188c8a49d6d0b5df1df55a1f1a4bf2c177457"
+ integrity sha512-W1hGwaQEU8j9su2jeAr3aabkPuuXw+j8t73eajGAkEJWbfWiwbxBwQN/8Qmv2qCy3uCDm2rOAaZneYQM8VGC4w==
elliptic@^6.0.0, elliptic@^6.5.2:
- version "6.5.2"
- resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
- integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==
+ version "6.5.3"
+ resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
+ integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==
dependencies:
bn.js "^4.4.0"
brorand "^1.0.1"
@@ -3136,6 +3244,11 @@ emoji-regex@^8.0.0:
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+emojis-list@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
+ integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
+
emojis-list@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
@@ -3147,11 +3260,11 @@ encodeurl@~1.0.2:
integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
encoding@^0.1.11:
- version "0.1.12"
- resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
- integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=
+ version "0.1.13"
+ resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
+ integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
dependencies:
- iconv-lite "~0.4.13"
+ iconv-lite "^0.6.2"
end-of-stream@^1.0.0, end-of-stream@^1.1.0:
version "1.4.4"
@@ -3200,7 +3313,7 @@ engine.io@~3.4.0:
engine.io-parser "~2.2.0"
ws "^7.1.2"
-enhanced-resolve@4.1.1, enhanced-resolve@^4.1.0:
+enhanced-resolve@4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66"
integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==
@@ -3209,6 +3322,15 @@ enhanced-resolve@4.1.1, enhanced-resolve@^4.1.0:
memory-fs "^0.5.0"
tapable "^1.0.0"
+enhanced-resolve@^4.1.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126"
+ integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==
+ dependencies:
+ graceful-fs "^4.1.2"
+ memory-fs "^0.5.0"
+ tapable "^1.0.0"
+
ent@~2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d"
@@ -3239,21 +3361,21 @@ error-ex@^1.3.1:
is-arrayish "^0.2.1"
es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5:
- version "1.17.5"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9"
- integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==
+ version "1.17.6"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a"
+ integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==
dependencies:
es-to-primitive "^1.2.1"
function-bind "^1.1.1"
has "^1.0.3"
has-symbols "^1.0.1"
- is-callable "^1.1.5"
- is-regex "^1.0.5"
+ is-callable "^1.2.0"
+ is-regex "^1.1.0"
object-inspect "^1.7.0"
object-keys "^1.1.1"
object.assign "^4.1.0"
- string.prototype.trimleft "^2.1.1"
- string.prototype.trimright "^2.1.1"
+ string.prototype.trimend "^1.0.1"
+ string.prototype.trimstart "^1.0.1"
es-to-primitive@^1.2.1:
version "1.2.1"
@@ -3264,6 +3386,24 @@ es-to-primitive@^1.2.1:
is-date-object "^1.0.1"
is-symbol "^1.0.2"
+es5-ext@^0.10.35, es5-ext@^0.10.50:
+ version "0.10.53"
+ resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1"
+ integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==
+ dependencies:
+ es6-iterator "~2.0.3"
+ es6-symbol "~3.1.3"
+ next-tick "~1.0.0"
+
+es6-iterator@2.0.3, es6-iterator@~2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
+ integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c=
+ dependencies:
+ d "1"
+ es5-ext "^0.10.35"
+ es6-symbol "^3.1.1"
+
es6-promise@^4.0.3:
version "4.2.8"
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a"
@@ -3276,6 +3416,19 @@ es6-promisify@^5.0.0:
dependencies:
es6-promise "^4.0.3"
+es6-symbol@^3.1.1, es6-symbol@~3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18"
+ integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==
+ dependencies:
+ d "^1.0.1"
+ ext "^1.1.2"
+
+escalade@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4"
+ integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==
+
escape-html@~1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
@@ -3413,6 +3566,13 @@ express@^4.17.1:
utils-merge "1.0.1"
vary "~1.1.2"
+ext@^1.1.2:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244"
+ integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==
+ dependencies:
+ type "^2.0.0"
+
extend-shallow@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
@@ -3467,9 +3627,21 @@ extsprintf@^1.2.0:
integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
fast-deep-equal@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4"
- integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+ integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
+
+fast-glob@^3.1.1, fast-glob@^3.2.4:
+ version "3.2.4"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3"
+ integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==
+ dependencies:
+ "@nodelib/fs.stat" "^2.0.2"
+ "@nodelib/fs.walk" "^1.2.3"
+ glob-parent "^5.1.0"
+ merge2 "^1.3.0"
+ micromatch "^4.0.2"
+ picomatch "^2.2.1"
fast-json-stable-stringify@2.1.0, fast-json-stable-stringify@^2.0.0:
version "2.1.0"
@@ -3481,6 +3653,13 @@ fastparse@^1.1.2:
resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
+fastq@^1.6.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.8.0.tgz#550e1f9f59bbc65fe185cb6a9b4d95357107f481"
+ integrity sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==
+ dependencies:
+ reusify "^1.0.4"
+
faye-websocket@^0.10.0:
version "0.10.0"
resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
@@ -3520,14 +3699,6 @@ file-uri-to-path@1.0.0:
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
-fileset@^2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
- integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=
- dependencies:
- glob "^7.0.3"
- minimatch "^3.0.3"
-
fill-range@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
@@ -3558,7 +3729,7 @@ finalhandler@1.1.2, finalhandler@~1.1.2:
statuses "~1.5.0"
unpipe "~1.0.0"
-find-cache-dir@3.3.1, find-cache-dir@^3.2.0:
+find-cache-dir@3.3.1, find-cache-dir@^3.3.1:
version "3.3.1"
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
@@ -3567,7 +3738,7 @@ find-cache-dir@3.3.1, find-cache-dir@^3.2.0:
make-dir "^3.0.2"
pkg-dir "^4.1.0"
-find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
+find-cache-dir@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
@@ -3576,13 +3747,6 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
make-dir "^2.0.0"
pkg-dir "^3.0.0"
-find-up@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
- integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
- dependencies:
- locate-path "^2.0.0"
-
find-up@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
@@ -3612,11 +3776,9 @@ flush-write-stream@^1.0.0:
readable-stream "^2.3.6"
follow-redirects@^1.0.0:
- version "1.11.0"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.11.0.tgz#afa14f08ba12a52963140fe43212658897bc0ecb"
- integrity sha512-KZm0V+ll8PfBrKwMzdo5D13b1bur9Iq9Zd/RMmAoQQcl2PxxFml8cxXPaaPYVbV0RjNjq1CU7zIzAOqtUPudmA==
- dependencies:
- debug "^3.0.0"
+ version "1.12.1"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.12.1.tgz#de54a6205311b93d60398ebc01cf7015682312b6"
+ integrity sha512-tmRv0AVuR7ZyouUHLeNSiO6pqulF7dYa3s19c6t+wz9LD69/uSzdMxJ2S91nTI9U3rt/IldxpzMOFejp6f0hjg==
for-in@^1.0.2:
version "1.0.2"
@@ -3769,14 +3931,14 @@ glob-parent@^3.1.0:
is-glob "^3.1.0"
path-dirname "^1.0.0"
-glob-parent@~5.1.0:
+glob-parent@^5.1.0, glob-parent@^5.1.1, glob-parent@~5.1.0:
version "5.1.1"
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
dependencies:
is-glob "^4.0.1"
-glob@7.1.6, glob@^7.0.3, glob@^7.0.6, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
+glob@7.1.6, glob@^7.0.3, glob@^7.0.6, glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
version "7.1.6"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
@@ -3793,6 +3955,18 @@ globals@^11.1.0:
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+globby@^11.0.1:
+ version "11.0.1"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357"
+ integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
+ dependencies:
+ array-union "^2.1.0"
+ dir-glob "^3.0.1"
+ fast-glob "^3.1.1"
+ ignore "^5.1.4"
+ merge2 "^1.3.0"
+ slash "^3.0.0"
+
globby@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
@@ -3816,19 +3990,7 @@ globby@^6.1.0:
pify "^2.0.0"
pinkie-promise "^2.0.0"
-globby@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680"
- integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA=
- dependencies:
- array-union "^1.0.1"
- dir-glob "^2.0.0"
- glob "^7.1.2"
- ignore "^3.3.5"
- pify "^3.0.0"
- slash "^1.0.0"
-
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4:
+graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4:
version "4.2.4"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
@@ -3960,11 +4122,11 @@ hosted-git-info@^2.1.4, hosted-git-info@^2.7.1:
integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
hosted-git-info@^3.0.2:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.4.tgz#be4973eb1fd2737b11c9c7c19380739bb249f60d"
- integrity sha512-4oT62d2jwSDBbLLFLZE+1vPuQ1h8p9wjrJ8Mqx5TjsyWmBMV5B13eJqn8pvluqubLf3cJPTfiYCIwNwDNmzScQ==
+ version "3.0.5"
+ resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.5.tgz#bea87905ef7317442e8df3087faa3c842397df03"
+ integrity sha512-i4dpK6xj9BIpVOTboXIlKG9+8HMKggcrMX7WA24xZtKwX0TPelq/rbaS5rCKeNX8sJXZJGdSxpnEGtta+wismQ==
dependencies:
- lru-cache "^5.1.1"
+ lru-cache "^6.0.0"
hpack.js@^2.1.6:
version "2.1.6"
@@ -4104,13 +4266,27 @@ humanize-ms@^1.2.1:
dependencies:
ms "^2.0.0"
-iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@~0.4.13:
+iconv-lite@0.4.24, iconv-lite@^0.4.24:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
dependencies:
safer-buffer ">= 2.1.2 < 3"
+iconv-lite@^0.5.1:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.5.2.tgz#af6d628dccfb463b7364d97f715e4b74b8c8c2b8"
+ integrity sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3"
+
+iconv-lite@^0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01"
+ integrity sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3.0.0"
+
icss-utils@^4.0.0, icss-utils@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
@@ -4135,10 +4311,10 @@ ignore-walk@^3.0.1:
dependencies:
minimatch "^3.0.4"
-ignore@^3.3.5:
- version "3.3.10"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
- integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==
+ignore@^5.1.4:
+ version "5.1.8"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
+ integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
image-size@~0.5.0:
version "0.5.5"
@@ -4340,7 +4516,7 @@ is-buffer@^1.1.5:
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
-is-callable@^1.1.4, is-callable@^1.1.5:
+is-callable@^1.1.4, is-callable@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb"
integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==
@@ -4517,7 +4693,7 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4:
dependencies:
isobject "^3.0.1"
-is-regex@^1.0.4, is-regex@^1.0.5:
+is-regex@^1.0.4, is-regex@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff"
integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw==
@@ -4607,25 +4783,6 @@ isstream@~0.1.2:
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
-istanbul-api@^2.1.6:
- version "2.1.7"
- resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.7.tgz#82786b79f3b93d481349c7aa1e2c2b4eeb48c8a8"
- integrity sha512-LYTOa2UrYFyJ/aSczZi/6lBykVMjCCvUmT64gOe+jPZFy4w6FYfPGqFT2IiQ2BxVHHDOvCD7qrIXb0EOh4uGWw==
- dependencies:
- async "^2.6.2"
- compare-versions "^3.4.0"
- fileset "^2.0.3"
- istanbul-lib-coverage "^2.0.5"
- istanbul-lib-hook "^2.0.7"
- istanbul-lib-instrument "^3.3.0"
- istanbul-lib-report "^2.0.8"
- istanbul-lib-source-maps "^3.0.6"
- istanbul-reports "^2.2.5"
- js-yaml "^3.13.1"
- make-dir "^2.1.0"
- minimatch "^3.0.4"
- once "^1.4.0"
-
istanbul-lib-coverage@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49"
@@ -4636,26 +4793,6 @@ istanbul-lib-coverage@^3.0.0:
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
-istanbul-lib-hook@^2.0.7:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.7.tgz#c95695f383d4f8f60df1f04252a9550e15b5b133"
- integrity sha512-vrRztU9VRRFDyC+aklfLoeXyNdTfga2EI3udDGn4cZ6fpSXpHLV9X6CHvfoMCPtggg8zvDDmC4b9xfu0z6/llA==
- dependencies:
- append-transform "^1.0.0"
-
-istanbul-lib-instrument@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630"
- integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==
- dependencies:
- "@babel/generator" "^7.4.0"
- "@babel/parser" "^7.4.3"
- "@babel/template" "^7.4.0"
- "@babel/traverse" "^7.4.3"
- "@babel/types" "^7.4.0"
- istanbul-lib-coverage "^2.0.5"
- semver "^6.0.0"
-
istanbul-lib-instrument@^4.0.1:
version "4.0.3"
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
@@ -4666,14 +4803,14 @@ istanbul-lib-instrument@^4.0.1:
istanbul-lib-coverage "^3.0.0"
semver "^6.3.0"
-istanbul-lib-report@^2.0.8:
- version "2.0.8"
- resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33"
- integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==
+istanbul-lib-report@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
+ integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
dependencies:
- istanbul-lib-coverage "^2.0.5"
- make-dir "^2.1.0"
- supports-color "^6.1.0"
+ istanbul-lib-coverage "^3.0.0"
+ make-dir "^3.0.0"
+ supports-color "^7.1.0"
istanbul-lib-source-maps@^3.0.6:
version "3.0.6"
@@ -4686,12 +4823,13 @@ istanbul-lib-source-maps@^3.0.6:
rimraf "^2.6.3"
source-map "^0.6.1"
-istanbul-reports@^2.2.5:
- version "2.2.7"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.7.tgz#5d939f6237d7b48393cc0959eab40cd4fd056931"
- integrity sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==
+istanbul-reports@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
+ integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
dependencies:
html-escaper "^2.0.0"
+ istanbul-lib-report "^3.0.0"
jasmine-core@^3.5.0, jasmine-core@~3.5.0:
version "3.5.0"
@@ -4703,12 +4841,12 @@ jasmine-core@~2.8.0:
resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.8.0.tgz#bcc979ae1f9fd05701e45e52e65d3a5d63f1a24e"
integrity sha1-vMl5rh+f0FcB5F5S5l06XWPxok4=
-jasmine-spec-reporter@~4.2.1:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/jasmine-spec-reporter/-/jasmine-spec-reporter-4.2.1.tgz#1d632aec0341670ad324f92ba84b4b32b35e9e22"
- integrity sha512-FZBoZu7VE5nR7Nilzy+Np8KuVIOxF4oXDPDknehCYBDE080EnlPu0afdZNmpGDBRCUBv3mj5qgqCRmk6W/K8vg==
+jasmine-spec-reporter@~5.0.0:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/jasmine-spec-reporter/-/jasmine-spec-reporter-5.0.2.tgz#b61288ab074ad440dc2477c4d42840b0e74a6b95"
+ integrity sha512-6gP1LbVgJ+d7PKksQBc2H0oDGNRQI3gKUsWlswKaQ2fif9X5gzhQcgM5+kiJGCQVurOG09jqNhk7payggyp5+g==
dependencies:
- colors "1.1.2"
+ colors "1.4.0"
jasmine@2.8.0:
version "2.8.0"
@@ -4724,18 +4862,18 @@ jasminewd2@^2.1.0:
resolved "https://registry.yarnpkg.com/jasminewd2/-/jasminewd2-2.2.0.tgz#e37cf0b17f199cce23bea71b2039395246b4ec4e"
integrity sha1-43zwsX8ZnM4jvqcbIDk5Uka07E4=
-jest-worker@25.1.0:
- version "25.1.0"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.1.0.tgz#75d038bad6fdf58eba0d2ec1835856c497e3907a"
- integrity sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg==
+jest-worker@26.0.0:
+ version "26.0.0"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.0.0.tgz#4920c7714f0a96c6412464718d0c58a3df3fb066"
+ integrity sha512-pPaYa2+JnwmiZjK9x7p9BoZht+47ecFCDFA/CJxspHzeDvQcfVBLWzCiWyo+EGrSiQMWZtCFo9iSvMZnAAo8vw==
dependencies:
merge-stream "^2.0.0"
supports-color "^7.0.0"
-jest-worker@^25.1.0:
- version "25.5.0"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1"
- integrity sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==
+jest-worker@^26.0.0:
+ version "26.1.0"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.1.0.tgz#65d5641af74e08ccd561c240e7db61284f82f33d"
+ integrity sha512-Z9P5pZ6UC+kakMbNJn+tA2RdVdNX5WH1x+5UCBZ9MxIK24pjYtFt96fK+UwBTrjLYm232g1xz0L3eTh51OW+yQ==
dependencies:
merge-stream "^2.0.0"
supports-color "^7.0.0"
@@ -4830,9 +4968,9 @@ jsprim@^1.2.2:
verror "1.10.0"
jszip@^3.1.3:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.4.0.tgz#1a69421fa5f0bb9bc222a46bca88182fba075350"
- integrity sha512-gZAOYuPl4EhPTXT0GjhI3o+ZAz3su6EhLrKUoAivcKqyqC7laS5JEv4XWZND9BgcDcF83vI85yGbDmDR6UhrIg==
+ version "3.5.0"
+ resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.5.0.tgz#b4fd1f368245346658e781fec9675802489e15f6"
+ integrity sha512-WRtu7TPCmYePR1nazfrtuF216cIVon/3GWOvHS9QR5bIwSbnxtdpma6un3jyGGNhHsKCSzn5Ypk+EkDRvTGiFA==
dependencies:
lie "~3.3.0"
pako "~1.0.2"
@@ -4846,23 +4984,26 @@ karma-chrome-launcher@~3.1.0:
dependencies:
which "^1.2.1"
-karma-coverage-istanbul-reporter@~2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.1.1.tgz#37a775fbfbb3cbe98cebf19605c94c6277c3b88a"
- integrity sha512-CH8lTi8+kKXGvrhy94+EkEMldLCiUA0xMOiL31vvli9qK0T+qcXJAwWBRVJWnVWxYkTmyWar8lPz63dxX6/z1A==
+karma-coverage-istanbul-reporter@~3.0.2:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.3.tgz#f3b5303553aadc8e681d40d360dfdc19bc7e9fe9"
+ integrity sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==
dependencies:
- istanbul-api "^2.1.6"
+ istanbul-lib-coverage "^3.0.0"
+ istanbul-lib-report "^3.0.0"
+ istanbul-lib-source-maps "^3.0.6"
+ istanbul-reports "^3.0.2"
minimatch "^3.0.4"
-karma-jasmine-html-reporter@^1.4.2:
+karma-jasmine-html-reporter@^1.5.0:
version "1.5.4"
resolved "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.5.4.tgz#669f33d694d88fce1b0ccfda57111de716cb0192"
integrity sha512-PtilRLno5O6wH3lDihRnz0Ba8oSn0YUJqKjjux1peoYGwo0AQqrWRbdWk/RLzcGlb+onTyXAnHl6M+Hu3UxG/Q==
-karma-jasmine@~3.0.1:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/karma-jasmine/-/karma-jasmine-3.0.3.tgz#751ae15d84d16e9148d0af42787fc12f5959f66d"
- integrity sha512-80iBR8/hLFY2Uw3S2GG6EndWtMCGMJjrCYNwYROWsJFVTjWrRSsLqcA2ye+U3ygW5sjOQo8f+78L8cGUxjC/+A==
+karma-jasmine@~3.3.0:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/karma-jasmine/-/karma-jasmine-3.3.1.tgz#c01b1a2ec973e1531c1f6535e1d7d66b8e4275c2"
+ integrity sha512-Nxh7eX9mOQMyK0VSsMxdod+bcqrR/ikrmEiWj5M6fwuQ7oI+YEF1FckaDsWfs6TIpULm9f0fTKMjF7XcrvWyqQ==
dependencies:
jasmine-core "^3.5.0"
@@ -4932,30 +5073,29 @@ kind-of@^6.0.0, kind-of@^6.0.2:
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
-less-loader@5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-5.0.0.tgz#498dde3a6c6c4f887458ee9ed3f086a12ad1b466"
- integrity sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==
+less-loader@6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-6.1.0.tgz#59fd591df408ced89a40fce11a2aea449b005631"
+ integrity sha512-/jLzOwLyqJ7Kt3xg5sHHkXtOyShWwFj410K9Si9WO+/h8rmYxxkSR0A3/hFEntWudE20zZnWMtpMYnLzqTVdUA==
dependencies:
- clone "^2.1.1"
- loader-utils "^1.1.0"
- pify "^4.0.1"
+ clone "^2.1.2"
+ less "^3.11.1"
+ loader-utils "^2.0.0"
+ schema-utils "^2.6.6"
-less@3.11.1:
- version "3.11.1"
- resolved "https://registry.yarnpkg.com/less/-/less-3.11.1.tgz#c6bf08e39e02404fe6b307a3dfffafdc55bd36e2"
- integrity sha512-tlWX341RECuTOvoDIvtFqXsKj072hm3+9ymRBe76/mD6O5ZZecnlAOVDlWAleF2+aohFrxNidXhv2773f6kY7g==
+less@^3.11.1:
+ version "3.12.2"
+ resolved "https://registry.yarnpkg.com/less/-/less-3.12.2.tgz#157e6dd32a68869df8859314ad38e70211af3ab4"
+ integrity sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==
dependencies:
- clone "^2.1.2"
tslib "^1.10.0"
optionalDependencies:
errno "^0.1.1"
graceful-fs "^4.1.2"
image-size "~0.5.0"
+ make-dir "^2.1.0"
mime "^1.4.1"
- mkdirp "^0.5.0"
- promise "^7.1.1"
- request "^2.83.0"
+ native-request "^1.0.5"
source-map "~0.6.0"
leven@^3.1.0:
@@ -4970,10 +5110,10 @@ levenary@^1.1.1:
dependencies:
leven "^3.1.0"
-license-webpack-plugin@2.1.4:
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/license-webpack-plugin/-/license-webpack-plugin-2.1.4.tgz#c5529a4bb87cc9b4489b486d054ba7cae43a554e"
- integrity sha512-1Xq72fmPbTg5KofXs+yI5L4QqPFjQ6mZxoeI6D7gfiEDOtaEIk6PGrdLaej90bpDqKNHNxlQ/MW4tMAL6xMPJQ==
+license-webpack-plugin@2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/license-webpack-plugin/-/license-webpack-plugin-2.2.0.tgz#5c964380d7d0e0c27c349d86a6f856c82924590e"
+ integrity sha512-XPsdL/0brSHf+7dXIlRqotnCQ58RX2au6otkOg4U3dm8uH+Ka/fW4iukEs95uXm+qKe/SBs+s1Ll/aQddKG+tg==
dependencies:
"@types/webpack-sources" "^0.1.5"
webpack-sources "^1.2.0"
@@ -4990,6 +5130,15 @@ loader-runner@^2.4.0:
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
+loader-utils@1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
+ integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
+ dependencies:
+ big.js "^5.2.2"
+ emojis-list "^2.0.0"
+ json5 "^1.0.1"
+
loader-utils@2.0.0, loader-utils@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
@@ -5008,14 +5157,6 @@ loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4
emojis-list "^3.0.0"
json5 "^1.0.1"
-locate-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
- integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
- dependencies:
- p-locate "^2.0.0"
- path-exists "^3.0.0"
-
locate-path@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
@@ -5041,15 +5182,20 @@ lodash.memoize@^4.1.2:
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
+lodash.sortby@^4.7.0:
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
+ integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
+
lodash.uniq@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
-lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15:
- version "4.17.15"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
- integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
+lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19:
+ version "4.17.19"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
+ integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
log-symbols@^3.0.0:
version "3.0.0"
@@ -5088,6 +5234,13 @@ lru-cache@^5.1.1:
dependencies:
yallist "^3.0.2"
+lru-cache@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
+ integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
+ dependencies:
+ yallist "^4.0.0"
+
magic-string@0.25.7, magic-string@^0.25.0:
version "0.25.7"
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051"
@@ -5103,7 +5256,7 @@ make-dir@^2.0.0, make-dir@^2.1.0:
pify "^4.0.1"
semver "^5.6.0"
-make-dir@^3.0.2:
+make-dir@^3.0.0, make-dir@^3.0.2:
version "3.1.0"
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
@@ -5132,11 +5285,6 @@ make-fetch-happen@^5.0.0:
socks-proxy-agent "^4.0.0"
ssri "^6.0.0"
-mamacro@^0.0.3:
- version "0.0.3"
- resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4"
- integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==
-
map-cache@^0.2.2:
version "0.2.2"
resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
@@ -5206,6 +5354,11 @@ merge-stream@^2.0.0:
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
+merge2@^1.3.0:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
+ integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
+
methods@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
@@ -5230,6 +5383,14 @@ micromatch@^3.1.10, micromatch@^3.1.4:
snapdragon "^0.8.1"
to-regex "^3.0.2"
+micromatch@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
+ integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
+ dependencies:
+ braces "^3.0.1"
+ picomatch "^2.0.5"
+
miller-rabin@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
@@ -5285,7 +5446,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
-minimatch@3.0.4, minimatch@^3.0.3, minimatch@^3.0.4:
+minimatch@3.0.4, minimatch@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
@@ -5379,7 +5540,7 @@ mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1, mkdirp@~0.5.x:
dependencies:
minimist "^1.2.5"
-mkdirp@^1.0.3:
+mkdirp@^1.0.3, mkdirp@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
@@ -5396,6 +5557,13 @@ move-concurrently@^1.0.1:
rimraf "^2.5.4"
run-queue "^1.0.3"
+move-file@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/move-file/-/move-file-2.0.0.tgz#83ffa309b5d7f69d518b28e1333e2ffadf331e3e"
+ integrity sha512-cdkdhNCgbP5dvS4tlGxZbD+nloio9GIimP57EjqFhwLcMjnU+XJKAZzlmg/TN/AK1LuNAdTSvm3CPPP4Xkv0iQ==
+ dependencies:
+ path-exists "^4.0.0"
+
ms@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
@@ -5451,15 +5619,25 @@ nanomatch@^1.2.9:
snapdragon "^0.8.1"
to-regex "^3.0.1"
+native-request@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/native-request/-/native-request-1.0.5.tgz#da67637c0a0ed0758243d1a688d647612f2d5a0a"
+ integrity sha512-7wU3DvBGAJQxWuMR3F62zrhB7hxNj2DdlC/eBVrCgavc6+ZpFZOqS/PsR7QyUPLMkFk0GvvzoeeOAZGLLnObnA==
+
negotiator@0.6.2:
version "0.6.2"
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
neo-async@^2.5.0, neo-async@^2.6.1:
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
- integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
+ integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
+
+next-tick@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c"
+ integrity sha1-yobR/ogoFpsBICCOPchCS524NCw=
nice-try@^1.0.4:
version "1.0.5"
@@ -5509,10 +5687,10 @@ node-libs-browser@^2.2.1:
util "^0.11.0"
vm-browserify "^1.0.1"
-node-releases@^1.1.53:
- version "1.1.58"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.58.tgz#8ee20eef30fa60e52755fcc0942def5a734fe935"
- integrity sha512-NxBudgVKiRh/2aPWMgPR7bPTX0VPmGx5QBwCtdHitnqFE5/O8DeBXuIMH1nwNnw/aMo6AjOrpsHzfY3UbUJ7yg==
+node-releases@^1.1.58:
+ version "1.1.59"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.59.tgz#4d648330641cec704bff10f8e4fe28e453ab8e8e"
+ integrity sha512-H3JrdUczbdiwxN5FuJPyCHnGHIFqQ0wWxo+9j1kAXAzqNMAHlo+4I/sYYxpyK0irQ73HgdiyzD32oqQDcU2Osw==
normalize-package-data@^2.0.0, normalize-package-data@^2.4.0:
version "2.5.0"
@@ -5603,10 +5781,10 @@ npm-packlist@^1.1.12:
npm-bundled "^1.0.1"
npm-normalize-package-bin "^1.0.1"
-npm-pick-manifest@6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-6.0.0.tgz#bfde7abe95f2670aed1629a3c18245ccb3cc2eb8"
- integrity sha512-PdJpXMvjqt4nftNEDpCgjBUF8yI3Q3MyuAmVB9nemnnCg32F4BPL/JFBfdj8DubgHCYUFQhtLWmBPvdsFtjWMg==
+npm-pick-manifest@6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-6.1.0.tgz#2befed87b0fce956790f62d32afb56d7539c022a"
+ integrity sha512-ygs4k6f54ZxJXrzT0x34NybRlLeZ4+6nECAIbr2i0foTnijtS1TJiyzpqtuUAJOps/hO0tNDr8fRV5g+BtRlTw==
dependencies:
npm-install-checks "^4.0.0"
npm-package-arg "^8.0.0"
@@ -5622,9 +5800,9 @@ npm-pick-manifest@^3.0.0:
semver "^5.4.1"
npm-registry-fetch@^4.0.0:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-4.0.4.tgz#2da1ecf3f43d419d96abf313664291a4623d3ea5"
- integrity sha512-6jb34hX/iYNQebqWUHtU8YF6Cjb1H6ouTFPClYsyiW6lpFkljTpdeftm53rRojtja1rKAvKNIIiTS5Sjpw4wsA==
+ version "4.0.5"
+ resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-4.0.5.tgz#cb87cf7f25bfb048d6c3ee19d115bebf93ea5bfa"
+ integrity sha512-yQ0/U4fYpCCqmueB2g8sc+89ckQ3eXpmU4+Yi2j5o/r0WkKvE2+Y0tK3DEILAtn2UaQTkjTHxIXe2/CSdit+/Q==
dependencies:
JSONStream "^1.3.4"
bluebird "^3.5.1"
@@ -5678,9 +5856,9 @@ object-copy@^0.1.0:
kind-of "^3.0.3"
object-inspect@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
- integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0"
+ integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==
object-is@^1.0.1:
version "1.1.2"
@@ -5695,6 +5873,11 @@ object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
+object-path@0.11.4:
+ version "0.11.4"
+ resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.11.4.tgz#370ae752fbf37de3ea70a861c23bba8915691949"
+ integrity sha1-NwrnUvvzfePqcKhhwju6iRVpGUk=
+
object-visit@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
@@ -5768,10 +5951,10 @@ onetime@^5.1.0:
dependencies:
mimic-fn "^2.1.0"
-open@7.0.3:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/open/-/open-7.0.3.tgz#db551a1af9c7ab4c7af664139930826138531c48"
- integrity sha512-sP2ru2v0P290WFfv49Ap8MF6PkzGNnGlAwHweB4WR4mr5d2d0woiCluUeJ218w7/+PmoBy9JmYgD5A4mLcWOFA==
+open@7.0.4:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/open/-/open-7.0.4.tgz#c28a9d315e5c98340bf979fdcb2e58664aa10d83"
+ integrity sha512-brSA+/yq+b08Hsr4c8fsEW2CRzk1BmfN3SAK/5VCHQ9bdoZJ4qa/+AfR0xHjlbbZUyPkUHs1b8x1RqdyZdkVqQ==
dependencies:
is-docker "^2.0.0"
is-wsl "^2.1.1"
@@ -5783,10 +5966,10 @@ opn@^5.5.0:
dependencies:
is-wsl "^1.1.0"
-ora@4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/ora/-/ora-4.0.3.tgz#752a1b7b4be4825546a7a3d59256fa523b6b6d05"
- integrity sha512-fnDebVFyz309A73cqCipVL1fBZewq4vwgSHfxh43vVy31mbyoQ8sCH3Oeaog/owYOs/lLlGVPCISQonTneg6Pg==
+ora@4.0.4:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/ora/-/ora-4.0.4.tgz#e8da697cc5b6a47266655bf68e0fb588d29a545d"
+ integrity sha512-77iGeVU1cIdRhgFzCK8aw1fbtT1B/iZAvWjS+l/o1x0RShMgxHUZaD2yDpWsNCPwXg9z1ZA78Kbdvr8kBmG/Ww==
dependencies:
chalk "^3.0.0"
cli-cursor "^3.1.0"
@@ -5832,26 +6015,19 @@ p-finally@^1.0.0:
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
-p-limit@^1.1.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
- integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
- dependencies:
- p-try "^1.0.0"
-
-p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.2.1, p-limit@^2.2.2:
+p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
dependencies:
p-try "^2.0.0"
-p-locate@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
- integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
+p-limit@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.2.tgz#1664e010af3cadc681baafd3e2a437be7b0fb5fe"
+ integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==
dependencies:
- p-limit "^1.1.0"
+ p-try "^2.0.0"
p-locate@^3.0.0:
version "3.0.0"
@@ -5872,10 +6048,10 @@ p-map@^2.0.0:
resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
-p-map@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
- integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
+p-map@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
+ integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
dependencies:
aggregate-error "^3.0.0"
@@ -5886,11 +6062,6 @@ p-retry@^3.0.1:
dependencies:
retry "^0.12.0"
-p-try@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
- integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
-
p-try@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
@@ -6040,12 +6211,10 @@ path-to-regexp@0.1.7:
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
-path-type@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
- integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
- dependencies:
- pify "^3.0.0"
+path-type@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+ integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
pbkdf2@^3.0.3:
version "3.1.1"
@@ -6063,7 +6232,7 @@ performance-now@^2.1.0:
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
-picomatch@^2.0.4, picomatch@^2.2.1:
+picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
version "2.2.2"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
@@ -6073,11 +6242,6 @@ pify@^2.0.0, pify@^2.3.0:
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
-pify@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
- integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
-
pify@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
@@ -6109,12 +6273,12 @@ pkg-dir@^4.1.0:
dependencies:
find-up "^4.0.0"
-pkg-up@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
- integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
+pnp-webpack-plugin@1.6.4:
+ version "1.6.4"
+ resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149"
+ integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==
dependencies:
- find-up "^2.1.0"
+ ts-pnp "^1.1.6"
portfinder@^1.0.26:
version "1.0.26"
@@ -6461,21 +6625,30 @@ postcss-value-parser@^3.0.0, postcss-value-parser@^3.2.3:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
-postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.0.3:
+postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.0.3, postcss-value-parser@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
-postcss@7.0.27:
- version "7.0.27"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9"
- integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==
+postcss@7.0.21:
+ version "7.0.21"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.21.tgz#06bb07824c19c2021c5d056d5b10c35b989f7e17"
+ integrity sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==
dependencies:
chalk "^2.4.2"
source-map "^0.6.1"
supports-color "^6.1.0"
-postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6:
+postcss@7.0.31:
+ version "7.0.31"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.31.tgz#332af45cb73e26c0ee2614d7c7fb02dfcc2bd6dd"
+ integrity sha512-a937VDHE1ftkjk+8/7nj/mrjtmkn69xxzJgRETXdAUU+IgOYPQNJF17haGWbeDxSyk++HA14UA98FurvPyBJOA==
+ dependencies:
+ chalk "^2.4.2"
+ source-map "^0.6.1"
+ supports-color "^6.1.0"
+
+postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.27, postcss@^7.0.30, postcss@^7.0.5, postcss@^7.0.6:
version "7.0.32"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d"
integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==
@@ -6489,11 +6662,6 @@ prepend-http@^1.0.0:
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
-private@^0.1.8:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
- integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
-
process-nextick-args@~2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
@@ -6517,13 +6685,6 @@ promise-retry@^1.1.1:
err-code "^1.0.0"
retry "^0.10.0"
-promise@^7.1.1:
- version "7.3.1"
- resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
- integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==
- dependencies:
- asap "~2.0.3"
-
protoduck@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/protoduck/-/protoduck-5.0.1.tgz#03c3659ca18007b69a50fd82a7ebcc516261151f"
@@ -6700,13 +6861,13 @@ raw-body@2.4.0:
iconv-lite "0.4.24"
unpipe "1.0.0"
-raw-loader@4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.0.tgz#d639c40fb9d72b5c7f8abc1fb2ddb25b29d3d540"
- integrity sha512-iINUOYvl1cGEmfoaLjnZXt4bKfT2LJnZZib5N/LLyAphC+Dd11vNP9CNVb38j+SAJpFI1uo8j9frmih53ASy7Q==
+raw-loader@4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.1.tgz#14e1f726a359b68437e183d5a5b7d33a3eba6933"
+ integrity sha512-baolhQBSi3iNh1cglJjA0mYzga+wePk7vdEX//1dTFd+v4TsQlQE0jitJSNF1OIP82rdYulH7otaVmdlDaJ64A==
dependencies:
- loader-utils "^1.2.3"
- schema-utils "^2.5.0"
+ loader-utils "^2.0.0"
+ schema-utils "^2.6.5"
read-cache@^1.0.0:
version "1.0.0"
@@ -6807,12 +6968,11 @@ regenerator-runtime@0.13.5, regenerator-runtime@^0.13.4:
integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
regenerator-transform@^0.14.2:
- version "0.14.4"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7"
- integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==
+ version "0.14.5"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
+ integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
dependencies:
"@babel/runtime" "^7.8.4"
- private "^0.1.8"
regex-not@^1.0.0, regex-not@^1.0.2:
version "1.0.2"
@@ -6822,6 +6982,11 @@ regex-not@^1.0.0, regex-not@^1.0.2:
extend-shallow "^3.0.2"
safe-regex "^1.1.0"
+regex-parser@2.2.10:
+ version "2.2.10"
+ resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.10.tgz#9e66a8f73d89a107616e63b39d4deddfee912b37"
+ integrity sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA==
+
regexp.prototype.flags@^1.2.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75"
@@ -6869,7 +7034,7 @@ repeat-string@^1.6.1:
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
-request@^2.83.0, request@^2.87.0, request@^2.88.0:
+request@^2.87.0, request@^2.88.0:
version "2.88.2"
resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
@@ -6922,12 +7087,28 @@ resolve-from@^3.0.0:
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
integrity sha1-six699nWiBvItuZTM17rywoYh0g=
+resolve-url-loader@3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.1.tgz#28931895fa1eab9be0647d3b2958c100ae3c0bf0"
+ integrity sha512-K1N5xUjj7v0l2j/3Sgs5b8CjrrgtC70SmdCuZiJ8tSyb5J+uk3FoeZ4b7yTnH6j7ngI+Bc5bldHJIa8hYdu2gQ==
+ dependencies:
+ adjust-sourcemap-loader "2.0.0"
+ camelcase "5.3.1"
+ compose-function "3.0.3"
+ convert-source-map "1.7.0"
+ es6-iterator "2.0.3"
+ loader-utils "1.2.3"
+ postcss "7.0.21"
+ rework "1.0.1"
+ rework-visit "1.0.0"
+ source-map "0.6.1"
+
resolve-url@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2:
+resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.8.1:
version "1.17.0"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
@@ -6957,6 +7138,24 @@ retry@^0.12.0:
resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
+reusify@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
+ integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
+
+rework-visit@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a"
+ integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo=
+
+rework@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7"
+ integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=
+ dependencies:
+ convert-source-map "^0.3.3"
+ css "^2.0.0"
+
rfdc@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.1.4.tgz#ba72cc1367a0ccd9cf81a870b3b58bd3ad07f8c2"
@@ -6979,7 +7178,7 @@ rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.2:
dependencies:
glob "^7.1.3"
-rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1:
+rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3:
version "2.7.1"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
@@ -6994,10 +7193,10 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
hash-base "^3.0.0"
inherits "^2.0.1"
-rollup@2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.1.0.tgz#552e248e397a06b9c6db878c0564ca4ee06729c9"
- integrity sha512-gfE1455AEazVVTJoeQtcOq/U6GSxwoj4XPSWVsuWmgIxj7sBQNLDOSA82PbdMe+cP8ql8fR1jogPFe8Wg8g4SQ==
+rollup@2.10.9:
+ version "2.10.9"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.10.9.tgz#17dcc6753c619efcc1be2cf61d73a87827eebdf9"
+ integrity sha512-dY/EbjiWC17ZCUSyk14hkxATAMAShkMsD43XmZGWjLrgFj15M3Dw2kEkA9ns64BiLFm9PKN6vTQw8neHwK74eg==
optionalDependencies:
fsevents "~2.1.2"
@@ -7006,6 +7205,11 @@ run-async@^2.4.0:
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
+run-parallel@^1.1.9:
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679"
+ integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==
+
run-queue@^1.0.0, run-queue@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
@@ -7013,20 +7217,20 @@ run-queue@^1.0.0, run-queue@^1.0.3:
dependencies:
aproba "^1.1.1"
-rxjs@6.5.4:
- version "6.5.4"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.4.tgz#e0777fe0d184cec7872df147f303572d414e211c"
- integrity sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q==
- dependencies:
- tslib "^1.9.0"
-
-rxjs@^6.5.3, rxjs@~6.5.4:
+rxjs@6.5.5, rxjs@~6.5.5:
version "6.5.5"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec"
integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ==
dependencies:
tslib "^1.9.0"
+rxjs@^6.5.3:
+ version "6.6.0"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz#af2901eedf02e3a83ffa7f886240ff9018bbec84"
+ integrity sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg==
+ dependencies:
+ tslib "^1.9.0"
+
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
@@ -7044,7 +7248,7 @@ safe-regex@^1.1.0:
dependencies:
ret "~0.1.10"
-"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, safer-buffer@~2.1.0:
+"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, safer-buffer@~2.1.0:
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
@@ -7060,10 +7264,10 @@ sass-loader@8.0.2:
schema-utils "^2.6.1"
semver "^6.3.0"
-sass@1.26.3:
- version "1.26.3"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.26.3.tgz#412df54486143b76b5a65cdf7569e86f44659f46"
- integrity sha512-5NMHI1+YFYw4sN3yfKjpLuV9B5l7MqQ6FlkTcC4FT+oHbBRUZoSjHrrt/mE0nFXJyY2kQtU9ou9HxvFVjLFuuw==
+sass@1.26.5:
+ version "1.26.5"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.26.5.tgz#2d7aecfbbabfa298567c8f06615b6e24d2d68099"
+ integrity sha512-FG2swzaZUiX53YzZSjSakzvGtlds0lcbF+URuU9mxOv7WBh7NhXEVDa4kPKN4hN6fC2TkOTOKqiqp6d53N9X5Q==
dependencies:
chokidar ">=2.0.0 <4.0.0"
@@ -7088,7 +7292,7 @@ schema-utils@^1.0.0:
ajv-errors "^1.0.0"
ajv-keywords "^3.1.0"
-schema-utils@^2.5.0, schema-utils@^2.6.1, schema-utils@^2.6.4, schema-utils@^2.6.5:
+schema-utils@^2.6.1, schema-utils@^2.6.4, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0:
version "2.7.0"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7"
integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==
@@ -7133,7 +7337,7 @@ semver-intersect@1.4.0:
dependencies:
semver "^5.0.0"
-"semver@2 || 3 || 4 || 5", semver@^5.0.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
+"semver@2 || 3 || 4 || 5", semver@^5.0.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0:
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
@@ -7143,21 +7347,16 @@ semver@7.0.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
-semver@7.1.3:
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.3.tgz#e4345ce73071c53f336445cfc19efb1c311df2a6"
- integrity sha512-ekM0zfiA9SCBlsKa2X1hxyxiI4L3B6EbVJkkdgQXnSEEaHlGdvyodMruTiulSRWMMB4NeIuYNMC9rTKTz97GxA==
+semver@7.3.2, semver@^7.0.0, semver@^7.1.1:
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
+ integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
semver@^6.0.0, semver@^6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-semver@^7.0.0, semver@^7.1.1:
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
- integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
-
send@0.17.1:
version "0.17.1"
resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
@@ -7177,18 +7376,20 @@ send@0.17.1:
range-parser "~1.2.1"
statuses "~1.5.0"
-serialize-javascript@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
- integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
-
-serialize-javascript@^3.1.0:
+serialize-javascript@^3.0.0, serialize-javascript@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea"
integrity sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg==
dependencies:
randombytes "^2.1.0"
+serialize-javascript@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
+ integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
+ dependencies:
+ randombytes "^2.1.0"
+
serve-index@^1.9.1:
version "1.9.1"
resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
@@ -7286,10 +7487,10 @@ simple-swizzle@^0.2.2:
dependencies:
is-arrayish "^0.3.1"
-slash@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
- integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
+slash@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+ integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
smart-buffer@^4.1.0:
version "4.1.0"
@@ -7430,13 +7631,16 @@ source-list-map@^2.0.0:
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
-source-map-loader@0.2.4:
- version "0.2.4"
- resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-0.2.4.tgz#c18b0dc6e23bf66f6792437557c569a11e072271"
- integrity sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==
+source-map-loader@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-1.0.0.tgz#240b88575a9b0d27214aeecbd4e7686af95cfa56"
+ integrity sha512-ZayyQCSCrQazN50aCvuS84lJT4xc1ZAcykH5blHaBdVveSwjiFK8UGMPvao0ho54DTb0Jf7m57uRRG/YYUZ2Fg==
dependencies:
- async "^2.5.0"
- loader-utils "^1.1.0"
+ data-urls "^2.0.0"
+ iconv-lite "^0.5.1"
+ loader-utils "^2.0.0"
+ schema-utils "^2.6.6"
+ source-map "^0.6.0"
source-map-resolve@^0.5.0, source-map-resolve@^0.5.2:
version "0.5.3"
@@ -7449,7 +7653,7 @@ source-map-resolve@^0.5.0, source-map-resolve@^0.5.2:
source-map-url "^0.4.0"
urix "^0.1.0"
-source-map-support@^0.5.5, source-map-support@^0.5.6, source-map-support@~0.5.12:
+source-map-support@0.5.19, source-map-support@^0.5.5, source-map-support@^0.5.6, source-map-support@~0.5.12:
version "0.5.19"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
@@ -7469,6 +7673,11 @@ source-map-url@^0.4.0:
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
+source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
source-map@0.7.3, source-map@^0.7.3:
version "0.7.3"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
@@ -7479,11 +7688,6 @@ source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7:
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
-source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
- integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-
sourcemap-codec@^1.4.4, sourcemap-codec@^1.4.8:
version "1.4.8"
resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
@@ -7538,10 +7742,10 @@ spdy@^4.0.2:
select-hose "^2.0.0"
spdy-transport "^3.0.0"
-speed-measure-webpack-plugin@1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/speed-measure-webpack-plugin/-/speed-measure-webpack-plugin-1.3.1.tgz#69840a5cdc08b4638697dac7db037f595d7f36a0"
- integrity sha512-qVIkJvbtS9j/UeZumbdfz0vg+QfG/zxonAjzefZrqzkr7xOncLVXkeGbTpzd1gjCBM4PmVNkWlkeTVhgskAGSQ==
+speed-measure-webpack-plugin@1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/speed-measure-webpack-plugin/-/speed-measure-webpack-plugin-1.3.3.tgz#6ff894fc83e8a6310dde3af863a0329cd79da4f5"
+ integrity sha512-2ljD4Ch/rz2zG3HsLsnPfp23osuPBS0qPuz9sGpkNXTN1Ic4M+W9xB8l8rS8ob2cO4b1L+WTJw/0AJwWYVgcxQ==
dependencies:
chalk "^2.0.1"
@@ -7584,14 +7788,6 @@ ssri@^6.0.0, ssri@^6.0.1:
dependencies:
figgy-pudding "^3.5.1"
-ssri@^7.0.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-7.1.0.tgz#92c241bf6de82365b5c7fb4bd76e975522e1294d"
- integrity sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g==
- dependencies:
- figgy-pudding "^3.5.1"
- minipass "^3.1.1"
-
ssri@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz#79ca74e21f8ceaeddfcb4b90143c458b8d988808"
@@ -7681,7 +7877,7 @@ string-width@^4.1.0, string-width@^4.2.0:
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.0"
-string.prototype.trimend@^1.0.0:
+string.prototype.trimend@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913"
integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==
@@ -7689,25 +7885,7 @@ string.prototype.trimend@^1.0.0:
define-properties "^1.1.3"
es-abstract "^1.17.5"
-string.prototype.trimleft@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc"
- integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.5"
- string.prototype.trimstart "^1.0.0"
-
-string.prototype.trimright@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3"
- integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.5"
- string.prototype.trimend "^1.0.0"
-
-string.prototype.trimstart@^1.0.0:
+string.prototype.trimstart@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"
integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==
@@ -7750,23 +7928,18 @@ strip-ansi@^6.0.0:
dependencies:
ansi-regex "^5.0.0"
-strip-bom@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
- integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
-
strip-eof@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-style-loader@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.3.tgz#9e826e69c683c4d9bf9db924f85e9abb30d5e200"
- integrity sha512-rlkH7X/22yuwFYK357fMN/BxYOorfnfq0eD7+vqlemSK4wEcejFF1dg4zxP0euBW8NrYx2WZzZ8PPFevr7D+Kw==
+style-loader@1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.2.1.tgz#c5cbbfbf1170d076cfdd86e0109c5bba114baa1a"
+ integrity sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg==
dependencies:
- loader-utils "^1.2.3"
- schema-utils "^2.6.4"
+ loader-utils "^2.0.0"
+ schema-utils "^2.6.6"
stylehacks@^4.0.0:
version "4.0.3"
@@ -7868,7 +8041,7 @@ tar@^4.4.10:
safe-buffer "^5.1.2"
yallist "^3.0.3"
-tar@^6.0.1:
+tar@^6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.2.tgz#5df17813468a6264ff14f766886c622b84ae2f39"
integrity sha512-Glo3jkRtPcvpDlAs/0+hozav78yoXKFr+c4wgw62NNMO3oo4AaJdCo21Uu7lcwr55h39W2XD1LMERc64wtbItg==
@@ -7880,19 +8053,19 @@ tar@^6.0.1:
mkdirp "^1.0.3"
yallist "^4.0.0"
-terser-webpack-plugin@2.3.5:
- version "2.3.5"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.5.tgz#5ad971acce5c517440ba873ea4f09687de2f4a81"
- integrity sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w==
- dependencies:
- cacache "^13.0.1"
- find-cache-dir "^3.2.0"
- jest-worker "^25.1.0"
- p-limit "^2.2.2"
- schema-utils "^2.6.4"
- serialize-javascript "^2.1.2"
+terser-webpack-plugin@3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-3.0.1.tgz#31928c9330a582fb5ec6f90805337289b85cb8fe"
+ integrity sha512-eFDtq8qPUEa9hXcUzTwKXTnugIVtlqc1Z/ZVhG8LmRT3lgRY13+pQTnFLY2N7ATB6TKCHuW/IGjoAnZz9wOIqw==
+ dependencies:
+ cacache "^15.0.3"
+ find-cache-dir "^3.3.1"
+ jest-worker "^26.0.0"
+ p-limit "^2.3.0"
+ schema-utils "^2.6.6"
+ serialize-javascript "^3.0.0"
source-map "^0.6.1"
- terser "^4.4.3"
+ terser "^4.6.13"
webpack-sources "^1.4.3"
terser-webpack-plugin@^1.4.3:
@@ -7910,19 +8083,19 @@ terser-webpack-plugin@^1.4.3:
webpack-sources "^1.4.0"
worker-farm "^1.7.0"
-terser@4.6.10:
- version "4.6.10"
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.10.tgz#90f5bd069ff456ddbc9503b18e52f9c493d3b7c2"
- integrity sha512-qbF/3UOo11Hggsbsqm2hPa6+L4w7bkr+09FNseEe8xrcVD3APGLFqE+Oz1ZKAxjYnFsj80rLOfgAtJ0LNJjtTA==
+terser@4.7.0:
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-4.7.0.tgz#15852cf1a08e3256a80428e865a2fa893ffba006"
+ integrity sha512-Lfb0RiZcjRDXCC3OSHJpEkxJ9Qeqs6mp2v4jf2MHfy8vGERmVDuvjXdd/EnP5Deme5F2yBRBymKmKHCBg2echw==
dependencies:
commander "^2.20.0"
source-map "~0.6.1"
source-map-support "~0.5.12"
-terser@^4.1.2, terser@^4.4.3:
- version "4.7.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.7.0.tgz#15852cf1a08e3256a80428e865a2fa893ffba006"
- integrity sha512-Lfb0RiZcjRDXCC3OSHJpEkxJ9Qeqs6mp2v4jf2MHfy8vGERmVDuvjXdd/EnP5Deme5F2yBRBymKmKHCBg2echw==
+terser@^4.1.2, terser@^4.6.13:
+ version "4.8.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
+ integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
dependencies:
commander "^2.20.0"
source-map "~0.6.1"
@@ -8039,6 +8212,13 @@ tough-cookie@~2.5.0:
psl "^1.1.28"
punycode "^2.1.1"
+tr46@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479"
+ integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==
+ dependencies:
+ punycode "^2.1.1"
+
tree-kill@1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"
@@ -8055,10 +8235,15 @@ ts-node@~8.3.0:
source-map-support "^0.5.6"
yn "^3.0.0"
-tslib@1.11.1:
- version "1.11.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
- integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
+ts-pnp@^1.1.6:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
+ integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
+
+tslib@2.0.0, tslib@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.0.tgz#18d13fc2dce04051e20f074cc8387fd8089ce4f3"
+ integrity sha512-lTqkx847PI7xEDYJntxZH89L2/aXInsyF2luSafe/+0fHOMjlBNXdH6th7f70qxLDhul7KZK0zC8V5ZIyHl0/g==
tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0:
version "1.13.0"
@@ -8121,20 +8306,25 @@ type-is@~1.6.17, type-is@~1.6.18:
media-typer "0.3.0"
mime-types "~2.1.24"
+type@^1.0.1:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0"
+ integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
+
+type@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3"
+ integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==
+
typedarray@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
-typescript@3.6.5:
- version "3.6.5"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.5.tgz#dae20114a7b4ff4bd642db9c8c699f2953e8bbdb"
- integrity sha512-BEjlc0Z06ORZKbtcxGrIvvwYs5hAnuo6TKdNFL55frVDlB+na3z5bsLhFaIxmT+dPWgBIjMo6aNnTOgHHmHgiQ==
-
-typescript@~3.8.3:
- version "3.8.3"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061"
- integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==
+typescript@~3.9.5:
+ version "3.9.6"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.6.tgz#8f3e0198a34c3ae17091b35571d3afd31999365a"
+ integrity sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==
ua-parser-js@0.7.21:
version "0.7.21"
@@ -8309,10 +8499,10 @@ utils-merge@1.0.1:
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
-uuid@7.0.2:
- version "7.0.2"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.2.tgz#7ff5c203467e91f5e0d85cfcbaaf7d2ebbca9be6"
- integrity sha512-vy9V/+pKG+5ZTYKf+VcphF5Oc6EFiu3W8Nv3P3zIh0EqVI80ZxOzuPfe9EHjkFNvf8+xuTHVeei4Drydlx4zjw==
+uuid@8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.1.0.tgz#6f1536eb43249f473abc6bd58ff983da1ca30d8d"
+ integrity sha512-CI18flHDznR0lq54xBycOVmphdCYnQLKn8abKn7PXUiKUGdEd+/l9LWNJmugXel4hXq7S+RMNl34ecyC9TntWg==
uuid@^3.0.0, uuid@^3.3.2, uuid@^3.4.0:
version "3.4.0"
@@ -8370,7 +8560,7 @@ watchpack-chokidar2@^2.0.0:
dependencies:
chokidar "^2.1.8"
-watchpack@^1.6.0:
+watchpack@^1.6.1:
version "1.7.2"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa"
integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g==
@@ -8420,6 +8610,11 @@ webdriver-manager@^12.1.7:
semver "^5.3.0"
xml2js "^0.4.17"
+webidl-conversions@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
+ integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
+
webpack-dev-middleware@3.7.2, webpack-dev-middleware@^3.7.2:
version "3.7.2"
resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#0019c3db716e3fa5cecbf64f2ab88a74bab331f3"
@@ -8493,23 +8688,23 @@ webpack-sources@1.4.3, webpack-sources@^1.1.0, webpack-sources@^1.2.0, webpack-s
source-list-map "^2.0.0"
source-map "~0.6.1"
-webpack-subresource-integrity@1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/webpack-subresource-integrity/-/webpack-subresource-integrity-1.4.0.tgz#44963a64c9a214ad729158e7f46d52c2525cc88a"
- integrity sha512-GB1kB/LwAWC3CxwcedGhMkxGpNZxSheCe1q+KJP1bakuieAdX/rGHEcf5zsEzhKXpqsGqokgsDoD9dIkr61VDQ==
+webpack-subresource-integrity@1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/webpack-subresource-integrity/-/webpack-subresource-integrity-1.4.1.tgz#e8bf918b444277df46a66cd84542cbcdc5a6272d"
+ integrity sha512-XMLFInbGbB1HV7K4vHWANzc1CN0t/c4bBvnlvGxGwV45yE/S/feAXIm8dJsCkzqWtSKnmaEgTp/meyeThxG4Iw==
dependencies:
webpack-sources "^1.3.0"
-webpack@4.42.0:
- version "4.42.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.0.tgz#b901635dd6179391d90740a63c93f76f39883eb8"
- integrity sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==
+webpack@4.43.0:
+ version "4.43.0"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6"
+ integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g==
dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-module-context" "1.8.5"
- "@webassemblyjs/wasm-edit" "1.8.5"
- "@webassemblyjs/wasm-parser" "1.8.5"
- acorn "^6.2.1"
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-module-context" "1.9.0"
+ "@webassemblyjs/wasm-edit" "1.9.0"
+ "@webassemblyjs/wasm-parser" "1.9.0"
+ acorn "^6.4.1"
ajv "^6.10.2"
ajv-keywords "^3.4.1"
chrome-trace-event "^1.0.2"
@@ -8520,13 +8715,13 @@ webpack@4.42.0:
loader-utils "^1.2.3"
memory-fs "^0.4.1"
micromatch "^3.1.10"
- mkdirp "^0.5.1"
+ mkdirp "^0.5.3"
neo-async "^2.6.1"
node-libs-browser "^2.2.1"
schema-utils "^1.0.0"
tapable "^1.1.3"
terser-webpack-plugin "^1.4.3"
- watchpack "^1.6.0"
+ watchpack "^1.6.1"
webpack-sources "^1.4.1"
websocket-driver@0.6.5:
@@ -8550,6 +8745,20 @@ websocket-extensions@>=0.1.1:
resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
+whatwg-mimetype@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
+ integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
+
+whatwg-url@^8.0.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.1.0.tgz#c628acdcf45b82274ce7281ee31dd3c839791771"
+ integrity sha512-vEIkwNi9Hqt4TV9RdnaBPNt+E2Sgmo3gePebCRgZ1R7g6d23+53zCTnuB0amKI4AXq6VM8jj2DUAa0S1vjJxkw==
+ dependencies:
+ lodash.sortby "^4.7.0"
+ tr46 "^2.0.2"
+ webidl-conversions "^5.0.0"
+
when@~3.6.x:
version "3.6.4"
resolved "https://registry.yarnpkg.com/when/-/when-3.6.4.tgz#473b517ec159e2b85005497a13983f095412e34e"
@@ -8612,9 +8821,9 @@ ws@^6.2.1:
async-limiter "~1.0.0"
ws@^7.1.2:
- version "7.3.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.0.tgz#4b2f7f219b3d3737bc1a2fbf145d825b94d38ffd"
- integrity sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==
+ version "7.3.1"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8"
+ integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA==
ws@~6.1.0:
version "6.1.4"
@@ -8669,7 +8878,7 @@ yargs-parser@^13.1.2:
camelcase "^5.0.0"
decamelize "^1.2.0"
-yargs-parser@^18.1.0, yargs-parser@^18.1.1:
+yargs-parser@^18.1.0, yargs-parser@^18.1.2:
version "18.1.3"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
@@ -8711,9 +8920,9 @@ yargs@^13.3.2:
yargs-parser "^13.1.2"
yargs@^15.3.1:
- version "15.3.1"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.1.tgz#9505b472763963e54afe60148ad27a330818e98b"
- integrity sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==
+ version "15.4.1"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
+ integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
dependencies:
cliui "^6.0.0"
decamelize "^1.2.0"
@@ -8725,7 +8934,7 @@ yargs@^15.3.1:
string-width "^4.2.0"
which-module "^2.0.0"
y18n "^4.0.0"
- yargs-parser "^18.1.1"
+ yargs-parser "^18.1.2"
yeast@0.1.2:
version "0.1.2"
@@ -8737,7 +8946,7 @@ yn@^3.0.0:
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
-zone.js@~0.10.2:
+zone.js@~0.10.3:
version "0.10.3"
resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.10.3.tgz#3e5e4da03c607c9dcd92e37dd35687a14a140c16"
integrity sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg==
diff --git a/public_api.ts b/public_api.ts
index 5b0a060..87490fe 100644
--- a/public_api.ts
+++ b/public_api.ts
@@ -3,7 +3,7 @@
* Build an Angular library compatible with AoT compilation & Tree shaking like an official package
* Copyright Roberto Simonetti
* MIT license
- * https://github.com/robisim74/agm-direction
+ * https://github.com/robisim74/angular-library-starter
*/
/**
diff --git a/src/directive/agm-direction.directive.ts b/src/directive/agm-direction.directive.ts
index 0cd538b..5719cb4 100644
--- a/src/directive/agm-direction.directive.ts
+++ b/src/directive/agm-direction.directive.ts
@@ -1,4 +1,3 @@
-import 'googlemaps';
import { Directive, Input, Output, OnChanges, OnInit, EventEmitter, OnDestroy } from '@angular/core';
import { GoogleMapsAPIWrapper } from '@agm/core';
@@ -7,17 +6,17 @@ import { GoogleMapsAPIWrapper } from '@agm/core';
})
export class AgmDirection implements OnChanges, OnInit, OnDestroy {
- @Input() origin?: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;
+ @Input() origin: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;
- @Input() destination?: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;
+ @Input() destination: string | google.maps.Place | google.maps.LatLng | google.maps.LatLngLiteral;
- @Input() travelMode: google.maps.TravelMode;
+ @Input() travelMode?: google.maps.TravelMode;
- @Input() transitOptions: google.maps.TransitOptions;
+ @Input() transitOptions?: google.maps.TransitOptions;
- @Input() drivingOptions: google.maps.DrivingOptions;
+ @Input() drivingOptions?: google.maps.DrivingOptions;
- @Input() waypoints: google.maps.DirectionsWaypoint[];
+ @Input() waypoints: google.maps.DirectionsWaypoint[] = [];
@Input() optimizeWaypoints = true;
@@ -27,7 +26,7 @@ export class AgmDirection implements OnChanges, OnInit, OnDestroy {
@Input() avoidTolls = false;
- @Input() renderOptions: google.maps.DirectionsRendererOptions;
+ @Input() renderOptions?: google.maps.DirectionsRendererOptions;
@Input() panel?: Element;
@@ -35,7 +34,7 @@ export class AgmDirection implements OnChanges, OnInit, OnDestroy {
origin: google.maps.MarkerOptions,
destination: google.maps.MarkerOptions,
waypoints: google.maps.MarkerOptions,
- };
+ } = { origin: {}, destination: {}, waypoints: {} };
@Input() infoWindow: google.maps.InfoWindow;
@@ -43,7 +42,7 @@ export class AgmDirection implements OnChanges, OnInit, OnDestroy {
@Input() visible = true;
// Render exist direction
- @Input() renderRoute: any;
+ @Input() renderRoute?: google.maps.DirectionsResult | null;
// Direction change event handler
@Output() onChange: EventEmitter = new EventEmitter();
@@ -65,8 +64,8 @@ export class AgmDirection implements OnChanges, OnInit, OnDestroy {
public directionsRenderer: google.maps.DirectionsRenderer;
// Use for custom marker
- private originMarker: any;
- private destinationMarker: any;
+ private originMarker?: any;
+ private destinationMarker?: any;
private waypointsMarker: Array = [];
// Use for visible flag
@@ -150,16 +149,16 @@ export class AgmDirection implements OnChanges, OnInit, OnDestroy {
}
// Render exist direction
- if (typeof this.renderRoute === 'object' && this.renderRoute !== null) {
+ if (this.renderRoute) {
this.directionsRenderer.setDirections(this.renderRoute);
- this.renderRoute = null; // or set undefined, ''
+ this.renderRoute = undefined;
} else {
// Request new direction
this.directionsService.route({
origin: this.origin,
destination: this.destination,
- travelMode: this.travelMode,
+ travelMode: this.travelMode || google.maps.TravelMode.DRIVING,
transitOptions: this.transitOptions,
drivingOptions: this.drivingOptions,
waypoints: this.waypoints,
@@ -303,13 +302,11 @@ export class AgmDirection implements OnChanges, OnInit, OnDestroy {
marker = new google.maps.Marker(markerOpts);
// https://developers.google.com/maps/documentation/javascript/reference/marker?hl=zh-tw#MarkerOptions.clickable
- // @ts-ignore
- if (marker.clickable) {
+ if (marker.getClickable()) {
marker.addListener('click', () => {
const infowindoContent: string = typeof markerOpts.infoWindow === 'undefined' ? content : markerOpts.infoWindow;
this.infoWindow.setContent(infowindoContent);
- // @ts-ignore
- this.infoWindow.open(map, marker);
+ this.infoWindow.open(map, marker as google.maps.MVCObject);
});
}
return marker;
diff --git a/src/modules/agm-direction.module.ts b/src/modules/agm-direction.module.ts
index 1e395d5..01045b0 100644
--- a/src/modules/agm-direction.module.ts
+++ b/src/modules/agm-direction.module.ts
@@ -10,13 +10,13 @@ import { AgmDirection } from '../directive/agm-direction.directive';
]
})
export class AgmDirectionModule {
- public static forRoot(): ModuleWithProviders {
+ public static forRoot(): ModuleWithProviders {
return {
ngModule: AgmDirectionModule,
};
}
- public static forChild(): ModuleWithProviders {
+ public static forChild(): ModuleWithProviders {
return {
ngModule: AgmDirectionModule,
};
diff --git a/tsconfig-build.json b/tsconfig-build.json
index 4b9250a..d6b2f61 100644
--- a/tsconfig-build.json
+++ b/tsconfig-build.json
@@ -15,14 +15,16 @@
"strict": true,
"strictPropertyInitialization": false,
"moduleResolution": "node",
- "module": "es2015",
+ "module": "es2020",
"target": "es2015",
"lib": [
- "es2015",
+ "es2018",
"dom"
],
"skipLibCheck": true,
- "types": [],
+ "types": [
+ "googlemaps"
+ ],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
diff --git a/tsconfig.json b/tsconfig.json
index bfbc5d4..a051670 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,23 +5,20 @@
"experimentalDecorators": true,
"strict": true,
"strictPropertyInitialization": false,
- "module": "commonjs",
+ "module": "es2020",
"moduleResolution": "node",
"rootDir": ".",
"sourceMap": true,
"inlineSources": true,
- "target": "es5",
+ "target": "es2015",
"skipLibCheck": true,
"lib": [
- "es2015",
+ "es2018",
"dom"
],
"typeRoots": [
"node_modules/@types/"
],
- "types": [
- "googlemaps"
- ]
},
"exclude": [
"node_modules"
diff --git a/yarn.lock b/yarn.lock
index 6a22c07..942937e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,27 +2,31 @@
# yarn lockfile v1
-"@agm/core@^1.0.0-beta.2":
+"@agm/core@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@agm/core/-/core-1.1.0.tgz#6f8dcbac068f681fe4fa9b0a0cbf660588025911"
integrity sha512-cMvmm3+3/uuVFurLv1FKhE0/6ssIlDvYBjQFCi8ELg7h0OY2MkIU1MXWr7z+f/xZ08E936I4eeddni6k4yUTIA==
dependencies:
tslib "^1.9.0"
-"@angular/animations@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-9.1.7.tgz#09bf7c84c234d8b6ecaa101024a3b3e69ab198cd"
- integrity sha512-1wW8ndGMLDuE2LpTN2RNRz1Dt7JgVBeVmOPMgzoA7g1uuvm+jESTrGG7W3BzLzG0BE2TeXt0fY90o4iU+S2Rmg==
+"@angular/animations@10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-10.0.0.tgz#a778f04584c93e7fb121ce5580e86ef0f6bc6dfe"
+ integrity sha512-L6xnrqSZxAqznx5so3J7jGtZGu44rXtH9R98HFUBQWM596ZY0Pf1i08c1hThuC0b0Yn8WeddQwU6HkstbX4Cmg==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/common@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/common/-/common-9.1.7.tgz#79ebbe3c08ced0070314beb10bbccfb8927dfe62"
- integrity sha512-04ef+J8bnOnjYbdRsm82IdIaaLFZ6QWh4SLtjnYhgCjEe4Stf59g+zRNPMauMFDQYDCp3foPo0djk1CPfEd8AQ==
+"@angular/common@10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/common/-/common-10.0.0.tgz#a819dacbf3b9a3629f7e0d43a504cdd3b5fad58d"
+ integrity sha512-zaLHMRQqjZyoIc15tLGrwg5ugcVlggqATiMlMVNo9ddqxwpZ4qHK2fdAvqQy9FfWKaPGi6NpIBSR31RGV0ircw==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/compiler-cli@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-9.1.7.tgz#ecd1d47b0368ed21dfcef980b3aaeb37085a3612"
- integrity sha512-8HT8+UuSohrXlF90eewG2XuhtOEIfJ2UlijnSB10/+ZyroSdTKckoiFSps86nTd/EfrBblqNUMbwjOxIkzac3w==
+"@angular/compiler-cli@10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-10.0.0.tgz#6fe60e239b01fd10d3923a3de88877512e0e2d40"
+ integrity sha512-KusRkS1NKPrjhj3BXoxRgeejuJVy/ra4dcDV3hpscRmR8FSdim3rs2H+lYK2hZ26ISGsYUvC8cHNaMqP2U3X+g==
dependencies:
canonical-path "1.0.0"
chokidar "^3.0.0"
@@ -35,34 +39,44 @@
semver "^6.3.0"
source-map "^0.6.1"
sourcemap-codec "^1.4.8"
+ tslib "^2.0.0"
yargs "15.3.0"
-"@angular/compiler@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-9.1.7.tgz#e094f99f8742994761adeb1fd8090b21d2abff98"
- integrity sha512-BiHJ3rAd00aJkur7ohnXjqBmz2QkSTAAFWLuBTYuHysxP4zJD54y4uUtsrCUReKL+8dkUv8AcfXBAkCBLvBUYg==
+"@angular/compiler@10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-10.0.0.tgz#15f0a0e5760ebc6fcbc06b0b3bb5f110282cf03d"
+ integrity sha512-meyJKPLLhkgjxF4dvdJq/sw7MI7KvpgYADoFt2K/5dt48ExXRj+kDlyQC6FAwm9mbgSea/A+JpDG8HMPU7AK5Q==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/core@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/core/-/core-9.1.7.tgz#0465c26d9101389602e3ff9e502f83f3655e9fe1"
- integrity sha512-uJSZ+rdGL47gc3A+Fal1XwJYB4WWpYJrNifvoQ2nOs+X5Qu+j0HN6GXPJb4kixoNzjYCGxmLoirdT3xhNZFcfQ==
+"@angular/core@10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/core/-/core-10.0.0.tgz#b199450576f8acc0549d2836cfa04294fa3a585e"
+ integrity sha512-N1m6op428ktgcsnXqqspb1xGZ9gp664Jmb4JoVajCD3JXucRfidw+vt3kPOldbWA6M4pIu5ZtZY3IZc2GrK5UQ==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/platform-browser-dynamic@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-9.1.7.tgz#cf20e8f9ba3512ca906d7f21cf0926f0222a95ad"
- integrity sha512-DyUDGxp4kF4majcm9COVzu/9wzmgnfj+d6GUEjYkbqSH9QP05LonJ6wHMNxNMN6qMfawdCxDe0TnNDRPmHUj9w==
+"@angular/platform-browser-dynamic@10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-10.0.0.tgz#edf99f3276fa4f13a2a533f742053286fb005354"
+ integrity sha512-Ol9dMU/UB8PZ1xQkcILmANC+tA1Y/6YeYc8+MYnZUH7uAMXV6kscg9C5fK9JixSldOOS05AQZAdEty9ESjFNNg==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/platform-browser@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-9.1.7.tgz#47e473660c772f80245bcf872aa7e3df9e875a70"
- integrity sha512-zwNCnn4Ozax80YrkFcLoQ/7bVR7jPk7+QT++Nf9MmQwsaqa0Ve1IYa6Hg9Y1Kf4wquI9TdxMN17TPKmX8iNIaA==
+"@angular/platform-browser@10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-10.0.0.tgz#88cb200f611032c8fd2a54d3d87bda85c09f9dca"
+ integrity sha512-2gp53WjGUrL1uReewU21IZJa4KFpbigCyDYB0j/KwTkIGrdwYCOjD0/04oHYjkpazPe/VIu3aN7Gb3PgUa3X/Q==
+ dependencies:
+ tslib "^2.0.0"
-"@angular/platform-server@9.1.7":
- version "9.1.7"
- resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-9.1.7.tgz#b6648cfd2aeb922f1df9954483f7a1538fbf396b"
- integrity sha512-EapDvdLuW0HAg17FOFpwPAPAPk6/qV14rJj1gylqXfjsVNmjwxJvEkwgzXGnV28w7kJzTfm5J+jBCw5MWe80tA==
+"@angular/platform-server@10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-10.0.0.tgz#d6398afd33cb1428d15150e9cc960297f41afabb"
+ integrity sha512-m2Gj8FU9Qrlx0+bRtN0vkOsIT0tV+wYPYhrsPgaz8/jw8SAnvuHZ0avO/X0IIB+ub4Kd0sH46nrEzU2MVERlww==
dependencies:
domino "^2.1.2"
+ tslib "^2.0.0"
xhr2 "^0.2.0"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
@@ -72,14 +86,13 @@
dependencies:
"@babel/highlight" "^7.10.4"
-"@babel/generator@^7.10.4", "@babel/generator@^7.4.0":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243"
- integrity sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng==
+"@babel/generator@^7.10.5", "@babel/generator@^7.4.0":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.5.tgz#1b903554bc8c583ee8d25f1e8969732e6b829a69"
+ integrity sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig==
dependencies:
- "@babel/types" "^7.10.4"
+ "@babel/types" "^7.10.5"
jsesc "^2.5.1"
- lodash "^4.17.13"
source-map "^0.5.0"
"@babel/helper-function-name@^7.10.4":
@@ -119,15 +132,15 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.10.4", "@babel/parser@^7.4.3":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.4.tgz#9eedf27e1998d87739fb5028a5120557c06a1a64"
- integrity sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA==
+"@babel/parser@^7.10.4", "@babel/parser@^7.10.5", "@babel/parser@^7.4.3":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b"
+ integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==
"@babel/runtime@^7.3.1":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.4.tgz#a6724f1a6b8d2f6ea5236dbfe58c7d7ea9c5eb99"
- integrity sha512-UpTN5yUJr9b4EX2CnGNWIvER7Ab83ibv0pcvvHc4UOdrBI5jb8bj+32cCwPX6xu0mt2daFNjYhoi+X7beH0RSw==
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.5.tgz#303d8bd440ecd5a491eae6117fd3367698674c5c"
+ integrity sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg==
dependencies:
regenerator-runtime "^0.13.4"
@@ -141,27 +154,27 @@
"@babel/types" "^7.10.4"
"@babel/traverse@^7.4.3":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818"
- integrity sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q==
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz#77ce464f5b258be265af618d8fddf0536f20b564"
+ integrity sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ==
dependencies:
"@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.10.4"
+ "@babel/generator" "^7.10.5"
"@babel/helper-function-name" "^7.10.4"
"@babel/helper-split-export-declaration" "^7.10.4"
- "@babel/parser" "^7.10.4"
- "@babel/types" "^7.10.4"
+ "@babel/parser" "^7.10.5"
+ "@babel/types" "^7.10.5"
debug "^4.1.0"
globals "^11.1.0"
- lodash "^4.17.13"
+ lodash "^4.17.19"
-"@babel/types@^7.10.4", "@babel/types@^7.4.0":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.4.tgz#369517188352e18219981efd156bfdb199fff1ee"
- integrity sha512-UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg==
+"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.4.0":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15"
+ integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==
dependencies:
"@babel/helper-validator-identifier" "^7.10.4"
- lodash "^4.17.13"
+ lodash "^4.17.19"
to-fast-properties "^2.0.0"
"@compodoc/compodoc@^1.1.11":
@@ -261,15 +274,10 @@
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-3.5.0.tgz#2ad2006c8a937d20df20a8fee86071d0f730ef99"
integrity sha512-kGCRI9oiCxFS6soGKlyzhMzDydfcPix9PpTkr7h11huxOxhWwP37Tg7DYBaQ18eQTNreZEuLkhpbGSqVNZPnnw==
-"@types/node@*":
- version "14.0.22"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.22.tgz#23ea4d88189cec7d58f9e6b66f786b215eb61bdc"
- integrity sha512-emeGcJvdiZ4Z3ohbmw93E/64jRzUHAItSHt8nF7M4TGgQTiWqFVGB8KNpLGFmUHmHLvjvBgFwVlqNcq+VuGv9g==
-
-"@types/node@12.11.1":
- version "12.11.1"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-12.11.1.tgz#1fd7b821f798b7fa29f667a1be8f3442bb8922a3"
- integrity sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A==
+"@types/node@*", "@types/node@^14.0.22":
+ version "14.0.23"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.23.tgz#676fa0883450ed9da0bb24156213636290892806"
+ integrity sha512-Z4U8yDAl5TFkmYsZdFPdjeMa57NOvnaf1tljHzhouaPEp7LCj2JKkejpI1ODviIAQuW4CcQmxkQ77rnLsOOoKw==
"@types/node@^12.0.3":
version "12.12.50"
@@ -1360,9 +1368,9 @@ chokidar@^2.0.4, chokidar@^2.1.8:
fsevents "^1.2.7"
chokidar@^3.0.0, chokidar@^3.1.1, chokidar@^3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8"
- integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.1.tgz#e905bdecf10eaa0a0b1db0c664481cc4cbc22ba1"
+ integrity sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g==
dependencies:
anymatch "~3.1.1"
braces "~3.0.2"
@@ -2002,10 +2010,10 @@ di@^0.0.1:
resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c"
integrity sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=
-diff@^3.2.0:
- version "3.5.0"
- resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
- integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==
+diff@^4.0.1:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
+ integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
diffie-hellman@^5.0.0:
version "5.0.3"
@@ -2219,9 +2227,9 @@ engine.io@~3.2.0:
ws "~3.3.1"
enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.2.0.tgz#5d43bda4a0fd447cb0ebbe71bef8deff8805ad0d"
- integrity sha512-S7eiFb/erugyd1rLb6mQ3Vuq+EXHv5cpCkNqqIkYkBgN2QdFnyCZzFBleqwGEx4lgNGYij81BWnCrFNK7vxvjQ==
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126"
+ integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==
dependencies:
graceful-fs "^4.1.2"
memory-fs "^0.5.0"
@@ -4022,7 +4030,7 @@ lodash@4.17.15:
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
-lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@~4.17.10:
+lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4, lodash@~4.17.10:
version "4.17.19"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
@@ -5478,10 +5486,10 @@ run-queue@^1.0.0, run-queue@^1.0.3:
dependencies:
aproba "^1.1.1"
-rxjs@6.5.2:
- version "6.5.2"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7"
- integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg==
+rxjs@~6.6.0:
+ version "6.6.0"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz#af2901eedf02e3a83ffa7f886240ff9018bbec84"
+ integrity sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg==
dependencies:
tslib "^1.9.0"
@@ -6407,33 +6415,38 @@ tsickle@0.38.1:
resolved "https://registry.yarnpkg.com/tsickle/-/tsickle-0.38.1.tgz#30762db759d40c435943093b6972c7f2efb384ef"
integrity sha512-4xZfvC6+etRu6ivKCNqMOd1FqcY/m6JY3Y+yr5+Xw+i751ciwrWINi6x/3l1ekcODH9GZhlf0ny2LpzWxnjWYA==
-tslib@^1.10.0, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0:
+tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0:
version "1.13.0"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==
+tslib@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.0.tgz#18d13fc2dce04051e20f074cc8387fd8089ce4f3"
+ integrity sha512-lTqkx847PI7xEDYJntxZH89L2/aXInsyF2luSafe/+0fHOMjlBNXdH6th7f70qxLDhul7KZK0zC8V5ZIyHl0/g==
+
tslint-angular@3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/tslint-angular/-/tslint-angular-3.0.2.tgz#6f7480cc34f26fcc03df18d7ec3d5ce364b65064"
integrity sha512-UgeGO776Z7VvzCnW6pOsbL3qs7PwzZatKkk2OzQO45H9Zf4T+bNBz87nFkB96W/swyCHmpK2M0vl61n0biFVTQ==
-tslint@5.19.0:
- version "5.19.0"
- resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.19.0.tgz#a2cbd4a7699386da823f6b499b8394d6c47bb968"
- integrity sha512-1LwwtBxfRJZnUvoS9c0uj8XQtAnyhWr9KlNvDIdB+oXyT+VpsOAaEhEgKi1HrZ8rq0ki/AAnbGSv4KM6/AfVZw==
+tslint@~6.1.0:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/tslint/-/tslint-6.1.2.tgz#2433c248512cc5a7b2ab88ad44a6b1b34c6911cf"
+ integrity sha512-UyNrLdK3E0fQG/xWNqAFAC5ugtFyPO4JJR1KyyfQAyzR8W0fTRrC91A8Wej4BntFzcvETdCSDa/4PnNYJQLYiA==
dependencies:
"@babel/code-frame" "^7.0.0"
builtin-modules "^1.1.1"
chalk "^2.3.0"
commander "^2.12.1"
- diff "^3.2.0"
+ diff "^4.0.1"
glob "^7.1.1"
js-yaml "^3.13.1"
minimatch "^3.0.4"
- mkdirp "^0.5.1"
+ mkdirp "^0.5.3"
resolve "^1.3.2"
semver "^5.3.0"
- tslib "^1.8.0"
+ tslib "^1.10.0"
tsutils "^2.29.0"
tsutils@^2.29.0:
@@ -6495,16 +6508,16 @@ typescript@2.9.1:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.1.tgz#fdb19d2c67a15d11995fd15640e373e09ab09961"
integrity sha512-h6pM2f/GDchCFlldnriOhs1QHuwbnmj6/v7499eMHqPeW4V2G0elua2eIc2nu8v2NdHV0Gm+tzX83Hr6nUFjQA==
-typescript@3.8.2:
- version "3.8.2"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.2.tgz#91d6868aaead7da74f493c553aeff76c0c0b1d5a"
- integrity sha512-EgOVgL/4xfVrCMbhYKUQTdF37SQn4Iw73H5BgCrF1Abdun7Kwy/QZsE/ssAy0y4LxBbvua3PIbFsbRczWWnDdQ==
-
typescript@^2.4.2:
version "2.9.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c"
integrity sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==
+typescript@~3.9.5:
+ version "3.9.6"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.6.tgz#8f3e0198a34c3ae17091b35571d3afd31999365a"
+ integrity sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==
+
ua-parser-js@0.7.21:
version "0.7.21"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.21.tgz#853cf9ce93f642f67174273cc34565ae6f308777"
@@ -7005,7 +7018,7 @@ yeast@0.1.2:
resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419"
integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk=
-zone.js@0.9.1:
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.9.1.tgz#e37c6e5c54c13fae4de26b5ffe8d8e9212da6d9b"
- integrity sha512-GkPiJL8jifSrKReKaTZ5jkhrMEgXbXYC+IPo1iquBjayRa0q86w3Dipjn8b415jpitMExe9lV8iTsv8tk3DGag==
+zone.js@~0.10.3:
+ version "0.10.3"
+ resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.10.3.tgz#3e5e4da03c607c9dcd92e37dd35687a14a140c16"
+ integrity sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg==
-