@gloww/gloww 20.0.0-beta.19 → 20.0.0-beta.21
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/fesm2022/gloww-gloww.mjs +31 -11
- package/fesm2022/gloww-gloww.mjs.map +1 -1
- package/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -959,6 +959,7 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
959
959
|
showSpinners: boolean;
|
|
960
960
|
showSeconds: boolean;
|
|
961
961
|
disableMinute: boolean;
|
|
962
|
+
touchUi: boolean;
|
|
962
963
|
onChange: any;
|
|
963
964
|
onTouched: any;
|
|
964
965
|
constructor();
|
|
@@ -968,8 +969,9 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
968
969
|
registerOnChange(fn: any): void;
|
|
969
970
|
registerOnTouched(fn: any): void;
|
|
970
971
|
setDisabledState?(isDisabled: boolean): void;
|
|
972
|
+
private normalizeDateValue;
|
|
971
973
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatetimeComponent, never>;
|
|
972
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeComponent, "gloww-datetime", never, { "_value": { "alias": "value"; "required": false; }; "display": { "alias": "display"; "required": false; }; "placeHolder": { "alias": "placeHolder"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "showSpinners": { "alias": "showSpinners"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; "disableMinute": { "alias": "disableMinute"; "required": false; }; }, {}, never, never, true, never>;
|
|
974
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeComponent, "gloww-datetime", never, { "_value": { "alias": "value"; "required": false; }; "display": { "alias": "display"; "required": false; }; "placeHolder": { "alias": "placeHolder"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "showSpinners": { "alias": "showSpinners"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; "disableMinute": { "alias": "disableMinute"; "required": false; }; "touchUi": { "alias": "touchUi"; "required": false; }; }, {}, never, never, true, never>;
|
|
973
975
|
}
|
|
974
976
|
|
|
975
977
|
declare class RouteDirective {
|