@northlight/ui 2.24.1 → 2.24.2

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.
@@ -12236,6 +12236,7 @@ const Select = forwardRef$1((_a, ref) => {
12236
12236
  "data-testid": testId,
12237
12237
  customOption = null,
12238
12238
  customTag = null,
12239
+ isClearable = false,
12239
12240
  value,
12240
12241
  icon
12241
12242
  } = _b, rest = __objRest$l(_b, [
@@ -12249,6 +12250,7 @@ const Select = forwardRef$1((_a, ref) => {
12249
12250
  "data-testid",
12250
12251
  "customOption",
12251
12252
  "customTag",
12253
+ "isClearable",
12252
12254
  "value",
12253
12255
  "icon"
12254
12256
  ]);
@@ -12280,7 +12282,7 @@ const Select = forwardRef$1((_a, ref) => {
12280
12282
  useBasicStyles: true,
12281
12283
  closeMenuOnSelect: !isMulti,
12282
12284
  hideSelectedOptions: false,
12283
- isClearable: false,
12285
+ isClearable,
12284
12286
  onChange: handleChange,
12285
12287
  selectedOptionStyle: "check",
12286
12288
  chakraStyles: customSelectStyles,