mayak-common-library 0.0.366 → 0.0.368

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.mts CHANGED
@@ -1448,6 +1448,8 @@ interface HProps extends PropsWithChildren {
1448
1448
  smallerXs?: boolean;
1449
1449
  leftXs?: boolean;
1450
1450
  bold?: boolean;
1451
+ uppercase?: boolean;
1452
+ catalog?: boolean;
1451
1453
  }
1452
1454
 
1453
1455
  declare const H1: FC<HProps>;
@@ -1521,15 +1523,15 @@ interface CategoryCardProps {
1521
1523
  declare function CategoryCard({ link, title, image_url, }: CategoryCardProps): react_jsx_runtime.JSX.Element;
1522
1524
 
1523
1525
  interface DetailsProps {
1524
- studio?: boolean;
1525
- rooms?: string;
1526
- areaTotal?: string;
1527
- areaLand?: string;
1528
- floor?: string;
1529
- totalFloors?: string;
1526
+ studio?: boolean | null;
1527
+ rooms?: string | null;
1528
+ areaTotal?: string | null;
1529
+ areaLand?: string | null;
1530
+ floor?: string | null;
1531
+ totalFloors?: string | null;
1530
1532
  realtyType?: {
1531
- machineName?: string;
1532
- value?: string;
1533
+ machineName?: string | null;
1534
+ value?: string | null;
1533
1535
  };
1534
1536
  houseTypes?: string[];
1535
1537
  }
package/dist/index.d.ts CHANGED
@@ -1448,6 +1448,8 @@ interface HProps extends PropsWithChildren {
1448
1448
  smallerXs?: boolean;
1449
1449
  leftXs?: boolean;
1450
1450
  bold?: boolean;
1451
+ uppercase?: boolean;
1452
+ catalog?: boolean;
1451
1453
  }
1452
1454
 
1453
1455
  declare const H1: FC<HProps>;
@@ -1521,15 +1523,15 @@ interface CategoryCardProps {
1521
1523
  declare function CategoryCard({ link, title, image_url, }: CategoryCardProps): react_jsx_runtime.JSX.Element;
1522
1524
 
1523
1525
  interface DetailsProps {
1524
- studio?: boolean;
1525
- rooms?: string;
1526
- areaTotal?: string;
1527
- areaLand?: string;
1528
- floor?: string;
1529
- totalFloors?: string;
1526
+ studio?: boolean | null;
1527
+ rooms?: string | null;
1528
+ areaTotal?: string | null;
1529
+ areaLand?: string | null;
1530
+ floor?: string | null;
1531
+ totalFloors?: string | null;
1530
1532
  realtyType?: {
1531
- machineName?: string;
1532
- value?: string;
1533
+ machineName?: string | null;
1534
+ value?: string | null;
1533
1535
  };
1534
1536
  houseTypes?: string[];
1535
1537
  }