tek-wallet 0.0.117 → 0.0.119

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.
@@ -68,7 +68,8 @@ var ChildPageLayout = (0, react_1.forwardRef)(function (props, ref) {
68
68
  display: "flex",
69
69
  alignItems: "center",
70
70
  justifyContent: "center",
71
- backgroundColor: "blackBackground.24",
71
+ backgroundColor: "blackBackground.16",
72
+ backdropFilter: "blur(4px)",
72
73
  zIndex: 50,
73
74
  }, children: (0, jsx_runtime_1.jsx)(StatusDisplay_2.default, { status: status }) }))] }));
74
75
  });
@@ -1,14 +1,24 @@
1
1
  "use strict";
2
2
  "use client";
3
+ var __assign = (this && this.__assign) || function () {
4
+ __assign = Object.assign || function(t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
8
+ t[p] = s[p];
9
+ }
10
+ return t;
11
+ };
12
+ return __assign.apply(this, arguments);
13
+ };
14
+ var __importDefault = (this && this.__importDefault) || function (mod) {
15
+ return (mod && mod.__esModule) ? mod : { "default": mod };
16
+ };
3
17
  Object.defineProperty(exports, "__esModule", { value: true });
4
18
  var jsx_runtime_1 = require("react/jsx-runtime");
5
- var system_1 = require("@mui/system");
6
- var StyledDefaultPageLayout = (0, system_1.styled)("div")(function () { return ({
7
- padding: "1rem",
8
- minHeight: "100%",
9
- width: "100%",
10
- }); });
19
+ var theme_1 = __importDefault(require("../../../theme/mui/theme"));
20
+ var material_1 = require("@mui/material");
11
21
  var DefaultPageLayout = function (props) {
12
- return ((0, jsx_runtime_1.jsx)(StyledDefaultPageLayout, { sx: props.sx, children: props.children }));
22
+ return ((0, jsx_runtime_1.jsx)(material_1.Box, { sx: __assign({ padding: theme_1.default.palette.padding.pageX, paddingTop: theme_1.default.palette.padding.pageTop, paddingBottom: theme_1.default.palette.padding.pageBottom, minHeight: "100%", width: "100%" }, props.sx), children: props.children }));
13
23
  };
14
24
  exports.default = DefaultPageLayout;
@@ -30,7 +30,7 @@ var BackHeader = function (props) {
30
30
  }
31
31
  router.back();
32
32
  };
33
- return ((0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign({ display: "flex", alignItems: "center", gap: "1rem", height: "100%", backgroundColor: "ui.bg.white" }, props.sx), children: [!hideBack && ((0, jsx_runtime_1.jsxs)(material_1.Box, { sx: {
33
+ return ((0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign({ display: "flex", alignItems: "center", gap: "1rem", height: "100%" }, props.sx), children: [!hideBack && ((0, jsx_runtime_1.jsxs)(material_1.Box, { sx: {
34
34
  display: "flex",
35
35
  alignItems: "center",
36
36
  gap: "0.5rem",
@@ -1,14 +1,26 @@
1
1
  "use strict";
2
2
  "use client";
3
+ var __assign = (this && this.__assign) || function () {
4
+ __assign = Object.assign || function(t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
8
+ t[p] = s[p];
9
+ }
10
+ return t;
11
+ };
12
+ return __assign.apply(this, arguments);
13
+ };
3
14
  var __importDefault = (this && this.__importDefault) || function (mod) {
4
15
  return (mod && mod.__esModule) ? mod : { "default": mod };
5
16
  };
6
17
  Object.defineProperty(exports, "__esModule", { value: true });
7
18
  var jsx_runtime_1 = require("react/jsx-runtime");
8
- var cn_1 = __importDefault(require("../../../utils/cn"));
19
+ var styles_1 = require("../../../theme/mui/styles");
20
+ var theme_1 = __importDefault(require("../../../theme/mui/theme"));
9
21
  var BackHeader_1 = __importDefault(require("../BackHeader"));
10
22
  var Text_1 = __importDefault(require("../Text"));
11
23
  var PageHeader = function (props) {
12
- return ((0, jsx_runtime_1.jsxs)(BackHeader_1.default, { overrideBack: props.overrideBack, className: (0, cn_1.default)("flex items-center h-full bg-ui-bg-white relative px-4", props.className), children: [(0, jsx_runtime_1.jsx)(Text_1.default, { className: "text-white absolute left-1/2 -translate-x-1/2 top-1/2 -translate-y-1/2 text-base font-500", children: props.title }), props.children] }));
24
+ return ((0, jsx_runtime_1.jsx)(BackHeader_1.default, { overrideBack: props.overrideBack, sx: __assign({ display: "flex", alignItems: "center", height: "100%", position: "relative", paddingLeft: theme_1.default.palette.padding.pageX, paddingRight: theme_1.default.palette.padding.pageX }, props.sx), children: (0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign(__assign({}, styles_1.headerTitle), { position: "absolute", left: "50%", top: "50%", transform: "translate(-50%, -50%)" }), children: props.title }) }));
13
25
  };
14
26
  exports.default = PageHeader;
@@ -61,6 +61,7 @@ var ImportWalletView_1 = __importDefault(require("../ImportWalletView"));
61
61
  var ChildPageLayout_1 = __importDefault(require("../../layouts/ChildPageLayout"));
62
62
  var material_1 = require("@mui/material");
63
63
  var PageHeader_1 = __importDefault(require("../../ui/PageHeader"));
64
+ var styles_1 = require("../../../theme/mui/styles");
64
65
  var AuthView = function (props) {
65
66
  var createWalletDrawerRef = (0, react_1.useRef)(null);
66
67
  var importWalletDrawerRef = (0, react_1.useRef)(null);
@@ -72,7 +73,7 @@ var AuthView = function (props) {
72
73
  var _a;
73
74
  (_a = importWalletDrawerRef.current) === null || _a === void 0 ? void 0 : _a.close();
74
75
  };
75
- return ((0, jsx_runtime_1.jsx)(ChildPageLayout_1.default, { header: (0, jsx_runtime_1.jsx)(PageHeader_1.default, { title: "Connect Wallet", overrideBack: props.onBack }), children: (0, jsx_runtime_1.jsxs)(DefaultPageLayout_1.default, { sx: __assign({ display: "flex", flexDirection: "column", gap: "1rem", paddingBottom: "2.25rem" }, props.sx), children: [(0, jsx_runtime_1.jsx)(Image_1.default, { src: (0, getIcon_1.default)("eth"), sx: {
76
+ return ((0, jsx_runtime_1.jsx)(ChildPageLayout_1.default, { header: (0, jsx_runtime_1.jsx)(PageHeader_1.default, { title: "Connect Wallet", overrideBack: props.onBack }), children: (0, jsx_runtime_1.jsxs)(DefaultPageLayout_1.default, { sx: __assign({ display: "flex", flexDirection: "column", gap: "1rem" }, props.sx), children: [(0, jsx_runtime_1.jsx)(Image_1.default, { src: (0, getIcon_1.default)("eth"), sx: {
76
77
  width: "80%",
77
78
  aspectRatio: "1",
78
79
  position: "fixed",
@@ -83,15 +84,9 @@ var AuthView = function (props) {
83
84
  display: "flex",
84
85
  flexDirection: "column",
85
86
  gap: "1rem",
86
- border: "2px blue solid",
87
87
  marginTop: "auto",
88
88
  }, children: [(0, jsx_runtime_1.jsx)(DrawerComponent_1.default, { sx: {
89
89
  width: "100%",
90
- border: "2px red solid",
91
- }, ref: createWalletDrawerRef, trigger: (0, jsx_runtime_1.jsx)(Button_1.default.Primary, { sx: { width: "100%" }, children: "Create a new wallet" }), direction: DrawerComponent_1.DRAWER_DIRECTION.RIGHT, children: (0, jsx_runtime_1.jsx)(CreateWalletView_1.default, { onBack: onBackCreateWallet }) }), (0, jsx_runtime_1.jsx)(DrawerComponent_1.default, { ref: importWalletDrawerRef, trigger: (0, jsx_runtime_1.jsx)(Button_1.default.Secondary, { sx: { width: "100%" }, children: "I have a wallet" }), direction: DrawerComponent_1.DRAWER_DIRECTION.RIGHT, children: (0, jsx_runtime_1.jsx)(ImportWalletView_1.default, { onBack: onBackImportWallet }) }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
92
- textAlign: "center",
93
- fontSize: "0.75rem",
94
- color: "text.white",
95
- }, children: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci, eos odio. Accusamus ea praesentium unde deserunt delectus, nihil corporis, mollitia ipsum impedit cupiditate eveniet vero esse facilis, incidunt in sequi?" })] })] }) }));
90
+ }, ref: createWalletDrawerRef, trigger: (0, jsx_runtime_1.jsx)(Button_1.default.Primary, { sx: { width: "100%" }, children: "Create a new wallet" }), direction: DrawerComponent_1.DRAWER_DIRECTION.RIGHT, children: (0, jsx_runtime_1.jsx)(CreateWalletView_1.default, { onBack: onBackCreateWallet }) }), (0, jsx_runtime_1.jsx)(DrawerComponent_1.default, { ref: importWalletDrawerRef, trigger: (0, jsx_runtime_1.jsx)(Button_1.default.Secondary, { sx: { width: "100%" }, children: "I have a wallet" }), direction: DrawerComponent_1.DRAWER_DIRECTION.RIGHT, children: (0, jsx_runtime_1.jsx)(ImportWalletView_1.default, { onBack: onBackImportWallet }) }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, styles_1.sessionDescription), children: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci, eos odio. Accusamus ea praesentium unde deserunt delectus, nihil corporis, mollitia ipsum impedit cupiditate eveniet vero esse facilis, incidunt in sequi?" })] })] }) }));
96
91
  };
97
92
  exports.default = AuthView;
@@ -60,6 +60,7 @@ var react_2 = require("react");
60
60
  var Text_1 = __importDefault(require("../../../components/ui/Text"));
61
61
  var useWalletData_1 = __importDefault(require("../../../hooks/useWalletData"));
62
62
  var material_1 = require("@mui/material");
63
+ var styles_1 = require("../../../theme/mui/styles");
63
64
  var CreateWalletViewStep;
64
65
  (function (CreateWalletViewStep) {
65
66
  CreateWalletViewStep[CreateWalletViewStep["CREATE_PASSCODE"] = 0] = "CREATE_PASSCODE";
@@ -142,31 +143,13 @@ var CreateWalletView = function (props) {
142
143
  alignItems: "center",
143
144
  height: "100%",
144
145
  gap: "1rem",
145
- }, children: [(0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
146
- color: "text.white",
147
- fontWeight: "600",
148
- fontSize: "16px",
149
- }, children: "Create Passcode" }), (0, jsx_runtime_1.jsx)(OTP_1.default, { value: otp, onChange: handleOtpChange, numInputs: passcodeLength, otpInputType: OTP_1.OtpInputType.PASSWORD }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
150
- color: "text.white",
151
- fontWeight: "400",
152
- fontSize: "14px",
153
- textAlign: "center",
154
- }, children: "Lorem ipsum dolor, sit amet consectetur adipisicing elit. Necessitatibus, eos! Dolore quae vero in ducimus doloribus" })] }) }), (0, jsx_runtime_1.jsx)(react_1.SwiperSlide, { children: (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: {
146
+ }, children: [(0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, styles_1.sessionTitle), children: "Create Passcode" }), (0, jsx_runtime_1.jsx)(OTP_1.default, { value: otp, onChange: handleOtpChange, numInputs: passcodeLength, otpInputType: OTP_1.OtpInputType.PASSWORD }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, styles_1.sessionDescription), children: "Lorem ipsum dolor, sit amet consectetur adipisicing elit. Necessitatibus, eos! Dolore quae vero in ducimus doloribus" })] }) }), (0, jsx_runtime_1.jsx)(react_1.SwiperSlide, { children: (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: {
155
147
  display: "flex",
156
148
  flexDirection: "column",
157
149
  alignItems: "center",
158
150
  justifyContent: "center",
159
151
  height: "100%",
160
152
  gap: "1rem",
161
- }, children: [(0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
162
- color: "text.white",
163
- fontWeight: "600",
164
- fontSize: "16px",
165
- }, children: "Confirm Passcode" }), (0, jsx_runtime_1.jsx)(OTP_1.default, { value: confirmOtp, onChange: handleConfirmOtpChange, numInputs: passcodeLength, otpInputType: OTP_1.OtpInputType.PASSWORD }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
166
- color: "text.white",
167
- fontWeight: "400",
168
- fontSize: "14px",
169
- textAlign: "center",
170
- }, children: "Lorem ipsum dolor, sit amet consectetur adipisicing elit. Necessitatibus, eos! Dolore quae vero in ducimus doloribus" })] }) })] }) }) }));
153
+ }, children: [(0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, styles_1.sessionTitle), children: "Confirm Passcode" }), (0, jsx_runtime_1.jsx)(OTP_1.default, { value: confirmOtp, onChange: handleConfirmOtpChange, numInputs: passcodeLength, otpInputType: OTP_1.OtpInputType.PASSWORD }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, styles_1.sessionDescription), children: "Lorem ipsum dolor, sit amet consectetur adipisicing elit. Necessitatibus, eos! Dolore quae vero in ducimus doloribus" })] }) })] }) }) }));
171
154
  };
172
155
  exports.default = CreateWalletView;
@@ -63,6 +63,8 @@ var material_1 = require("@mui/material");
63
63
  var Button_1 = __importDefault(require("../../ui/Button"));
64
64
  var Icon_1 = __importDefault(require("../../ui/Icon"));
65
65
  var getIcon_1 = __importDefault(require("../../../utils/getIcon"));
66
+ var styles_1 = require("../../../theme/mui/styles");
67
+ var theme_1 = __importDefault(require("../../../theme/mui/theme"));
66
68
  var GetSeedPhraseWalletViewStep;
67
69
  (function (GetSeedPhraseWalletViewStep) {
68
70
  GetSeedPhraseWalletViewStep[GetSeedPhraseWalletViewStep["ENTER_PASSCODE"] = 0] = "ENTER_PASSCODE";
@@ -150,16 +152,7 @@ var GetSeedPhraseWalletView = function (props) {
150
152
  alignItems: "center",
151
153
  gap: "1rem",
152
154
  height: "100%",
153
- }, children: [(0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
154
- color: "text.white",
155
- fontWeight: "600",
156
- fontSize: "16px",
157
- }, children: "Enter Passcode" }), (0, jsx_runtime_1.jsx)(OTP_1.default, { value: otp, onChange: handleOtpChange, numInputs: passcodeLength, otpInputType: OTP_1.OtpInputType.PASSWORD }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
158
- color: "text.white",
159
- fontWeight: "400",
160
- fontSize: "14px",
161
- textAlign: "center",
162
- }, children: "Enter your passcode to get your wallet seed phrase" })] }) }), (0, jsx_runtime_1.jsx)(react_1.SwiperSlide, { children: (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: {
155
+ }, children: [(0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, styles_1.sessionTitle), children: "Enter Passcode" }), (0, jsx_runtime_1.jsx)(OTP_1.default, { value: otp, onChange: handleOtpChange, numInputs: passcodeLength, otpInputType: OTP_1.OtpInputType.PASSWORD }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, styles_1.sessionDescription), children: "Enter your passcode to get your wallet seed phrase" })] }) }), (0, jsx_runtime_1.jsx)(react_1.SwiperSlide, { children: (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: {
163
156
  minHeight: "100%",
164
157
  display: "flex",
165
158
  flexDirection: "column",
@@ -170,16 +163,16 @@ var GetSeedPhraseWalletView = function (props) {
170
163
  gap: "1rem",
171
164
  height: "fit-content",
172
165
  }, children: seedPhrase === null || seedPhrase === void 0 ? void 0 : seedPhrase.split(" ").map(function (word, index) { return ((0, jsx_runtime_1.jsxs)(Text_1.default, { sx: {
173
- color: "text.white",
166
+ color: theme_1.default.palette.whiteText.main,
174
167
  padding: "0.5rem 0.75rem",
175
- backgroundColor: "rgba(255, 255, 255, 0.1)",
168
+ backgroundColor: theme_1.default.palette.blackBackground._16,
176
169
  borderRadius: "0.5rem",
177
- fontSize: "14px",
178
- fontWeight: "400",
170
+ fontSize: theme_1.default.palette.fontSize._14,
171
+ fontWeight: theme_1.default.palette.fontWeight._400,
179
172
  textAlign: "center",
180
173
  width: "100%",
181
- border: "1px solid rgba(255, 255, 255, 0.2)",
182
- }, children: [index + 1, ". ", isShowSeedPhrase ? word : "********"] }, index)); }) }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: { marginTop: "auto" }, children: "Please do not store your seed phrase digitally (e.g., text files on your computer, email...). Write it down and keep it in a secure, confidential location that is resistant to adverse conditions like moisture, fire, or other hazards for safe storage." }), (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: {
174
+ border: "1px solid blackBackground.24",
175
+ }, children: [index + 1, ". ", isShowSeedPhrase ? word : "********"] }, index)); }) }), (0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({ marginTop: "auto" }, styles_1.noteContent), children: "Please do not store your seed phrase digitally (e.g., text files on your computer, email...). Write it down and keep it in a secure, confidential location that is resistant to adverse conditions like moisture, fire, or other hazards for safe storage." }), (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: {
183
176
  display: "flex",
184
177
  alignItems: "stretch",
185
178
  gap: "1rem",
@@ -0,0 +1,21 @@
1
+ export declare const sessionTitle: {
2
+ color: string;
3
+ fontWeight: any;
4
+ fontSize: any;
5
+ };
6
+ export declare const sessionDescription: {
7
+ color: string;
8
+ fontWeight: any;
9
+ fontSize: any;
10
+ textAlign: string;
11
+ };
12
+ export declare const headerTitle: {
13
+ color: string;
14
+ fontWeight: any;
15
+ fontSize: any;
16
+ };
17
+ export declare const noteContent: {
18
+ color: string;
19
+ fontWeight: any;
20
+ fontSize: any;
21
+ };
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.noteContent = exports.headerTitle = exports.sessionDescription = exports.sessionTitle = void 0;
7
+ var theme_1 = __importDefault(require("./theme"));
8
+ exports.sessionTitle = {
9
+ color: "whiteText.main",
10
+ fontWeight: theme_1.default.palette.fontWeight._600,
11
+ fontSize: theme_1.default.palette.fontSize._16,
12
+ };
13
+ exports.sessionDescription = {
14
+ color: "whiteText._80",
15
+ fontWeight: theme_1.default.palette.fontWeight._400,
16
+ fontSize: theme_1.default.palette.fontSize._14,
17
+ textAlign: "center",
18
+ };
19
+ exports.headerTitle = {
20
+ color: "whiteText.main",
21
+ fontWeight: theme_1.default.palette.fontWeight._600,
22
+ fontSize: theme_1.default.palette.fontSize._16,
23
+ };
24
+ exports.noteContent = {
25
+ color: "whiteText._80",
26
+ fontWeight: theme_1.default.palette.fontWeight._400,
27
+ fontSize: theme_1.default.palette.fontSize._12,
28
+ };
@@ -11,24 +11,68 @@ var theme = (0, styles_1.createTheme)({
11
11
  },
12
12
  whiteBackground: {
13
13
  main: "#ffffff",
14
- 16: "rgba(255, 255, 255, 0.16)",
15
- 24: "rgba(255, 255, 255, 0.24)",
14
+ _16: "rgba(255, 255, 255, 0.16)",
15
+ _24: "rgba(255, 255, 255, 0.24)",
16
16
  },
17
17
  whiteText: {
18
18
  main: "#ffffff",
19
- 16: "rgba(255, 255, 255, 0.16)",
20
- 24: "rgba(255, 255, 255, 0.24)",
19
+ _16: "rgba(255, 255, 255, 0.16)",
20
+ _24: "rgba(255, 255, 255, 0.24)",
21
+ _80: "rgba(255, 255, 255, 0.8)",
21
22
  },
22
23
  whiteBorder: {
23
24
  main: "#ffffff",
24
- 16: "rgba(255, 255, 255, 0.16)",
25
- 24: "rgba(255, 255, 255, 0.24)",
25
+ _16: "rgba(255, 255, 255, 0.16)",
26
+ _24: "rgba(255, 255, 255, 0.24)",
26
27
  },
27
28
  blackBackground: {
28
29
  main: "#000000",
29
- 16: "rgba(0, 0, 0, 0.16)",
30
- 24: "rgba(0, 0, 0, 0.24)",
30
+ _16: "rgba(0, 0, 0, 0.16)",
31
+ _24: "rgba(0, 0, 0, 0.24)",
32
+ },
33
+ fontSize: {
34
+ _10: "0.625rem",
35
+ _11: "0.6875rem",
36
+ _12: "0.75rem",
37
+ _13: "0.8125rem",
38
+ _14: "0.875rem",
39
+ _15: "0.9375rem",
40
+ _16: "1rem",
41
+ _17: "1.0625rem",
42
+ _18: "1.125rem",
43
+ _19: "1.1875rem",
44
+ _20: "1.25rem",
45
+ _21: "1.3125rem",
46
+ _22: "1.375rem",
47
+ _23: "1.4375rem",
48
+ _24: "1.5rem",
49
+ _25: "1.5625rem",
50
+ _26: "1.625rem",
51
+ _27: "1.6875rem",
52
+ _28: "1.75rem",
53
+ _29: "1.8125rem",
54
+ _30: "1.875rem",
55
+ },
56
+ fontWeight: {
57
+ _400: "400",
58
+ _500: "500",
59
+ _600: "600",
60
+ _700: "700",
61
+ _800: "800",
62
+ },
63
+ lineHeight: {
64
+ _100: "100%",
65
+ _120: "120%",
66
+ _140: "140%",
67
+ _160: "160%",
68
+ _180: "180%",
69
+ },
70
+ padding: {
71
+ pageX: "1rem",
72
+ pageTop: "1rem",
73
+ pageBottom: "2rem",
31
74
  },
32
75
  },
76
+ spacing: function (factor) { return "".concat(factor * 1, "rem"); },
33
77
  });
34
78
  exports.default = theme;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tek-wallet",
3
- "version": "0.0.117",
3
+ "version": "0.0.119",
4
4
  "description": "A custom React provider with TypeScript support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",