@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.
@@ -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/Input.ts
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,