@asymmetric-effort/specifyjs 0.2.26 → 0.2.27
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.
|
@@ -293,6 +293,8 @@ interface CheckboxProps {
|
|
|
293
293
|
error?: string;
|
|
294
294
|
/** Size variant */
|
|
295
295
|
size?: 'sm' | 'md' | 'lg';
|
|
296
|
+
/** HTML id for the input element */
|
|
297
|
+
id?: string;
|
|
296
298
|
}
|
|
297
299
|
declare function Checkbox(props: CheckboxProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
|
|
298
300
|
|