@reown/appkit-ui
Version:
#### 🔗 [Website](https://reown.com/appkit)
59 lines • 2.17 kB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
import { LitElement, html } from 'lit';
import { property } from 'lit/decorators.js';
import { ifDefined } from 'lit/directives/if-defined.js';
import '../../components/wui-text/index.js';
import { resetStyles } from '../../utils/ThemeUtil.js';
import { customElement } from '../../utils/WebComponentsUtil.js';
import '../wui-input-text/index.js';
import styles from './styles.js';
let WuiEmailInput = class WuiEmailInput extends LitElement {
constructor() {
super(...arguments);
this.disabled = false;
}
render() {
return html `
<wui-input-text
type="email"
placeholder="Email"
icon="mail"
size="mdl"
.disabled=${this.disabled}
.value=${this.value}
data-testid="wui-email-input"
tabIdx=${ifDefined(this.tabIdx)}
></wui-input-text>
${this.templateError()}
`;
}
templateError() {
if (this.errorMessage) {
return html `<wui-text variant="tiny-500" color="error-100">${this.errorMessage}</wui-text>`;
}
return null;
}
};
WuiEmailInput.styles = [resetStyles, styles];
__decorate([
property()
], WuiEmailInput.prototype, "errorMessage", void 0);
__decorate([
property({ type: Boolean })
], WuiEmailInput.prototype, "disabled", void 0);
__decorate([
property()
], WuiEmailInput.prototype, "value", void 0);
__decorate([
property()
], WuiEmailInput.prototype, "tabIdx", void 0);
WuiEmailInput = __decorate([
customElement('wui-email-input')
], WuiEmailInput);
export { WuiEmailInput };
//# sourceMappingURL=index.js.map