@vaadin/custom-field 25.1.0-beta1 → 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.
@@ -110,7 +110,8 @@
110
110
  "text": "!Array<!HTMLElement> | undefined"
111
111
  },
112
112
  "description": "Array of available input nodes",
113
- "attribute": "inputs"
113
+ "attribute": "inputs",
114
+ "readonly": true
114
115
  },
115
116
  {
116
117
  "kind": "field",
@@ -130,6 +131,9 @@
130
131
  "kind": "field",
131
132
  "name": "name",
132
133
  "privacy": "public",
134
+ "type": {
135
+ "text": "string"
136
+ },
133
137
  "description": "The name of the control, which is submitted with the form data.",
134
138
  "attribute": "name"
135
139
  },
@@ -233,6 +237,9 @@
233
237
  },
234
238
  {
235
239
  "name": "name",
240
+ "type": {
241
+ "text": "string"
242
+ },
236
243
  "description": "The name of the control, which is submitted with the form data.",
237
244
  "fieldName": "name"
238
245
  },
@@ -387,6 +394,7 @@
387
394
  },
388
395
  "description": "Array of available input nodes",
389
396
  "attribute": "inputs",
397
+ "readonly": true,
390
398
  "inheritedFrom": {
391
399
  "name": "CustomFieldMixin",
392
400
  "module": "src/vaadin-custom-field-mixin.js"
@@ -396,6 +404,9 @@
396
404
  "kind": "field",
397
405
  "name": "name",
398
406
  "privacy": "public",
407
+ "type": {
408
+ "text": "string"
409
+ },
399
410
  "description": "The name of the control, which is submitted with the form data.",
400
411
  "attribute": "name",
401
412
  "inheritedFrom": {
@@ -557,6 +568,9 @@
557
568
  },
558
569
  {
559
570
  "name": "name",
571
+ "type": {
572
+ "text": "string"
573
+ },
560
574
  "description": "The name of the control, which is submitted with the form data.",
561
575
  "fieldName": "name",
562
576
  "inheritedFrom": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/custom-field",
3
- "version": "25.1.0-beta1",
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-beta1",
39
- "@vaadin/component-base": "25.1.0-beta1",
40
- "@vaadin/field-base": "25.1.0-beta1",
41
- "@vaadin/vaadin-themable-mixin": "25.1.0-beta1",
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-beta1",
46
- "@vaadin/chai-plugins": "25.1.0-beta1",
47
- "@vaadin/combo-box": "25.1.0-beta1",
48
- "@vaadin/date-picker": "25.1.0-beta1",
49
- "@vaadin/email-field": "25.1.0-beta1",
50
- "@vaadin/form-layout": "25.1.0-beta1",
51
- "@vaadin/number-field": "25.1.0-beta1",
52
- "@vaadin/password-field": "25.1.0-beta1",
53
- "@vaadin/select": "25.1.0-beta1",
54
- "@vaadin/test-runner-commands": "25.1.0-beta1",
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-beta1",
57
- "@vaadin/text-field": "25.1.0-beta1",
58
- "@vaadin/time-picker": "25.1.0-beta1",
59
- "@vaadin/vaadin-lumo-styles": "25.1.0-beta1",
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": "0ccf77c385fc6a92ac2a6344ce8804b94956226d"
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-beta1",
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-beta1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta1/#/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-beta1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta1/#/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-beta1",
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-beta1/#/elements/vaadin-custom-field#property-formatValue)\nand [`parseValue`](https://cdn.vaadin.com/vaadin-web-components/25.1.0-beta1/#/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
  }