@gloww/gloww 20.0.0-beta.37 → 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 +28 -9
- package/fesm2022/gloww-gloww.mjs.map +1 -1
- package/index.d.ts +10 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -971,7 +971,8 @@ 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;
|
|
975
976
|
private static readonly CLOCK_TICK_LABEL_RADIUS;
|
|
976
977
|
_value: Date | null;
|
|
977
978
|
display: string | null;
|
|
@@ -1017,6 +1018,10 @@ declare class DatetimeComponent implements ControlValueAccessor {
|
|
|
1017
1018
|
isSecondSelected(value: number): boolean;
|
|
1018
1019
|
get clockHandTransform(): string;
|
|
1019
1020
|
get clockHandHeight(): string;
|
|
1021
|
+
get hourHandTransform(): string;
|
|
1022
|
+
get hourHandHeight(): string;
|
|
1023
|
+
get minuteHandTransform(): string;
|
|
1024
|
+
get minuteHandHeight(): string;
|
|
1020
1025
|
private setValueFromOutside;
|
|
1021
1026
|
private emitCurrentValue;
|
|
1022
1027
|
private toNumber;
|
|
@@ -1039,11 +1044,12 @@ interface ClockMarker {
|
|
|
1039
1044
|
interface ClockTick {
|
|
1040
1045
|
value: number;
|
|
1041
1046
|
label: string;
|
|
1042
|
-
|
|
1043
|
-
|
|
1047
|
+
x1: string;
|
|
1048
|
+
y1: string;
|
|
1049
|
+
x2: string;
|
|
1050
|
+
y2: string;
|
|
1044
1051
|
labelLeft: string;
|
|
1045
1052
|
labelTop: string;
|
|
1046
|
-
rotate: string;
|
|
1047
1053
|
}
|
|
1048
1054
|
|
|
1049
1055
|
declare class RouteDirective {
|