@ts-core/angular 13.1.8 → 13.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VICommonModule.d.ts +2 -0
- package/component/cdk-table/cell/CdkTableCellValuePipe.d.ts +3 -4
- package/esm2020/VICommonModule.mjs +6 -1
- package/esm2020/component/cdk-table/cell/CdkTableCellValuePipe.mjs +14 -17
- package/esm2020/language/LanguagePipe.mjs +21 -14
- package/fesm2015/ts-core-angular.mjs +39 -31
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +39 -31
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/language/LanguagePipe.d.ts +7 -6
- package/package.json +2 -2
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, PipeTransform } from '@angular/core';
|
|
2
2
|
import { DestroyableContainer } from '@ts-core/common';
|
|
3
3
|
import { LanguageService } from '@ts-core/frontend';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class LanguagePipe extends DestroyableContainer implements PipeTransform {
|
|
6
|
+
private detection;
|
|
6
7
|
private language;
|
|
7
8
|
static removeTags(item: string): string;
|
|
8
|
-
private
|
|
9
|
-
private
|
|
10
|
-
private
|
|
11
|
-
constructor(language: LanguageService);
|
|
12
|
-
private
|
|
9
|
+
private lastKey;
|
|
10
|
+
private lastParams;
|
|
11
|
+
private lastValue;
|
|
12
|
+
constructor(detection: ChangeDetectorRef, language: LanguageService);
|
|
13
|
+
private lastValueUpdate;
|
|
13
14
|
transform(key: string, params?: any): string;
|
|
14
15
|
destroy(): void;
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<LanguagePipe, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-core/angular",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.11",
|
|
4
4
|
"description": "Modules for frontend based on angular",
|
|
5
5
|
"main": "public-api.js",
|
|
6
6
|
"author": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@angular/router": "^13.3.2",
|
|
24
24
|
"@nguniversal/express-engine": "^13.1.0",
|
|
25
25
|
"@ts-core/common": "^3.0.3",
|
|
26
|
-
"@ts-core/frontend": "^3.0.
|
|
26
|
+
"@ts-core/frontend": "^3.0.3",
|
|
27
27
|
"@types/numeral": "^2.0.2",
|
|
28
28
|
"bootstrap": "^5.1.3",
|
|
29
29
|
"css-element-queries": "^1.2.3",
|