cr-ui-lib 1.0.15 → 1.0.16

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.d.mts CHANGED
@@ -172,6 +172,7 @@ interface SingleListInputProps {
172
172
  label?: string;
173
173
  buttonClass?: string;
174
174
  labelClass?: string;
175
+ inputClass?: string;
175
176
  }
176
177
  declare const SingleListInput: React$1.FC<SingleListInputProps>;
177
178
 
package/dist/index.d.ts CHANGED
@@ -172,6 +172,7 @@ interface SingleListInputProps {
172
172
  label?: string;
173
173
  buttonClass?: string;
174
174
  labelClass?: string;
175
+ inputClass?: string;
175
176
  }
176
177
  declare const SingleListInput: React$1.FC<SingleListInputProps>;
177
178
 
package/dist/index.js CHANGED
@@ -3033,7 +3033,8 @@ var SingleListInput = ({
3033
3033
  keyDown,
3034
3034
  label,
3035
3035
  buttonClass = "",
3036
- labelClass = ""
3036
+ labelClass = "",
3037
+ inputClass = ""
3037
3038
  }) => {
3038
3039
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { children: [
3039
3040
  /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
@@ -3096,7 +3097,10 @@ var SingleListInput = ({
3096
3097
  value: inputValue,
3097
3098
  onChange,
3098
3099
  onKeyDown: keyDown,
3099
- className: "flex-grow px-0 py-1 bg-[#F8F8F8] text-xs border-none outline-none focus:ring-0"
3100
+ className: (0, import_tailwind_merge16.twMerge)(
3101
+ "flex-grow px-0 py-1 bg-[#F8F8F8] text-xs border-none outline-none focus:ring-0",
3102
+ inputClass
3103
+ )
3100
3104
  }
3101
3105
  )
3102
3106
  ]