@symphony-talent/component-library 4.221.0 → 4.223.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/esm2020/lib/atoms/input-number/input-number.component.mjs +5 -3
- package/esm2020/lib/organisms/generate-license-modal/generate-license-modal.component.mjs +1 -1
- package/esm2020/lib/pages/modals/notification-modal/notification-modal.component.mjs +38 -0
- package/esm2020/lib/pages/modals/notification-modal/notification-modal.model.mjs +2 -0
- package/esm2020/lib/pages/modals/notification-modal/notification-modal.module.mjs +38 -0
- package/esm2020/projects/component-library/lib/atoms/input-number/input-number.component.mjs +5 -3
- package/esm2020/projects/component-library/lib/organisms/generate-license-modal/generate-license-modal.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/pages/modals/notification-modal/notification-modal.component.mjs +38 -0
- package/esm2020/projects/component-library/lib/pages/modals/notification-modal/notification-modal.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/modals/notification-modal/notification-modal.module.mjs +38 -0
- package/esm2020/projects/component-library/public-api.mjs +4 -1
- package/esm2020/public-api.mjs +4 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +67 -4
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +67 -4
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +67 -4
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +67 -4
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/input-number/input-number.component.d.ts +3 -2
- package/lib/pages/modals/notification-modal/notification-modal.component.d.ts +14 -0
- package/lib/pages/modals/notification-modal/notification-modal.model.d.ts +17 -0
- package/lib/pages/modals/notification-modal/notification-modal.module.d.ts +12 -0
- package/package.json +1 -1
- package/projects/component-library/lib/atoms/input-number/input-number.component.d.ts +3 -2
- package/projects/component-library/lib/pages/modals/notification-modal/notification-modal.component.d.ts +14 -0
- package/projects/component-library/lib/pages/modals/notification-modal/notification-modal.model.d.ts +17 -0
- package/projects/component-library/lib/pages/modals/notification-modal/notification-modal.module.d.ts +12 -0
- package/projects/component-library/public-api.d.ts +3 -0
- package/public-api.d.ts +3 -0
|
@@ -4,10 +4,11 @@ export declare class InputNumberComponent {
|
|
|
4
4
|
value: number;
|
|
5
5
|
label: string;
|
|
6
6
|
maxValue: number;
|
|
7
|
-
errorMessage
|
|
7
|
+
errorMessage?: string;
|
|
8
|
+
placeholder?: string;
|
|
8
9
|
valueChanged: EventEmitter<number>;
|
|
9
10
|
constructor();
|
|
10
11
|
onValueChange(value: any): void;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "symphony-input-number", never, { "label": "label"; "maxValue": "maxValue"; "errorMessage": "errorMessage"; }, { "valueChanged": "valueChanged"; }, never, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "symphony-input-number", never, { "label": "label"; "maxValue": "maxValue"; "errorMessage": "errorMessage"; "placeholder": "placeholder"; }, { "valueChanged": "valueChanged"; }, never, never>;
|
|
13
14
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { NotificationModalModel } from './notification-modal.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NotificationModalComponent {
|
|
5
|
+
model?: NotificationModalModel;
|
|
6
|
+
closeButtonClicked: EventEmitter<void>;
|
|
7
|
+
primaryButtonClicked: EventEmitter<string>;
|
|
8
|
+
secondaryButtonClicked: EventEmitter<void>;
|
|
9
|
+
onCloseButtonClick(): void;
|
|
10
|
+
onPrimaryButtonClick(event: string): void;
|
|
11
|
+
onSecondaryButtonClick(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationModalComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationModalComponent, "symphony-notification-modal", never, { "model": "model"; }, { "closeButtonClicked": "closeButtonClicked"; "primaryButtonClicked": "primaryButtonClicked"; "secondaryButtonClicked": "secondaryButtonClicked"; }, never, ["[notification-modal-body]"]>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface NotificationModalModel {
|
|
2
|
+
icon?: string;
|
|
3
|
+
iconSize?: string;
|
|
4
|
+
iconColor?: string;
|
|
5
|
+
heading?: string;
|
|
6
|
+
bodyText?: string;
|
|
7
|
+
summaryTitle?: string;
|
|
8
|
+
summaryItems?: NotificationModalSummaryItem[];
|
|
9
|
+
primaryButtonText?: string;
|
|
10
|
+
primaryButtonDisabled?: boolean;
|
|
11
|
+
secondaryButtonText?: string;
|
|
12
|
+
secondaryButtonDisabled?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface NotificationModalSummaryItem {
|
|
15
|
+
label: string;
|
|
16
|
+
value: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./notification-modal.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../../atoms/h3/h3.module";
|
|
5
|
+
import * as i4 from "../../../atoms/paragraph/paragraph.module";
|
|
6
|
+
import * as i5 from "../../../atoms/button-v2/button.module";
|
|
7
|
+
import * as i6 from "../../../atoms/icon/icon.module";
|
|
8
|
+
export declare class NotificationModalModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationModalModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationModalModule, [typeof i1.NotificationModalComponent], [typeof i2.CommonModule, typeof i3.H3Module, typeof i4.ParagraphModule, typeof i5.ButtonV2Module, typeof i6.IconModule], [typeof i1.NotificationModalComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NotificationModalModule>;
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -4,10 +4,11 @@ export declare class InputNumberComponent {
|
|
|
4
4
|
value: number;
|
|
5
5
|
label: string;
|
|
6
6
|
maxValue: number;
|
|
7
|
-
errorMessage
|
|
7
|
+
errorMessage?: string;
|
|
8
|
+
placeholder?: string;
|
|
8
9
|
valueChanged: EventEmitter<number>;
|
|
9
10
|
constructor();
|
|
10
11
|
onValueChange(value: any): void;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "symphony-input-number", never, { "label": "label"; "maxValue": "maxValue"; "errorMessage": "errorMessage"; }, { "valueChanged": "valueChanged"; }, never, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "symphony-input-number", never, { "label": "label"; "maxValue": "maxValue"; "errorMessage": "errorMessage"; "placeholder": "placeholder"; }, { "valueChanged": "valueChanged"; }, never, never>;
|
|
13
14
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { NotificationModalModel } from './notification-modal.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NotificationModalComponent {
|
|
5
|
+
model?: NotificationModalModel;
|
|
6
|
+
closeButtonClicked: EventEmitter<void>;
|
|
7
|
+
primaryButtonClicked: EventEmitter<string>;
|
|
8
|
+
secondaryButtonClicked: EventEmitter<void>;
|
|
9
|
+
onCloseButtonClick(): void;
|
|
10
|
+
onPrimaryButtonClick(event: string): void;
|
|
11
|
+
onSecondaryButtonClick(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationModalComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationModalComponent, "symphony-notification-modal", never, { "model": "model"; }, { "closeButtonClicked": "closeButtonClicked"; "primaryButtonClicked": "primaryButtonClicked"; "secondaryButtonClicked": "secondaryButtonClicked"; }, never, ["[notification-modal-body]"]>;
|
|
14
|
+
}
|
package/projects/component-library/lib/pages/modals/notification-modal/notification-modal.model.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface NotificationModalModel {
|
|
2
|
+
icon?: string;
|
|
3
|
+
iconSize?: string;
|
|
4
|
+
iconColor?: string;
|
|
5
|
+
heading?: string;
|
|
6
|
+
bodyText?: string;
|
|
7
|
+
summaryTitle?: string;
|
|
8
|
+
summaryItems?: NotificationModalSummaryItem[];
|
|
9
|
+
primaryButtonText?: string;
|
|
10
|
+
primaryButtonDisabled?: boolean;
|
|
11
|
+
secondaryButtonText?: string;
|
|
12
|
+
secondaryButtonDisabled?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface NotificationModalSummaryItem {
|
|
15
|
+
label: string;
|
|
16
|
+
value: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./notification-modal.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../../atoms/h3/h3.module";
|
|
5
|
+
import * as i4 from "../../../atoms/paragraph/paragraph.module";
|
|
6
|
+
import * as i5 from "../../../atoms/button-v2/button.module";
|
|
7
|
+
import * as i6 from "../../../atoms/icon/icon.module";
|
|
8
|
+
export declare class NotificationModalModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationModalModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationModalModule, [typeof i1.NotificationModalComponent], [typeof i2.CommonModule, typeof i3.H3Module, typeof i4.ParagraphModule, typeof i5.ButtonV2Module, typeof i6.IconModule], [typeof i1.NotificationModalComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NotificationModalModule>;
|
|
12
|
+
}
|
|
@@ -312,6 +312,9 @@ export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.mo
|
|
|
312
312
|
export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.component';
|
|
313
313
|
export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.module';
|
|
314
314
|
export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.model';
|
|
315
|
+
export * from './lib/pages/modals/notification-modal/notification-modal.component';
|
|
316
|
+
export * from './lib/pages/modals/notification-modal/notification-modal.module';
|
|
317
|
+
export * from './lib/pages/modals/notification-modal/notification-modal.model';
|
|
315
318
|
export * from './lib/pages/job-list-page/job-list-page.component';
|
|
316
319
|
export * from './lib/pages/job-list-page/job-list-page.module';
|
|
317
320
|
export * from './lib/pages/job-list-page/job-list-page.model';
|
package/public-api.d.ts
CHANGED
|
@@ -312,6 +312,9 @@ export * from './lib/pages/modals/chatbot-history-modal/chatbot-history-modal.mo
|
|
|
312
312
|
export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.component';
|
|
313
313
|
export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.module';
|
|
314
314
|
export * from './lib/pages/modals/calendar-availability-modal/calendar-availability-modal.model';
|
|
315
|
+
export * from './lib/pages/modals/notification-modal/notification-modal.component';
|
|
316
|
+
export * from './lib/pages/modals/notification-modal/notification-modal.module';
|
|
317
|
+
export * from './lib/pages/modals/notification-modal/notification-modal.model';
|
|
315
318
|
export * from './lib/pages/job-list-page/job-list-page.component';
|
|
316
319
|
export * from './lib/pages/job-list-page/job-list-page.module';
|
|
317
320
|
export * from './lib/pages/job-list-page/job-list-page.model';
|