tek-wallet 0.0.48 → 0.0.49

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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tek-wallet",
3
- "version": "0.0.48",
4
- "description": "A custom React provider with TypeScript support",
3
+ "version": "0.0.49",
4
+ "description": "A custom React provider with TypeScript support. To use the styles, import the CSS file in your project's main CSS file: @import 'tek-wallet/styles/tek-wallet.css';",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
@@ -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;