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