mayak-common-library 0.2.32 → 0.2.34

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
@@ -1445,10 +1445,10 @@ interface CasesSliderProps {
1445
1445
  declare const CasesSlider: ({ cases }: CasesSliderProps) => react_jsx_runtime.JSX.Element;
1446
1446
 
1447
1447
  interface CasesProps {
1448
- label?: string;
1448
+ label?: string | null;
1449
1449
  cases: {
1450
- imageUrl?: string;
1451
- description?: ReactNode;
1450
+ image?: string | null;
1451
+ description?: ReactNode | null;
1452
1452
  }[];
1453
1453
  }
1454
1454
  declare const Cases: ({ cases, label }: CasesProps) => react_jsx_runtime.JSX.Element;
package/dist/index.d.ts CHANGED
@@ -1445,10 +1445,10 @@ interface CasesSliderProps {
1445
1445
  declare const CasesSlider: ({ cases }: CasesSliderProps) => react_jsx_runtime.JSX.Element;
1446
1446
 
1447
1447
  interface CasesProps {
1448
- label?: string;
1448
+ label?: string | null;
1449
1449
  cases: {
1450
- imageUrl?: string;
1451
- description?: ReactNode;
1450
+ image?: string | null;
1451
+ description?: ReactNode | null;
1452
1452
  }[];
1453
1453
  }
1454
1454
  declare const Cases: ({ cases, label }: CasesProps) => react_jsx_runtime.JSX.Element;