@fkui/vue 6.39.0 → 6.40.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 +54 -1
- package/dist/cjs/cypress.cjs.js.map +3 -3
- package/dist/cjs/index.cjs.js +600 -473
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +54 -1
- package/dist/esm/cypress.esm.js.map +3 -3
- package/dist/esm/index.esm.js +600 -473
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +44 -0
- package/dist/types/index.d.ts +651 -545
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/elements/components.js +16 -0
- package/htmlvalidate/rules/index.js +1 -1
- package/package.json +11 -11
- /package/htmlvalidate/rules/{ftextfieldFormatterValidation.rule.js → ftextfield-formatter-validation.rule.js} +0 -0
package/dist/esm/cypress.esm.js
CHANGED
|
@@ -390,6 +390,58 @@ var FDetailsPanelPageObject = class _FDetailsPanelPageObject {
|
|
|
390
390
|
}
|
|
391
391
|
};
|
|
392
392
|
|
|
393
|
+
// src/cypress/FDefinitionList.pageobject.ts
|
|
394
|
+
var FDefinitionListPageObject = class {
|
|
395
|
+
/**
|
|
396
|
+
* The root of the component.
|
|
397
|
+
*
|
|
398
|
+
* @param selector - The selector
|
|
399
|
+
*/
|
|
400
|
+
selector;
|
|
401
|
+
/**
|
|
402
|
+
* @param selector - The selector.
|
|
403
|
+
*/
|
|
404
|
+
constructor(selector) {
|
|
405
|
+
this.selector = selector;
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* Gets the page object element.
|
|
409
|
+
*
|
|
410
|
+
* @returns The page object element.
|
|
411
|
+
*/
|
|
412
|
+
el() {
|
|
413
|
+
return cy.get(this.selector);
|
|
414
|
+
}
|
|
415
|
+
/**
|
|
416
|
+
* Gets the definition value.
|
|
417
|
+
*
|
|
418
|
+
* @param index - Index of definition in definition list.
|
|
419
|
+
* @returns The definition value.
|
|
420
|
+
*/
|
|
421
|
+
definition(index) {
|
|
422
|
+
return cy.get(
|
|
423
|
+
`${this.selector} .definition-list__definition:nth(${index})`
|
|
424
|
+
);
|
|
425
|
+
}
|
|
426
|
+
/**
|
|
427
|
+
* Gets the number of definitions.
|
|
428
|
+
*
|
|
429
|
+
* @returns The number of definitions.
|
|
430
|
+
*/
|
|
431
|
+
numberOfDefinitions() {
|
|
432
|
+
return cy.get(`${this.selector} .definition-list__term`).its("length");
|
|
433
|
+
}
|
|
434
|
+
/**
|
|
435
|
+
* Gets the term of a definition.
|
|
436
|
+
*
|
|
437
|
+
* @param index - Index of definition in definition list.
|
|
438
|
+
* @returns The term of the definition.
|
|
439
|
+
*/
|
|
440
|
+
term(index) {
|
|
441
|
+
return cy.get(`${this.selector} .definition-list__term:nth(${index})`);
|
|
442
|
+
}
|
|
443
|
+
};
|
|
444
|
+
|
|
393
445
|
// src/cypress/FExpandablePanel.pageobject.ts
|
|
394
446
|
var FExpandablePanelPageObject = class {
|
|
395
447
|
selector;
|
|
@@ -1025,7 +1077,7 @@ var FOutputFieldPageobject = class {
|
|
|
1025
1077
|
}
|
|
1026
1078
|
};
|
|
1027
1079
|
|
|
1028
|
-
// src/cypress/
|
|
1080
|
+
// src/cypress/input.ts
|
|
1029
1081
|
var Input = class {
|
|
1030
1082
|
selector;
|
|
1031
1083
|
inputSelector;
|
|
@@ -2217,6 +2269,7 @@ export {
|
|
|
2217
2269
|
FContextMenuPageObject,
|
|
2218
2270
|
FCrudDatasetPageObject,
|
|
2219
2271
|
FDatepickerFieldPageobject,
|
|
2272
|
+
FDefinitionListPageObject,
|
|
2220
2273
|
FDetailsPanelPageObject,
|
|
2221
2274
|
FDialogueTreeItemPageObject,
|
|
2222
2275
|
FDialogueTreePageObject,
|