-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Replace Github contributors list to be from vibe-storybook-com…
…ponents (#1721)
- Loading branch information
1 parent
b166eda
commit bf7c1e9
Showing
8 changed files
with
77 additions
and
162 deletions.
There are no files selected for viewing
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
30 changes: 0 additions & 30 deletions
30
src/storybook/stand-alone-documentaion/welcome/other-contributors-list/contributors.tsx
This file was deleted.
Oops, something went wrong.
114 changes: 0 additions & 114 deletions
114
...book/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.jsx
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
...nd-alone-documentaion/welcome/other-contributors-list/other-contributors-list.module.scss
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,3 @@ | ||
.contributorsList { | ||
margin-top: var(--sb-spacing-between-section-items); | ||
} |
9 changes: 0 additions & 9 deletions
9
...ook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.scss
This file was deleted.
Oops, something went wrong.
66 changes: 66 additions & 0 deletions
66
...book/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.tsx
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,66 @@ | ||
import { GithubContributorsList, ContributorsList, Paragraph } from "vibe-storybook-components"; | ||
import styles from "./other-contributors-list.module.scss"; | ||
|
||
const excludedContributorsIds: Set<number> = new Set(); | ||
excludedContributorsIds.add(41898282); // github-actions[bot] | ||
excludedContributorsIds.add(49699333); // dependabot[bot] | ||
excludedContributorsIds.add(19733683); // snyk-bot | ||
|
||
const STATIC_FOUNDING_DESIGNERS = [ | ||
{ | ||
name: "Evgeniy Kazinec", | ||
href: "https://www.linkedin.com/in/evgeniy-kazinec/" | ||
}, | ||
{ | ||
name: "Rotem Dekel", | ||
href: "https://www.linkedin.com/in/rotem-dekel-7a8b12133/" | ||
} | ||
]; | ||
const STATIC_CONTRIBUTORS = [ | ||
{ | ||
name: "Devorah Friedman", | ||
href: "mailto:[email protected]" | ||
}, | ||
{ | ||
name: "Dmitry Kogan", | ||
href: "mailto:[email protected]" | ||
}, | ||
{ | ||
name: "Meytal Badichi", | ||
href: "mailto:mailto:[email protected]" | ||
}, | ||
{ | ||
name: "Shay Cohen", | ||
href: "mailto:[email protected]" | ||
}, | ||
{ | ||
name: "Eylon Goren", | ||
href: "mailto:[email protected]" | ||
}, | ||
{ | ||
name: "Noa Fenko", | ||
href: "mailto:[email protected]" | ||
}, | ||
{ | ||
name: "LeanyLabs", | ||
href: "https://github.com/LeanyLabs" | ||
}, | ||
{ | ||
name: "Hadas Farhi", | ||
href: "https://github.com/hadasfa" | ||
} | ||
]; | ||
|
||
export const OtherContributorsList = () => { | ||
return ( | ||
<Paragraph className={styles.contributorsList}> | ||
Special thanks to our founding designers: <ContributorsList contributorsData={STATIC_FOUNDING_DESIGNERS} /> | ||
<GithubContributorsList | ||
organizationName="mondaycom" | ||
packageName="monday-ui-react-core" | ||
staticContributors={STATIC_CONTRIBUTORS} | ||
excludedContributorsIds={excludedContributorsIds} | ||
/> | ||
</Paragraph> | ||
); | ||
}; |
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