sestek-component 0.0.14 → 0.0.16
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.cjs.js +12 -12
- package/dist/index.es.d.ts +3 -2
- package/dist/index.es.js +1736 -1747
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export declare const Avatar: ({ url, fullName, type, isActive, }: AvatarProps) =
|
|
|
73
73
|
export declare interface AvatarProps {
|
|
74
74
|
url?: string;
|
|
75
75
|
fullName: string;
|
|
76
|
-
type?: "primary" | "secondary";
|
|
76
|
+
type?: "primary" | "secondary" | "primary-light";
|
|
77
77
|
isActive?: boolean;
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -132,12 +132,13 @@ export declare interface GoodJobMomentProps {
|
|
|
132
132
|
timestamp: string;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
export declare const Header: ({ fullName, logo, action }: HeaderProps) => JSX.Element;
|
|
135
|
+
export declare const Header: ({ fullName, logo, action, avatarType }: HeaderProps) => JSX.Element;
|
|
136
136
|
|
|
137
137
|
export declare interface HeaderProps {
|
|
138
138
|
logo: ReactNode;
|
|
139
139
|
fullName: string;
|
|
140
140
|
action: ReactNode;
|
|
141
|
+
avatarType?: "primary" | "secondary" | "primary-light";
|
|
141
142
|
}
|
|
142
143
|
|
|
143
144
|
export declare const Icon: MemoExoticComponent<typeof IconComponent>;
|