react-input-material 0.0.753 → 0.0.755
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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseLocator } from 'react-generic-tools/endToEndTestHelper';
|
|
2
|
+
export declare const textInput: (parent: BaseLocator) => {
|
|
3
|
+
fill: (value: string, options?: {
|
|
4
|
+
force?: boolean;
|
|
5
|
+
noWaitAfter?: boolean;
|
|
6
|
+
timeout?: number;
|
|
7
|
+
}) => Promise<void>;
|
|
8
|
+
inputValue: (options?: {
|
|
9
|
+
timeout?: number;
|
|
10
|
+
}) => Promise<string>;
|
|
11
|
+
};
|
|
12
|
+
export default textInput;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";if("undefined"!=typeof module&&null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&"undefined"!=typeof __dirname&&null!==__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter(function(path){return eval("require.main.paths").includes(path)})))}if(null==window)var window="undefined"==typeof global||null===global?{}:global;!function(e,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n();else if("function"==typeof define&&define.amd)define([],n);else{var t=n();for(var i in t)("object"==typeof exports?exports:e)[i]=t[i]}}(this,function(){return function(){var e={d:function(n,t){for(var i in t)e.o(t,i)&&!e.o(n,i)&&Object.defineProperty(n,i,{enumerable:!0,get:t[i]})},o:function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},r:function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},n={};e.r(n),e.d(n,{textInput:function(){return t}});var t=function(e){var n=e.locator("input");return{fill:n.fill.bind(n),inputValue:n.inputValue.bind(n)}};return n.default=t,n}()});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-input-material",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.755",
|
|
4
4
|
"description": "Reusable material design based input field with support for (richt-)text, code, selections, numbers, dates and so on.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"form-field",
|
|
@@ -55,6 +55,8 @@
|
|
|
55
55
|
"dist/components/Checkbox/index.js",
|
|
56
56
|
"dist/components/Checkbox/type.d.ts",
|
|
57
57
|
"dist/components/Checkbox/type.js",
|
|
58
|
+
"dist/components/TextInput/harness.d.ts",
|
|
59
|
+
"dist/components/TextInput/harness.js",
|
|
58
60
|
"dist/components/TextInput/helper.d.ts",
|
|
59
61
|
"dist/components/TextInput/import.module.css",
|
|
60
62
|
"dist/components/TextInput/index.css",
|
|
@@ -335,8 +337,8 @@
|
|
|
335
337
|
}
|
|
336
338
|
},
|
|
337
339
|
"engines": {
|
|
338
|
-
"node": ">=
|
|
339
|
-
"npm": ">=
|
|
340
|
+
"node": ">=24",
|
|
341
|
+
"npm": ">=11",
|
|
340
342
|
"yarn": ">=4"
|
|
341
343
|
},
|
|
342
344
|
"resolutions": {
|
|
@@ -401,6 +403,7 @@
|
|
|
401
403
|
"./components/TextInput/import.module": "./implementations/rmwc/TextField/import.module",
|
|
402
404
|
"./components/TextInput/index": "./components/TextInput/index",
|
|
403
405
|
"./components/TextInput/type": "./components/TextInput/type",
|
|
406
|
+
"./components/TextInput/harness": "./components/TextInput/harness",
|
|
404
407
|
"./components/Inputs/import.module": "./implementations/rmwc/Inputs/import.module",
|
|
405
408
|
"./components/Inputs/index": "./components/Inputs/index",
|
|
406
409
|
"./components/Inputs/type": "./components/Inputs/type",
|