@gloww/gloww 20.0.0-beta.36 → 20.0.0-beta.38
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 +48 -8
- package/fesm2022/gloww-gloww.mjs.map +1 -1
- package/index.d.ts +15 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -971,7 +971,9 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
971
971
|
private static readonly CLOCK_CENTER;
|
|
972
972
|
private static readonly CLOCK_OUTER_RADIUS;
|
|
973
973
|
private static readonly CLOCK_INNER_RADIUS;
|
|
974
|
-
private static readonly
|
|
974
|
+
private static readonly CLOCK_TICK_OUTER_RADIUS;
|
|
975
|
+
private static readonly CLOCK_TICK_INNER_RADIUS;
|
|
976
|
+
private static readonly CLOCK_TICK_LABEL_RADIUS;
|
|
975
977
|
_value: Date | null;
|
|
976
978
|
display: string | null;
|
|
977
979
|
placeHolder: string | null;
|
|
@@ -1008,12 +1010,18 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
1008
1010
|
selectClockHour(value: number, event?: MouseEvent): void;
|
|
1009
1011
|
selectClockMinute(value: number, event?: MouseEvent): void;
|
|
1010
1012
|
selectClockSecond(value: number, event?: MouseEvent): void;
|
|
1013
|
+
selectClockTick(value: number, event: MouseEvent): void;
|
|
1011
1014
|
goToClockStep(step: 'hour' | 'minute' | 'second'): void;
|
|
1012
1015
|
onClockFaceClick(event: MouseEvent): void;
|
|
1013
1016
|
isHourSelected(value: number): boolean;
|
|
1014
1017
|
isMinuteSelected(value: number): boolean;
|
|
1015
1018
|
isSecondSelected(value: number): boolean;
|
|
1016
1019
|
get clockHandTransform(): string;
|
|
1020
|
+
get clockHandHeight(): string;
|
|
1021
|
+
get hourHandTransform(): string;
|
|
1022
|
+
get hourHandHeight(): string;
|
|
1023
|
+
get minuteHandTransform(): string;
|
|
1024
|
+
get minuteHandHeight(): string;
|
|
1017
1025
|
private setValueFromOutside;
|
|
1018
1026
|
private emitCurrentValue;
|
|
1019
1027
|
private toNumber;
|
|
@@ -1036,9 +1044,12 @@ interface ClockMarker {
|
|
|
1036
1044
|
interface ClockTick {
|
|
1037
1045
|
value: number;
|
|
1038
1046
|
label: string;
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1047
|
+
x1: string;
|
|
1048
|
+
y1: string;
|
|
1049
|
+
x2: string;
|
|
1050
|
+
y2: string;
|
|
1051
|
+
labelLeft: string;
|
|
1052
|
+
labelTop: string;
|
|
1042
1053
|
}
|
|
1043
1054
|
|
|
1044
1055
|
declare class RouteDirective {
|