Repository URL to install this package:
|
Version:
2.0.3 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const TextBox_1 = require("../../../views/atoms/TextBox"); // ========= input emitting the changes =========
const inputStyles = styled.todo`
border-color: transparent;
border-bottom-color: $colors-primary;
`;
const wording = {
shippingaddress: 'Shipping address',
billingaddress: 'Billing address'
};
/**
* @type {Atom}
*/
class AutoSuggestInput extends TextBox_1.TextInput {}
AutoSuggestInput.defaultProps = Object.assign({}, TextBox_1.TextInput.defaultProps, {
// THE ONE TIME WE USE STRINGY BOOLEANS FOR THE DOM (SAD)
// autoComplete: 'false',
autocomplete: false
});
exports.AutoSuggestInput = AutoSuggestInput;
exports.default = AutoSuggestInput; // export { TextInput as AutoSuggestInput }
// export default TextInput
// export { AutoSuggestInput }
// export default AutoSuggestInput
//# sourceMappingURL=AutoSuggestInput.js.map