mayak-common-library 0.2.37 → 0.2.38
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.cjs +1 -1
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
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
|
|
1575
|
-
userName
|
|
1576
|
-
feedbackDate
|
|
1577
|
-
rating
|
|
1578
|
-
feedbackText
|
|
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
|
|
1575
|
-
userName
|
|
1576
|
-
feedbackDate
|
|
1577
|
-
rating
|
|
1578
|
-
feedbackText
|
|
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
|
|