-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from keypom/ben/modal-cleanup
Final Modal Cleanup
- Loading branch information
Showing
33 changed files
with
1,280 additions
and
136 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
Binary file modified
BIN
+2.97 KB
(110%)
docs-advanced-tutorials/trial-accounts/ext-wasm/trial-accounts.wasm
Binary file not shown.
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
62 changes: 62 additions & 0 deletions
62
lib/lib/selector/modal/src/lib/components/AccountFormAccountId.d.ts
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
export const ACCOUNT_CHECK_TIMEOUT: 500; | ||
export default AccountFormAccountId; | ||
declare class AccountFormAccountId extends React.Component<any, any, any> { | ||
constructor(props: any); | ||
constructor(props: any, context: any); | ||
state: { | ||
accountId: any; | ||
invalidAccountIdLength: boolean; | ||
wrongChar: boolean; | ||
}; | ||
checkAccountAvailabilityTimer: null; | ||
canvas: null; | ||
suffix: React.RefObject<any>; | ||
componentDidMount: () => void; | ||
updateSuffix: (userValue: any) => void; | ||
getTextWidth: (text: any, font: any) => any; | ||
handleChangeAccountId: ({ userValue, el }: { | ||
userValue: any; | ||
el: any; | ||
}) => false | undefined; | ||
checkAccountIdLength: (accountId: any) => boolean; | ||
handleAccountIdLengthState: (accountId: any) => void; | ||
handleCheckAvailability: (accountId: any, type: any) => any; | ||
isImplicitAccount: (accountId: any) => boolean; | ||
get loaderLocalAlert(): { | ||
messageCode: string; | ||
}; | ||
get accountIdLengthLocalAlert(): { | ||
success: boolean; | ||
messageCode: string; | ||
}; | ||
get sameAccountLocalAlert(): { | ||
success: boolean; | ||
show: boolean; | ||
messageCode: string; | ||
}; | ||
get implicitAccountLocalAlert(): { | ||
success: boolean; | ||
messageCode: string; | ||
}; | ||
get localAlertWithFormValidation(): any; | ||
render(): JSX.Element; | ||
} | ||
declare namespace AccountFormAccountId { | ||
namespace propTypes { | ||
const handleChange: PropTypes.Validator<(...args: any[]) => any>; | ||
const checkAvailability: PropTypes.Validator<(...args: any[]) => any>; | ||
const defaultAccountId: PropTypes.Requireable<string>; | ||
const autoFocus: PropTypes.Requireable<boolean>; | ||
const accountIdSuffix: PropTypes.Validator<string>; | ||
} | ||
namespace defaultProps { | ||
const autoFocus_1: boolean; | ||
export { autoFocus_1 as autoFocus }; | ||
export const pattern: RegExp; | ||
export const type: string; | ||
const accountIdSuffix_1: string; | ||
export { accountIdSuffix_1 as accountIdSuffix }; | ||
} | ||
} | ||
import React from "react"; | ||
import PropTypes from "prop-types"; |
Oops, something went wrong.