@symphony-talent/component-library 4.143.0 → 4.144.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/molecules/button-with-icon-v2/button-with-icon-v2.component.mjs +6 -5
- package/esm2020/lib/molecules/button-with-icon-v2/button-with-icon-v2.model.mjs +1 -1
- package/esm2020/lib/molecules/button-with-icon-v2/button-with-icon-v2.module.mjs +5 -4
- package/esm2020/lib/organisms/grid-action-bar-v2/grid-action-bar-v2.component.mjs +5 -5
- package/esm2020/lib/organisms/grid-action-list-v2/grid-action-list-v2.component.mjs +5 -5
- package/esm2020/projects/component-library/lib/molecules/button-with-icon-v2/button-with-icon-v2.component.mjs +6 -5
- package/esm2020/projects/component-library/lib/molecules/button-with-icon-v2/button-with-icon-v2.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/molecules/button-with-icon-v2/button-with-icon-v2.module.mjs +5 -4
- package/esm2020/projects/component-library/lib/organisms/grid-action-bar-v2/grid-action-bar-v2.component.mjs +5 -5
- package/esm2020/projects/component-library/lib/organisms/grid-action-list-v2/grid-action-list-v2.component.mjs +5 -5
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +15 -15
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +15 -15
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +15 -15
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +15 -15
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/molecules/button-with-icon-v2/button-with-icon-v2.component.d.ts +1 -1
- package/lib/molecules/button-with-icon-v2/button-with-icon-v2.model.d.ts +1 -0
- package/lib/molecules/button-with-icon-v2/button-with-icon-v2.module.d.ts +2 -1
- package/lib/organisms/grid-action-bar-v2/grid-action-bar-v2.component.d.ts +1 -1
- package/lib/organisms/grid-action-list-v2/grid-action-list-v2.component.d.ts +1 -1
- package/package.json +1 -1
- package/projects/component-library/lib/molecules/button-with-icon-v2/button-with-icon-v2.component.d.ts +1 -1
- package/projects/component-library/lib/molecules/button-with-icon-v2/button-with-icon-v2.model.d.ts +1 -0
- package/projects/component-library/lib/molecules/button-with-icon-v2/button-with-icon-v2.module.d.ts +2 -1
- package/projects/component-library/lib/organisms/grid-action-bar-v2/grid-action-bar-v2.component.d.ts +1 -1
- package/projects/component-library/lib/organisms/grid-action-list-v2/grid-action-list-v2.component.d.ts +1 -1
|
@@ -4642,15 +4642,15 @@ class ButtonWithIconV2Component {
|
|
|
4642
4642
|
constructor() {
|
|
4643
4643
|
this.actionClicked = new EventEmitter();
|
|
4644
4644
|
}
|
|
4645
|
-
onIconClick() {
|
|
4646
|
-
this.actionClicked.emit();
|
|
4645
|
+
onIconClick(item) {
|
|
4646
|
+
this.actionClicked.emit(item);
|
|
4647
4647
|
}
|
|
4648
4648
|
}
|
|
4649
4649
|
ButtonWithIconV2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconV2Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4650
|
-
ButtonWithIconV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ButtonWithIconV2Component, selector: "symphony-button-with-icon-v2", inputs: { model: "model" }, outputs: { actionClicked: "actionClicked" }, ngImport: i0, template: "<div class=\"sfx-actionV2-items\" *ngIf=\"model\">\n <symphony-tooltip-wrapper\n [placement]=\"model.placement\"\n [tooltipHtml]=\"model.tooltipHtml\"\n [toolTipClass]=\"'toolTipV2'\"\n >\n <button (click)=\"onIconClick()\" [disabled]=\"model.isDisabled\">\n <symphony-icon [icon]=\"model.icon\"></symphony-icon>\n </button>\n </symphony-tooltip-wrapper>\n</div>\n", styles: [".sfx-actionV2-items button{background:transparent;border:none;outline:none;width:40px;border-radius:50%;height:40px;display:flex;justify-content:center;align-items:center}.sfx-actionV2-items button i{color:#5b6d80;top:2px;position:relative}.sfx-actionV2-items button:disabled{cursor:not-allowed;background:transparent!important}.sfx-actionV2-items button:disabled i{color:#c3cbdc}.sfx-actionV2-items button:hover{background:#F1F2F5}\n"], components: [{ type: TooltipWrapperComponent, selector: "symphony-tooltip-wrapper", inputs: ["placement", "tooltipHtml", "toolTipClass"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
4650
|
+
ButtonWithIconV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ButtonWithIconV2Component, selector: "symphony-button-with-icon-v2", inputs: { model: "model" }, outputs: { actionClicked: "actionClicked" }, ngImport: i0, template: "<div class=\"sfx-actionV2-items\" *ngIf=\"model\">\n <symphony-tooltip-wrapper\n [placement]=\"model.placement\"\n [tooltipHtml]=\"model.tooltipHtml\"\n [toolTipClass]=\"'toolTipV2'\"\n >\n <button id=\"gridAction-btn-{{ model.identifier | trimId}}\" (click)=\"onIconClick(model)\" [disabled]=\"model.isDisabled\">\n <symphony-icon [icon]=\"model.icon\"></symphony-icon>\n </button>\n </symphony-tooltip-wrapper>\n</div>\n", styles: [".sfx-actionV2-items button{background:transparent;border:none;outline:none;width:40px;border-radius:50%;height:40px;display:flex;justify-content:center;align-items:center}.sfx-actionV2-items button i{color:#5b6d80;top:2px;position:relative}.sfx-actionV2-items button:disabled{cursor:not-allowed;background:transparent!important}.sfx-actionV2-items button:disabled i{color:#c3cbdc}.sfx-actionV2-items button:hover{background:#F1F2F5}\n"], components: [{ type: TooltipWrapperComponent, selector: "symphony-tooltip-wrapper", inputs: ["placement", "tooltipHtml", "toolTipClass"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "trimId": TrimIdPipe }, encapsulation: i0.ViewEncapsulation.None });
|
|
4651
4651
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconV2Component, decorators: [{
|
|
4652
4652
|
type: Component,
|
|
4653
|
-
args: [{ selector: 'symphony-button-with-icon-v2', encapsulation: ViewEncapsulation.None, template: "<div class=\"sfx-actionV2-items\" *ngIf=\"model\">\n <symphony-tooltip-wrapper\n [placement]=\"model.placement\"\n [tooltipHtml]=\"model.tooltipHtml\"\n [toolTipClass]=\"'toolTipV2'\"\n >\n <button (click)=\"onIconClick()\" [disabled]=\"model.isDisabled\">\n <symphony-icon [icon]=\"model.icon\"></symphony-icon>\n </button>\n </symphony-tooltip-wrapper>\n</div>\n", styles: [".sfx-actionV2-items button{background:transparent;border:none;outline:none;width:40px;border-radius:50%;height:40px;display:flex;justify-content:center;align-items:center}.sfx-actionV2-items button i{color:#5b6d80;top:2px;position:relative}.sfx-actionV2-items button:disabled{cursor:not-allowed;background:transparent!important}.sfx-actionV2-items button:disabled i{color:#c3cbdc}.sfx-actionV2-items button:hover{background:#F1F2F5}\n"] }]
|
|
4653
|
+
args: [{ selector: 'symphony-button-with-icon-v2', encapsulation: ViewEncapsulation.None, template: "<div class=\"sfx-actionV2-items\" *ngIf=\"model\">\n <symphony-tooltip-wrapper\n [placement]=\"model.placement\"\n [tooltipHtml]=\"model.tooltipHtml\"\n [toolTipClass]=\"'toolTipV2'\"\n >\n <button id=\"gridAction-btn-{{ model.identifier | trimId}}\" (click)=\"onIconClick(model)\" [disabled]=\"model.isDisabled\">\n <symphony-icon [icon]=\"model.icon\"></symphony-icon>\n </button>\n </symphony-tooltip-wrapper>\n</div>\n", styles: [".sfx-actionV2-items button{background:transparent;border:none;outline:none;width:40px;border-radius:50%;height:40px;display:flex;justify-content:center;align-items:center}.sfx-actionV2-items button i{color:#5b6d80;top:2px;position:relative}.sfx-actionV2-items button:disabled{cursor:not-allowed;background:transparent!important}.sfx-actionV2-items button:disabled i{color:#c3cbdc}.sfx-actionV2-items button:hover{background:#F1F2F5}\n"] }]
|
|
4654
4654
|
}], propDecorators: { model: [{
|
|
4655
4655
|
type: Input
|
|
4656
4656
|
}], actionClicked: [{
|
|
@@ -4661,15 +4661,15 @@ class GridActionListV2Component {
|
|
|
4661
4661
|
constructor() {
|
|
4662
4662
|
this.actionClicked = new EventEmitter();
|
|
4663
4663
|
}
|
|
4664
|
-
onActionListClick() {
|
|
4665
|
-
this.actionClicked.emit();
|
|
4664
|
+
onActionListClick(event) {
|
|
4665
|
+
this.actionClicked.emit(event);
|
|
4666
4666
|
}
|
|
4667
4667
|
}
|
|
4668
4668
|
GridActionListV2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionListV2Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4669
|
-
GridActionListV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridActionListV2Component, selector: "symphony-grid-action-list-v2", inputs: { actionList: "actionList" }, outputs: { actionClicked: "actionClicked" }, ngImport: i0, template: "<div class=\"sfx-d-flex\">\n <div *ngFor=\"let actionBtnV2 of actionList\">\n <symphony-button-with-icon-v2\n class=\"sfx-d-flex\"\n [model]=\"actionBtnV2\"\n (actionClicked)=\"onActionListClick()\"\n ></symphony-button-with-icon-v2>\n </div>\n</div>", styles: [""], components: [{ type: ButtonWithIconV2Component, selector: "symphony-button-with-icon-v2", inputs: ["model"], outputs: ["actionClicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
4669
|
+
GridActionListV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridActionListV2Component, selector: "symphony-grid-action-list-v2", inputs: { actionList: "actionList" }, outputs: { actionClicked: "actionClicked" }, ngImport: i0, template: "<div class=\"sfx-d-flex\">\n <div *ngFor=\"let actionBtnV2 of actionList\">\n <symphony-button-with-icon-v2\n class=\"sfx-d-flex\"\n [model]=\"actionBtnV2\"\n (actionClicked)=\"onActionListClick($event)\"\n ></symphony-button-with-icon-v2>\n </div>\n</div>", styles: [""], components: [{ type: ButtonWithIconV2Component, selector: "symphony-button-with-icon-v2", inputs: ["model"], outputs: ["actionClicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
4670
4670
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionListV2Component, decorators: [{
|
|
4671
4671
|
type: Component,
|
|
4672
|
-
args: [{ selector: 'symphony-grid-action-list-v2', template: "<div class=\"sfx-d-flex\">\n <div *ngFor=\"let actionBtnV2 of actionList\">\n <symphony-button-with-icon-v2\n class=\"sfx-d-flex\"\n [model]=\"actionBtnV2\"\n (actionClicked)=\"onActionListClick()\"\n ></symphony-button-with-icon-v2>\n </div>\n</div>", styles: [""] }]
|
|
4672
|
+
args: [{ selector: 'symphony-grid-action-list-v2', template: "<div class=\"sfx-d-flex\">\n <div *ngFor=\"let actionBtnV2 of actionList\">\n <symphony-button-with-icon-v2\n class=\"sfx-d-flex\"\n [model]=\"actionBtnV2\"\n (actionClicked)=\"onActionListClick($event)\"\n ></symphony-button-with-icon-v2>\n </div>\n</div>", styles: [""] }]
|
|
4673
4673
|
}], propDecorators: { actionList: [{
|
|
4674
4674
|
type: Input
|
|
4675
4675
|
}], actionClicked: [{
|
|
@@ -4680,15 +4680,15 @@ class GridActionBarV2Component {
|
|
|
4680
4680
|
constructor() {
|
|
4681
4681
|
this.actionBarListItem = new EventEmitter();
|
|
4682
4682
|
}
|
|
4683
|
-
onActionBarListClick() {
|
|
4684
|
-
this.actionBarListItem.emit();
|
|
4683
|
+
onActionBarListClick(event) {
|
|
4684
|
+
this.actionBarListItem.emit(event);
|
|
4685
4685
|
}
|
|
4686
4686
|
}
|
|
4687
4687
|
GridActionBarV2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionBarV2Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4688
|
-
GridActionBarV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridActionBarV2Component, selector: "symphony-grid-action-bar-v2", inputs: { actionListModel: "actionListModel" }, outputs: { actionBarListItem: "actionBarListItem" }, ngImport: i0, template: "<div *ngIf=\"actionListModel\">\n <div class=\"sfx-d-flex sfx-grid-action-bar-v2\">\n <div class=\"selected-wrap\">\n <symphony-icon\n [ngClass]=\"{\n isSelected: actionListModel.isSelected,\n '': !actionListModel.isSelected\n }\"\n class=\"sfx-cursor-pointer\"\n [icon]=\"'si-activity'\"\n [size]=\"'18px'\"\n ></symphony-icon>\n <symphony-paragraph [isFontBold]=\"true\"\n >{{ actionListModel.selectedCount }}\n {{ actionListModel.selectedText }}</symphony-paragraph\n >\n </div>\n <symphony-vertical-separator\n class=\"flex-align-content-center\"\n ></symphony-vertical-separator>\n <symphony-grid-action-list-v2\n class=\"flex-1\"\n [actionList]=\"actionListModel.gridActionListV2\"\n (actionClicked)=\"onActionBarListClick()\"\n ></symphony-grid-action-list-v2>\n <div class=\"sfx-grid-controls-v2\">\n <ng-content select=\"[grid-controls-v2]\"></ng-content>\n </div>\n </div>\n</div>\n", styles: [".sfx-grid-action-bar-v2{flex-flow:wrap}.sfx-grid-action-bar-v2 .selected-wrap{display:flex;align-items:center;gap:5px}.sfx-grid-action-bar-v2 .selected-wrap i{color:#c3cbdc}.sfx-grid-action-bar-v2 .selected-wrap .isSelected i{color:#712ace}.sfx-grid-action-bar-v2 .flex-align-content-center{align-content:center}.sfx-grid-action-bar-v2 .flex-align-content-center .sfx-v-seperator{margin-right:5px}.sfx-grid-action-bar-v2 .flex-1{flex:1}\n"], components: [{ type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold"] }, { type: VerticalSeparatorComponent, selector: "symphony-vertical-separator" }, { type: GridActionListV2Component, selector: "symphony-grid-action-list-v2", inputs: ["actionList"], outputs: ["actionClicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
4688
|
+
GridActionBarV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridActionBarV2Component, selector: "symphony-grid-action-bar-v2", inputs: { actionListModel: "actionListModel" }, outputs: { actionBarListItem: "actionBarListItem" }, ngImport: i0, template: "<div *ngIf=\"actionListModel\">\n <div class=\"sfx-d-flex sfx-grid-action-bar-v2\">\n <div class=\"selected-wrap\">\n <symphony-icon\n [ngClass]=\"{\n isSelected: actionListModel.isSelected,\n '': !actionListModel.isSelected\n }\"\n class=\"sfx-cursor-pointer\"\n [icon]=\"'si-activity'\"\n [size]=\"'18px'\"\n ></symphony-icon>\n <symphony-paragraph [isFontBold]=\"true\"\n >{{ actionListModel.selectedCount }}\n {{ actionListModel.selectedText }}</symphony-paragraph\n >\n </div>\n <symphony-vertical-separator\n class=\"flex-align-content-center\"\n ></symphony-vertical-separator>\n <symphony-grid-action-list-v2\n class=\"flex-1\"\n [actionList]=\"actionListModel.gridActionListV2\"\n (actionClicked)=\"onActionBarListClick($event)\"\n ></symphony-grid-action-list-v2>\n <div class=\"sfx-grid-controls-v2\">\n <ng-content select=\"[grid-controls-v2]\"></ng-content>\n </div>\n </div>\n</div>\n", styles: [".sfx-grid-action-bar-v2{flex-flow:wrap}.sfx-grid-action-bar-v2 .selected-wrap{display:flex;align-items:center;gap:5px}.sfx-grid-action-bar-v2 .selected-wrap i{color:#c3cbdc}.sfx-grid-action-bar-v2 .selected-wrap .isSelected i{color:#712ace}.sfx-grid-action-bar-v2 .flex-align-content-center{align-content:center}.sfx-grid-action-bar-v2 .flex-align-content-center .sfx-v-seperator{margin-right:5px}.sfx-grid-action-bar-v2 .flex-1{flex:1}\n"], components: [{ type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold"] }, { type: VerticalSeparatorComponent, selector: "symphony-vertical-separator" }, { type: GridActionListV2Component, selector: "symphony-grid-action-list-v2", inputs: ["actionList"], outputs: ["actionClicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
4689
4689
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionBarV2Component, decorators: [{
|
|
4690
4690
|
type: Component,
|
|
4691
|
-
args: [{ selector: 'symphony-grid-action-bar-v2', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"actionListModel\">\n <div class=\"sfx-d-flex sfx-grid-action-bar-v2\">\n <div class=\"selected-wrap\">\n <symphony-icon\n [ngClass]=\"{\n isSelected: actionListModel.isSelected,\n '': !actionListModel.isSelected\n }\"\n class=\"sfx-cursor-pointer\"\n [icon]=\"'si-activity'\"\n [size]=\"'18px'\"\n ></symphony-icon>\n <symphony-paragraph [isFontBold]=\"true\"\n >{{ actionListModel.selectedCount }}\n {{ actionListModel.selectedText }}</symphony-paragraph\n >\n </div>\n <symphony-vertical-separator\n class=\"flex-align-content-center\"\n ></symphony-vertical-separator>\n <symphony-grid-action-list-v2\n class=\"flex-1\"\n [actionList]=\"actionListModel.gridActionListV2\"\n (actionClicked)=\"onActionBarListClick()\"\n ></symphony-grid-action-list-v2>\n <div class=\"sfx-grid-controls-v2\">\n <ng-content select=\"[grid-controls-v2]\"></ng-content>\n </div>\n </div>\n</div>\n", styles: [".sfx-grid-action-bar-v2{flex-flow:wrap}.sfx-grid-action-bar-v2 .selected-wrap{display:flex;align-items:center;gap:5px}.sfx-grid-action-bar-v2 .selected-wrap i{color:#c3cbdc}.sfx-grid-action-bar-v2 .selected-wrap .isSelected i{color:#712ace}.sfx-grid-action-bar-v2 .flex-align-content-center{align-content:center}.sfx-grid-action-bar-v2 .flex-align-content-center .sfx-v-seperator{margin-right:5px}.sfx-grid-action-bar-v2 .flex-1{flex:1}\n"] }]
|
|
4691
|
+
args: [{ selector: 'symphony-grid-action-bar-v2', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"actionListModel\">\n <div class=\"sfx-d-flex sfx-grid-action-bar-v2\">\n <div class=\"selected-wrap\">\n <symphony-icon\n [ngClass]=\"{\n isSelected: actionListModel.isSelected,\n '': !actionListModel.isSelected\n }\"\n class=\"sfx-cursor-pointer\"\n [icon]=\"'si-activity'\"\n [size]=\"'18px'\"\n ></symphony-icon>\n <symphony-paragraph [isFontBold]=\"true\"\n >{{ actionListModel.selectedCount }}\n {{ actionListModel.selectedText }}</symphony-paragraph\n >\n </div>\n <symphony-vertical-separator\n class=\"flex-align-content-center\"\n ></symphony-vertical-separator>\n <symphony-grid-action-list-v2\n class=\"flex-1\"\n [actionList]=\"actionListModel.gridActionListV2\"\n (actionClicked)=\"onActionBarListClick($event)\"\n ></symphony-grid-action-list-v2>\n <div class=\"sfx-grid-controls-v2\">\n <ng-content select=\"[grid-controls-v2]\"></ng-content>\n </div>\n </div>\n</div>\n", styles: [".sfx-grid-action-bar-v2{flex-flow:wrap}.sfx-grid-action-bar-v2 .selected-wrap{display:flex;align-items:center;gap:5px}.sfx-grid-action-bar-v2 .selected-wrap i{color:#c3cbdc}.sfx-grid-action-bar-v2 .selected-wrap .isSelected i{color:#712ace}.sfx-grid-action-bar-v2 .flex-align-content-center{align-content:center}.sfx-grid-action-bar-v2 .flex-align-content-center .sfx-v-seperator{margin-right:5px}.sfx-grid-action-bar-v2 .flex-1{flex:1}\n"] }]
|
|
4692
4692
|
}], propDecorators: { actionListModel: [{
|
|
4693
4693
|
type: Input
|
|
4694
4694
|
}], actionBarListItem: [{
|
|
@@ -4698,13 +4698,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
4698
4698
|
class ButtonWithIconV2Module {
|
|
4699
4699
|
}
|
|
4700
4700
|
ButtonWithIconV2Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconV2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4701
|
-
ButtonWithIconV2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconV2Module, declarations: [ButtonWithIconV2Component], imports: [CommonModule, IconModule, TooltipWrapperModule], exports: [ButtonWithIconV2Component] });
|
|
4702
|
-
ButtonWithIconV2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconV2Module, imports: [[CommonModule, IconModule, TooltipWrapperModule]] });
|
|
4701
|
+
ButtonWithIconV2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconV2Module, declarations: [ButtonWithIconV2Component], imports: [CommonModule, IconModule, TooltipWrapperModule, PipeModule], exports: [ButtonWithIconV2Component] });
|
|
4702
|
+
ButtonWithIconV2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconV2Module, imports: [[CommonModule, IconModule, TooltipWrapperModule, PipeModule]] });
|
|
4703
4703
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconV2Module, decorators: [{
|
|
4704
4704
|
type: NgModule,
|
|
4705
4705
|
args: [{
|
|
4706
4706
|
declarations: [ButtonWithIconV2Component],
|
|
4707
|
-
imports: [CommonModule, IconModule, TooltipWrapperModule],
|
|
4707
|
+
imports: [CommonModule, IconModule, TooltipWrapperModule, PipeModule],
|
|
4708
4708
|
exports: [ButtonWithIconV2Component],
|
|
4709
4709
|
}]
|
|
4710
4710
|
}] });
|