@fkui/vue 6.38.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.
@@ -222,6 +222,50 @@ export declare class FDatepickerFieldPageobject implements BasePageObject {
222
222
  /* Excluded from this release type: availableYears */
223
223
  }
224
224
 
225
+ /**
226
+ * Cypress page object for `FDefinitionList`
227
+ *
228
+ * @public
229
+ */
230
+ export declare class FDefinitionListPageObject implements BasePageObject {
231
+ /**
232
+ * The root of the component.
233
+ *
234
+ * @param selector - The selector
235
+ */
236
+ selector: string;
237
+ /**
238
+ * @param selector - The selector.
239
+ */
240
+ constructor(selector: string);
241
+ /**
242
+ * Gets the page object element.
243
+ *
244
+ * @returns The page object element.
245
+ */
246
+ el(): DefaultCypressChainable;
247
+ /**
248
+ * Gets the definition value.
249
+ *
250
+ * @param index - Index of definition in definition list.
251
+ * @returns The definition value.
252
+ */
253
+ definition(index: number): DefaultCypressChainable;
254
+ /**
255
+ * Gets the number of definitions.
256
+ *
257
+ * @returns The number of definitions.
258
+ */
259
+ numberOfDefinitions(): Cypress.Chainable<number>;
260
+ /**
261
+ * Gets the term of a definition.
262
+ *
263
+ * @param index - Index of definition in definition list.
264
+ * @returns The term of the definition.
265
+ */
266
+ term(index: number): DefaultCypressChainable;
267
+ }
268
+
225
269
  /**
226
270
  * Cypress pageobject for`FDetailsPanel`.
227
271
  *