@gloww/gloww 20.0.0-beta.31 → 20.0.0-beta.32
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 +70 -5
- package/fesm2022/gloww-gloww.mjs.map +1 -1
- package/index.d.ts +8 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -978,9 +978,6 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
978
978
|
readonly minuteControl: FormControl<string>;
|
|
979
979
|
readonly secondControl: FormControl<string>;
|
|
980
980
|
isDisabled: boolean;
|
|
981
|
-
readonly hours: string[];
|
|
982
|
-
readonly minutes: string[];
|
|
983
|
-
readonly seconds: string[];
|
|
984
981
|
onChange: (value: Date | null) => void;
|
|
985
982
|
onTouched: () => void;
|
|
986
983
|
constructor(locale?: string);
|
|
@@ -993,9 +990,17 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
993
990
|
setDisabledState(isDisabled: boolean): void;
|
|
994
991
|
clear(): void;
|
|
995
992
|
markTouched(): void;
|
|
993
|
+
get timePickerValue(): string;
|
|
994
|
+
openNativeTimePicker(input: HTMLInputElement): void;
|
|
995
|
+
onNativeTimeSelected(value: string): void;
|
|
996
|
+
onTimePartInput(part: 'hour' | 'minute' | 'second'): void;
|
|
997
|
+
onTimePartBlur(part: 'hour' | 'minute' | 'second'): void;
|
|
996
998
|
private setValueFromOutside;
|
|
997
999
|
private emitCurrentValue;
|
|
998
1000
|
private toNumber;
|
|
1001
|
+
private getTimeControl;
|
|
1002
|
+
private getTimePartMax;
|
|
1003
|
+
private normalizeTimePartValue;
|
|
999
1004
|
private normalizeDateValue;
|
|
1000
1005
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatetimeComponent, [{ optional: true; }]>;
|
|
1001
1006
|
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; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; }, {}, never, never, true, never>;
|