@maro-tech/form 0.1.4 → 0.1.5
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/package.json
CHANGED
|
@@ -576,6 +576,9 @@ declare class InputDateControlComponent implements ControlValueAccessor, Validat
|
|
|
576
576
|
visibleMonth: Date;
|
|
577
577
|
calendarView: CalendarView$1;
|
|
578
578
|
isCalendarOpen: boolean;
|
|
579
|
+
readonly popupViewportMargin = 16;
|
|
580
|
+
readonly popupOffset = 8;
|
|
581
|
+
readonly calendarPositions: ConnectedPosition[];
|
|
579
582
|
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
580
583
|
get controlId(): string;
|
|
581
584
|
private onChange;
|
|
@@ -679,6 +682,9 @@ declare class InputDatetimeControlComponent implements ControlValueAccessor, Val
|
|
|
679
682
|
isCalendarOpen: boolean;
|
|
680
683
|
calendarView: CalendarView;
|
|
681
684
|
visibleMonth: Date;
|
|
685
|
+
readonly popupViewportMargin = 16;
|
|
686
|
+
readonly popupOffset = 8;
|
|
687
|
+
readonly calendarPositions: ConnectedPosition[];
|
|
682
688
|
selectedHour: number;
|
|
683
689
|
selectedMinute: number;
|
|
684
690
|
private static nextId;
|