@baloise/ds-testing 19.9.5 → 19.10.1
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/add-custom-commands.esm.js +1 -1
- package/add-override-commands.esm.js +1 -1
- package/bal-input-stepper.command.esm.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +2 -2
- package/selectors.esm.js +1 -1
- package/src/add-custom-commands.d.ts +0 -34
- package/src/add-override-commands.d.ts +0 -9
- package/src/commands/custom/bal-accordion.command.d.ts +0 -1
- package/src/commands/custom/bal-accordion.types.d.ts +0 -15
- package/src/commands/custom/bal-field.command.d.ts +0 -1
- package/src/commands/custom/bal-field.types.d.ts +0 -11
- package/src/commands/custom/bal-hint.command.d.ts +0 -1
- package/src/commands/custom/bal-hint.types.d.ts +0 -15
- package/src/commands/custom/bal-input-stepper.command.d.ts +0 -1
- package/src/commands/custom/bal-input-stepper.types.d.ts +0 -15
- package/src/commands/custom/bal-modal.command.d.ts +0 -1
- package/src/commands/custom/bal-modal.types.d.ts +0 -24
- package/src/commands/custom/bal-pagination.command.d.ts +0 -1
- package/src/commands/custom/bal-pagination.types.d.ts +0 -23
- package/src/commands/custom/bal-popover.command.d.ts +0 -1
- package/src/commands/custom/bal-popover.types.d.ts +0 -27
- package/src/commands/custom/bal-popup.command.d.ts +0 -1
- package/src/commands/custom/bal-popup.types.d.ts +0 -15
- package/src/commands/custom/bal-select.command.d.ts +0 -1
- package/src/commands/custom/bal-select.types.d.ts +0 -19
- package/src/commands/custom/bal-snackbar.command.d.ts +0 -1
- package/src/commands/custom/bal-snackbar.types.d.ts +0 -11
- package/src/commands/custom/bal-steps.command.d.ts +0 -1
- package/src/commands/custom/bal-steps.types.d.ts +0 -27
- package/src/commands/custom/bal-tabs.command.d.ts +0 -1
- package/src/commands/custom/bal-tabs.types.d.ts +0 -31
- package/src/commands/custom/bal-toast.command.d.ts +0 -1
- package/src/commands/custom/bal-toast.types.d.ts +0 -11
- package/src/commands/custom/component.command.d.ts +0 -1
- package/src/commands/custom/component.types.d.ts +0 -47
- package/src/commands/custom/get.command.d.ts +0 -1
- package/src/commands/custom/get.types.d.ts +0 -43
- package/src/commands/custom/platform.command.d.ts +0 -1
- package/src/commands/custom/platform.types.d.ts +0 -11
- package/src/commands/custom/visit.command.d.ts +0 -1
- package/src/commands/custom/visit.types.d.ts +0 -10
- package/src/commands/helpers.d.ts +0 -49
- package/src/commands/overrides/blur.command.d.ts +0 -1
- package/src/commands/overrides/check.command.d.ts +0 -1
- package/src/commands/overrides/clear.command.d.ts +0 -1
- package/src/commands/overrides/click.command.d.ts +0 -1
- package/src/commands/overrides/focus.command.d.ts +0 -1
- package/src/commands/overrides/select.command.d.ts +0 -1
- package/src/commands/overrides/should.command.d.ts +0 -1
- package/src/commands/overrides/type.command.d.ts +0 -1
- package/src/commands/overrides/uncheck.command.d.ts +0 -1
- package/src/index.d.ts +0 -21
- package/src/selectors/index.d.ts +0 -354
- package/src/selectors/selectors.util.d.ts +0 -4
- package/src/selectors.d.ts +0 -1
- package/src/viewports.d.ts +0 -7
- /package/{selectors.esm2.js → selectors2.esm.js} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { s as selectors, p as parseDataTestID, a as byDataSelectors } from './
|
|
1
|
+
import { s as selectors, p as parseDataTestID, a as byDataSelectors } from './selectors2.esm.js';
|
|
2
2
|
import { f as isAccordion, g as isButton, h as isCheckbox, j as isInput, k as isInputDate, m as isNumberInput, n as isTextarea, o as isSlider, p as isRadio, q as isSelect, i as isDropDown, r as wrapCommand, w as wrapOptions, s as isTag, u as isHint, l as log, v as hasClass, x as hasRole, y as isLabel, z as isInputStepper, A as isTabs, B as hasTestId, C as isSteps } from './helpers.esm.js';
|
|
3
3
|
|
|
4
4
|
Cypress.Commands.overwrite('blur', function(originalFn, element, options) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as byTestId, s as selectors } from './
|
|
1
|
+
import { b as byTestId, s as selectors } from './selectors2.esm.js';
|
|
2
2
|
import { w as wrapOptions, l as log, c as checkAriaLabel, a as waitAfterFramePaint, b as waitAfterIdleCallback, d as areComponentsReady, e as deepReady, i as isDropDown } from './helpers.esm.js';
|
|
3
3
|
import { waitAfterLargestContentfulPaintCallback, waitOnLoadEventCallback } from '@baloise/ds-core';
|
|
4
4
|
import { balViewport } from './viewports.esm.js';
|
package/index.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { b as byTestId, d as dataTestSelector, s as selectors } from './
|
|
1
|
+
export { b as byTestId, d as dataTestSelector, s as selectors } from './selectors2.esm.js';
|
|
2
2
|
export { balViewport } from './viewports.esm.js';
|
|
3
3
|
export { t as testOnPlatforms } from './helpers.esm.js';
|
|
4
4
|
import './bal-input-stepper.command.esm.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baloise/ds-testing",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.10.1",
|
|
4
4
|
"description": "The Baloise Design-System is an open source project for styling awesome web applications that follow the Baloise corporate styling guidelines.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"homepage": "https://design.baloise.dev",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@baloise/ds-core": "19.
|
|
15
|
+
"@baloise/ds-core": "19.10.1"
|
|
16
16
|
},
|
|
17
17
|
"module": "./index.esm.js",
|
|
18
18
|
"type": "module",
|
package/selectors.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { b as byTestId, d as dataTestSelector, s as selectors } from './
|
|
1
|
+
export { b as byTestId, d as dataTestSelector, s as selectors } from './selectors2.esm.js';
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import './commands/custom/get.types';
|
|
2
|
-
import './commands/custom/component.types';
|
|
3
|
-
import './commands/custom/platform.types';
|
|
4
|
-
import './commands/custom/visit.types';
|
|
5
|
-
import './commands/custom/get.command';
|
|
6
|
-
import './commands/custom/component.command';
|
|
7
|
-
import './commands/custom/platform.command';
|
|
8
|
-
import './commands/custom/visit.command';
|
|
9
|
-
import './commands/custom/bal-accordion.types';
|
|
10
|
-
import './commands/custom/bal-popover.types';
|
|
11
|
-
import './commands/custom/bal-popup.types';
|
|
12
|
-
import './commands/custom/bal-hint.types';
|
|
13
|
-
import './commands/custom/bal-modal.types';
|
|
14
|
-
import './commands/custom/bal-pagination.types';
|
|
15
|
-
import './commands/custom/bal-select.types';
|
|
16
|
-
import './commands/custom/bal-snackbar.types';
|
|
17
|
-
import './commands/custom/bal-steps.types';
|
|
18
|
-
import './commands/custom/bal-tabs.types';
|
|
19
|
-
import './commands/custom/bal-toast.types';
|
|
20
|
-
import './commands/custom/bal-field.types';
|
|
21
|
-
import './commands/custom/bal-input-stepper.types';
|
|
22
|
-
import './commands/custom/bal-accordion.command';
|
|
23
|
-
import './commands/custom/bal-popover.command';
|
|
24
|
-
import './commands/custom/bal-popup.command';
|
|
25
|
-
import './commands/custom/bal-hint.command';
|
|
26
|
-
import './commands/custom/bal-modal.command';
|
|
27
|
-
import './commands/custom/bal-pagination.command';
|
|
28
|
-
import './commands/custom/bal-select.command';
|
|
29
|
-
import './commands/custom/bal-snackbar.command';
|
|
30
|
-
import './commands/custom/bal-steps.command';
|
|
31
|
-
import './commands/custom/bal-tabs.command';
|
|
32
|
-
import './commands/custom/bal-toast.command';
|
|
33
|
-
import './commands/custom/bal-field.command';
|
|
34
|
-
import './commands/custom/bal-input-stepper.command';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import './commands/overrides/blur.command';
|
|
2
|
-
import './commands/overrides/check.command';
|
|
3
|
-
import './commands/overrides/uncheck.command';
|
|
4
|
-
import './commands/overrides/clear.command';
|
|
5
|
-
import './commands/overrides/click.command';
|
|
6
|
-
import './commands/overrides/focus.command';
|
|
7
|
-
import './commands/overrides/should.command';
|
|
8
|
-
import './commands/overrides/select.command';
|
|
9
|
-
import './commands/overrides/type.command';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Asserts if the accordion is open.
|
|
8
|
-
*/
|
|
9
|
-
balAccordionIsOpen(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Asserts if the accordion is closed.
|
|
12
|
-
*/
|
|
13
|
-
balAccordionIsClosed(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Returns the hint component of the label.
|
|
8
|
-
*/
|
|
9
|
-
balFieldFindHint(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Returns the hint content overlay with the title, content and the close button.
|
|
8
|
-
*/
|
|
9
|
-
balHintFindOverlay(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Returns the close button of the overlay content.
|
|
12
|
-
*/
|
|
13
|
-
balHintFindCloseButton(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Increases the value of the control
|
|
8
|
-
*/
|
|
9
|
-
balInputStepperIncrease(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Decreases the value of the control
|
|
12
|
-
*/
|
|
13
|
-
balInputStepperDecrease(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Finds the open modal and returns it.
|
|
8
|
-
*/
|
|
9
|
-
balModalFindOpen(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Assert if the modal is open.
|
|
12
|
-
*/
|
|
13
|
-
balModalIsOpen(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
/**
|
|
15
|
-
* Assert if the modal is closed. Only works for modals,
|
|
16
|
-
* which are not created with the modal service.
|
|
17
|
-
*/
|
|
18
|
-
balModalIsClosed(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
19
|
-
/**
|
|
20
|
-
* Closes the selected modal.
|
|
21
|
-
*/
|
|
22
|
-
balModalClose(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Returns all the page buttons.
|
|
8
|
-
*/
|
|
9
|
-
balPaginationFindPages(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Returns the current listed page button.
|
|
12
|
-
*/
|
|
13
|
-
balPaginationFindCurrentPage(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
/**
|
|
15
|
-
* Returns the next button to navigate to next page.
|
|
16
|
-
*/
|
|
17
|
-
balPaginationFindNextButton(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
18
|
-
/**
|
|
19
|
-
* Returns the previous button to navigate to previous page.
|
|
20
|
-
*/
|
|
21
|
-
balPaginationFindPreviousButton(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Opens and closes the popover.
|
|
8
|
-
*/
|
|
9
|
-
balPopoverToggle(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Asserts if the popover is open.
|
|
12
|
-
*/
|
|
13
|
-
balPopoverIsOpen(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
/**
|
|
15
|
-
* Asserts if the popover is closed.
|
|
16
|
-
*/
|
|
17
|
-
balPopoverIsClosed(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
18
|
-
/**
|
|
19
|
-
* Asserts if the trigger button contains the given content.
|
|
20
|
-
*/
|
|
21
|
-
balPopoverTriggerContains(content: string | number | RegExp, options?: Partial<Loggable & Timeoutable & CaseMatchable & Shadow>): Chainable<JQuery>;
|
|
22
|
-
/**
|
|
23
|
-
* Asserts if the popover menu contains the given content.
|
|
24
|
-
*/
|
|
25
|
-
balPopoverContentContains(content: string | number | RegExp, options?: Partial<Loggable & Timeoutable & CaseMatchable & Shadow>): Chainable<JQuery>;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Asserts if the popover is open.
|
|
8
|
-
*/
|
|
9
|
-
balPopupIsOpen(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Asserts if the popover is closed.
|
|
12
|
-
*/
|
|
13
|
-
balPopupIsClosed(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Returns the select options.
|
|
8
|
-
*/
|
|
9
|
-
balSelectFindOptions(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Returns the closable select chips (only with multiselect).
|
|
12
|
-
*/
|
|
13
|
-
balSelectFindChips(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
/**
|
|
15
|
-
* Asserts that the select has the given options.
|
|
16
|
-
*/
|
|
17
|
-
balSelectShouldHaveOptions(labels: string[], dataType?: 'label' | 'value', options?: Partial<Loggable>): Chainable<JQuery>;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Returns the visible snackbars.
|
|
8
|
-
*/
|
|
9
|
-
balSnackbarFind(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Returns the tab items.
|
|
8
|
-
*/
|
|
9
|
-
balStepsFindItems(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Returns the label of the tab item.
|
|
12
|
-
*/
|
|
13
|
-
balStepsFindLabel(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
/**
|
|
15
|
-
* Assert that the tab has the given item.
|
|
16
|
-
*/
|
|
17
|
-
balStepsShouldHaveItems(labels: string[], dataType?: 'label' | 'value', options?: Partial<Loggable>): Chainable<JQuery>;
|
|
18
|
-
/**
|
|
19
|
-
* Assert that the tab item has the given state.
|
|
20
|
-
*/
|
|
21
|
-
balStepsItemShouldHaveState(state: 'done' | 'failed' | 'active' | 'disabled', options?: Partial<Loggable>): Chainable<JQuery>;
|
|
22
|
-
/**
|
|
23
|
-
* Assert that the tab item has not the given state.
|
|
24
|
-
*/
|
|
25
|
-
balStepsItemShouldNotHaveState(state: 'done' | 'failed' | 'active' | 'disabled', options?: Partial<Loggable>): Chainable<JQuery>;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Returns the action button element.
|
|
8
|
-
*/
|
|
9
|
-
balTabsFindActionButton(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Returns the tab items.
|
|
12
|
-
*/
|
|
13
|
-
balTabsFindItems(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
14
|
-
/**
|
|
15
|
-
* Returns the label of the tab item.
|
|
16
|
-
*/
|
|
17
|
-
balTabsFindLabel(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
18
|
-
/**
|
|
19
|
-
* Assert that the tab has the given item.
|
|
20
|
-
*/
|
|
21
|
-
balTabsShouldHaveItems(labels: string[], dataType?: 'label' | 'value', options?: Partial<Loggable>): Chainable<JQuery>;
|
|
22
|
-
/**
|
|
23
|
-
* Assert that the tab item has the given state.
|
|
24
|
-
*/
|
|
25
|
-
balTabItemShouldHaveState(state: 'done' | 'failed' | 'active' | 'disabled', options?: Partial<Loggable>): Chainable<JQuery>;
|
|
26
|
-
/**
|
|
27
|
-
* Assert that the tab item is active or not.
|
|
28
|
-
*/
|
|
29
|
-
balTabItemShouldBeActive(active?: boolean, options?: Partial<Loggable>): Chainable<JQuery>;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Returns the visible toasts.
|
|
8
|
-
*/
|
|
9
|
-
balToastFind(options?: Partial<Loggable>): Chainable<JQuery>;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface Chainable {
|
|
6
|
-
/**
|
|
7
|
-
* Disabled all animations for the Design System components.
|
|
8
|
-
*/
|
|
9
|
-
disableAnimation(): Chainable<JQuery>;
|
|
10
|
-
/**
|
|
11
|
-
* Disabled all logs for the Design System components.
|
|
12
|
-
*/
|
|
13
|
-
disableLogger(): Chainable<JQuery>;
|
|
14
|
-
/**
|
|
15
|
-
* Waits until the component is fully loaded.
|
|
16
|
-
*/
|
|
17
|
-
waitForComponents(options?: Partial<Loggable & Timeoutable>): Chainable<JQuery>;
|
|
18
|
-
/**
|
|
19
|
-
* Gets component and waits until it is ready
|
|
20
|
-
*/
|
|
21
|
-
getComponent(selector: string, options?: Partial<Loggable>): Chainable<JQuery>;
|
|
22
|
-
/**
|
|
23
|
-
* Wraps component and waits until it is ready.
|
|
24
|
-
*/
|
|
25
|
-
wrapComponent(element: any, options?: Partial<Loggable & Timeoutable>): Chainable<JQuery>;
|
|
26
|
-
/**
|
|
27
|
-
* Waits until the Design System is fully loaded and rendered
|
|
28
|
-
*/
|
|
29
|
-
waitForDesignSystem(): Chainable<JQuery>;
|
|
30
|
-
/**
|
|
31
|
-
* Waits until the browser goes into idle mode
|
|
32
|
-
*/
|
|
33
|
-
waitAfterLastCallback(): Chainable<JQuery>;
|
|
34
|
-
/**
|
|
35
|
-
* Waits until the browser goes into idle mode
|
|
36
|
-
*/
|
|
37
|
-
waitAfterIdleCallback(): Chainable<JQuery>;
|
|
38
|
-
/**
|
|
39
|
-
* Waits until the browser finished rendering
|
|
40
|
-
*/
|
|
41
|
-
waitAfterFramePaint(): Chainable<JQuery>;
|
|
42
|
-
/**
|
|
43
|
-
* Waits until the browser finished rendering
|
|
44
|
-
*/
|
|
45
|
-
waitForBrowser(): Chainable<JQuery>;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
/// <reference types="cypress" />
|
|
4
|
-
declare namespace Cypress {
|
|
5
|
-
interface GetByRoleOptions {
|
|
6
|
-
name?: string;
|
|
7
|
-
hidden?: boolean;
|
|
8
|
-
}
|
|
9
|
-
interface Chainable {
|
|
10
|
-
/**
|
|
11
|
-
* Gets the element by data-testid or data-test.
|
|
12
|
-
*/
|
|
13
|
-
getByTestId(testId: string, options?: Partial<Loggable & Timeoutable & Withinable & Shadow>): Chainable<JQuery>;
|
|
14
|
-
/**
|
|
15
|
-
* Gets the control elements to the given subject
|
|
16
|
-
*/
|
|
17
|
-
getControl(labelText: string, options?: Partial<Loggable & Timeoutable & Withinable & Shadow>): Chainable<void>;
|
|
18
|
-
/**
|
|
19
|
-
* Gets the elements who describes the subject
|
|
20
|
-
*/
|
|
21
|
-
getDescribingElement(options?: Partial<Loggable & Timeoutable & Withinable & Shadow>): Chainable<void>;
|
|
22
|
-
/**
|
|
23
|
-
* Asserts if the form element is invalid
|
|
24
|
-
*/
|
|
25
|
-
shouldBeInvalid(options?: Partial<Loggable & Timeoutable & Withinable & Shadow>): Chainable<void>;
|
|
26
|
-
/**
|
|
27
|
-
* Asserts if the form element is valid
|
|
28
|
-
*/
|
|
29
|
-
shouldBeValid(options?: Partial<Loggable & Timeoutable & Withinable & Shadow>): Chainable<void>;
|
|
30
|
-
/**
|
|
31
|
-
* Gets a element by the label
|
|
32
|
-
*/
|
|
33
|
-
getByLabelText(labelText: string, options?: Partial<Loggable & Timeoutable & Withinable & Shadow>): Chainable<void>;
|
|
34
|
-
/**
|
|
35
|
-
* Gets a element by the placeholder
|
|
36
|
-
*/
|
|
37
|
-
getByPlaceholder(placeholder: string, options?: Partial<Loggable & Timeoutable & Withinable & Shadow>): Chainable<JQuery>;
|
|
38
|
-
/**
|
|
39
|
-
* Gets a element by the role
|
|
40
|
-
*/
|
|
41
|
-
getByRole(role: 'button' | 'label' | 'option' | 'input', options: Partial<GetByRoleOptions & Loggable & Timeoutable & Withinable & Shadow>): Chainable<JQuery>;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
declare namespace Cypress {
|
|
3
|
-
interface Chainable {
|
|
4
|
-
/**
|
|
5
|
-
* Open an application with the Design System and waits
|
|
6
|
-
* until the Design System has fully loaded.
|
|
7
|
-
*/
|
|
8
|
-
visitBalApp(url: string, options?: Partial<VisitOptions>): Chainable<AUTWindow>;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
/// <reference types="cypress" />
|
|
3
|
-
export type Platforms = 'mobile' | 'tablet' | 'touch' | 'desktop' | 'highDefinition' | 'widescreen' | 'fullhd';
|
|
4
|
-
export declare const deepReady: (el: any | undefined, full?: boolean) => Promise<void>;
|
|
5
|
-
export declare const rIC: (callback: () => void, timeout?: number) => void;
|
|
6
|
-
export declare const waitAfterFramePaint: () => Promise<unknown>;
|
|
7
|
-
export declare const waitAfterIdleCallback: (timeout?: number) => Promise<unknown>;
|
|
8
|
-
export declare const raf: (h: any) => any;
|
|
9
|
-
export declare const runHighPrioritizedTask: (callback: (value: unknown) => void) => void;
|
|
10
|
-
/**
|
|
11
|
-
* Helper fn to identify the element/component
|
|
12
|
-
*/
|
|
13
|
-
export type isElementType = (el: Cypress.Chainable<JQuery>) => boolean;
|
|
14
|
-
export declare const isElement: (el: Cypress.Chainable<JQuery>, name: string) => boolean;
|
|
15
|
-
export declare const hasClass: (el: Cypress.Chainable<JQuery>, name: string) => boolean;
|
|
16
|
-
export declare const hasRole: (el: Cypress.Chainable<JQuery>, role: string) => boolean;
|
|
17
|
-
export declare const hasTestId: (el: Cypress.Chainable<JQuery>, testId: string) => boolean;
|
|
18
|
-
export declare const isLabel: isElementType;
|
|
19
|
-
export declare const isAccordion: isElementType;
|
|
20
|
-
export declare const isButton: isElementType;
|
|
21
|
-
export declare const isCheckbox: isElementType;
|
|
22
|
-
export declare const isNumberInput: isElementType;
|
|
23
|
-
export declare const isModal: isElementType;
|
|
24
|
-
export declare const isRadioGroup: isElementType;
|
|
25
|
-
export declare const isRadio: isElementType;
|
|
26
|
-
export declare const isSelect: isElementType;
|
|
27
|
-
export declare const isTag: isElementType;
|
|
28
|
-
export declare const isTabs: isElementType;
|
|
29
|
-
export declare const isSteps: isElementType;
|
|
30
|
-
export declare const isDropDown: isElementType;
|
|
31
|
-
export declare const isSlider: isElementType;
|
|
32
|
-
export declare const isHint: isElementType;
|
|
33
|
-
export declare const isTextarea: isElementType;
|
|
34
|
-
export declare const isCardTitle: isElementType;
|
|
35
|
-
export declare const isHeading: isElementType;
|
|
36
|
-
export declare const isText: isElementType;
|
|
37
|
-
export declare const isInputStepper: isElementType;
|
|
38
|
-
export declare const isInput: isElementType;
|
|
39
|
-
export declare const isInputDate: isElementType;
|
|
40
|
-
/**
|
|
41
|
-
* Executes a command on a child element and wraps back to the main element/component
|
|
42
|
-
*/
|
|
43
|
-
export declare const wrapOptions: (options: any) => any;
|
|
44
|
-
export declare const wrapCommand: (displayName: string, element: Cypress.Chainable<JQuery>, message: any, fn: ($el: any) => Cypress.Chainable<JQuery> | void) => (selector: string) => Cypress.Chainable<JQuery<HTMLElement>>;
|
|
45
|
-
export declare const shouldLog: (options?: Partial<Cypress.Loggable>) => boolean;
|
|
46
|
-
export declare const log: (displayName: string, message: any, $el: any, options?: Partial<Cypress.Loggable>) => any;
|
|
47
|
-
export declare const areComponentsReady: ($el: any) => Promise<void[]>;
|
|
48
|
-
export declare const testOnPlatforms: (platforms: Platforms[], fn: (platform: Platforms) => Promise<void> | void) => void;
|
|
49
|
-
export declare function checkAriaLabel(element: HTMLElement, label: string | undefined | null): boolean;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/src/index.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Selector utilities
|
|
3
|
-
*/
|
|
4
|
-
export * from './selectors';
|
|
5
|
-
/**
|
|
6
|
-
* Viewports sizes
|
|
7
|
-
*/
|
|
8
|
-
export * from './viewports';
|
|
9
|
-
/**
|
|
10
|
-
* Helpers
|
|
11
|
-
*/
|
|
12
|
-
export type { Platforms } from './commands/helpers';
|
|
13
|
-
export { testOnPlatforms } from './commands/helpers';
|
|
14
|
-
/**
|
|
15
|
-
* Custom Commands
|
|
16
|
-
*/
|
|
17
|
-
import './add-custom-commands';
|
|
18
|
-
/**
|
|
19
|
-
* Override Commands
|
|
20
|
-
*/
|
|
21
|
-
import './add-override-commands';
|
package/src/selectors/index.d.ts
DELETED
|
@@ -1,354 +0,0 @@
|
|
|
1
|
-
export { byTestId, dataTestSelector, parseDataTestID } from './selectors.util';
|
|
2
|
-
/**
|
|
3
|
-
* Selectors
|
|
4
|
-
*/
|
|
5
|
-
export declare const selectors: {
|
|
6
|
-
accordion: {
|
|
7
|
-
/**
|
|
8
|
-
* The trigger button, which shows and hides the content / details.
|
|
9
|
-
*/
|
|
10
|
-
trigger: string;
|
|
11
|
-
/**
|
|
12
|
-
* The content or the hidden part of the accordion.
|
|
13
|
-
*/
|
|
14
|
-
details: string;
|
|
15
|
-
/**
|
|
16
|
-
* The header or visible part of the accordion
|
|
17
|
-
*/
|
|
18
|
-
summary: string;
|
|
19
|
-
};
|
|
20
|
-
badge: {
|
|
21
|
-
/**
|
|
22
|
-
* Badge label.
|
|
23
|
-
*/
|
|
24
|
-
label: string;
|
|
25
|
-
};
|
|
26
|
-
button: {
|
|
27
|
-
/**
|
|
28
|
-
* Native button element.
|
|
29
|
-
*/
|
|
30
|
-
native: string;
|
|
31
|
-
/**
|
|
32
|
-
* Button label.
|
|
33
|
-
*/
|
|
34
|
-
label: string;
|
|
35
|
-
};
|
|
36
|
-
carousel: {
|
|
37
|
-
/**
|
|
38
|
-
* Pagination left control.
|
|
39
|
-
*/
|
|
40
|
-
paginationPrevious: string;
|
|
41
|
-
/**
|
|
42
|
-
* Pagination right control.
|
|
43
|
-
*/
|
|
44
|
-
paginationNext: string;
|
|
45
|
-
/**
|
|
46
|
-
* Carousel right control.
|
|
47
|
-
*/
|
|
48
|
-
carouselControlPrevious: string;
|
|
49
|
-
/**
|
|
50
|
-
* Carousel left control.
|
|
51
|
-
*/
|
|
52
|
-
carouselControlNext: string;
|
|
53
|
-
};
|
|
54
|
-
close: {
|
|
55
|
-
/**
|
|
56
|
-
* The trigger button.
|
|
57
|
-
*/
|
|
58
|
-
button: string;
|
|
59
|
-
};
|
|
60
|
-
data: {
|
|
61
|
-
/**
|
|
62
|
-
* Editable button.
|
|
63
|
-
*/
|
|
64
|
-
editable: string;
|
|
65
|
-
};
|
|
66
|
-
footer: {
|
|
67
|
-
/**
|
|
68
|
-
* Language select element.
|
|
69
|
-
*/
|
|
70
|
-
language: string;
|
|
71
|
-
};
|
|
72
|
-
heading: {
|
|
73
|
-
/**
|
|
74
|
-
* Native h1 element.
|
|
75
|
-
*/
|
|
76
|
-
native: string;
|
|
77
|
-
};
|
|
78
|
-
notification: {
|
|
79
|
-
/**
|
|
80
|
-
* Notification content element.
|
|
81
|
-
*/
|
|
82
|
-
content: string;
|
|
83
|
-
};
|
|
84
|
-
pagination: {
|
|
85
|
-
/**
|
|
86
|
-
* Pagination left control.
|
|
87
|
-
*/
|
|
88
|
-
previous: string;
|
|
89
|
-
/**
|
|
90
|
-
* Pagination right control.
|
|
91
|
-
*/
|
|
92
|
-
next: string;
|
|
93
|
-
/**
|
|
94
|
-
* Pagination ul list.
|
|
95
|
-
*/
|
|
96
|
-
list: string;
|
|
97
|
-
/**
|
|
98
|
-
* The number of the page.
|
|
99
|
-
*/
|
|
100
|
-
pageNumber: string;
|
|
101
|
-
/**
|
|
102
|
-
* bal-button of the number of the page..
|
|
103
|
-
*/
|
|
104
|
-
pages: string;
|
|
105
|
-
/**
|
|
106
|
-
* The native button of the number of the page.
|
|
107
|
-
*/
|
|
108
|
-
button: string;
|
|
109
|
-
};
|
|
110
|
-
tag: {
|
|
111
|
-
/**
|
|
112
|
-
* Tag label..
|
|
113
|
-
*/
|
|
114
|
-
label: string;
|
|
115
|
-
/**
|
|
116
|
-
* Close button.
|
|
117
|
-
*/
|
|
118
|
-
close: string;
|
|
119
|
-
};
|
|
120
|
-
text: {
|
|
121
|
-
/**
|
|
122
|
-
* Native p element.
|
|
123
|
-
*/
|
|
124
|
-
native: string;
|
|
125
|
-
};
|
|
126
|
-
checkbox: {
|
|
127
|
-
/**
|
|
128
|
-
* Native input element.
|
|
129
|
-
*/
|
|
130
|
-
input: string;
|
|
131
|
-
/**
|
|
132
|
-
* Label element.
|
|
133
|
-
*/
|
|
134
|
-
label: string;
|
|
135
|
-
/**
|
|
136
|
-
* Label span element.
|
|
137
|
-
*/
|
|
138
|
-
text: string;
|
|
139
|
-
};
|
|
140
|
-
field: {
|
|
141
|
-
/**
|
|
142
|
-
* Hint element.
|
|
143
|
-
*/
|
|
144
|
-
hint: string;
|
|
145
|
-
};
|
|
146
|
-
fileUpload: {
|
|
147
|
-
/**
|
|
148
|
-
* Native input element.
|
|
149
|
-
*/
|
|
150
|
-
input: string;
|
|
151
|
-
/**
|
|
152
|
-
* Native span element.
|
|
153
|
-
*/
|
|
154
|
-
label: string;
|
|
155
|
-
};
|
|
156
|
-
slider: {
|
|
157
|
-
/**
|
|
158
|
-
* Native input element.
|
|
159
|
-
*/
|
|
160
|
-
native: string;
|
|
161
|
-
};
|
|
162
|
-
inputStepper: {
|
|
163
|
-
/**
|
|
164
|
-
* Decrease button.
|
|
165
|
-
*/
|
|
166
|
-
decrease: string;
|
|
167
|
-
/**
|
|
168
|
-
* Increase button.
|
|
169
|
-
*/
|
|
170
|
-
increase: string;
|
|
171
|
-
/**
|
|
172
|
-
* Native input element.
|
|
173
|
-
*/
|
|
174
|
-
native: string;
|
|
175
|
-
/**
|
|
176
|
-
* Text element.
|
|
177
|
-
*/
|
|
178
|
-
text: string;
|
|
179
|
-
};
|
|
180
|
-
input: {
|
|
181
|
-
/**
|
|
182
|
-
* Native input element.
|
|
183
|
-
*/
|
|
184
|
-
native: string;
|
|
185
|
-
};
|
|
186
|
-
dateInput: {
|
|
187
|
-
/**
|
|
188
|
-
* Native input element.
|
|
189
|
-
*/
|
|
190
|
-
native: string;
|
|
191
|
-
};
|
|
192
|
-
numberInput: {
|
|
193
|
-
/**
|
|
194
|
-
* Native input element.
|
|
195
|
-
*/
|
|
196
|
-
native: string;
|
|
197
|
-
};
|
|
198
|
-
radio: {
|
|
199
|
-
/**
|
|
200
|
-
* Native input element.
|
|
201
|
-
*/
|
|
202
|
-
input: string;
|
|
203
|
-
/**
|
|
204
|
-
* Native label element.
|
|
205
|
-
*/
|
|
206
|
-
label: string;
|
|
207
|
-
/**
|
|
208
|
-
* Native span element.
|
|
209
|
-
*/
|
|
210
|
-
text: string;
|
|
211
|
-
};
|
|
212
|
-
select: {
|
|
213
|
-
/**
|
|
214
|
-
* Native input element.
|
|
215
|
-
*/
|
|
216
|
-
input: string;
|
|
217
|
-
/**
|
|
218
|
-
* Select option.
|
|
219
|
-
*/
|
|
220
|
-
options: string;
|
|
221
|
-
/**
|
|
222
|
-
* Multi select tag .
|
|
223
|
-
*/
|
|
224
|
-
chips: string;
|
|
225
|
-
};
|
|
226
|
-
dropdown: {
|
|
227
|
-
/**
|
|
228
|
-
* Native input element.
|
|
229
|
-
*/
|
|
230
|
-
input: string;
|
|
231
|
-
/**
|
|
232
|
-
* Select option.
|
|
233
|
-
*/
|
|
234
|
-
options: string;
|
|
235
|
-
/**
|
|
236
|
-
* Trigger to open and close the popup.
|
|
237
|
-
*/
|
|
238
|
-
trigger: string;
|
|
239
|
-
/**
|
|
240
|
-
* Multi select tag .
|
|
241
|
-
*/
|
|
242
|
-
chips: string;
|
|
243
|
-
};
|
|
244
|
-
popover: {
|
|
245
|
-
/**
|
|
246
|
-
* Popover trigger.
|
|
247
|
-
*/
|
|
248
|
-
trigger: string;
|
|
249
|
-
/**
|
|
250
|
-
* Popover content element.
|
|
251
|
-
*/
|
|
252
|
-
content: string;
|
|
253
|
-
};
|
|
254
|
-
popup: {
|
|
255
|
-
/**
|
|
256
|
-
* Popup trigger.
|
|
257
|
-
*/
|
|
258
|
-
trigger: string;
|
|
259
|
-
/**
|
|
260
|
-
* Popup content element.
|
|
261
|
-
*/
|
|
262
|
-
content: string;
|
|
263
|
-
/**
|
|
264
|
-
* Popup close button in the head.
|
|
265
|
-
*/
|
|
266
|
-
close: string;
|
|
267
|
-
/**
|
|
268
|
-
* Popup label / heading element.
|
|
269
|
-
*/
|
|
270
|
-
label: string;
|
|
271
|
-
};
|
|
272
|
-
textarea: {
|
|
273
|
-
/**
|
|
274
|
-
* Native input element.
|
|
275
|
-
*/
|
|
276
|
-
native: string;
|
|
277
|
-
};
|
|
278
|
-
modal: {
|
|
279
|
-
/**
|
|
280
|
-
* Modal element.
|
|
281
|
-
*/
|
|
282
|
-
main: string;
|
|
283
|
-
};
|
|
284
|
-
steps: {
|
|
285
|
-
/**
|
|
286
|
-
* Step option
|
|
287
|
-
*/
|
|
288
|
-
option: string;
|
|
289
|
-
/**
|
|
290
|
-
* Step option label
|
|
291
|
-
*/
|
|
292
|
-
optionLabel: string;
|
|
293
|
-
};
|
|
294
|
-
tabs: {
|
|
295
|
-
/**
|
|
296
|
-
* Tab item.
|
|
297
|
-
*/
|
|
298
|
-
item: string;
|
|
299
|
-
/**
|
|
300
|
-
* Tab item label.
|
|
301
|
-
*/
|
|
302
|
-
itemLabel: string;
|
|
303
|
-
};
|
|
304
|
-
toast: {
|
|
305
|
-
/**
|
|
306
|
-
* Toast element.
|
|
307
|
-
*/
|
|
308
|
-
main: string;
|
|
309
|
-
/**
|
|
310
|
-
* Toast label element.
|
|
311
|
-
*/
|
|
312
|
-
label: string;
|
|
313
|
-
/**
|
|
314
|
-
* Toast close element.
|
|
315
|
-
*/
|
|
316
|
-
close: string;
|
|
317
|
-
};
|
|
318
|
-
snackbar: {
|
|
319
|
-
/**
|
|
320
|
-
* Snackbar element.
|
|
321
|
-
*/
|
|
322
|
-
main: string;
|
|
323
|
-
/**
|
|
324
|
-
* Snackbar heading element.
|
|
325
|
-
*/
|
|
326
|
-
heading: string;
|
|
327
|
-
/**
|
|
328
|
-
* Snackbar label element.
|
|
329
|
-
*/
|
|
330
|
-
label: string;
|
|
331
|
-
/**
|
|
332
|
-
* Snackbar close element.
|
|
333
|
-
*/
|
|
334
|
-
close: string;
|
|
335
|
-
/**
|
|
336
|
-
* Snackbar action element.
|
|
337
|
-
*/
|
|
338
|
-
action: string;
|
|
339
|
-
};
|
|
340
|
-
hint: {
|
|
341
|
-
/**
|
|
342
|
-
* Hint trigger element.
|
|
343
|
-
*/
|
|
344
|
-
trigger: string;
|
|
345
|
-
/**
|
|
346
|
-
* Hint content element.
|
|
347
|
-
*/
|
|
348
|
-
content: string;
|
|
349
|
-
/**
|
|
350
|
-
* Hint close element.
|
|
351
|
-
*/
|
|
352
|
-
close: string;
|
|
353
|
-
};
|
|
354
|
-
};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export declare const byTestId: (testId: string) => string;
|
|
2
|
-
export declare const dataTestSelector: (testId: string) => string;
|
|
3
|
-
export declare const parseDataTestID: (testId: string) => string;
|
|
4
|
-
export declare const byDataSelectors: (dateTestId: string, dataSelectors: string[], value: string) => string;
|
package/src/selectors.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { byTestId, dataTestSelector, selectors } from './selectors/index';
|
package/src/viewports.d.ts
DELETED
|
File without changes
|