@vaadin/text-field
Advanced tools
Comparing version 24.2.0-dev.f254716fe to 24.3.0-alpha1
{ | ||
"name": "@vaadin/text-field", | ||
"version": "24.2.0-dev.f254716fe", | ||
"version": "24.3.0-alpha1", | ||
"publishConfig": { | ||
@@ -41,9 +41,9 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/a11y-base": "24.2.0-dev.f254716fe", | ||
"@vaadin/component-base": "24.2.0-dev.f254716fe", | ||
"@vaadin/field-base": "24.2.0-dev.f254716fe", | ||
"@vaadin/input-container": "24.2.0-dev.f254716fe", | ||
"@vaadin/vaadin-lumo-styles": "24.2.0-dev.f254716fe", | ||
"@vaadin/vaadin-material-styles": "24.2.0-dev.f254716fe", | ||
"@vaadin/vaadin-themable-mixin": "24.2.0-dev.f254716fe", | ||
"@vaadin/a11y-base": "24.3.0-alpha1", | ||
"@vaadin/component-base": "24.3.0-alpha1", | ||
"@vaadin/field-base": "24.3.0-alpha1", | ||
"@vaadin/input-container": "24.3.0-alpha1", | ||
"@vaadin/vaadin-lumo-styles": "24.3.0-alpha1", | ||
"@vaadin/vaadin-material-styles": "24.3.0-alpha1", | ||
"@vaadin/vaadin-themable-mixin": "24.3.0-alpha1", | ||
"lit": "^2.0.0" | ||
@@ -53,3 +53,3 @@ }, | ||
"@esm-bundle/chai": "^4.3.4", | ||
"@vaadin/testing-helpers": "^0.4.3", | ||
"@vaadin/testing-helpers": "^0.5.0", | ||
"sinon": "^13.0.2" | ||
@@ -61,3 +61,3 @@ }, | ||
], | ||
"gitHead": "da54950b9f8c14c6451ede0d426e16a489c7fb9b" | ||
"gitHead": "9ca6f3ca220a777e8eea181a1f5717e39a732240" | ||
} |
@@ -13,2 +13,3 @@ /** | ||
import type { DelegateStateMixinClass } from '@vaadin/component-base/src/delegate-state-mixin.js'; | ||
import type { SlotStylesMixinClass } from '@vaadin/component-base/src/slot-styles-mixin.js'; | ||
import type { ClearButtonMixinClass } from '@vaadin/field-base/src/clear-button-mixin.js'; | ||
@@ -21,3 +22,2 @@ import type { FieldMixinClass } from '@vaadin/field-base/src/field-mixin.js'; | ||
import type { LabelMixinClass } from '@vaadin/field-base/src/label-mixin.js'; | ||
import type { SlotStylesMixinClass } from '@vaadin/field-base/src/slot-styles-mixin.js'; | ||
import type { ValidateMixinClass } from '@vaadin/field-base/src/validate-mixin.js'; | ||
@@ -24,0 +24,0 @@ |
@@ -23,2 +23,7 @@ /** | ||
/** | ||
* Fired when the `dirty` property changes. | ||
*/ | ||
export type TextFieldDirtyChangedEvent = CustomEvent<{ value: boolean }>; | ||
/** | ||
* Fired when the `value` property changes. | ||
@@ -36,2 +41,4 @@ */ | ||
'dirty-changed': TextFieldDirtyChangedEvent; | ||
'value-changed': TextFieldValueChangedEvent; | ||
@@ -106,2 +113,3 @@ | ||
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes. | ||
* @fires {CustomEvent} dirty-changed - Fired when the `dirty` property changes. | ||
* @fires {CustomEvent} value-changed - Fired when the `value` property changes. | ||
@@ -108,0 +116,0 @@ * @fires {CustomEvent} validated - Fired whenever the field is validated. |
@@ -8,2 +8,3 @@ /** | ||
import { html, PolymerElement } from '@polymer/polymer'; | ||
import { defineCustomElement } from '@vaadin/component-base/src/define.js'; | ||
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js'; | ||
@@ -80,2 +81,3 @@ import { TooltipController } from '@vaadin/component-base/src/tooltip-controller.js'; | ||
* | ||
* @customElement | ||
* @extends HTMLElement | ||
@@ -154,2 +156,3 @@ * @mixes ElementMixin | ||
this._tooltipController.setPosition('top'); | ||
this._tooltipController.setAriaTarget(this.inputElement); | ||
this.addController(this._tooltipController); | ||
@@ -159,2 +162,2 @@ } | ||
customElements.define(TextField.is, TextField); | ||
defineCustomElement(TextField); |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
65458
15
1274
1
+ Added@vaadin/a11y-base@24.3.0-alpha1(transitive)
+ Added@vaadin/component-base@24.3.0-alpha1(transitive)
+ Added@vaadin/field-base@24.3.0-alpha1(transitive)
+ Added@vaadin/icon@24.3.0-alpha1(transitive)
+ Added@vaadin/input-container@24.3.0-alpha1(transitive)
+ Added@vaadin/vaadin-lumo-styles@24.3.0-alpha1(transitive)
+ Added@vaadin/vaadin-material-styles@24.3.0-alpha1(transitive)
+ Added@vaadin/vaadin-themable-mixin@24.3.0-alpha1(transitive)
- Removed@vaadin/a11y-base@24.2.0-dev.f254716fe(transitive)
- Removed@vaadin/component-base@24.2.0-dev.f254716fe(transitive)
- Removed@vaadin/field-base@24.2.0-dev.f254716fe(transitive)
- Removed@vaadin/icon@24.2.0-dev.f254716fe(transitive)
- Removed@vaadin/input-container@24.2.0-dev.f254716fe(transitive)
- Removed@vaadin/vaadin-lumo-styles@24.2.0-dev.f254716fe(transitive)
- Removed@vaadin/vaadin-material-styles@24.2.0-dev.f254716fe(transitive)
- Removed@vaadin/vaadin-themable-mixin@24.2.0-dev.f254716fe(transitive)