@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
@@ -1395,6 +1395,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
1395
1395
  }]
1396
1396
  }] });
1397
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", 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"] }] });
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
+ }], currentCount: [{
1416
+ type: Input
1417
+ }], textAreaChanged: [{
1418
+ type: Output
1419
+ }] } });
1420
+
1421
+ class InputTextareaModule {
1422
+ }
1423
+ InputTextareaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1424
+ InputTextareaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, declarations: [InputTextareaComponent], imports: [CommonModule, IconModule, FormsModule], exports: [InputTextareaComponent] });
1425
+ InputTextareaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, imports: [[CommonModule, IconModule, FormsModule]] });
1426
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaModule, decorators: [{
1427
+ type: NgModule,
1428
+ args: [{
1429
+ declarations: [InputTextareaComponent],
1430
+ exports: [InputTextareaComponent],
1431
+ imports: [CommonModule, IconModule, FormsModule]
1432
+ }]
1433
+ }] });
1434
+
1398
1435
  class ChipComponent {
1399
1436
  constructor() {
1400
1437
  this.removeChip = new EventEmitter();
@@ -2345,7 +2382,8 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
2345
2382
  FormattedCounterModule,
2346
2383
  AdvanceFilterSelectedCounterModule,
2347
2384
  NotificationsModule,
2348
- CharacterCounterModule] });
2385
+ CharacterCounterModule,
2386
+ InputTextareaModule] });
2349
2387
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
2350
2388
  ContextualMenuModule,
2351
2389
  AvatarModule,
@@ -2379,7 +2417,8 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
2379
2417
  FormattedCounterModule,
2380
2418
  AdvanceFilterSelectedCounterModule,
2381
2419
  NotificationsModule,
2382
- CharacterCounterModule] });
2420
+ CharacterCounterModule,
2421
+ InputTextareaModule] });
2383
2422
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
2384
2423
  type: NgModule,
2385
2424
  args: [{
@@ -2419,7 +2458,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2419
2458
  FormattedCounterModule,
2420
2459
  AdvanceFilterSelectedCounterModule,
2421
2460
  NotificationsModule,
2422
- CharacterCounterModule
2461
+ CharacterCounterModule,
2462
+ InputTextareaModule
2423
2463
  ]
2424
2464
  }]
2425
2465
  }] });
@@ -3213,7 +3253,9 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
3213
3253
  ButtonWithIconModule,
3214
3254
  IconWithTooltipModule,
3215
3255
  DocumentManagementItemModule,
3216
- ActionBarSelectionCounterModule], exports: [PillsModule,
3256
+ ActionBarSelectionCounterModule,
3257
+ InputTextareaModule,
3258
+ CharacterCounterModule], exports: [PillsModule,
3217
3259
  BreadcrumbModule,
3218
3260
  FeedbackCardModule,
3219
3261
  DocumentManagementItemModule,
@@ -3236,7 +3278,9 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
3236
3278
  ButtonWithIconModule,
3237
3279
  IconWithTooltipModule,
3238
3280
  DocumentManagementItemModule,
3239
- ActionBarSelectionCounterModule
3281
+ ActionBarSelectionCounterModule,
3282
+ InputTextareaModule,
3283
+ CharacterCounterModule
3240
3284
  ], PillsModule,
3241
3285
  BreadcrumbModule,
3242
3286
  FeedbackCardModule,
@@ -3246,6 +3290,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3246
3290
  type: NgModule,
3247
3291
  args: [{
3248
3292
  declarations: [],
3293
+ exports: [
3294
+ PillsModule,
3295
+ BreadcrumbModule,
3296
+ FeedbackCardModule,
3297
+ DocumentManagementItemModule,
3298
+ PhaserCardModule
3299
+ ],
3249
3300
  imports: [
3250
3301
  CommonModule,
3251
3302
  AvatarModule,
@@ -3264,14 +3315,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3264
3315
  ButtonWithIconModule,
3265
3316
  IconWithTooltipModule,
3266
3317
  DocumentManagementItemModule,
3267
- ActionBarSelectionCounterModule
3268
- ],
3269
- exports: [
3270
- PillsModule,
3271
- BreadcrumbModule,
3272
- FeedbackCardModule,
3273
- DocumentManagementItemModule,
3274
- PhaserCardModule
3318
+ ActionBarSelectionCounterModule,
3319
+ InputTextareaModule,
3320
+ CharacterCounterModule
3275
3321
  ]
3276
3322
  }]
3277
3323
  }] });
@@ -6994,5 +7040,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
6994
7040
  * Generated bundle index. Do not edit.
6995
7041
  */
6996
7042
 
6997
- 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 };
7043
+ 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 };
6998
7044
  //# sourceMappingURL=symphony-talent-component-library.mjs.map