fis-component 0.0.45 → 0.0.46

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/cjs/index.js CHANGED
@@ -64623,7 +64623,7 @@ const DivContainerSC$7 = styled.div `
64623
64623
  cursor: default;
64624
64624
  }
64625
64625
 
64626
- &:hover:not(:has(.icon-suffix:hover)) {
64626
+ &:hover:not(.disabled):not(:has(.icon-suffix:hover)) {
64627
64627
  outline-color: ${getTheme("com/input/field/default/border/hover")};
64628
64628
  background-color: ${getTheme("com/input/field/default/background/hover")};
64629
64629
 
@@ -64684,9 +64684,9 @@ const FISInputField = React.forwardRef(({ onClickSuffix, onClickPrefix, ...props
64684
64684
  dropdownPrefix: typePrefix === "dropdown",
64685
64685
  iconPrefix: iconPrefix,
64686
64686
  prefix: typePrefix === "prefix" || typePrefix === "dropdown",
64687
- suffix: typeSuffix === "suffix" ||
64688
- typeSuffix === "dropdown",
64687
+ suffix: typeSuffix === "suffix" || typeSuffix === "dropdown",
64689
64688
  iconSuffix: typeSuffix === "icon",
64689
+ disabled: disabled,
64690
64690
  }), children: [iconPrefix && typePrefix !== "prefix" && typePrefix !== "dropdown" && (jsxRuntime.jsx(DivIconSC$2, { className: classNames({
64691
64691
  "input-text-lg": sizeInput === "lg",
64692
64692
  }), children: iconPrefix })), typePrefix === "prefix" && (jsxRuntime.jsxs(DivPrefixSC, { onClick: onClickPrefix, className: classNames({ disabled: disabled }), children: [iconPrefix && jsxRuntime.jsx(DivIconPrefixSC$1, { children: iconPrefix }), labelPrefix && jsxRuntime.jsx(SpanTextPrefixSC, { children: labelPrefix })] })), typePrefix === "dropdown" && (jsxRuntime.jsxs(DivDropdownPreFixSC, { className: classNames({