Skip to content
Open
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
23,078 changes: 12,144 additions & 10,934 deletions package-lock.json

Large diffs are not rendered by default.

54 changes: 28 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,48 +35,50 @@
},
"private": false,
"dependencies": {
"@angular/animations": "^16.1.4",
"@angular/common": "^16.1.4",
"@angular/compiler": "^16.1.4",
"@angular/core": "^16.1.4",
"@angular/forms": "^16.1.4",
"@angular/platform-browser": "^16.1.4",
"@angular/platform-browser-dynamic": "^16.1.4",
"@angular/router": "^16.1.4",
"@angular/animations": "^19.2.11",
"@angular/common": "^19.2.11",
"@angular/compiler": "^19.2.11",
"@angular/core": "^19.2.11",
"@angular/forms": "^19.2.11",
"@angular/platform-browser": "^19.2.11",
"@angular/platform-browser-dynamic": "^19.2.11",
"@angular/router": "^19.2.11",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@typescript-eslint/types": "^8.32.1",
"@typescript-eslint/utils": "^8.32.1",
"eslint": "^8.57.0",
"rxjs": "^7.8.1",
"tslib": "^2.6.0",
"zone.js": "~0.13.1"
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1601.4",
"@angular-devkit/build-angular": "^16.1.4",
"@angular-devkit/core": "^16.1.4",
"@angular-eslint/builder": "^16.0.3",
"@angular-eslint/eslint-plugin": "^16.0.3",
"@angular-eslint/eslint-plugin-template": "^16.0.3",
"@angular-eslint/schematics": "^16.0.3",
"@angular-eslint/template-parser": "^16.0.3",
"@angular/cli": "^16.1.4",
"@angular/compiler-cli": "^16.1.4",
"@angular/language-service": "^16.1.4",
"@angular-devkit/architect": "^0.1902.12",
"@angular-devkit/build-angular": "^19.2.12",
"@angular-devkit/core": "^19.2.12",
"@angular-eslint/builder": "^19.4.0",
"@angular-eslint/eslint-plugin": "^19.4.0",
"@angular-eslint/eslint-plugin-template": "^19.4.0",
"@angular-eslint/schematics": "^19.4.0",
"@angular-eslint/template-parser": "^19.4.0",
"@angular/cli": "^19.2.12",
"@angular/compiler-cli": "^19.2.11",
"@angular/language-service": "^19.2.11",
"@chiragrupani/karma-chromium-edge-launcher": "^2.3.1",
"@types/jasmine": "~4.3.5",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"codecov": "^3.8.2",
"eslint": "^8.44.0",
"jasmine-core": "~5.0.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^16.1.0",
"ng-packagr": "^19.2.2",
"protractor": "~7.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
"typescript": "5.5"
}
}
}
4 changes: 2 additions & 2 deletions packages/pipes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
"angular filters"
],
"peerDependencies": {
"@angular/core": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
"@angular/core": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}
}
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/combine/combine.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'combine'
name: 'combine',
standalone: false
})
export class CombinePipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/copyWithin/copy-within.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'copyWithin'
name: 'copyWithin',
standalone: false
})
export class CopyWithinPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/every/every.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'every'
name: 'every',
standalone: false
})
export class EveryPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/fill/fill.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'fill'
name: 'fill',
standalone: false
})
export class FillPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/first/first.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'first'
name: 'first',
standalone: false
})
export class FirstPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/join/join.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'join'
name: 'join',
standalone: false
})
export class JoinPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/last/last.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'last'
name: 'last',
standalone: false
})
export class LastPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/map/map.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'map'
name: 'map',
standalone: false
})
export class MapPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/array/some/some.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'some'
name: 'some',
standalone: false
})
export class SomePipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/generic/length/length.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'length'
name: 'length',
standalone: false
})
export class LengthPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/generic/reverse/reverse.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'reverse'
name: 'reverse',
standalone: false
})
export class ReversePipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/generic/type-of/type-of.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'typeOf'
name: 'typeOf',
standalone: false
})
export class TypeOfPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/abs/abs.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'abs'
name: 'abs',
standalone: false
})
export class AbsPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/avg/avg.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { NumberUtils } from '../../utils/number-utils';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'avg'
name: 'avg',
standalone: false
})
export class AvgPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/ceil/ceil.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'ceil'
name: 'ceil',
standalone: false
})
export class CeilPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/floor/floor.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'floor'
name: 'floor',
standalone: false
})
export class FloorPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/max/max.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'max'
name: 'max',
standalone: false
})
export class MaxPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/min/min.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'min'
name: 'min',
standalone: false
})
export class MinPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/pct/pct.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'pct'
name: 'pct',
standalone: false
})
export class PctPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/pow/pow.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'pow'
name: 'pow',
standalone: false
})
export class PowPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/round/round.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ export enum RoundType {
}

@Pipe({
name: 'round'
name: 'round',
standalone: false
})
export class RoundPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/sqrt/sqrt.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'sqrt'
name: 'sqrt',
standalone: false
})
export class SqrtPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/number/sum/sum.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { NumberUtils } from '../../utils/number-utils';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'sum'
name: 'sum',
standalone: false
})
export class SumPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/string/camel-case/camel-case.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { StringUtils } from '../../utils/string-utils';

@Pipe({
name: 'camelCase'
name: 'camelCase',
standalone: false
})
export class CamelCasePipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/string/char-at/char-at.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { StringUtils } from '../../utils/string-utils';

@Pipe({
name: 'charAt'
name: 'charAt',
standalone: false
})
export class CharAtPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/string/concat/concat.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'concat'
name: 'concat',
standalone: false
})
export class ConcatPipe implements PipeTransform {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'interpolate'
name: 'interpolate',
standalone: false
})
export class InterpolatePipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/string/lower-case/lower-case.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { StringUtils } from '../../utils/string-utils';

@Pipe({
name: 'lowerCase'
name: 'lowerCase',
standalone: false
})
export class LowerCasePipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/string/pad-end/pad-end.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'padEnd'
name: 'padEnd',
standalone: false
})
export class PadEndPipe implements PipeTransform {

Expand Down
3 changes: 2 additions & 1 deletion packages/pipes/src/lib/string/pad-start/pad-start.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { TypeUtils } from '../../utils/type-utils';

@Pipe({
name: 'padStart'
name: 'padStart',
standalone: false
})
export class PadStartPipe implements PipeTransform {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { StringUtils } from '../../utils/string-utils';

@Pipe({
name: 'pascalCase'
name: 'pascalCase',
standalone: false
})
export class PascalCasePipe implements PipeTransform {

Expand Down
Loading