This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Set v2.0.0 - revamp library using new Safe theme (#216)
* Added first approach of mui5 safe theme * Configure build for SSR rendering * style: Adjust typography variants (#199) * Enable storybook build and set correct peer dependencies * Add new theming * Remove unnecessary components * Remove GnosisTheme * EthHashInfo start * Add global theme mode change * Reuse darktheme between stories * Remove old material * Add fonts * EthHashInfo refactor * ExplorerButton * Use path imports * Fix components * use local palette because exported compionents are not picking the right one * Use concrete isAddress module * Fix typography problems * Refactor Icons * Remove styled-components dependency * Update README to align with current version * Export SafeThemeProvider for theming library components * use themes from sx * Refactor theme provider * Set v2.0.0 --------- Co-authored-by: Daniel Somoza <[email protected]> Co-authored-by: Usame Algan <[email protected]> Co-authored-by: Daniel <[email protected]>
- Loading branch information
1 parent
4ed4066
commit 7ec9757
Showing
318 changed files
with
6,323 additions
and
51,250 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: gnosis/[email protected] | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: yarn | ||
|
||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Run eslint | ||
run: yarn lint:check |
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
name: Unit tests | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test: | ||
|
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
import { create } from '@storybook/theming/create'; | ||
import { addons } from '@storybook/addons'; | ||
import gnosisTheme from './gnosisTheme'; | ||
|
||
|
||
addons.setConfig({ | ||
disableTelemetry: true, | ||
enableShortcuts: false, | ||
showNav: true, | ||
showPanel: false, | ||
theme: gnosisTheme, | ||
theme: storyBookTheme, | ||
}); | ||
|
||
const storyBookTheme = create({ | ||
base: 'light', | ||
}); |
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 @@ | ||
<link rel="stylesheet" href="/fonts.css" /> |
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
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
Oops, something went wrong.