@cqa-lib/cqa-ui 1.1.332 → 1.1.333
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/test-case-details/ai-agent-step/ai-agent-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/ai-verify-step/ai-verify-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/api-step/api-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +7 -3
- package/esm2020/lib/test-case-details/custom-code-step/custom-code-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/database-step/database-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +8 -13
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/restore-session-step/restore-session-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/screenshot-step/screenshot-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/scroll-step/scroll-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/step-group/step-group.component.mjs +1 -1
- package/esm2020/lib/test-case-details/step-row-actions.styles.mjs +5 -1
- package/esm2020/lib/test-case-details/test-case-step.models.mjs +1 -1
- package/esm2020/lib/test-case-details/upload-step/upload-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/verify-url-step/verify-url-step.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +42 -38
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +40 -37
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +2 -0
- package/lib/test-case-details/step-row-actions.styles.d.ts +1 -1
- package/lib/test-case-details/test-case-step.models.d.ts +2 -0
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -246,6 +246,8 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
246
246
|
getBranchIndexById(branchId?: string | number): number;
|
|
247
247
|
getBranchColorClass(branch: ConditionBranch): string;
|
|
248
248
|
getBranchTextColor(branch: ConditionBranch): string;
|
|
249
|
+
/** Created date for branch header display: branch-specific or fallback to config. */
|
|
250
|
+
getBranchCreatedDate(branch: ConditionBranch): number | undefined;
|
|
249
251
|
/** True when condition already has an ELSE branch (disables Add ELSE IF / Add ELSE). */
|
|
250
252
|
get hasElseBranch(): boolean;
|
|
251
253
|
onOpenExternal(): void;
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* Using a string avoids Angular's style compiler receiving non-string values
|
|
4
4
|
* (e.g. from styleUrls resolution in Storybook), which causes "input.match is not a function".
|
|
5
5
|
*/
|
|
6
|
-
export declare const STEP_ROW_ACTIONS_STYLES = "\n.step-actions {\n opacity: 0;\n transition: opacity 0.15s ease;\n}\n.step-row:hover .step-actions {\n opacity: 1;\n}\n";
|
|
6
|
+
export declare const STEP_ROW_ACTIONS_STYLES = "\n.step-actions {\n opacity: 0;\n transition: opacity 0.15s ease;\n}\n.step-row:hover .step-actions {\n opacity: 1;\n}\n.step-row {\n vertical-align: middle;\n letter-spacing: normal;\n}\n";
|
|
@@ -153,6 +153,8 @@ export interface ConditionBranch {
|
|
|
153
153
|
action?: string;
|
|
154
154
|
/** Event key-value pairs for display badges (e.g. selector, element) - same as config.event */
|
|
155
155
|
event?: Record<string, unknown>;
|
|
156
|
+
/** Creation timestamp from API (milliseconds since epoch) - for branch header date display */
|
|
157
|
+
createdDate?: number;
|
|
156
158
|
nestedSteps: TestCaseStepConfig[];
|
|
157
159
|
}
|
|
158
160
|
export interface ConditionStepConfig extends BaseStepConfig {
|