@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.
- package/esm2020/lib/atoms/chip/chip.component.mjs +2 -2
- package/esm2020/lib/atoms/input-textarea/input-textarea.component.mjs +4 -2
- package/esm2020/lib/atoms/input-textarea/input-textarea.model.mjs +1 -1
- package/esm2020/lib/molecules/molecules.module.mjs +19 -11
- package/esm2020/projects/component-library/lib/atoms/chip/chip.component.mjs +2 -2
- package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.component.mjs +4 -2
- package/esm2020/projects/component-library/lib/atoms/input-textarea/input-textarea.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +19 -11
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +21 -13
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +21 -13
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +21 -13
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +21 -13
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/input-textarea/input-textarea.component.d.ts +2 -1
- package/lib/molecules/molecules.module.d.ts +4 -2
- package/package.json +1 -1
- package/projects/component-library/lib/atoms/input-textarea/input-textarea.component.d.ts +2 -1
- package/projects/component-library/lib/molecules/molecules.module.d.ts +4 -2
|
@@ -1403,7 +1403,7 @@ class InputTextareaComponent {
|
|
|
1403
1403
|
}
|
|
1404
1404
|
}
|
|
1405
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" }, 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"] }] });
|
|
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
1407
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextareaComponent, decorators: [{
|
|
1408
1408
|
type: Component,
|
|
1409
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"] }]
|
|
@@ -1411,6 +1411,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1411
1411
|
type: Input
|
|
1412
1412
|
}], isDisabled: [{
|
|
1413
1413
|
type: Input
|
|
1414
|
+
}], currentCount: [{
|
|
1415
|
+
type: Input
|
|
1414
1416
|
}], textAreaChanged: [{
|
|
1415
1417
|
type: Output
|
|
1416
1418
|
}] } });
|
|
@@ -1438,10 +1440,10 @@ class ChipComponent {
|
|
|
1438
1440
|
}
|
|
1439
1441
|
}
|
|
1440
1442
|
ChipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1441
|
-
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 });
|
|
1443
|
+
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 });
|
|
1442
1444
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ChipComponent, decorators: [{
|
|
1443
1445
|
type: Component,
|
|
1444
|
-
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"] }]
|
|
1446
|
+
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"] }]
|
|
1445
1447
|
}], ctorParameters: function () { return []; }, propDecorators: { chipLabel: [{
|
|
1446
1448
|
type: Input
|
|
1447
1449
|
}], hasClose: [{
|
|
@@ -3249,7 +3251,9 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
3249
3251
|
ButtonWithIconModule,
|
|
3250
3252
|
IconWithTooltipModule,
|
|
3251
3253
|
DocumentManagementItemModule,
|
|
3252
|
-
ActionBarSelectionCounterModule
|
|
3254
|
+
ActionBarSelectionCounterModule,
|
|
3255
|
+
InputTextareaModule,
|
|
3256
|
+
CharacterCounterModule], exports: [PillsModule,
|
|
3253
3257
|
BreadcrumbModule,
|
|
3254
3258
|
FeedbackCardModule,
|
|
3255
3259
|
DocumentManagementItemModule,
|
|
@@ -3272,7 +3276,9 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
3272
3276
|
ButtonWithIconModule,
|
|
3273
3277
|
IconWithTooltipModule,
|
|
3274
3278
|
DocumentManagementItemModule,
|
|
3275
|
-
ActionBarSelectionCounterModule
|
|
3279
|
+
ActionBarSelectionCounterModule,
|
|
3280
|
+
InputTextareaModule,
|
|
3281
|
+
CharacterCounterModule
|
|
3276
3282
|
], PillsModule,
|
|
3277
3283
|
BreadcrumbModule,
|
|
3278
3284
|
FeedbackCardModule,
|
|
@@ -3282,6 +3288,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3282
3288
|
type: NgModule,
|
|
3283
3289
|
args: [{
|
|
3284
3290
|
declarations: [],
|
|
3291
|
+
exports: [
|
|
3292
|
+
PillsModule,
|
|
3293
|
+
BreadcrumbModule,
|
|
3294
|
+
FeedbackCardModule,
|
|
3295
|
+
DocumentManagementItemModule,
|
|
3296
|
+
PhaserCardModule
|
|
3297
|
+
],
|
|
3285
3298
|
imports: [
|
|
3286
3299
|
CommonModule,
|
|
3287
3300
|
AvatarModule,
|
|
@@ -3300,14 +3313,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3300
3313
|
ButtonWithIconModule,
|
|
3301
3314
|
IconWithTooltipModule,
|
|
3302
3315
|
DocumentManagementItemModule,
|
|
3303
|
-
ActionBarSelectionCounterModule
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
PillsModule,
|
|
3307
|
-
BreadcrumbModule,
|
|
3308
|
-
FeedbackCardModule,
|
|
3309
|
-
DocumentManagementItemModule,
|
|
3310
|
-
PhaserCardModule
|
|
3316
|
+
ActionBarSelectionCounterModule,
|
|
3317
|
+
InputTextareaModule,
|
|
3318
|
+
CharacterCounterModule
|
|
3311
3319
|
]
|
|
3312
3320
|
}]
|
|
3313
3321
|
}] });
|