rn-native-wrapper 1.0.0 → 1.0.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/lib/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export { default as RNNativeDatePicker } from './components/RNNativeDatePicker';
2
2
  export { default } from './components/RNNativeDatePicker';
3
+ export * from 'expo-speech-recognition';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAChF,OAAO,EAAE,OAAO,EAAE,MAAM,iCAAiC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAChF,OAAO,EAAE,OAAO,EAAE,MAAM,iCAAiC,CAAC;AAG1D,cAAc,yBAAyB,CAAC"}
package/lib/index.js CHANGED
@@ -1,4 +1,18 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
2
16
  var __importDefault = (this && this.__importDefault) || function (mod) {
3
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
18
  };
@@ -8,3 +22,5 @@ var RNNativeDatePicker_1 = require("./components/RNNativeDatePicker");
8
22
  Object.defineProperty(exports, "RNNativeDatePicker", { enumerable: true, get: function () { return __importDefault(RNNativeDatePicker_1).default; } });
9
23
  var RNNativeDatePicker_2 = require("./components/RNNativeDatePicker");
10
24
  Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(RNNativeDatePicker_2).default; } });
25
+ // Export all from expo-speech-recognition
26
+ __exportStar(require("expo-speech-recognition"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-native-wrapper",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "React Native wrapper for native date picker component",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.js",
@@ -32,6 +32,7 @@
32
32
  "clean": "rm -rf lib"
33
33
  },
34
34
  "dependencies": {
35
+ "expo-speech-recognition": "^3.1.0",
35
36
  "react-native-date-picker": "^5.0.13"
36
37
  },
37
38
  "peerDependencies": {
package/src/index.ts CHANGED
@@ -1,2 +1,5 @@
1
1
  export { default as RNNativeDatePicker } from './components/RNNativeDatePicker';
2
2
  export { default } from './components/RNNativeDatePicker';
3
+
4
+ // Export all from expo-speech-recognition
5
+ export * from 'expo-speech-recognition';