@cqa-lib/cqa-ui 1.1.473 → 1.1.475
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.
- package/esm2020/lib/compare-runs/compare-runs.component.mjs +1 -1
- package/esm2020/lib/execution-screen/db-query-execution-item/db-query-execution-item.component.mjs +1 -1
- package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +1 -1
- package/esm2020/lib/iterations-loop/iterations-loop.component.mjs +1 -1
- package/esm2020/lib/simulator/simulator.component.mjs +15 -3
- package/esm2020/lib/templates/table-template.component.mjs +13 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +30 -8
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +30 -8
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/simulator/simulator.component.d.ts +3 -0
- package/lib/templates/table-template.component.d.ts +11 -1
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -59,6 +59,8 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
59
59
|
progress: number;
|
|
60
60
|
dragging: boolean;
|
|
61
61
|
isPlaying: boolean;
|
|
62
|
+
showPlayPauseOverlay: boolean;
|
|
63
|
+
private playPauseOverlayTimer;
|
|
62
64
|
isFullScreen: boolean;
|
|
63
65
|
currentView: string;
|
|
64
66
|
currentVideoIndex: number;
|
|
@@ -128,6 +130,7 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
128
130
|
* Toggle play/pause (now trivial with state machine)
|
|
129
131
|
*/
|
|
130
132
|
togglePlay(): void;
|
|
133
|
+
onVideoFrameClick(): void;
|
|
131
134
|
/**
|
|
132
135
|
* Play video - public method (enqueues operation)
|
|
133
136
|
*/
|
|
@@ -63,6 +63,16 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
|
|
|
63
63
|
pageIndex: number;
|
|
64
64
|
pageSize: number;
|
|
65
65
|
}>;
|
|
66
|
+
/**
|
|
67
|
+
* When false, header sort does not reorder rows locally (use with serverSidePagination + sortChange).
|
|
68
|
+
* Default true for backward compatibility.
|
|
69
|
+
*/
|
|
70
|
+
enableLocalSort: boolean;
|
|
71
|
+
sortChange: EventEmitter<{
|
|
72
|
+
fieldId: string;
|
|
73
|
+
fieldValue?: string;
|
|
74
|
+
direction: 'asc' | 'desc' | null;
|
|
75
|
+
}>;
|
|
66
76
|
isTableLoading?: boolean;
|
|
67
77
|
isTableDataLoading?: boolean;
|
|
68
78
|
cellJsonPathGetter?: (rowIndex: number, colId: string, row: any) => string;
|
|
@@ -147,5 +157,5 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
|
|
|
147
157
|
}>;
|
|
148
158
|
get arrowClasses(): string;
|
|
149
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableTemplateComponent, never>;
|
|
150
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableTemplateComponent, "cqa-table-template", never, { "searchPlaceholder": "searchPlaceholder"; "searchValue": "searchValue"; "showClear": "showClear"; "showSearchBar": "showSearchBar"; "showExportButton": "showExportButton"; "isExporting": "isExporting"; "filterConfig": "filterConfig"; "filterModel": "filterModel"; "showFilterPanel": "showFilterPanel"; "showFilterButton": "showFilterButton"; "otherButtons": "otherButtons"; "otherDropDownButtons": "otherDropDownButtons"; "otherSelectDropDownButtons": "otherSelectDropDownButtons"; "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"; "rowSelectable": "rowSelectable"; "selectedAutoRefreshInterval": "selectedAutoRefreshInterval"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "serverSidePagination": "serverSidePagination"; "totalElements": "totalElements"; "isTableLoading": "isTableLoading"; "isTableDataLoading": "isTableDataLoading"; "cellJsonPathGetter": "cellJsonPathGetter"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "selectedItems": "selectedItems"; }, { "onSearchChange": "onSearchChange"; "onExportClick": "onExportClick"; "onApplyFilterClick": "onApplyFilterClick"; "onResetFilterClick": "onResetFilterClick"; "onClearAll": "onClearAll"; "removeChip": "removeChip"; "pageChange": "pageChange"; "onReload": "onReload"; "onAutoRefreshClick": "onAutoRefreshClick"; }, never, never>;
|
|
160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableTemplateComponent, "cqa-table-template", never, { "searchPlaceholder": "searchPlaceholder"; "searchValue": "searchValue"; "showClear": "showClear"; "showSearchBar": "showSearchBar"; "showExportButton": "showExportButton"; "isExporting": "isExporting"; "filterConfig": "filterConfig"; "filterModel": "filterModel"; "showFilterPanel": "showFilterPanel"; "showFilterButton": "showFilterButton"; "otherButtons": "otherButtons"; "otherDropDownButtons": "otherDropDownButtons"; "otherSelectDropDownButtons": "otherSelectDropDownButtons"; "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"; "rowSelectable": "rowSelectable"; "selectedAutoRefreshInterval": "selectedAutoRefreshInterval"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "serverSidePagination": "serverSidePagination"; "totalElements": "totalElements"; "enableLocalSort": "enableLocalSort"; "isTableLoading": "isTableLoading"; "isTableDataLoading": "isTableDataLoading"; "cellJsonPathGetter": "cellJsonPathGetter"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "selectedItems": "selectedItems"; }, { "onSearchChange": "onSearchChange"; "onExportClick": "onExportClick"; "onApplyFilterClick": "onApplyFilterClick"; "onResetFilterClick": "onResetFilterClick"; "onClearAll": "onClearAll"; "removeChip": "removeChip"; "pageChange": "pageChange"; "sortChange": "sortChange"; "onReload": "onReload"; "onAutoRefreshClick": "onAutoRefreshClick"; }, never, never>;
|
|
151
161
|
}
|