Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / inputs / __todo / GoogleAutoComplete / AutoSuggestInput.js
Size: Mime:
"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