@symphony-talent/component-library 4.97.0 → 4.98.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.
Files changed (25) hide show
  1. package/esm2020/lib/pages/modals/symphony-modal/symphony-modal.component.mjs +34 -0
  2. package/esm2020/lib/pages/modals/symphony-modal/symphony-modal.model.mjs +2 -0
  3. package/esm2020/lib/pages/modals/symphony-modal/symphony-modal.module.mjs +50 -0
  4. package/esm2020/projects/component-library/lib/pages/modals/symphony-modal/symphony-modal.component.mjs +34 -0
  5. package/esm2020/projects/component-library/lib/pages/modals/symphony-modal/symphony-modal.model.mjs +2 -0
  6. package/esm2020/projects/component-library/lib/pages/modals/symphony-modal/symphony-modal.module.mjs +50 -0
  7. package/esm2020/projects/component-library/public-api.mjs +4 -1
  8. package/esm2020/public-api.mjs +4 -1
  9. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +65 -1
  10. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  11. package/fesm2015/symphony-talent-component-library.mjs +65 -1
  12. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  13. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +65 -1
  14. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  15. package/fesm2020/symphony-talent-component-library.mjs +65 -1
  16. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  17. package/lib/pages/modals/symphony-modal/symphony-modal.component.d.ts +13 -0
  18. package/lib/pages/modals/symphony-modal/symphony-modal.model.d.ts +8 -0
  19. package/lib/pages/modals/symphony-modal/symphony-modal.module.d.ts +15 -0
  20. package/package.json +1 -1
  21. package/projects/component-library/lib/pages/modals/symphony-modal/symphony-modal.component.d.ts +13 -0
  22. package/projects/component-library/lib/pages/modals/symphony-modal/symphony-modal.model.d.ts +8 -0
  23. package/projects/component-library/lib/pages/modals/symphony-modal/symphony-modal.module.d.ts +15 -0
  24. package/projects/component-library/public-api.d.ts +3 -0
  25. package/public-api.d.ts +3 -0
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { SymphonyModalModel } from './symphony-modal.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SymphonyModalComponent {
5
+ model: SymphonyModalModel;
6
+ confirmClicked: EventEmitter<void>;
7
+ cancelClicked: EventEmitter<void>;
8
+ constructor();
9
+ onConfirm(): void;
10
+ onCancel(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SymphonyModalComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<SymphonyModalComponent, "symphony-modal", never, { "model": "model"; }, { "confirmClicked": "confirmClicked"; "cancelClicked": "cancelClicked"; }, never, ["[sfx-modal-body-area]"]>;
13
+ }
@@ -0,0 +1,8 @@
1
+ export interface SymphonyModalModel {
2
+ title: string;
3
+ isLoading?: boolean;
4
+ errorText?: string;
5
+ confirmButtonText?: string;
6
+ confirmButtonDisabled?: boolean;
7
+ cancelButtonText?: string;
8
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./symphony-modal.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../templates/modal-templates/two-column-modal-template/two-column-modal-template.module";
5
+ import * as i4 from "../../../atoms/icon/icon.module";
6
+ import * as i5 from "../../../atoms/h4/h4.module";
7
+ import * as i6 from "../../../templates/placeholder/placeholder.module";
8
+ import * as i7 from "../../../atoms/button-v2/button.module";
9
+ import * as i8 from "../../../atoms/paragraph/paragraph.module";
10
+ import * as i9 from "../../../atoms/sfx-loader/sfx-loader.module";
11
+ export declare class SymphonyModalModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SymphonyModalModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SymphonyModalModule, [typeof i1.SymphonyModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.IconModule, typeof i5.H4Module, typeof i6.PlaceholderModule, typeof i7.ButtonV2Module, typeof i8.ParagraphModule, typeof i9.SfxLoaderModule], [typeof i1.SymphonyModalComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<SymphonyModalModule>;
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symphony-talent/component-library",
3
- "version": "4.97.0",
3
+ "version": "4.98.0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "ag-grid-angular": "^24.0.0",
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { SymphonyModalModel } from './symphony-modal.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SymphonyModalComponent {
5
+ model: SymphonyModalModel;
6
+ confirmClicked: EventEmitter<void>;
7
+ cancelClicked: EventEmitter<void>;
8
+ constructor();
9
+ onConfirm(): void;
10
+ onCancel(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SymphonyModalComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<SymphonyModalComponent, "symphony-modal", never, { "model": "model"; }, { "confirmClicked": "confirmClicked"; "cancelClicked": "cancelClicked"; }, never, ["[sfx-modal-body-area]"]>;
13
+ }
@@ -0,0 +1,8 @@
1
+ export interface SymphonyModalModel {
2
+ title: string;
3
+ isLoading?: boolean;
4
+ errorText?: string;
5
+ confirmButtonText?: string;
6
+ confirmButtonDisabled?: boolean;
7
+ cancelButtonText?: string;
8
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./symphony-modal.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../../templates/modal-templates/two-column-modal-template/two-column-modal-template.module";
5
+ import * as i4 from "../../../atoms/icon/icon.module";
6
+ import * as i5 from "../../../atoms/h4/h4.module";
7
+ import * as i6 from "../../../templates/placeholder/placeholder.module";
8
+ import * as i7 from "../../../atoms/button-v2/button.module";
9
+ import * as i8 from "../../../atoms/paragraph/paragraph.module";
10
+ import * as i9 from "../../../atoms/sfx-loader/sfx-loader.module";
11
+ export declare class SymphonyModalModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SymphonyModalModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SymphonyModalModule, [typeof i1.SymphonyModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.IconModule, typeof i5.H4Module, typeof i6.PlaceholderModule, typeof i7.ButtonV2Module, typeof i8.ParagraphModule, typeof i9.SfxLoaderModule], [typeof i1.SymphonyModalComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<SymphonyModalModule>;
15
+ }
@@ -276,5 +276,8 @@ export * from './lib/pages/modals/assign-to-user-modal/assign-to-user-modal.mode
276
276
  export * from './lib/pages/domain-whitelisting-partial-page/domain-whitelisting-partial-page.component';
277
277
  export * from './lib/pages/domain-whitelisting-partial-page/domain-whitelisting-partial-page.module';
278
278
  export * from './lib/pages/domain-whitelisting-partial-page/domain-whitelisting-partial-page.model';
279
+ export * from './lib/pages/modals/symphony-modal/symphony-modal.component';
280
+ export * from './lib/pages/modals/symphony-modal/symphony-modal.model';
281
+ export * from './lib/pages/modals/symphony-modal/symphony-modal.module';
279
282
  export * from './lib/pipe/trim-id.pipe';
280
283
  export * from './lib/pipe/pipe.module';
package/public-api.d.ts CHANGED
@@ -276,5 +276,8 @@ export * from './lib/pages/modals/assign-to-user-modal/assign-to-user-modal.mode
276
276
  export * from './lib/pages/domain-whitelisting-partial-page/domain-whitelisting-partial-page.component';
277
277
  export * from './lib/pages/domain-whitelisting-partial-page/domain-whitelisting-partial-page.module';
278
278
  export * from './lib/pages/domain-whitelisting-partial-page/domain-whitelisting-partial-page.model';
279
+ export * from './lib/pages/modals/symphony-modal/symphony-modal.component';
280
+ export * from './lib/pages/modals/symphony-modal/symphony-modal.model';
281
+ export * from './lib/pages/modals/symphony-modal/symphony-modal.module';
279
282
  export * from './lib/pipe/trim-id.pipe';
280
283
  export * from './lib/pipe/pipe.module';