@vonage/vivid-test-utils 5.23.1 → 5.25.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/components.generated-CFCjcJdH.cjs +1 -0
- package/dist/{components.generated-DolPmkvq.js → components.generated-NJa_d646.js} +568 -529
- package/dist/components.generated.d.ts +74 -10
- package/dist/cypress.cjs +1 -1
- package/dist/cypress.js +1 -1
- package/dist/dom.cjs +1 -1
- package/dist/dom.js +1 -1
- package/dist/playwright.cjs +1 -1
- package/dist/playwright.js +1 -1
- package/package.json +6 -6
- package/dist/components.generated-D1Yu4h3L.cjs +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DriverT } from './drivers/driver';
|
|
2
2
|
import { BaseComponent, BaseWrapper, ComponentCollectionExpectations, ComponentCollectionLocator, Context } from './base';
|
|
3
|
-
import { VwcAccordionElement, VwcAccordionItemElement, VwcActionGroupElement, VwcAlertElement, VwcAudioPlayerElement, VwcAvatarElement, VwcBadgeElement, VwcBannerElement, VwcBreadcrumbElement, VwcBreadcrumbItemElement, VwcButtonElement, VwcCalendarElement, VwcCalendarEventElement, VwcCardElement, VwcCheckboxElement, VwcColorPickerElement, VwcComboboxElement, VwcContextualHelpElement, VwcCountryElement, VwcCountryGroupElement, VwcDataGridElement, VwcDataGridCellElement, VwcDataGridRowElement, VwcDatePickerElement, VwcDateRangePickerElement, VwcDateTimePickerElement, VwcDialPadElement, VwcDialogElement, VwcDividerElement, VwcEmptyStateElement, VwcFabElement, VwcFilePickerElement, VwcFlagElement, VwcHeaderElement, VwcIconElement, VwcKbdKeyElement, VwcKbdShortcutElement, VwcLayoutElement, VwcMenuElement, VwcMenuItemElement, VwcNavElement, VwcNavDisclosureElement, VwcNavItemElement, VwcNoteElement, VwcNumberFieldElement, VwcOptionElement, VwcPaginationElement, VwcPlatformSwitchElement, VwcPopoverElement, VwcProgressElement, VwcProgressRingElement, VwcRadioElement, VwcRadioGroupElement, VwcRangeSliderElement, VwcRichTextEditorElement, VwcRichTextViewElement, VwcSearchableSelectElement, VwcSelectElement, VwcSelectableBoxElement, VwcSideDrawerElement, VwcSimpleColorPickerElement, VwcSliderElement, VwcSplitButtonElement, VwcStatusElement, VwcSwitchElement, VwcTabElement, VwcTabPanelElement, VwcTableElement, VwcTableBodyElement, VwcTableCellElement, VwcTableHeadElement, VwcTableHeaderCellElement, VwcTableRowElement, VwcTableSortingButtonElement, VwcTabsElement, VwcTagElement, VwcTagGroupElement, VwcTextAreaElement, VwcTextFieldElement, VwcTimePickerElement, VwcToggletipElement, VwcTooltipElement, VwcTreeItemElement, VwcTreeViewElement, VwcVideoPlayerElement, RteInstance, RteView } from '@vonage/vivid';
|
|
3
|
+
import { VwcAccordionElement, VwcAccordionItemElement, VwcActionGroupElement, VwcAlertElement, VwcAudioPlayerElement, VwcAvatarElement, VwcBadgeElement, VwcBannerElement, VwcBreadcrumbElement, VwcBreadcrumbItemElement, VwcButtonElement, VwcCalendarElement, VwcCalendarEventElement, VwcCardElement, VwcCheckboxElement, VwcColorPickerElement, VwcComboboxElement, VwcContextualHelpElement, VwcCountryElement, VwcCountryGroupElement, VwcDataGridElement, VwcDataGridCellElement, VwcDataGridRowElement, VwcDatePickerElement, VwcDateRangePickerElement, VwcDateTimePickerElement, VwcDialPadElement, VwcDialogElement, VwcDividerElement, VwcEmptyStateElement, VwcFabElement, VwcFilePickerElement, VwcFlagElement, VwcHeaderElement, VwcIconElement, VwcKbdKeyElement, VwcKbdShortcutElement, VwcLayoutElement, VwcListboxElement, VwcMenuElement, VwcMenuItemElement, VwcNavElement, VwcNavDisclosureElement, VwcNavItemElement, VwcNoteElement, VwcNumberFieldElement, VwcOptgroupElement, VwcOptionElement, VwcPaginationElement, VwcPlatformSwitchElement, VwcPopoverElement, VwcProgressElement, VwcProgressRingElement, VwcRadioElement, VwcRadioGroupElement, VwcRangeSliderElement, VwcRichTextEditorElement, VwcRichTextViewElement, VwcSearchableSelectElement, VwcSelectElement, VwcSelectableBoxElement, VwcSideDrawerElement, VwcSimpleColorPickerElement, VwcSliderElement, VwcSplitButtonElement, VwcStatusElement, VwcSwitchElement, VwcTabElement, VwcTabPanelElement, VwcTableElement, VwcTableBodyElement, VwcTableCellElement, VwcTableHeadElement, VwcTableHeaderCellElement, VwcTableRowElement, VwcTableSortingButtonElement, VwcTabsElement, VwcTagElement, VwcTagGroupElement, VwcTextAreaElement, VwcTextFieldElement, VwcTimePickerElement, VwcToggletipElement, VwcTooltipElement, VwcTreeItemElement, VwcTreeViewElement, VwcVideoPlayerElement, RteInstance, RteView } from '@vonage/vivid';
|
|
4
4
|
type IconId = string;
|
|
5
5
|
type AccordionProps = {
|
|
6
6
|
expandMode: 'single' | 'multi';
|
|
@@ -37,7 +37,9 @@ type AccordionItemProps = {
|
|
|
37
37
|
id: string;
|
|
38
38
|
meta: string;
|
|
39
39
|
noIndicator: boolean;
|
|
40
|
+
secondaryText: string;
|
|
40
41
|
size: 'condensed' | 'normal';
|
|
42
|
+
textSecondary: string;
|
|
41
43
|
};
|
|
42
44
|
export declare class AccordionItemWrapper<D extends DriverT> extends BaseWrapper<D, VwcAccordionItemElement> {
|
|
43
45
|
type: "accordionItem";
|
|
@@ -100,7 +102,7 @@ type AlertProps = {
|
|
|
100
102
|
headline: string;
|
|
101
103
|
icon: IconId;
|
|
102
104
|
open: boolean;
|
|
103
|
-
placement: 'top' | '
|
|
105
|
+
placement: 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end';
|
|
104
106
|
removable: boolean;
|
|
105
107
|
strategy: 'fixed' | 'static';
|
|
106
108
|
text: string;
|
|
@@ -597,7 +599,7 @@ type ComboboxProps = {
|
|
|
597
599
|
open: boolean;
|
|
598
600
|
options: VwcOptionElement[];
|
|
599
601
|
placeholder: string;
|
|
600
|
-
placement: 'top' | 'bottom';
|
|
602
|
+
placement: 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end';
|
|
601
603
|
required: boolean;
|
|
602
604
|
scale: 'condensed' | 'normal';
|
|
603
605
|
selectedIndex: number;
|
|
@@ -637,7 +639,7 @@ export declare class ComboboxExpectations<D extends DriverT> {
|
|
|
637
639
|
toHaveVisibleError: (value: any) => D["expectReturn"];
|
|
638
640
|
}
|
|
639
641
|
type ContextualHelpProps = {
|
|
640
|
-
placement: 'top' | '
|
|
642
|
+
placement: 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left' | 'right' | 'left-end' | 'left-start' | 'right-end' | 'right-start';
|
|
641
643
|
};
|
|
642
644
|
export declare class ContextualHelpWrapper<D extends DriverT> extends BaseWrapper<D, VwcContextualHelpElement> {
|
|
643
645
|
type: "contextualHelp";
|
|
@@ -773,6 +775,7 @@ type DataGridCellProps = {
|
|
|
773
775
|
cellFocusTargetCallback?: ((cell: VwcDataGridCellElement) => HTMLElement);
|
|
774
776
|
isRowHeader?: false | true;
|
|
775
777
|
};
|
|
778
|
+
connotation: 'accent' | 'cta';
|
|
776
779
|
gridColumn: string;
|
|
777
780
|
rowData: object;
|
|
778
781
|
selected: boolean;
|
|
@@ -814,6 +817,7 @@ type DataGridRowProps = {
|
|
|
814
817
|
cellFocusTargetCallback?: ((cell: VwcDataGridCellElement) => HTMLElement);
|
|
815
818
|
isRowHeader?: false | true;
|
|
816
819
|
}[];
|
|
820
|
+
connotation: 'accent' | 'cta';
|
|
817
821
|
gridTemplateColumns: string;
|
|
818
822
|
headerCellItemTemplate: any;
|
|
819
823
|
rowData: object;
|
|
@@ -988,6 +992,7 @@ type DialPadProps = {
|
|
|
988
992
|
helperText: string;
|
|
989
993
|
noCall: boolean;
|
|
990
994
|
noInput: boolean;
|
|
995
|
+
noLetters: boolean;
|
|
991
996
|
pattern: string;
|
|
992
997
|
pending: boolean;
|
|
993
998
|
placeholder: string;
|
|
@@ -1365,12 +1370,43 @@ export declare class LayoutExpectations<D extends DriverT> {
|
|
|
1365
1370
|
constructor(ctx: Context<D>, wrapper: LayoutWrapper<D>);
|
|
1366
1371
|
toHaveProp: <T extends keyof LayoutProps>(propName: T, value: LayoutProps[T]) => D["expectReturn"];
|
|
1367
1372
|
}
|
|
1373
|
+
type ListboxProps = {
|
|
1374
|
+
optionFilter: ((option: VwcOptionElement, searchText: string) => boolean);
|
|
1375
|
+
requiredSelection: 'none' | 'selectable' | 'any';
|
|
1376
|
+
searchText: string;
|
|
1377
|
+
selectionBehavior: 'replace' | 'toggle';
|
|
1378
|
+
selectionMode: 'single' | 'multiple';
|
|
1379
|
+
value: string;
|
|
1380
|
+
values: string[];
|
|
1381
|
+
};
|
|
1382
|
+
export declare class ListboxWrapper<D extends DriverT> extends BaseWrapper<D, VwcListboxElement> {
|
|
1383
|
+
type: "listbox";
|
|
1384
|
+
componentInfo: {
|
|
1385
|
+
name: string;
|
|
1386
|
+
};
|
|
1387
|
+
blur: () => D["actionReturn"];
|
|
1388
|
+
focus: () => D["actionReturn"];
|
|
1389
|
+
hover: () => D["actionReturn"];
|
|
1390
|
+
}
|
|
1391
|
+
export declare class Listbox<D extends DriverT> extends BaseComponent<D, ListboxWrapper<D>> {
|
|
1392
|
+
componentInfo: {
|
|
1393
|
+
name: string;
|
|
1394
|
+
};
|
|
1395
|
+
wrap(locator: D['locator']): ListboxWrapper<D>;
|
|
1396
|
+
byTestId: (id: string) => ListboxWrapper<D>;
|
|
1397
|
+
}
|
|
1398
|
+
export declare class ListboxExpectations<D extends DriverT> {
|
|
1399
|
+
private readonly ctx;
|
|
1400
|
+
private readonly wrapper;
|
|
1401
|
+
constructor(ctx: Context<D>, wrapper: ListboxWrapper<D>);
|
|
1402
|
+
toHaveProp: <T extends keyof ListboxProps>(propName: T, value: ListboxProps[T]) => D["expectReturn"];
|
|
1403
|
+
}
|
|
1368
1404
|
type MenuProps = {
|
|
1369
1405
|
anchor: string | HTMLElement;
|
|
1370
1406
|
autoDismiss: boolean;
|
|
1371
1407
|
offset: number;
|
|
1372
1408
|
open: boolean;
|
|
1373
|
-
placement: 'top' | '
|
|
1409
|
+
placement: 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left' | 'right' | 'left-end' | 'left-start' | 'right-end' | 'right-start';
|
|
1374
1410
|
positionStrategy: 'fixed' | 'absolute';
|
|
1375
1411
|
trigger: 'auto' | 'off' | 'legacy';
|
|
1376
1412
|
};
|
|
@@ -1629,6 +1665,28 @@ export declare class NumberFieldExpectations<D extends DriverT> {
|
|
|
1629
1665
|
toHaveValueAsNumber: (value: any) => D["expectReturn"];
|
|
1630
1666
|
toHaveVisibleError: (value: any) => D["expectReturn"];
|
|
1631
1667
|
}
|
|
1668
|
+
export declare class OptgroupWrapper<D extends DriverT> extends BaseWrapper<D, VwcOptgroupElement> {
|
|
1669
|
+
type: "optgroup";
|
|
1670
|
+
componentInfo: {
|
|
1671
|
+
name: string;
|
|
1672
|
+
};
|
|
1673
|
+
blur: () => D["actionReturn"];
|
|
1674
|
+
focus: () => D["actionReturn"];
|
|
1675
|
+
hover: () => D["actionReturn"];
|
|
1676
|
+
}
|
|
1677
|
+
export declare class Optgroup<D extends DriverT> extends BaseComponent<D, OptgroupWrapper<D>> {
|
|
1678
|
+
componentInfo: {
|
|
1679
|
+
name: string;
|
|
1680
|
+
};
|
|
1681
|
+
wrap(locator: D['locator']): OptgroupWrapper<D>;
|
|
1682
|
+
byTestId: (id: string) => OptgroupWrapper<D>;
|
|
1683
|
+
}
|
|
1684
|
+
export declare class OptgroupExpectations<D extends DriverT> {
|
|
1685
|
+
private readonly ctx;
|
|
1686
|
+
private readonly wrapper;
|
|
1687
|
+
constructor(ctx: Context<D>, wrapper: OptgroupWrapper<D>);
|
|
1688
|
+
toHaveProp: (propName: never, value: never) => never;
|
|
1689
|
+
}
|
|
1632
1690
|
type OptionProps = {
|
|
1633
1691
|
checked: false | true;
|
|
1634
1692
|
connotation: 'accent' | 'cta';
|
|
@@ -1734,7 +1792,7 @@ type PopoverProps = {
|
|
|
1734
1792
|
manual: boolean;
|
|
1735
1793
|
offset: number;
|
|
1736
1794
|
open: boolean;
|
|
1737
|
-
placement: 'top' | '
|
|
1795
|
+
placement: 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left' | 'right' | 'left-end' | 'left-start' | 'right-end' | 'right-start';
|
|
1738
1796
|
};
|
|
1739
1797
|
export declare class PopoverWrapper<D extends DriverT> extends BaseWrapper<D, VwcPopoverElement> {
|
|
1740
1798
|
type: "popover";
|
|
@@ -2179,7 +2237,7 @@ type SimpleColorPickerProps = {
|
|
|
2179
2237
|
label: string;
|
|
2180
2238
|
name: string;
|
|
2181
2239
|
open: boolean;
|
|
2182
|
-
placement: 'top' | '
|
|
2240
|
+
placement: 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left' | 'right' | 'left-end' | 'left-start' | 'right-end' | 'right-start';
|
|
2183
2241
|
required: boolean;
|
|
2184
2242
|
swatches: {
|
|
2185
2243
|
label?: string;
|
|
@@ -2750,7 +2808,7 @@ type TextFieldProps = {
|
|
|
2750
2808
|
size: number;
|
|
2751
2809
|
spellcheck: boolean;
|
|
2752
2810
|
successText: string;
|
|
2753
|
-
type: 'text' | 'email' | 'password' | 'tel' | 'url';
|
|
2811
|
+
type: 'text' | 'search' | 'email' | 'password' | 'tel' | 'url';
|
|
2754
2812
|
value: string;
|
|
2755
2813
|
};
|
|
2756
2814
|
export declare class TextFieldWrapper<D extends DriverT> extends BaseWrapper<D, VwcTextFieldElement> {
|
|
@@ -2830,7 +2888,8 @@ type ToggletipProps = {
|
|
|
2830
2888
|
anchor: string | HTMLElement;
|
|
2831
2889
|
headline: string;
|
|
2832
2890
|
open: boolean;
|
|
2833
|
-
placement: 'top' | '
|
|
2891
|
+
placement: 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left' | 'right' | 'left-end' | 'left-start' | 'right-end' | 'right-start';
|
|
2892
|
+
textSecondary: string;
|
|
2834
2893
|
};
|
|
2835
2894
|
export declare class ToggletipWrapper<D extends DriverT> extends BaseWrapper<D, VwcToggletipElement> {
|
|
2836
2895
|
type: "toggletip";
|
|
@@ -2860,8 +2919,9 @@ export declare class ToggletipExpectations<D extends DriverT> {
|
|
|
2860
2919
|
type TooltipProps = {
|
|
2861
2920
|
anchor: string | HTMLElement;
|
|
2862
2921
|
open: boolean;
|
|
2863
|
-
placement: 'top' | '
|
|
2922
|
+
placement: 'top-start' | 'top' | 'top-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left' | 'right' | 'left-end' | 'left-start' | 'right-end' | 'right-start';
|
|
2864
2923
|
text: string;
|
|
2924
|
+
textSecondary: string;
|
|
2865
2925
|
};
|
|
2866
2926
|
export declare class TooltipWrapper<D extends DriverT> extends BaseWrapper<D, VwcTooltipElement> {
|
|
2867
2927
|
type: "tooltip";
|
|
@@ -3014,6 +3074,7 @@ type Expectations<D extends DriverT> = {
|
|
|
3014
3074
|
kbdKey: KbdKeyExpectations<D>;
|
|
3015
3075
|
kbdShortcut: KbdShortcutExpectations<D>;
|
|
3016
3076
|
layout: LayoutExpectations<D>;
|
|
3077
|
+
listbox: ListboxExpectations<D>;
|
|
3017
3078
|
menu: MenuExpectations<D>;
|
|
3018
3079
|
menuItem: MenuItemExpectations<D>;
|
|
3019
3080
|
nav: NavExpectations<D>;
|
|
@@ -3021,6 +3082,7 @@ type Expectations<D extends DriverT> = {
|
|
|
3021
3082
|
navItem: NavItemExpectations<D>;
|
|
3022
3083
|
note: NoteExpectations<D>;
|
|
3023
3084
|
numberField: NumberFieldExpectations<D>;
|
|
3085
|
+
optgroup: OptgroupExpectations<D>;
|
|
3024
3086
|
option: OptionExpectations<D>;
|
|
3025
3087
|
pagination: PaginationExpectations<D>;
|
|
3026
3088
|
platformSwitch: PlatformSwitchExpectations<D>;
|
|
@@ -3107,6 +3169,7 @@ export declare class VividWrapper<D extends DriverT> {
|
|
|
3107
3169
|
kbdKey: KbdKey<D>;
|
|
3108
3170
|
kbdShortcut: KbdShortcut<D>;
|
|
3109
3171
|
layout: Layout<D>;
|
|
3172
|
+
listbox: Listbox<D>;
|
|
3110
3173
|
menu: Menu<D>;
|
|
3111
3174
|
menuItem: MenuItem<D>;
|
|
3112
3175
|
nav: Nav<D>;
|
|
@@ -3114,6 +3177,7 @@ export declare class VividWrapper<D extends DriverT> {
|
|
|
3114
3177
|
navItem: NavItem<D>;
|
|
3115
3178
|
note: Note<D>;
|
|
3116
3179
|
numberField: NumberField<D>;
|
|
3180
|
+
optgroup: Optgroup<D>;
|
|
3117
3181
|
option: Option<D>;
|
|
3118
3182
|
pagination: Pagination<D>;
|
|
3119
3183
|
platformSwitch: PlatformSwitch<D>;
|
package/dist/cypress.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./components.generated-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./components.generated-CFCjcJdH.cjs`);var t=async()=>new Promise(e=>requestAnimationFrame(()=>e())),n=e=>{let n=t=>t===e,r,i=e=>{let t=r;return((...n)=>{let r=window.Error;window.Error=class extends Error{constructor(e){super(e),e===`userInvocationStack`&&(this.stack=t)}static captureStackTrace(e,t){e.message!==`userInvocationStack`&&super.captureStackTrace(e,t)}};try{return e(...n)}finally{window.Error=r}})};return{querySelector:(e,t)=>i(()=>n(e)?e.get(t):e().find(t)),enterShadow:e=>i(()=>e().shadow()),querySelectorAll:(e,t)=>i(()=>n(e)?e.get(t):e().find(t)),nth:(e,t)=>i(()=>e().eq(t)),userClick:e=>e().click(),userClear:e=>e().clear(),userFocus:e=>e().focus(),userBlur:e=>e().blur(),userHover:e=>e().then(e=>e.get(0).dispatchEvent(new MouseEvent(`mouseover`))),userFill:(e,t)=>t===``?e().clear():e().clear().type(t),userDragSlider:(e,n,r,i)=>{e().then(e=>{r().then(async n=>{let r=e.get(0),a=n.get(0);a.id===`start-thumb`?(r.startAsNumber=i,r.$emit(`input:start`),r.$emit(`input`)):a.id===`end-thumb`?(r.endAsNumber=i,r.$emit(`input:end`),r.$emit(`input`)):r.valueAsNumber=i,await t()})})},eval:(e,t,n,i)=>{let a=r;e().then(async e=>{r=a;try{let r=await t(e.get(0),n);await i?.(r)}finally{r=void 0}})},waitForUpdate(e){e().then(()=>new Promise(e=>{requestAnimationFrame(()=>{e()})}))},expectEq:(e,t,n)=>{let i=r;switch(e.type){case`eval`:e.el().should(r=>{try{expect(e.fn(r.get(0),e.arg)).to.deep.equal(t)}catch(e){let t=Error(`${n}\n\nOriginal error: ${e.message}`);throw i&&(t.stack=i),t}});break;case`count`:e.el().should(`have.length`,t);break}},wrapAction:e=>function t(...n){if(!r){let e=Error();Error.captureStackTrace(e,t),r=e.stack}try{return e(...n)}finally{r=void 0}},wrapExpect:e=>function t(...n){if(!r){let e=Error();Error.captureStackTrace(e,t),r=e.stack}try{return e(...n)}finally{r=void 0}},wrapSelector:e=>function t(...n){if(!r){let e=Error();Error.captureStackTrace(e,t),r=e.stack}try{return e(...n)}finally{r=void 0}}}},r=t=>new e.t({rootLocator:t,driver:n(t)});exports.vividCypress=r;
|
package/dist/cypress.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as e } from "./components.generated-
|
|
1
|
+
import { t as e } from "./components.generated-NJa_d646.js";
|
|
2
2
|
//#region src/drivers/cypress.ts
|
|
3
3
|
var t = async () => new Promise((e) => requestAnimationFrame(() => e())), n = (e) => {
|
|
4
4
|
let n = (t) => t === e, r, i = (e) => {
|
package/dist/dom.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},s=(n,r,a)=>(a=n==null?{}:e(i(n)),o(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));const c=require(`./components.generated-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},s=(n,r,a)=>(a=n==null?{}:e(i(n)),o(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));const c=require(`./components.generated-CFCjcJdH.cjs`);let l=require(`@testing-library/user-event`);l=s(l,1);var u=()=>new Promise(e=>{requestAnimationFrame(()=>e())}),d=e=>{let t=l.default.setup(),n=async e=>{e.focus(),e.value=``,e.dispatchEvent(new InputEvent(`input`,{bubbles:!0,composed:!0}))};return{querySelector:(e,t)=>{let n=e.querySelector(t);if(!n)throw Error(`Could not find element: ${t}`);return n},enterShadow(e){if(!e.shadowRoot)throw Error(`Element ${e.outerHTML} does not have a shadow root`);return e.shadowRoot},querySelectorAll:(e,t)=>e?Array.from(e.querySelectorAll(t)):[],nth:(e,t)=>{if(t<0||t>e.length-1)throw Error(`Could not find element with index "${t}". Collection only has "${e.length}" elements.`);return e[t]},userClick:async e=>{await t.click(e),await u()},userFill:async(e,r)=>{await n(e),r&&await t.type(e,r),await u()},userClear:async e=>{await n(e),await u()},userFocus:async e=>{e.focus(),await u()},userBlur:async e=>{e.blur(),(e.tagName===`INPUT`||e.tagName===`TEXTAREA`)&&e.dispatchEvent(new InputEvent(`change`,{bubbles:!0,composed:!0})),await u()},userHover:async e=>{await t.hover(e),await u()},userDragSlider:async(e,t,n,r)=>{if(n.id===`start-thumb`){let t=e;t.startAsNumber=r,t.$emit(`input:start`),t.$emit(`input`)}else if(n.id===`end-thumb`){let t=e;t.endAsNumber=r,t.$emit(`input:end`),t.$emit(`input`)}else{let t=e;t.valueAsNumber=r}await u()},eval:async(e,t,n,r)=>{let i=await t(e,n);await r?.(i)},waitForUpdate:async()=>{await u()},expectEq:(t,n,r)=>{switch(t.type){case`eval`:try{e(t.fn(t.el,t.arg)).toEqual(n)}catch(e){throw e instanceof Error&&(e.message=`${r}\n\nOriginal error: ${e.message}`),e}break;case`count`:e(t.el.length).toEqual(n);break}},wrapAction:e=>async function t(...n){try{return await e(...n)}catch(e){throw e instanceof Error&&Error.captureStackTrace(e,t),e}},wrapExpect:e=>function t(...n){try{return e(...n)}catch(e){throw e instanceof Error&&Error.captureStackTrace(e,t),e}},wrapSelector:e=>function t(...n){try{return e(...n)}catch(e){throw e instanceof Error&&Error.captureStackTrace(e,t),e}}}},f=(e,t)=>new c.t({rootLocator:t,driver:d(e)});exports.t=s,exports.vividDOM=f;
|
package/dist/dom.js
CHANGED
package/dist/playwright.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./components.generated-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./components.generated-CFCjcJdH.cjs`);var t=e=>({querySelector:(e,t)=>e.locator(t),enterShadow:e=>e,querySelectorAll:(e,t)=>e.locator(t),nth:(e,t)=>e.nth(t),userClick:e=>e.click(),userFill:(e,t)=>e.fill(t),userClear:e=>e.clear(),userFocus:e=>e.focus(),userBlur:e=>e.blur(),userHover:e=>e.hover(),userDragSlider:async(e,t,n,r)=>{let i=await n.getAttribute(`id`);await e.evaluate((e,[t,n])=>{if(t===`start-thumb`){let t=e;t.startAsNumber=n,t.$emit(`input:start`),t.$emit(`input`)}else if(t===`end-thumb`){let t=e;t.endAsNumber=n,t.$emit(`input:end`),t.$emit(`input`)}else{let t=e;t.valueAsNumber=n}},[i,r])},eval:async(e,t,n,r)=>{let i=await e.evaluate(t,n);await r?.(i)},waitForUpdate:async e=>{await e.evaluate(()=>new Promise(e=>{requestAnimationFrame(()=>e())}))},expectEq:async(t,n,r)=>{switch(t.type){case`eval`:try{await e(async()=>e(await t.el.evaluate(t.fn,t.arg)).toEqual(n)).toPass()}catch(e){throw e instanceof Error&&(e.message=`${r}\n\nOriginal error: ${e.message}`),e}break;case`count`:await e(t.el).toHaveCount(n);break}},wrapAction:e=>async function t(...n){try{return await e(...n)}catch(e){throw e instanceof Error&&Error.captureStackTrace(e,t),e}},wrapExpect:e=>async function t(...n){try{return await e(...n)}catch(e){throw e instanceof Error&&Error.captureStackTrace(e,t),e}},wrapSelector:e=>e}),n=(n,r)=>new e.t({rootLocator:n,driver:t(r)});exports.vividPlaywright=n;
|
package/dist/playwright.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vonage/vivid-test-utils",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.25.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./dom": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@testing-library/user-event": "^14.6.1",
|
|
32
32
|
"change-case": "^5.4.4",
|
|
33
|
-
"@vonage/vivid": "^5.
|
|
33
|
+
"@vonage/vivid": "^5.25.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@playwright/test": "1.57.0",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"vitest": "^4.1.8",
|
|
48
48
|
"vue": "^3.5.34",
|
|
49
49
|
"wait-on": "^8.0.5",
|
|
50
|
-
"@repo/
|
|
51
|
-
"@repo/metadata-extractor": "1.0.0",
|
|
50
|
+
"@repo/eslint-config": "1.0.0",
|
|
52
51
|
"@repo/tools": "1.0.0",
|
|
52
|
+
"@repo/internal-test-utils": "1.0.0",
|
|
53
53
|
"@repo/typescript-config": "1.0.0",
|
|
54
|
+
"@repo/metadata-extractor": "1.0.0",
|
|
54
55
|
"@repo/vite-config": "1.0.0",
|
|
55
56
|
"@repo/vitest-config": "1.0.0",
|
|
56
|
-
"@vonage/vivid-vue": "5.23.1",
|
|
57
57
|
"@repo/wrapper-gen": "1.0.0",
|
|
58
|
-
"@
|
|
58
|
+
"@vonage/vivid-vue": "5.25.0"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"prebuild": "tsx scripts/codegen.ts",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var e=class{constructor(e,t){this.ctx=e,this.locator=t}unwrap(){return this.locator}assert(e,t,n,r){return this.ctx.driver.expectEq({type:`eval`,el:this.locator,fn:t,arg:r},n,`Failed to assert condition: "${e}"`)}},t=class{constructor(e){this.ctx=e,this.all=this.ctx.driver.wrapSelector(()=>new n(this.ctx,this,this.ctx.driver.querySelectorAll(this.ctx.rootLocator,`[data-vvd-component="${this.componentInfo.name}"]`)))}},n=class{constructor(e,t,n){this.ctx=e,this.component=t,this.locator=n,this.type=`collection`,this.nth=this.ctx.driver.wrapSelector(e=>this.component.wrap(this.ctx.driver.nth(this.locator,e)))}},r=class{constructor(e,t){this.ctx=e,this.locator=t,this.toHaveCount=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({el:this.locator.locator,type:`count`},e,`toHaveCount(${e})`))}},ee=e=>e.replace(/\\/g,`\\\\`).replace(/"/g,`\\"`).replace(/'/g,`\\'`),i=(e,t)=>t.map(([t,n])=>`[data-vvd-component="${e}"][${t}="${ee(n)}"]`).join(`,`);function a(e){return this.wrap(this.ctx.driver.querySelector(this.ctx.rootLocator,i(this.componentInfo.name,[[`data-testid`,e],[`data-test-id`,e],[`data-cy`,e]])))}function o(e){return this.wrap(this.ctx.driver.querySelector(this.ctx.rootLocator,i(this.componentInfo.name,[[`label`,e],[`aria-label`,e],[`data-vvd-aria-label`,e]])))}function te(e){return this.wrap(this.ctx.driver.querySelector(this.ctx.rootLocator,i(this.componentInfo.name,[[`heading`,e]])))}function s(e){return this.wrap(this.ctx.driver.querySelector(this.ctx.rootLocator,i(this.componentInfo.name,[[`headline`,e]])))}function c(e){return this.wrap(this.ctx.driver.querySelector(this.ctx.rootLocator,i(this.componentInfo.name,[[`text`,e]])))}var l=e=>{if(!e.length)return;let t=e[0],n=e.slice(1),r=t();return r instanceof Promise?r.then(()=>l(n)):l(n)};function u(e){return e.checked}function d(e){return e.indeterminate?`indeterminate`:e.checked?`checked`:`unchecked`}function f(e){return e.errorValidationMessage}function p(e){return e.headline}function m(e){return e.open}function h(e){return e.value}function ne(e){return e.valueAsNumber}function re(e){return e.values}function ie(e){return e.selectedOptions.map(e=>e.label)}function g(e){return e.expanded}function _(e){return e.active}function v(e){return e.current}function y(e){return e.selected}function b(e){return e.disabled}function ae(e){return[e.start,e.end]}function oe(e){return[e.startAsNumber,e.endAsNumber]}function se(e){return e.name}function ce(e){return e.code}function le(e){return e.total}function ue(e){return e.selectedIndex+1||null}function x(e){let t=e.shadowRoot.querySelector(`slot[name=icon]`);if(t){let e=t.assignedElements()[0];if(e?.dataset.vvdComponent===`icon`)return e.name}let n=e.shadowRoot.querySelector(`slot[name="icon"] [data-vvd-component="icon"], span.icon [data-vvd-component="icon"]`);return n?n.name:null}function S(e){return this.ctx.driver.userClick(e())}function C(e,t){return this.ctx.driver.userFill(e(),t)}function de(e){return l([()=>this.ctx.driver.userFill(this.control(),e),()=>this.ctx.driver.userBlur(this.control())])}function w(e){return this.ctx.driver.userClear(e())}function fe(){return l([()=>this.ctx.driver.eval(this.locator,()=>new Promise(e=>setTimeout(e,200))),()=>this.ctx.driver.userClear(this.control()),()=>this.ctx.driver.userBlur(this.control())])}function T(e){return l([()=>this.assert(`Component is unchecked before it can be checked`,d,`unchecked`),()=>this.ctx.driver.userClick(e()),()=>this.assert(`Component is checked after checking it`,d,`checked`)])}function E(e){return l([()=>this.assert(`Component is checked before it can be unchecked`,d,`checked`),()=>this.ctx.driver.userClick(e()),()=>this.assert(`Component is unchecked after unchecking it`,d,`unchecked`)])}function D(e){return this.ctx.driver.userFocus(e())}function O(e){return this.ctx.driver.userBlur(e())}function k(e){return this.ctx.driver.userHover(e())}function A(e){return M.call(this,i(`option`,[[`value`,e]]))}function j(e){return M.call(this,i(`option`,[[`text`,e]]))}function M(e){return this.ctx.driver.eval(this.locator,e=>e.open,void 0,t=>l([()=>{if(!t)return this.ctx.driver.userClick(this.locator)},()=>this.ctx.driver.expectEq({type:`eval`,el:this.ctx.driver.querySelector(this.locator,e),fn:e=>!!e.selected},!1,`Option is unselected before it can be selected`),()=>this.ctx.driver.expectEq({type:`eval`,el:this.ctx.driver.querySelector(this.locator,e),fn:e=>!!e.disabled},!1,`Option is not disabled before it can be selected`),()=>this.ctx.driver.eval(this.ctx.driver.querySelector(this.locator,e),e=>e.click()),()=>this.ctx.driver.expectEq({type:`eval`,el:this.ctx.driver.querySelector(this.locator,e),fn:e=>!!e.selected},!0,`Option is selected after selecting it`)]))}function N(e){return e().click()}var P=e=>{let[t,n,r]=e.split(`-`);return`${n}/${r}/${t}`};function pe(e){return l([()=>this.control().fill(P(e)),()=>this.control().blur()])}function F(){return l([()=>this.pickerButton().click(),()=>this.clearButton().click()])}var I=e=>{let[t,n,r]=e.split(`:`);return`${t%12||12}:${n}:${r} ${+t<12?`AM`:`PM`}`};function me(e){return l([()=>this.control().fill(I(e)),()=>this.control().blur()])}var he=([e,t])=>`${P(e)} – ${P(t)}`;function ge(e){return l([()=>this.control().fill(he(e)),()=>this.control().blur()])}var _e=e=>{let[t,n]=e.split(`T`);return`${P(t)} ${I(n)}`};function ve(e){return l([()=>this.control().fill(_e(e)),()=>this.control().blur()])}function L(e,t,n){return this.ctx.driver.userDragSlider(this.locator,e(),t(),n)}function ye(e){return this.ctx.driver.userClick(this.ctx.driver.querySelector(this.ctx.driver.enterShadow(this.locator),`.vwc-pagination-button[label="${e+1}"]`))}function R(e){return l([()=>this.assert(`Component is ${e?`collapsed`:`expanded`} before it can be ${e?`expanded`:`collapsed`}`,e=>!!e.expanded,!e),()=>this.ctx.driver.userClick(this.button()),()=>this.assert(`Component is ${e?`expanded`:`collapsed`} after ${e?`expanding`:`collapsing`} it`,e=>!!e.expanded,e)])}function z(e){return l([()=>this.assert(`Component is ${e?`closed`:`open`} before it can be ${e?`expanded`:`collapsed`}`,e=>!!e.open,!e),()=>this.ctx.driver.userClick(this.summary()),()=>this.assert(`Component is ${e?`open`:`closed`} after ${e?`expanding`:`collapsing`} it`,e=>!!e.open,e)])}function B(e){return l([()=>this.ctx.driver.userClick(this.base()),()=>this.assert(`Component is ${e?`selected`:`unselected`} after ${e?`selecting`:`unselecting`} it`,e=>!!e.selected,e)])}function be(e){return this.ctx.driver.querySelector(this.unwrap(),e)}function V(e){return this.ctx.driver.querySelector(this.ctx.driver.enterShadow(this.unwrap()),e)}function xe(e,t){return this.ctx.driver.querySelector(this.ctx.driver.enterShadow(this.ctx.driver.querySelector(this.ctx.driver.enterShadow(this.unwrap()),e)),t)}function H(e){return new et(this.ctx,this.ctx.driver.querySelector(this.ctx.driver.enterShadow(this.unwrap()),e))}function U(e){return new no(this.ctx,this.ctx.driver.querySelector(this.ctx.driver.enterShadow(this.unwrap()),e))}var W={name:`accordion`},Se=class extends e{constructor(...e){super(...e),this.type=`accordion`,this.componentInfo=W,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Ce=class extends t{constructor(...e){super(...e),this.componentInfo=W,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Se(this.ctx,e)}},we=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},G={name:`accordion-item`},Te=class extends e{constructor(...e){super(...e),this.type=`accordionItem`,this.componentInfo=G,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.collapse=this.ctx.driver.wrapAction(R.bind(this,!1)),this.expand=this.ctx.driver.wrapAction(R.bind(this,!0)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.button=V.bind(this,`.heading-button`)}},Ee=class extends t{constructor(...e){super(...e),this.componentInfo=G,this.byHeading=this.ctx.driver.wrapSelector(te.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Te(this.ctx,e)}},De=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeCollapsed=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:g},!1,`toBeCollapsed()`)),this.toBeExpanded=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:g},!0,`toBeExpanded()`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},K={name:`action-group`},Oe=class extends e{constructor(...e){super(...e),this.type=`actionGroup`,this.componentInfo=K,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},ke=class extends t{constructor(...e){super(...e),this.componentInfo=K,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Oe(this.ctx,e)}},Ae=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},q={name:`alert`},je=class extends e{constructor(...e){super(...e),this.type=`alert`,this.componentInfo=q,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Me=class extends t{constructor(...e){super(...e),this.componentInfo=q,this.byHeadline=this.ctx.driver.wrapSelector(s.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new je(this.ctx,e)}},Ne=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeClosed=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!1,`toBeClosed()`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toBeOpen=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!0,`toBeOpen()`))}},J={name:`audio-player`},Pe=class extends e{constructor(...e){super(...e),this.type=`audioPlayer`,this.componentInfo=J,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Fe=class extends t{constructor(...e){super(...e),this.componentInfo=J,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Pe(this.ctx,e)}},Ie=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Y={name:`avatar`},Le=class extends e{constructor(...e){super(...e),this.type=`avatar`,this.componentInfo=Y,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Re=class extends t{constructor(...e){super(...e),this.componentInfo=Y,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Le(this.ctx,e)}},ze=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},X={name:`badge`},Be=class extends e{constructor(...e){super(...e),this.type=`badge`,this.componentInfo=X,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Ve=class extends t{constructor(...e){super(...e),this.componentInfo=X,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Be(this.ctx,e)}},He=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},Z={name:`banner`},Ue=class extends e{constructor(...e){super(...e),this.type=`banner`,this.componentInfo=Z,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.dismiss=this.ctx.driver.wrapAction(N.bind(this,()=>this.dismissButton())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.dismissButton=H.bind(this,`.dismiss-button`)}},We=class extends t{constructor(...e){super(...e),this.componentInfo=Z,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this)),this.byText=this.ctx.driver.wrapSelector(c.bind(this))}wrap(e){return new Ue(this.ctx,e)}},Ge=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},Q={name:`breadcrumb`},Ke=class extends e{constructor(...e){super(...e),this.type=`breadcrumb`,this.componentInfo=Q,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},qe=class extends t{constructor(...e){super(...e),this.componentInfo=Q,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ke(this.ctx,e)}},Je=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},Ye={name:`breadcrumb-item`},Xe=class extends e{constructor(...e){super(...e),this.type=`breadcrumbItem`,this.componentInfo=Ye,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Ze=class extends t{constructor(...e){super(...e),this.componentInfo=Ye,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Xe(this.ctx,e)}},Qe=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},$e={name:`button`},et=class extends e{constructor(...e){super(...e),this.type=`button`,this.componentInfo=$e,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.click=this.ctx.driver.wrapAction(S.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.control=V.bind(this,`button.control`)}},tt=class extends t{constructor(...e){super(...e),this.componentInfo=$e,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new et(this.ctx,e)}},nt=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})"))}},rt={name:`calendar`},it=class extends e{constructor(...e){super(...e),this.type=`calendar`,this.componentInfo=rt,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},at=class extends t{constructor(...e){super(...e),this.componentInfo=rt,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new it(this.ctx,e)}},ot=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},st={name:`calendar-event`},ct=class extends e{constructor(...e){super(...e),this.type=`calendarEvent`,this.componentInfo=st,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},lt=class extends t{constructor(...e){super(...e),this.componentInfo=st,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new ct(this.ctx,e)}},ut=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},dt={name:`card`},ft=class extends e{constructor(...e){super(...e),this.type=`card`,this.componentInfo=dt,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},pt=class extends t{constructor(...e){super(...e),this.componentInfo=dt,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new ft(this.ctx,e)}},mt=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveHeadline=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:p},e,"toHaveHeadline(${value})"))}},ht={name:`checkbox`},gt=class extends e{constructor(...e){super(...e),this.type=`checkbox`,this.componentInfo=ht,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.check=this.ctx.driver.wrapAction(T.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.uncheck=this.ctx.driver.wrapAction(E.bind(this,()=>this.control())),this.control=V.bind(this,`div.control`)}},_t=class extends t{constructor(...e){super(...e),this.componentInfo=ht,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new gt(this.ctx,e)}},vt=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeChecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:d},`checked`,`toBeChecked()`)),this.toBeIndeterminate=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:d},`indeterminate`,`toBeIndeterminate()`)),this.toBeUnchecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:d},`unchecked`,`toBeUnchecked()`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},yt={name:`color-picker`},bt=class extends e{constructor(...e){super(...e),this.type=`colorPicker`,this.componentInfo=yt,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},xt=class extends t{constructor(...e){super(...e),this.componentInfo=yt,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new bt(this.ctx,e)}},St=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},Ct={name:`combobox`},wt=class extends e{constructor(...e){super(...e),this.type=`combobox`,this.componentInfo=Ct,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clear=this.ctx.driver.wrapAction(fe.bind(this)),this.fill=this.ctx.driver.wrapAction(de.bind(this)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.selectOptionByText=this.ctx.driver.wrapAction(j.bind(this)),this.selectOptionByValue=this.ctx.driver.wrapAction(A.bind(this)),this.control=V.bind(this,`input.control`)}},Tt=class extends t{constructor(...e){super(...e),this.componentInfo=Ct,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new wt(this.ctx,e)}},Et=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},Dt={name:`contextual-help`},Ot=class extends e{constructor(...e){super(...e),this.type=`contextualHelp`,this.componentInfo=Dt,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},kt=class extends t{constructor(...e){super(...e),this.componentInfo=Dt,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ot(this.ctx,e)}},At=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},jt={name:`country`},Mt=class extends e{constructor(...e){super(...e),this.type=`country`,this.componentInfo=jt,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Nt=class extends t{constructor(...e){super(...e),this.componentInfo=jt,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Mt(this.ctx,e)}},Pt=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Ft={name:`country-group`},It=class extends e{constructor(...e){super(...e),this.type=`countryGroup`,this.componentInfo=Ft,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Lt=class extends t{constructor(...e){super(...e),this.componentInfo=Ft,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new It(this.ctx,e)}},Rt=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},zt={name:`data-grid`},Bt=class extends e{constructor(...e){super(...e),this.type=`dataGrid`,this.componentInfo=zt,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Vt=class extends t{constructor(...e){super(...e),this.componentInfo=zt,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Bt(this.ctx,e)}},Ht=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Ut={name:`data-grid-cell`},Wt=class extends e{constructor(...e){super(...e),this.type=`dataGridCell`,this.componentInfo=Ut,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Gt=class extends t{constructor(...e){super(...e),this.componentInfo=Ut,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Wt(this.ctx,e)}},Kt=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},qt={name:`data-grid-row`},Jt=class extends e{constructor(...e){super(...e),this.type=`dataGridRow`,this.componentInfo=qt,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Yt=class extends t{constructor(...e){super(...e),this.componentInfo=qt,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Jt(this.ctx,e)}},Xt=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Zt={name:`date-picker`},Qt=class extends e{constructor(...e){super(...e),this.type=`datePicker`,this.componentInfo=Zt,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clear=this.ctx.driver.wrapAction(F.bind(this)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.selectDate=this.ctx.driver.wrapAction(pe.bind(this)),this.clearButton=H.bind(this,`#clear-button`),this.control=U.bind(this,`[data-vvd-component=text-field].control`),this.pickerButton=H.bind(this,`#picker-button`)}},$t=class extends t{constructor(...e){super(...e),this.componentInfo=Zt,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Qt(this.ctx,e)}},en=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},tn={name:`date-range-picker`},nn=class extends e{constructor(...e){super(...e),this.type=`dateRangePicker`,this.componentInfo=tn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clear=this.ctx.driver.wrapAction(F.bind(this)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.selectDateRange=this.ctx.driver.wrapAction(ge.bind(this)),this.clearButton=H.bind(this,`#clear-button`),this.control=U.bind(this,`[data-vvd-component=text-field].control`),this.pickerButton=H.bind(this,`#picker-button`)}},rn=class extends t{constructor(...e){super(...e),this.componentInfo=tn,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new nn(this.ctx,e)}},an=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveRange=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:ae},e,"toHaveRange(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},on={name:`date-time-picker`},sn=class extends e{constructor(...e){super(...e),this.type=`dateTimePicker`,this.componentInfo=on,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clear=this.ctx.driver.wrapAction(F.bind(this)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.selectDateTime=this.ctx.driver.wrapAction(ve.bind(this)),this.clearButton=H.bind(this,`#clear-button`),this.control=U.bind(this,`[data-vvd-component=text-field].control`),this.pickerButton=H.bind(this,`#picker-button`)}},cn=class extends t{constructor(...e){super(...e),this.componentInfo=on,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new sn(this.ctx,e)}},ln=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},un={name:`dial-pad`},dn=class extends e{constructor(...e){super(...e),this.type=`dialPad`,this.componentInfo=un,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},fn=class extends t{constructor(...e){super(...e),this.componentInfo=un,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new dn(this.ctx,e)}},pn=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},mn={name:`dialog`},hn=class extends e{constructor(...e){super(...e),this.type=`dialog`,this.componentInfo=mn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.dismiss=this.ctx.driver.wrapAction(S.bind(this,()=>this.dismissButton())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.dismissButton=V.bind(this,`.dismiss-button`)}},gn=class extends t{constructor(...e){super(...e),this.componentInfo=mn,this.byHeadline=this.ctx.driver.wrapSelector(s.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new hn(this.ctx,e)}},_n=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeClosed=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!1,`toBeClosed()`)),this.toHaveHeadline=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:p},e,"toHaveHeadline(${value})")),this.toBeOpen=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!0,`toBeOpen()`))}},vn={name:`divider`},yn=class extends e{constructor(...e){super(...e),this.type=`divider`,this.componentInfo=vn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},bn=class extends t{constructor(...e){super(...e),this.componentInfo=vn,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new yn(this.ctx,e)}},xn=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Sn={name:`empty-state`},Cn=class extends e{constructor(...e){super(...e),this.type=`emptyState`,this.componentInfo=Sn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},wn=class extends t{constructor(...e){super(...e),this.componentInfo=Sn,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Cn(this.ctx,e)}},Tn=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},En={name:`fab`},Dn=class extends e{constructor(...e){super(...e),this.type=`fab`,this.componentInfo=En,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.click=this.ctx.driver.wrapAction(S.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.control=V.bind(this,`button.control`)}},On=class extends t{constructor(...e){super(...e),this.componentInfo=En,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Dn(this.ctx,e)}},kn=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})"))}},An={name:`file-picker`},jn=class extends e{constructor(...e){super(...e),this.type=`filePicker`,this.componentInfo=An,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Mn=class extends t{constructor(...e){super(...e),this.componentInfo=An,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new jn(this.ctx,e)}},Nn=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},Pn={name:`flag`},Fn=class extends e{constructor(...e){super(...e),this.type=`flag`,this.componentInfo=Pn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},In=class extends t{constructor(...e){super(...e),this.componentInfo=Pn,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Fn(this.ctx,e)}},Ln=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveCode=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:ce},e,"toHaveCode(${value})"))}},Rn={name:`header`},zn=class extends e{constructor(...e){super(...e),this.type=`header`,this.componentInfo=Rn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Bn=class extends t{constructor(...e){super(...e),this.componentInfo=Rn,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new zn(this.ctx,e)}},Vn=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Hn={name:`icon`},Un=class extends e{constructor(...e){super(...e),this.type=`icon`,this.componentInfo=Hn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Wn=class extends t{constructor(...e){super(...e),this.componentInfo=Hn,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Un(this.ctx,e)}},Gn=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveName=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:se},e,"toHaveName(${value})"))}},Kn={name:`kbd-key`},qn=class extends e{constructor(...e){super(...e),this.type=`kbdKey`,this.componentInfo=Kn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Jn=class extends t{constructor(...e){super(...e),this.componentInfo=Kn,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new qn(this.ctx,e)}},Yn=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Xn={name:`kbd-shortcut`},Zn=class extends e{constructor(...e){super(...e),this.type=`kbdShortcut`,this.componentInfo=Xn,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Qn=class extends t{constructor(...e){super(...e),this.componentInfo=Xn,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Zn(this.ctx,e)}},$n=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},er={name:`layout`},tr=class extends e{constructor(...e){super(...e),this.type=`layout`,this.componentInfo=er,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},nr=class extends t{constructor(...e){super(...e),this.componentInfo=er,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new tr(this.ctx,e)}},rr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},ir={name:`menu`},ar=class extends e{constructor(...e){super(...e),this.type=`menu`,this.componentInfo=ir,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},or=class extends t{constructor(...e){super(...e),this.componentInfo=ir,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new ar(this.ctx,e)}},sr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeClosed=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!1,`toBeClosed()`)),this.toBeOpen=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!0,`toBeOpen()`))}},cr={name:`menu-item`},lr=class extends e{constructor(...e){super(...e),this.type=`menuItem`,this.componentInfo=cr,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.click=this.ctx.driver.wrapAction(S.bind(this,()=>this.base())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.base=V.bind(this,`.base`)}},ur=class extends t{constructor(...e){super(...e),this.componentInfo=cr,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this)),this.byText=this.ctx.driver.wrapSelector(c.bind(this))}wrap(e){return new lr(this.ctx,e)}},dr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeChecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:u},!0,`toBeChecked()`)),this.toHaveDisabled=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:b},e,"toHaveDisabled(${value})")),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toBeUnchecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:u},!1,`toBeUnchecked()`))}},fr={name:`nav`},pr=class extends e{constructor(...e){super(...e),this.type=`nav`,this.componentInfo=fr,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},mr=class extends t{constructor(...e){super(...e),this.componentInfo=fr,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new pr(this.ctx,e)}},hr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},gr={name:`nav-disclosure`},_r=class extends e{constructor(...e){super(...e),this.type=`navDisclosure`,this.componentInfo=gr,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.collapse=this.ctx.driver.wrapAction(z.bind(this,!1)),this.expand=this.ctx.driver.wrapAction(z.bind(this,!0)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.summary=V.bind(this,`summary`)}},vr=class extends t{constructor(...e){super(...e),this.componentInfo=gr,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new _r(this.ctx,e)}},yr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.notToBeCurrent=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:v},!1,`notToBeCurrent()`)),this.toBeClosed=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!1,`toBeClosed()`)),this.toBeCurrent=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:v},!0,`toBeCurrent()`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toBeOpen=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!0,`toBeOpen()`))}},br={name:`nav-item`},xr=class extends e{constructor(...e){super(...e),this.type=`navItem`,this.componentInfo=br,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.click=this.ctx.driver.wrapAction(S.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.control=V.bind(this,`.control`)}},Sr=class extends t{constructor(...e){super(...e),this.componentInfo=br,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new xr(this.ctx,e)}},Cr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.notToBeCurrent=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:v},!1,`notToBeCurrent()`)),this.toBeCurrent=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:v},!0,`toBeCurrent()`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},wr={name:`note`},Tr=class extends e{constructor(...e){super(...e),this.type=`note`,this.componentInfo=wr,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Er=class extends t{constructor(...e){super(...e),this.componentInfo=wr,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Tr(this.ctx,e)}},Dr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},Or={name:`number-field`},kr=class extends e{constructor(...e){super(...e),this.type=`numberField`,this.componentInfo=Or,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clear=this.ctx.driver.wrapAction(w.bind(this,()=>this.control())),this.clickDecrement=this.ctx.driver.wrapAction(N.bind(this,()=>this.decrementButton())),this.clickIncrement=this.ctx.driver.wrapAction(N.bind(this,()=>this.incrementButton())),this.fill=this.ctx.driver.wrapAction(C.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.control=V.bind(this,`input.control`),this.decrementButton=H.bind(this,`#subtract`),this.incrementButton=H.bind(this,`#add`)}},Ar=class extends t{constructor(...e){super(...e),this.componentInfo=Or,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new kr(this.ctx,e)}},jr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveValueAsNumber=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:ne},e,"toHaveValueAsNumber(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},Mr={name:`option`},Nr=class extends e{constructor(...e){super(...e),this.type=`option`,this.componentInfo=Mr,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.click=this.ctx.driver.wrapAction(S.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Pr=class extends t{constructor(...e){super(...e),this.componentInfo=Mr,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Nr(this.ctx,e)}},Fr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},Ir={name:`pagination`},Lr=class extends e{constructor(...e){super(...e),this.type=`pagination`,this.componentInfo=Ir,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clickNext=this.ctx.driver.wrapAction(S.bind(this,()=>this.nextButton())),this.clickPageIndex=this.ctx.driver.wrapAction(ye.bind(this)),this.clickPrev=this.ctx.driver.wrapAction(S.bind(this,()=>this.prevButton())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.nextButton=V.bind(this,`.next-button`),this.prevButton=V.bind(this,`.prev-button`)}},Rr=class extends t{constructor(...e){super(...e),this.componentInfo=Ir,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Lr(this.ctx,e)}},zr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveSelectedPage=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:ue},e,"toHaveSelectedPage(${value})")),this.toHaveTotal=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:le},e,"toHaveTotal(${value})"))}},Br={name:`platform-switch`},Vr=class extends e{constructor(...e){super(...e),this.type=`platformSwitch`,this.componentInfo=Br,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Hr=class extends t{constructor(...e){super(...e),this.componentInfo=Br,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Vr(this.ctx,e)}},Ur=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},Wr={name:`popover`},Gr=class extends e{constructor(...e){super(...e),this.type=`popover`,this.componentInfo=Wr,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Kr=class extends t{constructor(...e){super(...e),this.componentInfo=Wr,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Gr(this.ctx,e)}},qr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Jr={name:`progress`},Yr=class extends e{constructor(...e){super(...e),this.type=`progress`,this.componentInfo=Jr,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Xr=class extends t{constructor(...e){super(...e),this.componentInfo=Jr,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Yr(this.ctx,e)}},Zr=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Qr={name:`progress-ring`},$r=class extends e{constructor(...e){super(...e),this.type=`progressRing`,this.componentInfo=Qr,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},ei=class extends t{constructor(...e){super(...e),this.componentInfo=Qr,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new $r(this.ctx,e)}},ti=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},ni={name:`radio`},ri=class extends e{constructor(...e){super(...e),this.type=`radio`,this.componentInfo=ni,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.check=this.ctx.driver.wrapAction(S.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.control=V.bind(this,`.control`)}},ii=class extends t{constructor(...e){super(...e),this.componentInfo=ni,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new ri(this.ctx,e)}},ai=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeChecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:u},!0,`toBeChecked()`)),this.toBeUnchecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:u},!1,`toBeUnchecked()`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},oi={name:`radio-group`},si=class extends e{constructor(...e){super(...e),this.type=`radioGroup`,this.componentInfo=oi,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},ci=class extends t{constructor(...e){super(...e),this.componentInfo=oi,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new si(this.ctx,e)}},li=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},ui={name:`range-slider`},di=class extends e{constructor(...e){super(...e),this.type=`rangeSlider`,this.componentInfo=ui,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.slideEndTo=this.ctx.driver.wrapAction(L.bind(this,()=>this.track(),()=>this.endThumb())),this.slideStartTo=this.ctx.driver.wrapAction(L.bind(this,()=>this.track(),()=>this.startThumb())),this.endThumb=V.bind(this,`#end-thumb`),this.startThumb=V.bind(this,`#start-thumb`),this.track=V.bind(this,`.control`)}},fi=class extends t{constructor(...e){super(...e),this.componentInfo=ui,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new di(this.ctx,e)}},pi=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveRange=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:oe},e,"toHaveRange(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},mi={name:`rich-text-editor`},hi=class extends e{constructor(...e){super(...e),this.type=`richTextEditor`,this.componentInfo=mi,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},gi=class extends t{constructor(...e){super(...e),this.componentInfo=mi,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new hi(this.ctx,e)}},_i=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},vi={name:`rich-text-view`},yi=class extends e{constructor(...e){super(...e),this.type=`richTextView`,this.componentInfo=vi,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},bi=class extends t{constructor(...e){super(...e),this.componentInfo=vi,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new yi(this.ctx,e)}},xi=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Si={name:`searchable-select`},Ci=class extends e{constructor(...e){super(...e),this.type=`searchableSelect`,this.componentInfo=Si,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.selectOptionByText=this.ctx.driver.wrapAction(j.bind(this)),this.selectOptionByValue=this.ctx.driver.wrapAction(A.bind(this))}},wi=class extends t{constructor(...e){super(...e),this.componentInfo=Si,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ci(this.ctx,e)}},Ti=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toHaveSelectedOptions=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:ie},e,"toHaveSelectedOptions(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveValues=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:re},e,"toHaveValues(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},Ei={name:`select`},Di=class extends e{constructor(...e){super(...e),this.type=`select`,this.componentInfo=Ei,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.selectOptionByText=this.ctx.driver.wrapAction(j.bind(this)),this.selectOptionByValue=this.ctx.driver.wrapAction(A.bind(this))}},Oi=class extends t{constructor(...e){super(...e),this.componentInfo=Ei,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Di(this.ctx,e)}},ki=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},Ai={name:`selectable-box`},ji=class extends e{constructor(...e){super(...e),this.type=`selectableBox`,this.componentInfo=Ai,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.check=this.ctx.driver.wrapAction(T.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.uncheck=this.ctx.driver.wrapAction(E.bind(this,()=>this.control())),this.control=xe.bind(this,`[data-vvd-component].control`,`div.control`)}},Mi=class extends t{constructor(...e){super(...e),this.componentInfo=Ai,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new ji(this.ctx,e)}},Ni=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeChecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:u},!0,`toBeChecked()`)),this.toBeUnchecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:u},!1,`toBeUnchecked()`))}},Pi={name:`side-drawer`},Fi=class extends e{constructor(...e){super(...e),this.type=`sideDrawer`,this.componentInfo=Pi,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Ii=class extends t{constructor(...e){super(...e),this.componentInfo=Pi,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Fi(this.ctx,e)}},Li=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Ri={name:`simple-color-picker`},zi=class extends e{constructor(...e){super(...e),this.type=`simpleColorPicker`,this.componentInfo=Ri,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Bi=class extends t{constructor(...e){super(...e),this.componentInfo=Ri,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new zi(this.ctx,e)}},Vi=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},Hi={name:`slider`},Ui=class extends e{constructor(...e){super(...e),this.type=`slider`,this.componentInfo=Hi,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.slideTo=this.ctx.driver.wrapAction(L.bind(this,()=>this.track(),()=>this.thumb())),this.thumb=V.bind(this,`.thumb-container`),this.track=V.bind(this,`.control`)}},Wi=class extends t{constructor(...e){super(...e),this.componentInfo=Hi,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ui(this.ctx,e)}},Gi=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveValueAsNumber=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:ne},e,"toHaveValueAsNumber(${value})"))}},Ki={name:`split-button`},qi=class extends e{constructor(...e){super(...e),this.type=`splitButton`,this.componentInfo=Ki,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clickAction=this.ctx.driver.wrapAction(S.bind(this,()=>this.actionButton())),this.clickIndicator=this.ctx.driver.wrapAction(S.bind(this,()=>this.indicatorButton())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.actionButton=V.bind(this,`button.control`),this.indicatorButton=V.bind(this,`button.indicator`)}},Ji=class extends t{constructor(...e){super(...e),this.componentInfo=Ki,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new qi(this.ctx,e)}},Yi=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},Xi={name:`status`},Zi=class extends e{constructor(...e){super(...e),this.type=`status`,this.componentInfo=Xi,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Qi=class extends t{constructor(...e){super(...e),this.componentInfo=Xi,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Zi(this.ctx,e)}},$i=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},ea={name:`switch`},ta=class extends e{constructor(...e){super(...e),this.type=`switch`,this.componentInfo=ea,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.check=this.ctx.driver.wrapAction(S.bind(this,()=>this.switch())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.uncheck=this.ctx.driver.wrapAction(S.bind(this,()=>this.switch())),this.switch=V.bind(this,`.switch`)}},na=class extends t{constructor(...e){super(...e),this.componentInfo=ea,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new ta(this.ctx,e)}},ra=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeChecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:u},!0,`toBeChecked()`)),this.toBeUnchecked=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:u},!1,`toBeUnchecked()`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})"))}},ia={name:`tab`},aa=class extends e{constructor(...e){super(...e),this.type=`tab`,this.componentInfo=ia,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.select=this.ctx.driver.wrapAction(S.bind(this,()=>this.base())),this.base=V.bind(this,`.base`)}},oa=class extends t{constructor(...e){super(...e),this.componentInfo=ia,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new aa(this.ctx,e)}},sa=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeActive=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:_},!0,`toBeActive()`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toBeInactive=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:_},!1,`toBeInactive()`))}},ca={name:`tab-panel`},la=class extends e{constructor(...e){super(...e),this.type=`tabPanel`,this.componentInfo=ca,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},ua=class extends t{constructor(...e){super(...e),this.componentInfo=ca,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new la(this.ctx,e)}},da=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},fa={name:`table`},pa=class extends e{constructor(...e){super(...e),this.type=`table`,this.componentInfo=fa,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},ma=class extends t{constructor(...e){super(...e),this.componentInfo=fa,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new pa(this.ctx,e)}},ha=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},ga={name:`table-body`},_a=class extends e{constructor(...e){super(...e),this.type=`tableBody`,this.componentInfo=ga,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},va=class extends t{constructor(...e){super(...e),this.componentInfo=ga,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new _a(this.ctx,e)}},ya=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},ba={name:`table-cell`},xa=class extends e{constructor(...e){super(...e),this.type=`tableCell`,this.componentInfo=ba,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Sa=class extends t{constructor(...e){super(...e),this.componentInfo=ba,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new xa(this.ctx,e)}},Ca=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},wa={name:`table-head`},Ta=class extends e{constructor(...e){super(...e),this.type=`tableHead`,this.componentInfo=wa,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Ea=class extends t{constructor(...e){super(...e),this.componentInfo=wa,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ta(this.ctx,e)}},Da=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},$={name:`table-header-cell`},Oa=class extends e{constructor(...e){super(...e),this.type=`tableHeaderCell`,this.componentInfo=$,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},ka=class extends t{constructor(...e){super(...e),this.componentInfo=$,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Oa(this.ctx,e)}},Aa=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},ja={name:`table-row`},Ma=class extends e{constructor(...e){super(...e),this.type=`tableRow`,this.componentInfo=ja,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Na=class extends t{constructor(...e){super(...e),this.componentInfo=ja,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ma(this.ctx,e)}},Pa=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},Fa={name:`table-sorting-button`},Ia=class extends e{constructor(...e){super(...e),this.type=`tableSortingButton`,this.componentInfo=Fa,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},La=class extends t{constructor(...e){super(...e),this.componentInfo=Fa,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ia(this.ctx,e)}},Ra=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},za={name:`tabs`},Ba=class extends e{constructor(...e){super(...e),this.type=`tabs`,this.componentInfo=za,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Va=class extends t{constructor(...e){super(...e),this.componentInfo=za,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ba(this.ctx,e)}},Ha=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Ua={name:`tag`},Wa=class extends e{constructor(...e){super(...e),this.type=`tag`,this.componentInfo=Ua,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.click=this.ctx.driver.wrapAction(S.bind(this,()=>this.base())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.remove=this.ctx.driver.wrapAction(S.bind(this,()=>this.dismissButton())),this.select=this.ctx.driver.wrapAction(B.bind(this,!0)),this.unselect=this.ctx.driver.wrapAction(B.bind(this,!1)),this.base=V.bind(this,`.base`),this.dismissButton=V.bind(this,`.dismiss-button`)}},Ga=class extends t{constructor(...e){super(...e),this.componentInfo=Ua,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Wa(this.ctx,e)}},Ka=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.notToBeDisabled=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:b},!1,`notToBeDisabled()`)),this.toBeDisabled=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:b},!0,`toBeDisabled()`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toBeSelected=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:y},!0,`toBeSelected()`)),this.toBeUnselected=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:y},!1,`toBeUnselected()`))}},qa={name:`tag-group`},Ja=class extends e{constructor(...e){super(...e),this.type=`tagGroup`,this.componentInfo=qa,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Ya=class extends t{constructor(...e){super(...e),this.componentInfo=qa,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Ja(this.ctx,e)}},Xa=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=(e,t)=>{throw Error(`Component does not have props.`)}}},Za={name:`text-area`},Qa=class extends e{constructor(...e){super(...e),this.type=`textArea`,this.componentInfo=Za,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clear=this.ctx.driver.wrapAction(w.bind(this,()=>this.control())),this.fill=this.ctx.driver.wrapAction(C.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.control=V.bind(this,`.control`)}},$a=class extends t{constructor(...e){super(...e),this.componentInfo=Za,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Qa(this.ctx,e)}},eo=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},to={name:`text-field`},no=class extends e{constructor(...e){super(...e),this.type=`textField`,this.componentInfo=to,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.control())),this.clear=this.ctx.driver.wrapAction(w.bind(this,()=>this.control())),this.fill=this.ctx.driver.wrapAction(C.bind(this,()=>this.control())),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.control=be.bind(this,`input[slot="_control"]`)}},ro=class extends t{constructor(...e){super(...e),this.componentInfo=to,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new no(this.ctx,e)}},io=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})")),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},ao={name:`time-picker`},oo=class extends e{constructor(...e){super(...e),this.type=`timePicker`,this.componentInfo=ao,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.clear=this.ctx.driver.wrapAction(F.bind(this)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator)),this.selectTime=this.ctx.driver.wrapAction(me.bind(this)),this.clearButton=H.bind(this,`#clear-button`),this.control=U.bind(this,`[data-vvd-component=text-field].control`),this.pickerButton=H.bind(this,`#picker-button`)}},so=class extends t{constructor(...e){super(...e),this.componentInfo=ao,this.byLabel=this.ctx.driver.wrapSelector(o.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new oo(this.ctx,e)}},co=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveValue=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:h},e,"toHaveValue(${value})")),this.toHaveVisibleError=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:f},e,"toHaveVisibleError(${value})"))}},lo={name:`toggletip`},uo=class extends e{constructor(...e){super(...e),this.type=`toggletip`,this.componentInfo=lo,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},fo=class extends t{constructor(...e){super(...e),this.componentInfo=lo,this.byHeadline=this.ctx.driver.wrapSelector(s.bind(this)),this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new uo(this.ctx,e)}},po=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeClosed=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!1,`toBeClosed()`)),this.toBeOpen=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!0,`toBeOpen()`))}},mo={name:`tooltip`},ho=class extends e{constructor(...e){super(...e),this.type=`tooltip`,this.componentInfo=mo,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},go=class extends t{constructor(...e){super(...e),this.componentInfo=mo,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this)),this.byText=this.ctx.driver.wrapSelector(c.bind(this))}wrap(e){return new ho(this.ctx,e)}},_o=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toBeClosed=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!1,`toBeClosed()`)),this.toBeOpen=this.ctx.driver.wrapExpect(()=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:m},!0,`toBeOpen()`))}},vo={name:`tree-item`},yo=class extends e{constructor(...e){super(...e),this.type=`treeItem`,this.componentInfo=vo,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},bo=class extends t{constructor(...e){super(...e),this.componentInfo=vo,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new yo(this.ctx,e)}},xo=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`)),this.toHaveIcon=this.ctx.driver.wrapExpect(e=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:x},e,"toHaveIcon(${value})"))}},So={name:`tree-view`},Co=class extends e{constructor(...e){super(...e),this.type=`treeView`,this.componentInfo=So,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},wo=class extends t{constructor(...e){super(...e),this.componentInfo=So,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Co(this.ctx,e)}},To=class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}},Eo={name:`video-player`},Do=class extends e{constructor(...e){super(...e),this.type=`videoPlayer`,this.componentInfo=Eo,this.blur=this.ctx.driver.wrapAction(O.bind(this,()=>this.locator)),this.focus=this.ctx.driver.wrapAction(D.bind(this,()=>this.locator)),this.hover=this.ctx.driver.wrapAction(k.bind(this,()=>this.locator))}},Oo=class extends t{constructor(...e){super(...e),this.componentInfo=Eo,this.byTestId=this.ctx.driver.wrapSelector(a.bind(this))}wrap(e){return new Do(this.ctx,e)}},ko={collection:r,accordion:we,accordionItem:De,actionGroup:Ae,alert:Ne,audioPlayer:Ie,avatar:ze,badge:He,banner:Ge,breadcrumb:Je,breadcrumbItem:Qe,button:nt,calendar:ot,calendarEvent:ut,card:mt,checkbox:vt,colorPicker:St,combobox:Et,contextualHelp:At,country:Pt,countryGroup:Rt,dataGrid:Ht,dataGridCell:Kt,dataGridRow:Xt,datePicker:en,dateRangePicker:an,dateTimePicker:ln,dialPad:pn,dialog:_n,divider:xn,emptyState:Tn,fab:kn,filePicker:Nn,flag:Ln,header:Vn,icon:Gn,kbdKey:Yn,kbdShortcut:$n,layout:rr,menu:sr,menuItem:dr,nav:hr,navDisclosure:yr,navItem:Cr,note:Dr,numberField:jr,option:Fr,pagination:zr,platformSwitch:Ur,popover:qr,progress:Zr,progressRing:ti,radio:ai,radioGroup:li,rangeSlider:pi,richTextEditor:_i,richTextView:xi,searchableSelect:Ti,select:ki,selectableBox:Ni,sideDrawer:Li,simpleColorPicker:Vi,slider:Gi,splitButton:Yi,status:$i,switch:ra,tab:sa,tabPanel:da,table:ha,tableBody:ya,tableCell:Ca,tableHead:Da,tableHeaderCell:Aa,tableRow:Pa,tableSortingButton:Ra,tabs:Ha,tag:Ka,tagGroup:Xa,textArea:eo,textField:io,timePicker:co,toggletip:po,tooltip:_o,treeItem:xo,treeView:To,videoPlayer:class{constructor(e,t){this.ctx=e,this.wrapper=t,this.toHaveProp=this.ctx.driver.wrapExpect((e,t)=>this.ctx.driver.expectEq({type:`eval`,el:this.wrapper.unwrap(),fn:(e,t)=>e[t],arg:e},t,`toHaveProp("${e}", ${t})`))}}},Ao=class{constructor(e){this.ctx=e,this.accordion=new Ce(this.ctx),this.accordionItem=new Ee(this.ctx),this.actionGroup=new ke(this.ctx),this.alert=new Me(this.ctx),this.audioPlayer=new Fe(this.ctx),this.avatar=new Re(this.ctx),this.badge=new Ve(this.ctx),this.banner=new We(this.ctx),this.breadcrumb=new qe(this.ctx),this.breadcrumbItem=new Ze(this.ctx),this.button=new tt(this.ctx),this.calendar=new at(this.ctx),this.calendarEvent=new lt(this.ctx),this.card=new pt(this.ctx),this.checkbox=new _t(this.ctx),this.colorPicker=new xt(this.ctx),this.combobox=new Tt(this.ctx),this.contextualHelp=new kt(this.ctx),this.country=new Nt(this.ctx),this.countryGroup=new Lt(this.ctx),this.dataGrid=new Vt(this.ctx),this.dataGridCell=new Gt(this.ctx),this.dataGridRow=new Yt(this.ctx),this.datePicker=new $t(this.ctx),this.dateRangePicker=new rn(this.ctx),this.dateTimePicker=new cn(this.ctx),this.dialPad=new fn(this.ctx),this.dialog=new gn(this.ctx),this.divider=new bn(this.ctx),this.emptyState=new wn(this.ctx),this.fab=new On(this.ctx),this.filePicker=new Mn(this.ctx),this.flag=new In(this.ctx),this.header=new Bn(this.ctx),this.icon=new Wn(this.ctx),this.kbdKey=new Jn(this.ctx),this.kbdShortcut=new Qn(this.ctx),this.layout=new nr(this.ctx),this.menu=new or(this.ctx),this.menuItem=new ur(this.ctx),this.nav=new mr(this.ctx),this.navDisclosure=new vr(this.ctx),this.navItem=new Sr(this.ctx),this.note=new Er(this.ctx),this.numberField=new Ar(this.ctx),this.option=new Pr(this.ctx),this.pagination=new Rr(this.ctx),this.platformSwitch=new Hr(this.ctx),this.popover=new Kr(this.ctx),this.progress=new Xr(this.ctx),this.progressRing=new ei(this.ctx),this.radio=new ii(this.ctx),this.radioGroup=new ci(this.ctx),this.rangeSlider=new fi(this.ctx),this.richTextEditor=new gi(this.ctx),this.richTextView=new bi(this.ctx),this.searchableSelect=new wi(this.ctx),this.select=new Oi(this.ctx),this.selectableBox=new Mi(this.ctx),this.sideDrawer=new Ii(this.ctx),this.simpleColorPicker=new Bi(this.ctx),this.slider=new Wi(this.ctx),this.splitButton=new Ji(this.ctx),this.status=new Qi(this.ctx),this.switch=new na(this.ctx),this.tab=new oa(this.ctx),this.tabPanel=new ua(this.ctx),this.table=new ma(this.ctx),this.tableBody=new va(this.ctx),this.tableCell=new Sa(this.ctx),this.tableHead=new Ea(this.ctx),this.tableHeaderCell=new ka(this.ctx),this.tableRow=new Na(this.ctx),this.tableSortingButton=new La(this.ctx),this.tabs=new Va(this.ctx),this.tag=new Ga(this.ctx),this.tagGroup=new Ya(this.ctx),this.textArea=new $a(this.ctx),this.textField=new ro(this.ctx),this.timePicker=new so(this.ctx),this.toggletip=new fo(this.ctx),this.tooltip=new go(this.ctx),this.treeItem=new bo(this.ctx),this.treeView=new wo(this.ctx),this.videoPlayer=new Oo(this.ctx)}expect(e){if(e.type in ko)return new ko[e.type](this.ctx,e);throw Error(`Unknown component type: ${e.type}`)}};Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return Ao}});
|