-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract from akeneo/pim-community-dev@89cbc95
With commits: Merge pull request #20361 from akeneo/dsm-update-2023-12-14 DSM Update Merge pull request #20361 from akeneo/dsm-update-2023-12-14
- Loading branch information
akeneo
committed
Dec 14, 2023
1 parent
7267ddf
commit 00bf911
Showing
46 changed files
with
825 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import { Override } from '../../shared'; | ||
declare type AvatarProps = Override<React.HTMLAttributes<HTMLSpanElement>, { | ||
username: string; | ||
firstName: string; | ||
lastName: string; | ||
avatarUrl?: string; | ||
size?: 'default' | 'big'; | ||
}>; | ||
declare const Avatar: ({ username, firstName, lastName, avatarUrl, size, ...rest }: AvatarProps) => React.JSX.Element; | ||
export { Avatar }; | ||
export type { AvatarProps }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import React from 'react'; | ||
import { Override } from '../../shared'; | ||
declare type AvatarsProps = Override<React.HTMLAttributes<HTMLDivElement>, { | ||
max: number; | ||
}>; | ||
declare const Avatars: ({ max, children, ...rest }: AvatarsProps) => React.JSX.Element; | ||
export { Avatars }; | ||
export type { AvatarsProps }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.