native-pytech 1.0.75 → 1.0.76

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.
@@ -1 +1,7 @@
1
- export { default } from './src/Page';
1
+ import Page from './src/Page';
2
+ import Item from './src/Item';
3
+ type PickerPageComponent = typeof Page & {
4
+ Item: typeof Item;
5
+ };
6
+ declare const PickerPage: PickerPageComponent;
7
+ export default PickerPage;
@@ -1 +1,5 @@
1
- export { default } from './src/Page';
1
+ import Page from './src/Page';
2
+ import Item from './src/Item';
3
+ const PickerPage = Page;
4
+ PickerPage.Item = Item;
5
+ export default PickerPage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-pytech",
3
- "version": "1.0.75",
3
+ "version": "1.0.76",
4
4
  "description": "Libreria de React Native Pytech",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",