aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-21 02:36:23 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-21 02:36:23 +0800
commit2bda6dd719d748a4bfa5ff8e23e97924e0258af1 (patch)
tree0f7715a53995e79c400afab810fa8a194ca28299
parentcd4600b081b9ee467471174fe6736efab6247759 (diff)
downloaddexon-sol-tools-2bda6dd719d748a4bfa5ff8e23e97924e0258af1.tar
dexon-sol-tools-2bda6dd719d748a4bfa5ff8e23e97924e0258af1.tar.gz
dexon-sol-tools-2bda6dd719d748a4bfa5ff8e23e97924e0258af1.tar.bz2
dexon-sol-tools-2bda6dd719d748a4bfa5ff8e23e97924e0258af1.tar.lz
dexon-sol-tools-2bda6dd719d748a4bfa5ff8e23e97924e0258af1.tar.xz
dexon-sol-tools-2bda6dd719d748a4bfa5ff8e23e97924e0258af1.tar.zst
dexon-sol-tools-2bda6dd719d748a4bfa5ff8e23e97924e0258af1.zip
autofocus -> hasAutoFocus
-rw-r--r--packages/instant/src/components/erc20_asset_amount_input.tsx2
-rw-r--r--packages/instant/src/components/scaling_amount_input.tsx6
-rw-r--r--packages/instant/src/components/scaling_input.tsx8
3 files changed, 8 insertions, 8 deletions
diff --git a/packages/instant/src/components/erc20_asset_amount_input.tsx b/packages/instant/src/components/erc20_asset_amount_input.tsx
index 8b4494022..ab8c019c7 100644
--- a/packages/instant/src/components/erc20_asset_amount_input.tsx
+++ b/packages/instant/src/components/erc20_asset_amount_input.tsx
@@ -62,7 +62,7 @@ export class ERC20AssetAmountInput extends React.Component<ERC20AssetAmountInput
maxFontSizePx={this.props.startingFontSizePx}
onAmountChange={this._handleChange}
onFontSizeChange={this._handleFontSizeChange}
- autofocus={true}
+ hasAutofocus={true}
/>
</Container>
<Container
diff --git a/packages/instant/src/components/scaling_amount_input.tsx b/packages/instant/src/components/scaling_amount_input.tsx
index 3395cded1..0861bbe05 100644
--- a/packages/instant/src/components/scaling_amount_input.tsx
+++ b/packages/instant/src/components/scaling_amount_input.tsx
@@ -18,7 +18,7 @@ export interface ScalingAmountInputProps {
value?: BigNumber;
onAmountChange: (value?: BigNumber) => void;
onFontSizeChange: (fontSizePx: number) => void;
- autofocus: boolean;
+ hasAutofocus: boolean;
}
interface ScalingAmountInputState {
stringValue: string;
@@ -30,7 +30,7 @@ export class ScalingAmountInput extends React.Component<ScalingAmountInputProps,
onAmountChange: util.boundNoop,
onFontSizeChange: util.boundNoop,
isDisabled: false,
- autofocus: false,
+ hasAutofocus: false,
};
public constructor(props: ScalingAmountInputProps) {
super(props);
@@ -66,7 +66,7 @@ export class ScalingAmountInput extends React.Component<ScalingAmountInputProps,
placeholder="0.00"
emptyInputWidthCh={3.5}
isDisabled={this.props.isDisabled}
- autofocus={this.props.autofocus}
+ hasAutofocus={this.props.hasAutofocus}
/>
);
}
diff --git a/packages/instant/src/components/scaling_input.tsx b/packages/instant/src/components/scaling_input.tsx
index c379b76cd..129162a74 100644
--- a/packages/instant/src/components/scaling_input.tsx
+++ b/packages/instant/src/components/scaling_input.tsx
@@ -28,7 +28,7 @@ export interface ScalingInputProps {
maxLength?: number;
scalingSettings: ScalingSettings;
isDisabled: boolean;
- autofocus: boolean;
+ hasAutofocus: boolean;
}
export interface ScalingInputState {
@@ -52,7 +52,7 @@ export class ScalingInput extends React.Component<ScalingInputProps, ScalingInpu
maxLength: 7,
scalingSettings: defaultScalingSettings,
isDisabled: false,
- autofocus: false,
+ hasAutofocus: false,
};
public state: ScalingInputState = {
inputWidthPxAtPhaseChange: undefined,
@@ -125,7 +125,7 @@ export class ScalingInput extends React.Component<ScalingInputProps, ScalingInpu
}
}
public render(): React.ReactNode {
- const { autofocus, isDisabled, fontColor, onChange, placeholder, value, maxLength } = this.props;
+ const { hasAutofocus, isDisabled, fontColor, onChange, placeholder, value, maxLength } = this.props;
const phase = ScalingInput.getPhaseFromProps(this.props);
return (
<Input
@@ -138,7 +138,7 @@ export class ScalingInput extends React.Component<ScalingInputProps, ScalingInpu
width={this._calculateWidth(phase)}
maxLength={maxLength}
disabled={isDisabled}
- autoFocus={autofocus}
+ autoFocus={hasAutofocus}
/>
);
}