Skip to content

Commit

Permalink
chore: apply changes after linting [bot]
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot authored and taiga-family-bot committed Aug 16, 2024
1 parent 7df4e4f commit f7267a0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
import {WA_INTERSECTION_ROOT_MARGIN} from '@ng-web-apis/intersection-observer';
import type {TuiComparator} from '@taiga-ui/addon-table/types';
import {tuiProvide, tuiWithStyles} from '@taiga-ui/cdk/utils/miscellaneous';
import {tuiButtonOptionsProvider} from '@taiga-ui/core';
import {tuiButtonOptionsProvider} from '@taiga-ui/core/components/button';
import type {TuiTextfieldOptions} from '@taiga-ui/core/components/textfield';
import {TUI_TEXTFIELD_OPTIONS} from '@taiga-ui/core/components/textfield';
import type {TuiSizeL, TuiSizeS} from '@taiga-ui/core/types';
Expand Down
2 changes: 1 addition & 1 deletion projects/addon-table/components/table/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './caption/caption.component';
export * from './directives/cell.directive';
export * from './directives/direction-order.directive';
export * from './directives/head.directive';
Expand All @@ -11,7 +12,6 @@ export * from './pipes/table-sort.pipe';
export * from './providers/table.provider';
export * from './table';
export * from './table.options';
export * from './caption/caption.component';
export * from './tbody/tbody.component';
export * from './td/td.component';
export * from './th/th.component';
Expand Down
2 changes: 1 addition & 1 deletion projects/addon-table/components/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import {TuiTableThead} from './directives/thead.directive';
import {TuiTableSortPipe} from './pipes/table-sort.pipe';
import {TuiTableTbody} from './tbody/tbody.component';
import {TuiTableTd} from './td/td.component';
import {TuiTableThGroup} from './th-group/th-group.component';
import {TuiTableTh} from './th/th.component';
import {TuiTableThGroup} from './th-group/th-group.component';
import {TuiTableTr} from './tr/tr.component';

export const TuiTable = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import {
export class TuiButtonSelect<T> extends TuiControl<T> implements TuiDataListHost<T> {
private readonly open = tuiDropdownOpen();

readonly size = 's';
public readonly size = 's';

handleOption(option: T): void {
public handleOption(option: T): void {
this.onChange(option);
this.open.set(false);
}
Expand Down

0 comments on commit f7267a0

Please sign in to comment.