mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
commit
973c2ee6c1
@ -50,8 +50,7 @@
|
|||||||
"react-router-redux": "next",
|
"react-router-redux": "next",
|
||||||
"react-scale-text": "^1.2.2",
|
"react-scale-text": "^1.2.2",
|
||||||
"react-select": "2.0.0",
|
"react-select": "2.0.0",
|
||||||
"react-sticky-el": "^1.0.20",
|
"react-transition-group": "^2.4.0",
|
||||||
"react-transition-group": "^2.2.1",
|
|
||||||
"redbox-react": "^1.6.0",
|
"redbox-react": "^1.6.0",
|
||||||
"redux": "4.0.0",
|
"redux": "4.0.0",
|
||||||
"redux-logger": "^3.0.6",
|
"redux-logger": "^3.0.6",
|
||||||
|
@ -76,7 +76,12 @@ class Checkbox extends PureComponent {
|
|||||||
<IconWrapper checked={checked}>
|
<IconWrapper checked={checked}>
|
||||||
{checked && (
|
{checked && (
|
||||||
<Tick>
|
<Tick>
|
||||||
<Icon size={26} color={checked ? colors.WHITE : colors.GREEN_PRIMARY} icon={icons.SUCCESS} />
|
<Icon
|
||||||
|
hoverColor={colors.WHITE}
|
||||||
|
size={26}
|
||||||
|
color={checked ? colors.WHITE : colors.GREEN_PRIMARY}
|
||||||
|
icon={icons.SUCCESS}
|
||||||
|
/>
|
||||||
</Tick>
|
</Tick>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -3,19 +3,13 @@ import RcTooltip from 'rc-tooltip';
|
|||||||
import colors from 'config/colors';
|
import colors from 'config/colors';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { FONT_SIZE } from 'config/variables';
|
|
||||||
|
|
||||||
const TooltipContent = styled.div`
|
|
||||||
width: ${props => (props.isAside ? '260px' : '320px')};
|
|
||||||
font-size: ${FONT_SIZE.SMALLEST};
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Wrapper = styled.div`
|
const Wrapper = styled.div`
|
||||||
.rc-tooltip {
|
.rc-tooltip {
|
||||||
|
max-width: ${props => `${props.maxWidth}px` || 'auto'};
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 1070;
|
z-index: 1070;
|
||||||
display: block;
|
display: block;
|
||||||
background: red;
|
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
border: 1px solid ${colors.DIVIDER};
|
border: 1px solid ${colors.DIVIDER};
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
@ -178,9 +172,11 @@ class Tooltip extends Component {
|
|||||||
placement,
|
placement,
|
||||||
content,
|
content,
|
||||||
children,
|
children,
|
||||||
|
maxWidth,
|
||||||
} = this.props;
|
} = this.props;
|
||||||
return (
|
return (
|
||||||
<Wrapper
|
<Wrapper
|
||||||
|
maxWidth={maxWidth}
|
||||||
className={className}
|
className={className}
|
||||||
innerRef={(node) => { this.tooltipContainerRef = node; }}
|
innerRef={(node) => { this.tooltipContainerRef = node; }}
|
||||||
>
|
>
|
||||||
@ -188,7 +184,7 @@ class Tooltip extends Component {
|
|||||||
getTooltipContainer={() => this.tooltipContainerRef}
|
getTooltipContainer={() => this.tooltipContainerRef}
|
||||||
arrowContent={<div className="rc-tooltip-arrow-inner" />}
|
arrowContent={<div className="rc-tooltip-arrow-inner" />}
|
||||||
placement={placement}
|
placement={placement}
|
||||||
overlay={<TooltipContent>{content}</TooltipContent>}
|
overlay={content}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</RcTooltip>
|
</RcTooltip>
|
||||||
@ -204,6 +200,7 @@ Tooltip.propTypes = {
|
|||||||
PropTypes.element,
|
PropTypes.element,
|
||||||
PropTypes.string,
|
PropTypes.string,
|
||||||
]),
|
]),
|
||||||
|
maxWidth: PropTypes.number,
|
||||||
content: PropTypes.oneOfType([
|
content: PropTypes.oneOfType([
|
||||||
PropTypes.element,
|
PropTypes.element,
|
||||||
PropTypes.string,
|
PropTypes.string,
|
||||||
|
@ -5,6 +5,7 @@ import P from 'components/Paragraph';
|
|||||||
import Icon from 'components/Icon';
|
import Icon from 'components/Icon';
|
||||||
import icons from 'config/icons';
|
import icons from 'config/icons';
|
||||||
import { H3 } from 'components/Heading';
|
import { H3 } from 'components/Heading';
|
||||||
|
import { LINE_HEIGHT } from 'config/variables';
|
||||||
|
|
||||||
const Wrapper = styled.div`
|
const Wrapper = styled.div`
|
||||||
width: 390px;
|
width: 390px;
|
||||||
@ -21,6 +22,12 @@ const Content = styled.div`
|
|||||||
padding: 24px 48px;
|
padding: 24px 48px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const StyledP = styled(P)`
|
||||||
|
word-wrap: break-word;
|
||||||
|
padding: 5px 0;
|
||||||
|
line-height: ${LINE_HEIGHT.SMALL}
|
||||||
|
`;
|
||||||
|
|
||||||
const Label = styled.div`
|
const Label = styled.div`
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
@ -49,7 +56,7 @@ const ConfirmSignTx = (props) => {
|
|||||||
<Label>Send</Label>
|
<Label>Send</Label>
|
||||||
<P>{`${amount} ${currency}` }</P>
|
<P>{`${amount} ${currency}` }</P>
|
||||||
<Label>To</Label>
|
<Label>To</Label>
|
||||||
<P>{ address }</P>
|
<StyledP>{ address }</StyledP>
|
||||||
<Label>Fee</Label>
|
<Label>Fee</Label>
|
||||||
<P>{ selectedFeeLevel.label }</P>
|
<P>{ selectedFeeLevel.label }</P>
|
||||||
</Content>
|
</Content>
|
||||||
|
@ -41,5 +41,6 @@ export const TRANSITION = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const LINE_HEIGHT = {
|
export const LINE_HEIGHT = {
|
||||||
|
SMALL: '1.4',
|
||||||
BASE: '1.8',
|
BASE: '1.8',
|
||||||
};
|
};
|
||||||
|
@ -63,6 +63,44 @@ const baseStyles = () => injectGlobal`
|
|||||||
url('./fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.svg#RobotoMono') format('svg'); /* Legacy iOS */
|
url('./fonts/roboto/roboto-mono-v4-greek_cyrillic-ext_greek-ext_latin_cyrillic_vietnamese_latin-ext-regular.svg#RobotoMono') format('svg'); /* Legacy iOS */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.slide-left-enter {
|
||||||
|
transform: translate(100%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide-left-enter.slide-left-enter-active {
|
||||||
|
transform: translate(0%);
|
||||||
|
transition: transform 300ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide-left-exit {
|
||||||
|
transform: translate(-100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide-left-exit.slide-left-exit-active {
|
||||||
|
transform: translate(0%);
|
||||||
|
transition: transform 300ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide-right-enter {
|
||||||
|
transform: translate(-100%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide-right-enter.slide-right-enter-active {
|
||||||
|
transform: translate(0%);
|
||||||
|
transition: transform 300ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide-right-exit {
|
||||||
|
transform: translate(-100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide-right-exit.slide-right-exit-active {
|
||||||
|
transform: translate(-200%);
|
||||||
|
transition: transform 300ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export default baseStyles;
|
export default baseStyles;
|
@ -86,7 +86,7 @@ class ConnectDevice extends Component<Props> {
|
|||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
)}
|
)}
|
||||||
</ConnectTrezorWrapper>
|
</ConnectTrezorWrapper>
|
||||||
{this.props.showWebUsb && (
|
{this.props.showWebUsb && !this.props.showDisconnect && (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<P>and</P>
|
<P>and</P>
|
||||||
<Button isWebUsb>
|
<Button isWebUsb>
|
||||||
|
@ -20,7 +20,6 @@ import type { Props } from '../common';
|
|||||||
import Row from '../Row';
|
import Row from '../Row';
|
||||||
import RowCoin from '../RowCoin';
|
import RowCoin from '../RowCoin';
|
||||||
|
|
||||||
|
|
||||||
const Wrapper = styled.div``;
|
const Wrapper = styled.div``;
|
||||||
|
|
||||||
const Text = styled.span`
|
const Text = styled.span`
|
||||||
@ -28,6 +27,10 @@ const Text = styled.span`
|
|||||||
color: ${colors.TEXT_SECONDARY};
|
color: ${colors.TEXT_SECONDARY};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const TooltipContent = styled.div`
|
||||||
|
font-size: ${FONT_SIZE.SMALLEST};
|
||||||
|
`;
|
||||||
|
|
||||||
const RowAccountWrapper = styled.div`
|
const RowAccountWrapper = styled.div`
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -120,7 +123,7 @@ const AccountMenu = (props: Props): ?React$Element<string> => {
|
|||||||
|
|
||||||
const deviceAccounts: Accounts = findDeviceAccounts(accounts, selected, location.state.network);
|
const deviceAccounts: Accounts = findDeviceAccounts(accounts, selected, location.state.network);
|
||||||
|
|
||||||
let selectedAccounts = deviceAccounts.map((account, i) => {
|
const selectedAccounts = deviceAccounts.map((account, i) => {
|
||||||
// const url: string = `${baseUrl}/network/${location.state.network}/account/${i}`;
|
// const url: string = `${baseUrl}/network/${location.state.network}/account/${i}`;
|
||||||
const url: string = location.pathname.replace(/account+\/([0-9]*)/, `account/${i}`);
|
const url: string = location.pathname.replace(/account+\/([0-9]*)/, `account/${i}`);
|
||||||
|
|
||||||
@ -158,26 +161,6 @@ const AccountMenu = (props: Props): ?React$Element<string> => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
if (selectedAccounts.length < 1) {
|
|
||||||
if (selected.connected) {
|
|
||||||
const url: string = location.pathname.replace(/account+\/([0-9]*)/, 'account/0');
|
|
||||||
selectedAccounts = (
|
|
||||||
<NavLink
|
|
||||||
to={url}
|
|
||||||
>
|
|
||||||
<Row column>
|
|
||||||
<RowAccountWrapper
|
|
||||||
isSelected
|
|
||||||
borderTop
|
|
||||||
>
|
|
||||||
Account #1
|
|
||||||
</RowAccountWrapper>
|
|
||||||
</Row>
|
|
||||||
</NavLink>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let discoveryStatus = null;
|
let discoveryStatus = null;
|
||||||
const discovery = props.discovery.find(d => d.deviceState === selected.state && d.network === location.state.network);
|
const discovery = props.discovery.find(d => d.deviceState === selected.state && d.network === location.state.network);
|
||||||
|
|
||||||
@ -204,7 +187,8 @@ const AccountMenu = (props: Props): ?React$Element<string> => {
|
|||||||
} else {
|
} else {
|
||||||
discoveryStatus = (
|
discoveryStatus = (
|
||||||
<Tooltip
|
<Tooltip
|
||||||
content={<React.Fragment>To add a new account, last account must have some transactions.</React.Fragment>}
|
maxWidth={300}
|
||||||
|
content={<TooltipContent>To add a new account, last account must have some transactions.</TooltipContent>}
|
||||||
placement="bottom"
|
placement="bottom"
|
||||||
>
|
>
|
||||||
<Row>
|
<Row>
|
||||||
|
@ -20,6 +20,8 @@ const RowCoinWrapper = styled.div`
|
|||||||
display: block;
|
display: block;
|
||||||
font-size: ${FONT_SIZE.BASE};
|
font-size: ${FONT_SIZE.BASE};
|
||||||
color: ${colors.TEXT_PRIMARY};
|
color: ${colors.TEXT_PRIMARY};
|
||||||
|
transition: background-color 0.3s, color 0.3s;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: ${colors.GRAY_LIGHT};
|
background-color: ${colors.GRAY_LIGHT};
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,7 @@ const AsideWrapper = styled.aside`
|
|||||||
position: relative;
|
position: relative;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 320px;
|
width: 320px;
|
||||||
|
min-width: 320px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: ${colors.MAIN};
|
background: ${colors.MAIN};
|
||||||
border-right: 1px solid ${colors.DIVIDER};
|
border-right: 1px solid ${colors.DIVIDER};
|
||||||
|
@ -24,15 +24,15 @@ const TransitionContentWrapper = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const Footer = styled.div`
|
const Footer = styled.div`
|
||||||
position: fixed;
|
position: relative;
|
||||||
|
width: 320px;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
background: ${colors.MAIN};
|
background: ${colors.MAIN};
|
||||||
border-right: 1px solid ${colors.DIVIDER};
|
border-right: 1px solid ${colors.DIVIDER};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Body = styled.div`
|
const Body = styled.div`
|
||||||
overflow: auto;
|
width: 320px;
|
||||||
background: ${colors.LANDING};
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Help = styled.div`
|
const Help = styled.div`
|
||||||
@ -58,6 +58,25 @@ const A = styled.a`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const TransitionMenu = (props: TransitionMenuProps): React$Element<TransitionGroup> => (
|
||||||
|
<TransitionGroupWrapper component="div" className="transition-container">
|
||||||
|
<CSSTransition
|
||||||
|
key={props.animationType}
|
||||||
|
onExit={() => { window.dispatchEvent(new Event('resize')); }}
|
||||||
|
onExited={() => window.dispatchEvent(new Event('resize'))}
|
||||||
|
in
|
||||||
|
out
|
||||||
|
classNames={props.animationType}
|
||||||
|
appear={false}
|
||||||
|
timeout={300}
|
||||||
|
>
|
||||||
|
<TransitionContentWrapper>
|
||||||
|
{ props.children }
|
||||||
|
</TransitionContentWrapper>
|
||||||
|
</CSSTransition>
|
||||||
|
</TransitionGroupWrapper>
|
||||||
|
);
|
||||||
|
|
||||||
class LeftNavigation extends Component {
|
class LeftNavigation extends Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
@ -96,39 +115,6 @@ class LeftNavigation extends Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: refactor to transition component for reuse of transitions
|
|
||||||
getMenuTransition(children) {
|
|
||||||
return (
|
|
||||||
<TransitionGroupWrapper component="div" className="transition-container">
|
|
||||||
<CSSTransition
|
|
||||||
key={this.state.animationType}
|
|
||||||
onEnter={() => {
|
|
||||||
console.warn('ON ENTER');
|
|
||||||
}}
|
|
||||||
onEntering={() => {
|
|
||||||
console.warn('ON ENTERING (ACTIVE)');
|
|
||||||
}}
|
|
||||||
onExit={() => {
|
|
||||||
console.warn('ON EXIT');
|
|
||||||
window.dispatchEvent(new Event('resize'));
|
|
||||||
}}
|
|
||||||
onExiting={() => {
|
|
||||||
console.warn('ON EXITING (ACTIVE)');
|
|
||||||
}}
|
|
||||||
onExited={() => window.dispatchEvent(new Event('resize'))}
|
|
||||||
classNames={this.state.animationType}
|
|
||||||
appear={false}
|
|
||||||
timeout={30000}
|
|
||||||
in
|
|
||||||
out
|
|
||||||
>
|
|
||||||
<TransitionContentWrapper>
|
|
||||||
{children}
|
|
||||||
</TransitionContentWrapper>
|
|
||||||
</CSSTransition>
|
|
||||||
</TransitionGroupWrapper>);
|
|
||||||
}
|
|
||||||
|
|
||||||
shouldRenderAccounts() {
|
shouldRenderAccounts() {
|
||||||
const { selectedDevice } = this.props.wallet;
|
const { selectedDevice } = this.props.wallet;
|
||||||
return selectedDevice
|
return selectedDevice
|
||||||
@ -148,6 +134,22 @@ class LeftNavigation extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
const { props } = this;
|
||||||
|
let menu;
|
||||||
|
if (this.shouldRenderAccounts()) {
|
||||||
|
menu = (
|
||||||
|
<TransitionMenu animationType="slide-left">
|
||||||
|
<AccountMenu {...props} />
|
||||||
|
</TransitionMenu>
|
||||||
|
);
|
||||||
|
} else if (this.shouldRenderCoins()) {
|
||||||
|
menu = (
|
||||||
|
<TransitionMenu animationType="slide-right">
|
||||||
|
<CoinMenu {...props} />
|
||||||
|
</TransitionMenu>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<StickyContainer
|
<StickyContainer
|
||||||
location={this.props.location.pathname}
|
location={this.props.location.pathname}
|
||||||
@ -163,8 +165,7 @@ class LeftNavigation extends Component {
|
|||||||
/>
|
/>
|
||||||
<Body>
|
<Body>
|
||||||
{this.state.shouldRenderDeviceSelection && <DeviceMenu {...this.props} />}
|
{this.state.shouldRenderDeviceSelection && <DeviceMenu {...this.props} />}
|
||||||
{this.shouldRenderAccounts() && this.getMenuTransition(<AccountMenu {...this.props} />)}
|
{menu}
|
||||||
{this.shouldRenderCoins() && this.getMenuTransition(<CoinMenu {...this.props} />)}
|
|
||||||
</Body>
|
</Body>
|
||||||
<Footer className="sticky-bottom">
|
<Footer className="sticky-bottom">
|
||||||
<Help>
|
<Help>
|
||||||
|
33
yarn.lock
33
yarn.lock
@ -3297,6 +3297,10 @@ dom-helpers@^3.2.0:
|
|||||||
version "3.2.1"
|
version "3.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.2.1.tgz#3203e07fed217bd1f424b019735582fc37b2825a"
|
resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.2.1.tgz#3203e07fed217bd1f424b019735582fc37b2825a"
|
||||||
|
|
||||||
|
dom-helpers@^3.3.1:
|
||||||
|
version "3.3.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.3.1.tgz#fc1a4e15ffdf60ddde03a480a9c0fece821dd4a6"
|
||||||
|
|
||||||
dom-serializer@0:
|
dom-serializer@0:
|
||||||
version "0.1.0"
|
version "0.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
|
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
|
||||||
@ -8075,13 +8079,6 @@ prop-types@15.x, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.8, pr
|
|||||||
loose-envify "^1.3.1"
|
loose-envify "^1.3.1"
|
||||||
object-assign "^4.1.1"
|
object-assign "^4.1.1"
|
||||||
|
|
||||||
prop-types@>=15.5.10, prop-types@^15.6.2:
|
|
||||||
version "15.6.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102"
|
|
||||||
dependencies:
|
|
||||||
loose-envify "^1.3.1"
|
|
||||||
object-assign "^4.1.1"
|
|
||||||
|
|
||||||
prop-types@^15.6.1:
|
prop-types@^15.6.1:
|
||||||
version "15.6.1"
|
version "15.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca"
|
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca"
|
||||||
@ -8090,6 +8087,13 @@ prop-types@^15.6.1:
|
|||||||
loose-envify "^1.3.1"
|
loose-envify "^1.3.1"
|
||||||
object-assign "^4.1.1"
|
object-assign "^4.1.1"
|
||||||
|
|
||||||
|
prop-types@^15.6.2:
|
||||||
|
version "15.6.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102"
|
||||||
|
dependencies:
|
||||||
|
loose-envify "^1.3.1"
|
||||||
|
object-assign "^4.1.1"
|
||||||
|
|
||||||
proxy-addr@~2.0.3:
|
proxy-addr@~2.0.3:
|
||||||
version "2.0.3"
|
version "2.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341"
|
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341"
|
||||||
@ -8422,12 +8426,6 @@ react-select@2.0.0:
|
|||||||
react-input-autosize "^2.2.1"
|
react-input-autosize "^2.2.1"
|
||||||
react-transition-group "^2.2.1"
|
react-transition-group "^2.2.1"
|
||||||
|
|
||||||
react-sticky-el@^1.0.20:
|
|
||||||
version "1.0.20"
|
|
||||||
resolved "https://registry.yarnpkg.com/react-sticky-el/-/react-sticky-el-1.0.20.tgz#b3c5e7128218633f440dc67aec239d1cd078342d"
|
|
||||||
dependencies:
|
|
||||||
prop-types ">=15.5.10"
|
|
||||||
|
|
||||||
react-transition-group@^2.2.1:
|
react-transition-group@^2.2.1:
|
||||||
version "2.2.1"
|
version "2.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.2.1.tgz#e9fb677b79e6455fd391b03823afe84849df4a10"
|
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.2.1.tgz#e9fb677b79e6455fd391b03823afe84849df4a10"
|
||||||
@ -8439,6 +8437,15 @@ react-transition-group@^2.2.1:
|
|||||||
prop-types "^15.5.8"
|
prop-types "^15.5.8"
|
||||||
warning "^3.0.0"
|
warning "^3.0.0"
|
||||||
|
|
||||||
|
react-transition-group@^2.4.0:
|
||||||
|
version "2.4.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.4.0.tgz#1d9391fabfd82e016f26fabd1eec329dbd922b5a"
|
||||||
|
dependencies:
|
||||||
|
dom-helpers "^3.3.1"
|
||||||
|
loose-envify "^1.3.1"
|
||||||
|
prop-types "^15.6.2"
|
||||||
|
react-lifecycles-compat "^3.0.4"
|
||||||
|
|
||||||
"react@^15.4.2 || ^16.0.0":
|
"react@^15.4.2 || ^16.0.0":
|
||||||
version "16.2.0"
|
version "16.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/react/-/react-16.2.0.tgz#a31bd2dab89bff65d42134fa187f24d054c273ba"
|
resolved "https://registry.yarnpkg.com/react/-/react-16.2.0.tgz#a31bd2dab89bff65d42134fa187f24d054c273ba"
|
||||||
|
Loading…
Reference in New Issue
Block a user