package.mixins.input-field-shared.js Maven / Gradle / Ivy
/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import '../color.js';
import '../font-icons.js';
import '../sizing.js';
import '../spacing.js';
import '../style.js';
import '../typography.js';
import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
import { fieldButton } from './field-button.js';
import { helper } from './helper.js';
import { requiredField } from './required-field.js';
const inputField = css`
:host {
--lumo-text-field-size: var(--lumo-size-m);
color: var(--vaadin-input-field-value-color, var(--lumo-body-text-color));
font-size: var(--vaadin-input-field-value-font-size, var(--lumo-font-size-m));
font-family: var(--lumo-font-family);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
padding: var(--lumo-space-xs) 0;
--_focus-ring-color: var(--vaadin-focus-ring-color, var(--lumo-primary-color-50pct));
--_focus-ring-width: var(--vaadin-focus-ring-width, 2px);
--_input-height: var(--vaadin-input-field-height, var(--lumo-text-field-size));
--_disabled-value-color: var(--vaadin-input-field-disabled-value-color, var(--lumo-disabled-text-color));
}
:host::before {
height: var(--_input-height);
box-sizing: border-box;
display: inline-flex;
align-items: center;
}
:host([focused]) [part='input-field'] ::slotted(:is(input, textarea)) {
-webkit-mask-image: none;
mask-image: none;
}
::slotted(:is(input, textarea):placeholder-shown) {
color: var(--vaadin-input-field-placeholder-color, var(--lumo-secondary-text-color));
}
/* Hover */
:host(:hover:not([readonly]):not([focused])) [part='input-field']::after {
opacity: var(--vaadin-input-field-hover-highlight-opacity, 0.1);
}
/* Touch device adjustment */
@media (pointer: coarse) {
:host(:hover:not([readonly]):not([focused])) [part='input-field']::after {
opacity: 0;
}
:host(:active:not([readonly]):not([focused])) [part='input-field']::after {
opacity: 0.2;
}
}
/* Trigger when not focusing using the keyboard */
:host([focused]:not([focus-ring]):not([readonly])) [part='input-field']::after {
transform: scaleX(0);
transition-duration: 0.15s, 1s;
}
/* Focus-ring */
:host([focus-ring]) [part='input-field'] {
box-shadow: 0 0 0 var(--_focus-ring-width) var(--_focus-ring-color);
}
/* Read-only and disabled */
:host(:is([readonly], [disabled])) ::slotted(:is(input, textarea):placeholder-shown) {
opacity: 0;
}
/* Read-only style */
:host([readonly]) {
--vaadin-input-field-border-color: transparent;
}
/* Disabled style */
:host([disabled]) {
pointer-events: none;
--vaadin-input-field-border-color: var(--lumo-contrast-20pct);
}
:host([disabled]) [part='label'],
:host([disabled]) [part='input-field'] ::slotted([slot$='fix']) {
color: var(--lumo-disabled-text-color);
-webkit-text-fill-color: var(--lumo-disabled-text-color);
}
:host([disabled]) [part='input-field'] ::slotted(:not([slot$='fix'])) {
color: var(--_disabled-value-color);
-webkit-text-fill-color: var(--_disabled-value-color);
}
/* Invalid style */
:host([invalid]) {
--vaadin-input-field-border-color: var(--lumo-error-color);
}
:host([invalid][focus-ring]) [part='input-field'] {
box-shadow: 0 0 0 2px var(--lumo-error-color-50pct);
}
:host([input-prevented]) [part='input-field'] {
animation: shake 0.15s infinite;
}
@keyframes shake {
25% {
transform: translateX(4px);
}
75% {
transform: translateX(-4px);
}
}
/* Small theme */
:host([theme~='small']) {
font-size: var(--lumo-font-size-s);
--lumo-text-field-size: var(--lumo-size-s);
}
:host([theme~='small']) [part='label'] {
font-size: var(--lumo-font-size-xs);
}
:host([theme~='small']) [part='error-message'] {
font-size: var(--lumo-font-size-xxs);
}
/* Slotted content */
[part='input-field'] ::slotted(:not(vaadin-icon):not(input):not(textarea)) {
color: var(--lumo-secondary-text-color);
font-weight: 400;
}
[part='clear-button']::before {
content: var(--lumo-icons-cross);
}
`;
const inputFieldShared = [requiredField, fieldButton, helper, inputField];
registerStyles('', inputFieldShared, {
moduleId: 'lumo-input-field-shared-styles',
});
export { inputField, inputFieldShared };
© 2015 - 2025 Weber Informatics LLC | Privacy Policy