@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.
- package/dist/es/northlight.d.ts +4 -0
- package/dist/es/northlight.js +5259 -5256
- package/dist/es/northlight.js.map +1 -1
- package/dist/umd/northlight.cjs +5284 -5281
- package/dist/umd/northlight.cjs.map +1 -1
- package/dist/umd/northlight.min.cjs +3 -3
- package/dist/umd/northlight.min.cjs.map +1 -1
- package/package.json +2 -2
package/dist/es/northlight.d.ts
CHANGED
|
@@ -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;
|