@konoma-development/react-components 0.3.10 → 0.3.11
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.
|
@@ -3,7 +3,7 @@ type LabelPosition = 'top' | 'bottom' | 'left' | 'right';
|
|
|
3
3
|
export type FormValue = string | number | boolean | Option;
|
|
4
4
|
export interface Option {
|
|
5
5
|
value: FormValue;
|
|
6
|
-
label: string | number;
|
|
6
|
+
label: string | number | ReactNode;
|
|
7
7
|
}
|
|
8
8
|
/** Classes for the form components. Not all classes have effects in all components. Properties that start with 'class-' apply to the component in general, other properties apply to specific parts of the component */
|
|
9
9
|
export interface Classes {
|