Skip to content

Commit

Permalink
Revert "fix: update font-weight in headings to 400 instead of 500 (#839
Browse files Browse the repository at this point in the history
…)"

This reverts commit def362f.
  • Loading branch information
porcellus committed Jul 31, 2024
1 parent 1bff7bf commit 99159a8
Show file tree
Hide file tree
Showing 17 changed files with 19 additions and 28 deletions.
5 changes: 1 addition & 4 deletions .circleci/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@ then
cd ..
npm publish --tag latest
npm i || exit $?
npx -y chromatic --auto-accept-changes --branch=master
npx -y chromatic --auto-accept-changes --branch=$version
npx -y chromatic --auto-accept-changes master
else
cd ..
npm publish --tag version-$version
npm i || exit $?
npx -y chromatic --auto-accept-changes --branch=$version
fi
6 changes: 0 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.44.1] - 2024-07-29

### Changes

- Updated the default font-weight for headings to be 400 instead of 500

## [0.44.0] - 2024-07-15

- Removes the default `maxAgeInSeconds` value (previously 300 seconds) in EmailVerification Claim. If the claim value is true and `maxAgeInSeconds` is not provided, it will not be refreshed.
Expand Down
2 changes: 1 addition & 1 deletion lib/build/emailverification-shared2.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/build/genericComponentOverrideContext.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/build/index2.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/build/multifactorauthprebuiltui.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/build/passwordlessprebuiltui.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/build/sessionprebuiltui.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/build/thirdpartyprebuiltui.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/build/totpprebuiltui.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/build/version.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/ts/recipe/emailpassword/components/themes/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
margin-top: 13px;
font-size: var(--font-size-3);
letter-spacing: 1.1px;
font-weight: 400;
font-weight: 500;
line-height: 28px;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/ts/recipe/multifactorauth/components/themes/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

[data-supertokens~="mfa"] [data-supertokens~="headerTitle"] {
font-size: var(--font-size-3);
font-weight: 400;
font-weight: 500;
line-height: 30px;
}

Expand Down
4 changes: 2 additions & 2 deletions lib/ts/styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
font-size: var(--font-size-4);
line-height: 40px;
letter-spacing: 0.58px;
font-weight: 400;
font-weight: 500;
margin-bottom: 2px;
color: rgb(var(--palette-textTitle));
}
Expand Down Expand Up @@ -180,7 +180,7 @@
margin-top: 13px;
font-size: var(--font-size-3);
letter-spacing: 1.1px;
font-weight: 400;
font-weight: 500;
line-height: 28px;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/ts/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
export const package_version = "0.44.1";
export const package_version = "0.44.0";
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "supertokens-auth-react",
"version": "0.44.1",
"version": "0.44.0",
"description": "ReactJS SDK that provides login functionality with SuperTokens.",
"main": "./index.js",
"engines": {
Expand Down

0 comments on commit 99159a8

Please sign in to comment.