@northlight/ui 2.33.0 → 2.33.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.
@@ -146,6 +146,10 @@ interface SelectProps<T, K extends boolean> extends Omit<Props<T, K, GroupBase<T
146
146
  customOption?: ((option: T) => JSX.Element) | null;
147
147
  isMulti?: K;
148
148
  ref?: Ref<SelectInstance<T, K, GroupBase<T>>>;
149
+ /** Should return a unique key that is tracked so when the key changes
150
+ the sub-components for react-select will be recomputed/rerendered
151
+ */
152
+ generateComponentsUpdateKey?: () => unknown;
149
153
  }
150
154
  type SelectFieldProps<T, K extends boolean = false> = SelectProps<T, K> & Omit<InputFieldProps, 'isMulti'> & {
151
155
  direction?: StackDirection;