Skip to content

Commit fbfba2c

Browse files
author
Anthony Nahas
committed
fix(project): updated deps
1 parent 2d4003b commit fbfba2c

10 files changed

+1575
-541
lines changed

package-lock.json

Lines changed: 1550 additions & 519 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
"@angular/router": "^16.2.12",
5050
"@briebug/jest-schematic": "^2.2.0",
5151
"@nguniversal/express-engine": "^16.2.0",
52-
"angular-cli-ghpages": "^0.6.2",
53-
"angulartics2": "^9.1.0",
52+
"angular-cli-ghpages": "^1.0.7",
53+
"angulartics2": "^12.2.1",
5454
"express": "^4.15.2",
55-
"ngx-markdown": "^9.1.1",
55+
"ngx-markdown": "^16.0.0",
5656
"rxjs": "^7.5.1",
5757
"svg-country-flags": "^1.2.10",
5858
"tslib": "^2.4.1",

projects/angular-material-extensions/select-country/node_modules/.cache/ng-packagr/content-v2/sha512/59/18/74e23429125be1fc7d4a5cbcb566c28bbb9d988a33c1f000c8376abf147b8c7edce3cea0ea0401a093b9bb0f2eddc65fd282e6c14441e3f6c46078bae760

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/angular-material-extensions/select-country/node_modules/.cache/ng-packagr/content-v2/sha512/6a/bc/6cfef511fa8e2a2cf3f34f882fc097dbd34f569b5af62d046c6d128f7797e04ac3942834c4d97aa19356aa825695bb21e85306035b5eaa39cf67caea8981

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/angular-material-extensions/select-country/node_modules/.cache/ng-packagr/content-v2/sha512/c0/52/5e27bd21309d05db9ea88c983f63e56c21cf8e4550cf3f1e218b04fd6851541ddc44da9338efce0203e99bf7d1974d9502440b75fbb0c25db5c140efdc3d

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/angular-material-extensions/select-country/node_modules/.cache/ng-packagr/index-v5/2f/2e/1841f16ee612ac64cb71a060dcd5f286d49e1217ca84f577561ba6d96ce2

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/angular-material-extensions/select-country/node_modules/.cache/ng-packagr/index-v5/39/00/e4404152500bcca1253bead75fecb5228874bf5f1bd51a0ff69ae35307e1

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/angular-material-extensions/select-country/node_modules/.cache/ng-packagr/index-v5/67/39/d81628ec81680a04f1f930534d036be5a01bc6524dff65b675ae6d4c52b1

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/angular-material-extensions/select-country/node_modules/.cache/ng-packagr/tsbuildinfo/angular-material-extensions-select-country.tsbuildinfo

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/app.component.ts

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
1-
import { Component, OnInit } from "@angular/core";
2-
import {
3-
FormControl,
4-
FormGroup,
5-
UntypedFormBuilder,
6-
UntypedFormControl,
7-
UntypedFormGroup,
8-
Validators,
9-
} from "@angular/forms";
1+
import {Component, OnInit} from "@angular/core";
2+
import {FormControl, UntypedFormBuilder, UntypedFormControl, UntypedFormGroup, Validators,} from "@angular/forms";
103

11-
import { Country } from "@angular-material-extensions/select-country";
12-
import { Angulartics2GoogleAnalytics } from "angulartics2/ga";
13-
import { GERMANY_COUNTRY } from "./examples/contants";
4+
import {Country} from "@angular-material-extensions/select-country";
5+
import {Angulartics2GoogleAnalytics} from 'angulartics2';
6+
import {GERMANY_COUNTRY} from "./examples/contants";
147

158
@Component({
169
selector: "app-root",
@@ -20,7 +13,7 @@ import { GERMANY_COUNTRY } from "./examples/contants";
2013
export class AppComponent implements OnInit {
2114
title = "select-country";
2215

23-
defaultValue = { ...GERMANY_COUNTRY };
16+
defaultValue = {...GERMANY_COUNTRY};
2417
countryFormControl = new UntypedFormControl();
2518
countryRequiredFormControl = new UntypedFormControl(null, [
2619
Validators.required,
@@ -74,7 +67,7 @@ export class AppComponent implements OnInit {
7467

7568
ngOnInit(): void {
7669
this.countryFormGroup = this.formBuilder.group({
77-
country: [{ ...this.defaultValue }],
70+
country: [{...this.defaultValue}],
7871
});
7972

8073
this.countryMandatoryFormControl.valueChanges.subscribe((country) => {
@@ -87,11 +80,11 @@ export class AppComponent implements OnInit {
8780
this.countryFormGroup
8881
.get("country")
8982
.valueChanges.subscribe((country) =>
90-
console.log(
91-
"this.countryFormGroup.get('country').valueChanges",
92-
country
93-
)
94-
);
83+
console.log(
84+
"this.countryFormGroup.get('country').valueChanges",
85+
country
86+
)
87+
);
9588

9689
this.countryFormControl.valueChanges.subscribe((country) =>
9790
console.log("this.countryFormControl.valueChanges", country)

0 commit comments

Comments
 (0)