@elderbyte/ngx-starter 17.8.0 → 17.8.1
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/common/time/interval-coerce.mjs +30 -0
- package/esm2022/lib/common/time/interval.mjs +2 -2
- package/esm2022/lib/common/time/public_api.mjs +2 -1
- package/esm2022/lib/components/time/elder-interval-input/elder-interval-input.component.mjs +9 -30
- package/fesm2022/elderbyte-ngx-starter.mjs +38 -31
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/common/time/interval-coerce.d.ts +3 -0
- package/lib/common/time/public_api.d.ts +1 -0
- package/lib/components/time/elder-interval-input/elder-interval-input.component.d.ts +0 -2
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { Interval, IsoIntervalStr } from './interval';
|
|
2
|
+
export declare function coerceInterval(value: Interval | IsoIntervalStr | undefined | null): Interval;
|
|
3
|
+
export declare function coerceIntervalIsoStr(value: Interval | IsoIntervalStr | undefined | null): IsoIntervalStr;
|
|
@@ -96,8 +96,6 @@ export declare class ElderIntervalInputComponent extends ElderFormFieldControlBa
|
|
|
96
96
|
private toLocalDate;
|
|
97
97
|
private mapIgnoreErrorObservable;
|
|
98
98
|
private coerceValue;
|
|
99
|
-
private coerceInterval;
|
|
100
|
-
private coerceIsoStr;
|
|
101
99
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderIntervalInputComponent, [null, null, null, null, { optional: true; self: true; }, null, null]>;
|
|
102
100
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElderIntervalInputComponent, "elder-interval-input", never, { "zone": { "alias": "zone"; "required": false; }; "valueAsIsoStr": { "alias": "valueAsIsoStr"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "isoValue": { "alias": "isoValue"; "required": false; }; }, { "isoValueChange": "isoValueChange"; }, never, never, true, never>;
|
|
103
101
|
}
|