@cqa-lib/cqa-ui 1.1.482 → 1.1.483
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/execution-screen/api-step/api-step.component.mjs +78 -54
- package/fesm2015/cqa-lib-cqa-ui.mjs +78 -55
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +78 -54
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/api-step/api-step.component.d.ts +9 -1
- package/package.json +1 -1
|
@@ -102,9 +102,17 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
|
|
|
102
102
|
copyRequestHeaders(): void;
|
|
103
103
|
copyResponseHeaders(): void;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* Walks jsonData and builds a map from each line number (in the output of
|
|
106
|
+
* JSON.stringify(jsonData, null, 2)) to the segment path that line represents.
|
|
107
|
+
* Segments are strings for object keys and numbers for array indices.
|
|
108
|
+
*/
|
|
109
|
+
private buildLinePathMap;
|
|
110
|
+
/**
|
|
111
|
+
* Extracts JSON path from the clicked position in a formatted JSON string.
|
|
112
|
+
* Returns an array of segments (string keys or numeric array indices), or null.
|
|
106
113
|
*/
|
|
107
114
|
private getJsonPathFromClick;
|
|
115
|
+
private formatSegmentsPath;
|
|
108
116
|
private normalizeJsonPath;
|
|
109
117
|
/**
|
|
110
118
|
* Copy JSON path on double-click
|