@symphony-talent/component-library 4.4.0 → 4.6.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 (33) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +8 -4
  2. package/esm2020/lib/atoms/input-textarea/input-textarea.component.mjs +26 -0
  3. package/esm2020/lib/atoms/input-textarea/input-textarea.model.mjs +2 -0
  4. package/esm2020/lib/atoms/input-textarea/input-textarea.module.mjs +20 -0
  5. package/esm2020/lib/molecules/molecules.module.mjs +19 -11
  6. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +8 -4
  7. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.component.mjs +26 -0
  8. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.model.mjs +2 -0
  9. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.module.mjs +20 -0
  10. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +19 -11
  11. package/esm2020/projects/component-library/public-api.mjs +4 -1
  12. package/esm2020/public-api.mjs +4 -1
  13. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +60 -14
  14. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  15. package/fesm2015/symphony-talent-component-library.mjs +60 -14
  16. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  17. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +60 -14
  18. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library.mjs +60 -14
  20. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  21. package/lib/atoms/atoms.module.d.ts +2 -1
  22. package/lib/atoms/input-textarea/input-textarea.component.d.ts +13 -0
  23. package/lib/atoms/input-textarea/input-textarea.model.d.ts +6 -0
  24. package/lib/atoms/input-textarea/input-textarea.module.d.ts +10 -0
  25. package/lib/molecules/molecules.module.d.ts +4 -2
  26. package/package.json +1 -1
  27. package/projects/component-library/lib/atoms/atoms.module.d.ts +2 -1
  28. package/projects/component-library/lib/atoms/input-textarea/input-textarea.component.d.ts +13 -0
  29. package/projects/component-library/lib/atoms/input-textarea/input-textarea.model.d.ts +6 -0
  30. package/projects/component-library/lib/atoms/input-textarea/input-textarea.module.d.ts +10 -0
  31. package/projects/component-library/lib/molecules/molecules.module.d.ts +4 -2
  32. package/projects/component-library/public-api.d.ts +3 -0
  33. package/public-api.d.ts +3 -0
@@ -1394,6 +1394,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
1394
1394
  }]
1395
1395
  }] });
1396
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", currentCount: "currentCount" }, 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
+ }], currentCount: [{
1415
+ type: Input
1416
+ }], textAreaChanged: [{
1417
+ type: Output
1418
+ }] } });
1419
+
1420
+ class InputTextareaModule {
1421
+ }
1422
+ InputTextareaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1423
+ InputTextareaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, declarations: [InputTextareaComponent], imports: [CommonModule, IconModule, FormsModule], exports: [InputTextareaComponent] });
1424
+ InputTextareaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, imports: [[CommonModule, IconModule, FormsModule]] });
1425
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, decorators: [{
1426
+ type: NgModule,
1427
+ args: [{
1428
+ declarations: [InputTextareaComponent],
1429
+ exports: [InputTextareaComponent],
1430
+ imports: [CommonModule, IconModule, FormsModule]
1431
+ }]
1432
+ }] });
1433
+
1397
1434
  class ChipComponent {
1398
1435
  constructor() {
1399
1436
  this.removeChip = new EventEmitter();
@@ -2343,7 +2380,8 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
2343
2380
  FormattedCounterModule,
2344
2381
  AdvanceFilterSelectedCounterModule,
2345
2382
  NotificationsModule,
2346
- CharacterCounterModule] });
2383
+ CharacterCounterModule,
2384
+ InputTextareaModule] });
2347
2385
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
2348
2386
  ContextualMenuModule,
2349
2387
  AvatarModule,
@@ -2377,7 +2415,8 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
2377
2415
  FormattedCounterModule,
2378
2416
  AdvanceFilterSelectedCounterModule,
2379
2417
  NotificationsModule,
2380
- CharacterCounterModule] });
2418
+ CharacterCounterModule,
2419
+ InputTextareaModule] });
2381
2420
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
2382
2421
  type: NgModule,
2383
2422
  args: [{
@@ -2417,7 +2456,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2417
2456
  FormattedCounterModule,
2418
2457
  AdvanceFilterSelectedCounterModule,
2419
2458
  NotificationsModule,
2420
- CharacterCounterModule
2459
+ CharacterCounterModule,
2460
+ InputTextareaModule
2421
2461
  ]
2422
2462
  }]
2423
2463
  }] });
@@ -3211,7 +3251,9 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
3211
3251
  ButtonWithIconModule,
3212
3252
  IconWithTooltipModule,
3213
3253
  DocumentManagementItemModule,
3214
- ActionBarSelectionCounterModule], exports: [PillsModule,
3254
+ ActionBarSelectionCounterModule,
3255
+ InputTextareaModule,
3256
+ CharacterCounterModule], exports: [PillsModule,
3215
3257
  BreadcrumbModule,
3216
3258
  FeedbackCardModule,
3217
3259
  DocumentManagementItemModule,
@@ -3234,7 +3276,9 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
3234
3276
  ButtonWithIconModule,
3235
3277
  IconWithTooltipModule,
3236
3278
  DocumentManagementItemModule,
3237
- ActionBarSelectionCounterModule
3279
+ ActionBarSelectionCounterModule,
3280
+ InputTextareaModule,
3281
+ CharacterCounterModule
3238
3282
  ], PillsModule,
3239
3283
  BreadcrumbModule,
3240
3284
  FeedbackCardModule,
@@ -3244,6 +3288,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3244
3288
  type: NgModule,
3245
3289
  args: [{
3246
3290
  declarations: [],
3291
+ exports: [
3292
+ PillsModule,
3293
+ BreadcrumbModule,
3294
+ FeedbackCardModule,
3295
+ DocumentManagementItemModule,
3296
+ PhaserCardModule
3297
+ ],
3247
3298
  imports: [
3248
3299
  CommonModule,
3249
3300
  AvatarModule,
@@ -3262,14 +3313,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3262
3313
  ButtonWithIconModule,
3263
3314
  IconWithTooltipModule,
3264
3315
  DocumentManagementItemModule,
3265
- ActionBarSelectionCounterModule
3266
- ],
3267
- exports: [
3268
- PillsModule,
3269
- BreadcrumbModule,
3270
- FeedbackCardModule,
3271
- DocumentManagementItemModule,
3272
- PhaserCardModule
3316
+ ActionBarSelectionCounterModule,
3317
+ InputTextareaModule,
3318
+ CharacterCounterModule
3273
3319
  ]
3274
3320
  }]
3275
3321
  }] });
@@ -6990,5 +7036,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
6990
7036
  * Generated bundle index. Do not edit.
6991
7037
  */
6992
7038
 
6993
- 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, 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 };
7039
+ 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 };
6994
7040
  //# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map