@privateers/ui 0.3.20 → 0.4.0
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.cjs +5 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/styles/brands/index.css +1 -0
- package/dist/styles/brands/privateers-2026.css +198 -0
- package/dist/styles/index.css +6 -0
- package/dist/styles/library.css +6 -0
- package/dist/styles/tokens.css +10 -0
- package/dist/tailwind/preset.cjs +11 -1
- package/dist/tailwind/preset.cjs.map +1 -1
- package/dist/tailwind/preset.js +11 -1
- package/dist/tailwind/preset.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -753,7 +753,8 @@ function Input({ className, type, ...props }) {
|
|
|
753
753
|
type,
|
|
754
754
|
"data-slot": "input",
|
|
755
755
|
className: cn(
|
|
756
|
-
|
|
756
|
+
// text-sm on all viewports: our font tokens make text-sm ≥16px, which is enough to prevent iOS Safari auto-zoom — no need for the text-base md:text-sm escalation
|
|
757
|
+
"dark:bg-input/30 border-input focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 h-9 rounded-md border bg-transparent px-2.5 py-1 text-sm shadow-xs transition-[color,box-shadow] file:h-7 file:text-sm file:font-medium focus-visible:ring-[3px] aria-invalid:ring-[3px] file:text-foreground placeholder:text-muted-foreground w-full min-w-0 outline-none file:inline-flex file:border-0 file:bg-transparent disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50",
|
|
757
758
|
className
|
|
758
759
|
),
|
|
759
760
|
...props
|
|
@@ -1890,7 +1891,7 @@ function TabsList({
|
|
|
1890
1891
|
{
|
|
1891
1892
|
"data-slot": "tabs-list",
|
|
1892
1893
|
className: cn(
|
|
1893
|
-
"bg-muted text-muted-foreground inline-flex
|
|
1894
|
+
"bg-muted text-muted-foreground inline-flex items-center justify-center rounded-lg p-1",
|
|
1894
1895
|
className
|
|
1895
1896
|
),
|
|
1896
1897
|
...props
|
|
@@ -1935,7 +1936,8 @@ function Textarea({ className, ...props }) {
|
|
|
1935
1936
|
{
|
|
1936
1937
|
"data-slot": "textarea",
|
|
1937
1938
|
className: cn(
|
|
1938
|
-
|
|
1939
|
+
// text-sm on all viewports: our font tokens make text-sm ≥16px, which is enough to prevent iOS Safari auto-zoom — no need for the text-base md:text-sm escalation
|
|
1940
|
+
"border-input dark:bg-input/30 focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 rounded-md border bg-transparent px-2.5 py-2 text-sm shadow-xs transition-[color,box-shadow] focus-visible:ring-[3px] aria-invalid:ring-[3px] placeholder:text-muted-foreground flex field-sizing-content min-h-16 w-full outline-none disabled:cursor-not-allowed disabled:opacity-50",
|
|
1939
1941
|
className
|
|
1940
1942
|
),
|
|
1941
1943
|
...props
|