Skip to content

Commit

Permalink
build: upgrade all non breaking dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlewis92 committed Apr 25, 2023
1 parent 5c5691d commit 5377fbf
Show file tree
Hide file tree
Showing 8 changed files with 138 additions and 154 deletions.
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,43 +65,43 @@
"@angular/platform-browser": "^15.2.8",
"@angular/platform-browser-dynamic": "^15.2.8",
"@angular/router": "^15.2.8",
"@compodoc/compodoc": "^1.1.11",
"@types/chai": "^4.2.11",
"@compodoc/compodoc": "^1.1.19",
"@types/chai": "^4.3.4",
"@types/chai-dom": "0.0.10",
"@types/jasmine": "~4.3.0",
"@types/node": "^14.0.14",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"@types/jasmine": "~4.3.1",
"@types/node": "^14.18.42",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"angular-cli-ghpages": "^1.0.5",
"chai": "^4.3.7",
"chai-dom": "^1.11.0",
"commitizen": "^4.1.2",
"concurrently": "^5.2.0",
"copyfiles": "^2.3.0",
"cz-conventional-changelog": "^3.2.0",
"commitizen": "^4.3.0",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"eslint": "^8.33.0",
"husky": "^4.2.5",
"eslint": "^8.39.0",
"husky": "^4.3.8",
"jasmine-core": "~4.5.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.1.0",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^15.2.2",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rxjs": "^6.6.0",
"prettier": "^2.8.8",
"pretty-quick": "^2.0.2",
"rxjs": "^6.6.7",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0",
"standard-version": "^8.0.0",
"standard-version": "^8.0.2",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"tslib": "^2.5.0",
"typescript": "~4.9.5",
"validate-commit-msg": "^2.14.0",
"zone.js": "~0.11.4"
"zone.js": "~0.11.8"
},
"config": {
"commitizen": {
Expand Down
38 changes: 19 additions & 19 deletions pnpm-lock.yaml

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

Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ export interface ConfirmationPopoverOptionsInterface {

@Injectable()
export class ConfirmationPopoverOptions
implements ConfirmationPopoverOptionsInterface {
implements ConfirmationPopoverOptionsInterface
{
popoverTitle: string;
popoverMessage: string;
confirmText: string = 'Confirm';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ export interface ConfirmCancelEvent {
selector: '[mwlConfirmationPopover]',
})
export class ConfirmationPopoverDirective
implements OnDestroy, OnChanges, OnInit {
implements OnDestroy, OnChanges, OnInit
{
/**
* The title of the popover
*/
Expand Down Expand Up @@ -175,8 +176,8 @@ export class ConfirmationPopoverDirective
private viewContainerRef: ViewContainerRef,
private elm: ElementRef,
private defaultOptions: ConfirmationPopoverOptions,
private renderer: Renderer2,
) { }
private renderer: Renderer2
) {}

/**
* @internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ export function optionsFactory(
}

@NgModule({
declarations: [
ConfirmationPopoverDirective,
ConfirmationPopoverWindowComponent,
FocusDirective,
],
imports: [CommonModule],
exports: [ConfirmationPopoverDirective, FocusDirective]
declarations: [
ConfirmationPopoverDirective,
ConfirmationPopoverWindowComponent,
FocusDirective,
],
imports: [CommonModule],
exports: [ConfirmationPopoverDirective, FocusDirective],
})
export class ConfirmationPopoverModule {
static forRoot(
Expand Down
Loading

0 comments on commit 5377fbf

Please sign in to comment.