@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/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 CLOCK_TICK_RADIUS;
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
- left: string;
1043
- top: string;
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gloww/gloww",
3
- "version": "20.0.0-beta.37",
3
+ "version": "20.0.0-beta.39",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^20.0.0",
6
6
  "@angular/cdk": "^20.0.0",