rn-vs-lb 1.0.27 → 1.0.28

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.
@@ -26,7 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
26
26
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.BottomTab = void 0;
29
+ exports.BottomTab = exports.LbTypes = void 0;
30
30
  var react_1 = __importStar(require("react"));
31
31
  var react_native_1 = require("react-native");
32
32
  var theme_1 = require("../../constants/theme");
@@ -38,7 +38,7 @@ var LbTypes;
38
38
  LbTypes["OCTICONS"] = "Octicons";
39
39
  LbTypes["IONICONS"] = "Ionicons";
40
40
  LbTypes["MATERIALICONS"] = "MaterialIcons";
41
- })(LbTypes || (LbTypes = {}));
41
+ })(LbTypes || (exports.LbTypes = LbTypes = {}));
42
42
  var tabs = [
43
43
  { name: 'Search', iconName: "search", size: 22, lb: LbTypes.OCTICONS, route: 'SearchScreen' },
44
44
  { name: 'Organizations', iconName: "organization", size: 22, lb: LbTypes.OCTICONS, route: 'OrganizationScreen' },
@@ -1,10 +1,10 @@
1
1
  import React from 'react';
2
- declare enum LbTypes {
2
+ export declare enum LbTypes {
3
3
  OCTICONS = "Octicons",
4
4
  IONICONS = "Ionicons",
5
5
  MATERIALICONS = "MaterialIcons"
6
6
  }
7
- interface Tab {
7
+ export interface Tab {
8
8
  name: string;
9
9
  iconName: string;
10
10
  size: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-vs-lb",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/index.d.ts",
6
6
  "scripts": {