Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #191

Merged
merged 3 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,36 +33,36 @@
"ngx-toastr": "^17.0.2",
"rxjs": "7.8.1",
"ts-clipboard": "^1.0.17",
"zone.js": "~0.13.0"
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.11",
"@angular-eslint/builder": "~17.3.0",
"@angular-eslint/eslint-plugin": "~17.3.0",
"@angular-eslint/eslint-plugin-template": "~17.3.0",
"@angular-eslint/schematics": "~17.3.0",
"@angular-eslint/template-parser": "~17.3.0",
"@angular-eslint/utils": "~17.3.0",
"@angular-eslint/builder": "^17.5.3",
"@angular-eslint/eslint-plugin": "^17.5.3",
"@angular-eslint/eslint-plugin-template": "^17.5.3",
"@angular-eslint/schematics": "^17.5.3",
"@angular-eslint/template-parser": "^17.5.3",
"@angular-eslint/utils": "^17.5.3",
"@angular/cli": "^17.3.11",
"@angular/compiler-cli": "^17.3.12",
"@angular/language-service": "^17.3.12",
"@types/jasmine": "~5.1.4",
"@types/jasmine": "^5.1.4",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.0",
"jasmine-core": "~5.4.0",
"jasmine-core": "^5.4.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^1.7.0",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"prettier": "^3.4.1",
"pretty-quick": "^4.0.0",
"stream": "^0.0.3",
"typescript": "^5.4.5"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';
import {
Component,
Input,
OnChanges,
OnDestroy,
SimpleChanges
} from '@angular/core';
import {
Content,
FlowItem,
Expand All @@ -11,7 +17,7 @@ import { PageService } from '../../service/page-service.service';
templateUrl: './content-flow-item.component.html',
styleUrls: ['./content-flow-item.component.css']
})
export class ContentFlowItemComponent implements OnChanges {
export class ContentFlowItemComponent implements OnChanges, OnDestroy {
@Input() item: FlowItem;
contents: Content[];
ready: boolean;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';
import {
Component,
Input,
OnChanges,
OnDestroy,
SimpleChanges
} from '@angular/core';
import {
Content,
FlowWatcher,
Expand All @@ -11,7 +17,7 @@ import { PageService } from '../../service/page-service.service';
templateUrl: './content-multiselect-option.component.html',
styleUrls: ['./content-multiselect-option.component.css']
})
export class ContentMultiselectOptionComponent implements OnChanges {
export class ContentMultiselectOptionComponent implements OnChanges, OnDestroy {
@Input() item: MultiselectOption;
option: MultiselectOption;
contents: Content[];
Expand Down
5 changes: 3 additions & 2 deletions src/test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// This file is required by karma.conf.cjs and loads recursively all the .spec and framework files

import 'zone.js/testing';
import 'zone.js';
// eslint-disable-next-line import/no-unresolved
import 'zone.js/testing'; // It says it can't find the module, but it works and this is what the docs say to do.
import { TestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
Expand Down
Loading
Loading