banhaten-ui 1.0.2 → 1.0.3
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/components/Button/Button.d.ts +3 -0
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.css.map +1 -1
- package/dist/index.es.js +109 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +108 -2
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
- package/readme.md +68 -0
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "banhaten-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Banhaten react components library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
|
+
"repository": "https://github.com/ibrahimSP/banhaten-ui",
|
|
6
7
|
"module": "dist/index.es.js",
|
|
7
8
|
"types": "dist/index.d.ts",
|
|
8
9
|
"files": [
|
|
@@ -47,7 +48,8 @@
|
|
|
47
48
|
"rollup": "^4.24.0",
|
|
48
49
|
"rollup-plugin-postcss": "^4.0.2",
|
|
49
50
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
50
|
-
"tailwindcss": "^3.4.
|
|
51
|
+
"tailwindcss": "^3.4.14",
|
|
52
|
+
"tailwindcss-animate": "^1.0.7",
|
|
51
53
|
"typescript": "^5.6.3",
|
|
52
54
|
"typescript-eslint": "^8.8.1"
|
|
53
55
|
},
|
|
@@ -62,7 +64,7 @@
|
|
|
62
64
|
"@radix-ui/react-slot": "^1.1.0",
|
|
63
65
|
"class-variance-authority": "^0.7.0",
|
|
64
66
|
"clsx": "^2.1.1",
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
+
"lucide-react": "^0.453.0",
|
|
68
|
+
"tailwind-merge": "^2.5.4"
|
|
67
69
|
}
|
|
68
70
|
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Banhaten UI
|
|
2
|
+
|
|
3
|
+
Banhaten UI is a modern React component library built with TypeScript and styled with Tailwind CSS. It provides a set of reusable, customizable UI components to help you build beautiful and responsive web applications quickly and efficiently.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- 🚀 Built with React and TypeScript
|
|
8
|
+
- 🎨 Styled with Tailwind CSS
|
|
9
|
+
- 📦 Easy to install and use
|
|
10
|
+
- 🛠 Customizable components
|
|
11
|
+
- 📱 Responsive design
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
Install Banhaten UI using npm:
|
|
16
|
+
bash
|
|
17
|
+
npm install banhaten-ui
|
|
18
|
+
|
|
19
|
+
Or using yarn:
|
|
20
|
+
bash
|
|
21
|
+
yarn add banhaten-ui
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
Import and use components in your React application:
|
|
26
|
+
|
|
27
|
+
jsx
|
|
28
|
+
import React from 'react';
|
|
29
|
+
import { Button } from 'banhaten-ui';
|
|
30
|
+
function App() {
|
|
31
|
+
return (
|
|
32
|
+
<div>
|
|
33
|
+
<h1>Welcome to My App</h1>
|
|
34
|
+
<Button variant="primary">Click me!</Button>
|
|
35
|
+
</div>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export default App;
|
|
39
|
+
|
|
40
|
+
## Available Components
|
|
41
|
+
|
|
42
|
+
- Button
|
|
43
|
+
- (List other components as they are added to the library)
|
|
44
|
+
|
|
45
|
+
## Documentation
|
|
46
|
+
|
|
47
|
+
For detailed documentation and examples, please visit our [documentation site](https://docs.banhaten-ui.com) (replace with your actual documentation URL when available).
|
|
48
|
+
|
|
49
|
+
## Contributing
|
|
50
|
+
|
|
51
|
+
We welcome contributions to Banhaten UI! Please see our [Contributing Guide](CONTRIBUTING.md) for more details.
|
|
52
|
+
|
|
53
|
+
## License
|
|
54
|
+
|
|
55
|
+
Banhaten UI is [ISC licensed](LICENSE).
|
|
56
|
+
|
|
57
|
+
## Support
|
|
58
|
+
|
|
59
|
+
If you encounter any issues or have questions, please file an issue on our [GitHub repository](https://github.com/your-username/banhaten-ui).
|
|
60
|
+
|
|
61
|
+
## Acknowledgements
|
|
62
|
+
|
|
63
|
+
Banhaten UI is built with the following amazing open-source projects:
|
|
64
|
+
|
|
65
|
+
- [React](https://reactjs.org/)
|
|
66
|
+
- [TypeScript](https://www.typescriptlang.org/)
|
|
67
|
+
- [Tailwind CSS](https://tailwindcss.com/)
|
|
68
|
+
- [Radix UI](https://www.radix-ui.com/)
|