mayak-common-library 0.2.37 → 0.2.39

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.cts CHANGED
@@ -1571,11 +1571,11 @@ interface RealtyCardProps {
1571
1571
  declare const RealtyCard: (props: RealtyCardProps) => react_jsx_runtime.JSX.Element;
1572
1572
 
1573
1573
  interface FeedbackCardProps {
1574
- imageUrl: string;
1575
- userName: string;
1576
- feedbackDate: string;
1577
- rating: number;
1578
- feedbackText: string;
1574
+ imageUrl?: string | null;
1575
+ userName?: string | null;
1576
+ feedbackDate?: string | null;
1577
+ rating?: number | null;
1578
+ feedbackText?: string | null;
1579
1579
  }
1580
1580
  declare const FeedbackCard: (props: FeedbackCardProps) => react_jsx_runtime.JSX.Element;
1581
1581
 
package/dist/index.d.ts CHANGED
@@ -1571,11 +1571,11 @@ interface RealtyCardProps {
1571
1571
  declare const RealtyCard: (props: RealtyCardProps) => react_jsx_runtime.JSX.Element;
1572
1572
 
1573
1573
  interface FeedbackCardProps {
1574
- imageUrl: string;
1575
- userName: string;
1576
- feedbackDate: string;
1577
- rating: number;
1578
- feedbackText: string;
1574
+ imageUrl?: string | null;
1575
+ userName?: string | null;
1576
+ feedbackDate?: string | null;
1577
+ rating?: number | null;
1578
+ feedbackText?: string | null;
1579
1579
  }
1580
1580
  declare const FeedbackCard: (props: FeedbackCardProps) => react_jsx_runtime.JSX.Element;
1581
1581