@vaadin/password-field 24.2.0-alpha4 → 24.2.0-dev.385a0a5b2

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/password-field",
3
- "version": "24.2.0-alpha4",
3
+ "version": "24.2.0-dev.385a0a5b2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,21 +35,21 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/button": "24.2.0-alpha4",
39
- "@vaadin/component-base": "24.2.0-alpha4",
40
- "@vaadin/text-field": "24.2.0-alpha4",
41
- "@vaadin/vaadin-lumo-styles": "24.2.0-alpha4",
42
- "@vaadin/vaadin-material-styles": "24.2.0-alpha4",
43
- "@vaadin/vaadin-themable-mixin": "24.2.0-alpha4"
38
+ "@vaadin/button": "24.2.0-dev.385a0a5b2",
39
+ "@vaadin/component-base": "24.2.0-dev.385a0a5b2",
40
+ "@vaadin/text-field": "24.2.0-dev.385a0a5b2",
41
+ "@vaadin/vaadin-lumo-styles": "24.2.0-dev.385a0a5b2",
42
+ "@vaadin/vaadin-material-styles": "24.2.0-dev.385a0a5b2",
43
+ "@vaadin/vaadin-themable-mixin": "24.2.0-dev.385a0a5b2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@esm-bundle/chai": "^4.3.4",
47
- "@vaadin/testing-helpers": "^0.4.2",
47
+ "@vaadin/testing-helpers": "^0.4.3",
48
48
  "sinon": "^13.0.2"
49
49
  },
50
50
  "web-types": [
51
51
  "web-types.json",
52
52
  "web-types.lit.json"
53
53
  ],
54
- "gitHead": "aaf7c5ebfea62628210eead4229be1718ac6b129"
54
+ "gitHead": "9d84e4049890430a33e91ff64a6e751a1ba9b9d9"
55
55
  }
@@ -125,7 +125,8 @@ export class PasswordField extends TextField {
125
125
  super();
126
126
  this._setType('password');
127
127
  this.__boundRevealButtonClick = this._onRevealButtonClick.bind(this);
128
- this.__boundRevealButtonTouchend = this._onRevealButtonTouchend.bind(this);
128
+ this.__boundRevealButtonMouseDown = this._onRevealButtonMouseDown.bind(this);
129
+ this.__lastChange = '';
129
130
  }
130
131
 
131
132
  /** @protected */
@@ -157,7 +158,7 @@ export class PasswordField extends TextField {
157
158
  btn.disabled = this.disabled;
158
159
 
159
160
  btn.addEventListener('click', this.__boundRevealButtonClick);
160
- btn.addEventListener('touchend', this.__boundRevealButtonTouchend);
161
+ btn.addEventListener('mousedown', this.__boundRevealButtonMouseDown);
161
162
  },
162
163
  });
163
164
  this.addController(this._revealButtonController);
@@ -172,6 +173,19 @@ export class PasswordField extends TextField {
172
173
  }
173
174
  }
174
175
 
176
+ /**
177
+ * Override an event listener inherited from `InputControlMixin`
178
+ * to store the value at the moment of the native `change` event.
179
+ * @param {Event} event
180
+ * @protected
181
+ * @override
182
+ */
183
+ _onChange(event) {
184
+ super._onChange(event);
185
+
186
+ this.__lastChange = this.inputElement.value;
187
+ }
188
+
175
189
  /**
176
190
  * Override method inherited from `FocusMixin` to mark field as focused
177
191
  * when focus moves to the reveal button using Shift Tab.
@@ -208,6 +222,12 @@ export class PasswordField extends TextField {
208
222
 
209
223
  if (!focused) {
210
224
  this._setPasswordVisible(false);
225
+
226
+ // Detect if `focusout` was prevented and if so, dispatch `change` event manually.
227
+ if (this.__lastChange !== this.inputElement.value) {
228
+ this.__lastChange = this.inputElement.value;
229
+ this.dispatchEvent(new CustomEvent('change', { bubbles: true }));
230
+ }
211
231
  } else {
212
232
  const isButtonFocused = this.getRootNode().activeElement === this._revealNode;
213
233
  // Remove focus-ring from the field when the reveal button gets focused
@@ -243,10 +263,10 @@ export class PasswordField extends TextField {
243
263
  }
244
264
 
245
265
  /** @private */
246
- _onRevealButtonTouchend(e) {
247
- // Cancel the following click event
266
+ _onRevealButtonMouseDown(e) {
267
+ // Cancel the following focusout event
248
268
  e.preventDefault();
249
- this._togglePasswordVisibility();
269
+
250
270
  // Focus the input to avoid problem with password still visible
251
271
  // when user clicks the reveal button and then clicks outside.
252
272
  this.inputElement.focus();
package/web-types.json DELETED
@@ -1,594 +0,0 @@
1
- {
2
- "$schema": "https://json.schemastore.org/web-types",
3
- "name": "@vaadin/password-field",
4
- "version": "24.2.0-alpha4",
5
- "description-markup": "markdown",
6
- "contributions": {
7
- "html": {
8
- "elements": [
9
- {
10
- "name": "vaadin-password-field",
11
- "description": "`<vaadin-password-field>` is an extension of `<vaadin-text-field>` component for entering passwords.\n\n```html\n<vaadin-password-field label=\"Password\"></vaadin-password-field>\n```\n\n### Styling\n\n`<vaadin-password-field>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha4/#/elements/vaadin-text-field) for the styling documentation.\n\nIn addition to `<vaadin-text-field>` parts, the following parts are available for theming:\n\nPart name | Description\n----------------|----------------------------------------------------\n`reveal-button` | The eye icon which toggles the password visibility\n\nIn addition to `<vaadin-text-field>` state attributes, the following state attributes are available for theming:\n\nAttribute | Description\n-------------------|---------------------------------\n`password-visible` | Set when the password is visible\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
12
- "attributes": [
13
- {
14
- "name": "disabled",
15
- "description": "If true, the user cannot interact with this element.",
16
- "value": {
17
- "type": [
18
- "boolean",
19
- "null",
20
- "undefined"
21
- ]
22
- }
23
- },
24
- {
25
- "name": "autofocus",
26
- "description": "Specify that this control should have input focus when the page loads.",
27
- "value": {
28
- "type": [
29
- "boolean",
30
- "null",
31
- "undefined"
32
- ]
33
- }
34
- },
35
- {
36
- "name": "label",
37
- "description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
38
- "value": {
39
- "type": [
40
- "string",
41
- "null",
42
- "undefined"
43
- ]
44
- }
45
- },
46
- {
47
- "name": "invalid",
48
- "description": "Set to true when the field is invalid.",
49
- "value": {
50
- "type": [
51
- "boolean",
52
- "null",
53
- "undefined"
54
- ]
55
- }
56
- },
57
- {
58
- "name": "required",
59
- "description": "Specifies that the user must fill in a value.",
60
- "value": {
61
- "type": [
62
- "boolean",
63
- "null",
64
- "undefined"
65
- ]
66
- }
67
- },
68
- {
69
- "name": "error-message",
70
- "description": "Error to show when the field is invalid.",
71
- "value": {
72
- "type": [
73
- "string",
74
- "null",
75
- "undefined"
76
- ]
77
- }
78
- },
79
- {
80
- "name": "helper-text",
81
- "description": "String used for the helper text.",
82
- "value": {
83
- "type": [
84
- "string",
85
- "null",
86
- "undefined"
87
- ]
88
- }
89
- },
90
- {
91
- "name": "accessible-name",
92
- "description": "String used to label the component to screen reader users.",
93
- "value": {
94
- "type": [
95
- "string",
96
- "null",
97
- "undefined"
98
- ]
99
- }
100
- },
101
- {
102
- "name": "accessible-name-ref",
103
- "description": "Id of the element used as label of the component to screen reader users.",
104
- "value": {
105
- "type": [
106
- "string",
107
- "null",
108
- "undefined"
109
- ]
110
- }
111
- },
112
- {
113
- "name": "value",
114
- "description": "The value of the field.",
115
- "value": {
116
- "type": [
117
- "string",
118
- "null",
119
- "undefined"
120
- ]
121
- }
122
- },
123
- {
124
- "name": "clear-button-visible",
125
- "description": "Set to true to display the clear icon which clears the input.\n\nIt is up to the component to choose where to place the clear icon:\nin the Shadow DOM or in the light DOM. In any way, a reference to\nthe clear icon element should be provided via the `clearElement` getter.",
126
- "value": {
127
- "type": [
128
- "boolean",
129
- "null",
130
- "undefined"
131
- ]
132
- }
133
- },
134
- {
135
- "name": "allowed-char-pattern",
136
- "description": "A pattern matched against individual characters the user inputs.\n\nWhen set, the field will prevent:\n- `keydown` events if the entered key doesn't match `/^allowedCharPattern$/`\n- `paste` events if the pasted text doesn't match `/^allowedCharPattern*$/`\n- `drop` events if the dropped text doesn't match `/^allowedCharPattern*$/`\n\nFor example, to allow entering only numbers and minus signs, use:\n`allowedCharPattern = \"[\\\\d-]\"`",
137
- "value": {
138
- "type": [
139
- "string",
140
- "null",
141
- "undefined"
142
- ]
143
- }
144
- },
145
- {
146
- "name": "autoselect",
147
- "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
148
- "value": {
149
- "type": [
150
- "boolean",
151
- "null",
152
- "undefined"
153
- ]
154
- }
155
- },
156
- {
157
- "name": "name",
158
- "description": "The name of this field.",
159
- "value": {
160
- "type": [
161
- "string",
162
- "null",
163
- "undefined"
164
- ]
165
- }
166
- },
167
- {
168
- "name": "placeholder",
169
- "description": "A hint to the user of what can be entered in the field.",
170
- "value": {
171
- "type": [
172
- "string",
173
- "null",
174
- "undefined"
175
- ]
176
- }
177
- },
178
- {
179
- "name": "readonly",
180
- "description": "When present, it specifies that the field is read-only.",
181
- "value": {
182
- "type": [
183
- "boolean",
184
- "null",
185
- "undefined"
186
- ]
187
- }
188
- },
189
- {
190
- "name": "title",
191
- "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
192
- "value": {
193
- "type": [
194
- "string",
195
- "null",
196
- "undefined"
197
- ]
198
- }
199
- },
200
- {
201
- "name": "autocomplete",
202
- "description": "Whether the value of the control can be automatically completed by the browser.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Element/input#attr-autocomplete",
203
- "value": {
204
- "type": [
205
- "string",
206
- "null",
207
- "undefined"
208
- ]
209
- }
210
- },
211
- {
212
- "name": "autocorrect",
213
- "description": "This is a property supported by Safari that is used to control whether\nautocorrection should be enabled when the user is entering/editing the text.\nPossible values are:\non: Enable autocorrection.\noff: Disable autocorrection.",
214
- "value": {
215
- "type": [
216
- "string",
217
- "null",
218
- "undefined"
219
- ]
220
- }
221
- },
222
- {
223
- "name": "autocapitalize",
224
- "description": "This is a property supported by Safari and Chrome that is used to control whether\nautocapitalization should be enabled when the user is entering/editing the text.\nPossible values are:\ncharacters: Characters capitalization.\nwords: Words capitalization.\nsentences: Sentences capitalization.\nnone: No capitalization.",
225
- "value": {
226
- "type": [
227
- "string",
228
- "null",
229
- "undefined"
230
- ]
231
- }
232
- },
233
- {
234
- "name": "maxlength",
235
- "description": "Maximum number of characters (in Unicode code points) that the user can enter.",
236
- "value": {
237
- "type": [
238
- "number",
239
- "null",
240
- "undefined"
241
- ]
242
- }
243
- },
244
- {
245
- "name": "minlength",
246
- "description": "Minimum number of characters (in Unicode code points) that the user can enter.",
247
- "value": {
248
- "type": [
249
- "number",
250
- "null",
251
- "undefined"
252
- ]
253
- }
254
- },
255
- {
256
- "name": "pattern",
257
- "description": "A regular expression that the value is checked against.\nThe pattern must match the entire value, not just some subset.",
258
- "value": {
259
- "type": [
260
- "string",
261
- "null",
262
- "undefined"
263
- ]
264
- }
265
- },
266
- {
267
- "name": "reveal-button-hidden",
268
- "description": "Set to true to hide the eye icon which toggles the password visibility.",
269
- "value": {
270
- "type": [
271
- "boolean",
272
- "null",
273
- "undefined"
274
- ]
275
- }
276
- },
277
- {
278
- "name": "theme",
279
- "description": "The theme variants to apply to the component.",
280
- "value": {
281
- "type": [
282
- "string",
283
- "null",
284
- "undefined"
285
- ]
286
- }
287
- }
288
- ],
289
- "js": {
290
- "properties": [
291
- {
292
- "name": "disabled",
293
- "description": "If true, the user cannot interact with this element.",
294
- "value": {
295
- "type": [
296
- "boolean",
297
- "null",
298
- "undefined"
299
- ]
300
- }
301
- },
302
- {
303
- "name": "autofocus",
304
- "description": "Specify that this control should have input focus when the page loads.",
305
- "value": {
306
- "type": [
307
- "boolean",
308
- "null",
309
- "undefined"
310
- ]
311
- }
312
- },
313
- {
314
- "name": "label",
315
- "description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
316
- "value": {
317
- "type": [
318
- "string",
319
- "null",
320
- "undefined"
321
- ]
322
- }
323
- },
324
- {
325
- "name": "invalid",
326
- "description": "Set to true when the field is invalid.",
327
- "value": {
328
- "type": [
329
- "boolean",
330
- "null",
331
- "undefined"
332
- ]
333
- }
334
- },
335
- {
336
- "name": "required",
337
- "description": "Specifies that the user must fill in a value.",
338
- "value": {
339
- "type": [
340
- "boolean",
341
- "null",
342
- "undefined"
343
- ]
344
- }
345
- },
346
- {
347
- "name": "errorMessage",
348
- "description": "Error to show when the field is invalid.",
349
- "value": {
350
- "type": [
351
- "string",
352
- "null",
353
- "undefined"
354
- ]
355
- }
356
- },
357
- {
358
- "name": "helperText",
359
- "description": "String used for the helper text.",
360
- "value": {
361
- "type": [
362
- "string",
363
- "null",
364
- "undefined"
365
- ]
366
- }
367
- },
368
- {
369
- "name": "accessibleName",
370
- "description": "String used to label the component to screen reader users.",
371
- "value": {
372
- "type": [
373
- "string",
374
- "null",
375
- "undefined"
376
- ]
377
- }
378
- },
379
- {
380
- "name": "accessibleNameRef",
381
- "description": "Id of the element used as label of the component to screen reader users.",
382
- "value": {
383
- "type": [
384
- "string",
385
- "null",
386
- "undefined"
387
- ]
388
- }
389
- },
390
- {
391
- "name": "value",
392
- "description": "The value of the field.",
393
- "value": {
394
- "type": [
395
- "string",
396
- "null",
397
- "undefined"
398
- ]
399
- }
400
- },
401
- {
402
- "name": "clearButtonVisible",
403
- "description": "Set to true to display the clear icon which clears the input.\n\nIt is up to the component to choose where to place the clear icon:\nin the Shadow DOM or in the light DOM. In any way, a reference to\nthe clear icon element should be provided via the `clearElement` getter.",
404
- "value": {
405
- "type": [
406
- "boolean",
407
- "null",
408
- "undefined"
409
- ]
410
- }
411
- },
412
- {
413
- "name": "allowedCharPattern",
414
- "description": "A pattern matched against individual characters the user inputs.\n\nWhen set, the field will prevent:\n- `keydown` events if the entered key doesn't match `/^allowedCharPattern$/`\n- `paste` events if the pasted text doesn't match `/^allowedCharPattern*$/`\n- `drop` events if the dropped text doesn't match `/^allowedCharPattern*$/`\n\nFor example, to allow entering only numbers and minus signs, use:\n`allowedCharPattern = \"[\\\\d-]\"`",
415
- "value": {
416
- "type": [
417
- "string",
418
- "null",
419
- "undefined"
420
- ]
421
- }
422
- },
423
- {
424
- "name": "autoselect",
425
- "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
426
- "value": {
427
- "type": [
428
- "boolean",
429
- "null",
430
- "undefined"
431
- ]
432
- }
433
- },
434
- {
435
- "name": "name",
436
- "description": "The name of this field.",
437
- "value": {
438
- "type": [
439
- "string",
440
- "null",
441
- "undefined"
442
- ]
443
- }
444
- },
445
- {
446
- "name": "placeholder",
447
- "description": "A hint to the user of what can be entered in the field.",
448
- "value": {
449
- "type": [
450
- "string",
451
- "null",
452
- "undefined"
453
- ]
454
- }
455
- },
456
- {
457
- "name": "readonly",
458
- "description": "When present, it specifies that the field is read-only.",
459
- "value": {
460
- "type": [
461
- "boolean",
462
- "null",
463
- "undefined"
464
- ]
465
- }
466
- },
467
- {
468
- "name": "title",
469
- "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
470
- "value": {
471
- "type": [
472
- "string",
473
- "null",
474
- "undefined"
475
- ]
476
- }
477
- },
478
- {
479
- "name": "autocomplete",
480
- "description": "Whether the value of the control can be automatically completed by the browser.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Element/input#attr-autocomplete",
481
- "value": {
482
- "type": [
483
- "string",
484
- "null",
485
- "undefined"
486
- ]
487
- }
488
- },
489
- {
490
- "name": "autocorrect",
491
- "description": "This is a property supported by Safari that is used to control whether\nautocorrection should be enabled when the user is entering/editing the text.\nPossible values are:\non: Enable autocorrection.\noff: Disable autocorrection.",
492
- "value": {
493
- "type": [
494
- "string",
495
- "null",
496
- "undefined"
497
- ]
498
- }
499
- },
500
- {
501
- "name": "autocapitalize",
502
- "description": "This is a property supported by Safari and Chrome that is used to control whether\nautocapitalization should be enabled when the user is entering/editing the text.\nPossible values are:\ncharacters: Characters capitalization.\nwords: Words capitalization.\nsentences: Sentences capitalization.\nnone: No capitalization.",
503
- "value": {
504
- "type": [
505
- "string",
506
- "null",
507
- "undefined"
508
- ]
509
- }
510
- },
511
- {
512
- "name": "maxlength",
513
- "description": "Maximum number of characters (in Unicode code points) that the user can enter.",
514
- "value": {
515
- "type": [
516
- "number",
517
- "null",
518
- "undefined"
519
- ]
520
- }
521
- },
522
- {
523
- "name": "minlength",
524
- "description": "Minimum number of characters (in Unicode code points) that the user can enter.",
525
- "value": {
526
- "type": [
527
- "number",
528
- "null",
529
- "undefined"
530
- ]
531
- }
532
- },
533
- {
534
- "name": "pattern",
535
- "description": "A regular expression that the value is checked against.\nThe pattern must match the entire value, not just some subset.",
536
- "value": {
537
- "type": [
538
- "string",
539
- "null",
540
- "undefined"
541
- ]
542
- }
543
- },
544
- {
545
- "name": "revealButtonHidden",
546
- "description": "Set to true to hide the eye icon which toggles the password visibility.",
547
- "value": {
548
- "type": [
549
- "boolean",
550
- "null",
551
- "undefined"
552
- ]
553
- }
554
- },
555
- {
556
- "name": "i18n",
557
- "description": "An object with translated strings used for localization.\nIt has the following structure and default values:\n\n```\n{\n // Translation of the reveal icon button accessible label\n reveal: 'Show password'\n}\n```",
558
- "value": {
559
- "type": [
560
- "Object",
561
- "null",
562
- "undefined"
563
- ]
564
- }
565
- }
566
- ],
567
- "events": [
568
- {
569
- "name": "validated",
570
- "description": "Fired whenever the field is validated."
571
- },
572
- {
573
- "name": "change",
574
- "description": "Fired when the user commits a value change."
575
- },
576
- {
577
- "name": "input",
578
- "description": "Fired when the value is changed by the user: on every typing keystroke,\nand the value is cleared using the clear button."
579
- },
580
- {
581
- "name": "invalid-changed",
582
- "description": "Fired when the `invalid` property changes."
583
- },
584
- {
585
- "name": "value-changed",
586
- "description": "Fired when the `value` property changes."
587
- }
588
- ]
589
- }
590
- }
591
- ]
592
- }
593
- }
594
- }
@@ -1,237 +0,0 @@
1
- {
2
- "$schema": "https://json.schemastore.org/web-types",
3
- "name": "@vaadin/password-field",
4
- "version": "24.2.0-alpha4",
5
- "description-markup": "markdown",
6
- "framework": "lit",
7
- "framework-config": {
8
- "enable-when": {
9
- "node-packages": [
10
- "lit"
11
- ]
12
- }
13
- },
14
- "contributions": {
15
- "html": {
16
- "elements": [
17
- {
18
- "name": "vaadin-password-field",
19
- "description": "`<vaadin-password-field>` is an extension of `<vaadin-text-field>` component for entering passwords.\n\n```html\n<vaadin-password-field label=\"Password\"></vaadin-password-field>\n```\n\n### Styling\n\n`<vaadin-password-field>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha4/#/elements/vaadin-text-field) for the styling documentation.\n\nIn addition to `<vaadin-text-field>` parts, the following parts are available for theming:\n\nPart name | Description\n----------------|----------------------------------------------------\n`reveal-button` | The eye icon which toggles the password visibility\n\nIn addition to `<vaadin-text-field>` state attributes, the following state attributes are available for theming:\n\nAttribute | Description\n-------------------|---------------------------------\n`password-visible` | Set when the password is visible\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
20
- "extension": true,
21
- "attributes": [
22
- {
23
- "name": "?disabled",
24
- "description": "If true, the user cannot interact with this element.",
25
- "value": {
26
- "kind": "expression"
27
- }
28
- },
29
- {
30
- "name": "?autofocus",
31
- "description": "Specify that this control should have input focus when the page loads.",
32
- "value": {
33
- "kind": "expression"
34
- }
35
- },
36
- {
37
- "name": "?invalid",
38
- "description": "Set to true when the field is invalid.",
39
- "value": {
40
- "kind": "expression"
41
- }
42
- },
43
- {
44
- "name": "?required",
45
- "description": "Specifies that the user must fill in a value.",
46
- "value": {
47
- "kind": "expression"
48
- }
49
- },
50
- {
51
- "name": "?clearButtonVisible",
52
- "description": "Set to true to display the clear icon which clears the input.\n\nIt is up to the component to choose where to place the clear icon:\nin the Shadow DOM or in the light DOM. In any way, a reference to\nthe clear icon element should be provided via the `clearElement` getter.",
53
- "value": {
54
- "kind": "expression"
55
- }
56
- },
57
- {
58
- "name": "?autoselect",
59
- "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
60
- "value": {
61
- "kind": "expression"
62
- }
63
- },
64
- {
65
- "name": "?readonly",
66
- "description": "When present, it specifies that the field is read-only.",
67
- "value": {
68
- "kind": "expression"
69
- }
70
- },
71
- {
72
- "name": "?revealButtonHidden",
73
- "description": "Set to true to hide the eye icon which toggles the password visibility.",
74
- "value": {
75
- "kind": "expression"
76
- }
77
- },
78
- {
79
- "name": ".label",
80
- "description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
81
- "value": {
82
- "kind": "expression"
83
- }
84
- },
85
- {
86
- "name": ".errorMessage",
87
- "description": "Error to show when the field is invalid.",
88
- "value": {
89
- "kind": "expression"
90
- }
91
- },
92
- {
93
- "name": ".helperText",
94
- "description": "String used for the helper text.",
95
- "value": {
96
- "kind": "expression"
97
- }
98
- },
99
- {
100
- "name": ".accessibleName",
101
- "description": "String used to label the component to screen reader users.",
102
- "value": {
103
- "kind": "expression"
104
- }
105
- },
106
- {
107
- "name": ".accessibleNameRef",
108
- "description": "Id of the element used as label of the component to screen reader users.",
109
- "value": {
110
- "kind": "expression"
111
- }
112
- },
113
- {
114
- "name": ".value",
115
- "description": "The value of the field.",
116
- "value": {
117
- "kind": "expression"
118
- }
119
- },
120
- {
121
- "name": ".allowedCharPattern",
122
- "description": "A pattern matched against individual characters the user inputs.\n\nWhen set, the field will prevent:\n- `keydown` events if the entered key doesn't match `/^allowedCharPattern$/`\n- `paste` events if the pasted text doesn't match `/^allowedCharPattern*$/`\n- `drop` events if the dropped text doesn't match `/^allowedCharPattern*$/`\n\nFor example, to allow entering only numbers and minus signs, use:\n`allowedCharPattern = \"[\\\\d-]\"`",
123
- "value": {
124
- "kind": "expression"
125
- }
126
- },
127
- {
128
- "name": ".name",
129
- "description": "The name of this field.",
130
- "value": {
131
- "kind": "expression"
132
- }
133
- },
134
- {
135
- "name": ".placeholder",
136
- "description": "A hint to the user of what can be entered in the field.",
137
- "value": {
138
- "kind": "expression"
139
- }
140
- },
141
- {
142
- "name": ".title",
143
- "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
144
- "value": {
145
- "kind": "expression"
146
- }
147
- },
148
- {
149
- "name": ".autocomplete",
150
- "description": "Whether the value of the control can be automatically completed by the browser.\nList of available options at:\nhttps://developer.mozilla.org/en/docs/Web/HTML/Element/input#attr-autocomplete",
151
- "value": {
152
- "kind": "expression"
153
- }
154
- },
155
- {
156
- "name": ".autocorrect",
157
- "description": "This is a property supported by Safari that is used to control whether\nautocorrection should be enabled when the user is entering/editing the text.\nPossible values are:\non: Enable autocorrection.\noff: Disable autocorrection.",
158
- "value": {
159
- "kind": "expression"
160
- }
161
- },
162
- {
163
- "name": ".autocapitalize",
164
- "description": "This is a property supported by Safari and Chrome that is used to control whether\nautocapitalization should be enabled when the user is entering/editing the text.\nPossible values are:\ncharacters: Characters capitalization.\nwords: Words capitalization.\nsentences: Sentences capitalization.\nnone: No capitalization.",
165
- "value": {
166
- "kind": "expression"
167
- }
168
- },
169
- {
170
- "name": ".maxlength",
171
- "description": "Maximum number of characters (in Unicode code points) that the user can enter.",
172
- "value": {
173
- "kind": "expression"
174
- }
175
- },
176
- {
177
- "name": ".minlength",
178
- "description": "Minimum number of characters (in Unicode code points) that the user can enter.",
179
- "value": {
180
- "kind": "expression"
181
- }
182
- },
183
- {
184
- "name": ".pattern",
185
- "description": "A regular expression that the value is checked against.\nThe pattern must match the entire value, not just some subset.",
186
- "value": {
187
- "kind": "expression"
188
- }
189
- },
190
- {
191
- "name": ".i18n",
192
- "description": "An object with translated strings used for localization.\nIt has the following structure and default values:\n\n```\n{\n // Translation of the reveal icon button accessible label\n reveal: 'Show password'\n}\n```",
193
- "value": {
194
- "kind": "expression"
195
- }
196
- },
197
- {
198
- "name": "@validated",
199
- "description": "Fired whenever the field is validated.",
200
- "value": {
201
- "kind": "expression"
202
- }
203
- },
204
- {
205
- "name": "@change",
206
- "description": "Fired when the user commits a value change.",
207
- "value": {
208
- "kind": "expression"
209
- }
210
- },
211
- {
212
- "name": "@input",
213
- "description": "Fired when the value is changed by the user: on every typing keystroke,\nand the value is cleared using the clear button.",
214
- "value": {
215
- "kind": "expression"
216
- }
217
- },
218
- {
219
- "name": "@invalid-changed",
220
- "description": "Fired when the `invalid` property changes.",
221
- "value": {
222
- "kind": "expression"
223
- }
224
- },
225
- {
226
- "name": "@value-changed",
227
- "description": "Fired when the `value` property changes.",
228
- "value": {
229
- "kind": "expression"
230
- }
231
- }
232
- ]
233
- }
234
- ]
235
- }
236
- }
237
- }