mayak-common-library 0.0.906 → 0.0.907
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1356,8 +1356,9 @@ declare const LogoBlock: FC<LogoBlockProps>;
|
|
|
1356
1356
|
declare const LogoBlockWhite: () => react_jsx_runtime.JSX.Element;
|
|
1357
1357
|
|
|
1358
1358
|
interface BadgeComponentProps {
|
|
1359
|
-
content?:
|
|
1359
|
+
content?: number;
|
|
1360
1360
|
className?: string;
|
|
1361
|
+
showZero?: boolean;
|
|
1361
1362
|
}
|
|
1362
1363
|
declare const BadgeComponent: FC<BadgeComponentProps & PropsWithChildren>;
|
|
1363
1364
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1356,8 +1356,9 @@ declare const LogoBlock: FC<LogoBlockProps>;
|
|
|
1356
1356
|
declare const LogoBlockWhite: () => react_jsx_runtime.JSX.Element;
|
|
1357
1357
|
|
|
1358
1358
|
interface BadgeComponentProps {
|
|
1359
|
-
content?:
|
|
1359
|
+
content?: number;
|
|
1360
1360
|
className?: string;
|
|
1361
|
+
showZero?: boolean;
|
|
1361
1362
|
}
|
|
1362
1363
|
declare const BadgeComponent: FC<BadgeComponentProps & PropsWithChildren>;
|
|
1363
1364
|
|