@symphony-talent/component-library 4.57.0 → 4.59.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 (31) hide show
  1. package/esm2020/lib/atoms/button-v2/button.component.mjs +2 -2
  2. package/esm2020/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.component.mjs +37 -0
  3. package/esm2020/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.model.mjs +2 -0
  4. package/esm2020/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.module.mjs +62 -0
  5. package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.mjs +6 -6
  6. package/esm2020/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.component.mjs +3 -3
  7. package/esm2020/projects/component-library/lib/atoms/button-v2/button.component.mjs +2 -2
  8. package/esm2020/projects/component-library/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.component.mjs +37 -0
  9. package/esm2020/projects/component-library/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.model.mjs +2 -0
  10. package/esm2020/projects/component-library/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.module.mjs +62 -0
  11. package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.mjs +6 -6
  12. package/esm2020/projects/component-library/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.component.mjs +3 -3
  13. package/esm2020/projects/component-library/public-api.mjs +4 -1
  14. package/esm2020/public-api.mjs +4 -1
  15. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +84 -7
  16. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  17. package/fesm2015/symphony-talent-component-library.mjs +84 -7
  18. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +84 -7
  20. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  21. package/fesm2020/symphony-talent-component-library.mjs +84 -7
  22. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  23. package/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.component.d.ts +14 -0
  24. package/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.model.d.ts +9 -0
  25. package/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.module.d.ts +17 -0
  26. package/package.json +1 -1
  27. package/projects/component-library/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.component.d.ts +14 -0
  28. package/projects/component-library/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.model.d.ts +9 -0
  29. package/projects/component-library/lib/pages/modals/assign-to-user-modal/assign-to-user-modal.module.d.ts +17 -0
  30. package/projects/component-library/public-api.d.ts +3 -0
  31. package/public-api.d.ts +3 -0
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { AssignToUserPageModel } from './assign-to-user-modal.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AssignToUserModalComponent {
5
+ pageModel: AssignToUserPageModel;
6
+ buttonClicked: EventEmitter<AssignToUserPageModel>;
7
+ reloadClicked: EventEmitter<any>;
8
+ closeButtonClicked: EventEmitter<string>;
9
+ constructor();
10
+ onButtonClick(pageModel: AssignToUserPageModel): void;
11
+ onCloseButtonClick(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssignToUserModalComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AssignToUserModalComponent, "symphony-assign-to-user-modal", never, { "pageModel": "pageModel"; }, { "buttonClicked": "buttonClicked"; "reloadClicked": "reloadClicked"; "closeButtonClicked": "closeButtonClicked"; }, never, ["[dropdown-dropzone-1]", "[dropdown-dropzone-2]"]>;
14
+ }
@@ -0,0 +1,9 @@
1
+ export interface AssignToUserPageModel {
2
+ modelTitle: string;
3
+ modelSubTitle: string;
4
+ modelDescription: string;
5
+ isLoading: boolean;
6
+ assignBtnDisabled?: boolean;
7
+ errorState?: boolean;
8
+ errorText?: string;
9
+ }
@@ -0,0 +1,17 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./assign-to-user-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 "../../../templates/modal-templates/two-column-body-template/two-column-body-template.module";
6
+ import * as i5 from "../../../atoms/button/button.module";
7
+ import * as i6 from "../../../atoms/paragraph/paragraph.module";
8
+ import * as i7 from "../../../atoms/icon/icon.module";
9
+ import * as i8 from "../../../atoms/h4/h4.module";
10
+ import * as i9 from "../../../atoms/button-v2/button.module";
11
+ import * as i10 from "../../../templates/placeholder/placeholder.module";
12
+ import * as i11 from "../../../atoms/sfx-loader/sfx-loader.module";
13
+ export declare class AssignToUserModalModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssignToUserModalModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AssignToUserModalModule, [typeof i1.AssignToUserModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.TwoColumnBodyTemplateModule, typeof i5.ButtonModule, typeof i6.ParagraphModule, typeof i7.IconModule, typeof i8.H4Module, typeof i9.ButtonV2Module, typeof i10.PlaceholderModule, typeof i11.SfxLoaderModule], [typeof i1.AssignToUserModalComponent]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<AssignToUserModalModule>;
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symphony-talent/component-library",
3
- "version": "4.57.0",
3
+ "version": "4.59.0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "ag-grid-angular": "^24.0.0",
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { AssignToUserPageModel } from './assign-to-user-modal.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AssignToUserModalComponent {
5
+ pageModel: AssignToUserPageModel;
6
+ buttonClicked: EventEmitter<AssignToUserPageModel>;
7
+ reloadClicked: EventEmitter<any>;
8
+ closeButtonClicked: EventEmitter<string>;
9
+ constructor();
10
+ onButtonClick(pageModel: AssignToUserPageModel): void;
11
+ onCloseButtonClick(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssignToUserModalComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AssignToUserModalComponent, "symphony-assign-to-user-modal", never, { "pageModel": "pageModel"; }, { "buttonClicked": "buttonClicked"; "reloadClicked": "reloadClicked"; "closeButtonClicked": "closeButtonClicked"; }, never, ["[dropdown-dropzone-1]", "[dropdown-dropzone-2]"]>;
14
+ }
@@ -0,0 +1,9 @@
1
+ export interface AssignToUserPageModel {
2
+ modelTitle: string;
3
+ modelSubTitle: string;
4
+ modelDescription: string;
5
+ isLoading: boolean;
6
+ assignBtnDisabled?: boolean;
7
+ errorState?: boolean;
8
+ errorText?: string;
9
+ }
@@ -0,0 +1,17 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./assign-to-user-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 "../../../templates/modal-templates/two-column-body-template/two-column-body-template.module";
6
+ import * as i5 from "../../../atoms/button/button.module";
7
+ import * as i6 from "../../../atoms/paragraph/paragraph.module";
8
+ import * as i7 from "../../../atoms/icon/icon.module";
9
+ import * as i8 from "../../../atoms/h4/h4.module";
10
+ import * as i9 from "../../../atoms/button-v2/button.module";
11
+ import * as i10 from "../../../templates/placeholder/placeholder.module";
12
+ import * as i11 from "../../../atoms/sfx-loader/sfx-loader.module";
13
+ export declare class AssignToUserModalModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssignToUserModalModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AssignToUserModalModule, [typeof i1.AssignToUserModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.TwoColumnBodyTemplateModule, typeof i5.ButtonModule, typeof i6.ParagraphModule, typeof i7.IconModule, typeof i8.H4Module, typeof i9.ButtonV2Module, typeof i10.PlaceholderModule, typeof i11.SfxLoaderModule], [typeof i1.AssignToUserModalComponent]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<AssignToUserModalModule>;
17
+ }
@@ -242,5 +242,8 @@ export * from './lib/pages/setting-detail-page/setting-detail-page.component.mod
242
242
  export * from './lib/pages/feedback-setting-details-page/feedback-setting-details-page.component';
243
243
  export * from './lib/pages/feedback-setting-details-page/feedback-setting-details-page.module';
244
244
  export * from './lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.model';
245
+ export * from './lib/pages/modals/assign-to-user-modal/assign-to-user-modal.component';
246
+ export * from './lib/pages/modals/assign-to-user-modal/assign-to-user-modal.module';
247
+ export * from './lib/pages/modals/assign-to-user-modal/assign-to-user-modal.model';
245
248
  export * from './lib/pipe/trim-id.pipe';
246
249
  export * from './lib/pipe/pipe.module';
package/public-api.d.ts CHANGED
@@ -242,5 +242,8 @@ export * from './lib/pages/setting-detail-page/setting-detail-page.component.mod
242
242
  export * from './lib/pages/feedback-setting-details-page/feedback-setting-details-page.component';
243
243
  export * from './lib/pages/feedback-setting-details-page/feedback-setting-details-page.module';
244
244
  export * from './lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.model';
245
+ export * from './lib/pages/modals/assign-to-user-modal/assign-to-user-modal.component';
246
+ export * from './lib/pages/modals/assign-to-user-modal/assign-to-user-modal.module';
247
+ export * from './lib/pages/modals/assign-to-user-modal/assign-to-user-modal.model';
245
248
  export * from './lib/pipe/trim-id.pipe';
246
249
  export * from './lib/pipe/pipe.module';