@lumx/react 4.0.1-alpha.8 → 4.1.0

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/index.d.ts CHANGED
@@ -247,7 +247,7 @@ interface AutocompleteMultipleProps extends AutocompleteProps {
247
247
  /** Alignment of the chips in the autocomplete. */
248
248
  chipsAlignment?: HorizontalAlignment;
249
249
  /** Selected value render function. Default: Renders the value inside of a Chip. */
250
- selectedChipRender(choice: any, index: number, onClear?: (event: React.MouseEvent, choice: any) => void, isDisabled?: boolean): ReactNode | string;
250
+ selectedChipRender(choice: any, index: number, onClear?: (event: React.MouseEvent, val: any) => void, isDisabled?: boolean): ReactNode | string;
251
251
  }
252
252
  /**
253
253
  * AutocompleteMultiple component.