@tapizlabs/ui 0.1.5 → 0.1.6
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 +2 -1
- package/dist/index.js +199 -81
- package/dist/index.js.map +1 -1
- package/dist/theme.css +1 -1
- package/package.json +2 -2
package/dist/theme.css
CHANGED
|
@@ -368,7 +368,7 @@ html.dark .text-primary-800 { color: var(--color-primary-300) !important; }
|
|
|
368
368
|
letter-spacing: 0.18em;
|
|
369
369
|
text-transform: uppercase;
|
|
370
370
|
font-weight: 500;
|
|
371
|
-
color: var(--color-
|
|
371
|
+
color: var(--color-primary-300);
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
.font-mono { font-family: var(--font-mono) !important; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tapizlabs/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Centralized design system, theming foundation, and reusable React UI components for the Tapiz platform.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"build:assets": "powershell -ExecutionPolicy Bypass -File ./scripts/build-assets.ps1",
|
|
54
54
|
"build:css": "node scripts/copy-theme.mjs",
|
|
55
55
|
"typecheck": "tsc --noEmit",
|
|
56
|
-
"prepublishOnly": "npm run typecheck && npm run build",
|
|
56
|
+
"prepublishOnly": "npm run typecheck && npm run build && npm run pack:check",
|
|
57
57
|
"pack:check": "npm pack --dry-run"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|