@nulogy/components 11.0.0-beta.2 → 11.0.0-beta.3
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.
|
@@ -5,7 +5,7 @@ import type { GroupBase, Props } from "react-select";
|
|
|
5
5
|
import { ComponentSize } from "../NDSProvider/ComponentSizeContext";
|
|
6
6
|
export type NDSOptionValue = string | number | boolean | null;
|
|
7
7
|
export interface NDSOption {
|
|
8
|
-
label:
|
|
8
|
+
label: ReactNode;
|
|
9
9
|
value: NDSOptionValue;
|
|
10
10
|
}
|
|
11
11
|
type CustomProps<IsMulti extends boolean, Group extends GroupBase<NDSOption>> = {
|