@symphony-talent/component-library 4.4.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 (29) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +8 -4
  2. package/esm2020/lib/atoms/input-textarea/input-textarea.component.mjs +24 -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/projects/component-library/lib/atoms/atoms.module.mjs +8 -4
  6. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.component.mjs +24 -0
  7. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.model.mjs +2 -0
  8. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.module.mjs +20 -0
  9. package/esm2020/projects/component-library/public-api.mjs +4 -1
  10. package/esm2020/public-api.mjs +4 -1
  11. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +42 -4
  12. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  13. package/fesm2015/symphony-talent-component-library.mjs +42 -4
  14. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  15. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +42 -4
  16. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  17. package/fesm2020/symphony-talent-component-library.mjs +42 -4
  18. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  19. package/lib/atoms/atoms.module.d.ts +2 -1
  20. package/lib/atoms/input-textarea/input-textarea.component.d.ts +12 -0
  21. package/lib/atoms/input-textarea/input-textarea.model.d.ts +6 -0
  22. package/lib/atoms/input-textarea/input-textarea.module.d.ts +10 -0
  23. package/package.json +1 -1
  24. package/projects/component-library/lib/atoms/atoms.module.d.ts +2 -1
  25. package/projects/component-library/lib/atoms/input-textarea/input-textarea.component.d.ts +12 -0
  26. package/projects/component-library/lib/atoms/input-textarea/input-textarea.model.d.ts +6 -0
  27. package/projects/component-library/lib/atoms/input-textarea/input-textarea.module.d.ts +10 -0
  28. package/projects/component-library/public-api.d.ts +3 -0
  29. package/public-api.d.ts +3 -0
@@ -1395,6 +1395,41 @@ 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" }, 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
+
1398
1433
  class ChipComponent {
1399
1434
  constructor() {
1400
1435
  this.removeChip = new EventEmitter();
@@ -2345,7 +2380,8 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
2345
2380
  FormattedCounterModule,
2346
2381
  AdvanceFilterSelectedCounterModule,
2347
2382
  NotificationsModule,
2348
- CharacterCounterModule] });
2383
+ CharacterCounterModule,
2384
+ InputTextareaModule] });
2349
2385
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
2350
2386
  ContextualMenuModule,
2351
2387
  AvatarModule,
@@ -2379,7 +2415,8 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
2379
2415
  FormattedCounterModule,
2380
2416
  AdvanceFilterSelectedCounterModule,
2381
2417
  NotificationsModule,
2382
- CharacterCounterModule] });
2418
+ CharacterCounterModule,
2419
+ InputTextareaModule] });
2383
2420
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
2384
2421
  type: NgModule,
2385
2422
  args: [{
@@ -2419,7 +2456,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2419
2456
  FormattedCounterModule,
2420
2457
  AdvanceFilterSelectedCounterModule,
2421
2458
  NotificationsModule,
2422
- CharacterCounterModule
2459
+ CharacterCounterModule,
2460
+ InputTextareaModule
2423
2461
  ]
2424
2462
  }]
2425
2463
  }] });
@@ -6994,5 +7032,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
6994
7032
  * Generated bundle index. Do not edit.
6995
7033
  */
6996
7034
 
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 };
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 };
6998
7036
  //# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map