@mindly/ui-components 8.6.6 → 8.6.8
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/cjs/index.js +4 -4
- package/dist/cjs/lib2/shared/ui/SpecialistProfileViewCounter/SpecialistProfileViewCounter.d.ts +2 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/shared/ui/SpecialistProfileViewCounter/SpecialistProfileViewCounter.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/esm/lib2/shared/ui/SpecialistProfileViewCounter/SpecialistProfileViewCounter.d.ts
CHANGED
|
@@ -5,7 +5,8 @@ type SpecialistProfileViewCounterProps = {
|
|
|
5
5
|
icon?: FC<SVGAttributes<SVGElement>>;
|
|
6
6
|
iconSize?: number;
|
|
7
7
|
onClick?: () => void;
|
|
8
|
-
hasUnreadViews
|
|
8
|
+
hasUnreadViews: boolean;
|
|
9
|
+
count: number;
|
|
9
10
|
};
|
|
10
11
|
declare const SpecialistProfileViewCounter: React.FC<SpecialistProfileViewCounterProps>;
|
|
11
12
|
export default SpecialistProfileViewCounter;
|
package/dist/index.d.ts
CHANGED
|
@@ -2021,7 +2021,8 @@ type SpecialistProfileViewCounterProps = {
|
|
|
2021
2021
|
icon?: FC<SVGAttributes<SVGElement>>;
|
|
2022
2022
|
iconSize?: number;
|
|
2023
2023
|
onClick?: () => void;
|
|
2024
|
-
hasUnreadViews
|
|
2024
|
+
hasUnreadViews: boolean;
|
|
2025
|
+
count: number;
|
|
2025
2026
|
};
|
|
2026
2027
|
declare const SpecialistProfileViewCounter: React__default.FC<SpecialistProfileViewCounterProps>;
|
|
2027
2028
|
|