@novie/ui 0.1.2 → 0.1.4
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 +19 -0
- package/dist/components/ui/novie-logo.d.ts +9 -0
- package/dist/components/ui/novie-logo.d.ts.map +1 -0
- package/dist/components/ui/novie-symbol.d.ts +7 -0
- package/dist/components/ui/novie-symbol.d.ts.map +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/tailwind.config.ts +17 -0
package/dist/index.js
CHANGED
|
@@ -90,7 +90,7 @@ function P({ className: e, type: t, ...n }) {
|
|
|
90
90
|
return /* @__PURE__ */ C("input", {
|
|
91
91
|
type: t,
|
|
92
92
|
"data-slot": "input",
|
|
93
|
-
className: j("flex h-8 w-full rounded-lg border border-input bg-background px-2.5 py-2 text-sm ring-offset-background transition-colors", "file:border-0 file:bg-transparent file:text-sm file:font-medium", "placeholder:text-
|
|
93
|
+
className: j("flex h-8 w-full rounded-lg border border-input bg-background px-2.5 py-2 text-sm ring-offset-background transition-colors", "file:border-0 file:bg-transparent file:text-sm file:font-medium", "placeholder:text-primary-secondary", "focus-visible:outline-none focus-visible:shadow-[0_1px_2px_0_hsl(var(--shadow-sm))]", "disabled:cursor-not-allowed disabled:opacity-50", "aria-invalid:border-destructive aria-invalid:ring-destructive/20", e),
|
|
94
94
|
...n
|
|
95
95
|
});
|
|
96
96
|
}
|