@maro-tech/form 0.1.3 → 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
|
@@ -112,6 +112,7 @@ declare class InputSelectControlComponent implements ControlValueAccessor, OnCha
|
|
|
112
112
|
private mergeOptions;
|
|
113
113
|
private isBlankOption;
|
|
114
114
|
private getDictionaryName;
|
|
115
|
+
private sameDataParams;
|
|
115
116
|
private reloadDictionaryOptions;
|
|
116
117
|
private loadDictionaryOptions;
|
|
117
118
|
private ensureSelectedDictionaryOptionsLoaded;
|
|
@@ -575,6 +576,9 @@ declare class InputDateControlComponent implements ControlValueAccessor, Validat
|
|
|
575
576
|
visibleMonth: Date;
|
|
576
577
|
calendarView: CalendarView$1;
|
|
577
578
|
isCalendarOpen: boolean;
|
|
579
|
+
readonly popupViewportMargin = 16;
|
|
580
|
+
readonly popupOffset = 8;
|
|
581
|
+
readonly calendarPositions: ConnectedPosition[];
|
|
578
582
|
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
579
583
|
get controlId(): string;
|
|
580
584
|
private onChange;
|
|
@@ -678,6 +682,9 @@ declare class InputDatetimeControlComponent implements ControlValueAccessor, Val
|
|
|
678
682
|
isCalendarOpen: boolean;
|
|
679
683
|
calendarView: CalendarView;
|
|
680
684
|
visibleMonth: Date;
|
|
685
|
+
readonly popupViewportMargin = 16;
|
|
686
|
+
readonly popupOffset = 8;
|
|
687
|
+
readonly calendarPositions: ConnectedPosition[];
|
|
681
688
|
selectedHour: number;
|
|
682
689
|
selectedMinute: number;
|
|
683
690
|
private static nextId;
|