@norwegian/core-components 6.7.2 → 6.7.4
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/esm2022/lib/components/airport-select/services/airport-select.service.mjs +2 -2
- package/esm2022/lib/components/alert/alert.component.mjs +5 -3
- package/fesm2022/norwegian-core-components.mjs +5 -3
- package/fesm2022/norwegian-core-components.mjs.map +1 -1
- package/lib/components/alert/alert.component.d.ts +7 -1
- package/package.json +1 -1
|
@@ -68,6 +68,12 @@ export declare class AlertComponent extends NasComponentBase {
|
|
|
68
68
|
* Boolean to give opportunity to close the alert box
|
|
69
69
|
*/
|
|
70
70
|
removable: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* @property Input
|
|
73
|
+
* @description
|
|
74
|
+
* Get or sets boolean value indicating whether text should be trusted as HTML. Defaults to false
|
|
75
|
+
*/
|
|
76
|
+
trustTextHtml: boolean;
|
|
71
77
|
constructor();
|
|
72
78
|
getClasses(element?: string, modifiers?: Array<string>): Array<ClassModel>;
|
|
73
79
|
getModifiers(): Array<string>;
|
|
@@ -77,5 +83,5 @@ export declare class AlertComponent extends NasComponentBase {
|
|
|
77
83
|
getIconAlt(): string;
|
|
78
84
|
removeAlertBox(): void;
|
|
79
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "nas-alert", never, { "title": { "alias": "title"; "required": false; }; "info": { "alias": "info"; "required": false; }; "warning": { "alias": "warning"; "required": false; }; "error": { "alias": "error"; "required": false; }; "success": { "alias": "success"; "required": false; }; "text": { "alias": "text"; "required": false; }; "show": { "alias": "show"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "showChange": "showChange"; }, never, ["*"], false, never>;
|
|
86
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "nas-alert", never, { "title": { "alias": "title"; "required": false; }; "info": { "alias": "info"; "required": false; }; "warning": { "alias": "warning"; "required": false; }; "error": { "alias": "error"; "required": false; }; "success": { "alias": "success"; "required": false; }; "text": { "alias": "text"; "required": false; }; "show": { "alias": "show"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "trustTextHtml": { "alias": "trustTextHtml"; "required": false; }; }, { "showChange": "showChange"; }, never, ["*"], false, never>;
|
|
81
87
|
}
|