@vaadin/custom-field 25.1.0-beta2 → 25.1.0-beta3

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.
@@ -131,6 +131,9 @@
131
131
  "kind": "field",
132
132
  "name": "name",
133
133
  "privacy": "public",
134
+ "type": {
135
+ "text": "string"
136
+ },
134
137
  "description": "The name of the control, which is submitted with the form data.",
135
138
  "attribute": "name"
136
139
  },
@@ -234,6 +237,9 @@
234
237
  },
235
238
  {
236
239
  "name": "name",
240
+ "type": {
241
+ "text": "string"
242
+ },
237
243
  "description": "The name of the control, which is submitted with the form data.",
238
244
  "fieldName": "name"
239
245
  },
@@ -398,6 +404,9 @@
398
404
  "kind": "field",
399
405
  "name": "name",
400
406
  "privacy": "public",
407
+ "type": {
408
+ "text": "string"
409
+ },
401
410
  "description": "The name of the control, which is submitted with the form data.",
402
411
  "attribute": "name",
403
412
  "inheritedFrom": {
@@ -559,6 +568,9 @@
559
568
  },
560
569
  {
561
570
  "name": "name",
571
+ "type": {
572
+ "text": "string"
573
+ },
562
574
  "description": "The name of the control, which is submitted with the form data.",
563
575
  "fieldName": "name",
564
576
  "inheritedFrom": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/custom-field",
3
- "version": "25.1.0-beta2",
3
+ "version": "25.1.0-beta3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,34 +35,34 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.1.0-beta2",
39
- "@vaadin/component-base": "25.1.0-beta2",
40
- "@vaadin/field-base": "25.1.0-beta2",
41
- "@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
38
+ "@vaadin/a11y-base": "25.1.0-beta3",
39
+ "@vaadin/component-base": "25.1.0-beta3",
40
+ "@vaadin/field-base": "25.1.0-beta3",
41
+ "@vaadin/vaadin-themable-mixin": "25.1.0-beta3",
42
42
  "lit": "^3.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@vaadin/aura": "25.1.0-beta2",
46
- "@vaadin/chai-plugins": "25.1.0-beta2",
47
- "@vaadin/combo-box": "25.1.0-beta2",
48
- "@vaadin/date-picker": "25.1.0-beta2",
49
- "@vaadin/email-field": "25.1.0-beta2",
50
- "@vaadin/form-layout": "25.1.0-beta2",
51
- "@vaadin/number-field": "25.1.0-beta2",
52
- "@vaadin/password-field": "25.1.0-beta2",
53
- "@vaadin/select": "25.1.0-beta2",
54
- "@vaadin/test-runner-commands": "25.1.0-beta2",
45
+ "@vaadin/aura": "25.1.0-beta3",
46
+ "@vaadin/chai-plugins": "25.1.0-beta3",
47
+ "@vaadin/combo-box": "25.1.0-beta3",
48
+ "@vaadin/date-picker": "25.1.0-beta3",
49
+ "@vaadin/email-field": "25.1.0-beta3",
50
+ "@vaadin/form-layout": "25.1.0-beta3",
51
+ "@vaadin/number-field": "25.1.0-beta3",
52
+ "@vaadin/password-field": "25.1.0-beta3",
53
+ "@vaadin/select": "25.1.0-beta3",
54
+ "@vaadin/test-runner-commands": "25.1.0-beta3",
55
55
  "@vaadin/testing-helpers": "^2.0.0",
56
- "@vaadin/text-area": "25.1.0-beta2",
57
- "@vaadin/text-field": "25.1.0-beta2",
58
- "@vaadin/time-picker": "25.1.0-beta2",
59
- "@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
60
- "sinon": "^21.0.0"
56
+ "@vaadin/text-area": "25.1.0-beta3",
57
+ "@vaadin/text-field": "25.1.0-beta3",
58
+ "@vaadin/time-picker": "25.1.0-beta3",
59
+ "@vaadin/vaadin-lumo-styles": "25.1.0-beta3",
60
+ "sinon": "^21.0.2"
61
61
  },
62
62
  "customElements": "custom-elements.json",
63
63
  "web-types": [
64
64
  "web-types.json",
65
65
  "web-types.lit.json"
66
66
  ],
67
- "gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
67
+ "gitHead": "4251850231a42298fda23b83928da588831cdb5d"
68
68
  }
@@ -42,7 +42,9 @@ export const CustomFieldMixin = (superClass) =>
42
42
  /**
43
43
  * The name of the control, which is submitted with the form data.
44
44
  */
45
- name: String,
45
+ name: {
46
+ type: String,
47
+ },
46
48
 
47
49
  /**
48
50
  * The value of the field. When wrapping several inputs, it will contain `\t`
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.1.0-beta2",
4
+ "version": "25.1.0-beta3",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -122,7 +122,7 @@
122
122
  },
123
123
  {
124
124
  "name": "value",
125
- "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.1.0-beta2/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta2/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
125
+ "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.1.0-beta3/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta3/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
126
126
  "value": {
127
127
  "type": [
128
128
  "string",
@@ -255,7 +255,7 @@
255
255
  },
256
256
  {
257
257
  "name": "value",
258
- "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.1.0-beta2/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta2/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
258
+ "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.1.0-beta3/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta3/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
259
259
  "value": {
260
260
  "type": [
261
261
  "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.1.0-beta2",
4
+ "version": "25.1.0-beta3",
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.1.0-beta2/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta2/#/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.1.0-beta3/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta3/#/elements/vaadin-custom-field#property-parseValue)\nproperties to customize this behavior.",
102
102
  "value": {
103
103
  "kind": "expression"
104
104
  }