@vaadin/text-field
Advanced tools
Comparing version 24.4.0-dev.223e39f050 to 24.4.0-dev.4b20a0c55
{ | ||
"name": "@vaadin/text-field", | ||
"version": "24.4.0-dev.223e39f050", | ||
"version": "24.4.0-dev.4b20a0c55", | ||
"publishConfig": { | ||
@@ -39,9 +39,9 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/a11y-base": "24.4.0-dev.223e39f050", | ||
"@vaadin/component-base": "24.4.0-dev.223e39f050", | ||
"@vaadin/field-base": "24.4.0-dev.223e39f050", | ||
"@vaadin/input-container": "24.4.0-dev.223e39f050", | ||
"@vaadin/vaadin-lumo-styles": "24.4.0-dev.223e39f050", | ||
"@vaadin/vaadin-material-styles": "24.4.0-dev.223e39f050", | ||
"@vaadin/vaadin-themable-mixin": "24.4.0-dev.223e39f050", | ||
"@vaadin/a11y-base": "24.4.0-dev.4b20a0c55", | ||
"@vaadin/component-base": "24.4.0-dev.4b20a0c55", | ||
"@vaadin/field-base": "24.4.0-dev.4b20a0c55", | ||
"@vaadin/input-container": "24.4.0-dev.4b20a0c55", | ||
"@vaadin/vaadin-lumo-styles": "24.4.0-dev.4b20a0c55", | ||
"@vaadin/vaadin-material-styles": "24.4.0-dev.4b20a0c55", | ||
"@vaadin/vaadin-themable-mixin": "24.4.0-dev.4b20a0c55", | ||
"lit": "^3.0.0" | ||
@@ -58,3 +58,3 @@ }, | ||
], | ||
"gitHead": "5e2e3bfc811c95aed9354235fab93fdbf43eb354" | ||
"gitHead": "b79c81e5f6fd24684b34ee0dc434e94d943ea13e" | ||
} |
@@ -8,3 +8,2 @@ # @vaadin/text-field | ||
[![npm version](https://badgen.net/npm/v/@vaadin/text-field)](https://www.npmjs.com/package/@vaadin/text-field) | ||
[![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC) | ||
@@ -11,0 +10,0 @@ ```html |
/** | ||
* @license | ||
* Copyright (c) 2021 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2021 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
*/ | ||
export * from './vaadin-text-field.js'; |
/** | ||
* @license | ||
* Copyright (c) 2021 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2021 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
*/ | ||
import '@vaadin/input-container/src/vaadin-lit-input-container.js'; | ||
import { css, html, LitElement } from 'lit'; | ||
import { html, LitElement } from 'lit'; | ||
import { defineCustomElement } from '@vaadin/component-base/src/define.js'; | ||
@@ -21,3 +21,3 @@ import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js'; | ||
* | ||
* This component is an experiment not intended for publishing to npm. | ||
* This component is an experiment and not yet a part of Vaadin platform. | ||
* There is no ETA regarding specific Vaadin version where it'll land. | ||
@@ -32,10 +32,3 @@ * Feel free to try this code in your apps as per Apache 2.0 license. | ||
static get styles() { | ||
return [ | ||
inputFieldShared, | ||
css` | ||
[part='input-field'] { | ||
flex-grow: 0; | ||
} | ||
`, | ||
]; | ||
return [inputFieldShared]; | ||
} | ||
@@ -61,4 +54,3 @@ | ||
<slot name="input"></slot> | ||
<slot name="suffix" slot="suffix"></slot> | ||
<div id="clearButton" part="clear-button" slot="suffix" aria-hidden="true"></div> | ||
${this._renderSuffix()} | ||
</vaadin-input-container> | ||
@@ -88,4 +80,12 @@ | ||
} | ||
/** @protected */ | ||
_renderSuffix() { | ||
return html` | ||
<slot name="suffix" slot="suffix"></slot> | ||
<div id="clearButton" part="clear-button" slot="suffix" aria-hidden="true"></div> | ||
`; | ||
} | ||
} | ||
defineCustomElement(TextField); |
/** | ||
* @license | ||
* Copyright (c) 2021 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2021 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
/** | ||
* @license | ||
* Copyright (c) 2021 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2021 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
/** | ||
* @license | ||
* Copyright (c) 2017 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2017 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
/** | ||
* @license | ||
* Copyright (c) 2017 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2017 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -93,8 +93,2 @@ */ | ||
return html` | ||
<style> | ||
[part='input-field'] { | ||
flex-grow: 0; | ||
} | ||
</style> | ||
<div class="vaadin-field-container"> | ||
@@ -101,0 +95,0 @@ <div part="label"> |
/** | ||
* @license | ||
* Copyright (c) 2017 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2017 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
/** | ||
* @license | ||
* Copyright (c) 2017 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2017 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
/** | ||
* @license | ||
* Copyright (c) 2017 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2017 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
/** | ||
* @license | ||
* Copyright (c) 2017 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2017 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
/** | ||
* @license | ||
* Copyright (c) 2017 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2017 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
/** | ||
* @license | ||
* Copyright (c) 2017 - 2023 Vaadin Ltd. | ||
* Copyright (c) 2017 - 2024 Vaadin Ltd. | ||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | ||
@@ -5,0 +5,0 @@ */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34439
520
60
+ Added@vaadin/a11y-base@24.4.0-dev.4b20a0c55(transitive)
+ Added@vaadin/component-base@24.4.0-dev.4b20a0c55(transitive)
+ Added@vaadin/field-base@24.4.0-dev.4b20a0c55(transitive)
+ Added@vaadin/icon@24.4.0-dev.4b20a0c55(transitive)
+ Added@vaadin/input-container@24.4.0-dev.4b20a0c55(transitive)
+ Added@vaadin/vaadin-lumo-styles@24.4.0-dev.4b20a0c55(transitive)
+ Added@vaadin/vaadin-material-styles@24.4.0-dev.4b20a0c55(transitive)
+ Added@vaadin/vaadin-themable-mixin@24.4.0-dev.4b20a0c55(transitive)
- Removed@vaadin/a11y-base@24.4.0-dev.223e39f050(transitive)
- Removed@vaadin/component-base@24.4.0-dev.223e39f050(transitive)
- Removed@vaadin/field-base@24.4.0-dev.223e39f050(transitive)
- Removed@vaadin/icon@24.4.0-dev.223e39f050(transitive)
- Removed@vaadin/input-container@24.4.0-dev.223e39f050(transitive)
- Removed@vaadin/vaadin-lumo-styles@24.4.0-dev.223e39f050(transitive)
- Removed@vaadin/vaadin-material-styles@24.4.0-dev.223e39f050(transitive)
- Removed@vaadin/vaadin-themable-mixin@24.4.0-dev.223e39f050(transitive)