@mindly/ui-components 5.97.5 → 5.97.7
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/features/FilterFeature/types.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/Avatar_v2/Avatar_v2.d.ts +1 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/lib2/features/FilterFeature/types.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/Avatar_v2/Avatar_v2.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1099,6 +1099,7 @@ type AvatarProps = {
|
|
|
1099
1099
|
variant?: 'small' | 'medium' | 'smaller' | 'large' | 'xl' | 'xs';
|
|
1100
1100
|
round?: AvatarRoundVariants;
|
|
1101
1101
|
className?: string;
|
|
1102
|
+
wrapperClassName?: string;
|
|
1102
1103
|
src?: string;
|
|
1103
1104
|
alt?: string;
|
|
1104
1105
|
showSkeleton?: boolean;
|
|
@@ -3163,6 +3164,8 @@ type FilterFeatureProps = {
|
|
|
3163
3164
|
badge?: BadgeProps;
|
|
3164
3165
|
description?: string;
|
|
3165
3166
|
multiple?: boolean;
|
|
3167
|
+
totalItems?: number;
|
|
3168
|
+
isLoadingTotalItems?: boolean;
|
|
3166
3169
|
onChange?(value: FilterValue): void;
|
|
3167
3170
|
};
|
|
3168
3171
|
|