thailife-react 0.0.2 → 0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thailife-react",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "A modern UI library built with React and Tailwind CSS",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
package/dist/package.json DELETED
@@ -1,36 +0,0 @@
1
- {
2
- "name": "thailife-react",
3
- "version": "0.0.1",
4
- "description": "A modern UI library built with React and Tailwind CSS",
5
- "main": "index.js",
6
- "module": "index.esm.js",
7
- "types": "index.d.ts",
8
- "files": [
9
- "*.js",
10
- "*.d.ts",
11
- "*.css",
12
- "components/",
13
- "utils/"
14
- ],
15
- "peerDependencies": {
16
- "react": ">=16.8.0 <19.0.0",
17
- "react-dom": ">=16.8.0 <19.0.0"
18
- },
19
- "peerDependenciesMeta": {
20
- "react": {
21
- "optional": false
22
- },
23
- "react-dom": {
24
- "optional": false
25
- }
26
- },
27
- "keywords": [
28
- "react",
29
- "ui",
30
- "components",
31
- "tailwindcss",
32
- "typescript"
33
- ],
34
- "author": "ThaiLife",
35
- "license": "MIT"
36
- }
package/dist/styles.css DELETED
@@ -1,35 +0,0 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- /* @layer base {
6
- * {
7
- @apply border-border;
8
- }
9
-
10
- body {
11
- @apply bg-background text-foreground;
12
- }
13
- }
14
-
15
- @layer components {
16
- .btn {
17
- @apply inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background;
18
- }
19
-
20
- .btn-primary {
21
- @apply bg-primary text-primary-foreground hover:bg-primary/90;
22
- }
23
-
24
- .btn-secondary {
25
- @apply bg-secondary text-secondary-foreground hover:bg-secondary/80;
26
- }
27
-
28
- .btn-outline {
29
- @apply border border-input hover:bg-accent hover:text-accent-foreground;
30
- }
31
-
32
- .btn-ghost {
33
- @apply hover:bg-accent hover:text-accent-foreground;
34
- }
35
- } */