@m3e/checkbox 1.0.0-rc.1 → 1.0.0-rc.2
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/README.md +1 -2
- package/dist/custom-elements.json +3212 -89
- package/dist/html-custom-data.json +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/package.json +3 -3
- package/cem.config.mjs +0 -16
- package/demo/index.html +0 -74
- package/dist/src/CheckboxElement.d.ts +0 -99
- package/dist/src/CheckboxElement.d.ts.map +0 -1
- package/dist/src/index.d.ts +0 -2
- package/dist/src/index.d.ts.map +0 -1
- package/eslint.config.mjs +0 -13
- package/rollup.config.js +0 -32
- package/src/CheckboxElement.ts +0 -362
- package/src/index.ts +0 -1
- package/tsconfig.json +0 -9
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"declarations": [
|
|
9
9
|
{
|
|
10
10
|
"kind": "class",
|
|
11
|
-
"description": "",
|
|
11
|
+
"description": "A checkbox that allows a user to select one or more options from a limited number of choices.",
|
|
12
12
|
"name": "M3eCheckboxElement",
|
|
13
13
|
"cssProperties": [
|
|
14
14
|
{
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
"name": "#pressedController",
|
|
167
167
|
"privacy": "private",
|
|
168
168
|
"readonly": true,
|
|
169
|
-
"default": "new PressedController(this, { target: null, callback: (pressed) => { if (this.disabled) return; if (pressed) { this._ripple?.show(0, 0, true); } else { this._ripple?.hide(); } }, })"
|
|
169
|
+
"default": "new PressedController(this, { target: null, minPressedDuration: 150, callback: (pressed) => { if (this.disabled) return; if (pressed) { this._ripple?.show(0, 0, true); } else { this._ripple?.hide(); } }, })"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"kind": "field",
|
|
@@ -214,148 +214,3271 @@
|
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
]
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"kind": "field",
|
|
220
|
+
"name": "formAssociated",
|
|
221
|
+
"static": true,
|
|
222
|
+
"readonly": true,
|
|
223
|
+
"default": "true",
|
|
224
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
|
|
225
|
+
"type": {
|
|
226
|
+
"text": "boolean"
|
|
227
|
+
},
|
|
228
|
+
"inheritedFrom": {
|
|
229
|
+
"name": "AttachInternals",
|
|
230
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"kind": "field",
|
|
235
|
+
"name": "[_eventHandler]",
|
|
236
|
+
"privacy": "private",
|
|
237
|
+
"readonly": true,
|
|
238
|
+
"inheritedFrom": {
|
|
239
|
+
"name": "Touched",
|
|
240
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"kind": "field",
|
|
245
|
+
"name": "labels",
|
|
246
|
+
"type": {
|
|
247
|
+
"text": "NodeListOf<HTMLLabelElement>"
|
|
248
|
+
},
|
|
249
|
+
"readonly": true,
|
|
250
|
+
"description": "The label elements that the element is associated with.",
|
|
251
|
+
"inheritedFrom": {
|
|
252
|
+
"name": "FormAssociated",
|
|
253
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"kind": "method",
|
|
258
|
+
"name": "[_updateLabels]",
|
|
259
|
+
"privacy": "private",
|
|
260
|
+
"return": {
|
|
261
|
+
"type": {
|
|
262
|
+
"text": "void"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"inheritedFrom": {
|
|
266
|
+
"name": "Labelled",
|
|
267
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"kind": "field",
|
|
272
|
+
"name": "dirty",
|
|
273
|
+
"type": {
|
|
274
|
+
"text": "boolean"
|
|
275
|
+
},
|
|
276
|
+
"description": "Whether the user has modified the value of the element.",
|
|
277
|
+
"readonly": true,
|
|
278
|
+
"inheritedFrom": {
|
|
279
|
+
"name": "Dirty",
|
|
280
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"kind": "field",
|
|
285
|
+
"name": "pristine",
|
|
286
|
+
"type": {
|
|
287
|
+
"text": "boolean"
|
|
288
|
+
},
|
|
289
|
+
"description": "Whether the user has not modified the value of the element.",
|
|
290
|
+
"readonly": true,
|
|
291
|
+
"inheritedFrom": {
|
|
292
|
+
"name": "Dirty",
|
|
293
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"kind": "method",
|
|
298
|
+
"name": "markAsPristine",
|
|
299
|
+
"return": {
|
|
300
|
+
"type": {
|
|
301
|
+
"text": "void"
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
"description": "Marks the element as pristine.",
|
|
305
|
+
"inheritedFrom": {
|
|
306
|
+
"name": "Dirty",
|
|
307
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"kind": "method",
|
|
312
|
+
"name": "markAsDirty",
|
|
313
|
+
"return": {
|
|
314
|
+
"type": {
|
|
315
|
+
"text": "void"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"description": "Marks the element as dirty.",
|
|
319
|
+
"inheritedFrom": {
|
|
320
|
+
"name": "Dirty",
|
|
321
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"kind": "field",
|
|
326
|
+
"name": "touched",
|
|
327
|
+
"type": {
|
|
328
|
+
"text": "boolean"
|
|
329
|
+
},
|
|
330
|
+
"description": "Whether the user has interacted when the element.",
|
|
331
|
+
"readonly": true,
|
|
332
|
+
"inheritedFrom": {
|
|
333
|
+
"name": "Touched",
|
|
334
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"kind": "field",
|
|
339
|
+
"name": "untouched",
|
|
340
|
+
"type": {
|
|
341
|
+
"text": "boolean"
|
|
342
|
+
},
|
|
343
|
+
"description": "Whether the user has not interacted when the element.",
|
|
344
|
+
"readonly": true,
|
|
345
|
+
"inheritedFrom": {
|
|
346
|
+
"name": "Touched",
|
|
347
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"kind": "method",
|
|
352
|
+
"name": "markAsTouched",
|
|
353
|
+
"return": {
|
|
354
|
+
"type": {
|
|
355
|
+
"text": "void"
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"description": "Marks the element as touched.",
|
|
359
|
+
"inheritedFrom": {
|
|
360
|
+
"name": "Touched",
|
|
361
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"kind": "method",
|
|
366
|
+
"name": "markAsUntouched",
|
|
367
|
+
"return": {
|
|
368
|
+
"type": {
|
|
369
|
+
"text": "void"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
"description": "Marks the element as untouched.",
|
|
373
|
+
"inheritedFrom": {
|
|
374
|
+
"name": "Touched",
|
|
375
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"kind": "field",
|
|
380
|
+
"name": "required",
|
|
381
|
+
"type": {
|
|
382
|
+
"text": "boolean"
|
|
383
|
+
},
|
|
384
|
+
"default": "false",
|
|
385
|
+
"description": "Whether a value is required for the element.",
|
|
386
|
+
"attribute": "required",
|
|
387
|
+
"reflects": true,
|
|
388
|
+
"inheritedFrom": {
|
|
389
|
+
"name": "Required",
|
|
390
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"kind": "field",
|
|
395
|
+
"name": "optional",
|
|
396
|
+
"description": "Whether a value is not required for the element.",
|
|
397
|
+
"readonly": true,
|
|
398
|
+
"inheritedFrom": {
|
|
399
|
+
"name": "Required",
|
|
400
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"kind": "field",
|
|
405
|
+
"name": "[_validityMessage]",
|
|
406
|
+
"type": {
|
|
407
|
+
"text": "string | undefined"
|
|
408
|
+
},
|
|
409
|
+
"privacy": "private",
|
|
410
|
+
"inheritedFrom": {
|
|
411
|
+
"name": "ConstraintValidation",
|
|
412
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"kind": "field",
|
|
417
|
+
"name": "willValidate",
|
|
418
|
+
"type": {
|
|
419
|
+
"text": "boolean"
|
|
420
|
+
},
|
|
421
|
+
"description": "Whether the element is a submittable element that is a candidate for constraint validation.",
|
|
422
|
+
"readonly": true,
|
|
423
|
+
"inheritedFrom": {
|
|
424
|
+
"name": "ConstraintValidation",
|
|
425
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"kind": "field",
|
|
430
|
+
"name": "validity",
|
|
431
|
+
"type": {
|
|
432
|
+
"text": "ValidityState"
|
|
433
|
+
},
|
|
434
|
+
"description": "The validity state of the element.",
|
|
435
|
+
"readonly": true,
|
|
436
|
+
"inheritedFrom": {
|
|
437
|
+
"name": "ConstraintValidation",
|
|
438
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"kind": "field",
|
|
443
|
+
"name": "validationMessage",
|
|
444
|
+
"type": {
|
|
445
|
+
"text": "string"
|
|
446
|
+
},
|
|
447
|
+
"description": "The error message that would be displayed if the user submits the form, or an empty string if no error message.",
|
|
448
|
+
"readonly": true,
|
|
449
|
+
"inheritedFrom": {
|
|
450
|
+
"name": "ConstraintValidation",
|
|
451
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"kind": "method",
|
|
456
|
+
"name": "reportValidity",
|
|
457
|
+
"return": {
|
|
458
|
+
"type": {
|
|
459
|
+
"text": "boolean"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"description": "Returns `true` if the element has no validity problems; otherwise, returns `false`, fires\r\nan invalid event, and (if the event isn't canceled) reports the problem to the user.",
|
|
463
|
+
"inheritedFrom": {
|
|
464
|
+
"name": "ConstraintValidation",
|
|
465
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"kind": "method",
|
|
470
|
+
"name": "checkValidity",
|
|
471
|
+
"return": {
|
|
472
|
+
"type": {
|
|
473
|
+
"text": "boolean"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"description": "Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event.",
|
|
477
|
+
"inheritedFrom": {
|
|
478
|
+
"name": "ConstraintValidation",
|
|
479
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"kind": "method",
|
|
484
|
+
"name": "setCustomValidity",
|
|
485
|
+
"return": {
|
|
486
|
+
"type": {
|
|
487
|
+
"text": "void"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"parameters": [
|
|
491
|
+
{
|
|
492
|
+
"name": "error",
|
|
493
|
+
"type": {
|
|
494
|
+
"text": "string"
|
|
495
|
+
},
|
|
496
|
+
"description": "The message to use for validity errors."
|
|
497
|
+
}
|
|
498
|
+
],
|
|
499
|
+
"description": "Sets a custom validity message for the element.",
|
|
500
|
+
"inheritedFrom": {
|
|
501
|
+
"name": "ConstraintValidation",
|
|
502
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"kind": "method",
|
|
507
|
+
"name": "[_updateValidity]",
|
|
508
|
+
"privacy": "private",
|
|
509
|
+
"return": {
|
|
510
|
+
"type": {
|
|
511
|
+
"text": "void"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"inheritedFrom": {
|
|
515
|
+
"name": "ConstraintValidation",
|
|
516
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"kind": "method",
|
|
521
|
+
"name": "#getNativeMessage",
|
|
522
|
+
"privacy": "private",
|
|
523
|
+
"return": {
|
|
524
|
+
"type": {
|
|
525
|
+
"text": "string"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
"parameters": [
|
|
529
|
+
{
|
|
530
|
+
"name": "flags",
|
|
531
|
+
"type": {
|
|
532
|
+
"text": "ValidityStateFlags"
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
],
|
|
536
|
+
"inheritedFrom": {
|
|
537
|
+
"name": "ConstraintValidation",
|
|
538
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"kind": "field",
|
|
543
|
+
"name": "indeterminate",
|
|
544
|
+
"type": {
|
|
545
|
+
"text": "boolean"
|
|
546
|
+
},
|
|
547
|
+
"default": "false",
|
|
548
|
+
"description": "Whether the element's checked state is indeterminate.",
|
|
549
|
+
"attribute": "indeterminate",
|
|
550
|
+
"reflects": true,
|
|
551
|
+
"inheritedFrom": {
|
|
552
|
+
"name": "CheckedIndeterminate",
|
|
553
|
+
"module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"kind": "field",
|
|
558
|
+
"name": "checked",
|
|
559
|
+
"type": {
|
|
560
|
+
"text": "boolean"
|
|
561
|
+
},
|
|
562
|
+
"default": "false",
|
|
563
|
+
"description": "Whether the element is checked.",
|
|
564
|
+
"attribute": "checked",
|
|
565
|
+
"reflects": true,
|
|
566
|
+
"inheritedFrom": {
|
|
567
|
+
"name": "Checked",
|
|
568
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"kind": "field",
|
|
573
|
+
"name": "[_defaultValue]",
|
|
574
|
+
"type": {
|
|
575
|
+
"text": "unknown"
|
|
576
|
+
},
|
|
577
|
+
"privacy": "private",
|
|
578
|
+
"inheritedFrom": {
|
|
579
|
+
"name": "FormAssociated",
|
|
580
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"kind": "field",
|
|
585
|
+
"name": "[_defaultIndeterminate]",
|
|
586
|
+
"type": {
|
|
587
|
+
"text": "boolean"
|
|
588
|
+
},
|
|
589
|
+
"privacy": "private",
|
|
590
|
+
"default": "false",
|
|
591
|
+
"inheritedFrom": {
|
|
592
|
+
"name": "FormAssociated",
|
|
593
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"kind": "field",
|
|
598
|
+
"name": "[_formDisabled]",
|
|
599
|
+
"type": {
|
|
600
|
+
"text": "boolean"
|
|
601
|
+
},
|
|
602
|
+
"privacy": "private",
|
|
603
|
+
"default": "false",
|
|
604
|
+
"inheritedFrom": {
|
|
605
|
+
"name": "FormAssociated",
|
|
606
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"kind": "field",
|
|
611
|
+
"name": "form",
|
|
612
|
+
"type": {
|
|
613
|
+
"text": "HTMLFormElement | null"
|
|
614
|
+
},
|
|
615
|
+
"description": "The `HTMLFormElement` associated with this element.",
|
|
616
|
+
"readonly": true,
|
|
617
|
+
"inheritedFrom": {
|
|
618
|
+
"name": "FormAssociated",
|
|
619
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"kind": "field",
|
|
624
|
+
"name": "name",
|
|
625
|
+
"description": "The name that identifies the element when submitting the associated form.",
|
|
626
|
+
"attribute": "name",
|
|
627
|
+
"inheritedFrom": {
|
|
628
|
+
"name": "FormAssociated",
|
|
629
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"kind": "field",
|
|
634
|
+
"name": "disabled",
|
|
635
|
+
"type": {
|
|
636
|
+
"text": "boolean"
|
|
637
|
+
},
|
|
638
|
+
"default": "false",
|
|
639
|
+
"description": "Whether the element is disabled.",
|
|
640
|
+
"attribute": "disabled",
|
|
641
|
+
"inheritedFrom": {
|
|
642
|
+
"name": "Disabled",
|
|
643
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"kind": "method",
|
|
648
|
+
"name": "formDisabledCallback",
|
|
649
|
+
"return": {
|
|
650
|
+
"type": {
|
|
651
|
+
"text": "void"
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
"parameters": [
|
|
655
|
+
{
|
|
656
|
+
"name": "disabled",
|
|
657
|
+
"type": {
|
|
658
|
+
"text": "boolean"
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"description": "Called when the element is disabled or enabled via its form association.",
|
|
663
|
+
"inheritedFrom": {
|
|
664
|
+
"name": "FormAssociated",
|
|
665
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"kind": "method",
|
|
670
|
+
"name": "formResetCallback",
|
|
671
|
+
"return": {
|
|
672
|
+
"type": {
|
|
673
|
+
"text": "void"
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
"description": "Called when the associated form is reset.",
|
|
677
|
+
"inheritedFrom": {
|
|
678
|
+
"name": "FormAssociated",
|
|
679
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"kind": "field",
|
|
684
|
+
"name": "#keyUpHandler",
|
|
685
|
+
"privacy": "private",
|
|
686
|
+
"readonly": true,
|
|
687
|
+
"inheritedFrom": {
|
|
688
|
+
"name": "KeyboardClick",
|
|
689
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"kind": "method",
|
|
694
|
+
"name": "#handleKeyUp",
|
|
695
|
+
"privacy": "private",
|
|
696
|
+
"return": {
|
|
697
|
+
"type": {
|
|
698
|
+
"text": "void"
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
"parameters": [
|
|
702
|
+
{
|
|
703
|
+
"name": "e",
|
|
704
|
+
"type": {
|
|
705
|
+
"text": "KeyboardEvent"
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
],
|
|
709
|
+
"inheritedFrom": {
|
|
710
|
+
"name": "KeyboardClick",
|
|
711
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"kind": "field",
|
|
716
|
+
"name": "[_tabindex]",
|
|
717
|
+
"type": {
|
|
718
|
+
"text": "number"
|
|
719
|
+
},
|
|
720
|
+
"privacy": "private",
|
|
721
|
+
"default": "0",
|
|
722
|
+
"inheritedFrom": {
|
|
723
|
+
"name": "Focusable",
|
|
724
|
+
"module": "../core/src/shared/mixins/Focusable.ts"
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"kind": "field",
|
|
729
|
+
"name": "[_internals]",
|
|
730
|
+
"type": {
|
|
731
|
+
"text": "ElementInternals | undefined"
|
|
732
|
+
},
|
|
733
|
+
"privacy": "private",
|
|
734
|
+
"inheritedFrom": {
|
|
735
|
+
"name": "AttachInternals",
|
|
736
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
],
|
|
740
|
+
"events": [
|
|
741
|
+
{
|
|
742
|
+
"name": "input",
|
|
743
|
+
"type": {
|
|
744
|
+
"text": "Event"
|
|
745
|
+
},
|
|
746
|
+
"description": "Emitted when the checked state changes."
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"name": "change",
|
|
750
|
+
"type": {
|
|
751
|
+
"text": "Event"
|
|
752
|
+
},
|
|
753
|
+
"description": "Emitted when the checked state changes."
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"description": "Emitted when a form is submitted and the element fails constraint validation.",
|
|
757
|
+
"name": "invalid"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"name": "click",
|
|
761
|
+
"type": {
|
|
762
|
+
"text": "MouseEvent"
|
|
763
|
+
},
|
|
764
|
+
"description": "Emitted when the element is clicked.",
|
|
765
|
+
"inheritedFrom": {
|
|
766
|
+
"name": "KeyboardClick",
|
|
767
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
],
|
|
771
|
+
"attributes": [
|
|
772
|
+
{
|
|
773
|
+
"name": "checked",
|
|
774
|
+
"type": {
|
|
775
|
+
"text": "boolean"
|
|
776
|
+
},
|
|
777
|
+
"default": "false",
|
|
778
|
+
"description": "Whether the element is checked.",
|
|
779
|
+
"fieldName": "checked",
|
|
780
|
+
"inheritedFrom": {
|
|
781
|
+
"name": "Checked",
|
|
782
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"name": "disabled",
|
|
787
|
+
"type": {
|
|
788
|
+
"text": "boolean"
|
|
789
|
+
},
|
|
790
|
+
"default": "false",
|
|
791
|
+
"description": "Whether the element is disabled.",
|
|
792
|
+
"fieldName": "disabled",
|
|
793
|
+
"inheritedFrom": {
|
|
794
|
+
"name": "Disabled",
|
|
795
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
796
|
+
}
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"name": "indeterminate",
|
|
800
|
+
"type": {
|
|
801
|
+
"text": "boolean"
|
|
802
|
+
},
|
|
803
|
+
"default": "false",
|
|
804
|
+
"description": "Whether the element's checked state is indeterminate.",
|
|
805
|
+
"fieldName": "indeterminate",
|
|
806
|
+
"inheritedFrom": {
|
|
807
|
+
"name": "CheckedIndeterminate",
|
|
808
|
+
"module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"name": "name",
|
|
813
|
+
"description": "The name that identifies the element when submitting the associated form.",
|
|
814
|
+
"fieldName": "name",
|
|
815
|
+
"inheritedFrom": {
|
|
816
|
+
"name": "FormAssociated",
|
|
817
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
818
|
+
}
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"name": "required",
|
|
822
|
+
"type": {
|
|
823
|
+
"text": "boolean"
|
|
824
|
+
},
|
|
825
|
+
"default": "false",
|
|
826
|
+
"description": "Whether the element is required.",
|
|
827
|
+
"fieldName": "required",
|
|
828
|
+
"inheritedFrom": {
|
|
829
|
+
"name": "Required",
|
|
830
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"description": "A string representing the value of the checkbox.",
|
|
835
|
+
"name": "value",
|
|
836
|
+
"type": {
|
|
837
|
+
"text": "string"
|
|
838
|
+
},
|
|
839
|
+
"default": "\"on\"",
|
|
840
|
+
"fieldName": "value"
|
|
841
|
+
}
|
|
842
|
+
],
|
|
843
|
+
"mixins": [
|
|
844
|
+
{
|
|
845
|
+
"name": "Labelled",
|
|
846
|
+
"package": "@m3e/core"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"name": "RequiredConstraintValidation",
|
|
850
|
+
"package": "@m3e/core"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"name": "Dirty",
|
|
854
|
+
"package": "@m3e/core"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"name": "Touched",
|
|
858
|
+
"package": "@m3e/core"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "Required",
|
|
862
|
+
"package": "@m3e/core"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"name": "ConstraintValidation",
|
|
866
|
+
"package": "@m3e/core"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"name": "CheckedIndeterminate",
|
|
870
|
+
"package": "@m3e/core"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"name": "FormAssociated",
|
|
874
|
+
"package": "@m3e/core"
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"name": "KeyboardClick",
|
|
878
|
+
"package": "@m3e/core"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"name": "Focusable",
|
|
882
|
+
"package": "@m3e/core"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"name": "Disabled",
|
|
886
|
+
"package": "@m3e/core"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"name": "AttachInternals",
|
|
890
|
+
"package": "@m3e/core"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"name": "Role",
|
|
894
|
+
"package": "@m3e/core"
|
|
895
|
+
}
|
|
896
|
+
],
|
|
897
|
+
"superclass": {
|
|
898
|
+
"name": "LitElement",
|
|
899
|
+
"package": "lit"
|
|
900
|
+
},
|
|
901
|
+
"tagName": "m3e-checkbox",
|
|
902
|
+
"customElement": true
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
"exports": [
|
|
906
|
+
{
|
|
907
|
+
"kind": "js",
|
|
908
|
+
"name": "M3eCheckboxElement",
|
|
909
|
+
"declaration": {
|
|
910
|
+
"name": "M3eCheckboxElement",
|
|
911
|
+
"module": "src/CheckboxElement.ts"
|
|
912
|
+
}
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"kind": "custom-element-definition",
|
|
916
|
+
"name": "m3e-checkbox",
|
|
917
|
+
"declaration": {
|
|
918
|
+
"name": "M3eCheckboxElement",
|
|
919
|
+
"module": "src/CheckboxElement.ts"
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
]
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"kind": "javascript-module",
|
|
926
|
+
"path": "src/index.ts",
|
|
927
|
+
"declarations": [],
|
|
928
|
+
"exports": [
|
|
929
|
+
{
|
|
930
|
+
"kind": "js",
|
|
931
|
+
"name": "*",
|
|
932
|
+
"declaration": {
|
|
933
|
+
"name": "*",
|
|
934
|
+
"package": "\"./CheckboxElement\""
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
]
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"kind": "javascript-module",
|
|
941
|
+
"path": "../core/src/shared/mixins/AttachInternals.ts",
|
|
942
|
+
"declarations": [
|
|
943
|
+
{
|
|
944
|
+
"kind": "variable",
|
|
945
|
+
"name": "internals",
|
|
946
|
+
"description": "A symbol through which to access the `ElementInternals` attached to an element."
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"kind": "function",
|
|
950
|
+
"name": "isAttachInternalsMixin",
|
|
951
|
+
"return": {
|
|
952
|
+
"type": {
|
|
953
|
+
"text": ""
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"parameters": [
|
|
957
|
+
{
|
|
958
|
+
"name": "value",
|
|
959
|
+
"type": {
|
|
960
|
+
"text": "unknown"
|
|
961
|
+
},
|
|
962
|
+
"description": "The value to test."
|
|
963
|
+
}
|
|
964
|
+
],
|
|
965
|
+
"description": "Determines whether a value is an `AttachInternalsMixin`."
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"kind": "mixin",
|
|
969
|
+
"description": "Mixin to augment an element with behavior that attaches to `ElementInternals`.",
|
|
970
|
+
"name": "AttachInternals",
|
|
971
|
+
"members": [
|
|
972
|
+
{
|
|
973
|
+
"kind": "field",
|
|
974
|
+
"name": "formAssociated",
|
|
975
|
+
"static": true,
|
|
976
|
+
"readonly": true,
|
|
977
|
+
"default": "formAssociated",
|
|
978
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"kind": "field",
|
|
982
|
+
"name": "[_internals]",
|
|
983
|
+
"type": {
|
|
984
|
+
"text": "ElementInternals | undefined"
|
|
985
|
+
},
|
|
986
|
+
"privacy": "private"
|
|
987
|
+
}
|
|
988
|
+
],
|
|
989
|
+
"parameters": [
|
|
990
|
+
{
|
|
991
|
+
"name": "base",
|
|
992
|
+
"type": {
|
|
993
|
+
"text": "T"
|
|
994
|
+
},
|
|
995
|
+
"description": "The base class."
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"name": "formAssociated",
|
|
999
|
+
"optional": true,
|
|
1000
|
+
"type": {
|
|
1001
|
+
"text": "boolean | undefined"
|
|
1002
|
+
},
|
|
1003
|
+
"description": "Whether the element is \"Form Associated\"."
|
|
1004
|
+
}
|
|
1005
|
+
]
|
|
1006
|
+
}
|
|
1007
|
+
],
|
|
1008
|
+
"exports": [
|
|
1009
|
+
{
|
|
1010
|
+
"kind": "js",
|
|
1011
|
+
"name": "internals",
|
|
1012
|
+
"declaration": {
|
|
1013
|
+
"name": "internals",
|
|
1014
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
1015
|
+
}
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"kind": "js",
|
|
1019
|
+
"name": "isAttachInternalsMixin",
|
|
1020
|
+
"declaration": {
|
|
1021
|
+
"name": "isAttachInternalsMixin",
|
|
1022
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"kind": "js",
|
|
1027
|
+
"name": "AttachInternals",
|
|
1028
|
+
"declaration": {
|
|
1029
|
+
"name": "AttachInternals",
|
|
1030
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
]
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"kind": "javascript-module",
|
|
1037
|
+
"path": "../core/src/shared/mixins/Checked.ts",
|
|
1038
|
+
"declarations": [
|
|
1039
|
+
{
|
|
1040
|
+
"kind": "function",
|
|
1041
|
+
"name": "isCheckedMixin",
|
|
1042
|
+
"return": {
|
|
1043
|
+
"type": {
|
|
1044
|
+
"text": ""
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
"parameters": [
|
|
1048
|
+
{
|
|
1049
|
+
"name": "value",
|
|
1050
|
+
"type": {
|
|
1051
|
+
"text": "unknown"
|
|
1052
|
+
},
|
|
1053
|
+
"description": "The value to test."
|
|
1054
|
+
}
|
|
1055
|
+
],
|
|
1056
|
+
"description": "Determines whether a value is a `CheckedMixin`."
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"kind": "mixin",
|
|
1060
|
+
"description": "Mixin to augment an element with behavior that supports a checked state.",
|
|
1061
|
+
"name": "Checked",
|
|
1062
|
+
"members": [
|
|
1063
|
+
{
|
|
1064
|
+
"kind": "field",
|
|
1065
|
+
"name": "checked",
|
|
1066
|
+
"type": {
|
|
1067
|
+
"text": "boolean"
|
|
1068
|
+
},
|
|
1069
|
+
"default": "false",
|
|
1070
|
+
"description": "Whether the element is checked.",
|
|
1071
|
+
"attribute": "checked",
|
|
1072
|
+
"reflects": true
|
|
1073
|
+
}
|
|
1074
|
+
],
|
|
1075
|
+
"attributes": [
|
|
1076
|
+
{
|
|
1077
|
+
"name": "checked",
|
|
1078
|
+
"type": {
|
|
1079
|
+
"text": "boolean"
|
|
1080
|
+
},
|
|
1081
|
+
"default": "false",
|
|
1082
|
+
"description": "Whether the element is checked.",
|
|
1083
|
+
"fieldName": "checked"
|
|
1084
|
+
}
|
|
1085
|
+
],
|
|
1086
|
+
"parameters": [
|
|
1087
|
+
{
|
|
1088
|
+
"name": "base",
|
|
1089
|
+
"type": {
|
|
1090
|
+
"text": "T"
|
|
1091
|
+
},
|
|
1092
|
+
"description": "The base class."
|
|
1093
|
+
}
|
|
1094
|
+
]
|
|
1095
|
+
}
|
|
1096
|
+
],
|
|
1097
|
+
"exports": [
|
|
1098
|
+
{
|
|
1099
|
+
"kind": "js",
|
|
1100
|
+
"name": "isCheckedMixin",
|
|
1101
|
+
"declaration": {
|
|
1102
|
+
"name": "isCheckedMixin",
|
|
1103
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
1104
|
+
}
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"kind": "js",
|
|
1108
|
+
"name": "Checked",
|
|
1109
|
+
"declaration": {
|
|
1110
|
+
"name": "Checked",
|
|
1111
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1114
|
+
]
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"kind": "javascript-module",
|
|
1118
|
+
"path": "../core/src/shared/mixins/CheckedIndeterminate.ts",
|
|
1119
|
+
"declarations": [
|
|
1120
|
+
{
|
|
1121
|
+
"kind": "function",
|
|
1122
|
+
"name": "isCheckedIndeterminateMixin",
|
|
1123
|
+
"return": {
|
|
1124
|
+
"type": {
|
|
1125
|
+
"text": ""
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
"parameters": [
|
|
1129
|
+
{
|
|
1130
|
+
"name": "value",
|
|
1131
|
+
"type": {
|
|
1132
|
+
"text": "unknown"
|
|
1133
|
+
},
|
|
1134
|
+
"description": "The value to test."
|
|
1135
|
+
}
|
|
1136
|
+
],
|
|
1137
|
+
"description": "Determines whether a value is a `CheckedIndeterminateMixin`."
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"kind": "mixin",
|
|
1141
|
+
"description": "Mixin to augment an element with behavior that supports a mixed checked state.",
|
|
1142
|
+
"name": "CheckedIndeterminate",
|
|
1143
|
+
"members": [
|
|
1144
|
+
{
|
|
1145
|
+
"kind": "field",
|
|
1146
|
+
"name": "indeterminate",
|
|
1147
|
+
"type": {
|
|
1148
|
+
"text": "boolean"
|
|
1149
|
+
},
|
|
1150
|
+
"default": "false",
|
|
1151
|
+
"description": "Whether the element's checked state is indeterminate.",
|
|
1152
|
+
"attribute": "indeterminate",
|
|
1153
|
+
"reflects": true
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"kind": "field",
|
|
1157
|
+
"name": "checked",
|
|
1158
|
+
"type": {
|
|
1159
|
+
"text": "boolean"
|
|
1160
|
+
},
|
|
1161
|
+
"default": "false",
|
|
1162
|
+
"description": "Whether the element is checked.",
|
|
1163
|
+
"attribute": "checked",
|
|
1164
|
+
"reflects": true,
|
|
1165
|
+
"inheritedFrom": {
|
|
1166
|
+
"name": "Checked",
|
|
1167
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1170
|
+
],
|
|
1171
|
+
"attributes": [
|
|
1172
|
+
{
|
|
1173
|
+
"name": "indeterminate",
|
|
1174
|
+
"type": {
|
|
1175
|
+
"text": "boolean"
|
|
1176
|
+
},
|
|
1177
|
+
"default": "false",
|
|
1178
|
+
"description": "Whether the element's checked state is indeterminate.",
|
|
1179
|
+
"fieldName": "indeterminate"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"name": "checked",
|
|
1183
|
+
"type": {
|
|
1184
|
+
"text": "boolean"
|
|
1185
|
+
},
|
|
1186
|
+
"default": "false",
|
|
1187
|
+
"description": "Whether the element is checked.",
|
|
1188
|
+
"fieldName": "checked",
|
|
1189
|
+
"inheritedFrom": {
|
|
1190
|
+
"name": "Checked",
|
|
1191
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
1192
|
+
}
|
|
1193
|
+
}
|
|
1194
|
+
],
|
|
1195
|
+
"mixins": [
|
|
1196
|
+
{
|
|
1197
|
+
"name": "Checked",
|
|
1198
|
+
"module": "/core/src/shared/mixins/Checked"
|
|
1199
|
+
}
|
|
1200
|
+
],
|
|
1201
|
+
"parameters": [
|
|
1202
|
+
{
|
|
1203
|
+
"name": "base",
|
|
1204
|
+
"type": {
|
|
1205
|
+
"text": "T"
|
|
1206
|
+
},
|
|
1207
|
+
"description": "The base class."
|
|
1208
|
+
}
|
|
1209
|
+
]
|
|
1210
|
+
}
|
|
1211
|
+
],
|
|
1212
|
+
"exports": [
|
|
1213
|
+
{
|
|
1214
|
+
"kind": "js",
|
|
1215
|
+
"name": "isCheckedIndeterminateMixin",
|
|
1216
|
+
"declaration": {
|
|
1217
|
+
"name": "isCheckedIndeterminateMixin",
|
|
1218
|
+
"module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"kind": "js",
|
|
1223
|
+
"name": "CheckedIndeterminate",
|
|
1224
|
+
"declaration": {
|
|
1225
|
+
"name": "CheckedIndeterminate",
|
|
1226
|
+
"module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
]
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"kind": "javascript-module",
|
|
1233
|
+
"path": "../core/src/shared/mixins/CheckedOrSelected.ts",
|
|
1234
|
+
"declarations": [
|
|
1235
|
+
{
|
|
1236
|
+
"kind": "function",
|
|
1237
|
+
"name": "isCheckedOrSelectedMixin",
|
|
1238
|
+
"return": {
|
|
1239
|
+
"type": {
|
|
1240
|
+
"text": ""
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
"parameters": [
|
|
1244
|
+
{
|
|
1245
|
+
"name": "value",
|
|
1246
|
+
"type": {
|
|
1247
|
+
"text": "unknown"
|
|
1248
|
+
},
|
|
1249
|
+
"description": "The value to test."
|
|
1250
|
+
}
|
|
1251
|
+
],
|
|
1252
|
+
"description": "Determines whether a value is a `CheckedOrSelectedMixin`."
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"kind": "function",
|
|
1256
|
+
"name": "isCheckedOrSelected",
|
|
1257
|
+
"return": {
|
|
1258
|
+
"type": {
|
|
1259
|
+
"text": "boolean"
|
|
1260
|
+
}
|
|
1261
|
+
},
|
|
1262
|
+
"parameters": [
|
|
1263
|
+
{
|
|
1264
|
+
"name": "element",
|
|
1265
|
+
"type": {
|
|
1266
|
+
"text": "CheckedOrSelectedMixin"
|
|
1267
|
+
},
|
|
1268
|
+
"description": "The element to test."
|
|
1269
|
+
}
|
|
1270
|
+
],
|
|
1271
|
+
"description": "Determines whether the state of an element is checked or selected."
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"kind": "function",
|
|
1275
|
+
"name": "checkOrSelect",
|
|
1276
|
+
"return": {
|
|
1277
|
+
"type": {
|
|
1278
|
+
"text": "void"
|
|
1279
|
+
}
|
|
1280
|
+
},
|
|
1281
|
+
"parameters": [
|
|
1282
|
+
{
|
|
1283
|
+
"name": "element",
|
|
1284
|
+
"type": {
|
|
1285
|
+
"text": "CheckedOrSelectedMixin"
|
|
1286
|
+
},
|
|
1287
|
+
"description": "The element for which to set the checked or selected state."
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"name": "checkedOrSelected",
|
|
1291
|
+
"type": {
|
|
1292
|
+
"text": "boolean"
|
|
1293
|
+
},
|
|
1294
|
+
"description": "The checked or selected state."
|
|
1295
|
+
}
|
|
1296
|
+
],
|
|
1297
|
+
"description": "Sets the checked or selected state of an element."
|
|
1298
|
+
}
|
|
1299
|
+
],
|
|
1300
|
+
"exports": [
|
|
1301
|
+
{
|
|
1302
|
+
"kind": "js",
|
|
1303
|
+
"name": "isCheckedOrSelectedMixin",
|
|
1304
|
+
"declaration": {
|
|
1305
|
+
"name": "isCheckedOrSelectedMixin",
|
|
1306
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
1307
|
+
}
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
"kind": "js",
|
|
1311
|
+
"name": "isCheckedOrSelected",
|
|
1312
|
+
"declaration": {
|
|
1313
|
+
"name": "isCheckedOrSelected",
|
|
1314
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"kind": "js",
|
|
1319
|
+
"name": "checkOrSelect",
|
|
1320
|
+
"declaration": {
|
|
1321
|
+
"name": "checkOrSelect",
|
|
1322
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
]
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"kind": "javascript-module",
|
|
1329
|
+
"path": "../core/src/shared/mixins/ConstraintValidation.ts",
|
|
1330
|
+
"declarations": [
|
|
1331
|
+
{
|
|
1332
|
+
"kind": "variable",
|
|
1333
|
+
"name": "validate",
|
|
1334
|
+
"description": "A symbol through which a \"Form Associated\" custom element validates its current state."
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"kind": "function",
|
|
1338
|
+
"name": "isConstraintValidationMixin",
|
|
1339
|
+
"return": {
|
|
1340
|
+
"type": {
|
|
1341
|
+
"text": ""
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
"parameters": [
|
|
1345
|
+
{
|
|
1346
|
+
"name": "value",
|
|
1347
|
+
"type": {
|
|
1348
|
+
"text": "unknown"
|
|
1349
|
+
},
|
|
1350
|
+
"description": "The value to test."
|
|
1351
|
+
}
|
|
1352
|
+
],
|
|
1353
|
+
"description": "Determines whether a value is a `ConstraintValidationMixin`."
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"kind": "mixin",
|
|
1357
|
+
"description": "Mixin to augment an element with \"Form Associated\" behavior that supports constraint validation.",
|
|
1358
|
+
"name": "ConstraintValidation",
|
|
1359
|
+
"members": [
|
|
1360
|
+
{
|
|
1361
|
+
"kind": "field",
|
|
1362
|
+
"name": "[_validityMessage]",
|
|
1363
|
+
"type": {
|
|
1364
|
+
"text": "string | undefined"
|
|
1365
|
+
},
|
|
1366
|
+
"privacy": "private"
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"kind": "field",
|
|
1370
|
+
"name": "willValidate",
|
|
1371
|
+
"type": {
|
|
1372
|
+
"text": "boolean"
|
|
1373
|
+
},
|
|
1374
|
+
"description": "Whether the element is a submittable element that is a candidate for constraint validation.",
|
|
1375
|
+
"readonly": true
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"kind": "field",
|
|
1379
|
+
"name": "validity",
|
|
1380
|
+
"type": {
|
|
1381
|
+
"text": "ValidityState"
|
|
1382
|
+
},
|
|
1383
|
+
"description": "The validity state of the element.",
|
|
1384
|
+
"readonly": true
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"kind": "field",
|
|
1388
|
+
"name": "validationMessage",
|
|
1389
|
+
"type": {
|
|
1390
|
+
"text": "string"
|
|
1391
|
+
},
|
|
1392
|
+
"description": "The error message that would be displayed if the user submits the form, or an empty string if no error message.",
|
|
1393
|
+
"readonly": true
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"kind": "method",
|
|
1397
|
+
"name": "reportValidity",
|
|
1398
|
+
"return": {
|
|
1399
|
+
"type": {
|
|
1400
|
+
"text": "boolean"
|
|
1401
|
+
}
|
|
1402
|
+
},
|
|
1403
|
+
"description": "Returns `true` if the element has no validity problems; otherwise, returns `false`, fires\r\nan invalid event, and (if the event isn't canceled) reports the problem to the user."
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"kind": "method",
|
|
1407
|
+
"name": "checkValidity",
|
|
1408
|
+
"return": {
|
|
1409
|
+
"type": {
|
|
1410
|
+
"text": "boolean"
|
|
1411
|
+
}
|
|
1412
|
+
},
|
|
1413
|
+
"description": "Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event."
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"kind": "method",
|
|
1417
|
+
"name": "setCustomValidity",
|
|
1418
|
+
"return": {
|
|
1419
|
+
"type": {
|
|
1420
|
+
"text": "void"
|
|
1421
|
+
}
|
|
1422
|
+
},
|
|
1423
|
+
"parameters": [
|
|
1424
|
+
{
|
|
1425
|
+
"name": "error",
|
|
1426
|
+
"type": {
|
|
1427
|
+
"text": "string"
|
|
1428
|
+
},
|
|
1429
|
+
"description": "The message to use for validity errors."
|
|
1430
|
+
}
|
|
1431
|
+
],
|
|
1432
|
+
"description": "Sets a custom validity message for the element."
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
"kind": "method",
|
|
1436
|
+
"name": "[_updateValidity]",
|
|
1437
|
+
"privacy": "private",
|
|
1438
|
+
"return": {
|
|
1439
|
+
"type": {
|
|
1440
|
+
"text": "void"
|
|
1441
|
+
}
|
|
1442
|
+
}
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"kind": "method",
|
|
1446
|
+
"name": "#getNativeMessage",
|
|
1447
|
+
"privacy": "private",
|
|
1448
|
+
"return": {
|
|
1449
|
+
"type": {
|
|
1450
|
+
"text": "string"
|
|
1451
|
+
}
|
|
1452
|
+
},
|
|
1453
|
+
"parameters": [
|
|
1454
|
+
{
|
|
1455
|
+
"name": "flags",
|
|
1456
|
+
"type": {
|
|
1457
|
+
"text": "ValidityStateFlags"
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
]
|
|
1461
|
+
}
|
|
1462
|
+
],
|
|
1463
|
+
"parameters": [
|
|
1464
|
+
{
|
|
1465
|
+
"name": "base",
|
|
1466
|
+
"type": {
|
|
1467
|
+
"text": "T"
|
|
1468
|
+
},
|
|
1469
|
+
"description": "The base class."
|
|
1470
|
+
}
|
|
1471
|
+
]
|
|
1472
|
+
}
|
|
1473
|
+
],
|
|
1474
|
+
"exports": [
|
|
1475
|
+
{
|
|
1476
|
+
"kind": "js",
|
|
1477
|
+
"name": "validate",
|
|
1478
|
+
"declaration": {
|
|
1479
|
+
"name": "validate",
|
|
1480
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
1481
|
+
}
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"kind": "js",
|
|
1485
|
+
"name": "isConstraintValidationMixin",
|
|
1486
|
+
"declaration": {
|
|
1487
|
+
"name": "isConstraintValidationMixin",
|
|
1488
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
1489
|
+
}
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"kind": "js",
|
|
1493
|
+
"name": "ConstraintValidation",
|
|
1494
|
+
"declaration": {
|
|
1495
|
+
"name": "ConstraintValidation",
|
|
1496
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
1497
|
+
}
|
|
1498
|
+
}
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"kind": "javascript-module",
|
|
1503
|
+
"path": "../core/src/shared/mixins/Constructor.ts",
|
|
1504
|
+
"declarations": [],
|
|
1505
|
+
"exports": []
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"kind": "javascript-module",
|
|
1509
|
+
"path": "../core/src/shared/mixins/Dirty.ts",
|
|
1510
|
+
"declarations": [
|
|
1511
|
+
{
|
|
1512
|
+
"kind": "function",
|
|
1513
|
+
"name": "isDirtyMixin",
|
|
1514
|
+
"return": {
|
|
1515
|
+
"type": {
|
|
1516
|
+
"text": ""
|
|
1517
|
+
}
|
|
1518
|
+
},
|
|
1519
|
+
"parameters": [
|
|
1520
|
+
{
|
|
1521
|
+
"name": "value",
|
|
1522
|
+
"type": {
|
|
1523
|
+
"text": "unknown"
|
|
1524
|
+
},
|
|
1525
|
+
"description": "The value to test."
|
|
1526
|
+
}
|
|
1527
|
+
],
|
|
1528
|
+
"description": "Determines whether a value is a `DirtyMixin`."
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"kind": "mixin",
|
|
1532
|
+
"description": "Mixin to augment an element with functionality used to mark it as dirty.",
|
|
1533
|
+
"name": "Dirty",
|
|
1534
|
+
"members": [
|
|
1535
|
+
{
|
|
1536
|
+
"kind": "field",
|
|
1537
|
+
"name": "[_eventHandler]",
|
|
1538
|
+
"privacy": "private"
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"kind": "field",
|
|
1542
|
+
"name": "dirty",
|
|
1543
|
+
"type": {
|
|
1544
|
+
"text": "boolean"
|
|
1545
|
+
},
|
|
1546
|
+
"description": "Whether the user has modified the value of the element.",
|
|
1547
|
+
"readonly": true
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"kind": "field",
|
|
1551
|
+
"name": "pristine",
|
|
1552
|
+
"type": {
|
|
1553
|
+
"text": "boolean"
|
|
1554
|
+
},
|
|
1555
|
+
"description": "Whether the user has not modified the value of the element.",
|
|
1556
|
+
"readonly": true
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"kind": "method",
|
|
1560
|
+
"name": "markAsPristine",
|
|
1561
|
+
"return": {
|
|
1562
|
+
"type": {
|
|
1563
|
+
"text": "void"
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
"description": "Marks the element as pristine."
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"kind": "method",
|
|
1570
|
+
"name": "markAsDirty",
|
|
1571
|
+
"return": {
|
|
1572
|
+
"type": {
|
|
1573
|
+
"text": "void"
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
"description": "Marks the element as dirty."
|
|
1577
|
+
}
|
|
1578
|
+
],
|
|
1579
|
+
"parameters": [
|
|
1580
|
+
{
|
|
1581
|
+
"name": "base",
|
|
1582
|
+
"type": {
|
|
1583
|
+
"text": "T"
|
|
1584
|
+
},
|
|
1585
|
+
"description": "The base class."
|
|
1586
|
+
}
|
|
1587
|
+
]
|
|
1588
|
+
}
|
|
1589
|
+
],
|
|
1590
|
+
"exports": [
|
|
1591
|
+
{
|
|
1592
|
+
"kind": "js",
|
|
1593
|
+
"name": "isDirtyMixin",
|
|
1594
|
+
"declaration": {
|
|
1595
|
+
"name": "isDirtyMixin",
|
|
1596
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
1597
|
+
}
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"kind": "js",
|
|
1601
|
+
"name": "Dirty",
|
|
1602
|
+
"declaration": {
|
|
1603
|
+
"name": "Dirty",
|
|
1604
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
1605
|
+
}
|
|
1606
|
+
}
|
|
1607
|
+
]
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"kind": "javascript-module",
|
|
1611
|
+
"path": "../core/src/shared/mixins/Disabled.ts",
|
|
1612
|
+
"declarations": [
|
|
1613
|
+
{
|
|
1614
|
+
"kind": "function",
|
|
1615
|
+
"name": "isDisabledMixin",
|
|
1616
|
+
"return": {
|
|
1617
|
+
"type": {
|
|
1618
|
+
"text": "value is DisabledMixin"
|
|
1619
|
+
}
|
|
1620
|
+
},
|
|
1621
|
+
"parameters": [
|
|
1622
|
+
{
|
|
1623
|
+
"name": "value",
|
|
1624
|
+
"type": {
|
|
1625
|
+
"text": "unknown"
|
|
1626
|
+
},
|
|
1627
|
+
"description": "The value to test."
|
|
1628
|
+
}
|
|
1629
|
+
],
|
|
1630
|
+
"description": "Determines whether a value is a `DisabledMixin`."
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
"kind": "mixin",
|
|
1634
|
+
"description": "Mixin to augment an element with behavior that supports a disabled state.",
|
|
1635
|
+
"name": "Disabled",
|
|
1636
|
+
"members": [
|
|
1637
|
+
{
|
|
1638
|
+
"kind": "field",
|
|
1639
|
+
"name": "disabled",
|
|
1640
|
+
"type": {
|
|
1641
|
+
"text": "boolean"
|
|
1642
|
+
},
|
|
1643
|
+
"default": "false",
|
|
1644
|
+
"description": "Whether the element is disabled.",
|
|
1645
|
+
"attribute": "disabled"
|
|
1646
|
+
}
|
|
1647
|
+
],
|
|
1648
|
+
"attributes": [
|
|
1649
|
+
{
|
|
1650
|
+
"name": "disabled",
|
|
1651
|
+
"type": {
|
|
1652
|
+
"text": "boolean"
|
|
1653
|
+
},
|
|
1654
|
+
"default": "false",
|
|
1655
|
+
"description": "Whether the element is disabled.",
|
|
1656
|
+
"fieldName": "disabled"
|
|
1657
|
+
}
|
|
1658
|
+
],
|
|
1659
|
+
"parameters": [
|
|
1660
|
+
{
|
|
1661
|
+
"name": "base",
|
|
1662
|
+
"type": {
|
|
1663
|
+
"text": "T"
|
|
1664
|
+
},
|
|
1665
|
+
"description": "The base class."
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"name": "reflect",
|
|
1669
|
+
"default": "true",
|
|
1670
|
+
"type": {
|
|
1671
|
+
"text": "boolean"
|
|
1672
|
+
},
|
|
1673
|
+
"description": "Whether the disabled property is reflected as an attribute.",
|
|
1674
|
+
"optional": true
|
|
1675
|
+
}
|
|
1676
|
+
]
|
|
1677
|
+
}
|
|
1678
|
+
],
|
|
1679
|
+
"exports": [
|
|
1680
|
+
{
|
|
1681
|
+
"kind": "js",
|
|
1682
|
+
"name": "isDisabledMixin",
|
|
1683
|
+
"declaration": {
|
|
1684
|
+
"name": "isDisabledMixin",
|
|
1685
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
1686
|
+
}
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
"kind": "js",
|
|
1690
|
+
"name": "Disabled",
|
|
1691
|
+
"declaration": {
|
|
1692
|
+
"name": "Disabled",
|
|
1693
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1696
|
+
]
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"kind": "javascript-module",
|
|
1700
|
+
"path": "../core/src/shared/mixins/DisabledInteractive.ts",
|
|
1701
|
+
"declarations": [
|
|
1702
|
+
{
|
|
1703
|
+
"kind": "function",
|
|
1704
|
+
"name": "isDisabledInteractiveMixin",
|
|
1705
|
+
"return": {
|
|
1706
|
+
"type": {
|
|
1707
|
+
"text": "value is DisabledInteractiveMixin"
|
|
1708
|
+
}
|
|
1709
|
+
},
|
|
1710
|
+
"parameters": [
|
|
1711
|
+
{
|
|
1712
|
+
"name": "value",
|
|
1713
|
+
"type": {
|
|
1714
|
+
"text": "unknown"
|
|
1715
|
+
},
|
|
1716
|
+
"description": "The value to test."
|
|
1717
|
+
}
|
|
1718
|
+
],
|
|
1719
|
+
"description": "Determines whether a value is a `DisabledInteractiveMixin`."
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"kind": "mixin",
|
|
1723
|
+
"description": "Mixin to augment an element with behavior that supports an interactive disabled state.",
|
|
1724
|
+
"name": "DisabledInteractive",
|
|
1725
|
+
"members": [
|
|
1726
|
+
{
|
|
1727
|
+
"kind": "field",
|
|
1728
|
+
"name": "[_suppressedEventHandler]",
|
|
1729
|
+
"privacy": "private",
|
|
1730
|
+
"readonly": true
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"kind": "field",
|
|
1734
|
+
"name": "disabledInteractive",
|
|
1735
|
+
"type": {
|
|
1736
|
+
"text": "boolean"
|
|
1737
|
+
},
|
|
1738
|
+
"default": "false",
|
|
1739
|
+
"description": "Whether the element is disabled and interactive.",
|
|
1740
|
+
"attribute": "disabled-interactive",
|
|
1741
|
+
"reflects": true
|
|
1742
|
+
}
|
|
1743
|
+
],
|
|
1744
|
+
"attributes": [
|
|
1745
|
+
{
|
|
1746
|
+
"name": "disabled-interactive",
|
|
1747
|
+
"type": {
|
|
1748
|
+
"text": "boolean"
|
|
1749
|
+
},
|
|
1750
|
+
"default": "false",
|
|
1751
|
+
"description": "Whether the element is disabled and interactive.",
|
|
1752
|
+
"fieldName": "disabledInteractive"
|
|
1753
|
+
}
|
|
1754
|
+
],
|
|
1755
|
+
"parameters": [
|
|
1756
|
+
{
|
|
1757
|
+
"name": "base",
|
|
1758
|
+
"type": {
|
|
1759
|
+
"text": "T"
|
|
1760
|
+
},
|
|
1761
|
+
"description": "The base class."
|
|
1762
|
+
}
|
|
1763
|
+
]
|
|
1764
|
+
}
|
|
1765
|
+
],
|
|
1766
|
+
"exports": [
|
|
1767
|
+
{
|
|
1768
|
+
"kind": "js",
|
|
1769
|
+
"name": "isDisabledInteractiveMixin",
|
|
1770
|
+
"declaration": {
|
|
1771
|
+
"name": "isDisabledInteractiveMixin",
|
|
1772
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"kind": "js",
|
|
1777
|
+
"name": "DisabledInteractive",
|
|
1778
|
+
"declaration": {
|
|
1779
|
+
"name": "DisabledInteractive",
|
|
1780
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
]
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
"kind": "javascript-module",
|
|
1787
|
+
"path": "../core/src/shared/mixins/EventAttribute.ts",
|
|
1788
|
+
"declarations": [
|
|
1789
|
+
{
|
|
1790
|
+
"kind": "mixin",
|
|
1791
|
+
"description": "Mixin that adds support for custom event attributes.",
|
|
1792
|
+
"name": "EventAttribute",
|
|
1793
|
+
"members": [
|
|
1794
|
+
{
|
|
1795
|
+
"kind": "method",
|
|
1796
|
+
"name": "dispatchEvent",
|
|
1797
|
+
"return": {
|
|
1798
|
+
"type": {
|
|
1799
|
+
"text": "boolean"
|
|
1800
|
+
}
|
|
1801
|
+
},
|
|
1802
|
+
"parameters": [
|
|
1803
|
+
{
|
|
1804
|
+
"name": "event",
|
|
1805
|
+
"type": {
|
|
1806
|
+
"text": "Event"
|
|
1807
|
+
}
|
|
1808
|
+
}
|
|
1809
|
+
]
|
|
1810
|
+
}
|
|
1811
|
+
],
|
|
1812
|
+
"parameters": [
|
|
1813
|
+
{
|
|
1814
|
+
"name": "base",
|
|
1815
|
+
"type": {
|
|
1816
|
+
"text": "T"
|
|
1817
|
+
},
|
|
1818
|
+
"description": "The base class from which to inherit."
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
"name": "types",
|
|
1822
|
+
"type": {
|
|
1823
|
+
"text": "string[]"
|
|
1824
|
+
},
|
|
1825
|
+
"description": "The types of event attributes."
|
|
1826
|
+
}
|
|
1827
|
+
]
|
|
1828
|
+
}
|
|
1829
|
+
],
|
|
1830
|
+
"exports": [
|
|
1831
|
+
{
|
|
1832
|
+
"kind": "js",
|
|
1833
|
+
"name": "EventAttribute",
|
|
1834
|
+
"declaration": {
|
|
1835
|
+
"name": "EventAttribute",
|
|
1836
|
+
"module": "../core/src/shared/mixins/EventAttribute.ts"
|
|
1837
|
+
}
|
|
1838
|
+
}
|
|
1839
|
+
]
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"kind": "javascript-module",
|
|
1843
|
+
"path": "../core/src/shared/mixins/Focusable.ts",
|
|
1844
|
+
"declarations": [
|
|
1845
|
+
{
|
|
1846
|
+
"kind": "mixin",
|
|
1847
|
+
"description": "Mixin to augment an element with behavior that supports a focused state.",
|
|
1848
|
+
"name": "Focusable",
|
|
1849
|
+
"members": [
|
|
1850
|
+
{
|
|
1851
|
+
"kind": "field",
|
|
1852
|
+
"name": "[_tabindex]",
|
|
1853
|
+
"type": {
|
|
1854
|
+
"text": "number"
|
|
1855
|
+
},
|
|
1856
|
+
"privacy": "private",
|
|
1857
|
+
"default": "0"
|
|
1858
|
+
}
|
|
1859
|
+
],
|
|
1860
|
+
"parameters": [
|
|
1861
|
+
{
|
|
1862
|
+
"name": "base",
|
|
1863
|
+
"type": {
|
|
1864
|
+
"text": "T"
|
|
1865
|
+
},
|
|
1866
|
+
"description": "The base class."
|
|
1867
|
+
}
|
|
1868
|
+
]
|
|
1869
|
+
}
|
|
1870
|
+
],
|
|
1871
|
+
"exports": [
|
|
1872
|
+
{
|
|
1873
|
+
"kind": "js",
|
|
1874
|
+
"name": "Focusable",
|
|
1875
|
+
"declaration": {
|
|
1876
|
+
"name": "Focusable",
|
|
1877
|
+
"module": "../core/src/shared/mixins/Focusable.ts"
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1880
|
+
]
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"kind": "javascript-module",
|
|
1884
|
+
"path": "../core/src/shared/mixins/FormAssociated.ts",
|
|
1885
|
+
"declarations": [
|
|
1886
|
+
{
|
|
1887
|
+
"kind": "variable",
|
|
1888
|
+
"name": "formValue",
|
|
1889
|
+
"description": "A symbol through which a \"Form Associated\" custom element provides a value for a form."
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
"kind": "variable",
|
|
1893
|
+
"name": "defaultValue",
|
|
1894
|
+
"description": "A symbol through which a \"Form Associated\" custom element provides a default value for resetting a form."
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
"kind": "function",
|
|
1898
|
+
"name": "isFormAssociatedMixin",
|
|
1899
|
+
"return": {
|
|
1900
|
+
"type": {
|
|
1901
|
+
"text": ""
|
|
1902
|
+
}
|
|
1903
|
+
},
|
|
1904
|
+
"parameters": [
|
|
1905
|
+
{
|
|
1906
|
+
"name": "value",
|
|
1907
|
+
"type": {
|
|
1908
|
+
"text": "unknown"
|
|
1909
|
+
},
|
|
1910
|
+
"description": "The value to test."
|
|
1911
|
+
}
|
|
1912
|
+
],
|
|
1913
|
+
"description": "Determines whether a value is a `FormAssociatedMixin`."
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
"kind": "mixin",
|
|
1917
|
+
"description": "Mixin to augment an element with \"Form Associated\" behavior.",
|
|
1918
|
+
"name": "FormAssociated",
|
|
1919
|
+
"members": [
|
|
1920
|
+
{
|
|
1921
|
+
"kind": "field",
|
|
1922
|
+
"name": "formAssociated",
|
|
1923
|
+
"type": {
|
|
1924
|
+
"text": "boolean"
|
|
1925
|
+
},
|
|
1926
|
+
"static": true,
|
|
1927
|
+
"readonly": true,
|
|
1928
|
+
"default": "true",
|
|
1929
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
"kind": "field",
|
|
1933
|
+
"name": "[_defaultValue]",
|
|
1934
|
+
"type": {
|
|
1935
|
+
"text": "unknown"
|
|
1936
|
+
},
|
|
1937
|
+
"privacy": "private"
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
"kind": "field",
|
|
1941
|
+
"name": "[_defaultIndeterminate]",
|
|
1942
|
+
"type": {
|
|
1943
|
+
"text": "boolean"
|
|
1944
|
+
},
|
|
1945
|
+
"privacy": "private",
|
|
1946
|
+
"default": "false"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"kind": "field",
|
|
1950
|
+
"name": "[_formDisabled]",
|
|
1951
|
+
"type": {
|
|
1952
|
+
"text": "boolean"
|
|
1953
|
+
},
|
|
1954
|
+
"privacy": "private",
|
|
1955
|
+
"default": "false"
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
"kind": "field",
|
|
1959
|
+
"name": "form",
|
|
1960
|
+
"type": {
|
|
1961
|
+
"text": "HTMLFormElement | null"
|
|
1962
|
+
},
|
|
1963
|
+
"description": "The `HTMLFormElement` associated with this element.",
|
|
1964
|
+
"readonly": true
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
"kind": "field",
|
|
1968
|
+
"name": "labels",
|
|
1969
|
+
"type": {
|
|
1970
|
+
"text": "NodeListOf<HTMLLabelElement>"
|
|
1971
|
+
},
|
|
1972
|
+
"readonly": true
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"kind": "field",
|
|
1976
|
+
"name": "name",
|
|
1977
|
+
"description": "The name that identifies the element when submitting the associated form.",
|
|
1978
|
+
"attribute": "name"
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
"kind": "field",
|
|
1982
|
+
"name": "disabled",
|
|
1983
|
+
"type": {
|
|
1984
|
+
"text": "boolean"
|
|
1985
|
+
},
|
|
1986
|
+
"description": "Whether the element is disabled.",
|
|
1987
|
+
"default": "false",
|
|
1988
|
+
"attribute": "disabled"
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
"kind": "method",
|
|
1992
|
+
"name": "formDisabledCallback",
|
|
1993
|
+
"return": {
|
|
1994
|
+
"type": {
|
|
1995
|
+
"text": "void"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"parameters": [
|
|
1999
|
+
{
|
|
2000
|
+
"name": "disabled",
|
|
2001
|
+
"type": {
|
|
2002
|
+
"text": "boolean"
|
|
2003
|
+
}
|
|
2004
|
+
}
|
|
2005
|
+
],
|
|
2006
|
+
"description": "Called when the element is disabled or enabled via its form association."
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"kind": "method",
|
|
2010
|
+
"name": "formResetCallback",
|
|
2011
|
+
"return": {
|
|
2012
|
+
"type": {
|
|
2013
|
+
"text": "void"
|
|
2014
|
+
}
|
|
2015
|
+
},
|
|
2016
|
+
"description": "Called when the associated form is reset."
|
|
2017
|
+
}
|
|
2018
|
+
],
|
|
2019
|
+
"attributes": [
|
|
2020
|
+
{
|
|
2021
|
+
"name": "name",
|
|
2022
|
+
"description": "The name that identifies the element when submitting the associated form.",
|
|
2023
|
+
"fieldName": "name"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"name": "disabled",
|
|
2027
|
+
"type": {
|
|
2028
|
+
"text": "boolean"
|
|
2029
|
+
},
|
|
2030
|
+
"description": "Whether the element is disabled.",
|
|
2031
|
+
"default": "false",
|
|
2032
|
+
"fieldName": "disabled"
|
|
2033
|
+
}
|
|
2034
|
+
],
|
|
2035
|
+
"parameters": [
|
|
2036
|
+
{
|
|
2037
|
+
"name": "base",
|
|
2038
|
+
"type": {
|
|
2039
|
+
"text": "T"
|
|
2040
|
+
},
|
|
2041
|
+
"description": "The base class."
|
|
2042
|
+
}
|
|
2043
|
+
]
|
|
2044
|
+
}
|
|
2045
|
+
],
|
|
2046
|
+
"exports": [
|
|
2047
|
+
{
|
|
2048
|
+
"kind": "js",
|
|
2049
|
+
"name": "formValue",
|
|
2050
|
+
"declaration": {
|
|
2051
|
+
"name": "formValue",
|
|
2052
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
2053
|
+
}
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"kind": "js",
|
|
2057
|
+
"name": "defaultValue",
|
|
2058
|
+
"declaration": {
|
|
2059
|
+
"name": "defaultValue",
|
|
2060
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
2061
|
+
}
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"kind": "js",
|
|
2065
|
+
"name": "isFormAssociatedMixin",
|
|
2066
|
+
"declaration": {
|
|
2067
|
+
"name": "isFormAssociatedMixin",
|
|
2068
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
2069
|
+
}
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
"kind": "js",
|
|
2073
|
+
"name": "FormAssociated",
|
|
2074
|
+
"declaration": {
|
|
2075
|
+
"name": "FormAssociated",
|
|
2076
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
2077
|
+
}
|
|
2078
|
+
}
|
|
2079
|
+
]
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
"kind": "javascript-module",
|
|
2083
|
+
"path": "../core/src/shared/mixins/FormSubmitter.ts",
|
|
2084
|
+
"declarations": [
|
|
2085
|
+
{
|
|
2086
|
+
"kind": "function",
|
|
2087
|
+
"name": "isFormSubmitterMixin",
|
|
2088
|
+
"return": {
|
|
2089
|
+
"type": {
|
|
2090
|
+
"text": "value is FormSubmitterMixin"
|
|
2091
|
+
}
|
|
2092
|
+
},
|
|
2093
|
+
"parameters": [
|
|
2094
|
+
{
|
|
2095
|
+
"name": "value",
|
|
2096
|
+
"type": {
|
|
2097
|
+
"text": "unknown"
|
|
2098
|
+
},
|
|
2099
|
+
"description": "The value to test."
|
|
2100
|
+
}
|
|
2101
|
+
],
|
|
2102
|
+
"description": "Determines whether a value is a `FormSubmitterMixin`."
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"kind": "mixin",
|
|
2106
|
+
"description": "Mixin to augment an element with behavior used to submit a form.",
|
|
2107
|
+
"name": "FormSubmitter",
|
|
2108
|
+
"members": [
|
|
2109
|
+
{
|
|
2110
|
+
"kind": "field",
|
|
2111
|
+
"name": "name",
|
|
2112
|
+
"description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
|
|
2113
|
+
"attribute": "name"
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"kind": "field",
|
|
2117
|
+
"name": "value",
|
|
2118
|
+
"description": "The value associated with the element's name when it's submitted with form data.",
|
|
2119
|
+
"attribute": "value"
|
|
2120
|
+
},
|
|
2121
|
+
{
|
|
2122
|
+
"kind": "field",
|
|
2123
|
+
"name": "type",
|
|
2124
|
+
"type": {
|
|
2125
|
+
"text": "FormSubmitterType"
|
|
2126
|
+
},
|
|
2127
|
+
"default": "\"button\"",
|
|
2128
|
+
"description": "The type of the element.",
|
|
2129
|
+
"attribute": "type"
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"kind": "field",
|
|
2133
|
+
"name": "[_clickHandler]",
|
|
2134
|
+
"privacy": "private"
|
|
2135
|
+
}
|
|
2136
|
+
],
|
|
2137
|
+
"attributes": [
|
|
2138
|
+
{
|
|
2139
|
+
"name": "name",
|
|
2140
|
+
"description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
|
|
2141
|
+
"fieldName": "name"
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"name": "value",
|
|
2145
|
+
"description": "The value associated with the element's name when it's submitted with form data.",
|
|
2146
|
+
"fieldName": "value"
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"name": "type",
|
|
2150
|
+
"type": {
|
|
2151
|
+
"text": "FormSubmitterType"
|
|
2152
|
+
},
|
|
2153
|
+
"default": "\"button\"",
|
|
2154
|
+
"description": "The type of the element.",
|
|
2155
|
+
"fieldName": "type"
|
|
2156
|
+
}
|
|
2157
|
+
],
|
|
2158
|
+
"parameters": [
|
|
2159
|
+
{
|
|
2160
|
+
"name": "base",
|
|
2161
|
+
"type": {
|
|
2162
|
+
"text": "T"
|
|
2163
|
+
},
|
|
2164
|
+
"description": "The base class."
|
|
2165
|
+
}
|
|
2166
|
+
]
|
|
2167
|
+
}
|
|
2168
|
+
],
|
|
2169
|
+
"exports": [
|
|
2170
|
+
{
|
|
2171
|
+
"kind": "js",
|
|
2172
|
+
"name": "isFormSubmitterMixin",
|
|
2173
|
+
"declaration": {
|
|
2174
|
+
"name": "isFormSubmitterMixin",
|
|
2175
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
2176
|
+
}
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"kind": "js",
|
|
2180
|
+
"name": "FormSubmitter",
|
|
2181
|
+
"declaration": {
|
|
2182
|
+
"name": "FormSubmitter",
|
|
2183
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2186
|
+
]
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"kind": "javascript-module",
|
|
2190
|
+
"path": "../core/src/shared/mixins/hasKeys.ts",
|
|
2191
|
+
"declarations": [
|
|
2192
|
+
{
|
|
2193
|
+
"kind": "function",
|
|
2194
|
+
"name": "hasKeys",
|
|
2195
|
+
"return": {
|
|
2196
|
+
"type": {
|
|
2197
|
+
"text": "boolean"
|
|
2198
|
+
}
|
|
2199
|
+
},
|
|
2200
|
+
"parameters": [
|
|
2201
|
+
{
|
|
2202
|
+
"name": "value",
|
|
2203
|
+
"type": {
|
|
2204
|
+
"text": "unknown"
|
|
2205
|
+
},
|
|
2206
|
+
"description": "The value to test."
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
"name": "keys",
|
|
2210
|
+
"type": {
|
|
2211
|
+
"text": "Array<keyof T>"
|
|
2212
|
+
}
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"description": ": Array<keyof T>} keys The keys of `T` to test.",
|
|
2216
|
+
"name": "",
|
|
2217
|
+
"type": {
|
|
2218
|
+
"text": "...keys"
|
|
2219
|
+
}
|
|
2220
|
+
}
|
|
2221
|
+
],
|
|
2222
|
+
"description": "Determines whether an object has keys for a given type."
|
|
2223
|
+
}
|
|
2224
|
+
],
|
|
2225
|
+
"exports": [
|
|
2226
|
+
{
|
|
2227
|
+
"kind": "js",
|
|
2228
|
+
"name": "hasKeys",
|
|
2229
|
+
"declaration": {
|
|
2230
|
+
"name": "hasKeys",
|
|
2231
|
+
"module": "../core/src/shared/mixins/hasKeys.ts"
|
|
2232
|
+
}
|
|
2233
|
+
}
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"kind": "javascript-module",
|
|
2238
|
+
"path": "../core/src/shared/mixins/HtmlFor.ts",
|
|
2239
|
+
"declarations": [
|
|
2240
|
+
{
|
|
2241
|
+
"kind": "function",
|
|
2242
|
+
"name": "isHtmlForMixin",
|
|
2243
|
+
"return": {
|
|
2244
|
+
"type": {
|
|
2245
|
+
"text": "value is HtmlForMixin"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
"parameters": [
|
|
2249
|
+
{
|
|
2250
|
+
"name": "value",
|
|
2251
|
+
"type": {
|
|
2252
|
+
"text": "unknown"
|
|
2253
|
+
},
|
|
2254
|
+
"description": "The value to test."
|
|
2255
|
+
}
|
|
2256
|
+
],
|
|
2257
|
+
"description": "Determines whether a value is a `HtmlForMixin`."
|
|
2258
|
+
},
|
|
2259
|
+
{
|
|
2260
|
+
"kind": "mixin",
|
|
2261
|
+
"description": "Mixin that creates an attached element associated with an interactive control.",
|
|
2262
|
+
"name": "HtmlFor",
|
|
2263
|
+
"members": [
|
|
2264
|
+
{
|
|
2265
|
+
"kind": "field",
|
|
2266
|
+
"name": "[_control]",
|
|
2267
|
+
"type": {
|
|
2268
|
+
"text": "HTMLElement | null"
|
|
2269
|
+
},
|
|
2270
|
+
"privacy": "private",
|
|
2271
|
+
"default": "null"
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"kind": "field",
|
|
2275
|
+
"name": "[_firstUpdated]",
|
|
2276
|
+
"type": {
|
|
2277
|
+
"text": "boolean"
|
|
2278
|
+
},
|
|
2279
|
+
"privacy": "private",
|
|
2280
|
+
"default": "false"
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
"kind": "field",
|
|
2284
|
+
"name": "htmlFor",
|
|
2285
|
+
"type": {
|
|
2286
|
+
"text": "string | null"
|
|
2287
|
+
},
|
|
2288
|
+
"default": "null",
|
|
2289
|
+
"description": "The identifier of the interactive control to which this element is attached.",
|
|
2290
|
+
"attribute": "for"
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
"kind": "field",
|
|
2294
|
+
"name": "control",
|
|
2295
|
+
"description": "The interactive element to which this element is attached.",
|
|
2296
|
+
"readonly": true
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
"kind": "method",
|
|
2300
|
+
"name": "attach",
|
|
2301
|
+
"return": {
|
|
2302
|
+
"type": {
|
|
2303
|
+
"text": "void"
|
|
2304
|
+
}
|
|
2305
|
+
},
|
|
2306
|
+
"parameters": [
|
|
2307
|
+
{
|
|
2308
|
+
"name": "control",
|
|
2309
|
+
"type": {
|
|
2310
|
+
"text": "HTMLElement"
|
|
2311
|
+
},
|
|
2312
|
+
"description": "The element that controls the attachable element."
|
|
2313
|
+
}
|
|
2314
|
+
],
|
|
2315
|
+
"description": "Attaches the element to an interactive control."
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
"kind": "method",
|
|
2319
|
+
"name": "detach",
|
|
2320
|
+
"return": {
|
|
2321
|
+
"type": {
|
|
2322
|
+
"text": "void"
|
|
2323
|
+
}
|
|
2324
|
+
},
|
|
2325
|
+
"description": "Detaches the element from its current interactive control."
|
|
2326
|
+
}
|
|
2327
|
+
],
|
|
2328
|
+
"attributes": [
|
|
2329
|
+
{
|
|
2330
|
+
"name": "for",
|
|
2331
|
+
"type": {
|
|
2332
|
+
"text": "string | null"
|
|
2333
|
+
},
|
|
2334
|
+
"default": "null",
|
|
2335
|
+
"description": "The identifier of the interactive control to which this element is attached.",
|
|
2336
|
+
"fieldName": "htmlFor"
|
|
2337
|
+
}
|
|
2338
|
+
],
|
|
2339
|
+
"parameters": [
|
|
2340
|
+
{
|
|
2341
|
+
"name": "base",
|
|
2342
|
+
"type": {
|
|
2343
|
+
"text": "T"
|
|
2344
|
+
},
|
|
2345
|
+
"description": "The base class."
|
|
2346
|
+
}
|
|
2347
|
+
]
|
|
2348
|
+
}
|
|
2349
|
+
],
|
|
2350
|
+
"exports": [
|
|
2351
|
+
{
|
|
2352
|
+
"kind": "js",
|
|
2353
|
+
"name": "isHtmlForMixin",
|
|
2354
|
+
"declaration": {
|
|
2355
|
+
"name": "isHtmlForMixin",
|
|
2356
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
2357
|
+
}
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
"kind": "js",
|
|
2361
|
+
"name": "HtmlFor",
|
|
2362
|
+
"declaration": {
|
|
2363
|
+
"name": "HtmlFor",
|
|
2364
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2367
|
+
]
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
"kind": "javascript-module",
|
|
2371
|
+
"path": "../core/src/shared/mixins/index.ts",
|
|
2372
|
+
"declarations": [],
|
|
2373
|
+
"exports": [
|
|
2374
|
+
{
|
|
2375
|
+
"kind": "js",
|
|
2376
|
+
"name": "*",
|
|
2377
|
+
"declaration": {
|
|
2378
|
+
"name": "*",
|
|
2379
|
+
"package": "\"./AttachInternals\""
|
|
2380
|
+
}
|
|
2381
|
+
},
|
|
2382
|
+
{
|
|
2383
|
+
"kind": "js",
|
|
2384
|
+
"name": "*",
|
|
2385
|
+
"declaration": {
|
|
2386
|
+
"name": "*",
|
|
2387
|
+
"package": "\"./Checked\""
|
|
2388
|
+
}
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"kind": "js",
|
|
2392
|
+
"name": "*",
|
|
2393
|
+
"declaration": {
|
|
2394
|
+
"name": "*",
|
|
2395
|
+
"package": "\"./CheckedIndeterminate\""
|
|
2396
|
+
}
|
|
2397
|
+
},
|
|
2398
|
+
{
|
|
2399
|
+
"kind": "js",
|
|
2400
|
+
"name": "*",
|
|
2401
|
+
"declaration": {
|
|
2402
|
+
"name": "*",
|
|
2403
|
+
"package": "\"./CheckedOrSelected\""
|
|
2404
|
+
}
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"kind": "js",
|
|
2408
|
+
"name": "*",
|
|
2409
|
+
"declaration": {
|
|
2410
|
+
"name": "*",
|
|
2411
|
+
"package": "\"./ConstraintValidation\""
|
|
2412
|
+
}
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"kind": "js",
|
|
2416
|
+
"name": "*",
|
|
2417
|
+
"declaration": {
|
|
2418
|
+
"name": "*",
|
|
2419
|
+
"package": "\"./Dirty\""
|
|
2420
|
+
}
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
"kind": "js",
|
|
2424
|
+
"name": "*",
|
|
2425
|
+
"declaration": {
|
|
2426
|
+
"name": "*",
|
|
2427
|
+
"package": "\"./Disabled\""
|
|
2428
|
+
}
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"kind": "js",
|
|
2432
|
+
"name": "*",
|
|
2433
|
+
"declaration": {
|
|
2434
|
+
"name": "*",
|
|
2435
|
+
"package": "\"./DisabledInteractive\""
|
|
2436
|
+
}
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
"kind": "js",
|
|
2440
|
+
"name": "*",
|
|
2441
|
+
"declaration": {
|
|
2442
|
+
"name": "*",
|
|
2443
|
+
"package": "\"./EventAttribute\""
|
|
2444
|
+
}
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"kind": "js",
|
|
2448
|
+
"name": "*",
|
|
2449
|
+
"declaration": {
|
|
2450
|
+
"name": "*",
|
|
2451
|
+
"package": "\"./Focusable\""
|
|
2452
|
+
}
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"kind": "js",
|
|
2456
|
+
"name": "*",
|
|
2457
|
+
"declaration": {
|
|
2458
|
+
"name": "*",
|
|
2459
|
+
"package": "\"./FormAssociated\""
|
|
2460
|
+
}
|
|
2461
|
+
},
|
|
2462
|
+
{
|
|
2463
|
+
"kind": "js",
|
|
2464
|
+
"name": "*",
|
|
2465
|
+
"declaration": {
|
|
2466
|
+
"name": "*",
|
|
2467
|
+
"package": "\"./FormSubmitter\""
|
|
2468
|
+
}
|
|
2469
|
+
},
|
|
2470
|
+
{
|
|
2471
|
+
"kind": "js",
|
|
2472
|
+
"name": "*",
|
|
2473
|
+
"declaration": {
|
|
2474
|
+
"name": "*",
|
|
2475
|
+
"package": "\"./hasKeys\""
|
|
2476
|
+
}
|
|
2477
|
+
},
|
|
2478
|
+
{
|
|
2479
|
+
"kind": "js",
|
|
2480
|
+
"name": "*",
|
|
2481
|
+
"declaration": {
|
|
2482
|
+
"name": "*",
|
|
2483
|
+
"package": "\"./HtmlFor\""
|
|
2484
|
+
}
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
"kind": "js",
|
|
2488
|
+
"name": "*",
|
|
2489
|
+
"declaration": {
|
|
2490
|
+
"name": "*",
|
|
2491
|
+
"package": "\"./KeyboardClick\""
|
|
2492
|
+
}
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"kind": "js",
|
|
2496
|
+
"name": "*",
|
|
2497
|
+
"declaration": {
|
|
2498
|
+
"name": "*",
|
|
2499
|
+
"package": "\"./Labelled\""
|
|
2500
|
+
}
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
"kind": "js",
|
|
2504
|
+
"name": "*",
|
|
2505
|
+
"declaration": {
|
|
2506
|
+
"name": "*",
|
|
2507
|
+
"package": "\"./LinkButton\""
|
|
2508
|
+
}
|
|
2509
|
+
},
|
|
2510
|
+
{
|
|
2511
|
+
"kind": "js",
|
|
2512
|
+
"name": "*",
|
|
2513
|
+
"declaration": {
|
|
2514
|
+
"name": "*",
|
|
2515
|
+
"package": "\"./ReadOnly\""
|
|
2516
|
+
}
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
"kind": "js",
|
|
2520
|
+
"name": "*",
|
|
2521
|
+
"declaration": {
|
|
2522
|
+
"name": "*",
|
|
2523
|
+
"package": "\"./Required\""
|
|
2524
|
+
}
|
|
2525
|
+
},
|
|
2526
|
+
{
|
|
2527
|
+
"kind": "js",
|
|
2528
|
+
"name": "*",
|
|
2529
|
+
"declaration": {
|
|
2530
|
+
"name": "*",
|
|
2531
|
+
"package": "\"./RequiredConstraintValidation\""
|
|
2532
|
+
}
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"kind": "js",
|
|
2536
|
+
"name": "*",
|
|
2537
|
+
"declaration": {
|
|
2538
|
+
"name": "*",
|
|
2539
|
+
"package": "\"./Role\""
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
"kind": "js",
|
|
2544
|
+
"name": "*",
|
|
2545
|
+
"declaration": {
|
|
2546
|
+
"name": "*",
|
|
2547
|
+
"package": "\"./Selected\""
|
|
2548
|
+
}
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
"kind": "js",
|
|
2552
|
+
"name": "*",
|
|
2553
|
+
"declaration": {
|
|
2554
|
+
"name": "*",
|
|
2555
|
+
"package": "\"./Touched\""
|
|
2556
|
+
}
|
|
2557
|
+
},
|
|
2558
|
+
{
|
|
2559
|
+
"kind": "js",
|
|
2560
|
+
"name": "*",
|
|
2561
|
+
"declaration": {
|
|
2562
|
+
"name": "*",
|
|
2563
|
+
"package": "\"./Vertical\""
|
|
2564
|
+
}
|
|
2565
|
+
}
|
|
2566
|
+
]
|
|
2567
|
+
},
|
|
2568
|
+
{
|
|
2569
|
+
"kind": "javascript-module",
|
|
2570
|
+
"path": "../core/src/shared/mixins/KeyboardClick.ts",
|
|
2571
|
+
"declarations": [
|
|
2572
|
+
{
|
|
2573
|
+
"kind": "mixin",
|
|
2574
|
+
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
2575
|
+
"name": "KeyboardClick",
|
|
2576
|
+
"members": [
|
|
2577
|
+
{
|
|
2578
|
+
"kind": "field",
|
|
2579
|
+
"name": "#keyUpHandler",
|
|
2580
|
+
"privacy": "private",
|
|
2581
|
+
"readonly": true
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
"kind": "method",
|
|
2585
|
+
"name": "#handleKeyUp",
|
|
2586
|
+
"privacy": "private",
|
|
2587
|
+
"return": {
|
|
2588
|
+
"type": {
|
|
2589
|
+
"text": "void"
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2592
|
+
"parameters": [
|
|
2593
|
+
{
|
|
2594
|
+
"name": "e",
|
|
2595
|
+
"type": {
|
|
2596
|
+
"text": "KeyboardEvent"
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
]
|
|
2600
|
+
}
|
|
2601
|
+
],
|
|
2602
|
+
"events": [
|
|
2603
|
+
{
|
|
2604
|
+
"name": "click",
|
|
2605
|
+
"type": {
|
|
2606
|
+
"text": "MouseEvent"
|
|
2607
|
+
}
|
|
2608
|
+
}
|
|
2609
|
+
],
|
|
2610
|
+
"parameters": [
|
|
2611
|
+
{
|
|
2612
|
+
"name": "base",
|
|
2613
|
+
"type": {
|
|
2614
|
+
"text": "T"
|
|
2615
|
+
},
|
|
2616
|
+
"description": "The base class."
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
"name": "allowEnter",
|
|
2620
|
+
"default": "true",
|
|
2621
|
+
"type": {
|
|
2622
|
+
"text": "boolean"
|
|
2623
|
+
},
|
|
2624
|
+
"description": "Whether the `ENTER` key emits a click event.",
|
|
2625
|
+
"optional": true
|
|
2626
|
+
}
|
|
2627
|
+
]
|
|
2628
|
+
}
|
|
2629
|
+
],
|
|
2630
|
+
"exports": [
|
|
2631
|
+
{
|
|
2632
|
+
"kind": "js",
|
|
2633
|
+
"name": "KeyboardClick",
|
|
2634
|
+
"declaration": {
|
|
2635
|
+
"name": "KeyboardClick",
|
|
2636
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
2637
|
+
}
|
|
2638
|
+
}
|
|
2639
|
+
]
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
"kind": "javascript-module",
|
|
2643
|
+
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2644
|
+
"declarations": [
|
|
2645
|
+
{
|
|
2646
|
+
"kind": "function",
|
|
2647
|
+
"name": "isLabelledMixin",
|
|
2648
|
+
"return": {
|
|
2649
|
+
"type": {
|
|
2650
|
+
"text": ""
|
|
2651
|
+
}
|
|
2652
|
+
},
|
|
2653
|
+
"parameters": [
|
|
2654
|
+
{
|
|
2655
|
+
"name": "value",
|
|
2656
|
+
"type": {
|
|
2657
|
+
"text": "unknown"
|
|
2658
|
+
},
|
|
2659
|
+
"description": "The value to test."
|
|
2660
|
+
}
|
|
2661
|
+
],
|
|
2662
|
+
"description": "Determines whether a value is a `LabelledMixin`."
|
|
2663
|
+
},
|
|
2664
|
+
{
|
|
2665
|
+
"kind": "mixin",
|
|
2666
|
+
"description": "Mixin to augment an element with support for labelling.",
|
|
2667
|
+
"name": "Labelled",
|
|
2668
|
+
"members": [
|
|
2669
|
+
{
|
|
2670
|
+
"kind": "field",
|
|
2671
|
+
"name": "formAssociated",
|
|
2672
|
+
"type": {
|
|
2673
|
+
"text": "boolean"
|
|
2674
|
+
},
|
|
2675
|
+
"static": true,
|
|
2676
|
+
"readonly": true,
|
|
2677
|
+
"default": "true",
|
|
2678
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
2679
|
+
},
|
|
2680
|
+
{
|
|
2681
|
+
"kind": "field",
|
|
2682
|
+
"name": "[_eventHandler]",
|
|
2683
|
+
"privacy": "private",
|
|
2684
|
+
"readonly": true
|
|
2685
|
+
},
|
|
2686
|
+
{
|
|
2687
|
+
"kind": "field",
|
|
2688
|
+
"name": "labels",
|
|
2689
|
+
"type": {
|
|
2690
|
+
"text": "NodeListOf<HTMLLabelElement>"
|
|
2691
|
+
},
|
|
2692
|
+
"description": "The label elements that the element is associated with.",
|
|
2693
|
+
"readonly": true
|
|
2694
|
+
},
|
|
2695
|
+
{
|
|
2696
|
+
"kind": "method",
|
|
2697
|
+
"name": "[_updateLabels]",
|
|
2698
|
+
"privacy": "private",
|
|
2699
|
+
"return": {
|
|
2700
|
+
"type": {
|
|
2701
|
+
"text": "void"
|
|
2702
|
+
}
|
|
2703
|
+
}
|
|
2704
|
+
}
|
|
2705
|
+
],
|
|
2706
|
+
"parameters": [
|
|
2707
|
+
{
|
|
2708
|
+
"name": "base",
|
|
2709
|
+
"type": {
|
|
2710
|
+
"text": "T"
|
|
2711
|
+
},
|
|
2712
|
+
"description": "The base class."
|
|
2713
|
+
}
|
|
2714
|
+
]
|
|
2715
|
+
}
|
|
2716
|
+
],
|
|
2717
|
+
"exports": [
|
|
2718
|
+
{
|
|
2719
|
+
"kind": "js",
|
|
2720
|
+
"name": "isLabelledMixin",
|
|
2721
|
+
"declaration": {
|
|
2722
|
+
"name": "isLabelledMixin",
|
|
2723
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2724
|
+
}
|
|
2725
|
+
},
|
|
2726
|
+
{
|
|
2727
|
+
"kind": "js",
|
|
2728
|
+
"name": "Labelled",
|
|
2729
|
+
"declaration": {
|
|
2730
|
+
"name": "Labelled",
|
|
2731
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2732
|
+
}
|
|
2733
|
+
}
|
|
2734
|
+
]
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"kind": "javascript-module",
|
|
2738
|
+
"path": "../core/src/shared/mixins/LinkButton.ts",
|
|
2739
|
+
"declarations": [
|
|
2740
|
+
{
|
|
2741
|
+
"kind": "variable",
|
|
2742
|
+
"name": "renderPseudoLink",
|
|
2743
|
+
"description": "A symbol through which to access a function used to render a pseudo link."
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
"kind": "function",
|
|
2747
|
+
"name": "isLinkButtonMixin",
|
|
2748
|
+
"return": {
|
|
2749
|
+
"type": {
|
|
2750
|
+
"text": "value is LinkButtonMixin"
|
|
2751
|
+
}
|
|
2752
|
+
},
|
|
2753
|
+
"parameters": [
|
|
2754
|
+
{
|
|
2755
|
+
"name": "value",
|
|
2756
|
+
"type": {
|
|
2757
|
+
"text": "unknown"
|
|
2758
|
+
},
|
|
2759
|
+
"description": "The value to test."
|
|
2760
|
+
}
|
|
2761
|
+
],
|
|
2762
|
+
"description": "Determines whether a value is a `LinkButtonMixin`."
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"kind": "mixin",
|
|
2766
|
+
"description": "Mixin to augment an element with behavior that supports functioning as a link.",
|
|
2767
|
+
"name": "LinkButton",
|
|
2768
|
+
"members": [
|
|
2769
|
+
{
|
|
2770
|
+
"kind": "field",
|
|
2771
|
+
"name": "[_clickHandler]",
|
|
2772
|
+
"privacy": "private"
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
"kind": "field",
|
|
2776
|
+
"name": "href",
|
|
2777
|
+
"type": {
|
|
2778
|
+
"text": "string"
|
|
2779
|
+
},
|
|
2780
|
+
"default": "\"\"",
|
|
2781
|
+
"description": "The URL to which the link button points.",
|
|
2782
|
+
"attribute": "href"
|
|
2783
|
+
},
|
|
2784
|
+
{
|
|
2785
|
+
"kind": "field",
|
|
2786
|
+
"name": "target",
|
|
2787
|
+
"type": {
|
|
2788
|
+
"text": "LinkTarget"
|
|
2789
|
+
},
|
|
2790
|
+
"default": "\"\"",
|
|
2791
|
+
"description": "The target of the link button.",
|
|
2792
|
+
"attribute": "target"
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
"kind": "field",
|
|
2796
|
+
"name": "rel",
|
|
2797
|
+
"type": {
|
|
2798
|
+
"text": "string"
|
|
2799
|
+
},
|
|
2800
|
+
"default": "\"\"",
|
|
2801
|
+
"description": "The relationship between the `target` of the link button and the document.",
|
|
2802
|
+
"attribute": "rel"
|
|
2803
|
+
},
|
|
2804
|
+
{
|
|
2805
|
+
"kind": "field",
|
|
2806
|
+
"name": "download",
|
|
2807
|
+
"type": {
|
|
2808
|
+
"text": "string | null"
|
|
2809
|
+
},
|
|
2810
|
+
"description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
|
|
2811
|
+
"default": "null",
|
|
2812
|
+
"attribute": "download"
|
|
2813
|
+
},
|
|
2814
|
+
{
|
|
2815
|
+
"kind": "method",
|
|
2816
|
+
"name": "#handleLinkPointerDown",
|
|
2817
|
+
"privacy": "private",
|
|
2818
|
+
"return": {
|
|
2819
|
+
"type": {
|
|
2820
|
+
"text": "void"
|
|
2821
|
+
}
|
|
2822
|
+
},
|
|
2823
|
+
"parameters": [
|
|
2824
|
+
{
|
|
2825
|
+
"name": "e",
|
|
2826
|
+
"type": {
|
|
2827
|
+
"text": "PointerEvent"
|
|
2828
|
+
}
|
|
2829
|
+
}
|
|
2830
|
+
]
|
|
2831
|
+
},
|
|
2832
|
+
{
|
|
2833
|
+
"kind": "method",
|
|
2834
|
+
"name": "#handleLinkFocus",
|
|
2835
|
+
"privacy": "private",
|
|
2836
|
+
"return": {
|
|
2837
|
+
"type": {
|
|
2838
|
+
"text": "void"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2841
|
+
"parameters": [
|
|
2842
|
+
{
|
|
2843
|
+
"name": "e",
|
|
2844
|
+
"type": {
|
|
2845
|
+
"text": "Event"
|
|
2846
|
+
}
|
|
2847
|
+
}
|
|
2848
|
+
]
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
"kind": "method",
|
|
2852
|
+
"name": "#handleLinkBlur",
|
|
2853
|
+
"privacy": "private",
|
|
2854
|
+
"return": {
|
|
2855
|
+
"type": {
|
|
2856
|
+
"text": "void"
|
|
2857
|
+
}
|
|
2858
|
+
},
|
|
2859
|
+
"parameters": [
|
|
2860
|
+
{
|
|
2861
|
+
"name": "e",
|
|
2862
|
+
"type": {
|
|
2863
|
+
"text": "Event"
|
|
2864
|
+
}
|
|
2865
|
+
}
|
|
2866
|
+
]
|
|
2867
|
+
}
|
|
2868
|
+
],
|
|
2869
|
+
"events": [
|
|
2870
|
+
{
|
|
2871
|
+
"name": "click",
|
|
2872
|
+
"type": {
|
|
2873
|
+
"text": "MouseEvent"
|
|
2874
|
+
}
|
|
2875
|
+
}
|
|
2876
|
+
],
|
|
2877
|
+
"attributes": [
|
|
2878
|
+
{
|
|
2879
|
+
"name": "href",
|
|
2880
|
+
"type": {
|
|
2881
|
+
"text": "string"
|
|
2882
|
+
},
|
|
2883
|
+
"default": "\"\"",
|
|
2884
|
+
"description": "The URL to which the link button points.",
|
|
2885
|
+
"fieldName": "href"
|
|
2886
|
+
},
|
|
2887
|
+
{
|
|
2888
|
+
"name": "target",
|
|
2889
|
+
"type": {
|
|
2890
|
+
"text": "LinkTarget"
|
|
2891
|
+
},
|
|
2892
|
+
"default": "\"\"",
|
|
2893
|
+
"description": "The target of the link button.",
|
|
2894
|
+
"fieldName": "target"
|
|
2895
|
+
},
|
|
2896
|
+
{
|
|
2897
|
+
"name": "rel",
|
|
2898
|
+
"type": {
|
|
2899
|
+
"text": "string"
|
|
2900
|
+
},
|
|
2901
|
+
"default": "\"\"",
|
|
2902
|
+
"description": "The relationship between the `target` of the link button and the document.",
|
|
2903
|
+
"fieldName": "rel"
|
|
2904
|
+
},
|
|
2905
|
+
{
|
|
2906
|
+
"name": "download",
|
|
2907
|
+
"type": {
|
|
2908
|
+
"text": "string | null"
|
|
2909
|
+
},
|
|
2910
|
+
"description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
|
|
2911
|
+
"default": "null",
|
|
2912
|
+
"fieldName": "download"
|
|
2913
|
+
}
|
|
2914
|
+
],
|
|
2915
|
+
"parameters": [
|
|
2916
|
+
{
|
|
2917
|
+
"name": "base",
|
|
2918
|
+
"type": {
|
|
2919
|
+
"text": "T"
|
|
2920
|
+
},
|
|
2921
|
+
"description": "The base class."
|
|
2922
|
+
}
|
|
2923
|
+
]
|
|
2924
|
+
}
|
|
2925
|
+
],
|
|
2926
|
+
"exports": [
|
|
2927
|
+
{
|
|
2928
|
+
"kind": "js",
|
|
2929
|
+
"name": "renderPseudoLink",
|
|
2930
|
+
"declaration": {
|
|
2931
|
+
"name": "renderPseudoLink",
|
|
2932
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
2933
|
+
}
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
"kind": "js",
|
|
2937
|
+
"name": "isLinkButtonMixin",
|
|
2938
|
+
"declaration": {
|
|
2939
|
+
"name": "isLinkButtonMixin",
|
|
2940
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
2943
|
+
{
|
|
2944
|
+
"kind": "js",
|
|
2945
|
+
"name": "LinkButton",
|
|
2946
|
+
"declaration": {
|
|
2947
|
+
"name": "LinkButton",
|
|
2948
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
2949
|
+
}
|
|
2950
|
+
}
|
|
2951
|
+
]
|
|
2952
|
+
},
|
|
2953
|
+
{
|
|
2954
|
+
"kind": "javascript-module",
|
|
2955
|
+
"path": "../core/src/shared/mixins/ReadOnly.ts",
|
|
2956
|
+
"declarations": [
|
|
2957
|
+
{
|
|
2958
|
+
"kind": "function",
|
|
2959
|
+
"name": "isReadOnlyMixin",
|
|
2960
|
+
"return": {
|
|
2961
|
+
"type": {
|
|
2962
|
+
"text": ""
|
|
2963
|
+
}
|
|
2964
|
+
},
|
|
2965
|
+
"parameters": [
|
|
2966
|
+
{
|
|
2967
|
+
"name": "value",
|
|
2968
|
+
"type": {
|
|
2969
|
+
"text": "unknown"
|
|
2970
|
+
},
|
|
2971
|
+
"description": "The value to test."
|
|
2972
|
+
}
|
|
2973
|
+
],
|
|
2974
|
+
"description": "Determines whether a value is a `ReadOnlyMixin`."
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"kind": "mixin",
|
|
2978
|
+
"description": "Mixin to augment an element with behavior that supports a read-only state.",
|
|
2979
|
+
"name": "ReadOnly",
|
|
2980
|
+
"members": [
|
|
2981
|
+
{
|
|
2982
|
+
"kind": "field",
|
|
2983
|
+
"name": "readOnly",
|
|
2984
|
+
"type": {
|
|
2985
|
+
"text": "boolean"
|
|
2986
|
+
},
|
|
2987
|
+
"default": "false",
|
|
2988
|
+
"description": "A value indicating whether the element is read-only.",
|
|
2989
|
+
"attribute": "readonly"
|
|
2990
|
+
}
|
|
2991
|
+
],
|
|
2992
|
+
"attributes": [
|
|
2993
|
+
{
|
|
2994
|
+
"name": "readonly",
|
|
2995
|
+
"type": {
|
|
2996
|
+
"text": "boolean"
|
|
2997
|
+
},
|
|
2998
|
+
"default": "false",
|
|
2999
|
+
"description": "A value indicating whether the element is read-only.",
|
|
3000
|
+
"fieldName": "readOnly"
|
|
3001
|
+
}
|
|
3002
|
+
],
|
|
3003
|
+
"parameters": [
|
|
3004
|
+
{
|
|
3005
|
+
"name": "base",
|
|
3006
|
+
"type": {
|
|
3007
|
+
"text": "T"
|
|
3008
|
+
},
|
|
3009
|
+
"description": "The base class."
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
"name": "reflect",
|
|
3013
|
+
"default": "true",
|
|
3014
|
+
"type": {
|
|
3015
|
+
"text": "boolean"
|
|
3016
|
+
},
|
|
3017
|
+
"description": "A value indicating whether the read-only state is reflected as an attribute. The default value is `true`."
|
|
3018
|
+
}
|
|
3019
|
+
]
|
|
3020
|
+
}
|
|
3021
|
+
],
|
|
3022
|
+
"exports": [
|
|
3023
|
+
{
|
|
3024
|
+
"kind": "js",
|
|
3025
|
+
"name": "isReadOnlyMixin",
|
|
3026
|
+
"declaration": {
|
|
3027
|
+
"name": "isReadOnlyMixin",
|
|
3028
|
+
"module": "../core/src/shared/mixins/ReadOnly.ts"
|
|
3029
|
+
}
|
|
3030
|
+
},
|
|
3031
|
+
{
|
|
3032
|
+
"kind": "js",
|
|
3033
|
+
"name": "ReadOnly",
|
|
3034
|
+
"declaration": {
|
|
3035
|
+
"name": "ReadOnly",
|
|
3036
|
+
"module": "../core/src/shared/mixins/ReadOnly.ts"
|
|
3037
|
+
}
|
|
3038
|
+
}
|
|
3039
|
+
]
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"kind": "javascript-module",
|
|
3043
|
+
"path": "../core/src/shared/mixins/Required.ts",
|
|
3044
|
+
"declarations": [
|
|
3045
|
+
{
|
|
3046
|
+
"kind": "function",
|
|
3047
|
+
"name": "isRequiredMixin",
|
|
3048
|
+
"return": {
|
|
3049
|
+
"type": {
|
|
3050
|
+
"text": ""
|
|
3051
|
+
}
|
|
3052
|
+
},
|
|
3053
|
+
"parameters": [
|
|
3054
|
+
{
|
|
3055
|
+
"name": "value",
|
|
3056
|
+
"type": {
|
|
3057
|
+
"text": "unknown"
|
|
3058
|
+
},
|
|
3059
|
+
"description": "The value to test."
|
|
3060
|
+
}
|
|
3061
|
+
],
|
|
3062
|
+
"description": "Determines whether a value is a `RequiredMixin`."
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
"kind": "mixin",
|
|
3066
|
+
"description": "Mixin to augment an element with behavior that supports a required state.",
|
|
3067
|
+
"name": "Required",
|
|
3068
|
+
"members": [
|
|
3069
|
+
{
|
|
3070
|
+
"kind": "field",
|
|
3071
|
+
"name": "required",
|
|
3072
|
+
"type": {
|
|
3073
|
+
"text": "boolean"
|
|
3074
|
+
},
|
|
3075
|
+
"default": "false",
|
|
3076
|
+
"description": "Whether a value is required for the element.",
|
|
3077
|
+
"attribute": "required",
|
|
3078
|
+
"reflects": true
|
|
3079
|
+
},
|
|
3080
|
+
{
|
|
3081
|
+
"kind": "field",
|
|
3082
|
+
"name": "optional",
|
|
3083
|
+
"description": "Whether a value is not required for the element.",
|
|
3084
|
+
"readonly": true
|
|
3085
|
+
}
|
|
3086
|
+
],
|
|
3087
|
+
"attributes": [
|
|
3088
|
+
{
|
|
3089
|
+
"name": "required",
|
|
3090
|
+
"type": {
|
|
3091
|
+
"text": "boolean"
|
|
3092
|
+
},
|
|
3093
|
+
"default": "false",
|
|
3094
|
+
"description": "Whether a value is required for the element.",
|
|
3095
|
+
"fieldName": "required"
|
|
217
3096
|
}
|
|
218
3097
|
],
|
|
219
|
-
"
|
|
3098
|
+
"parameters": [
|
|
220
3099
|
{
|
|
221
|
-
"name": "
|
|
3100
|
+
"name": "base",
|
|
222
3101
|
"type": {
|
|
223
|
-
"text": "
|
|
3102
|
+
"text": "T"
|
|
224
3103
|
},
|
|
225
|
-
"description": "
|
|
226
|
-
}
|
|
3104
|
+
"description": "The base class."
|
|
3105
|
+
}
|
|
3106
|
+
]
|
|
3107
|
+
}
|
|
3108
|
+
],
|
|
3109
|
+
"exports": [
|
|
3110
|
+
{
|
|
3111
|
+
"kind": "js",
|
|
3112
|
+
"name": "isRequiredMixin",
|
|
3113
|
+
"declaration": {
|
|
3114
|
+
"name": "isRequiredMixin",
|
|
3115
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
3116
|
+
}
|
|
3117
|
+
},
|
|
3118
|
+
{
|
|
3119
|
+
"kind": "js",
|
|
3120
|
+
"name": "Required",
|
|
3121
|
+
"declaration": {
|
|
3122
|
+
"name": "Required",
|
|
3123
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
3124
|
+
}
|
|
3125
|
+
}
|
|
3126
|
+
]
|
|
3127
|
+
},
|
|
3128
|
+
{
|
|
3129
|
+
"kind": "javascript-module",
|
|
3130
|
+
"path": "../core/src/shared/mixins/RequiredConstraintValidation.ts",
|
|
3131
|
+
"declarations": [
|
|
3132
|
+
{
|
|
3133
|
+
"kind": "function",
|
|
3134
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
3135
|
+
"return": {
|
|
3136
|
+
"type": {
|
|
3137
|
+
"text": ""
|
|
3138
|
+
}
|
|
3139
|
+
},
|
|
3140
|
+
"parameters": [
|
|
227
3141
|
{
|
|
228
|
-
"name": "
|
|
3142
|
+
"name": "value",
|
|
229
3143
|
"type": {
|
|
230
|
-
"text": "
|
|
3144
|
+
"text": "unknown"
|
|
231
3145
|
},
|
|
232
|
-
"description": "
|
|
3146
|
+
"description": "The value to test."
|
|
233
3147
|
}
|
|
234
3148
|
],
|
|
235
|
-
"
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
"name": "disabled"
|
|
243
|
-
},
|
|
3149
|
+
"description": "Determines whether a value is a `RequiredConstraintValidationMixin`."
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"kind": "mixin",
|
|
3153
|
+
"description": "Mixin to augment an element with behavior that supports a required state.",
|
|
3154
|
+
"name": "RequiredConstraintValidation",
|
|
3155
|
+
"parameters": [
|
|
244
3156
|
{
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
|
|
3157
|
+
"name": "base",
|
|
3158
|
+
"type": {
|
|
3159
|
+
"text": "T"
|
|
3160
|
+
},
|
|
3161
|
+
"description": "The base class."
|
|
3162
|
+
}
|
|
3163
|
+
]
|
|
3164
|
+
}
|
|
3165
|
+
],
|
|
3166
|
+
"exports": [
|
|
3167
|
+
{
|
|
3168
|
+
"kind": "js",
|
|
3169
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
3170
|
+
"declaration": {
|
|
3171
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
3172
|
+
"module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
|
|
3173
|
+
}
|
|
3174
|
+
},
|
|
3175
|
+
{
|
|
3176
|
+
"kind": "js",
|
|
3177
|
+
"name": "RequiredConstraintValidation",
|
|
3178
|
+
"declaration": {
|
|
3179
|
+
"name": "RequiredConstraintValidation",
|
|
3180
|
+
"module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
|
|
3181
|
+
}
|
|
3182
|
+
}
|
|
3183
|
+
]
|
|
3184
|
+
},
|
|
3185
|
+
{
|
|
3186
|
+
"kind": "javascript-module",
|
|
3187
|
+
"path": "../core/src/shared/mixins/Role.ts",
|
|
3188
|
+
"declarations": [
|
|
3189
|
+
{
|
|
3190
|
+
"kind": "mixin",
|
|
3191
|
+
"description": "Mixin to augment an element with an ARIA role.",
|
|
3192
|
+
"name": "Role",
|
|
3193
|
+
"parameters": [
|
|
248
3194
|
{
|
|
249
|
-
"
|
|
250
|
-
"
|
|
3195
|
+
"name": "base",
|
|
3196
|
+
"type": {
|
|
3197
|
+
"text": "T"
|
|
3198
|
+
},
|
|
3199
|
+
"description": "The base class."
|
|
251
3200
|
},
|
|
252
3201
|
{
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
|
|
3202
|
+
"name": "role",
|
|
3203
|
+
"type": {
|
|
3204
|
+
"text": "ARIARole"
|
|
3205
|
+
},
|
|
3206
|
+
"description": "The ARIA role."
|
|
3207
|
+
}
|
|
3208
|
+
]
|
|
3209
|
+
}
|
|
3210
|
+
],
|
|
3211
|
+
"exports": [
|
|
3212
|
+
{
|
|
3213
|
+
"kind": "js",
|
|
3214
|
+
"name": "Role",
|
|
3215
|
+
"declaration": {
|
|
3216
|
+
"name": "Role",
|
|
3217
|
+
"module": "../core/src/shared/mixins/Role.ts"
|
|
3218
|
+
}
|
|
3219
|
+
}
|
|
3220
|
+
]
|
|
3221
|
+
},
|
|
3222
|
+
{
|
|
3223
|
+
"kind": "javascript-module",
|
|
3224
|
+
"path": "../core/src/shared/mixins/Selected.ts",
|
|
3225
|
+
"declarations": [
|
|
3226
|
+
{
|
|
3227
|
+
"kind": "function",
|
|
3228
|
+
"name": "isSelectedMixin",
|
|
3229
|
+
"return": {
|
|
3230
|
+
"type": {
|
|
3231
|
+
"text": ""
|
|
3232
|
+
}
|
|
3233
|
+
},
|
|
3234
|
+
"parameters": [
|
|
256
3235
|
{
|
|
257
|
-
"description": "A string representing the value of the checkbox.",
|
|
258
3236
|
"name": "value",
|
|
259
3237
|
"type": {
|
|
260
|
-
"text": "
|
|
3238
|
+
"text": "unknown"
|
|
261
3239
|
},
|
|
262
|
-
"
|
|
263
|
-
"fieldName": "value"
|
|
3240
|
+
"description": "The value to test."
|
|
264
3241
|
}
|
|
265
3242
|
],
|
|
266
|
-
"
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
"package": "@m3e/core"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"name": "Dirty",
|
|
277
|
-
"package": "@m3e/core"
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"name": "Touched",
|
|
281
|
-
"package": "@m3e/core"
|
|
282
|
-
},
|
|
3243
|
+
"description": "Determines whether a value is a `SelectedMixin`."
|
|
3244
|
+
},
|
|
3245
|
+
{
|
|
3246
|
+
"kind": "mixin",
|
|
3247
|
+
"description": "Mixin to augment an element with behavior that supports a selected state.",
|
|
3248
|
+
"name": "Selected",
|
|
3249
|
+
"members": [
|
|
283
3250
|
{
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
|
|
3251
|
+
"kind": "field",
|
|
3252
|
+
"name": "selected",
|
|
3253
|
+
"type": {
|
|
3254
|
+
"text": "boolean"
|
|
3255
|
+
},
|
|
3256
|
+
"default": "false",
|
|
3257
|
+
"description": "Whether the element is selected.",
|
|
3258
|
+
"attribute": "selected",
|
|
3259
|
+
"reflects": true
|
|
3260
|
+
}
|
|
3261
|
+
],
|
|
3262
|
+
"attributes": [
|
|
287
3263
|
{
|
|
288
|
-
"name": "
|
|
289
|
-
"
|
|
290
|
-
|
|
3264
|
+
"name": "selected",
|
|
3265
|
+
"type": {
|
|
3266
|
+
"text": "boolean"
|
|
3267
|
+
},
|
|
3268
|
+
"default": "false",
|
|
3269
|
+
"description": "Whether the element is selected.",
|
|
3270
|
+
"fieldName": "selected"
|
|
3271
|
+
}
|
|
3272
|
+
],
|
|
3273
|
+
"parameters": [
|
|
291
3274
|
{
|
|
292
|
-
"name": "
|
|
293
|
-
"
|
|
294
|
-
|
|
3275
|
+
"name": "base",
|
|
3276
|
+
"type": {
|
|
3277
|
+
"text": "T"
|
|
3278
|
+
},
|
|
3279
|
+
"description": "The base class."
|
|
3280
|
+
}
|
|
3281
|
+
]
|
|
3282
|
+
}
|
|
3283
|
+
],
|
|
3284
|
+
"exports": [
|
|
3285
|
+
{
|
|
3286
|
+
"kind": "js",
|
|
3287
|
+
"name": "isSelectedMixin",
|
|
3288
|
+
"declaration": {
|
|
3289
|
+
"name": "isSelectedMixin",
|
|
3290
|
+
"module": "../core/src/shared/mixins/Selected.ts"
|
|
3291
|
+
}
|
|
3292
|
+
},
|
|
3293
|
+
{
|
|
3294
|
+
"kind": "js",
|
|
3295
|
+
"name": "Selected",
|
|
3296
|
+
"declaration": {
|
|
3297
|
+
"name": "Selected",
|
|
3298
|
+
"module": "../core/src/shared/mixins/Selected.ts"
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
]
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
"kind": "javascript-module",
|
|
3305
|
+
"path": "../core/src/shared/mixins/Touched.ts",
|
|
3306
|
+
"declarations": [
|
|
3307
|
+
{
|
|
3308
|
+
"kind": "function",
|
|
3309
|
+
"name": "isTouchedMixin",
|
|
3310
|
+
"return": {
|
|
3311
|
+
"type": {
|
|
3312
|
+
"text": ""
|
|
3313
|
+
}
|
|
3314
|
+
},
|
|
3315
|
+
"parameters": [
|
|
295
3316
|
{
|
|
296
|
-
"name": "
|
|
297
|
-
"
|
|
298
|
-
|
|
3317
|
+
"name": "value",
|
|
3318
|
+
"type": {
|
|
3319
|
+
"text": "unknown"
|
|
3320
|
+
},
|
|
3321
|
+
"description": "The value to test."
|
|
3322
|
+
}
|
|
3323
|
+
],
|
|
3324
|
+
"description": "Determines whether a value is a `TouchedMixin`."
|
|
3325
|
+
},
|
|
3326
|
+
{
|
|
3327
|
+
"kind": "mixin",
|
|
3328
|
+
"description": "Mixin to augment an element with functionality used to mark it as touched.",
|
|
3329
|
+
"name": "Touched",
|
|
3330
|
+
"members": [
|
|
299
3331
|
{
|
|
300
|
-
"
|
|
301
|
-
"
|
|
3332
|
+
"kind": "field",
|
|
3333
|
+
"name": "[_eventHandler]",
|
|
3334
|
+
"privacy": "private"
|
|
302
3335
|
},
|
|
303
3336
|
{
|
|
304
|
-
"
|
|
305
|
-
"
|
|
3337
|
+
"kind": "field",
|
|
3338
|
+
"name": "touched",
|
|
3339
|
+
"type": {
|
|
3340
|
+
"text": "boolean"
|
|
3341
|
+
},
|
|
3342
|
+
"description": "Whether the user has interacted when the element.",
|
|
3343
|
+
"readonly": true
|
|
306
3344
|
},
|
|
307
3345
|
{
|
|
308
|
-
"
|
|
309
|
-
"
|
|
3346
|
+
"kind": "field",
|
|
3347
|
+
"name": "untouched",
|
|
3348
|
+
"type": {
|
|
3349
|
+
"text": "boolean"
|
|
3350
|
+
},
|
|
3351
|
+
"description": "Whether the user has not interacted when the element.",
|
|
3352
|
+
"readonly": true
|
|
310
3353
|
},
|
|
311
3354
|
{
|
|
312
|
-
"
|
|
313
|
-
"
|
|
3355
|
+
"kind": "method",
|
|
3356
|
+
"name": "markAsTouched",
|
|
3357
|
+
"return": {
|
|
3358
|
+
"type": {
|
|
3359
|
+
"text": "void"
|
|
3360
|
+
}
|
|
3361
|
+
},
|
|
3362
|
+
"description": "Marks the element as touched."
|
|
314
3363
|
},
|
|
315
3364
|
{
|
|
316
|
-
"
|
|
317
|
-
"
|
|
3365
|
+
"kind": "method",
|
|
3366
|
+
"name": "markAsUntouched",
|
|
3367
|
+
"return": {
|
|
3368
|
+
"type": {
|
|
3369
|
+
"text": "void"
|
|
3370
|
+
}
|
|
3371
|
+
},
|
|
3372
|
+
"description": "Marks the element as untouched."
|
|
318
3373
|
}
|
|
319
3374
|
],
|
|
320
|
-
"
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
3375
|
+
"parameters": [
|
|
3376
|
+
{
|
|
3377
|
+
"name": "base",
|
|
3378
|
+
"type": {
|
|
3379
|
+
"text": "T"
|
|
3380
|
+
},
|
|
3381
|
+
"description": "The base class."
|
|
3382
|
+
}
|
|
3383
|
+
]
|
|
327
3384
|
}
|
|
328
3385
|
],
|
|
329
3386
|
"exports": [
|
|
330
3387
|
{
|
|
331
3388
|
"kind": "js",
|
|
332
|
-
"name": "
|
|
3389
|
+
"name": "isTouchedMixin",
|
|
333
3390
|
"declaration": {
|
|
334
|
-
"name": "
|
|
335
|
-
"module": "src/
|
|
3391
|
+
"name": "isTouchedMixin",
|
|
3392
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
336
3393
|
}
|
|
337
3394
|
},
|
|
338
3395
|
{
|
|
339
|
-
"kind": "
|
|
340
|
-
"name": "
|
|
3396
|
+
"kind": "js",
|
|
3397
|
+
"name": "Touched",
|
|
341
3398
|
"declaration": {
|
|
342
|
-
"name": "
|
|
343
|
-
"module": "src/
|
|
3399
|
+
"name": "Touched",
|
|
3400
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
344
3401
|
}
|
|
345
3402
|
}
|
|
346
3403
|
]
|
|
347
3404
|
},
|
|
348
3405
|
{
|
|
349
3406
|
"kind": "javascript-module",
|
|
350
|
-
"path": "src/
|
|
351
|
-
"declarations": [
|
|
3407
|
+
"path": "../core/src/shared/mixins/Vertical.ts",
|
|
3408
|
+
"declarations": [
|
|
3409
|
+
{
|
|
3410
|
+
"kind": "function",
|
|
3411
|
+
"name": "isVerticalMixin",
|
|
3412
|
+
"return": {
|
|
3413
|
+
"type": {
|
|
3414
|
+
"text": ""
|
|
3415
|
+
}
|
|
3416
|
+
},
|
|
3417
|
+
"parameters": [
|
|
3418
|
+
{
|
|
3419
|
+
"name": "value",
|
|
3420
|
+
"type": {
|
|
3421
|
+
"text": "unknown"
|
|
3422
|
+
},
|
|
3423
|
+
"description": "The value to test."
|
|
3424
|
+
}
|
|
3425
|
+
],
|
|
3426
|
+
"description": "Determines whether a value is a `VerticalMixin`."
|
|
3427
|
+
},
|
|
3428
|
+
{
|
|
3429
|
+
"kind": "mixin",
|
|
3430
|
+
"description": "Mixin to augment an element with behavior that supports a vertical orientation.",
|
|
3431
|
+
"name": "Vertical",
|
|
3432
|
+
"members": [
|
|
3433
|
+
{
|
|
3434
|
+
"kind": "field",
|
|
3435
|
+
"name": "vertical",
|
|
3436
|
+
"type": {
|
|
3437
|
+
"text": "boolean"
|
|
3438
|
+
},
|
|
3439
|
+
"default": "false",
|
|
3440
|
+
"description": "Whether the element is oriented vertically.",
|
|
3441
|
+
"attribute": "vertical",
|
|
3442
|
+
"reflects": true
|
|
3443
|
+
}
|
|
3444
|
+
],
|
|
3445
|
+
"attributes": [
|
|
3446
|
+
{
|
|
3447
|
+
"name": "vertical",
|
|
3448
|
+
"type": {
|
|
3449
|
+
"text": "boolean"
|
|
3450
|
+
},
|
|
3451
|
+
"default": "false",
|
|
3452
|
+
"description": "Whether the element is oriented vertically.",
|
|
3453
|
+
"fieldName": "vertical"
|
|
3454
|
+
}
|
|
3455
|
+
],
|
|
3456
|
+
"parameters": [
|
|
3457
|
+
{
|
|
3458
|
+
"name": "base",
|
|
3459
|
+
"type": {
|
|
3460
|
+
"text": "T"
|
|
3461
|
+
},
|
|
3462
|
+
"description": "The base class."
|
|
3463
|
+
}
|
|
3464
|
+
]
|
|
3465
|
+
}
|
|
3466
|
+
],
|
|
352
3467
|
"exports": [
|
|
353
3468
|
{
|
|
354
3469
|
"kind": "js",
|
|
355
|
-
"name": "
|
|
3470
|
+
"name": "isVerticalMixin",
|
|
356
3471
|
"declaration": {
|
|
357
|
-
"name": "
|
|
358
|
-
"
|
|
3472
|
+
"name": "isVerticalMixin",
|
|
3473
|
+
"module": "../core/src/shared/mixins/Vertical.ts"
|
|
3474
|
+
}
|
|
3475
|
+
},
|
|
3476
|
+
{
|
|
3477
|
+
"kind": "js",
|
|
3478
|
+
"name": "Vertical",
|
|
3479
|
+
"declaration": {
|
|
3480
|
+
"name": "Vertical",
|
|
3481
|
+
"module": "../core/src/shared/mixins/Vertical.ts"
|
|
359
3482
|
}
|
|
360
3483
|
}
|
|
361
3484
|
]
|