@fkui/vue 6.5.0 → 6.7.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 +165 -7
- package/dist/cjs/cypress.cjs.js.map +3 -3
- package/dist/cjs/index.cjs.js +5034 -4332
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +165 -7
- package/dist/esm/cypress.esm.js.map +3 -3
- package/dist/esm/index.esm.js +5040 -4338
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +109 -2
- package/dist/types/index.d.ts +315 -166
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/configs/recommended.js +2 -0
- package/htmlvalidate/elements/components.js +65 -1
- package/htmlvalidate/rules/classdeprecated.rule.js +42 -10
- package/htmlvalidate/rules/finteractivetable-checkbox-description.rule.js +73 -0
- package/htmlvalidate/rules/index.js +3 -0
- package/package.json +5 -5
package/dist/types/cypress.d.ts
CHANGED
|
@@ -205,6 +205,47 @@ export declare class FDatepickerFieldPageobject implements BasePageObject {
|
|
|
205
205
|
highlightedDay(): DefaultCypressChainable;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
+
/**
|
|
209
|
+
* Cypress pageobject for`FDetailsPanel`.
|
|
210
|
+
*
|
|
211
|
+
* @public
|
|
212
|
+
*/
|
|
213
|
+
export declare class FDetailsPanelPageObject implements BasePageObject {
|
|
214
|
+
/** Base selector */
|
|
215
|
+
readonly selector: string;
|
|
216
|
+
protected constructor(selector: string);
|
|
217
|
+
/**
|
|
218
|
+
* Get a selector based on the panel name.
|
|
219
|
+
*/
|
|
220
|
+
protected static nameSelector(name: string): string;
|
|
221
|
+
/**
|
|
222
|
+
* Get details panel based on its `name` prop.
|
|
223
|
+
*
|
|
224
|
+
* @param name - Name given to panel.
|
|
225
|
+
*/
|
|
226
|
+
static fromName(name: string): FDetailsPanelPageObject;
|
|
227
|
+
/**
|
|
228
|
+
* Panel element.
|
|
229
|
+
*/
|
|
230
|
+
el(): DefaultCypressChainable;
|
|
231
|
+
/**
|
|
232
|
+
* Content in header slot (as defined by consumer).
|
|
233
|
+
*/
|
|
234
|
+
header(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
235
|
+
/**
|
|
236
|
+
* Content in content slot (as defined by consumer).
|
|
237
|
+
*/
|
|
238
|
+
content(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
239
|
+
/**
|
|
240
|
+
* Content in footer slot (as defined by consumer).
|
|
241
|
+
*/
|
|
242
|
+
footer(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
243
|
+
/**
|
|
244
|
+
* Default submit button.
|
|
245
|
+
*/
|
|
246
|
+
closeButton(): Cypress.Chainable<JQuery<HTMLButtonElement>>;
|
|
247
|
+
}
|
|
248
|
+
|
|
208
249
|
/**
|
|
209
250
|
* @public
|
|
210
251
|
*/
|
|
@@ -362,6 +403,30 @@ export declare class FInteractiveTablePageObject implements BasePageObject {
|
|
|
362
403
|
* @param selector - table selector.
|
|
363
404
|
*/
|
|
364
405
|
constructor(selector: string);
|
|
406
|
+
/**
|
|
407
|
+
* Get table cell (typically `<td>` but can be `<th>` if row headers are
|
|
408
|
+
* present).
|
|
409
|
+
*
|
|
410
|
+
* Both row and column are 1-indexed, i.e. 1:1 selects the first cell in the
|
|
411
|
+
* first row.
|
|
412
|
+
*
|
|
413
|
+
* Neither the marker for expandable rows or the checkbox for selectable
|
|
414
|
+
* rows are included in the column count, i.e. `1` always refers to the
|
|
415
|
+
* first column with content.
|
|
416
|
+
*
|
|
417
|
+
* For expandable rows the row count depend on whenever a row is expanded or
|
|
418
|
+
* not. If the first row is collapsed the second row refers to the next
|
|
419
|
+
* parent row while if the first row is expanded the second row refers to
|
|
420
|
+
* the first expanded row under the first row.
|
|
421
|
+
*
|
|
422
|
+
* @public
|
|
423
|
+
* @param descriptor - Row and column number of cell (1-indexed).
|
|
424
|
+
* @returns The cell element.
|
|
425
|
+
*/
|
|
426
|
+
cell(descriptor: {
|
|
427
|
+
row: number;
|
|
428
|
+
col: number;
|
|
429
|
+
}): Cypress.Chainable<JQuery<HTMLTableCellElement>>;
|
|
365
430
|
caption(): DefaultCypressChainable;
|
|
366
431
|
bodyRow(): DefaultCypressChainable;
|
|
367
432
|
row(index: number): DefaultCypressChainable;
|
|
@@ -481,6 +546,40 @@ export declare class FMessageBoxPageObject implements BasePageObject {
|
|
|
481
546
|
typeOfMessage(): Cypress.Chainable<string>;
|
|
482
547
|
}
|
|
483
548
|
|
|
549
|
+
/**
|
|
550
|
+
* Cypress pageobject for`FMinimizablePanel`.
|
|
551
|
+
*
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
554
|
+
export declare class FMinimizablePanelPageObject implements BasePageObject {
|
|
555
|
+
/** Base selector */
|
|
556
|
+
readonly selector: string;
|
|
557
|
+
/**
|
|
558
|
+
* @param selector - panel selector.
|
|
559
|
+
*/
|
|
560
|
+
constructor(selector: string);
|
|
561
|
+
/**
|
|
562
|
+
* Panel element.
|
|
563
|
+
*/
|
|
564
|
+
el(): DefaultCypressChainable;
|
|
565
|
+
/**
|
|
566
|
+
* Content in header slot (as defined by consumer).
|
|
567
|
+
*/
|
|
568
|
+
header(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
569
|
+
/**
|
|
570
|
+
* Content in content slot (as defined by consumer).
|
|
571
|
+
*/
|
|
572
|
+
content(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
573
|
+
/**
|
|
574
|
+
* Content in footer slot (as defined by consumer).
|
|
575
|
+
*/
|
|
576
|
+
footer(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
577
|
+
/**
|
|
578
|
+
* Toggle button.
|
|
579
|
+
*/
|
|
580
|
+
toggleButton(): Cypress.Chainable<JQuery<HTMLButtonElement>>;
|
|
581
|
+
}
|
|
582
|
+
|
|
484
583
|
/**
|
|
485
584
|
* @public
|
|
486
585
|
*/
|
|
@@ -846,8 +945,8 @@ export declare class FWizardStepHeaderPageobject implements BasePageObject {
|
|
|
846
945
|
successIcon: () => DefaultCypressChainable;
|
|
847
946
|
stepNumber: () => Cypress.Chainable<string>;
|
|
848
947
|
stepOf: () => DefaultCypressChainable;
|
|
849
|
-
title: () => DefaultCypressChainable;
|
|
850
948
|
constructor(selector: string);
|
|
949
|
+
title(): DefaultCypressChainable;
|
|
851
950
|
}
|
|
852
951
|
|
|
853
952
|
/**
|
|
@@ -860,7 +959,7 @@ export declare class FWizardStepPageobject implements BasePageObject {
|
|
|
860
959
|
selector: string;
|
|
861
960
|
el(): DefaultCypressChainable;
|
|
862
961
|
/**
|
|
863
|
-
* Get the header
|
|
962
|
+
* Get the header pageobject in the FWizardStep
|
|
864
963
|
*/
|
|
865
964
|
header: FWizardStepHeaderPageobject;
|
|
866
965
|
/**
|
|
@@ -879,6 +978,14 @@ export declare class FWizardStepPageobject implements BasePageObject {
|
|
|
879
978
|
* Get the body element of the FWizardStep
|
|
880
979
|
*/
|
|
881
980
|
body(): DefaultCypressChainable;
|
|
981
|
+
/**
|
|
982
|
+
* Get the steps number
|
|
983
|
+
*/
|
|
984
|
+
stepNumber(): DefaultCypressChainable;
|
|
985
|
+
/**
|
|
986
|
+
* Get the title element
|
|
987
|
+
*/
|
|
988
|
+
title(): DefaultCypressChainable;
|
|
882
989
|
/**
|
|
883
990
|
* Wait for open animation to finish.
|
|
884
991
|
*/
|