@symphony-talent/component-library 4.3.0 → 4.5.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 (37) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +12 -4
  2. package/esm2020/lib/atoms/character-counter/character-counter.component.mjs +15 -0
  3. package/esm2020/lib/atoms/character-counter/character-counter.module.mjs +19 -0
  4. package/esm2020/lib/atoms/input-textarea/input-textarea.component.mjs +24 -0
  5. package/esm2020/lib/atoms/input-textarea/input-textarea.model.mjs +2 -0
  6. package/esm2020/lib/atoms/input-textarea/input-textarea.module.mjs +20 -0
  7. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +12 -4
  8. package/esm2020/projects/component-library/lib/atoms/character-counter/character-counter.component.mjs +15 -0
  9. package/esm2020/projects/component-library/lib/atoms/character-counter/character-counter.module.mjs +19 -0
  10. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.component.mjs +24 -0
  11. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.model.mjs +2 -0
  12. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.module.mjs +20 -0
  13. package/esm2020/projects/component-library/public-api.mjs +6 -1
  14. package/esm2020/public-api.mjs +6 -1
  15. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +111 -43
  16. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  17. package/fesm2015/symphony-talent-component-library.mjs +111 -43
  18. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +111 -43
  20. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  21. package/fesm2020/symphony-talent-component-library.mjs +111 -43
  22. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  23. package/lib/atoms/atoms.module.d.ts +3 -1
  24. package/lib/atoms/character-counter/character-counter.component.d.ts +7 -0
  25. package/lib/atoms/character-counter/character-counter.module.d.ts +9 -0
  26. package/lib/atoms/input-textarea/input-textarea.component.d.ts +12 -0
  27. package/lib/atoms/input-textarea/input-textarea.model.d.ts +6 -0
  28. package/lib/atoms/input-textarea/input-textarea.module.d.ts +10 -0
  29. package/package.json +1 -1
  30. package/projects/component-library/lib/atoms/atoms.module.d.ts +3 -1
  31. package/projects/component-library/lib/atoms/character-counter/character-counter.component.d.ts +7 -0
  32. package/projects/component-library/lib/atoms/character-counter/character-counter.module.d.ts +9 -0
  33. package/projects/component-library/lib/atoms/input-textarea/input-textarea.component.d.ts +12 -0
  34. package/projects/component-library/lib/atoms/input-textarea/input-textarea.model.d.ts +6 -0
  35. package/projects/component-library/lib/atoms/input-textarea/input-textarea.module.d.ts +10 -0
  36. package/projects/component-library/public-api.d.ts +5 -0
  37. package/public-api.d.ts +5 -0
@@ -195,6 +195,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
195
195
  }]
196
196
  }] });
197
197
 
198
+ class CharacterCounterComponent {
199
+ }
200
+ CharacterCounterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CharacterCounterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
201
+ CharacterCounterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: CharacterCounterComponent, selector: "symphony-character-counter", inputs: { maxCount: "maxCount", currentCount: "currentCount" }, ngImport: i0, template: "<div id=\"counter\" class=\"counter\">{{currentCount}}/{{maxCount}}</div>", styles: [".counter{font-style:normal;font-weight:400;font-size:14px;line-height:20px}\n"] });
202
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CharacterCounterComponent, decorators: [{
203
+ type: Component,
204
+ args: [{ selector: 'symphony-character-counter', template: "<div id=\"counter\" class=\"counter\">{{currentCount}}/{{maxCount}}</div>", styles: [".counter{font-style:normal;font-weight:400;font-size:14px;line-height:20px}\n"] }]
205
+ }], propDecorators: { maxCount: [{
206
+ type: Input
207
+ }], currentCount: [{
208
+ type: Input
209
+ }] } });
210
+
211
+ class IconComponent {
212
+ constructor() {
213
+ this.clicked = new EventEmitter();
214
+ }
215
+ onClick() {
216
+ this.clicked.emit('clicked');
217
+ }
218
+ }
219
+ IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
220
+ IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: IconComponent, selector: "symphony-icon", inputs: { icon: "icon", isSecondary: "isSecondary", size: "size", iconColor: "iconColor" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n [style.fontSize]=\"size\"\n [ngStyle]=\"{ color: iconColor }\"\n (click)=\"onClick()\"\n></i>\n", styles: [".icon-secondary{color:#fff}i{font-size:18px}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconComponent, decorators: [{
222
+ type: Component,
223
+ args: [{ selector: 'symphony-icon', template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n [style.fontSize]=\"size\"\n [ngStyle]=\"{ color: iconColor }\"\n (click)=\"onClick()\"\n></i>\n", styles: [".icon-secondary{color:#fff}i{font-size:18px}\n"] }]
224
+ }], ctorParameters: function () { return []; }, propDecorators: { icon: [{
225
+ type: Input
226
+ }], isSecondary: [{
227
+ type: Input
228
+ }], size: [{
229
+ type: Input
230
+ }], iconColor: [{
231
+ type: Input
232
+ }], clicked: [{
233
+ type: Output
234
+ }] } });
235
+
236
+ class IconModule {
237
+ }
238
+ IconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
239
+ IconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, declarations: [IconComponent], imports: [CommonModule], exports: [IconComponent] });
240
+ IconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, imports: [[CommonModule]] });
241
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, decorators: [{
242
+ type: NgModule,
243
+ args: [{
244
+ declarations: [IconComponent],
245
+ imports: [CommonModule],
246
+ exports: [IconComponent],
247
+ }]
248
+ }] });
249
+
250
+ class CharacterCounterModule {
251
+ }
252
+ CharacterCounterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CharacterCounterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
253
+ CharacterCounterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CharacterCounterModule, declarations: [CharacterCounterComponent], imports: [CommonModule, IconModule], exports: [CharacterCounterComponent] });
254
+ CharacterCounterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CharacterCounterModule, imports: [[CommonModule, IconModule]] });
255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CharacterCounterModule, decorators: [{
256
+ type: NgModule,
257
+ args: [{
258
+ declarations: [CharacterCounterComponent],
259
+ imports: [CommonModule, IconModule],
260
+ exports: [CharacterCounterComponent],
261
+ }]
262
+ }] });
263
+
198
264
  class TrimIdPipe {
199
265
  transform(value) {
200
266
  return value?.replace(/\s/g, '');
@@ -482,31 +548,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
482
548
  type: Input
483
549
  }] } });
484
550
 
485
- class IconComponent {
486
- constructor() {
487
- this.clicked = new EventEmitter();
488
- }
489
- onClick() {
490
- this.clicked.emit('clicked');
491
- }
492
- }
493
- IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
494
- IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: IconComponent, selector: "symphony-icon", inputs: { icon: "icon", isSecondary: "isSecondary", size: "size", iconColor: "iconColor" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n [style.fontSize]=\"size\"\n [ngStyle]=\"{ color: iconColor }\"\n (click)=\"onClick()\"\n></i>\n", styles: [".icon-secondary{color:#fff}i{font-size:18px}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
495
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconComponent, decorators: [{
496
- type: Component,
497
- args: [{ selector: 'symphony-icon', template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n [style.fontSize]=\"size\"\n [ngStyle]=\"{ color: iconColor }\"\n (click)=\"onClick()\"\n></i>\n", styles: [".icon-secondary{color:#fff}i{font-size:18px}\n"] }]
498
- }], ctorParameters: function () { return []; }, propDecorators: { icon: [{
499
- type: Input
500
- }], isSecondary: [{
501
- type: Input
502
- }], size: [{
503
- type: Input
504
- }], iconColor: [{
505
- type: Input
506
- }], clicked: [{
507
- type: Output
508
- }] } });
509
-
510
551
  class AdvertisedJobsCostComponent {
511
552
  constructor() { }
512
553
  refresh(params) {
@@ -734,20 +775,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
734
775
  }]
735
776
  }] });
736
777
 
737
- class IconModule {
738
- }
739
- IconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
740
- IconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, declarations: [IconComponent], imports: [CommonModule], exports: [IconComponent] });
741
- IconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, imports: [[CommonModule]] });
742
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, decorators: [{
743
- type: NgModule,
744
- args: [{
745
- declarations: [IconComponent],
746
- imports: [CommonModule],
747
- exports: [IconComponent],
748
- }]
749
- }] });
750
-
751
778
  class TooltipWrapperModule {
752
779
  }
753
780
  TooltipWrapperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TooltipWrapperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -1367,6 +1394,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
1367
1394
  }]
1368
1395
  }] });
1369
1396
 
1397
+ class InputTextareaComponent {
1398
+ constructor() {
1399
+ this.textAreaChanged = new EventEmitter();
1400
+ }
1401
+ onValueChanged(event) {
1402
+ this.textAreaChanged.emit(event.value);
1403
+ }
1404
+ }
1405
+ InputTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1406
+ InputTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputTextareaComponent, selector: "symphony-input-textarea", inputs: { model: "model", isDisabled: "isDisabled" }, outputs: { textAreaChanged: "textAreaChanged" }, ngImport: i0, template: "<textarea\n id=\"input-textarea\"\n class=\"input-textarea\"\n [rows]=\"model.rows\"\n [maxLength]=\"model.maxCount\"\n [placeholder]=\"model.placeholder\"\n [(ngModel)]=\"model.value\"\n (ngModelChange)=\"onValueChanged($event)\"\n [disabled]=\"isDisabled\"\n></textarea>\n", styles: [".input-textarea{padding:.3rem;width:100%;background:#FFFFFF;border-radius:4px;resize:none;border:1px solid #5B6D80}.input-textarea:focus-visible{outline:none}\n"], directives: [{ type: i7.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i7.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i7.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
1407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaComponent, decorators: [{
1408
+ type: Component,
1409
+ args: [{ selector: 'symphony-input-textarea', template: "<textarea\n id=\"input-textarea\"\n class=\"input-textarea\"\n [rows]=\"model.rows\"\n [maxLength]=\"model.maxCount\"\n [placeholder]=\"model.placeholder\"\n [(ngModel)]=\"model.value\"\n (ngModelChange)=\"onValueChanged($event)\"\n [disabled]=\"isDisabled\"\n></textarea>\n", styles: [".input-textarea{padding:.3rem;width:100%;background:#FFFFFF;border-radius:4px;resize:none;border:1px solid #5B6D80}.input-textarea:focus-visible{outline:none}\n"] }]
1410
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
1411
+ type: Input
1412
+ }], isDisabled: [{
1413
+ type: Input
1414
+ }], textAreaChanged: [{
1415
+ type: Output
1416
+ }] } });
1417
+
1418
+ class InputTextareaModule {
1419
+ }
1420
+ InputTextareaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1421
+ InputTextareaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, declarations: [InputTextareaComponent], imports: [CommonModule, IconModule, FormsModule], exports: [InputTextareaComponent] });
1422
+ InputTextareaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, imports: [[CommonModule, IconModule, FormsModule]] });
1423
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, decorators: [{
1424
+ type: NgModule,
1425
+ args: [{
1426
+ declarations: [InputTextareaComponent],
1427
+ exports: [InputTextareaComponent],
1428
+ imports: [CommonModule, IconModule, FormsModule]
1429
+ }]
1430
+ }] });
1431
+
1370
1432
  class ChipComponent {
1371
1433
  constructor() {
1372
1434
  this.removeChip = new EventEmitter();
@@ -2315,7 +2377,9 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
2315
2377
  VerticalSeparatorModule,
2316
2378
  FormattedCounterModule,
2317
2379
  AdvanceFilterSelectedCounterModule,
2318
- NotificationsModule] });
2380
+ NotificationsModule,
2381
+ CharacterCounterModule,
2382
+ InputTextareaModule] });
2319
2383
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
2320
2384
  ContextualMenuModule,
2321
2385
  AvatarModule,
@@ -2348,7 +2412,9 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
2348
2412
  VerticalSeparatorModule,
2349
2413
  FormattedCounterModule,
2350
2414
  AdvanceFilterSelectedCounterModule,
2351
- NotificationsModule] });
2415
+ NotificationsModule,
2416
+ CharacterCounterModule,
2417
+ InputTextareaModule] });
2352
2418
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
2353
2419
  type: NgModule,
2354
2420
  args: [{
@@ -2387,7 +2453,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2387
2453
  VerticalSeparatorModule,
2388
2454
  FormattedCounterModule,
2389
2455
  AdvanceFilterSelectedCounterModule,
2390
- NotificationsModule
2456
+ NotificationsModule,
2457
+ CharacterCounterModule,
2458
+ InputTextareaModule
2391
2459
  ]
2392
2460
  }]
2393
2461
  }] });
@@ -6960,5 +7028,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
6960
7028
  * Generated bundle index. Do not edit.
6961
7029
  */
6962
7030
 
6963
- export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, ColorNames, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, ParagraphComponent, ParagraphModule, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
7031
+ export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, CharacterCounterComponent, CharacterCounterModule, ColorNames, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, ParagraphComponent, ParagraphModule, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
6964
7032
  //# sourceMappingURL=symphony-talent-component-library.mjs.map