@mirantes-micro/foundation-design-system 1.2.380 → 1.2.382

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +5 -3
  2. package/dist/index.js +242 -211
  3. package/package.json +212 -212
package/dist/index.d.ts CHANGED
@@ -745,7 +745,7 @@ interface TripleInputDateProps {
745
745
  onChange?: (dateData: DateOutput) => void;
746
746
  isNewChevronIcon?: boolean;
747
747
  }
748
- declare const TripleInputDate: ({ label, required, disabled, error, showDay, showMonth, showYear, lang, value, minYear, maxYear, onChange, isNewChevronIcon }: TripleInputDateProps) => React__default.JSX.Element;
748
+ declare const TripleInputDate: ({ label, required, disabled, error, showDay, showMonth, showYear, lang, value, minYear, maxYear, onChange, isNewChevronIcon, }: TripleInputDateProps) => React__default.JSX.Element;
749
749
 
750
750
  interface AddressSuggestion {
751
751
  country?: string;
@@ -1861,7 +1861,7 @@ type PostReactionsProps$1 = {
1861
1861
  id: string;
1862
1862
  userId: string;
1863
1863
  postId: string;
1864
- reaction: "LIKE" | "LOVE" | "HAHA" | "WOW" | "SAD" | "ANGRY";
1864
+ reaction: "LIKE" | "LOVE" | "HAHA" | "WOW" | "SAD" | "ANGRY" | "AGREE" | "DISAGREE" | "NO_COMMENT" | "EUREKA" | "SUPPORT";
1865
1865
  createdAt: string;
1866
1866
  updatedAt: string;
1867
1867
  user: User$1;
@@ -2233,6 +2233,7 @@ declare const useApiCheckRater: ({ userId, pageId, communityId, forAPage, inView
2233
2233
  }) => {
2234
2234
  hasRated: boolean;
2235
2235
  isCheckingRater: boolean;
2236
+ error: Error | null;
2236
2237
  };
2237
2238
 
2238
2239
  type AddRatingProps = {
@@ -2267,7 +2268,7 @@ type AvatarRatingBadgeProps = {
2267
2268
  };
2268
2269
  declare function AvatarRatingBadge({ name, asPage, src, rating, isCommunity, className, slug, }: AvatarRatingBadgeProps): React__default.JSX.Element;
2269
2270
 
2270
- declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverUserId, receiverCommunityId, inlinePreview, onOpenAllRatings, }: {
2271
+ declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverUserId, receiverCommunityId, inlinePreview, onOpenAllRatings, externalError, }: {
2271
2272
  variant?: "maximized" | "minimized";
2272
2273
  forPage?: boolean;
2273
2274
  receiverUserId?: string;
@@ -2275,6 +2276,7 @@ declare function RatingReviewsList({ variant, forPage, receiverPageId, receiverU
2275
2276
  receiverCommunityId?: string;
2276
2277
  inlinePreview?: boolean;
2277
2278
  onOpenAllRatings?: () => void;
2279
+ externalError?: unknown;
2278
2280
  }): React__default.JSX.Element | null;
2279
2281
 
2280
2282
  interface IRatingsCardProps {