@gloww/gloww 20.0.0-beta.36 → 20.0.0-beta.37
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 +28 -7
- package/fesm2022/gloww-gloww.mjs.map +1 -1
- package/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -972,6 +972,7 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
972
972
|
private static readonly CLOCK_OUTER_RADIUS;
|
|
973
973
|
private static readonly CLOCK_INNER_RADIUS;
|
|
974
974
|
private static readonly CLOCK_TICK_RADIUS;
|
|
975
|
+
private static readonly CLOCK_TICK_LABEL_RADIUS;
|
|
975
976
|
_value: Date | null;
|
|
976
977
|
display: string | null;
|
|
977
978
|
placeHolder: string | null;
|
|
@@ -1008,12 +1009,14 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
1008
1009
|
selectClockHour(value: number, event?: MouseEvent): void;
|
|
1009
1010
|
selectClockMinute(value: number, event?: MouseEvent): void;
|
|
1010
1011
|
selectClockSecond(value: number, event?: MouseEvent): void;
|
|
1012
|
+
selectClockTick(value: number, event: MouseEvent): void;
|
|
1011
1013
|
goToClockStep(step: 'hour' | 'minute' | 'second'): void;
|
|
1012
1014
|
onClockFaceClick(event: MouseEvent): void;
|
|
1013
1015
|
isHourSelected(value: number): boolean;
|
|
1014
1016
|
isMinuteSelected(value: number): boolean;
|
|
1015
1017
|
isSecondSelected(value: number): boolean;
|
|
1016
1018
|
get clockHandTransform(): string;
|
|
1019
|
+
get clockHandHeight(): string;
|
|
1017
1020
|
private setValueFromOutside;
|
|
1018
1021
|
private emitCurrentValue;
|
|
1019
1022
|
private toNumber;
|
|
@@ -1038,6 +1041,8 @@ interface ClockTick {
|
|
|
1038
1041
|
label: string;
|
|
1039
1042
|
left: string;
|
|
1040
1043
|
top: string;
|
|
1044
|
+
labelLeft: string;
|
|
1045
|
+
labelTop: string;
|
|
1041
1046
|
rotate: string;
|
|
1042
1047
|
}
|
|
1043
1048
|
|