orphos 0.53.4 → 0.53.5

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/input.js CHANGED
@@ -5,7 +5,7 @@ import { cva } from "cva";
5
5
  import { useId, useState } from "react";
6
6
  import { cn } from "./utils.js";
7
7
  const inputVariants = cva({
8
- base: "no-drag flex h-8.5 w-full min-w-0 items-center rounded-md border bg-background-element px-2.5 py-1 text-foreground text-regular -outline-offset-1 transition-colors placeholder:text-foreground-subtle placeholder:text-regular focus-visible:outline-2 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:outline-2 aria-invalid:outline-danger",
8
+ base: "no-drag flex h-8.5 w-full min-w-0 items-center rounded-md border bg-background-element px-2.5 py-1 text-foreground text-small -outline-offset-1 transition-colors placeholder:text-foreground-subtle placeholder:text-small focus-visible:outline-2 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:outline-2 aria-invalid:outline-danger",
9
9
  variants: {
10
10
  variant: {
11
11
  default: "",
package/dist/textarea.js CHANGED
@@ -3,7 +3,7 @@ import { cn } from "./utils.js";
3
3
  function Textarea({ className, ...props }) {
4
4
  return /*#__PURE__*/ jsx("textarea", {
5
5
  "data-slot": "textarea",
6
- className: cn("scrollbar-hide field-sizing-content flex min-h-16 w-full overflow-y-auto rounded-md border bg-background-element px-2.5 pt-2 pb-6 text-regular leading-normal transition-[color,box-shadow] placeholder:text-foreground-subtle placeholder:text-regular focus-visible:outline-2 focus-visible:-outline-offset-1 disabled:cursor-not-allowed disabled:resize-none disabled:opacity-50 aria-invalid:outline aria-invalid:outline-danger", className),
6
+ className: cn("scrollbar-hide field-sizing-content flex min-h-16 w-full overflow-y-auto rounded-md border bg-background-element px-2.5 pt-2 pb-6 text-small leading-normal transition-[color,box-shadow] placeholder:text-foreground-subtle placeholder:text-small focus-visible:outline-2 focus-visible:-outline-offset-1 disabled:cursor-not-allowed disabled:resize-none disabled:opacity-50 aria-invalid:outline aria-invalid:outline-danger", className),
7
7
  ...props
8
8
  });
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orphos",
3
- "version": "0.53.4",
3
+ "version": "0.53.5",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "exports": {