@symphony-talent/component-library 4.5.0 → 4.7.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 (21) hide show
  1. package/esm2020/lib/atoms/chip/chip.component.mjs +2 -2
  2. package/esm2020/lib/atoms/input-textarea/input-textarea.component.mjs +4 -2
  3. package/esm2020/lib/atoms/input-textarea/input-textarea.model.mjs +1 -1
  4. package/esm2020/lib/molecules/molecules.module.mjs +19 -11
  5. package/esm2020/projects/component-library/lib/atoms/chip/chip.component.mjs +2 -2
  6. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.component.mjs +4 -2
  7. package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.model.mjs +1 -1
  8. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +19 -11
  9. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +21 -13
  10. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  11. package/fesm2015/symphony-talent-component-library.mjs +21 -13
  12. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  13. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +21 -13
  14. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  15. package/fesm2020/symphony-talent-component-library.mjs +21 -13
  16. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  17. package/lib/atoms/input-textarea/input-textarea.component.d.ts +2 -1
  18. package/lib/molecules/molecules.module.d.ts +4 -2
  19. package/package.json +1 -1
  20. package/projects/component-library/lib/atoms/input-textarea/input-textarea.component.d.ts +2 -1
  21. package/projects/component-library/lib/molecules/molecules.module.d.ts +4 -2
@@ -1404,7 +1404,7 @@ class InputTextareaComponent {
1404
1404
  }
1405
1405
  }
1406
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"] }] });
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
1408
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaComponent, decorators: [{
1409
1409
  type: Component,
1410
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"] }]
@@ -1412,6 +1412,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
1412
1412
  type: Input
1413
1413
  }], isDisabled: [{
1414
1414
  type: Input
1415
+ }], currentCount: [{
1416
+ type: Input
1415
1417
  }], textAreaChanged: [{
1416
1418
  type: Output
1417
1419
  }] } });
@@ -1439,10 +1441,10 @@ class ChipComponent {
1439
1441
  }
1440
1442
  }
1441
1443
  ChipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1442
- ChipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChipComponent, selector: "symphony-chip", inputs: { chipLabel: "chipLabel", hasClose: "hasClose", hasError: "hasError" }, outputs: { removeChip: "removeChip" }, ngImport: i0, template: "<span\n class=\"sfx-d-inline-block sfx-chip-item\"\n [ngClass]=\"{ 'has-close': hasClose, 'has-error': hasError }\"\n>\n <i\n *ngIf=\"hasClose\"\n (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ chipLabel }}\n</span>\n", styles: [".sfx-chip-item{color:#000;padding:4px 15px;border-radius:25px;text-align:center;letter-spacing:-.4px;margin-right:5px;position:relative;border:1px solid #bababa}.sfx-chip-item:hover{background-color:#000;color:#fff}.sfx-chip-item.has-close{padding:4px 15px 4px 31px}.sfx-chip-item.has-error{border:1px solid #f0001e}.sfx-chip-item i{font-size:18px;position:absolute;left:10px;top:5px;transform:rotate(45deg);font-family:library-icons!important}.sfx-chip-item i:before{content:\"\\e927\"}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1444
+ ChipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ChipComponent, selector: "symphony-chip", inputs: { chipLabel: "chipLabel", hasClose: "hasClose", hasError: "hasError" }, outputs: { removeChip: "removeChip" }, ngImport: i0, template: "<span\n class=\"sfx-d-inline-block sfx-chip-item\"\n [ngClass]=\"{ 'has-close': hasClose, 'has-error': hasError }\"\n>\n <i\n *ngIf=\"hasClose\"\n (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ chipLabel }}\n</span>\n", styles: [".sfx-chip-item{color:#000;padding:4px 15px;border-radius:25px;text-align:center;letter-spacing:-.4px;margin-right:5px;position:relative;border:1px solid #bababa}.sfx-chip-item:hover{background-color:#000;color:#fff}.sfx-chip-item.has-close{padding:4px 15px 4px 31px}.sfx-chip-item.has-error{border:1px solid #f0001e}.sfx-chip-item i{font-size:18px!important;position:absolute!important;left:10px;top:5px!important;transform:rotate(45deg);font-family:library-icons!important}.sfx-chip-item i:before{content:\"\\e927\"}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1443
1445
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChipComponent, decorators: [{
1444
1446
  type: Component,
1445
- args: [{ selector: 'symphony-chip', encapsulation: ViewEncapsulation.None, template: "<span\n class=\"sfx-d-inline-block sfx-chip-item\"\n [ngClass]=\"{ 'has-close': hasClose, 'has-error': hasError }\"\n>\n <i\n *ngIf=\"hasClose\"\n (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ chipLabel }}\n</span>\n", styles: [".sfx-chip-item{color:#000;padding:4px 15px;border-radius:25px;text-align:center;letter-spacing:-.4px;margin-right:5px;position:relative;border:1px solid #bababa}.sfx-chip-item:hover{background-color:#000;color:#fff}.sfx-chip-item.has-close{padding:4px 15px 4px 31px}.sfx-chip-item.has-error{border:1px solid #f0001e}.sfx-chip-item i{font-size:18px;position:absolute;left:10px;top:5px;transform:rotate(45deg);font-family:library-icons!important}.sfx-chip-item i:before{content:\"\\e927\"}\n"] }]
1447
+ args: [{ selector: 'symphony-chip', encapsulation: ViewEncapsulation.None, template: "<span\n class=\"sfx-d-inline-block sfx-chip-item\"\n [ngClass]=\"{ 'has-close': hasClose, 'has-error': hasError }\"\n>\n <i\n *ngIf=\"hasClose\"\n (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ chipLabel }}\n</span>\n", styles: [".sfx-chip-item{color:#000;padding:4px 15px;border-radius:25px;text-align:center;letter-spacing:-.4px;margin-right:5px;position:relative;border:1px solid #bababa}.sfx-chip-item:hover{background-color:#000;color:#fff}.sfx-chip-item.has-close{padding:4px 15px 4px 31px}.sfx-chip-item.has-error{border:1px solid #f0001e}.sfx-chip-item i{font-size:18px!important;position:absolute!important;left:10px;top:5px!important;transform:rotate(45deg);font-family:library-icons!important}.sfx-chip-item i:before{content:\"\\e927\"}\n"] }]
1446
1448
  }], ctorParameters: function () { return []; }, propDecorators: { chipLabel: [{
1447
1449
  type: Input
1448
1450
  }], hasClose: [{
@@ -3251,7 +3253,9 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
3251
3253
  ButtonWithIconModule,
3252
3254
  IconWithTooltipModule,
3253
3255
  DocumentManagementItemModule,
3254
- ActionBarSelectionCounterModule], exports: [PillsModule,
3256
+ ActionBarSelectionCounterModule,
3257
+ InputTextareaModule,
3258
+ CharacterCounterModule], exports: [PillsModule,
3255
3259
  BreadcrumbModule,
3256
3260
  FeedbackCardModule,
3257
3261
  DocumentManagementItemModule,
@@ -3274,7 +3278,9 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
3274
3278
  ButtonWithIconModule,
3275
3279
  IconWithTooltipModule,
3276
3280
  DocumentManagementItemModule,
3277
- ActionBarSelectionCounterModule
3281
+ ActionBarSelectionCounterModule,
3282
+ InputTextareaModule,
3283
+ CharacterCounterModule
3278
3284
  ], PillsModule,
3279
3285
  BreadcrumbModule,
3280
3286
  FeedbackCardModule,
@@ -3284,6 +3290,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3284
3290
  type: NgModule,
3285
3291
  args: [{
3286
3292
  declarations: [],
3293
+ exports: [
3294
+ PillsModule,
3295
+ BreadcrumbModule,
3296
+ FeedbackCardModule,
3297
+ DocumentManagementItemModule,
3298
+ PhaserCardModule
3299
+ ],
3287
3300
  imports: [
3288
3301
  CommonModule,
3289
3302
  AvatarModule,
@@ -3302,14 +3315,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3302
3315
  ButtonWithIconModule,
3303
3316
  IconWithTooltipModule,
3304
3317
  DocumentManagementItemModule,
3305
- ActionBarSelectionCounterModule
3306
- ],
3307
- exports: [
3308
- PillsModule,
3309
- BreadcrumbModule,
3310
- FeedbackCardModule,
3311
- DocumentManagementItemModule,
3312
- PhaserCardModule
3318
+ ActionBarSelectionCounterModule,
3319
+ InputTextareaModule,
3320
+ CharacterCounterModule
3313
3321
  ]
3314
3322
  }]
3315
3323
  }] });