@rnw-community/wdio 0.26.1 → 0.26.2
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/component/create-component/create-component.d.ts +2 -1
- package/dist/component/create-component/create-component.d.ts.map +1 -1
- package/dist/component/create-component/create-component.js.map +1 -1
- package/dist/component/create-rooted-component/create-rooted-component.d.ts +2 -1
- package/dist/component/create-rooted-component/create-rooted-component.d.ts.map +1 -1
- package/dist/component/create-rooted-component/create-rooted-component.js.map +1 -1
- package/dist/component/get-component/get-component.d.ts +2 -1
- package/dist/component/get-component/get-component.d.ts.map +1 -1
- package/dist/component/get-rooted-component/get-rooted-component.d.ts +2 -1
- package/dist/component/get-rooted-component/get-rooted-component.d.ts.map +1 -1
- package/dist/type/component-with-selectors.type.d.ts +1 -2
- package/dist/type/component-with-selectors.type.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ComponentWithSelectors, Enum } from '../../type';
|
|
2
|
-
|
|
2
|
+
import type { Component } from '../component/component';
|
|
3
|
+
export declare const createComponent: <T extends string>(selectors: Enum<T>) => ComponentWithSelectors<T, Component>;
|
|
3
4
|
//# sourceMappingURL=create-component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-component.d.ts","sourceRoot":"","sources":["../../../src/component/create-component/create-component.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"create-component.d.ts","sourceRoot":"","sources":["../../../src/component/create-component/create-component.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAC/D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAExD,eAAO,MAAM,eAAe,gFACU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-component.js","sourceRoot":"","sources":["../../../src/component/create-component/create-component.ts"],"names":[],"mappings":";;;AAAA,gEAA8D;
|
|
1
|
+
{"version":3,"file":"create-component.js","sourceRoot":"","sources":["../../../src/component/create-component/create-component.ts"],"names":[],"mappings":";;;AAAA,gEAA8D;AAKvD,IAAM,eAAe,GAAG,UAAmB,SAAkB;IAChE,OAAA,IAAI,CAAC,IAAA,4BAAY,EAAI,SAAS,CAAC,CAAC,EAAE;AAAlC,CAAkC,CAAC;AAD1B,QAAA,eAAe,mBACW"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ComponentWithSelectors, Enum } from '../../type';
|
|
2
|
-
|
|
2
|
+
import type { RootedComponent } from '../rooted-component/rooted-component';
|
|
3
|
+
export declare const createRootedComponent: <T extends string>(selectors: Enum<T>, selectorOrElement?: WebdriverIO.Element | string) => ComponentWithSelectors<T, RootedComponent>;
|
|
3
4
|
//# sourceMappingURL=create-rooted-component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-rooted-component.d.ts","sourceRoot":"","sources":["../../../src/component/create-rooted-component/create-rooted-component.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"create-rooted-component.d.ts","sourceRoot":"","sources":["../../../src/component/create-rooted-component/create-rooted-component.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAC/D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AAE5E,eAAO,MAAM,qBAAqB,6DAEV,YAAY,OAAO,GAAG,MAAM,+CACsD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-rooted-component.js","sourceRoot":"","sources":["../../../src/component/create-rooted-component/create-rooted-component.ts"],"names":[],"mappings":";;;AAAA,qFAAkF;
|
|
1
|
+
{"version":3,"file":"create-rooted-component.js","sourceRoot":"","sources":["../../../src/component/create-rooted-component/create-rooted-component.ts"],"names":[],"mappings":";;;AAAA,qFAAkF;AAK3E,IAAM,qBAAqB,GAAG,UACjC,SAAkB,EAClB,iBAAgD,IACH,OAAA,IAAI,CAAC,IAAA,yCAAkB,EAAI,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,EAAzD,CAAyD,CAAC;AAH9F,QAAA,qBAAqB,yBAGyE"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { Component } from '../component/component';
|
|
1
2
|
import type { ComponentWithSelectors, Enum } from '../../type';
|
|
2
|
-
declare type ComponentWithSelectorsCtor<T extends string> = new (selectorOrElement?: WebdriverIO.Element | string) => ComponentWithSelectors<T>;
|
|
3
|
+
declare type ComponentWithSelectorsCtor<T extends string> = new (selectorOrElement?: WebdriverIO.Element | string) => ComponentWithSelectors<T, Component>;
|
|
3
4
|
export declare const getComponent: <T extends string>(selectors: Enum<T>) => ComponentWithSelectorsCtor<T>;
|
|
4
5
|
export {};
|
|
5
6
|
//# sourceMappingURL=get-component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-component.d.ts","sourceRoot":"","sources":["../../../src/component/get-component/get-component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-component.d.ts","sourceRoot":"","sources":["../../../src/component/get-component/get-component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAEnD,OAAO,KAAK,EAAE,sBAAsB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAE/D,aAAK,0BAA0B,CAAC,CAAC,SAAS,MAAM,IAAI,KAChD,iBAAiB,CAAC,EAAE,WAAW,CAAC,OAAO,GAAG,MAAM,KAC/C,sBAAsB,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAE1C,eAAO,MAAM,YAAY,yEAkBpB,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { RootedComponent } from '../rooted-component/rooted-component';
|
|
1
2
|
import type { ComponentWithSelectors, Enum } from '../../type';
|
|
2
|
-
declare type RootedComponentWithSelectorsCtor<T extends string> = new (selectorOrElement?: WebdriverIO.Element | string) => ComponentWithSelectors<T>;
|
|
3
|
+
declare type RootedComponentWithSelectorsCtor<T extends string> = new (selectorOrElement?: WebdriverIO.Element | string) => ComponentWithSelectors<T, RootedComponent>;
|
|
3
4
|
export declare const getRootedComponent: <T extends string>(selectors: Enum<T>) => RootedComponentWithSelectorsCtor<T>;
|
|
4
5
|
export {};
|
|
5
6
|
//# sourceMappingURL=get-rooted-component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-rooted-component.d.ts","sourceRoot":"","sources":["../../../src/component/get-rooted-component/get-rooted-component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-rooted-component.d.ts","sourceRoot":"","sources":["../../../src/component/get-rooted-component/get-rooted-component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AAEvE,OAAO,KAAK,EAAE,sBAAsB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAE/D,aAAK,gCAAgC,CAAC,CAAC,SAAS,MAAM,IAAI,KACtD,iBAAiB,CAAC,EAAE,WAAW,CAAC,OAAO,GAAG,MAAM,KAC/C,sBAAsB,CAAC,CAAC,EAAE,eAAe,CAAC,CAAC;AAEhD,eAAO,MAAM,kBAAkB,+EA4B1B,CAAC"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import type { Component } from '../component';
|
|
2
1
|
import type { SelectorMethods } from './selector-methods.type';
|
|
3
2
|
import type { SelectorObject } from './selector-object.type';
|
|
4
|
-
export declare type ComponentWithSelectors<T extends string> =
|
|
3
|
+
export declare type ComponentWithSelectors<T extends string, TComponent> = TComponent & {
|
|
5
4
|
[TKey in SelectorMethods<T, ''>]: SelectorObject;
|
|
6
5
|
};
|
|
7
6
|
//# sourceMappingURL=component-with-selectors.type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component-with-selectors.type.d.ts","sourceRoot":"","sources":["../../src/type/component-with-selectors.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"component-with-selectors.type.d.ts","sourceRoot":"","sources":["../../src/type/component-with-selectors.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAE7D,oBAAY,sBAAsB,CAAC,CAAC,SAAS,MAAM,EAAE,UAAU,IAAI,UAAU,GAAG;KAC3E,IAAI,IAAI,eAAe,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,cAAc;CACnD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rnw-community/wdio",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "WDIO commands, page objects and utils",
|
|
6
6
|
"keywords": [
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=14.0.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "288ecb4568b0f55c966e30238d57d8aa789f645d",
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@rnw-community/shared": "^0.8.0"
|
|
41
41
|
},
|