@sebgroup/green-angular 5.5.3 → 5.6.0
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/src/v-angular/alert/alert.component.mjs +5 -3
- package/esm2022/src/v-angular/datepicker/components/date-input/date-input.component.mjs +3 -3
- package/esm2022/src/v-angular/dropdown/dropdown.component.mjs +2 -2
- package/esm2022/src/v-angular/input/input.component.mjs +2 -2
- package/esm2022/src/v-angular/modal/fold-out/fold-out.component.mjs +2 -2
- package/esm2022/src/v-angular/modal/slide-out/slide-out.component.mjs +5 -5
- package/esm2022/src/v-angular/textarea/textarea.component.mjs +3 -3
- package/esm2022/src/v-angular/toast/toast.component.mjs +3 -10
- package/esm2022/v-angular/alert/alert.component.mjs +5 -3
- package/esm2022/v-angular/datepicker/components/date-input/date-input.component.mjs +3 -3
- package/esm2022/v-angular/dropdown/dropdown.component.mjs +2 -2
- package/esm2022/v-angular/input/input.component.mjs +2 -2
- package/esm2022/v-angular/modal/fold-out/fold-out.component.mjs +2 -2
- package/esm2022/v-angular/modal/slide-out/slide-out.component.mjs +5 -5
- package/esm2022/v-angular/textarea/textarea.component.mjs +3 -3
- package/esm2022/v-angular/toast/toast.component.mjs +3 -10
- package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs +4 -2
- package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs +2 -2
- package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs +2 -2
- package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs +2 -2
- package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs +6 -6
- package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs +2 -2
- package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs +2 -9
- package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular-v-angular.mjs +20 -22
- package/fesm2022/sebgroup-green-angular-v-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/src/v-angular/alert/alert.component.d.ts +2 -1
- package/src/v-angular/toast/toast.component.d.ts +0 -3
- package/v-angular/alert/alert.component.d.ts +2 -1
- package/v-angular/toast/toast.component.d.ts +0 -3
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@ export declare class AlertComponent {
|
|
|
6
6
|
title?: string;
|
|
7
7
|
body?: string;
|
|
8
8
|
linkText?: string;
|
|
9
|
+
linkHref?: string;
|
|
9
10
|
actionText?: string;
|
|
10
11
|
closable: boolean;
|
|
11
12
|
closeAlert: EventEmitter<any>;
|
|
@@ -15,5 +16,5 @@ export declare class AlertComponent {
|
|
|
15
16
|
onLink(e: Event): void;
|
|
16
17
|
onAction(e: Event): void;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "nggv-alert", never, { "type": { "alias": "type"; "required": false; }; "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "actionText": { "alias": "actionText"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; }, { "closeAlert": "closeAlert"; "clickLink": "clickLink"; "clickAction": "clickAction"; }, never, never, false, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "nggv-alert", never, { "type": { "alias": "type"; "required": false; }; "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "linkHref": { "alias": "linkHref"; "required": false; }; "actionText": { "alias": "actionText"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; }, { "closeAlert": "closeAlert"; "clickLink": "clickLink"; "clickAction": "clickAction"; }, never, never, false, never>;
|
|
19
20
|
}
|
|
@@ -2,9 +2,6 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { ToastMessageService } from './toast-message.service';
|
|
3
3
|
import { ToastMessage } from './toast.models';
|
|
4
4
|
import '@sebgroup/green-core/components/icon/icons/cross-small.js';
|
|
5
|
-
import '@sebgroup/green-core/components/icon/icons/checkmark.js';
|
|
6
|
-
import '@sebgroup/green-core/components/icon/icons/triangle-exclamation.js';
|
|
7
|
-
import '@sebgroup/green-core/components/icon/icons/circle-info.js';
|
|
8
5
|
import * as i0 from "@angular/core";
|
|
9
6
|
export declare class ToastComponent implements OnInit, OnDestroy {
|
|
10
7
|
private toastMessageService;
|
|
@@ -6,6 +6,7 @@ export declare class AlertComponent {
|
|
|
6
6
|
title?: string;
|
|
7
7
|
body?: string;
|
|
8
8
|
linkText?: string;
|
|
9
|
+
linkHref?: string;
|
|
9
10
|
actionText?: string;
|
|
10
11
|
closable: boolean;
|
|
11
12
|
closeAlert: EventEmitter<any>;
|
|
@@ -15,5 +16,5 @@ export declare class AlertComponent {
|
|
|
15
16
|
onLink(e: Event): void;
|
|
16
17
|
onAction(e: Event): void;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "nggv-alert", never, { "type": { "alias": "type"; "required": false; }; "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "actionText": { "alias": "actionText"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; }, { "closeAlert": "closeAlert"; "clickLink": "clickLink"; "clickAction": "clickAction"; }, never, never, false, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "nggv-alert", never, { "type": { "alias": "type"; "required": false; }; "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "linkHref": { "alias": "linkHref"; "required": false; }; "actionText": { "alias": "actionText"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; }, { "closeAlert": "closeAlert"; "clickLink": "clickLink"; "clickAction": "clickAction"; }, never, never, false, never>;
|
|
19
20
|
}
|
|
@@ -2,9 +2,6 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { ToastMessageService } from './toast-message.service';
|
|
3
3
|
import { ToastMessage } from './toast.models';
|
|
4
4
|
import '@sebgroup/green-core/components/icon/icons/cross-small.js';
|
|
5
|
-
import '@sebgroup/green-core/components/icon/icons/checkmark.js';
|
|
6
|
-
import '@sebgroup/green-core/components/icon/icons/triangle-exclamation.js';
|
|
7
|
-
import '@sebgroup/green-core/components/icon/icons/circle-info.js';
|
|
8
5
|
import * as i0 from "@angular/core";
|
|
9
6
|
export declare class ToastComponent implements OnInit, OnDestroy {
|
|
10
7
|
private toastMessageService;
|