@onekeyfe/react-native-text-input 0.2.7 → 0.2.8
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/lib/commonjs/index.js
CHANGED
|
@@ -6,18 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
var _exportNames = {};
|
|
7
7
|
exports.default = void 0;
|
|
8
8
|
var _Input = _interopRequireDefault(require("./Input"));
|
|
9
|
-
var _TextInputViewNativeComponent = require("./TextInputViewNativeComponent");
|
|
10
|
-
Object.keys(_TextInputViewNativeComponent).forEach(function (key) {
|
|
11
|
-
if (key === "default" || key === "__esModule") return;
|
|
12
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
13
|
-
if (key in exports && exports[key] === _TextInputViewNativeComponent[key]) return;
|
|
14
|
-
Object.defineProperty(exports, key, {
|
|
15
|
-
enumerable: true,
|
|
16
|
-
get: function () {
|
|
17
|
-
return _TextInputViewNativeComponent[key];
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
});
|
|
21
9
|
var _enum = require("./enum");
|
|
22
10
|
Object.keys(_enum).forEach(function (key) {
|
|
23
11
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -33,6 +21,8 @@ Object.keys(_enum).forEach(function (key) {
|
|
|
33
21
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
34
22
|
// @ts-expect-error
|
|
35
23
|
|
|
24
|
+
// export * from './TextInputViewNativeComponent';
|
|
25
|
+
|
|
36
26
|
const TextInput = _Input.default;
|
|
37
27
|
var _default = exports.default = TextInput;
|
|
38
28
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_Input","_interopRequireDefault","require","
|
|
1
|
+
{"version":3,"names":["_Input","_interopRequireDefault","require","_enum","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","e","__esModule","default","TextInput","TextInputView","_default"],"sourceRoot":"../../src","sources":["index.tsx"],"mappings":";;;;;;;AAEA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAWA,IAAAC,KAAA,GAAAD,OAAA;AAAAE,MAAA,CAAAC,IAAA,CAAAF,KAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAJ,KAAA,CAAAI,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAZ,KAAA,CAAAI,GAAA;IAAA;EAAA;AAAA;AAAuB,SAAAN,uBAAAe,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAZvB;;AAIA;;AAUA,MAAMG,SAAS,GAAGC,cAA+C;AAAC,IAAAC,QAAA,GAAAT,OAAA,CAAAM,OAAA,GACnDC,SAAS","ignoreList":[]}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { ComponentType } from 'react';
|
|
2
2
|
import type { ITextInputProps } from './type';
|
|
3
|
-
export * from './TextInputViewNativeComponent';
|
|
4
3
|
export type { IPasteEventPayloadItem, IPasteEventPayload, IPasteEventParams, ITextInputProps, } from './type';
|
|
5
4
|
export * from './enum';
|
|
6
5
|
declare const TextInput: ComponentType<ITextInputProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAG3C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAG3C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAI9C,YAAY,EACV,sBAAsB,EACtB,kBAAkB,EAClB,iBAAiB,EACjB,eAAe,GAChB,MAAM,QAAQ,CAAC;AAChB,cAAc,QAAQ,CAAC;AAEvB,QAAA,MAAM,SAAS,EAAoB,aAAa,CAAC,eAAe,CAAC,CAAC;AAClE,eAAe,SAAS,CAAC"}
|
package/package.json
CHANGED
package/src/index.tsx
CHANGED
|
@@ -3,7 +3,7 @@ import type { ComponentType } from 'react';
|
|
|
3
3
|
import TextInputView from './Input';
|
|
4
4
|
import type { ITextInputProps } from './type';
|
|
5
5
|
|
|
6
|
-
export * from './TextInputViewNativeComponent';
|
|
6
|
+
// export * from './TextInputViewNativeComponent';
|
|
7
7
|
|
|
8
8
|
export type {
|
|
9
9
|
IPasteEventPayloadItem,
|