@vaadin/integer-field 25.1.0-alpha6 → 25.1.0-alpha7

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.
@@ -0,0 +1,598 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "vaadin-integer-field.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "js",
12
+ "name": "*",
13
+ "declaration": {
14
+ "name": "*",
15
+ "module": "src/vaadin-integer-field.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/vaadin-integer-field.js",
23
+ "declarations": [
24
+ {
25
+ "kind": "class",
26
+ "description": "`<vaadin-integer-field>` is an input field web component that only accepts entering integer numbers.\n\n```html\n<vaadin-integer-field label=\"X\"></vaadin-integer-field>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The label element\n`input-field` | The element that wraps prefix, value and suffix\n`field-button` | Set on clear, decrease and increase buttons\n`clear-button` | The clear button\n`error-message` | The error message element\n`helper-text` | The helper text element wrapper\n`required-indicator` | The `required` state indicator element\n`increase-button` | Increase (\"plus\") button\n`decrease-button` | Decrease (\"minus\") button\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------------|---------------------------------\n`disabled` | Set when the element is disabled\n`has-value` | Set when the element has a value\n`has-label` | Set when the element has a label\n`has-helper` | Set when the element has helper text or slot\n`has-error-message` | Set when the element has an error message\n`has-tooltip` | Set when the element has a slotted tooltip\n`invalid` | Set when the element is invalid\n`input-prevented` | Temporarily set when invalid input is prevented\n`focused` | Set when the element is focused\n`focus-ring` | Set when the element is keyboard focused\n`readonly` | Set when the element is readonly\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.\n\n### Change events\n\nDepending on the nature of the value change that the user attempts to commit e.g. by pressing Enter,\nthe component can fire either a `change` event or an `unparsable-change` event:\n\nValue change | Event\n:------------------------|:------------------\nempty => parsable | change\nempty => unparsable | unparsable-change\nparsable => empty | change\nparsable => parsable | change\nparsable => unparsable | change\nunparsable => empty | unparsable-change\nunparsable => parsable | change\nunparsable => unparsable | -\n\nNote, there is currently no way to detect unparsable => unparsable changes because the browser\ndoesn't provide access to unparsable values of native [type=number] inputs.",
27
+ "name": "IntegerField",
28
+ "members": [
29
+ {
30
+ "kind": "field",
31
+ "name": "accessibleName",
32
+ "privacy": "public",
33
+ "type": {
34
+ "text": "string"
35
+ },
36
+ "description": "String used to label the component to screen reader users.",
37
+ "attribute": "accessible-name",
38
+ "inheritedFrom": {
39
+ "name": "FieldMixin",
40
+ "package": "@vaadin/field-base/src/field-mixin.js"
41
+ }
42
+ },
43
+ {
44
+ "kind": "field",
45
+ "name": "accessibleNameRef",
46
+ "privacy": "public",
47
+ "type": {
48
+ "text": "string"
49
+ },
50
+ "description": "Id of the element used as label of the component to screen reader users.",
51
+ "attribute": "accessible-name-ref",
52
+ "inheritedFrom": {
53
+ "name": "FieldMixin",
54
+ "package": "@vaadin/field-base/src/field-mixin.js"
55
+ }
56
+ },
57
+ {
58
+ "kind": "field",
59
+ "name": "allowedCharPattern",
60
+ "privacy": "public",
61
+ "type": {
62
+ "text": "string"
63
+ },
64
+ "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-]\"`",
65
+ "attribute": "allowed-char-pattern",
66
+ "default": "'[-+\\\\d]'",
67
+ "inheritedFrom": {
68
+ "name": "InputControlMixin",
69
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
70
+ }
71
+ },
72
+ {
73
+ "kind": "field",
74
+ "name": "autocapitalize",
75
+ "privacy": "public",
76
+ "type": {
77
+ "text": "string"
78
+ },
79
+ "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.",
80
+ "attribute": "autocapitalize",
81
+ "inheritedFrom": {
82
+ "name": "InputFieldMixin",
83
+ "package": "@vaadin/field-base/src/input-field-mixin.js"
84
+ }
85
+ },
86
+ {
87
+ "kind": "field",
88
+ "name": "autocomplete",
89
+ "privacy": "public",
90
+ "type": {
91
+ "text": "string"
92
+ },
93
+ "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",
94
+ "attribute": "autocomplete",
95
+ "inheritedFrom": {
96
+ "name": "InputFieldMixin",
97
+ "package": "@vaadin/field-base/src/input-field-mixin.js"
98
+ }
99
+ },
100
+ {
101
+ "kind": "field",
102
+ "name": "autocorrect",
103
+ "privacy": "public",
104
+ "type": {
105
+ "text": "string"
106
+ },
107
+ "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.",
108
+ "attribute": "autocorrect",
109
+ "inheritedFrom": {
110
+ "name": "InputFieldMixin",
111
+ "package": "@vaadin/field-base/src/input-field-mixin.js"
112
+ }
113
+ },
114
+ {
115
+ "kind": "field",
116
+ "name": "autoselect",
117
+ "privacy": "public",
118
+ "type": {
119
+ "text": "boolean"
120
+ },
121
+ "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
122
+ "attribute": "autoselect",
123
+ "inheritedFrom": {
124
+ "name": "InputControlMixin",
125
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
126
+ }
127
+ },
128
+ {
129
+ "kind": "method",
130
+ "name": "checkValidity",
131
+ "description": "Override the method from `InputConstraintsMixin`\nto enforce HTML constraint validation even if\nthe user didn't add any constraints explicitly:\nthe field has to be regardless checked for bad input.",
132
+ "inheritedFrom": {
133
+ "name": "NumberFieldMixin",
134
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
135
+ }
136
+ },
137
+ {
138
+ "kind": "field",
139
+ "name": "clearButtonVisible",
140
+ "privacy": "public",
141
+ "type": {
142
+ "text": "boolean"
143
+ },
144
+ "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.",
145
+ "attribute": "clear-button-visible",
146
+ "inheritedFrom": {
147
+ "name": "ClearButtonMixin",
148
+ "package": "@vaadin/field-base/src/clear-button-mixin.js"
149
+ }
150
+ },
151
+ {
152
+ "kind": "field",
153
+ "name": "errorMessage",
154
+ "privacy": "public",
155
+ "type": {
156
+ "text": "string"
157
+ },
158
+ "description": "Error to show when the field is invalid.",
159
+ "attribute": "error-message",
160
+ "inheritedFrom": {
161
+ "name": "FieldMixin",
162
+ "package": "@vaadin/field-base/src/field-mixin.js"
163
+ }
164
+ },
165
+ {
166
+ "kind": "field",
167
+ "name": "helperText",
168
+ "privacy": "public",
169
+ "type": {
170
+ "text": "string"
171
+ },
172
+ "description": "String used for the helper text.",
173
+ "attribute": "helper-text",
174
+ "inheritedFrom": {
175
+ "name": "FieldMixin",
176
+ "package": "@vaadin/field-base/src/field-mixin.js"
177
+ }
178
+ },
179
+ {
180
+ "kind": "field",
181
+ "name": "max",
182
+ "privacy": "public",
183
+ "type": {
184
+ "text": "number"
185
+ },
186
+ "description": "The maximum value of the field.",
187
+ "attribute": "max",
188
+ "inheritedFrom": {
189
+ "name": "NumberFieldMixin",
190
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
191
+ }
192
+ },
193
+ {
194
+ "kind": "field",
195
+ "name": "min",
196
+ "privacy": "public",
197
+ "type": {
198
+ "text": "number"
199
+ },
200
+ "description": "The minimum value of the field.",
201
+ "attribute": "min",
202
+ "inheritedFrom": {
203
+ "name": "NumberFieldMixin",
204
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
205
+ }
206
+ },
207
+ {
208
+ "kind": "field",
209
+ "name": "name",
210
+ "privacy": "public",
211
+ "type": {
212
+ "text": "string"
213
+ },
214
+ "description": "The name of this field.",
215
+ "attribute": "name",
216
+ "inheritedFrom": {
217
+ "name": "InputControlMixin",
218
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
219
+ }
220
+ },
221
+ {
222
+ "kind": "field",
223
+ "name": "placeholder",
224
+ "privacy": "public",
225
+ "type": {
226
+ "text": "string"
227
+ },
228
+ "description": "A hint to the user of what can be entered in the field.",
229
+ "attribute": "placeholder",
230
+ "inheritedFrom": {
231
+ "name": "InputControlMixin",
232
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
233
+ }
234
+ },
235
+ {
236
+ "kind": "field",
237
+ "name": "readonly",
238
+ "privacy": "public",
239
+ "type": {
240
+ "text": "boolean"
241
+ },
242
+ "description": "When present, it specifies that the field is read-only.",
243
+ "attribute": "readonly",
244
+ "inheritedFrom": {
245
+ "name": "InputControlMixin",
246
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
247
+ }
248
+ },
249
+ {
250
+ "kind": "field",
251
+ "name": "step",
252
+ "privacy": "public",
253
+ "type": {
254
+ "text": "number"
255
+ },
256
+ "description": "Specifies the allowed number intervals of the field.",
257
+ "attribute": "step",
258
+ "inheritedFrom": {
259
+ "name": "NumberFieldMixin",
260
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
261
+ }
262
+ },
263
+ {
264
+ "kind": "field",
265
+ "name": "stepButtonsVisible",
266
+ "privacy": "public",
267
+ "type": {
268
+ "text": "boolean"
269
+ },
270
+ "description": "Set to true to show increase/decrease buttons.",
271
+ "attribute": "step-buttons-visible",
272
+ "inheritedFrom": {
273
+ "name": "NumberFieldMixin",
274
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
275
+ }
276
+ },
277
+ {
278
+ "kind": "field",
279
+ "name": "title",
280
+ "privacy": "public",
281
+ "type": {
282
+ "text": "string"
283
+ },
284
+ "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
285
+ "attribute": "title",
286
+ "inheritedFrom": {
287
+ "name": "InputControlMixin",
288
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
289
+ }
290
+ }
291
+ ],
292
+ "events": [
293
+ {
294
+ "type": {
295
+ "text": "Event"
296
+ },
297
+ "description": "Fired when the user commits a value change.",
298
+ "name": "change",
299
+ "inheritedFrom": {
300
+ "name": "NumberField",
301
+ "package": "@vaadin/number-field/src/vaadin-number-field.js"
302
+ }
303
+ },
304
+ {
305
+ "type": {
306
+ "text": "Event"
307
+ },
308
+ "description": "Fired when the value is changed by the user: on every typing keystroke, and the value is cleared using the clear button.",
309
+ "name": "input",
310
+ "inheritedFrom": {
311
+ "name": "NumberField",
312
+ "package": "@vaadin/number-field/src/vaadin-number-field.js"
313
+ }
314
+ },
315
+ {
316
+ "type": {
317
+ "text": "CustomEvent"
318
+ },
319
+ "description": "Fired when the `invalid` property changes.",
320
+ "name": "invalid-changed",
321
+ "inheritedFrom": {
322
+ "name": "NumberField",
323
+ "package": "@vaadin/number-field/src/vaadin-number-field.js"
324
+ }
325
+ },
326
+ {
327
+ "type": {
328
+ "text": "Event"
329
+ },
330
+ "description": "Fired when the user commits an unparsable value change and there is no change event.",
331
+ "name": "unparsable-change",
332
+ "inheritedFrom": {
333
+ "name": "NumberField",
334
+ "package": "@vaadin/number-field/src/vaadin-number-field.js"
335
+ }
336
+ },
337
+ {
338
+ "type": {
339
+ "text": "CustomEvent"
340
+ },
341
+ "description": "Fired whenever the field is validated.",
342
+ "name": "validated",
343
+ "inheritedFrom": {
344
+ "name": "NumberField",
345
+ "package": "@vaadin/number-field/src/vaadin-number-field.js"
346
+ }
347
+ },
348
+ {
349
+ "type": {
350
+ "text": "CustomEvent"
351
+ },
352
+ "description": "Fired when the `value` property changes.",
353
+ "name": "value-changed",
354
+ "inheritedFrom": {
355
+ "name": "NumberField",
356
+ "package": "@vaadin/number-field/src/vaadin-number-field.js"
357
+ }
358
+ }
359
+ ],
360
+ "superclass": {
361
+ "name": "NumberField",
362
+ "package": "@vaadin/number-field/src/vaadin-number-field.js"
363
+ },
364
+ "tagName": "vaadin-integer-field",
365
+ "customElement": true,
366
+ "attributes": [
367
+ {
368
+ "name": "accessible-name",
369
+ "type": {
370
+ "text": "string"
371
+ },
372
+ "description": "String used to label the component to screen reader users.",
373
+ "fieldName": "accessibleName",
374
+ "inheritedFrom": {
375
+ "name": "FieldMixin",
376
+ "package": "@vaadin/field-base/src/field-mixin.js"
377
+ }
378
+ },
379
+ {
380
+ "name": "accessible-name-ref",
381
+ "type": {
382
+ "text": "string"
383
+ },
384
+ "description": "Id of the element used as label of the component to screen reader users.",
385
+ "fieldName": "accessibleNameRef",
386
+ "inheritedFrom": {
387
+ "name": "FieldMixin",
388
+ "package": "@vaadin/field-base/src/field-mixin.js"
389
+ }
390
+ },
391
+ {
392
+ "name": "allowed-char-pattern",
393
+ "type": {
394
+ "text": "string"
395
+ },
396
+ "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-]\"`",
397
+ "fieldName": "allowedCharPattern",
398
+ "inheritedFrom": {
399
+ "name": "InputControlMixin",
400
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
401
+ }
402
+ },
403
+ {
404
+ "name": "autocapitalize",
405
+ "type": {
406
+ "text": "string"
407
+ },
408
+ "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.",
409
+ "fieldName": "autocapitalize",
410
+ "inheritedFrom": {
411
+ "name": "InputFieldMixin",
412
+ "package": "@vaadin/field-base/src/input-field-mixin.js"
413
+ }
414
+ },
415
+ {
416
+ "name": "autocomplete",
417
+ "type": {
418
+ "text": "string"
419
+ },
420
+ "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",
421
+ "fieldName": "autocomplete",
422
+ "inheritedFrom": {
423
+ "name": "InputFieldMixin",
424
+ "package": "@vaadin/field-base/src/input-field-mixin.js"
425
+ }
426
+ },
427
+ {
428
+ "name": "autocorrect",
429
+ "type": {
430
+ "text": "string"
431
+ },
432
+ "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.",
433
+ "fieldName": "autocorrect",
434
+ "inheritedFrom": {
435
+ "name": "InputFieldMixin",
436
+ "package": "@vaadin/field-base/src/input-field-mixin.js"
437
+ }
438
+ },
439
+ {
440
+ "name": "autoselect",
441
+ "type": {
442
+ "text": "boolean"
443
+ },
444
+ "description": "If true, the input text gets fully selected when the field is focused using click or touch / tap.",
445
+ "fieldName": "autoselect",
446
+ "inheritedFrom": {
447
+ "name": "InputControlMixin",
448
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
449
+ }
450
+ },
451
+ {
452
+ "name": "clear-button-visible",
453
+ "type": {
454
+ "text": "boolean"
455
+ },
456
+ "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.",
457
+ "fieldName": "clearButtonVisible",
458
+ "inheritedFrom": {
459
+ "name": "ClearButtonMixin",
460
+ "package": "@vaadin/field-base/src/clear-button-mixin.js"
461
+ }
462
+ },
463
+ {
464
+ "name": "error-message",
465
+ "type": {
466
+ "text": "string"
467
+ },
468
+ "description": "Error to show when the field is invalid.",
469
+ "fieldName": "errorMessage",
470
+ "inheritedFrom": {
471
+ "name": "FieldMixin",
472
+ "package": "@vaadin/field-base/src/field-mixin.js"
473
+ }
474
+ },
475
+ {
476
+ "name": "helper-text",
477
+ "type": {
478
+ "text": "string"
479
+ },
480
+ "description": "String used for the helper text.",
481
+ "fieldName": "helperText",
482
+ "inheritedFrom": {
483
+ "name": "FieldMixin",
484
+ "package": "@vaadin/field-base/src/field-mixin.js"
485
+ }
486
+ },
487
+ {
488
+ "name": "max",
489
+ "type": {
490
+ "text": "number"
491
+ },
492
+ "description": "The maximum value of the field.",
493
+ "fieldName": "max",
494
+ "inheritedFrom": {
495
+ "name": "NumberFieldMixin",
496
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
497
+ }
498
+ },
499
+ {
500
+ "name": "min",
501
+ "type": {
502
+ "text": "number"
503
+ },
504
+ "description": "The minimum value of the field.",
505
+ "fieldName": "min",
506
+ "inheritedFrom": {
507
+ "name": "NumberFieldMixin",
508
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
509
+ }
510
+ },
511
+ {
512
+ "name": "name",
513
+ "type": {
514
+ "text": "string"
515
+ },
516
+ "description": "The name of this field.",
517
+ "fieldName": "name",
518
+ "inheritedFrom": {
519
+ "name": "InputControlMixin",
520
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
521
+ }
522
+ },
523
+ {
524
+ "name": "placeholder",
525
+ "type": {
526
+ "text": "string"
527
+ },
528
+ "description": "A hint to the user of what can be entered in the field.",
529
+ "fieldName": "placeholder",
530
+ "inheritedFrom": {
531
+ "name": "InputControlMixin",
532
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
533
+ }
534
+ },
535
+ {
536
+ "name": "readonly",
537
+ "type": {
538
+ "text": "boolean"
539
+ },
540
+ "description": "When present, it specifies that the field is read-only.",
541
+ "fieldName": "readonly",
542
+ "inheritedFrom": {
543
+ "name": "InputControlMixin",
544
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
545
+ }
546
+ },
547
+ {
548
+ "name": "step",
549
+ "type": {
550
+ "text": "number"
551
+ },
552
+ "description": "Specifies the allowed number intervals of the field.",
553
+ "fieldName": "step",
554
+ "inheritedFrom": {
555
+ "name": "NumberFieldMixin",
556
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
557
+ }
558
+ },
559
+ {
560
+ "name": "step-buttons-visible",
561
+ "type": {
562
+ "text": "boolean"
563
+ },
564
+ "description": "Set to true to show increase/decrease buttons.",
565
+ "fieldName": "stepButtonsVisible",
566
+ "inheritedFrom": {
567
+ "name": "NumberFieldMixin",
568
+ "package": "@vaadin/number-field/src/vaadin-number-field-mixin.js"
569
+ }
570
+ },
571
+ {
572
+ "name": "title",
573
+ "type": {
574
+ "text": "string"
575
+ },
576
+ "description": "The text usually displayed in a tooltip popup when the mouse is over the field.",
577
+ "fieldName": "title",
578
+ "inheritedFrom": {
579
+ "name": "InputControlMixin",
580
+ "package": "@vaadin/field-base/src/input-control-mixin.js"
581
+ }
582
+ }
583
+ ]
584
+ }
585
+ ],
586
+ "exports": [
587
+ {
588
+ "kind": "js",
589
+ "name": "IntegerField",
590
+ "declaration": {
591
+ "name": "IntegerField",
592
+ "module": "src/vaadin-integer-field.js"
593
+ }
594
+ }
595
+ ]
596
+ }
597
+ ]
598
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/integer-field",
3
- "version": "25.1.0-alpha6",
3
+ "version": "25.1.0-alpha7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -23,6 +23,7 @@
23
23
  "src",
24
24
  "vaadin-*.d.ts",
25
25
  "vaadin-*.js",
26
+ "custom-elements.json",
26
27
  "web-types.json",
27
28
  "web-types.lit.json"
28
29
  ],
@@ -33,20 +34,21 @@
33
34
  "web-component"
34
35
  ],
35
36
  "dependencies": {
36
- "@vaadin/component-base": "25.1.0-alpha6",
37
- "@vaadin/number-field": "25.1.0-alpha6"
37
+ "@vaadin/component-base": "25.1.0-alpha7",
38
+ "@vaadin/number-field": "25.1.0-alpha7"
38
39
  },
39
40
  "devDependencies": {
40
- "@vaadin/aura": "25.1.0-alpha6",
41
- "@vaadin/chai-plugins": "25.1.0-alpha6",
42
- "@vaadin/test-runner-commands": "25.1.0-alpha6",
41
+ "@vaadin/aura": "25.1.0-alpha7",
42
+ "@vaadin/chai-plugins": "25.1.0-alpha7",
43
+ "@vaadin/test-runner-commands": "25.1.0-alpha7",
43
44
  "@vaadin/testing-helpers": "^2.0.0",
44
- "@vaadin/vaadin-lumo-styles": "25.1.0-alpha6",
45
+ "@vaadin/vaadin-lumo-styles": "25.1.0-alpha7",
45
46
  "sinon": "^21.0.0"
46
47
  },
48
+ "customElements": "custom-elements.json",
47
49
  "web-types": [
48
50
  "web-types.json",
49
51
  "web-types.lit.json"
50
52
  ],
51
- "gitHead": "da6f4194492cbd77d18c6c1cd8d4d9f072e9ce8d"
53
+ "gitHead": "98c586125f769c8fefd307536965293668fda81d"
52
54
  }
@@ -73,7 +73,7 @@ import { NumberField } from '@vaadin/number-field/src/vaadin-number-field.js';
73
73
  * @fires {CustomEvent} value-changed - Fired when the `value` property changes.
74
74
  * @fires {CustomEvent} validated - Fired whenever the field is validated.
75
75
  *
76
- * @customElement
76
+ * @customElement vaadin-integer-field
77
77
  * @extends NumberField
78
78
  */
79
79
  export class IntegerField extends NumberField {
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/integer-field",
4
- "version": "25.1.0-alpha6",
4
+ "version": "25.1.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/integer-field",
4
- "version": "25.1.0-alpha6",
4
+ "version": "25.1.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {