Skip to content

Commit

Permalink
Updated all packages to angular v15
Browse files Browse the repository at this point in the history
  • Loading branch information
JlaTyHu committed Feb 15, 2024
1 parent a460cea commit ebef22e
Show file tree
Hide file tree
Showing 44 changed files with 2,855 additions and 15,108 deletions.
17,781 changes: 2,764 additions & 15,017 deletions Services/ngx-utils-demo/package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions Services/ngx-utils-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"@aspnet/signalr": "^1.1.4",
"@renet-consulting/animations": "^15.0.2",
"@renet-consulting/auth": "^15.0.0",
"@renet-consulting/control-value-accessor": "^15.0.0",
"@renet-consulting/ngx-http-params": "^15.0.0",
"@renet-consulting/ngx-mat-input": "^15.0.0",
"@renet-consulting/ngx-validator": "^15.0.0",
"@renet-consulting/storage": "^15.0.0",
"@renet-consulting/util": "^15.0.0",
"@renet-consulting/animations": "^15.0.3",
"@renet-consulting/auth": "^15.0.2",
"@renet-consulting/control-value-accessor": "^15.0.2",
"@renet-consulting/ngx-http-params": "^15.0.3",
"@renet-consulting/ngx-mat-input": "^15.0.2",
"@renet-consulting/ngx-validator": "^15.0.2",
"@renet-consulting/storage": "^15.0.2",
"@renet-consulting/util": "^15.0.2",
"@webcomponents/webcomponentsjs": "^2.2.10",
"bootstrap": "^5.3.2",
"core-js": "^3.2.1",
Expand All @@ -45,7 +45,7 @@
"resize-observer-polyfill": "^1.5.1",
"rxjs": "^7.4.0",
"scss-bundle": "^3.1.2",
"tslib": "^2.5.0",
"tslib": "^2.6.2",
"zone.js": "~0.11.4"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions Services/ngx-utils-demo/projects/animations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/animations",
"version": "15.0.2",
"version": "15.0.3",
"author": "Michael Vasyliv",
"license": "MIT",
"private": false,
Expand All @@ -15,7 +15,7 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/animations"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/animations": "^15.2.10"
Expand Down
8 changes: 4 additions & 4 deletions Services/ngx-utils-demo/projects/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/auth",
"version": "15.0.1",
"version": "15.0.3",
"author": "Michael Vasyliv",
"license": "MIT",
"private": false,
Expand All @@ -14,9 +14,9 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/auth"
},
"dependencies": {
"@renet-consulting/ngx-http-params": "^15.0.0",
"@renet-consulting/storage": "^15.0.0",
"tslib": "^2.0.0"
"@renet-consulting/ngx-http-params": "^15.0.3",
"@renet-consulting/storage": "^15.0.2",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": "^15.2.10",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HttpHandler, HttpHeaders, HttpParams, HttpRequest, HttpResponse } from '@angular/common/http';
import { TestBed } from '@angular/core/testing';
import { NgxHttpParamsService } from '@renet-consulting/ngx-http-params/src/public-api';
import { NgxHttpParamsService } from '@renet-consulting/ngx-http-params';
import { of, Subject } from 'rxjs';
import { AuthDefaultOptions } from './auth-default-options';
import { AuthInterceptor } from './auth.interceptor';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HttpEvent, HttpHandler, HttpHeaders, HttpInterceptor, HttpRequest, HttpResponse } from '@angular/common/http';
import { Inject, Injectable } from '@angular/core';
import { NgxHttpParamsService } from '@renet-consulting/ngx-http-params/src/public-api';
import { NgxHttpParamsService } from '@renet-consulting/ngx-http-params';
import { Observable, of, Subject, throwError } from 'rxjs';
import { catchError, finalize, mergeMap } from 'rxjs/operators';
import { AuthDefaultOptions } from './auth-default-options';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HttpParams } from '@angular/common/http';
import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
import { TestBed } from '@angular/core/testing';
import { NgxHttpParamsService } from '@renet-consulting/ngx-http-params/src/public-api';
import { NgxHttpParamsService } from '@renet-consulting/ngx-http-params';
import { AuthDefaultOptions } from './auth-default-options';
import { AuthService } from './auth.service';
import { HTTP_HEADER_NAMES } from './http-header-names.type';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HttpClient, HttpParams } from '@angular/common/http';
import { Inject, Injectable } from '@angular/core';
import { NgxHttpParamsService } from '@renet-consulting/ngx-http-params/src/public-api';
import { NgxHttpParamsService } from '@renet-consulting/ngx-http-params';
import { AuthDefaultOptions } from './auth-default-options';
import { HTTP_HEADERS } from './http-headers';
import { IToken } from './token';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TestBed } from '@angular/core/testing';
import { StorageService } from '@renet-consulting/storage/src/public-api';
import { StorageService } from '@renet-consulting/storage';
import { IToken } from './token';
import { TokenService } from './token.service';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Inject, Injectable } from '@angular/core';
import { StorageService } from '@renet-consulting/storage/src/public-api';
import { StorageService } from '@renet-consulting/storage';
import { IToken } from './token';

@Injectable({
Expand Down
4 changes: 2 additions & 2 deletions Services/ngx-utils-demo/projects/bypass/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/bypass",
"version": "15.0.1",
"version": "15.0.2",
"author": "Renet Consulting",
"license": "MIT",
"private": false,
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/bypass"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/core": "^15.2.10",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/control-value-accessor",
"version": "15.0.1",
"version": "15.0.2",
"author": "Renet Consulting, Inc.",
"license": "MIT",
"private": false,
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/control-value-accessor"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/forms": "^15.2.10"
Expand Down
6 changes: 3 additions & 3 deletions Services/ngx-utils-demo/projects/core-captcha/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/core-captcha",
"version": "15.0.1",
"version": "15.0.2",
"author": "Renet Consulting, Inc.",
"license": "MIT",
"private": false,
Expand All @@ -14,8 +14,8 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/core-captcha"
},
"dependencies": {
"@renet-consulting/ngx-mat-input": "^15.0.0",
"tslib": "^2.0.0"
"@renet-consulting/ngx-mat-input": "^15.0.2",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/animations": "^15.2.10",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
import { NgxMatInputModule } from '@renet-consulting/ngx-mat-input/src/public-api';
import { NgxMatInputModule } from '@renet-consulting/ngx-mat-input';
import { CoreCaptchaAudioComponent } from './core-captcha-audio/core-captcha-audio.component';
import { CoreCaptchaComponent } from './core-captcha.component';
import { CoreCaptchaDirective } from './core-captcha.directive';
Expand Down
10 changes: 5 additions & 5 deletions Services/ngx-utils-demo/projects/editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/editor",
"version": "15.0.1",
"version": "15.0.2",
"author": "Renet Consulting, Inc.",
"license": "MIT",
"private": false,
Expand All @@ -14,12 +14,12 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/editor"
},
"dependencies": {
"@renet-consulting/animations": "^15.0.0",
"@renet-consulting/control-value-accessor": "^15.0.0",
"@renet-consulting/ngx-validator": "^15.0.0",
"@renet-consulting/animations": "^15.0.2",
"@renet-consulting/control-value-accessor": "^15.0.2",
"@renet-consulting/ngx-validator": "^15.0.2",
"ngx-quill": "^21.0.2",
"quill": "^1.3.7",
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": "^15.2.10",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Inject, Input, OnDestroy, OnInit, Optional, Output, Self, ViewEncapsulation } from '@angular/core';
import { AbstractControl, ControlValueAccessor, FormGroupDirective, NgControl, ValidationErrors } from '@angular/forms';
import { enterLeaveAnimation } from '@renet-consulting/animations/src/public-api';
import { ProvidedControlValueAccessorBaseDirective } from '@renet-consulting/control-value-accessor/src/public-api';
import { enterLeaveAnimation } from '@renet-consulting/animations';
import { ProvidedControlValueAccessorBaseDirective } from '@renet-consulting/control-value-accessor';
import { Subscription } from 'rxjs';
import { EditorService } from './editor.service';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Directive, HostListener, Inject, OnChanges, OnDestroy, OnInit } from '@angular/core';
import { NgControl } from '@angular/forms';
import { NgxValidatorDirective } from '@renet-consulting/ngx-validator/src/public-api';
import { NgxValidatorDirective } from '@renet-consulting/ngx-validator';

@Directive({
selector: '[validate][formControl]',
Expand Down
4 changes: 2 additions & 2 deletions Services/ngx-utils-demo/projects/elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/elements",
"version": "15.0.1",
"version": "15.0.2",
"author": "Michael Vasyliv",
"license": "MIT",
"private": false,
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/elements"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/elements": "^15.2.10",
Expand Down
6 changes: 3 additions & 3 deletions Services/ngx-utils-demo/projects/external-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/external-auth",
"version": "15.0.1",
"version": "15.0.3",
"author": "Michael Vasyliv",
"license": "MIT",
"private": false,
Expand All @@ -14,8 +14,8 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/external-auth"
},
"dependencies": {
"@renet-consulting/auth": "^15.0.0",
"tslib": "^2.0.0"
"@renet-consulting/auth": "^15.0.3",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": "^15.2.10",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TestBed } from '@angular/core/testing';
import { AuthService, IToken, TokenService } from '@renet-consulting/auth/src/public-api';
import { AuthService, IToken, TokenService } from '@renet-consulting/auth';
import { of, throwError } from 'rxjs';
import { ExternalTokenHandlerService } from './external-token-handler.service';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Inject, Injectable } from '@angular/core';
import { AuthService, IToken, TokenService } from '@renet-consulting/auth/src/public-api';
import { AuthService, IToken, TokenService } from '@renet-consulting/auth';
import { Observable } from 'rxjs';

@Injectable({
Expand Down
4 changes: 2 additions & 2 deletions Services/ngx-utils-demo/projects/http-hub-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/http-hub-client",
"version": "15.0.1",
"version": "15.0.2",
"author": "Michael Vasyliv",
"license": "MIT",
"private": false,
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/http-hub-client"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": "^15.2.10",
Expand Down
4 changes: 2 additions & 2 deletions Services/ngx-utils-demo/projects/infinite-source/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/infinite-source",
"version": "15.0.1",
"version": "15.0.2",
"author": "Michael Vasyliv",
"license": "MIT",
"private": false,
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/infinite-source"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/cdk": "^15.2.9",
Expand Down
4 changes: 2 additions & 2 deletions Services/ngx-utils-demo/projects/interceptors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/interceptors",
"version": "15.0.1",
"version": "15.0.2",
"author": "Michael Vasyliv, Alexander Altotsky",
"license": "MIT",
"private": false,
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/interceptors"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": "^15.2.10",
Expand Down
6 changes: 3 additions & 3 deletions Services/ngx-utils-demo/projects/ngx-http-params/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/ngx-http-params",
"version": "15.0.1",
"version": "15.0.3",
"author": "Renet Consulting, Inc.",
"license": "MIT",
"private": false,
Expand All @@ -14,8 +14,8 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/ngx-http-params"
},
"dependencies": {
"@renet-consulting/util": "^15.0.0",
"tslib": "^2.0.0"
"@renet-consulting/util": "^15.0.2",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": "^15.2.10",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HttpParams } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { isBoolean, isNumber, isObject, isString } from '@renet-consulting/util/src/public-api';
import { isBoolean, isNumber, isObject, isString } from '@renet-consulting/util';

@Injectable({
providedIn: 'root'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/ngx-link-stylesheet",
"version": "15.0.1",
"version": "15.0.2",
"author": "Michael Vasyliv",
"license": "MIT",
"private": false,
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/ngx-link-stylesheet"
},
"dependencies": {
"tslib": "^2.0.0"
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": "^15.2.10",
Expand Down
10 changes: 5 additions & 5 deletions Services/ngx-utils-demo/projects/ngx-mat-input/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renet-consulting/ngx-mat-input",
"version": "15.0.1",
"version": "15.0.2",
"author": "Rewnet Consulting, Inc.",
"license": "MIT",
"private": false,
Expand All @@ -14,10 +14,10 @@
"url": "https://github.com/RenetConsulting/angularcore.net/tree/master/Services/ngx-utils-demo/projects/ngx-mat-input"
},
"dependencies": {
"@renet-consulting/animations": "^15.0.0",
"@renet-consulting/control-value-accessor": "^15.0.0",
"@renet-consulting/ngx-validator": "^15.0.0",
"tslib": "^2.0.0"
"@renet-consulting/animations": "^15.0.3",
"@renet-consulting/control-value-accessor": "^15.0.2",
"@renet-consulting/ngx-validator": "^15.0.2",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": "^15.2.10",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ElementRef, EventEmitter, HostBinding, Input, OnChanges, OnDestroy, OnInit, Output, ViewChild, Directive } from '@angular/core';
import { AbstractControl, ControlValueAccessor, FormGroupDirective, NgControl } from '@angular/forms';
import { ProvidedControlValueAccessorBaseDirective } from '@renet-consulting/control-value-accessor/src/public-api';
import { ProvidedControlValueAccessorBaseDirective } from '@renet-consulting/control-value-accessor';
import { Subscription } from 'rxjs';

@Directive()
Expand Down
Loading

0 comments on commit ebef22e

Please sign in to comment.