@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.
@@ -31,6 +31,7 @@ __export(index_exports, {
31
31
  FContextMenuPageObject: () => FContextMenuPageObject,
32
32
  FCrudDatasetPageObject: () => FCrudDatasetPageObject,
33
33
  FDatepickerFieldPageobject: () => FDatepickerFieldPageobject,
34
+ FDefinitionListPageObject: () => FDefinitionListPageObject,
34
35
  FDetailsPanelPageObject: () => FDetailsPanelPageObject,
35
36
  FDialogueTreeItemPageObject: () => FDialogueTreeItemPageObject,
36
37
  FDialogueTreePageObject: () => FDialogueTreePageObject,
@@ -469,6 +470,58 @@ var FDetailsPanelPageObject = class _FDetailsPanelPageObject {
469
470
  }
470
471
  };
471
472
 
473
+ // src/cypress/FDefinitionList.pageobject.ts
474
+ var FDefinitionListPageObject = class {
475
+ /**
476
+ * The root of the component.
477
+ *
478
+ * @param selector - The selector
479
+ */
480
+ selector;
481
+ /**
482
+ * @param selector - The selector.
483
+ */
484
+ constructor(selector) {
485
+ this.selector = selector;
486
+ }
487
+ /**
488
+ * Gets the page object element.
489
+ *
490
+ * @returns The page object element.
491
+ */
492
+ el() {
493
+ return cy.get(this.selector);
494
+ }
495
+ /**
496
+ * Gets the definition value.
497
+ *
498
+ * @param index - Index of definition in definition list.
499
+ * @returns The definition value.
500
+ */
501
+ definition(index) {
502
+ return cy.get(
503
+ `${this.selector} .definition-list__definition:nth(${index})`
504
+ );
505
+ }
506
+ /**
507
+ * Gets the number of definitions.
508
+ *
509
+ * @returns The number of definitions.
510
+ */
511
+ numberOfDefinitions() {
512
+ return cy.get(`${this.selector} .definition-list__term`).its("length");
513
+ }
514
+ /**
515
+ * Gets the term of a definition.
516
+ *
517
+ * @param index - Index of definition in definition list.
518
+ * @returns The term of the definition.
519
+ */
520
+ term(index) {
521
+ return cy.get(`${this.selector} .definition-list__term:nth(${index})`);
522
+ }
523
+ };
524
+
472
525
  // src/cypress/FExpandablePanel.pageobject.ts
473
526
  var FExpandablePanelPageObject = class {
474
527
  selector;
@@ -1104,7 +1157,7 @@ var FOutputFieldPageobject = class {
1104
1157
  }
1105
1158
  };
1106
1159
 
1107
- // src/cypress/Input.ts
1160
+ // src/cypress/input.ts
1108
1161
  var Input = class {
1109
1162
  selector;
1110
1163
  inputSelector;