diff --git a/projects/demo/src/modules/pipes/filter/examples/1/index.html b/projects/demo/src/modules/pipes/filter/examples/1/index.html
index 3209a154fb81..3b499fc07cf9 100644
--- a/projects/demo/src/modules/pipes/filter/examples/1/index.html
+++ b/projects/demo/src/modules/pipes/filter/examples/1/index.html
@@ -1,12 +1,17 @@
-
-
-
- Name |
- Sum, $ |
+
+
+
+ Name |
+ Sum, $ |
+
+
- {{ item.name }} |
- {{ item.price }} |
+ {{ item.name }} |
+ {{ item.price }} |
-
+
diff --git a/projects/demo/src/modules/pipes/filter/examples/1/index.less b/projects/demo/src/modules/pipes/filter/examples/1/index.less
new file mode 100644
index 000000000000..47ef92e0b10c
--- /dev/null
+++ b/projects/demo/src/modules/pipes/filter/examples/1/index.less
@@ -0,0 +1,10 @@
+@import '@taiga-ui/core/styles/taiga-ui-local';
+
+[tuiTh],
+[tuiTd] {
+ border: none;
+}
+
+[tuiTd] {
+ font: var(--tui-font-text-m) !important;
+}
diff --git a/projects/demo/src/modules/pipes/filter/examples/1/index.ts b/projects/demo/src/modules/pipes/filter/examples/1/index.ts
index 32adb9852178..6f576255c627 100644
--- a/projects/demo/src/modules/pipes/filter/examples/1/index.ts
+++ b/projects/demo/src/modules/pipes/filter/examples/1/index.ts
@@ -2,6 +2,14 @@ import {NgForOf} from '@angular/common';
import {Component} from '@angular/core';
import {changeDetection} from '@demo/emulate/change-detection';
import {encapsulation} from '@demo/emulate/encapsulation';
+import {
+ TuiTable,
+ TuiTableHead,
+ TuiTableTbody,
+ TuiTableTd,
+ TuiTableTh,
+ TuiTableThGroup,
+} from '@taiga-ui/addon-table';
import {TuiFilterPipe} from '@taiga-ui/cdk';
export interface Item {
@@ -11,8 +19,18 @@ export interface Item {
@Component({
standalone: true,
- imports: [NgForOf, TuiFilterPipe],
+ imports: [
+ NgForOf,
+ TuiFilterPipe,
+ TuiTable,
+ TuiTableHead,
+ TuiTableThGroup,
+ TuiTableTh,
+ TuiTableTbody,
+ TuiTableTd,
+ ],
templateUrl: './index.html',
+ styleUrls: ['./index.less'],
encapsulation,
changeDetection,
})