@cqa-lib/cqa-ui 1.1.548-gamma.21 → 1.1.548-gamma.23
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/step-builder/step-builder-action/step-builder-action.component.mjs +3 -3
- package/esm2020/lib/step-builder/step-builder-ai-agent/step-builder-ai-agent.component.mjs +3 -3
- package/esm2020/lib/step-builder/step-builder-condition/step-builder-condition.component.mjs +3 -3
- package/esm2020/lib/step-builder/step-builder-database/step-builder-database.component.mjs +3 -3
- package/esm2020/lib/step-builder/step-builder-loop/step-builder-loop.component.mjs +3 -3
- package/esm2020/lib/test-case-details/api-edit-step/api-edit-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/variables-panel/variables-panel.component.mjs +15 -51
- package/fesm2015/cqa-lib-cqa-ui.mjs +73 -108
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +73 -106
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/variables-panel/variables-panel.component.d.ts +5 -15
- package/package.json +1 -1
|
@@ -1,46 +1,36 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { AvailableTdpVm, AvailableVariableVm, AvailableVariablesVm, UsedInTestVm, UsedTdpVm, UsedVariableVm, VariablesPanelTab } from './variables-panel.models';
|
|
2
|
+
import { UsedInTestVm, UsedTdpVm, UsedVariableVm } from './variables-panel.models';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class TestCaseVariablesPanelComponent implements OnChanges {
|
|
6
|
-
activeSubTab: VariablesPanelTab;
|
|
7
5
|
searchTerm: string;
|
|
8
6
|
searchPlaceholder: string;
|
|
9
7
|
environmentName?: string;
|
|
10
|
-
available: AvailableVariablesVm;
|
|
11
8
|
used: UsedInTestVm;
|
|
12
|
-
isLoadingAvailable: boolean;
|
|
13
9
|
isLoadingUsed: boolean;
|
|
14
10
|
showManageEnvAndDataLink: boolean;
|
|
15
|
-
activeSubTabChange: EventEmitter<VariablesPanelTab>;
|
|
16
11
|
searchTermChange: EventEmitter<string>;
|
|
17
12
|
searchCleared: EventEmitter<void>;
|
|
18
13
|
manageEnvAndDataClick: EventEmitter<void>;
|
|
19
|
-
readonly topSegments: SegmentOption[];
|
|
20
14
|
readonly skeletonRows: number[];
|
|
21
15
|
/** Empty-state imagery — exposed to the template so we can bind [imageUrl]. */
|
|
22
16
|
readonly searchEmptyImageUrl: "assets/images/SearchIcon.png";
|
|
23
17
|
readonly noDataImageUrl: "assets/images/StepsIcon.png";
|
|
24
|
-
/** Per-row expanded state. Key format: `<
|
|
18
|
+
/** Per-row expanded state. Key format: `<group>:<id>`. */
|
|
25
19
|
expandedKeys: Record<string, boolean>;
|
|
26
20
|
ngOnChanges(changes: SimpleChanges): void;
|
|
27
|
-
onSegmentChange(value: string): void;
|
|
28
21
|
onSearchValueChange(value: string): void;
|
|
29
22
|
onSearchSubmit(value: string): void;
|
|
30
23
|
onSearchCleared(): void;
|
|
31
24
|
onManageEnvAndData(event: Event): void;
|
|
32
|
-
isExpanded(
|
|
33
|
-
setExpanded(
|
|
25
|
+
isExpanded(_tab: string, group: string, id: number | string): boolean;
|
|
26
|
+
setExpanded(_tab: string, group: string, id: number | string, expanded: boolean): void;
|
|
34
27
|
trackByRow(_i: number, item: {
|
|
35
28
|
id: number | string;
|
|
36
29
|
}): number | string;
|
|
37
|
-
trackByTdp(_i: number, item: AvailableTdpVm): number;
|
|
38
30
|
trackByUsedTdp(_i: number, item: UsedTdpVm): number;
|
|
39
31
|
get bannerEnvLabel(): string;
|
|
40
|
-
get hasAvailableData(): boolean;
|
|
41
32
|
get hasUsedData(): boolean;
|
|
42
|
-
asEnvVar(item: AvailableVariableVm): AvailableVariableVm;
|
|
43
33
|
asUsedVar(item: UsedVariableVm): UsedVariableVm;
|
|
44
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseVariablesPanelComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseVariablesPanelComponent, "cqa-test-case-variables-panel", never, { "
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseVariablesPanelComponent, "cqa-test-case-variables-panel", never, { "searchTerm": "searchTerm"; "searchPlaceholder": "searchPlaceholder"; "environmentName": "environmentName"; "used": "used"; "isLoadingUsed": "isLoadingUsed"; "showManageEnvAndDataLink": "showManageEnvAndDataLink"; }, { "searchTermChange": "searchTermChange"; "searchCleared": "searchCleared"; "manageEnvAndDataClick": "manageEnvAndDataClick"; }, never, never>;
|
|
46
36
|
}
|