@norwegian/core-components 7.8.0 → 7.8.1
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.
|
@@ -111,7 +111,7 @@ export declare class CalendarComponent extends NasComponentBase implements OnIni
|
|
|
111
111
|
* @description
|
|
112
112
|
* When a user has actively changed the date.
|
|
113
113
|
*/
|
|
114
|
-
focusOnNextChange: EventEmitter<
|
|
114
|
+
focusOnNextChange: EventEmitter<KeyboardEvent | MouseEvent>;
|
|
115
115
|
/**
|
|
116
116
|
* @description
|
|
117
117
|
* When selected date has been changed.
|
|
@@ -239,13 +239,13 @@ export declare class DatepickerComponent extends NasComponentBase implements OnI
|
|
|
239
239
|
* @description
|
|
240
240
|
* When a user has actively changed the date.
|
|
241
241
|
*/
|
|
242
|
-
focusOnNextChange: EventEmitter<
|
|
242
|
+
focusOnNextChange: EventEmitter<KeyboardEvent | MouseEvent>;
|
|
243
243
|
/**
|
|
244
244
|
* @property Output
|
|
245
245
|
* @description
|
|
246
246
|
* When a user has pressed shift + tab to go to previous control.
|
|
247
247
|
*/
|
|
248
|
-
focusOnPreviousChange: EventEmitter<
|
|
248
|
+
focusOnPreviousChange: EventEmitter<KeyboardEvent | MouseEvent>;
|
|
249
249
|
get activeDate(): UtcDate;
|
|
250
250
|
set activeDate(date: UtcDate);
|
|
251
251
|
get inputId(): string;
|
|
@@ -290,7 +290,7 @@ export declare class DatepickerComboComponent extends NasComponentBase implement
|
|
|
290
290
|
* @description
|
|
291
291
|
* When a user has pressed shift + tab to go to previous control.
|
|
292
292
|
*/
|
|
293
|
-
focusOnPreviousChange: EventEmitter<
|
|
293
|
+
focusOnPreviousChange: EventEmitter<KeyboardEvent | MouseEvent>;
|
|
294
294
|
get inboundSelectedMonth(): UtcDate;
|
|
295
295
|
set inboundSelectedMonth(month: UtcDate);
|
|
296
296
|
private outboundSelectedDateValue;
|