tek-wallet 0.0.777 → 0.0.779

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.
@@ -19,5 +19,5 @@ export declare enum WithdrawAmountError {
19
19
  MAX_LIMIT = "\u24D8 Enter a maximum amount of",
20
20
  MIN_LIMIT = "\u24D8 Enter a minimum amount of"
21
21
  }
22
- declare const SendExternalView: import("react").ForwardRefExoticComponent<SendExternalViewProps & import("react").RefAttributes<SendExternalViewRef>>;
22
+ export declare const SendExternalView: import("react").ForwardRefExoticComponent<SendExternalViewProps & import("react").RefAttributes<SendExternalViewRef>>;
23
23
  export default SendExternalView;
@@ -17,7 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  };
18
18
  var _a;
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.WithdrawAmountError = exports.SendExternalStep = void 0;
20
+ exports.SendExternalView = exports.WithdrawAmountError = exports.SendExternalStep = void 0;
21
21
  var jsx_runtime_1 = require("react/jsx-runtime");
22
22
  var react_1 = require("react");
23
23
  var SwiperControlled_1 = __importDefault(require("../../ui/SwiperControlled"));
@@ -49,7 +49,7 @@ var WithdrawAmountError;
49
49
  WithdrawAmountError["MAX_LIMIT"] = "\u24D8 Enter a maximum amount of";
50
50
  WithdrawAmountError["MIN_LIMIT"] = "\u24D8 Enter a minimum amount of";
51
51
  })(WithdrawAmountError || (exports.WithdrawAmountError = WithdrawAmountError = {}));
52
- var SendExternalView = (0, react_1.forwardRef)(function (props, ref) {
52
+ exports.SendExternalView = (0, react_1.forwardRef)(function (props, ref) {
53
53
  var isInitPasscode = (0, useWalletData_1.default)().isInitPasscode;
54
54
  var _a = (0, useWithdrawData_1.default)(), updateWithdrawToken = _a.updateWithdrawToken, withdrawTokens = _a.withdrawTokens;
55
55
  var theme = (0, providers_1.useTheme)();
@@ -134,5 +134,5 @@ var SendExternalView = (0, react_1.forwardRef)(function (props, ref) {
134
134
  onDone: startNewTransaction,
135
135
  } })) }) }, SendExternalStep.CONFIRM)] }) }));
136
136
  });
137
- SendExternalView.displayName = "SendExternalView";
138
- exports.default = SendExternalView;
137
+ exports.SendExternalView.displayName = "SendExternalView";
138
+ exports.default = exports.SendExternalView;
package/dist/index.css ADDED
@@ -0,0 +1,5 @@
1
+ @import "xhub-keyboard/dist/style.css";
2
+
3
+ .highcharts-credits {
4
+ display: none !important;
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tek-wallet",
3
- "version": "0.0.777",
3
+ "version": "0.0.779",
4
4
  "description": "A custom React provider with TypeScript support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,17 +11,12 @@
11
11
  "version:patch": "npm version patch",
12
12
  "version:minor": "npm version minor",
13
13
  "version:major": "npm version major",
14
- "publish:patch": "npm run version:patch && npm publish",
15
- "publish:minor": "npm run version:minor && npm publish",
16
- "publish:major": "npm run version:major && npm publish",
17
14
  "delay": "sleep 1",
18
- "release": "touch to-recommit.ts && npm run delay && git add . && npm run delay && git commit -m \"prepare for building a new version\" && npm run delay && npm run clean && npm run delay && npm run build && VERSION=$(npm version patch) && rm -rf to-recommit.ts && npm run delay && git add . && npm run delay && git commit -m \"version: $VERSION\" && npm run delay && git push"
15
+ "copy-style": "cp src/components/TekWallet/styles/index.css dist",
16
+ "release": "touch to-recommit.ts && npm run delay && git add . && npm run delay && git commit -m \"prepare for building a new version\" && npm run delay && npm run clean && npm run delay && npm run build && npm run delay && npm run copy-style && npm run delay && VERSION=$(npm version patch) && rm -rf to-recommit.ts && npm run delay && git add . && npm run delay && git commit -m \"version: $VERSION\" && npm run delay && git push"
19
17
  },
20
18
  "keywords": [
21
- "react",
22
- "auth",
23
- "authentication",
24
- "authjs"
19
+ "react"
25
20
  ],
26
21
  "author": "",
27
22
  "license": "ISC",