infinity-ui-elements 1.8.14 → 1.8.15
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.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -3092,7 +3092,7 @@ const Radio = React.forwardRef(({ label, errorText, size = "medium", validationS
|
|
|
3092
3092
|
});
|
|
3093
3093
|
Radio.displayName = "Radio";
|
|
3094
3094
|
|
|
3095
|
-
const textFieldVariants = cva("relative flex items-center gap-2 border rounded-large transition-all font-
|
|
3095
|
+
const textFieldVariants = cva("relative flex items-center gap-2 border rounded-large transition-all font-functional font-size-100 leading-100", {
|
|
3096
3096
|
variants: {
|
|
3097
3097
|
size: {
|
|
3098
3098
|
small: "h-[28px] px-3 text-xs gap-2",
|
|
@@ -3184,7 +3184,7 @@ const TextField = React.forwardRef(({ label, helperText, errorText, successText,
|
|
|
3184
3184
|
? "text-feedback-ink-positive-intense"
|
|
3185
3185
|
: currentValidationState === "negative"
|
|
3186
3186
|
? "text-feedback-ink-negative-subtle"
|
|
3187
|
-
: "text-surface-ink-neutral-muted"), children: prefix })), jsx("input", { ref: ref, value: inputValue, onChange: handleChange, disabled: isDisabled, required: isRequired, className: cn("flex-1 bg-transparent border-none outline-none text-surface-ink-neutral-normal placeholder:text-surface-ink-neutral-muted disabled:cursor-not-allowed disabled:text-surface-ink-neutral-disabled
|
|
3187
|
+
: "text-surface-ink-neutral-muted"), children: prefix })), jsx("input", { ref: ref, value: inputValue, onChange: handleChange, disabled: isDisabled, required: isRequired, className: cn("flex-1 bg-transparent border-none outline-none text-surface-ink-neutral-normal placeholder:text-surface-ink-neutral-muted disabled:cursor-not-allowed disabled:text-surface-ink-neutral-disabled", inputClassName), ...props }), showClearButton && hasValue && !isDisabled && (jsx("button", { type: "button", onClick: handleClear, className: "shrink-0 flex items-center justify-center text-surface-ink-neutral-muted hover:text-surface-ink-neutral-normal transition-colors", tabIndex: -1, children: jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsx("path", { d: "M12 4L4 12M4 4L12 12", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" }) }) })), suffix && (jsx("span", { className: cn("shrink-0 flex items-center", isDisabled
|
|
3188
3188
|
? "text-surface-ink-neutral-disabled"
|
|
3189
3189
|
: currentValidationState === "positive"
|
|
3190
3190
|
? "text-feedback-ink-positive-intense"
|