@mirantes-micro/foundation-design-system 1.2.242 → 1.2.244
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.ts +7 -2
- package/dist/index.js +311 -311
- package/package.json +191 -179
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ declare function stringToObj<T>(inputString: string, separator: string): T | und
|
|
|
17
17
|
|
|
18
18
|
declare function getInitials(fullName: string): string;
|
|
19
19
|
|
|
20
|
-
type TLocale =
|
|
20
|
+
type TLocale = "pt" | "en" | "fr";
|
|
21
21
|
interface IMirantesFoundationProviderProps {
|
|
22
22
|
children: ReactNode;
|
|
23
23
|
Notification?: ReactNode;
|
|
@@ -148,6 +148,11 @@ type User$3 = {
|
|
|
148
148
|
headline?: string;
|
|
149
149
|
followersCount?: number;
|
|
150
150
|
followingCount?: number;
|
|
151
|
+
socialStats?: {
|
|
152
|
+
contactsCount?: number;
|
|
153
|
+
followingCount?: number;
|
|
154
|
+
followersCount?: number;
|
|
155
|
+
};
|
|
151
156
|
postsCount?: number;
|
|
152
157
|
profileCompletedPercentage?: number;
|
|
153
158
|
};
|
|
@@ -164,7 +169,7 @@ type MobileWorkspaceBarProps = {
|
|
|
164
169
|
onCreateJob?: () => void;
|
|
165
170
|
onJobsClick?: () => void;
|
|
166
171
|
};
|
|
167
|
-
declare function MobileWorkspaceBar({ onCreateJob,
|
|
172
|
+
declare function MobileWorkspaceBar({ onCreateJob, }: MobileWorkspaceBarProps): React__default.JSX.Element;
|
|
168
173
|
|
|
169
174
|
declare function Header({ className }: {
|
|
170
175
|
className?: string;
|