@tuwaio/nova-core 0.1.1 → 0.1.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/README.md CHANGED
@@ -20,10 +20,9 @@ Building design systems requires consistent foundations: colors, spacing, typogr
20
20
 
21
21
  Nova Core solves this by:
22
22
 
23
- 1. **Providing Unified Design Tokens:** A comprehensive CSS variable system that ensures visual consistency across all components.
24
- 2. **Offering Smart Utilities:** Battle-tested helper functions like the `cn` utility that combines `clsx` and `tailwind-merge` for conflict-free styling.
25
- 3. **Supplying Common Hooks:** A collection of reusable React hooks for common Web3 UI patterns.
26
- 4. **Ensuring Tailwind CSS v4 Integration:** Seamless compatibility with modern Tailwind CSS workflows.
23
+ 1. **Offering Smart Utilities:** Battle-tested helper functions like the `cn` utility that combines `clsx` and `tailwind-merge` for conflict-free styling.
24
+ 2. **Supplying Common Hooks:** A collection of reusable React hooks for common Web3 UI patterns.
25
+ 3. **Ensuring Tailwind CSS v4 Integration:** Seamless compatibility with modern Tailwind CSS workflows.
27
26
 
28
27
  -----
29
28
 
@@ -227,9 +226,9 @@ function App() {
227
226
 
228
227
  #### Utilities
229
228
 
230
- | Function | Description | Usage |
231
- | :--- | :--- | :--- |
232
- | **`cn(...classes)`** | Merges class names intelligently, resolving Tailwind conflicts | `cn('p-4 text-sm', 'p-6', conditional && 'hidden')` |
229
+ | Function | Description | Usage |
230
+ | :--- | :--- |:------------------------------------------|
231
+ | **`cn(...classes)`** | Merges class names intelligently, resolving Tailwind conflicts | `cn('p-4 text-sm', 'p-6', {'hidden': conditional})` |
233
232
 
234
233
  #### Hooks
235
234
 
package/dist/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.15 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
@@ -146,9 +146,7 @@
146
146
  .novacore\:bg-black\/55 {
147
147
  background-color: var(--novacore-color-black);
148
148
  @supports (color: color-mix(in lab, red, red)) {
149
- & {
150
- background-color: color-mix(in oklab, var(--novacore-color-black) 55%, transparent);
151
- }
149
+ background-color: color-mix(in oklab, var(--novacore-color-black) 55%, transparent);
152
150
  }
153
151
  }
154
152
  .novacore\:p-0 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/nova-core",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
@@ -55,8 +55,8 @@
55
55
  "tailwind-merge": "3.x.x"
56
56
  },
57
57
  "devDependencies": {
58
- "@tailwindcss/postcss": "^4.1.15",
59
- "@tailwindcss/vite": "^4.1.15",
58
+ "@tailwindcss/postcss": "^4.1.16",
59
+ "@tailwindcss/vite": "^4.1.16",
60
60
  "@types/react": "^19.2.2",
61
61
  "@radix-ui/react-dialog": "^1.1.15",
62
62
  "autoprefixer": "^10.4.21",
@@ -65,7 +65,7 @@
65
65
  "postcss": "^8.5.6",
66
66
  "postcss-cli": "^11.0.1",
67
67
  "react": "^19.2.0",
68
- "tailwindcss": "^4.1.15",
68
+ "tailwindcss": "^4.1.16",
69
69
  "tailwind-merge": "^3.3.1",
70
70
  "tsup": "^8.5.0",
71
71
  "typescript": "^5.9.3"