@mirantes-micro/foundation-design-system 1.2.256 → 1.2.258

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 CHANGED
@@ -559,8 +559,9 @@ type CustomSelectInputProps = {
559
559
  disabled?: boolean;
560
560
  onSearch?: (query: string) => void;
561
561
  isLoading?: boolean;
562
+ reset?: boolean;
562
563
  };
563
- declare function CustomSelectInput({ options, value, onChange, placeholder, className, enableSearch, floattable, required, showCheck, label, error, disabled, onSearch, isLoading, }: CustomSelectInputProps): React$1.JSX.Element;
564
+ declare function CustomSelectInput({ options, value, onChange, placeholder, className, enableSearch, floattable, required, showCheck, label, error, disabled, onSearch, isLoading, reset, }: CustomSelectInputProps): React$1.JSX.Element;
564
565
 
565
566
  interface EmojiPickerButtonProps {
566
567
  onEmojiSelect: (emoji: string) => void;
@@ -1936,11 +1937,9 @@ type AddRatingProps = {
1936
1937
  userSlug?: string;
1937
1938
  pageSlug?: string;
1938
1939
  communitySlug?: string;
1940
+ align?: "left" | "center" | "right";
1939
1941
  };
1940
- declare function AddRating({ enableTitle, variantStars, starSize, forAPage, receiverPageId, receiverUserId, receiverCommunityId, className, // <-- RECEBIDO
1941
- isCommunity, // <-- NOVA PROP
1942
- variant, // <-- NOVA PROP
1943
- userSlug, pageSlug, communitySlug, }: AddRatingProps): React__default.JSX.Element;
1942
+ declare function AddRating({ enableTitle, variantStars, starSize, forAPage, receiverPageId, receiverUserId, receiverCommunityId, className, isCommunity, variant, userSlug, pageSlug, communitySlug, align, }: AddRatingProps): React__default.JSX.Element;
1944
1943
 
1945
1944
  type AvatarRatingBadgeProps = {
1946
1945
  name?: string;
@@ -1950,7 +1949,7 @@ type AvatarRatingBadgeProps = {
1950
1949
  isCommunity?: boolean;
1951
1950
  className?: string;
1952
1951
  };
1953
- declare function AvatarRatingBadge({ name, asPage, src, rating, isCommunity, }: AvatarRatingBadgeProps): React__default.JSX.Element;
1952
+ declare function AvatarRatingBadge({ name, asPage, src, rating, isCommunity, className, }: AvatarRatingBadgeProps): React__default.JSX.Element;
1954
1953
 
1955
1954
  declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverUserId, receiverCommunityId, inlinePreview, onOpenAllRatings, }: {
1956
1955
  variant?: "maximized" | "minimized";