@mirantes-micro/foundation-design-system 1.2.103 → 1.2.105

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
@@ -903,8 +903,10 @@ type AddRatingProps = {
903
903
  receiverUserId?: string;
904
904
  receiverCommunityId?: string;
905
905
  className?: string;
906
+ isCommunity?: boolean;
906
907
  };
907
- declare function AddRating({ enableTitle, variantStars, starSize, forAPage, receiverPageId, receiverUserId, receiverCommunityId, className, }: AddRatingProps): React__default.JSX.Element;
908
+ declare function AddRating({ enableTitle, variantStars, starSize, forAPage, receiverPageId, receiverUserId, receiverCommunityId, className, // <-- RECEBIDO
909
+ isCommunity, }: AddRatingProps): React__default.JSX.Element;
908
910
 
909
911
  interface PageFloatFooterProps {
910
912
  /**
@@ -1477,8 +1479,9 @@ interface PdfReaderProps {
1477
1479
  pdfUrl?: string;
1478
1480
  totalPages?: number;
1479
1481
  pdfName?: string;
1482
+ className?: string;
1480
1483
  }
1481
- declare const PdfReader: ({ pdfUrl, totalPages: initialTotalPages, pdfName: initialPdfName }: PdfReaderProps) => React__default.JSX.Element;
1484
+ declare const PdfReader: ({ pdfUrl, totalPages: initialTotalPages, pdfName: initialPdfName, className }: PdfReaderProps) => React__default.JSX.Element;
1482
1485
 
1483
1486
  interface PdfFullscreenViewProps {
1484
1487
  pdfUrl: string;