@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 === null || value === void 0 ? void 0 : 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 });
@@ -1368,6 +1395,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
1368
1395
  }]
1369
1396
  }] });
1370
1397
 
1398
+ class InputTextareaComponent {
1399
+ constructor() {
1400
+ this.textAreaChanged = new EventEmitter();
1401
+ }
1402
+ onValueChanged(event) {
1403
+ this.textAreaChanged.emit(event.value);
1404
+ }
1405
+ }
1406
+ InputTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1407
+ 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"] }] });
1408
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaComponent, decorators: [{
1409
+ type: Component,
1410
+ 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"] }]
1411
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
1412
+ type: Input
1413
+ }], isDisabled: [{
1414
+ type: Input
1415
+ }], textAreaChanged: [{
1416
+ type: Output
1417
+ }] } });
1418
+
1419
+ class InputTextareaModule {
1420
+ }
1421
+ InputTextareaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1422
+ InputTextareaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, declarations: [InputTextareaComponent], imports: [CommonModule, IconModule, FormsModule], exports: [InputTextareaComponent] });
1423
+ InputTextareaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, imports: [[CommonModule, IconModule, FormsModule]] });
1424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, decorators: [{
1425
+ type: NgModule,
1426
+ args: [{
1427
+ declarations: [InputTextareaComponent],
1428
+ exports: [InputTextareaComponent],
1429
+ imports: [CommonModule, IconModule, FormsModule]
1430
+ }]
1431
+ }] });
1432
+
1371
1433
  class ChipComponent {
1372
1434
  constructor() {
1373
1435
  this.removeChip = new EventEmitter();
@@ -2317,7 +2379,9 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
2317
2379
  VerticalSeparatorModule,
2318
2380
  FormattedCounterModule,
2319
2381
  AdvanceFilterSelectedCounterModule,
2320
- NotificationsModule] });
2382
+ NotificationsModule,
2383
+ CharacterCounterModule,
2384
+ InputTextareaModule] });
2321
2385
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
2322
2386
  ContextualMenuModule,
2323
2387
  AvatarModule,
@@ -2350,7 +2414,9 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
2350
2414
  VerticalSeparatorModule,
2351
2415
  FormattedCounterModule,
2352
2416
  AdvanceFilterSelectedCounterModule,
2353
- NotificationsModule] });
2417
+ NotificationsModule,
2418
+ CharacterCounterModule,
2419
+ InputTextareaModule] });
2354
2420
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
2355
2421
  type: NgModule,
2356
2422
  args: [{
@@ -2389,7 +2455,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2389
2455
  VerticalSeparatorModule,
2390
2456
  FormattedCounterModule,
2391
2457
  AdvanceFilterSelectedCounterModule,
2392
- NotificationsModule
2458
+ NotificationsModule,
2459
+ CharacterCounterModule,
2460
+ InputTextareaModule
2393
2461
  ]
2394
2462
  }]
2395
2463
  }] });
@@ -6964,5 +7032,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
6964
7032
  * Generated bundle index. Do not edit.
6965
7033
  */
6966
7034
 
6967
- 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 };
7035
+ 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 };
6968
7036
  //# sourceMappingURL=symphony-talent-component-library.mjs.map