@mirantes-micro/foundation-design-system 1.2.396 → 1.2.398
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/index.d.ts +2 -1
- package/dist/index.js +203 -201
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -604,8 +604,9 @@ type ButtonProps = {
|
|
|
604
604
|
};
|
|
605
605
|
declare function Button({ children, className, disabled, isLoading, onClick, type, }: ButtonProps): React__default.JSX.Element;
|
|
606
606
|
|
|
607
|
-
declare function CheckBoxInput({ isChecked, onClick, label, disabled, }: {
|
|
607
|
+
declare function CheckBoxInput({ isChecked, onClick, label, disabled, isRequired, }: {
|
|
608
608
|
isChecked?: boolean;
|
|
609
|
+
isRequired?: boolean;
|
|
609
610
|
onClick?: (e: React__default.MouseEvent<HTMLDivElement> | React__default.KeyboardEvent<HTMLDivElement>) => void;
|
|
610
611
|
label?: string;
|
|
611
612
|
disabled?: boolean;
|