cekat-ui 1.2.7 → 1.2.9

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.
@@ -1,4 +1,13 @@
1
1
  import { AvatarGroupSize } from './avatargroup.types';
2
+ export declare const avatarInitialsPalette: {
3
+ bg: string;
4
+ text: string;
5
+ }[];
6
+ /** Deterministic pick from `avatarInitialsPalette` so the same avatar always gets the same color across renders. */
7
+ export declare const getAvatarInitialsColor: (seed: string) => {
8
+ bg: string;
9
+ text: string;
10
+ };
2
11
  export declare const avatarGroupSizeMap: Record<AvatarGroupSize, {
3
12
  box: number;
4
13
  overlap: number;