@cqa-lib/cqa-ui 1.1.152 → 1.1.154

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.
Files changed (21) hide show
  1. package/esm2020/lib/compare-runs/compare-runs.component.mjs +1 -1
  2. package/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +3 -3
  3. package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +3 -3
  4. package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +3 -3
  5. package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +3 -3
  6. package/esm2020/lib/execution-screen/db-query-execution-item/db-query-execution-item.component.mjs +1 -1
  7. package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +3 -3
  8. package/esm2020/lib/execution-screen/document-verification-step/document-verification-step.component.mjs +3 -3
  9. package/esm2020/lib/execution-screen/file-download-step/file-download-step.component.mjs +3 -3
  10. package/esm2020/lib/execution-screen/live-execution-step/live-execution-step.component.mjs +3 -3
  11. package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +3 -3
  12. package/esm2020/lib/execution-screen/main-step-collapse/main-step-collapse.component.mjs +3 -3
  13. package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +3 -3
  14. package/esm2020/lib/iterations-loop/iterations-loop.component.mjs +1 -1
  15. package/esm2020/lib/templates/table-template.component.mjs +14 -4
  16. package/fesm2015/cqa-lib-cqa-ui.mjs +38 -28
  17. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  18. package/fesm2020/cqa-lib-cqa-ui.mjs +38 -28
  19. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  20. package/lib/templates/table-template.component.d.ts +7 -2
  21. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { EventEmitter, OnChanges, OnInit, SimpleChanges, OnDestroy, ChangeDetectorRef } from '@angular/core';
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges, OnDestroy, ChangeDetectorRef, TemplateRef } from '@angular/core';
2
2
  import { DynamicFilterItem } from '../filters/dynamic-filter/dynamic-filter.component';
3
3
  import { DynamicTableColumn } from '../table/dynamic-table/dynamic-table.component';
4
4
  import { ColumnVisibilityConfig } from '../column-visibility/column-visibility.component';
@@ -19,8 +19,12 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
19
19
  filterConfig: DynamicFilterItem[];
20
20
  showFilterPanel: boolean;
21
21
  showFilterButton: boolean;
22
+ otherButtons: TemplateRef<any>[];
23
+ /** @deprecated Use otherButtons array instead */
22
24
  otherButtonLabel: string;
25
+ /** @deprecated Use otherButtons array instead */
23
26
  otherButtonVariant: 'filled' | 'outlined' | 'text' | 'elevated' | 'tonal' | 'grey-solid';
27
+ /** @deprecated Use otherButtons array instead */
24
28
  showOtherButton: boolean;
25
29
  showActionButton: boolean;
26
30
  showSettingsButton: boolean;
@@ -104,6 +108,7 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
104
108
  private mapVisibilityColumns;
105
109
  private normalizeDate;
106
110
  private passFilters;
111
+ trackByTemplateRef(index: number): number;
107
112
  static ɵfac: i0.ɵɵFactoryDeclaration<TableTemplateComponent, never>;
108
- static ɵcmp: i0.ɵɵComponentDeclaration<TableTemplateComponent, "cqa-table-template", never, { "searchPlaceholder": "searchPlaceholder"; "searchValue": "searchValue"; "showClear": "showClear"; "showSearchBar": "showSearchBar"; "filterConfig": "filterConfig"; "showFilterPanel": "showFilterPanel"; "showFilterButton": "showFilterButton"; "otherButtonLabel": "otherButtonLabel"; "otherButtonVariant": "otherButtonVariant"; "showOtherButton": "showOtherButton"; "showActionButton": "showActionButton"; "showSettingsButton": "showSettingsButton"; "showAutoRefreshButton": "showAutoRefreshButton"; "data": "data"; "isEmptyState": "isEmptyState"; "emptyStateConfig": "emptyStateConfig"; "actions": "actions"; "chips": "chips"; "filterApplied": "filterApplied"; "columns": "columns"; "selectedAutoRefreshInterval": "selectedAutoRefreshInterval"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "serverSidePagination": "serverSidePagination"; "totalElements": "totalElements"; "isTableLoading": "isTableLoading"; "isTableDataLoading": "isTableDataLoading"; }, { "onSearchChange": "onSearchChange"; "onApplyFilterClick": "onApplyFilterClick"; "onResetFilterClick": "onResetFilterClick"; "onClearAll": "onClearAll"; "removeChip": "removeChip"; "pageChange": "pageChange"; "onReload": "onReload"; "onAutoRefreshClick": "onAutoRefreshClick"; }, never, never>;
113
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableTemplateComponent, "cqa-table-template", never, { "searchPlaceholder": "searchPlaceholder"; "searchValue": "searchValue"; "showClear": "showClear"; "showSearchBar": "showSearchBar"; "filterConfig": "filterConfig"; "showFilterPanel": "showFilterPanel"; "showFilterButton": "showFilterButton"; "otherButtons": "otherButtons"; "otherButtonLabel": "otherButtonLabel"; "otherButtonVariant": "otherButtonVariant"; "showOtherButton": "showOtherButton"; "showActionButton": "showActionButton"; "showSettingsButton": "showSettingsButton"; "showAutoRefreshButton": "showAutoRefreshButton"; "data": "data"; "isEmptyState": "isEmptyState"; "emptyStateConfig": "emptyStateConfig"; "actions": "actions"; "chips": "chips"; "filterApplied": "filterApplied"; "columns": "columns"; "selectedAutoRefreshInterval": "selectedAutoRefreshInterval"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "serverSidePagination": "serverSidePagination"; "totalElements": "totalElements"; "isTableLoading": "isTableLoading"; "isTableDataLoading": "isTableDataLoading"; }, { "onSearchChange": "onSearchChange"; "onApplyFilterClick": "onApplyFilterClick"; "onResetFilterClick": "onResetFilterClick"; "onClearAll": "onClearAll"; "removeChip": "removeChip"; "pageChange": "pageChange"; "onReload": "onReload"; "onAutoRefreshClick": "onAutoRefreshClick"; }, never, never>;
109
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.152",
3
+ "version": "1.1.154",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",