@norwegian/core-components 7.7.0 → 7.7.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.
- package/assets/documentation/icon/icon.md +1 -4
- package/assets/icons/small/info-outlined--disabled.svg +4 -0
- package/esm2022/lib/components/alert/alert.component.mjs +8 -3
- package/esm2022/lib/components/alert/models/alert.model.mjs +1 -1
- package/esm2022/lib/components/chip/chip.component.mjs +2 -2
- package/esm2022/lib/components/icon/icon.component.mjs +2 -2
- package/esm2022/lib/components/page-header/wallet/wallet.component.mjs +1 -1
- package/esm2022/lib/components/toggle/toggle.component.mjs +3 -3
- package/fesm2022/norwegian-core-components.mjs +13 -8
- package/fesm2022/norwegian-core-components.mjs.map +1 -1
- package/lib/components/alert/alert.component.d.ts +7 -1
- package/lib/components/alert/models/alert.model.d.ts +1 -0
- package/lib/components/chip/chip.component.d.ts +1 -1
- package/lib/components/datepicker/calendar/calendar.component.d.ts +1 -1
- package/lib/components/datepicker/datepicker.component.d.ts +2 -2
- package/lib/components/datepicker-combo/datepicker-combo.component.d.ts +1 -1
- package/package.json +1 -1
- package/assets/icons/small/calendar--disabled--light.svg +0 -14
- /package/assets/icons/small/{info--outlined--light.svg → info-outlined--light.svg} +0 -0
- /package/assets/icons/small/{info--outlined.svg → info-outlined.svg} +0 -0
|
@@ -104,6 +104,12 @@ export declare class AlertComponent extends NasComponentBase {
|
|
|
104
104
|
* Sets the server string value
|
|
105
105
|
*/
|
|
106
106
|
server: string;
|
|
107
|
+
/**
|
|
108
|
+
* @property Input
|
|
109
|
+
* @description
|
|
110
|
+
* Sets the correlation string value
|
|
111
|
+
*/
|
|
112
|
+
correlation: string;
|
|
107
113
|
/**
|
|
108
114
|
* @property Input
|
|
109
115
|
* @description
|
|
@@ -119,5 +125,5 @@ export declare class AlertComponent extends NasComponentBase {
|
|
|
119
125
|
private scrollToAlert;
|
|
120
126
|
private setAlertValues;
|
|
121
127
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
122
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "nas-alert", never, { "timestamp": { "alias": "timestamp"; "required": false; }; "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; }; "neutral": { "alias": "neutral"; "required": false; }; "text": { "alias": "text"; "required": false; }; "show": { "alias": "show"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "removeIcon": { "alias": "removeIcon"; "required": false; }; "trustTextHtml": { "alias": "trustTextHtml"; "required": false; }; "allowAutoScroll": { "alias": "allowAutoScroll"; "required": false; }; "server": { "alias": "server"; "required": false; }; "alert": { "alias": "alert"; "required": false; }; }, { "showChange": "showChange"; }, never, ["*"], false, never>;
|
|
128
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "nas-alert", never, { "timestamp": { "alias": "timestamp"; "required": false; }; "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; }; "neutral": { "alias": "neutral"; "required": false; }; "text": { "alias": "text"; "required": false; }; "show": { "alias": "show"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "removeIcon": { "alias": "removeIcon"; "required": false; }; "trustTextHtml": { "alias": "trustTextHtml"; "required": false; }; "allowAutoScroll": { "alias": "allowAutoScroll"; "required": false; }; "server": { "alias": "server"; "required": false; }; "correlation": { "alias": "correlation"; "required": false; }; "alert": { "alias": "alert"; "required": false; }; }, { "showChange": "showChange"; }, never, ["*"], false, never>;
|
|
123
129
|
}
|
|
@@ -2,7 +2,7 @@ import { NasComponentBase, ClassModel } from '../../core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
/**
|
|
4
4
|
* @description
|
|
5
|
-
* Norwegian Chip Component | Buttons and Indicators
|
|
5
|
+
* Norwegian Chip Component | Buttons and Indicators | Depricated
|
|
6
6
|
*/
|
|
7
7
|
export declare class ChipComponent extends NasComponentBase {
|
|
8
8
|
/**
|
|
@@ -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<MouseEvent | KeyboardEvent>;
|
|
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<MouseEvent | KeyboardEvent>;
|
|
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<MouseEvent | KeyboardEvent>;
|
|
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<MouseEvent | KeyboardEvent>;
|
|
294
294
|
get inboundSelectedMonth(): UtcDate;
|
|
295
295
|
set inboundSelectedMonth(month: UtcDate);
|
|
296
296
|
private outboundSelectedDateValue;
|
package/package.json
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
-
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
5
|
-
width="24px" height="24px" viewBox="-285 408.9 24 24" enable-background="new -285 408.9 24 24" xml:space="preserve">
|
|
6
|
-
<g>
|
|
7
|
-
<rect x="-268" y="420.9" fill="#ffffff" width="2" height="2"/>
|
|
8
|
-
<path fill="#ffffff" d="M-268,412.9v-1.2c0-0.5-0.3-0.8-0.8-0.8c-0.4,0-0.8,0.3-0.8,0.8v1.2h-7v-1.2c0.1-0.5-0.2-0.8-0.6-0.8
|
|
9
|
-
c-0.5,0-0.8,0.3-0.8,0.8v1.2h-5v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-16H-268z M-278,426.9h-2v-2h2V426.9z M-278,422.9h-2v-2h2
|
|
10
|
-
V422.9z M-278,418.9h-2v-2h2V418.9z M-274,426.9h-2v-2h2V426.9z M-274,422.9h-2v-2h2V422.9z M-274,418.9h-2v-2h2V418.9z
|
|
11
|
-
M-270,426.9h-2v-2h2V426.9z M-270,422.9h-2v-2h2V422.9z M-270,418.9h-2v-2h2V418.9z M-268,416.9h2v2h-2V416.9z M-265,423.9h-4v-4
|
|
12
|
-
h4V423.9z"/>
|
|
13
|
-
</g>
|
|
14
|
-
</svg>
|
|
File without changes
|
|
File without changes
|