@fkui/vue 6.34.0 → 6.35.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 +1 -1
- package/dist/cjs/cypress.cjs.js.map +2 -2
- package/dist/cjs/index.cjs.js +643 -54
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +1 -1
- package/dist/esm/cypress.esm.js.map +2 -2
- package/dist/esm/index.esm.js +644 -55
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +341 -8
- package/htmlvalidate/elements/internal-components.js +7 -0
- package/package.json +5 -5
package/dist/esm/cypress.esm.js
CHANGED
|
@@ -403,7 +403,7 @@ var FExpandablePanelPageObject = class {
|
|
|
403
403
|
* @param selector - the root of the expandablepanel, usually `<div class="expandable-panel">...</div>`.
|
|
404
404
|
*/
|
|
405
405
|
constructor(selector) {
|
|
406
|
-
this.selector = selector
|
|
406
|
+
this.selector = `.expandable-panel:has(${selector})`;
|
|
407
407
|
this.el = () => cy.get(this.selector);
|
|
408
408
|
this.expandCollapseIcon = () => cy.get(`${this.selector} .expandable-panel__icon`);
|
|
409
409
|
this.header = () => cy.get(`${this.selector} .expandable-panel__heading button`);
|