@cqa-lib/cqa-ui 1.1.549-delta.2 → 1.1.549-delta.3
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/api-edit-step/api-edit-step.component.mjs +19 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +19 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +18 -2
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/api-edit-step/api-edit-step.component.d.ts +7 -0
- package/package.json +1 -1
|
@@ -536,6 +536,13 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
|
|
|
536
536
|
* Check if URL is valid (for button disabled state)
|
|
537
537
|
*/
|
|
538
538
|
get isUrlValid(): boolean;
|
|
539
|
+
/**
|
|
540
|
+
* Aggregate disabled state for the Send Request button. URL validity is
|
|
541
|
+
* always required; in GraphQL mode the Query field must also be non-blank
|
|
542
|
+
* (without it the request body would be `{ query: "" }`, which the engine
|
|
543
|
+
* rejects up-front anyway).
|
|
544
|
+
*/
|
|
545
|
+
get isSendRequestDisabled(): boolean;
|
|
539
546
|
onSendRequest(): void;
|
|
540
547
|
onVariableNameChange(): void;
|
|
541
548
|
onBack(): void;
|