@yomologic/react-ui 0.5.11 → 0.6.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.mjs CHANGED
@@ -994,7 +994,7 @@ var Input = React2.forwardRef(
994
994
  "aria-describedby": inputError ? `${fieldId}-error` : helperText ? `${fieldId}-helper` : void 0,
995
995
  className: cn(
996
996
  "w-full px-3 py-2 border rounded-md transition-colors",
997
- "text-(--color-muted-foreground) placeholder-gray-400",
997
+ "text-(--color-foreground) placeholder-gray-400",
998
998
  "focus:outline-none",
999
999
  "disabled:bg-(--color-muted) disabled:cursor-not-allowed disabled:text-(--color-muted-foreground)",
1000
1000
  inputError ? "border-error focus:ring-2 focus:ring-error focus:border-error active:border-error" : "border-(--color-border) focus:ring-2 focus:ring-(--color-primary)/30 focus:border-(--color-primary) active:border-(--color-primary)",
@@ -1238,7 +1238,7 @@ var Textarea = React3.forwardRef(
1238
1238
  "aria-describedby": textareaError ? `${textareaId}-error` : helperText ? `${textareaId}-helper` : void 0,
1239
1239
  className: cn(
1240
1240
  "w-full px-3 py-2 border rounded-md transition-colors",
1241
- "text-(--color-muted-foreground) placeholder-gray-400",
1241
+ "text-(--color-foreground) placeholder-gray-400",
1242
1242
  "focus:outline-none",
1243
1243
  "disabled:bg-(--color-muted) disabled:cursor-not-allowed disabled:text-(--color-muted-foreground)",
1244
1244
  textareaError ? "border-error focus:ring-2 focus:ring-error focus:border-error active:border-error" : "border-(--color-border) focus:ring-2 focus:ring-(--color-primary)/30 focus:border-(--color-primary) active:border-(--color-primary)",