@cqa-lib/cqa-ui 1.1.515 → 1.1.516
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/export-code-modal/export-code-modal.component.mjs +8 -7
- package/esm2020/lib/templates/table-template.component.mjs +2 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +8 -6
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +8 -6
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/export-code-modal/export-code-modal.component.d.ts +2 -0
- package/lib/templates/table-template.component.d.ts +2 -0
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -21,8 +21,10 @@ export declare class ExportCodeModalComponent {
|
|
|
21
21
|
export: EventEmitter<{
|
|
22
22
|
type: 'local' | 'email';
|
|
23
23
|
emails?: string[];
|
|
24
|
+
framework: 'WEBDRIVER_IO' | 'SELENIUM_JAVA';
|
|
24
25
|
}>;
|
|
25
26
|
exportOnLocal: boolean;
|
|
27
|
+
framework: 'WEBDRIVER_IO' | 'SELENIUM_JAVA';
|
|
26
28
|
emailList: string[];
|
|
27
29
|
emailInputControl: FormControl;
|
|
28
30
|
showEmailError: boolean;
|
|
@@ -17,6 +17,7 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
|
|
|
17
17
|
onExportClick: EventEmitter<void | {
|
|
18
18
|
type: 'local' | 'email';
|
|
19
19
|
emails?: string[];
|
|
20
|
+
framework?: 'WEBDRIVER_IO' | 'SELENIUM_JAVA';
|
|
20
21
|
selectedItems: any[];
|
|
21
22
|
}>;
|
|
22
23
|
onApplyFilterClick: EventEmitter<any>;
|
|
@@ -151,6 +152,7 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
|
|
|
151
152
|
onExportModalExport(result: {
|
|
152
153
|
type: 'local' | 'email';
|
|
153
154
|
emails?: string[];
|
|
155
|
+
framework: 'WEBDRIVER_IO' | 'SELENIUM_JAVA';
|
|
154
156
|
}): void;
|
|
155
157
|
get selectedCasesForExport(): Array<{
|
|
156
158
|
id?: number;
|