cr-ui-lib 1.1.71 → 1.1.73

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
@@ -193,6 +193,7 @@ interface MultipleAutoSuggestionInputProps {
193
193
  placeholder?: string;
194
194
  hasIcon?: boolean;
195
195
  iconClass?: string;
196
+ removeIconClassSize?: number;
196
197
  }
197
198
  declare const MultipleAutoSuggestionInput: React$1.FC<MultipleAutoSuggestionInputProps>;
198
199
 
package/dist/index.d.ts CHANGED
@@ -193,6 +193,7 @@ interface MultipleAutoSuggestionInputProps {
193
193
  placeholder?: string;
194
194
  hasIcon?: boolean;
195
195
  iconClass?: string;
196
+ removeIconClassSize?: number;
196
197
  }
197
198
  declare const MultipleAutoSuggestionInput: React$1.FC<MultipleAutoSuggestionInputProps>;
198
199
 
package/dist/index.js CHANGED
@@ -3044,7 +3044,8 @@ var MultipleAutoSuggestionInput = ({
3044
3044
  // ✅ Destructured prop with default true
3045
3045
  placeholder = "Type or select...",
3046
3046
  hasIcon = false,
3047
- iconClass = ""
3047
+ iconClass = "",
3048
+ removeIconClassSize = 14
3048
3049
  }) => {
3049
3050
  var _a;
3050
3051
  const [filteredOptions, setFilteredOptions] = React.useState(options);
@@ -3210,8 +3211,8 @@ var MultipleAutoSuggestionInput = ({
3210
3211
  "svg",
3211
3212
  {
3212
3213
  xmlns: "http://www.w3.org/2000/svg",
3213
- width: "14",
3214
- height: "14",
3214
+ width: removeIconClassSize,
3215
+ height: removeIconClassSize,
3215
3216
  viewBox: "0 0 14 14",
3216
3217
  fill: "none",
3217
3218
  children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -3256,9 +3257,9 @@ var MultipleAutoSuggestionInput = ({
3256
3257
  "svg",
3257
3258
  {
3258
3259
  xmlns: "http://www.w3.org/2000/svg",
3259
- width: "14",
3260
- height: "14",
3261
- viewBox: "0 0 14 14",
3260
+ width: 5,
3261
+ height: 5,
3262
+ viewBox: "0 0 5 5",
3262
3263
  fill: "none",
3263
3264
  children: /* @__PURE__ */ jsxRuntime.jsx(
3264
3265
  "path",