@fkui/vue 6.28.0 → 6.29.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 +70 -0
- package/dist/cjs/cypress.cjs.js.map +3 -3
- package/dist/cjs/index.cjs.js +921 -594
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +70 -0
- package/dist/esm/cypress.esm.js.map +3 -3
- package/dist/esm/index.esm.js +921 -594
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +51 -0
- package/dist/types/index.d.ts +876 -788
- package/htmlvalidate/elements/components.js +40 -0
- package/package.json +5 -5
package/dist/types/cypress.d.ts
CHANGED
|
@@ -815,6 +815,57 @@ export declare class FPageHeaderPageobject implements BasePageObject {
|
|
|
815
815
|
logoSlot(): DefaultCypressChainable;
|
|
816
816
|
}
|
|
817
817
|
|
|
818
|
+
/**
|
|
819
|
+
* Cypress pageobject for `FPaginator`.
|
|
820
|
+
*
|
|
821
|
+
* @public
|
|
822
|
+
*/
|
|
823
|
+
export declare class FPaginatorPageObject implements BasePageObject {
|
|
824
|
+
selector: string;
|
|
825
|
+
/**
|
|
826
|
+
* @param selector - The root of the FPaginator component
|
|
827
|
+
*/
|
|
828
|
+
constructor(selector: string);
|
|
829
|
+
/**
|
|
830
|
+
* Get the root element.
|
|
831
|
+
*
|
|
832
|
+
* @returns The element itself.
|
|
833
|
+
*/
|
|
834
|
+
el(): DefaultCypressChainable;
|
|
835
|
+
/**
|
|
836
|
+
* Get the button for the current page.
|
|
837
|
+
*
|
|
838
|
+
* @returns The button for the current page.
|
|
839
|
+
*/
|
|
840
|
+
currentPageButton(): DefaultCypressChainable;
|
|
841
|
+
/**
|
|
842
|
+
* Get the button for navigating to the next page.
|
|
843
|
+
*
|
|
844
|
+
* @returns The button for navigating to the next page.
|
|
845
|
+
*/
|
|
846
|
+
nextButton(): DefaultCypressChainable;
|
|
847
|
+
/**
|
|
848
|
+
* Gets the button/buttons for the specified page/pages.
|
|
849
|
+
*
|
|
850
|
+
* @param page - The index of the page button (if number); the number of the page (if string)
|
|
851
|
+
* @returns The button for the specified page (if param `page` is defined); the buttons for all pages shown (if param `page` is undefined).
|
|
852
|
+
*/
|
|
853
|
+
pageButton(page?: number | string): DefaultCypressChainable;
|
|
854
|
+
/**
|
|
855
|
+
* Get the page counter.
|
|
856
|
+
* The element replaces the page buttons in compact mode.
|
|
857
|
+
*
|
|
858
|
+
* @returns The page counter.
|
|
859
|
+
*/
|
|
860
|
+
pageCounter(): DefaultCypressChainable;
|
|
861
|
+
/**
|
|
862
|
+
* Get the button for navigating to the previous page.
|
|
863
|
+
*
|
|
864
|
+
* @returns The button for navigating to the previous page.
|
|
865
|
+
*/
|
|
866
|
+
previousButton(): DefaultCypressChainable;
|
|
867
|
+
}
|
|
868
|
+
|
|
818
869
|
/**
|
|
819
870
|
* Cypress Pageobject representing the `FProgressbar` component.
|
|
820
871
|
*
|