tek-wallet 0.0.48 → 0.0.50

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/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import "tailwindcss/tailwind.css";
2
1
  import TekWalletProvider from "./providers/TekWalletProvider";
3
2
  import RequireConnect from "./components/ui/RequireConnect";
4
3
  import useWalletData from "./hooks/useWalletData";
package/dist/index.js CHANGED
@@ -4,7 +4,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.tekWalletHandler = exports.useWalletData = exports.RequireConnect = exports.TekWalletProvider = void 0;
7
- require("tailwindcss/tailwind.css");
8
7
  var TekWalletProvider_1 = __importDefault(require("./providers/TekWalletProvider"));
9
8
  exports.TekWalletProvider = TekWalletProvider_1.default;
10
9
  var RequireConnect_1 = __importDefault(require("./components/ui/RequireConnect"));
@@ -1,3 +1,4 @@
1
+ import "../styles/globals.css";
1
2
  import { ReactNode } from "react";
2
3
  export interface TekWalletProviderProps {
3
4
  children: ReactNode;
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  };
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
7
  var jsx_runtime_1 = require("react/jsx-runtime");
8
+ require("../styles/globals.css");
8
9
  var WalletDataProvider_1 = __importDefault(require("../WalletDataProvider"));
9
10
  function TekWalletProvider(_a) {
10
11
  var children = _a.children;
@@ -0,0 +1,3 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tek-wallet",
3
- "version": "0.0.48",
3
+ "version": "0.0.50",
4
4
  "description": "A custom React provider with TypeScript support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "publish:patch": "npm run version:patch && npm publish",
16
16
  "publish:minor": "npm run version:minor && npm publish",
17
17
  "publish:major": "npm run version:major && npm publish",
18
- "release": "npm run clean && npm version patch && npm run build"
18
+ "release": "npm run clean && npm version patch && npm run build && cp -r src/styles dist/styles"
19
19
  },
20
20
  "keywords": [
21
21
  "react",
@@ -62,6 +62,7 @@
62
62
  "typescript": "^5.8.3"
63
63
  },
64
64
  "files": [
65
- "dist/**/*"
65
+ "dist/**/*",
66
+ "src/styles/**/*"
66
67
  ]
67
68
  }
@@ -0,0 +1,3 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;