zek 17.3.10 → 17.3.12
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/esm2022/lib/components/list-base.component.mjs +1 -1
- package/esm2022/lib/modules/utc-to-local/utc-to-local.pipe.mjs +2 -2
- package/esm2022/lib/utils/string-helper.mjs +23 -1
- package/esm2022/lib/utils/url-helper.mjs +18 -1
- package/fesm2022/zek.mjs +39 -1
- package/fesm2022/zek.mjs.map +1 -1
- package/lib/modules/utc-to-local/utc-to-local.pipe.d.ts +1 -1
- package/lib/utils/string-helper.d.ts +8 -0
- package/lib/utils/url-helper.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class UtcToLocalPipe implements PipeTransform {
|
|
5
5
|
private readonly _datePipe;
|
|
6
6
|
constructor(_datePipe: DatePipe);
|
|
7
|
-
transform(value: Date | string | number | null | undefined, format?: string): string |
|
|
7
|
+
transform(value: Date | string | number | null | undefined, format?: string): string | null;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtcToLocalPipe, never>;
|
|
9
9
|
static ɵpipe: i0.ɵɵPipeDeclaration<UtcToLocalPipe, "utcToLocal", true>;
|
|
10
10
|
}
|
|
@@ -6,5 +6,13 @@ export declare class StringHelper {
|
|
|
6
6
|
static ifNullEmpty(value?: string | null): string;
|
|
7
7
|
static join(val: string | undefined | null, separator: string, part: string | undefined | null): string | null | undefined;
|
|
8
8
|
static trim(val: string | null, ch: string): string | null;
|
|
9
|
+
static trimStart(val: string | null, ch: string): string | null;
|
|
10
|
+
static trimEnd(val: string | null, ch: string): string | null;
|
|
11
|
+
/**
|
|
12
|
+
*
|
|
13
|
+
* @param val source string
|
|
14
|
+
* @param chars trim any character
|
|
15
|
+
* @returns
|
|
16
|
+
*/
|
|
9
17
|
static trimAny(val: string | null, chars: string): string | null;
|
|
10
18
|
}
|