@vaadin/custom-field 25.2.0-alpha10 → 25.2.0-alpha11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/custom-field",
3
- "version": "25.2.0-alpha10",
3
+ "version": "25.2.0-alpha11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,28 +35,28 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.2.0-alpha10",
39
- "@vaadin/component-base": "25.2.0-alpha10",
40
- "@vaadin/field-base": "25.2.0-alpha10",
41
- "@vaadin/vaadin-themable-mixin": "25.2.0-alpha10",
38
+ "@vaadin/a11y-base": "25.2.0-alpha11",
39
+ "@vaadin/component-base": "25.2.0-alpha11",
40
+ "@vaadin/field-base": "25.2.0-alpha11",
41
+ "@vaadin/vaadin-themable-mixin": "25.2.0-alpha11",
42
42
  "lit": "^3.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@vaadin/aura": "25.2.0-alpha10",
46
- "@vaadin/chai-plugins": "25.2.0-alpha10",
47
- "@vaadin/combo-box": "25.2.0-alpha10",
48
- "@vaadin/date-picker": "25.2.0-alpha10",
49
- "@vaadin/email-field": "25.2.0-alpha10",
50
- "@vaadin/form-layout": "25.2.0-alpha10",
51
- "@vaadin/number-field": "25.2.0-alpha10",
52
- "@vaadin/password-field": "25.2.0-alpha10",
53
- "@vaadin/select": "25.2.0-alpha10",
54
- "@vaadin/test-runner-commands": "25.2.0-alpha10",
45
+ "@vaadin/aura": "25.2.0-alpha11",
46
+ "@vaadin/chai-plugins": "25.2.0-alpha11",
47
+ "@vaadin/combo-box": "25.2.0-alpha11",
48
+ "@vaadin/date-picker": "25.2.0-alpha11",
49
+ "@vaadin/email-field": "25.2.0-alpha11",
50
+ "@vaadin/form-layout": "25.2.0-alpha11",
51
+ "@vaadin/number-field": "25.2.0-alpha11",
52
+ "@vaadin/password-field": "25.2.0-alpha11",
53
+ "@vaadin/select": "25.2.0-alpha11",
54
+ "@vaadin/test-runner-commands": "25.2.0-alpha11",
55
55
  "@vaadin/testing-helpers": "^2.0.0",
56
- "@vaadin/text-area": "25.2.0-alpha10",
57
- "@vaadin/text-field": "25.2.0-alpha10",
58
- "@vaadin/time-picker": "25.2.0-alpha10",
59
- "@vaadin/vaadin-lumo-styles": "25.2.0-alpha10",
56
+ "@vaadin/text-area": "25.2.0-alpha11",
57
+ "@vaadin/text-field": "25.2.0-alpha11",
58
+ "@vaadin/time-picker": "25.2.0-alpha11",
59
+ "@vaadin/vaadin-lumo-styles": "25.2.0-alpha11",
60
60
  "sinon": "^21.0.2"
61
61
  },
62
62
  "customElements": "custom-elements.json",
@@ -64,5 +64,5 @@
64
64
  "web-types.json",
65
65
  "web-types.lit.json"
66
66
  ],
67
- "gitHead": "1303b6a3eeecb44a9d26f2b53cb56d9e906febdf"
67
+ "gitHead": "fdc37e932709f95491a027aeb2090911cb7528c6"
68
68
  }
@@ -29,12 +29,6 @@ const defaultFormatValue = (inputValues) => {
29
29
  return inputValues.join('\t');
30
30
  };
31
31
 
32
- /**
33
- * @polymerMixin
34
- * @mixes FieldMixin
35
- * @mixes FocusMixin
36
- * @mixes KeyboardMixin
37
- */
38
32
  export const CustomFieldMixin = (superClass) =>
39
33
  class CustomFieldMixin extends FieldMixin(FocusMixin(KeyboardMixin(superClass))) {
40
34
  static get properties() {
@@ -77,9 +77,6 @@ import { CustomFieldMixin } from './vaadin-custom-field-mixin.js';
77
77
  *
78
78
  * @customElement vaadin-custom-field
79
79
  * @extends HTMLElement
80
- * @mixes CustomFieldMixin
81
- * @mixes ElementMixin
82
- * @mixes ThemableMixin
83
80
  */
84
81
  class CustomField extends CustomFieldMixin(ThemableMixin(ElementMixin(PolylitMixin(LumoInjectionMixin(LitElement))))) {
85
82
  static get is() {
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/custom-field",
4
- "version": "25.2.0-alpha10",
4
+ "version": "25.2.0-alpha11",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -104,7 +104,7 @@
104
104
  },
105
105
  {
106
106
  "name": "value",
107
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha10/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha10/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
107
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha11/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha11/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
108
108
  "value": {
109
109
  "type": [
110
110
  "string"
@@ -217,7 +217,7 @@
217
217
  },
218
218
  {
219
219
  "name": "value",
220
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha10/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha10/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
220
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha11/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha11/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
221
221
  "value": {
222
222
  "type": [
223
223
  "string"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/custom-field",
4
- "version": "25.2.0-alpha10",
4
+ "version": "25.2.0-alpha11",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -98,7 +98,7 @@
98
98
  },
99
99
  {
100
100
  "name": ".value",
101
- "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha10/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha10/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
101
+ "description": "The value of the field. When wrapping several inputs, it will contain `\\t`\n(Tab character) as a delimiter indicating parts intended to be used as the\ncorresponding inputs values.\nUse the [`formatValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha11/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.2.0-alpha11/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
102
102
  "value": {
103
103
  "kind": "expression"
104
104
  }