@kris701/ez-ui 1.2.12 → 1.2.13

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.
@@ -3857,6 +3857,18 @@ class EzUITable {
3857
3857
  <ng-container [ngTemplateOutlet]="tableHeader"></ng-container>
3858
3858
  </tr>
3859
3859
  </thead>
3860
+ @if(displayValues().length == 0){
3861
+ <td colSpan="9999">
3862
+ <tui-block-status>
3863
+ <tui-icon tuiSlot="top" icon="grid-2x2-x" />
3864
+
3865
+ <h3>No Data</h3>
3866
+
3867
+ No data matches your filters
3868
+ </tui-block-status>
3869
+ </td>
3870
+ }
3871
+
3860
3872
  @for (item of displayValues(); track page() * pageSize() + i; let i = $index){
3861
3873
  @let fullIndex = page() * pageSize() + i;
3862
3874
  <tbody tuiTbody>
@@ -3963,6 +3975,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImpor
3963
3975
  <ng-container [ngTemplateOutlet]="tableHeader"></ng-container>
3964
3976
  </tr>
3965
3977
  </thead>
3978
+ @if(displayValues().length == 0){
3979
+ <td colSpan="9999">
3980
+ <tui-block-status>
3981
+ <tui-icon tuiSlot="top" icon="grid-2x2-x" />
3982
+
3983
+ <h3>No Data</h3>
3984
+
3985
+ No data matches your filters
3986
+ </tui-block-status>
3987
+ </td>
3988
+ }
3989
+
3966
3990
  @for (item of displayValues(); track page() * pageSize() + i; let i = $index){
3967
3991
  @let fullIndex = page() * pageSize() + i;
3968
3992
  <tbody tuiTbody>