Releases: uiwjs/react-login-page
v1.0.5
Documentation v1.0.5: https://raw.githack.com/uiwjs/react-login-page/d02ddc8/index.html
Comparing Changes: v1.0.5...v1.0.5
v1.0.4
Documentation v1.0.4: https://raw.githack.com/uiwjs/react-login-page/00a4558/index.html
Comparing Changes: v1.0.4...v1.0.4
v1.0.3
Documentation v1.0.3: https://raw.githack.com/uiwjs/react-login-page/cd39064/index.html
Comparing Changes: v1.0.2...v1.0.3
- π chore(deps): update dependency husky to v9 (#11) 6ed2b8a @renovate-bot
- π chore: update husky config. #11 c617ae6 @jaywcjlove
- π type: fix typescript config. a625923 @jaywcjlove
- π fix: fix field order issue. #12 2c70d7e @jaywcjlove
v1.0.2
Documentation v1.0.2: https://raw.githack.com/uiwjs/react-login-page/8b5d53b/index.html
Comparing Changes: v1.0.1...v1.0.2
- π chore: add sponsor badge. 42afe46 @jaywcjlove
- π fix(deps): update dependency @uiw/react-markdown-preview to v5 (#8) 5211518 @renovate-bot
- π chore: add FUNDING.yml 3940c51 @jaywcjlove
- π website: fix markdown preview type error. edf5579 @jaywcjlove
v1.0.1
Documentation v1.0.1: https://raw.githack.com/uiwjs/react-login-page/3530c01/index.html
Comparing Changes: v1.0.0...v1.0.1
- π’ ci: update workflows config. 9fbb16f @jaywcjlove
- β test: add test case. c0e618d @jaywcjlove
- π type: fix Logo/LogoRect type error. ab03817 @jaywcjlove
- π’ ci: update workflows config. edb9207 @jaywcjlove
v1.0.0
Documentation v1.0.0: https://raw.githack.com/uiwjs/react-login-page/b91a730/index.html
Comparing Changes: v0.4.16...v1.0.0
- π chore(deps): update dependency lerna to v7 #3 72328f0 @jaywcjlove
- π chore(deps): update dependency prettier to v3 #5 e0a6a34 @jaywcjlove
- π fix(deps): update dependency styled-components to v6 #4 13b2f03 @jaywcjlove
- π website: fix type error. 63ad1cb @jaywcjlove
v0.4.16
Documentation v0.4.16: https://raw.githack.com/uiwjs/react-login-page/486fb65/index.html
Comparing Changes: v0.4.15...v0.4.16
- π fix: fix container ref issue. 0077073 @jaywcjlove
v0.4.15
Documentation v0.4.15: https://raw.githack.com/uiwjs/react-login-page/d914915/index.html
Comparing Changes: v0.4.14...v0.4.15
- π doc: update create-login-page document. e4b8643 @jaywcjlove
- π feat: add @react-login-page/page11 page. 28f93fa @jaywcjlove
@react-login-page/page11
Install
$ npm install @react-login-page/page11 --save
Usage
import React from 'react';
import Login from '@react-login-page/page11';
import LoginBannerBgImg from '@react-login-page/page11/banner.jpg';
const Demo = () => (
<Login style={{ height: 380 }}>
<Login.Banner>
<img src={LoginBannerBgImg} alt="banner" />
</Login.Banner>
</Login>
);
export default Demo;
v0.4.14
Documentation v0.4.14: https://raw.githack.com/uiwjs/react-login-page/cfb8b79/index.html
Comparing Changes: v0.4.13...v0.4.14
- π website(page10): update example. c3c1945 @jaywcjlove
- π feat(page10): add InnerBox component. be68ad4 @jaywcjlove
v0.4.13
Documentation v0.4.13: https://raw.githack.com/uiwjs/react-login-page/750061b/index.html
Comparing Changes: v0.4.12...v0.4.13
- π feat(page10): add new component. 439eb2d @jaywcjlove
import React from 'react';
import Login from '@react-login-page/page10';
import LoginImg from '@react-login-page/page10/bg.png';
import LoginInnerBgImg from '@react-login-page/page10/inner-bg.jpg';
const Demo = () => (
<Login style={{ height: 690, backgroundImage: `url(${LoginImg})` }}>
<Login.InnerBox style={{ backgroundImage: `url(${LoginInnerBgImg})` }} />
<Login.InnerBox panel="signup" style={{ backgroundImage: `url(${LoginInnerBgImg})` }} />
</Login>
);
export default Demo;