@mirantes-micro/foundation-design-system 1.2.397 → 1.2.399
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 +4 -3
- package/dist/index.js +156 -154
- package/package.json +212 -212
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;
|
|
@@ -834,7 +835,7 @@ interface IMessageButtonProps {
|
|
|
834
835
|
className?: string;
|
|
835
836
|
disabled?: boolean;
|
|
836
837
|
onClick?: () => void;
|
|
837
|
-
variant?:
|
|
838
|
+
variant?: "default" | "small";
|
|
838
839
|
onConversationReady?: (conversationId: string) => void;
|
|
839
840
|
}
|
|
840
841
|
declare function MessagesButtonFromPage({ user, label, className, disabled, onClick: customOnClick, variant, }: IMessageButtonProps): React__default.JSX.Element;
|
|
@@ -2348,7 +2349,7 @@ declare function RatingsSummary({ variant, asPage, receiverUserId, receiverPageI
|
|
|
2348
2349
|
interface ShareProfileDivProps extends RattingSuggestionCardProps {
|
|
2349
2350
|
className?: string;
|
|
2350
2351
|
}
|
|
2351
|
-
declare function ShareProfile({ asPage, page, user, className }: ShareProfileDivProps): React__default.JSX.Element;
|
|
2352
|
+
declare function ShareProfile({ asPage, page, user, className, }: ShareProfileDivProps): React__default.JSX.Element;
|
|
2352
2353
|
|
|
2353
2354
|
interface ShareProfileButtonProps {
|
|
2354
2355
|
onClick: () => void;
|