@omnikit-js/ui 0.3.6 → 0.3.8
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 +7 -7
- package/styles.css +0 -5
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnikit-js/ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "A SaaS billing component for Next.js with Stripe integration",
|
|
5
|
-
"main": "
|
|
6
|
-
"module": "
|
|
7
|
-
"types": "
|
|
5
|
+
"main": "src/index.ts",
|
|
6
|
+
"module": "src/index.ts",
|
|
7
|
+
"types": "src/index.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"types": "./
|
|
11
|
-
"import": "./
|
|
12
|
-
"require": "./
|
|
10
|
+
"types": "./src/index.ts",
|
|
11
|
+
"import": "./src/index.ts",
|
|
12
|
+
"require": "./src/index.ts"
|
|
13
13
|
},
|
|
14
14
|
"./styles.css": "./styles.css"
|
|
15
15
|
},
|
package/styles.css
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
/* @omnikit-js/ui Component Styles */
|
|
2
2
|
/* This file includes all Tailwind CSS classes used by the billing component */
|
|
3
3
|
|
|
4
|
-
/* Reset and base styles */
|
|
5
|
-
*, ::before, ::after {
|
|
6
|
-
box-sizing: border-box;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
4
|
/* Color utilities */
|
|
10
5
|
.text-red-600 { color: #dc2626; }
|
|
11
6
|
.text-red-400 { color: #f87171; }
|