Skip to content

Commit

Permalink
fixed several other component selector collisions w/ simple rename
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcmichael committed Jul 24, 2023
1 parent 90dafc9 commit d3a472b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {

@UntilDestroy()
@Component({
selector: 'cvc-org-selector-btn-group',
selector: 'cvc-org-selector-btn-group2',
templateUrl: './org-selector-btn-group.component.html',
styleUrls: ['./org-selector-btn-group.component.less'],
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export type EntityEdge = {
}

@Component({
selector: 'cvc-table-counts',
selector: 'cvc-table-counts2',
templateUrl: './table-counts.component.html',
styleUrls: ['./table-counts.component.less'],
changeDetection: ChangeDetectionStrategy.OnPush,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,8 @@
</ng-container>
</nz-col>
<nz-col nzFlex="auto">
<cvc-table-counts
[cvcTableCountsConnection]="connection$"></cvc-table-counts>
<cvc-table-counts2
[cvcTableCountsConnection]="connection$"></cvc-table-counts2>
</nz-col>

<!-- card button row -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, EventEmitter, Input, Output } from '@angular/core'

@Component({
selector: 'cvc-table-filter-input',
selector: 'cvc-variant-table-filter-input',
templateUrl: './table-filter-input.component.html',
styleUrls: ['./table-filter-input.component.less'],
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,15 @@
[nzAlign]="entityTagCol.align ?? 'left'"
[nzLeft]="entityTagCol.fixedLeft || false"
[nzRight]="entityTagCol.fixedRight || false">
<cvc-table-filter-input
<cvc-variant-table-filter-input
*ngIf="entityTagCol.filter as filter"
[cvcInputType]="entityTagCol.filter.inputType"
[cvcPlaceholder]="entityTagCol.filter.options[0].key"
[cvcModel]="entityTagCol.filter.options[0].value"
(cvcModelChange)="
filter.changes!.next({ key: entityTagCol.key, value: $event })
">
</cvc-table-filter-input>
</cvc-variant-table-filter-input>
</th>

<!-- ENUM TAG FILTER -->
Expand Down Expand Up @@ -206,7 +206,7 @@
<nz-dropdown-menu #textTagFilterMenu="nzDropdownMenu">
<div class="ant-table-filter-dropdown">
<div class="custom-input-dropdown">
<cvc-table-filter-input
<cvc-variant-table-filter-input
[cvcPlaceholder]="textTagCol.filter.options[0].key"
[cvcModel]="textTagCol.filter.options[0].value"
(cvcModelChange)="
Expand All @@ -215,7 +215,7 @@
value: $event
})
">
</cvc-table-filter-input>
</cvc-variant-table-filter-input>
</div>
</div>
</nz-dropdown-menu>
Expand All @@ -229,14 +229,14 @@
[nzAlign]="defaultCol.align ?? 'left'"
[nzLeft]="defaultCol.fixedLeft || false"
[nzRight]="defaultCol.fixedRight || false">
<cvc-table-filter-input
<cvc-variant-table-filter-input
*ngIf="defaultCol.filter as filter"
[cvcPlaceholder]="defaultCol.filter.options[0].key"
[cvcModel]="defaultCol.filter.options[0].value"
(cvcModelChange)="
filter.changes!.next({ key: defaultCol.key, value: $event })
">
</cvc-table-filter-input>
</cvc-variant-table-filter-input>
</th>
</ng-container>
</ng-container>
Expand Down Expand Up @@ -606,8 +606,8 @@
</ng-container>
</nz-col>
<nz-col nzFlex="auto">
<cvc-table-counts
[cvcTableCountsConnection]="connection$"></cvc-table-counts>
<cvc-table-counts2
[cvcTableCountsConnection]="connection$"></cvc-table-counts2>
</nz-col>

<!-- card button row -->
Expand Down

0 comments on commit d3a472b

Please sign in to comment.