ui-mathilde-web 0.2.5 → 0.3.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/dist/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +16 -0
- package/dist/ui-mathilde-web.js +1832 -1811
- package/dist/ui-mathilde-web.umd.cjs +42 -42
- package/package.json +1 -1
|
@@ -274,6 +274,22 @@ declare interface QuickRange {
|
|
|
274
274
|
};
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
+
export declare const RadioButton: ({ label, options }: RadioButtonProps) => JSX_2.Element;
|
|
278
|
+
|
|
279
|
+
declare interface RadioButtonOption {
|
|
280
|
+
id: string;
|
|
281
|
+
label: string;
|
|
282
|
+
value: string;
|
|
283
|
+
checked?: boolean;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
declare interface RadioButtonProps {
|
|
287
|
+
label?: string;
|
|
288
|
+
options: RadioButtonOption[];
|
|
289
|
+
disabled?: boolean;
|
|
290
|
+
onChange?: (value: string) => void;
|
|
291
|
+
}
|
|
292
|
+
|
|
277
293
|
export declare const SelectForm: ForwardRefExoticComponent<SelectFormProps & RefAttributes<HTMLSelectElement>>;
|
|
278
294
|
|
|
279
295
|
declare interface SelectFormProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
|