@norwegian/core-components 7.13.0 → 7.13.2

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<MouseEvent | KeyboardEvent>;
114
+ focusOnNextChange: EventEmitter<KeyboardEvent | MouseEvent>;
115
115
  /**
116
116
  * @description
117
117
  * When selected date has been changed.
@@ -240,13 +240,13 @@ export declare class DatepickerComponent extends NasComponentBase implements OnI
240
240
  * @description
241
241
  * When a user has actively changed the date.
242
242
  */
243
- focusOnNextChange: EventEmitter<MouseEvent | KeyboardEvent>;
243
+ focusOnNextChange: EventEmitter<KeyboardEvent | MouseEvent>;
244
244
  /**
245
245
  * @property Output
246
246
  * @description
247
247
  * When a user has pressed shift + tab to go to previous control.
248
248
  */
249
- focusOnPreviousChange: EventEmitter<MouseEvent | KeyboardEvent>;
249
+ focusOnPreviousChange: EventEmitter<KeyboardEvent | MouseEvent>;
250
250
  get activeDate(): UtcDate;
251
251
  set activeDate(date: UtcDate);
252
252
  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<MouseEvent | KeyboardEvent>;
293
+ focusOnPreviousChange: EventEmitter<KeyboardEvent | MouseEvent>;
294
294
  get inboundSelectedMonth(): UtcDate;
295
295
  set inboundSelectedMonth(month: UtcDate);
296
296
  private outboundSelectedDateValue;
@@ -7,11 +7,11 @@ import { ClassModel } from '../../core/models/class.model';
7
7
  import { NasComponentBase } from '../../core/base/nas-component.base';
8
8
  import { InfoModel } from '../info';
9
9
  import * as i0 from "@angular/core";
10
+ export declare const bannerAnimation: import("@angular/animations").AnimationTriggerMetadata;
10
11
  /**
11
12
  * @description
12
13
  * Norwegian Ribbon Banner Component | Dialogs and Modals
13
14
  */
14
- export declare const bannerAnimation: import("@angular/animations").AnimationTriggerMetadata;
15
15
  export declare class RibbonBannerComponent extends NasComponentBase {
16
16
  /**
17
17
  * @property Input
@@ -37,12 +37,6 @@ export declare class RibbonBannerComponent extends NasComponentBase {
37
37
  * Sets Ribbon banner to warning styling
38
38
  */
39
39
  warning: boolean;
40
- /**
41
- * @property Input
42
- * @description
43
- * The target attribute specifies where to open the link.
44
- */
45
- target: string;
46
40
  /**
47
41
  * @property Output
48
42
  * @description
@@ -68,5 +62,5 @@ export declare class RibbonBannerComponent extends NasComponentBase {
68
62
  onClickClose(): void;
69
63
  onRedirect(): void;
70
64
  static ɵfac: i0.ɵɵFactoryDeclaration<RibbonBannerComponent, never>;
71
- static ɵcmp: i0.ɵɵComponentDeclaration<RibbonBannerComponent, "nas-ribbon-banner", never, { "enable": { "alias": "enable"; "required": false; }; "infoModel": { "alias": "infoModel"; "required": false; }; "info": { "alias": "info"; "required": false; }; "warning": { "alias": "warning"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, { "closeChange": "closeChange"; "onRedirectChange": "onRedirectChange"; }, never, never, false, never>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<RibbonBannerComponent, "nas-ribbon-banner", never, { "enable": { "alias": "enable"; "required": false; }; "infoModel": { "alias": "infoModel"; "required": false; }; "info": { "alias": "info"; "required": false; }; "warning": { "alias": "warning"; "required": false; }; }, { "closeChange": "closeChange"; "onRedirectChange": "onRedirectChange"; }, never, never, false, never>;
72
66
  }
@@ -1,4 +1,5 @@
1
1
  export interface LinkModel {
2
2
  href: string;
3
3
  text: string;
4
+ target?: string;
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norwegian/core-components",
3
- "version": "7.13.0",
3
+ "version": "7.13.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.0.0 < 22.0.0",
6
6
  "@angular/core": ">=16.0.0 < 22.0.0"