@vaadin/password-field 25.2.0-rc2 → 25.3.0-alpha1

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.
@@ -395,6 +395,20 @@
395
395
  "module": "src/vaadin-password-field-mixin.js"
396
396
  }
397
397
  },
398
+ {
399
+ "kind": "field",
400
+ "name": "inputMode",
401
+ "privacy": "public",
402
+ "type": {
403
+ "text": "string"
404
+ },
405
+ "description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
406
+ "attribute": "inputmode",
407
+ "inheritedFrom": {
408
+ "name": "TextFieldMixin",
409
+ "package": "@vaadin/text-field/src/vaadin-text-field-mixin.js"
410
+ }
411
+ },
398
412
  {
399
413
  "kind": "field",
400
414
  "name": "invalid",
@@ -821,6 +835,18 @@
821
835
  "package": "@vaadin/field-base/src/field-mixin.js"
822
836
  }
823
837
  },
838
+ {
839
+ "name": "inputmode",
840
+ "type": {
841
+ "text": "string"
842
+ },
843
+ "description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
844
+ "fieldName": "inputMode",
845
+ "inheritedFrom": {
846
+ "name": "TextFieldMixin",
847
+ "package": "@vaadin/text-field/src/vaadin-text-field-mixin.js"
848
+ }
849
+ },
824
850
  {
825
851
  "name": "invalid",
826
852
  "type": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/password-field",
3
- "version": "25.2.0-rc2",
3
+ "version": "25.3.0-alpha1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,20 +35,20 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.2.0-rc2",
39
- "@vaadin/button": "25.2.0-rc2",
40
- "@vaadin/component-base": "25.2.0-rc2",
41
- "@vaadin/field-base": "25.2.0-rc2",
42
- "@vaadin/text-field": "25.2.0-rc2",
43
- "@vaadin/vaadin-themable-mixin": "25.2.0-rc2",
38
+ "@vaadin/a11y-base": "25.3.0-alpha1",
39
+ "@vaadin/button": "25.3.0-alpha1",
40
+ "@vaadin/component-base": "25.3.0-alpha1",
41
+ "@vaadin/field-base": "25.3.0-alpha1",
42
+ "@vaadin/text-field": "25.3.0-alpha1",
43
+ "@vaadin/vaadin-themable-mixin": "25.3.0-alpha1",
44
44
  "lit": "^3.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@vaadin/aura": "25.2.0-rc2",
48
- "@vaadin/chai-plugins": "25.2.0-rc2",
49
- "@vaadin/test-runner-commands": "25.2.0-rc2",
47
+ "@vaadin/aura": "25.3.0-alpha1",
48
+ "@vaadin/chai-plugins": "25.3.0-alpha1",
49
+ "@vaadin/test-runner-commands": "25.3.0-alpha1",
50
50
  "@vaadin/testing-helpers": "^2.0.0",
51
- "@vaadin/vaadin-lumo-styles": "25.2.0-rc2",
51
+ "@vaadin/vaadin-lumo-styles": "25.3.0-alpha1",
52
52
  "sinon": "^22.0.0"
53
53
  },
54
54
  "customElements": "custom-elements.json",
@@ -56,5 +56,5 @@
56
56
  "web-types.json",
57
57
  "web-types.lit.json"
58
58
  ],
59
- "gitHead": "9e7f494b8aa2d07921adf2ee397e60465c10762f"
59
+ "gitHead": "5824d54c995945aafd50d30edc2cb763a58a18b6"
60
60
  }
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/password-field",
4
- "version": "25.2.0-rc2",
4
+ "version": "25.3.0-alpha1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -118,6 +118,15 @@
118
118
  ]
119
119
  }
120
120
  },
121
+ {
122
+ "name": "inputmode",
123
+ "description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
124
+ "value": {
125
+ "type": [
126
+ "string"
127
+ ]
128
+ }
129
+ },
121
130
  {
122
131
  "name": "invalid",
123
132
  "description": "Set to true when the field is invalid.",
@@ -366,6 +375,15 @@
366
375
  ]
367
376
  }
368
377
  },
378
+ {
379
+ "name": "inputMode",
380
+ "description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
381
+ "value": {
382
+ "type": [
383
+ "string"
384
+ ]
385
+ }
386
+ },
369
387
  {
370
388
  "name": "invalid",
371
389
  "description": "Set to true when the field is invalid.",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/password-field",
4
- "version": "25.2.0-rc2",
4
+ "version": "25.3.0-alpha1",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -110,6 +110,13 @@
110
110
  "kind": "expression"
111
111
  }
112
112
  },
113
+ {
114
+ "name": ".inputMode",
115
+ "description": "A hint to the browser about the type of virtual keyboard to display\nwhen the user interacts with the field on a mobile device.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Global_attributes/inputmode",
116
+ "value": {
117
+ "kind": "expression"
118
+ }
119
+ },
113
120
  {
114
121
  "name": "?invalid",
115
122
  "description": "Set to true when the field is invalid.",