-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat\!: remove emotion dependency from most recipes * feat: removed last react-phone-number-input references + centralised import of utils * test: update jest + move all unit tests to jest * feat: self-review fixes * chore: update PR template * test: updated tsc version in with-typescript to match version root * fix: remove left-over references to the old palette object * chore: update size-limits * docs: updated example styles * refactor: rebuild + updated css variables for consistency * chore: update changelog * fix: minor fixes in phone number input * build: updated start scripts to finish build before starting test apps * chore: update changelog * build: remove checkTranslationKeys * Revert "build: remove checkTranslationKeys" This reverts commit 223faf1. * build: re-implement checkTranslationKeys * feat\!: moved web-js+website to peer-dep + fixed lint dep * fix: added workaround for phone input lib incompatibility w/ shadow dom * fix: correctly guess country when changing to phone input from emailOrPhone * build: update website version * build: revert to branch-based website peer dep for manual testing * refactor: updated to new web-js version + removed website references&dep * fix: dependency version + phone number input UX improvement * refactor: removed unused styles/selectors + visual test improvements * fix: make phone input country dropdown closer to old version * refactor: cleanup, update version number and FDI * fix: revert FDI update * fix: fix general error clearing too fast in phone forms * chore: update web-js dependency to point to version branch * chore: update version number * chore: fix branch name in dependency * chore: reduce size limit
- Loading branch information
Showing
433 changed files
with
38,711 additions
and
37,318 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 |
---|---|---|
|
@@ -14,3 +14,4 @@ screenshot.jpeg | |
/eslint/node_modules | ||
/test_report/ | ||
supertokens-auth-react-*.tgz | ||
stats.html |
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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
const DarkTheme = { | ||
colors: { | ||
background: "#333", | ||
inputBackground: "#292929", | ||
textTitle: "white", | ||
textLabel: "white", | ||
textPrimary: "white", | ||
error: "#ad2e2e", | ||
textInput: "#a9a9a9", | ||
textLink: "#a9a9a9", | ||
}, | ||
}; | ||
const DarkTheme = ` | ||
[data-supertokens~=container] { | ||
--palette-background: 51, 51, 51; | ||
--palette-inputBackground: 41, 41, 41; | ||
--palette-inputBorder: 41, 41, 41; | ||
--palette-textTitle: 255, 255, 255; | ||
--palette-textLabel: 255, 255, 255; | ||
--palette-textPrimary: 255, 255, 255; | ||
--palette-error: 173, 46, 46; | ||
--palette-textInput: 169, 169, 169; | ||
--palette-textLink: 169, 169, 169; | ||
} | ||
`; | ||
|
||
export default DarkTheme; |
Oops, something went wrong.