@fkui/vue 6.10.0 → 6.11.0
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/dist/cjs/cypress.cjs.js +95 -43
- package/dist/cjs/cypress.cjs.js.map +3 -3
- package/dist/cjs/index.cjs.js +1 -1
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +95 -43
- package/dist/esm/cypress.esm.js.map +3 -3
- package/dist/esm/index.esm.js +1 -1
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +55 -16
- package/dist/types/index.d.ts +204 -255
- package/package.json +6 -6
package/dist/types/cypress.d.ts
CHANGED
|
@@ -435,17 +435,23 @@ export declare class FInteractiveTablePageObject implements BasePageObject {
|
|
|
435
435
|
*/
|
|
436
436
|
caption(): DefaultCypressChainable;
|
|
437
437
|
/**
|
|
438
|
-
* Get
|
|
438
|
+
* Get table header cell (`<th>` in `<thead>`).
|
|
439
439
|
*
|
|
440
|
-
*
|
|
440
|
+
* Neither the marker for expandable rows or the checkbox for selectable
|
|
441
|
+
* rows are included in the column count, i.e. `1` always refers to the
|
|
442
|
+
* first column with content.
|
|
443
|
+
*
|
|
444
|
+
* @public
|
|
445
|
+
* @param col - column number of header (1-indexed).
|
|
446
|
+
* @returns The header cell element.
|
|
441
447
|
*/
|
|
442
|
-
|
|
448
|
+
header(col: number): Cypress.Chainable<JQuery<HTMLTableCellElement>>;
|
|
443
449
|
/**
|
|
444
|
-
* Get all table
|
|
450
|
+
* Get all table headers (`<th>` in `<thead>`).
|
|
445
451
|
*
|
|
446
|
-
* Includes
|
|
452
|
+
* Includes the headers for checkboxes in selectable rows and markers in expandable rows.
|
|
447
453
|
*/
|
|
448
|
-
|
|
454
|
+
headersRow(): DefaultCypressChainable;
|
|
449
455
|
/**
|
|
450
456
|
* Get row (`<tr>` in `<tbody>`) of given index.
|
|
451
457
|
*
|
|
@@ -455,21 +461,26 @@ export declare class FInteractiveTablePageObject implements BasePageObject {
|
|
|
455
461
|
*/
|
|
456
462
|
row(index: number): DefaultCypressChainable;
|
|
457
463
|
/**
|
|
458
|
-
* Get
|
|
459
|
-
*
|
|
460
|
-
* Index includes the header row (index 0 selects the header row while 1 selects first row in table body).
|
|
461
|
-
* Index ignores expandable rows.
|
|
464
|
+
* Get all table body rows (`<tr>` in `<tbody>`).
|
|
462
465
|
*
|
|
463
|
-
*
|
|
464
|
-
* @returns Page object for `FTableColumn`.
|
|
466
|
+
* Includes expandable rows even if not expanded.
|
|
465
467
|
*/
|
|
466
|
-
|
|
468
|
+
bodyRow(): DefaultCypressChainable;
|
|
467
469
|
/**
|
|
468
|
-
* Get page object
|
|
470
|
+
* Get page object with selector for the checkbox in given row.
|
|
469
471
|
*
|
|
470
|
-
*
|
|
472
|
+
* For expandable rows the row count depend on whenever a row is expanded or
|
|
473
|
+
* not. If the first row is collapsed the second row refers to the next
|
|
474
|
+
* parent row while if the first row is expanded the second row refers to
|
|
475
|
+
* the first expanded row under the first row.
|
|
476
|
+
*
|
|
477
|
+
* Requires a `selectable` table.
|
|
478
|
+
*
|
|
479
|
+
* @public
|
|
480
|
+
* @param row - Row number (1-indexed).
|
|
481
|
+
* @returns Page object for `FCheckboxField`.
|
|
471
482
|
*/
|
|
472
|
-
|
|
483
|
+
checkbox(row: number): FCheckboxFieldPageObject;
|
|
473
484
|
/**
|
|
474
485
|
* Get sort order icon in given column.
|
|
475
486
|
*
|
|
@@ -480,6 +491,24 @@ export declare class FInteractiveTablePageObject implements BasePageObject {
|
|
|
480
491
|
* @returns icon of given sort order.
|
|
481
492
|
*/
|
|
482
493
|
getColumnSortedByIcon(index: number, order: "ascending" | "descending" | "unsorted"): DefaultCypressChainable;
|
|
494
|
+
/**
|
|
495
|
+
* Get page object for `FTableColumn` with selector targeting the header row.
|
|
496
|
+
*
|
|
497
|
+
* @deprecated Use `header()` instead. Deprecated since v6.11.0.
|
|
498
|
+
* @returns Page object for `FTableColumn`.
|
|
499
|
+
*/
|
|
500
|
+
headerRowItem(): FTableColumnPageObject;
|
|
501
|
+
/**
|
|
502
|
+
* Get page object for `FTableColumn` with selector targeting the given row number.
|
|
503
|
+
*
|
|
504
|
+
* Index includes the header row (index 0 selects the header row while 1 selects first row in table body).
|
|
505
|
+
* Index ignores expandable rows.
|
|
506
|
+
*
|
|
507
|
+
* @deprecated Use `cell()` for body content and `header()` for header content instead. Deprecated since v6.11.0.
|
|
508
|
+
* @param index - Row number (0-indexed).
|
|
509
|
+
* @returns Page object for `FTableColumn`.
|
|
510
|
+
*/
|
|
511
|
+
columnItem(index: number): FTableColumnPageObject;
|
|
483
512
|
}
|
|
484
513
|
|
|
485
514
|
/**
|
|
@@ -872,14 +901,24 @@ export declare class FStaticFieldPageObject implements BasePageObject {
|
|
|
872
901
|
|
|
873
902
|
/**
|
|
874
903
|
* @public
|
|
904
|
+
* @deprecated Use methods on `FInteractiveTable` instead. Deprecated since v6.11.0.
|
|
875
905
|
*/
|
|
876
906
|
export declare class FTableColumnPageObject implements BasePageObject {
|
|
877
907
|
selector: string;
|
|
878
908
|
el: () => DefaultCypressChainable;
|
|
879
909
|
index: number;
|
|
880
910
|
constructor(selector: string, index: number);
|
|
911
|
+
/**
|
|
912
|
+
* @deprecated Use ´FInteractiveTablePageObject.cell()´ instead. Deprecated since v6.11.0.
|
|
913
|
+
*/
|
|
881
914
|
tableRowBodyContent(position: number): DefaultCypressChainable;
|
|
915
|
+
/**
|
|
916
|
+
* @deprecated Use ´FInteractiveTablePageObject.header()´ instead. Deprecated since v6.11.0.
|
|
917
|
+
*/
|
|
882
918
|
tableRowHeaderContent(): DefaultCypressChainable;
|
|
919
|
+
/**
|
|
920
|
+
* @deprecated Use ´FInteractiveTablePageObject.checkbox()´ instead. Deprecated since v6.11.0.
|
|
921
|
+
*/
|
|
883
922
|
checkbox(): FCheckboxFieldPageObject;
|
|
884
923
|
}
|
|
885
924
|
|