@skdx/web-components-blocks 0.36.0 → 0.37.0
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/custom-elements.json +1543 -1847
- package/dist/filter-bar/FilterBar.cjs +9 -9
- package/dist/filter-bar/FilterBar.d.cts +9 -0
- package/dist/filter-bar/FilterBar.d.ts +9 -0
- package/dist/filter-bar/FilterBar.js +19 -19
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -1
- package/dist/reset-password-page/ResetPasswordPage.cjs +15 -5
- package/dist/reset-password-page/ResetPasswordPage.js +15 -5
- package/dist/sign-up-page/SignUpPage.cjs +13 -5
- package/dist/sign-up-page/SignUpPage.js +12 -4
- package/dist/user-menu/UserMenu.cjs +5 -3
- package/dist/user-menu/UserMenu.js +8 -6
- package/package.json +3 -17
- package/dist/confirm-dialog/ConfirmDialog.cjs +0 -38
- package/dist/confirm-dialog/ConfirmDialog.d.cts +0 -101
- package/dist/confirm-dialog/ConfirmDialog.d.ts +0 -101
- package/dist/confirm-dialog/ConfirmDialog.js +0 -38
- package/dist/confirm-dialog/index.cjs +0 -1
- package/dist/confirm-dialog/index.d.cts +0 -1
- package/dist/confirm-dialog/index.d.ts +0 -1
- package/dist/confirm-dialog/index.js +0 -1
package/custom-elements.json
CHANGED
|
@@ -71,14 +71,6 @@
|
|
|
71
71
|
"module": "./sign-in-page"
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
|
-
{
|
|
75
|
-
"kind": "js",
|
|
76
|
-
"name": "SkdxConfirmDialog",
|
|
77
|
-
"declaration": {
|
|
78
|
-
"name": "SkdxConfirmDialog",
|
|
79
|
-
"module": "./confirm-dialog"
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
74
|
{
|
|
83
75
|
"kind": "js",
|
|
84
76
|
"name": "SkdxEmptyState",
|
|
@@ -371,390 +363,227 @@
|
|
|
371
363
|
},
|
|
372
364
|
{
|
|
373
365
|
"kind": "javascript-module",
|
|
374
|
-
"path": "src/
|
|
366
|
+
"path": "src/chat-composer/ChatComposer.ts",
|
|
375
367
|
"declarations": [
|
|
376
368
|
{
|
|
377
369
|
"kind": "class",
|
|
378
|
-
"description": "
|
|
379
|
-
"name": "
|
|
370
|
+
"description": "Message composer block: an auto-growing Textarea and a send Button inside a\nfield, with consumer-supplied attachment, leading, trailing and footer\nregions and configurable Enter-to-send behaviour.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-chat-composer` on the host, then `__attachments`, `__field`,\n`__leading`, `__textarea`, `__trailing`, `__send` and `__footer`.\n`data-state` on the host reads `pending` while a send is in flight.",
|
|
371
|
+
"name": "SkdxChatComposer",
|
|
380
372
|
"slots": [
|
|
381
373
|
{
|
|
382
|
-
"description": "
|
|
383
|
-
"name": ""
|
|
374
|
+
"description": "Controls rendered inside the field before the textarea, such as an attach button.",
|
|
375
|
+
"name": "leading"
|
|
384
376
|
},
|
|
385
377
|
{
|
|
386
|
-
"description": "
|
|
387
|
-
"name": "
|
|
378
|
+
"description": "Controls rendered inside the field after the textarea, such as a model picker.",
|
|
379
|
+
"name": "trailing"
|
|
388
380
|
},
|
|
389
381
|
{
|
|
390
|
-
"description": "
|
|
391
|
-
"name": "
|
|
382
|
+
"description": "Attached files or chips rendered in a row above the field.",
|
|
383
|
+
"name": "attachments"
|
|
392
384
|
},
|
|
393
385
|
{
|
|
394
|
-
"description": "
|
|
395
|
-
"name": "
|
|
386
|
+
"description": "Usage counters or hints rendered in a row below the field.",
|
|
387
|
+
"name": "footer"
|
|
396
388
|
},
|
|
397
389
|
{
|
|
398
|
-
"description": "
|
|
399
|
-
"name": "
|
|
390
|
+
"description": "Glyph rendered inside the send button in place of its text, making it icon-only.",
|
|
391
|
+
"name": "send-icon"
|
|
400
392
|
}
|
|
401
393
|
],
|
|
402
394
|
"members": [
|
|
403
395
|
{
|
|
404
396
|
"kind": "field",
|
|
405
|
-
"name": "
|
|
397
|
+
"name": "value",
|
|
398
|
+
"type": {
|
|
399
|
+
"text": "string | undefined | undefined"
|
|
400
|
+
},
|
|
401
|
+
"description": "Current message text, for controlled usage paired with `value-change`.",
|
|
402
|
+
"default": "undefined",
|
|
403
|
+
"attribute": "value"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"kind": "field",
|
|
407
|
+
"name": "defaultValue",
|
|
406
408
|
"type": {
|
|
407
409
|
"text": "string"
|
|
408
410
|
},
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"
|
|
411
|
+
"default": "''",
|
|
412
|
+
"description": "Initial message text for uncontrolled usage, read only on mount.",
|
|
413
|
+
"attribute": "default-value"
|
|
412
414
|
},
|
|
413
415
|
{
|
|
414
416
|
"kind": "field",
|
|
415
|
-
"name": "
|
|
417
|
+
"name": "placeholder",
|
|
416
418
|
"type": {
|
|
417
|
-
"text": "
|
|
419
|
+
"text": "string | undefined | undefined"
|
|
418
420
|
},
|
|
419
|
-
"description": "
|
|
421
|
+
"description": "Hint text shown in the empty textarea, rendered as the native placeholder.",
|
|
420
422
|
"default": "undefined",
|
|
421
|
-
"attribute": "
|
|
423
|
+
"attribute": "placeholder"
|
|
422
424
|
},
|
|
423
425
|
{
|
|
424
426
|
"kind": "field",
|
|
425
|
-
"name": "
|
|
427
|
+
"name": "label",
|
|
426
428
|
"type": {
|
|
427
|
-
"text": "
|
|
429
|
+
"text": "string"
|
|
428
430
|
},
|
|
429
|
-
"
|
|
430
|
-
"
|
|
431
|
+
"default": "'Message'",
|
|
432
|
+
"description": "Accessible name of the message textarea, read by assistive technology.",
|
|
433
|
+
"attribute": "label"
|
|
431
434
|
},
|
|
432
435
|
{
|
|
433
436
|
"kind": "field",
|
|
434
|
-
"name": "
|
|
437
|
+
"name": "sendLabel",
|
|
435
438
|
"type": {
|
|
436
|
-
"text": "
|
|
439
|
+
"text": "string"
|
|
437
440
|
},
|
|
438
|
-
"default": "
|
|
439
|
-
"description": "
|
|
440
|
-
"attribute": "
|
|
441
|
+
"default": "'Send'",
|
|
442
|
+
"description": "Text of the send button, and its accessible name when the `send-icon` slot is filled.",
|
|
443
|
+
"attribute": "send-label"
|
|
441
444
|
},
|
|
442
445
|
{
|
|
443
446
|
"kind": "field",
|
|
444
|
-
"name": "
|
|
447
|
+
"name": "submitKey",
|
|
445
448
|
"type": {
|
|
446
|
-
"text": "
|
|
449
|
+
"text": "SkdxChatComposerSubmitKey"
|
|
447
450
|
},
|
|
448
|
-
"default": "'
|
|
449
|
-
"description": "
|
|
450
|
-
"attribute": "
|
|
451
|
-
}
|
|
452
|
-
],
|
|
453
|
-
"attributes": [
|
|
451
|
+
"default": "'enter'",
|
|
452
|
+
"description": "Which key sends from the textarea; the other Enter presses insert a newline.",
|
|
453
|
+
"attribute": "submit-key"
|
|
454
|
+
},
|
|
454
455
|
{
|
|
455
|
-
"
|
|
456
|
+
"kind": "field",
|
|
457
|
+
"name": "maxRows",
|
|
456
458
|
"type": {
|
|
457
|
-
"text": "
|
|
459
|
+
"text": "number"
|
|
458
460
|
},
|
|
459
|
-
"
|
|
460
|
-
"
|
|
461
|
-
"
|
|
461
|
+
"default": "8",
|
|
462
|
+
"description": "Caps how far the auto-growing textarea grows, in rows, before it scrolls.",
|
|
463
|
+
"attribute": "max-rows"
|
|
462
464
|
},
|
|
463
465
|
{
|
|
464
|
-
"
|
|
466
|
+
"kind": "field",
|
|
467
|
+
"name": "maxLength",
|
|
465
468
|
"type": {
|
|
466
|
-
"text": "
|
|
469
|
+
"text": "number | undefined | undefined"
|
|
467
470
|
},
|
|
468
|
-
"description": "
|
|
471
|
+
"description": "Native `maxlength` of the textarea — the longest message it accepts.",
|
|
469
472
|
"default": "undefined",
|
|
470
|
-
"
|
|
473
|
+
"attribute": "max-length"
|
|
471
474
|
},
|
|
472
475
|
{
|
|
473
|
-
"
|
|
476
|
+
"kind": "field",
|
|
477
|
+
"name": "disabled",
|
|
474
478
|
"type": {
|
|
475
479
|
"text": "boolean"
|
|
476
480
|
},
|
|
477
481
|
"default": "false",
|
|
478
|
-
"description": "
|
|
479
|
-
"
|
|
482
|
+
"description": "Disables the textarea and the send button, blocking every send path.",
|
|
483
|
+
"attribute": "disabled"
|
|
480
484
|
},
|
|
481
485
|
{
|
|
482
|
-
"
|
|
486
|
+
"kind": "field",
|
|
487
|
+
"name": "pending",
|
|
483
488
|
"type": {
|
|
484
|
-
"text": "
|
|
489
|
+
"text": "boolean"
|
|
485
490
|
},
|
|
486
|
-
"default": "
|
|
487
|
-
"description": "
|
|
488
|
-
"
|
|
491
|
+
"default": "false",
|
|
492
|
+
"description": "Marks a send in flight: the button is busy and inert, the textarea stays editable.",
|
|
493
|
+
"attribute": "pending"
|
|
489
494
|
}
|
|
490
495
|
],
|
|
491
|
-
"
|
|
492
|
-
"name": "LitElement",
|
|
493
|
-
"package": "lit"
|
|
494
|
-
},
|
|
495
|
-
"tagName": "skdx-comment",
|
|
496
|
-
"customElement": true
|
|
497
|
-
}
|
|
498
|
-
],
|
|
499
|
-
"exports": [
|
|
500
|
-
{
|
|
501
|
-
"kind": "js",
|
|
502
|
-
"name": "SkdxComment",
|
|
503
|
-
"declaration": {
|
|
504
|
-
"name": "SkdxComment",
|
|
505
|
-
"module": "src/comment/Comment.ts"
|
|
506
|
-
}
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
"kind": "custom-element-definition",
|
|
510
|
-
"name": "skdx-comment",
|
|
511
|
-
"declaration": {
|
|
512
|
-
"name": "SkdxComment",
|
|
513
|
-
"module": "src/comment/Comment.ts"
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
]
|
|
517
|
-
},
|
|
518
|
-
{
|
|
519
|
-
"kind": "javascript-module",
|
|
520
|
-
"path": "src/comment/index.ts",
|
|
521
|
-
"declarations": [],
|
|
522
|
-
"exports": [
|
|
523
|
-
{
|
|
524
|
-
"kind": "js",
|
|
525
|
-
"name": "SkdxComment",
|
|
526
|
-
"declaration": {
|
|
527
|
-
"name": "SkdxComment",
|
|
528
|
-
"module": "./Comment"
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
]
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"kind": "javascript-module",
|
|
535
|
-
"path": "src/confirm-dialog/ConfirmDialog.ts",
|
|
536
|
-
"declarations": [
|
|
537
|
-
{
|
|
538
|
-
"kind": "class",
|
|
539
|
-
"description": "Confirmation dialog block for a destructive, irreversible or sensitive\naction, composing the core dialog primitives as an alert dialog with an\nexternally controlled pending state that disables both buttons and blocks\ndismissal while the confirmed request is in flight.\n\nA synchronous confirmation with no pending state is served by the core\n`<skdx-dialog role=\"alertdialog\">` recipe alone.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-confirm-dialog` on the host, then `__title`,\n`__description`, `__body`, `__footer`, `__cancel` and `__confirm`.",
|
|
540
|
-
"name": "SkdxConfirmDialog",
|
|
541
|
-
"slots": [
|
|
496
|
+
"events": [
|
|
542
497
|
{
|
|
543
|
-
"description": "
|
|
544
|
-
"name": ""
|
|
498
|
+
"description": "Fires with the new text on every edit, including the clear that follows an uncontrolled send.",
|
|
499
|
+
"name": "value-change"
|
|
545
500
|
},
|
|
546
501
|
{
|
|
547
|
-
"description": "
|
|
548
|
-
"name": "
|
|
502
|
+
"description": "Fires with the message text when the send button is activated or the configured submit key is pressed.",
|
|
503
|
+
"name": "send"
|
|
549
504
|
}
|
|
550
505
|
],
|
|
551
|
-
"
|
|
506
|
+
"attributes": [
|
|
552
507
|
{
|
|
553
|
-
"
|
|
554
|
-
"name": "open",
|
|
508
|
+
"name": "value",
|
|
555
509
|
"type": {
|
|
556
|
-
"text": "
|
|
510
|
+
"text": "string | undefined | undefined"
|
|
557
511
|
},
|
|
558
|
-
"description": "
|
|
512
|
+
"description": "Current message text, for controlled usage paired with `value-change`.",
|
|
559
513
|
"default": "undefined",
|
|
560
|
-
"
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
"kind": "field",
|
|
564
|
-
"name": "defaultOpen",
|
|
565
|
-
"type": {
|
|
566
|
-
"text": "boolean"
|
|
567
|
-
},
|
|
568
|
-
"default": "false",
|
|
569
|
-
"description": "Whether the dialog starts open, for uncontrolled usage.",
|
|
570
|
-
"attribute": "default-open"
|
|
514
|
+
"fieldName": "value"
|
|
571
515
|
},
|
|
572
516
|
{
|
|
573
|
-
"
|
|
574
|
-
"name": "title",
|
|
517
|
+
"name": "default-value",
|
|
575
518
|
"type": {
|
|
576
519
|
"text": "string"
|
|
577
520
|
},
|
|
578
|
-
"
|
|
579
|
-
"
|
|
580
|
-
"
|
|
521
|
+
"default": "''",
|
|
522
|
+
"description": "Initial message text for uncontrolled usage, read only on mount.",
|
|
523
|
+
"fieldName": "defaultValue"
|
|
581
524
|
},
|
|
582
525
|
{
|
|
583
|
-
"
|
|
584
|
-
"name": "description",
|
|
526
|
+
"name": "placeholder",
|
|
585
527
|
"type": {
|
|
586
528
|
"text": "string | undefined | undefined"
|
|
587
529
|
},
|
|
588
|
-
"description": "
|
|
530
|
+
"description": "Hint text shown in the empty textarea, rendered as the native placeholder.",
|
|
589
531
|
"default": "undefined",
|
|
590
|
-
"
|
|
532
|
+
"fieldName": "placeholder"
|
|
591
533
|
},
|
|
592
534
|
{
|
|
593
|
-
"
|
|
594
|
-
"name": "confirmLabel",
|
|
535
|
+
"name": "label",
|
|
595
536
|
"type": {
|
|
596
537
|
"text": "string"
|
|
597
538
|
},
|
|
598
|
-
"default": "'
|
|
599
|
-
"description": "
|
|
600
|
-
"
|
|
539
|
+
"default": "'Message'",
|
|
540
|
+
"description": "Accessible name of the message textarea, read by assistive technology.",
|
|
541
|
+
"fieldName": "label"
|
|
601
542
|
},
|
|
602
543
|
{
|
|
603
|
-
"
|
|
604
|
-
"name": "cancelLabel",
|
|
544
|
+
"name": "send-label",
|
|
605
545
|
"type": {
|
|
606
546
|
"text": "string"
|
|
607
547
|
},
|
|
608
|
-
"default": "'
|
|
609
|
-
"description": "Text of the button
|
|
610
|
-
"
|
|
548
|
+
"default": "'Send'",
|
|
549
|
+
"description": "Text of the send button, and its accessible name when the `send-icon` slot is filled.",
|
|
550
|
+
"fieldName": "sendLabel"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"name": "submit-key",
|
|
554
|
+
"type": {
|
|
555
|
+
"text": "SkdxChatComposerSubmitKey"
|
|
556
|
+
},
|
|
557
|
+
"default": "'enter'",
|
|
558
|
+
"description": "Which key sends from the textarea; the other Enter presses insert a newline.",
|
|
559
|
+
"fieldName": "submitKey"
|
|
611
560
|
},
|
|
612
561
|
{
|
|
613
|
-
"
|
|
614
|
-
"name": "destructive",
|
|
562
|
+
"name": "max-rows",
|
|
615
563
|
"type": {
|
|
616
|
-
"text": "
|
|
564
|
+
"text": "number"
|
|
617
565
|
},
|
|
618
|
-
"default": "
|
|
619
|
-
"description": "
|
|
620
|
-
"
|
|
566
|
+
"default": "8",
|
|
567
|
+
"description": "Caps how far the auto-growing textarea grows, in rows, before it scrolls.",
|
|
568
|
+
"fieldName": "maxRows"
|
|
621
569
|
},
|
|
622
570
|
{
|
|
623
|
-
"
|
|
624
|
-
"name": "pending",
|
|
571
|
+
"name": "max-length",
|
|
625
572
|
"type": {
|
|
626
|
-
"text": "
|
|
573
|
+
"text": "number | undefined | undefined"
|
|
627
574
|
},
|
|
628
|
-
"
|
|
629
|
-
"
|
|
630
|
-
"
|
|
575
|
+
"description": "Native `maxlength` of the textarea — the longest message it accepts.",
|
|
576
|
+
"default": "undefined",
|
|
577
|
+
"fieldName": "maxLength"
|
|
631
578
|
},
|
|
632
579
|
{
|
|
633
|
-
"kind": "field",
|
|
634
580
|
"name": "disabled",
|
|
635
581
|
"type": {
|
|
636
582
|
"text": "boolean"
|
|
637
583
|
},
|
|
638
584
|
"default": "false",
|
|
639
|
-
"description": "Disables the
|
|
640
|
-
"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"kind": "field",
|
|
644
|
-
"name": "size",
|
|
645
|
-
"type": {
|
|
646
|
-
"text": "'sm' | 'md' | 'lg' | (string & {}) | undefined | undefined"
|
|
647
|
-
},
|
|
648
|
-
"description": "Panel width rung the skin reads, fed to the underlying dialog panel.",
|
|
649
|
-
"default": "undefined",
|
|
650
|
-
"attribute": "size"
|
|
651
|
-
}
|
|
652
|
-
],
|
|
653
|
-
"events": [
|
|
654
|
-
{
|
|
655
|
-
"description": "Fires with the new open state whenever the dialog opens or closes, controlled or not.",
|
|
656
|
-
"name": "open-change"
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
"description": "Fires with the new open state once the panel's enter or exit animation has settled.",
|
|
660
|
-
"name": "open-change-complete"
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"description": "Fires with the click when the confirm button is activated, before the dialog closes; `preventDefault()` holds the panel open.",
|
|
664
|
-
"name": "confirm"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"description": "Fires with the click when the cancel button is activated, before the dialog closes; `preventDefault()` keeps the panel open.",
|
|
668
|
-
"name": "cancel"
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
"description": "Fires when Escape is pressed while the panel is open; `preventDefault()` keeps it open.",
|
|
672
|
-
"name": "escape-key-down"
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"description": "Fires on a pointer-down outside the panel while open; an alert dialog never closes on one.",
|
|
676
|
-
"name": "pointer-down-outside"
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
"description": "Fires when focus moves outside the panel while open; an alert dialog never closes on one.",
|
|
680
|
-
"name": "focus-outside"
|
|
681
|
-
},
|
|
682
|
-
{
|
|
683
|
-
"description": "Fires for either kind of outside interaction, just before the specific event.",
|
|
684
|
-
"name": "interact-outside"
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"description": "Fires before focus moves into the panel on open; `preventDefault()` leaves focus where it is.",
|
|
688
|
-
"name": "open-auto-focus"
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
"description": "Fires before focus returns to the trigger on close; `preventDefault()` suppresses that return.",
|
|
692
|
-
"name": "close-auto-focus"
|
|
693
|
-
}
|
|
694
|
-
],
|
|
695
|
-
"attributes": [
|
|
696
|
-
{
|
|
697
|
-
"name": "open",
|
|
698
|
-
"type": {
|
|
699
|
-
"text": "boolean | undefined | undefined"
|
|
700
|
-
},
|
|
701
|
-
"description": "Whether the dialog is open, for controlled usage; pair it with `open-change`.",
|
|
702
|
-
"default": "undefined",
|
|
703
|
-
"fieldName": "open"
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
"name": "default-open",
|
|
707
|
-
"type": {
|
|
708
|
-
"text": "boolean"
|
|
709
|
-
},
|
|
710
|
-
"default": "false",
|
|
711
|
-
"description": "Whether the dialog starts open, for uncontrolled usage.",
|
|
712
|
-
"fieldName": "defaultOpen"
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"name": "title",
|
|
716
|
-
"type": {
|
|
717
|
-
"text": "string"
|
|
718
|
-
},
|
|
719
|
-
"description": "Heading text rendered into the panel's title, naming and labelling the dialog.",
|
|
720
|
-
"fieldName": "title",
|
|
721
|
-
"required": true
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
"name": "description",
|
|
725
|
-
"type": {
|
|
726
|
-
"text": "string | undefined | undefined"
|
|
727
|
-
},
|
|
728
|
-
"description": "Supporting sentence rendered into the panel's description, read alongside the title.",
|
|
729
|
-
"default": "undefined",
|
|
730
|
-
"fieldName": "description"
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"name": "confirm-label",
|
|
734
|
-
"type": {
|
|
735
|
-
"text": "string"
|
|
736
|
-
},
|
|
737
|
-
"default": "'Confirm'",
|
|
738
|
-
"description": "Text of the button that carries out the confirmed action.",
|
|
739
|
-
"fieldName": "confirmLabel"
|
|
740
|
-
},
|
|
741
|
-
{
|
|
742
|
-
"name": "cancel-label",
|
|
743
|
-
"type": {
|
|
744
|
-
"text": "string"
|
|
745
|
-
},
|
|
746
|
-
"default": "'Cancel'",
|
|
747
|
-
"description": "Text of the button that abandons the action.",
|
|
748
|
-
"fieldName": "cancelLabel"
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
"name": "destructive",
|
|
752
|
-
"type": {
|
|
753
|
-
"text": "boolean"
|
|
754
|
-
},
|
|
755
|
-
"default": "false",
|
|
756
|
-
"description": "Colours the confirm button and the panel danger, for an irreversible or destructive action.",
|
|
757
|
-
"fieldName": "destructive"
|
|
585
|
+
"description": "Disables the textarea and the send button, blocking every send path.",
|
|
586
|
+
"fieldName": "disabled"
|
|
758
587
|
},
|
|
759
588
|
{
|
|
760
589
|
"name": "pending",
|
|
@@ -762,66 +591,72 @@
|
|
|
762
591
|
"text": "boolean"
|
|
763
592
|
},
|
|
764
593
|
"default": "false",
|
|
765
|
-
"description": "Marks
|
|
594
|
+
"description": "Marks a send in flight: the button is busy and inert, the textarea stays editable.",
|
|
766
595
|
"fieldName": "pending"
|
|
767
|
-
},
|
|
768
|
-
{
|
|
769
|
-
"name": "disabled",
|
|
770
|
-
"type": {
|
|
771
|
-
"text": "boolean"
|
|
772
|
-
},
|
|
773
|
-
"default": "false",
|
|
774
|
-
"description": "Disables the confirm button on its own, independent of `pending` — for example until a typed confirmation matches.",
|
|
775
|
-
"fieldName": "disabled"
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"name": "size",
|
|
779
|
-
"type": {
|
|
780
|
-
"text": "'sm' | 'md' | 'lg' | (string & {}) | undefined | undefined"
|
|
781
|
-
},
|
|
782
|
-
"description": "Panel width rung the skin reads, fed to the underlying dialog panel.",
|
|
783
|
-
"default": "undefined",
|
|
784
|
-
"fieldName": "size"
|
|
785
596
|
}
|
|
786
597
|
],
|
|
787
598
|
"superclass": {
|
|
788
599
|
"name": "LitElement",
|
|
789
600
|
"package": "lit"
|
|
790
601
|
},
|
|
791
|
-
"tagName": "skdx-
|
|
602
|
+
"tagName": "skdx-chat-composer",
|
|
792
603
|
"customElement": true
|
|
793
604
|
}
|
|
794
605
|
],
|
|
795
606
|
"exports": [
|
|
796
607
|
{
|
|
797
608
|
"kind": "js",
|
|
798
|
-
"name": "
|
|
609
|
+
"name": "SkdxChatComposer",
|
|
799
610
|
"declaration": {
|
|
800
|
-
"name": "
|
|
801
|
-
"module": "src/
|
|
611
|
+
"name": "SkdxChatComposer",
|
|
612
|
+
"module": "src/chat-composer/ChatComposer.ts"
|
|
802
613
|
}
|
|
803
614
|
},
|
|
804
615
|
{
|
|
805
616
|
"kind": "custom-element-definition",
|
|
806
|
-
"name": "skdx-
|
|
617
|
+
"name": "skdx-chat-composer",
|
|
807
618
|
"declaration": {
|
|
808
|
-
"name": "
|
|
809
|
-
"module": "src/
|
|
619
|
+
"name": "SkdxChatComposer",
|
|
620
|
+
"module": "src/chat-composer/ChatComposer.ts"
|
|
810
621
|
}
|
|
811
622
|
}
|
|
812
623
|
]
|
|
813
624
|
},
|
|
814
625
|
{
|
|
815
626
|
"kind": "javascript-module",
|
|
816
|
-
"path": "src/
|
|
627
|
+
"path": "src/chat-composer/index.ts",
|
|
817
628
|
"declarations": [],
|
|
818
629
|
"exports": [
|
|
819
630
|
{
|
|
820
631
|
"kind": "js",
|
|
821
|
-
"name": "
|
|
632
|
+
"name": "SkdxChatComposer",
|
|
633
|
+
"declaration": {
|
|
634
|
+
"name": "SkdxChatComposer",
|
|
635
|
+
"module": "./ChatComposer"
|
|
636
|
+
}
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"kind": "js",
|
|
640
|
+
"name": "SkdxChatComposerSendDetail",
|
|
641
|
+
"declaration": {
|
|
642
|
+
"name": "SkdxChatComposerSendDetail",
|
|
643
|
+
"module": "./ChatComposer"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"kind": "js",
|
|
648
|
+
"name": "SkdxChatComposerSubmitKey",
|
|
649
|
+
"declaration": {
|
|
650
|
+
"name": "SkdxChatComposerSubmitKey",
|
|
651
|
+
"module": "./ChatComposer"
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"kind": "js",
|
|
656
|
+
"name": "SkdxChatComposerValueChangeDetail",
|
|
822
657
|
"declaration": {
|
|
823
|
-
"name": "
|
|
824
|
-
"module": "./
|
|
658
|
+
"name": "SkdxChatComposerValueChangeDetail",
|
|
659
|
+
"module": "./ChatComposer"
|
|
825
660
|
}
|
|
826
661
|
}
|
|
827
662
|
]
|
|
@@ -1008,894 +843,430 @@
|
|
|
1008
843
|
},
|
|
1009
844
|
{
|
|
1010
845
|
"kind": "javascript-module",
|
|
1011
|
-
"path": "src/comment
|
|
846
|
+
"path": "src/comment/Comment.ts",
|
|
1012
847
|
"declarations": [
|
|
1013
848
|
{
|
|
1014
849
|
"kind": "class",
|
|
1015
|
-
"description": "
|
|
1016
|
-
"name": "
|
|
850
|
+
"description": "One collaboration comment: author, avatar, timestamp, edited indicator,\narbitrary content, attachments and actions such as reply, edit and react.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-comment` on the host, then `__avatar`, `__main`, `__header`,\n`__author`, `__metadata`, `__time`, `__edited`, `__content`, `__attachments`\nand `__actions`.",
|
|
851
|
+
"name": "SkdxComment",
|
|
1017
852
|
"slots": [
|
|
1018
853
|
{
|
|
1019
|
-
"description": "The
|
|
854
|
+
"description": "The comment content, the consumer-supplied body text or markup.",
|
|
1020
855
|
"name": ""
|
|
1021
856
|
},
|
|
1022
857
|
{
|
|
1023
|
-
"description": "
|
|
1024
|
-
"name": "
|
|
858
|
+
"description": "Decorative avatar rendered beside the author, always `aria-hidden`.",
|
|
859
|
+
"name": "avatar"
|
|
1025
860
|
},
|
|
1026
861
|
{
|
|
1027
|
-
"description": "
|
|
1028
|
-
"name": "
|
|
862
|
+
"description": "Badges or supplementary text rendered beside the author.",
|
|
863
|
+
"name": "metadata"
|
|
1029
864
|
},
|
|
1030
865
|
{
|
|
1031
|
-
"description": "
|
|
1032
|
-
"name": "
|
|
866
|
+
"description": "Files or links attached to the comment, below the content.",
|
|
867
|
+
"name": "attachments"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"description": "Controls such as reply, edit and react, below the attachments.",
|
|
871
|
+
"name": "actions"
|
|
1033
872
|
}
|
|
1034
873
|
],
|
|
1035
874
|
"members": [
|
|
1036
875
|
{
|
|
1037
876
|
"kind": "field",
|
|
1038
|
-
"name": "
|
|
877
|
+
"name": "author",
|
|
1039
878
|
"type": {
|
|
1040
|
-
"text": "
|
|
879
|
+
"text": "string"
|
|
1041
880
|
},
|
|
1042
|
-
"description": "
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
881
|
+
"description": "Name of the person or system that wrote the comment, rendered as visible text.",
|
|
882
|
+
"attribute": "author",
|
|
883
|
+
"required": true
|
|
1045
884
|
},
|
|
1046
885
|
{
|
|
1047
886
|
"kind": "field",
|
|
1048
|
-
"name": "
|
|
887
|
+
"name": "timestamp",
|
|
1049
888
|
"type": {
|
|
1050
|
-
"text": "
|
|
889
|
+
"text": "Date | string | undefined | undefined"
|
|
1051
890
|
},
|
|
1052
|
-
"
|
|
1053
|
-
"
|
|
1054
|
-
"attribute": "
|
|
891
|
+
"description": "Instant the comment was posted, rendered through a composed Time.",
|
|
892
|
+
"default": "undefined",
|
|
893
|
+
"attribute": "timestamp"
|
|
1055
894
|
},
|
|
1056
895
|
{
|
|
1057
896
|
"kind": "field",
|
|
1058
|
-
"name": "
|
|
897
|
+
"name": "now",
|
|
1059
898
|
"type": {
|
|
1060
|
-
"text": "
|
|
899
|
+
"text": "Date | number | undefined | undefined"
|
|
1061
900
|
},
|
|
1062
|
-
"description": "
|
|
1063
|
-
"default": "undefined"
|
|
1064
|
-
"attribute": "show-replies-label"
|
|
901
|
+
"description": "Reference instant `timestamp` renders relative to, forwarded to Time.",
|
|
902
|
+
"default": "undefined"
|
|
1065
903
|
},
|
|
1066
904
|
{
|
|
1067
905
|
"kind": "field",
|
|
1068
|
-
"name": "
|
|
906
|
+
"name": "edited",
|
|
1069
907
|
"type": {
|
|
1070
|
-
"text": "
|
|
908
|
+
"text": "boolean"
|
|
1071
909
|
},
|
|
1072
|
-
"
|
|
1073
|
-
"
|
|
1074
|
-
"attribute": "
|
|
1075
|
-
}
|
|
1076
|
-
],
|
|
1077
|
-
"events": [
|
|
910
|
+
"default": "false",
|
|
911
|
+
"description": "Marks the comment as edited since it was first posted.",
|
|
912
|
+
"attribute": "edited"
|
|
913
|
+
},
|
|
1078
914
|
{
|
|
1079
|
-
"
|
|
1080
|
-
"name": "
|
|
915
|
+
"kind": "field",
|
|
916
|
+
"name": "editedLabel",
|
|
917
|
+
"type": {
|
|
918
|
+
"text": "string"
|
|
919
|
+
},
|
|
920
|
+
"default": "'Edited'",
|
|
921
|
+
"description": "Text of the edited indicator, shown only when `edited` is set.",
|
|
922
|
+
"attribute": "edited-label"
|
|
1081
923
|
}
|
|
1082
924
|
],
|
|
1083
925
|
"attributes": [
|
|
1084
926
|
{
|
|
1085
|
-
"name": "
|
|
927
|
+
"name": "author",
|
|
1086
928
|
"type": {
|
|
1087
|
-
"text": "
|
|
929
|
+
"text": "string"
|
|
1088
930
|
},
|
|
1089
|
-
"description": "
|
|
1090
|
-
"
|
|
1091
|
-
"
|
|
931
|
+
"description": "Name of the person or system that wrote the comment, rendered as visible text.",
|
|
932
|
+
"fieldName": "author",
|
|
933
|
+
"required": true
|
|
1092
934
|
},
|
|
1093
935
|
{
|
|
1094
|
-
"name": "
|
|
936
|
+
"name": "timestamp",
|
|
1095
937
|
"type": {
|
|
1096
|
-
"text": "
|
|
938
|
+
"text": "Date | string | undefined | undefined"
|
|
1097
939
|
},
|
|
1098
|
-
"
|
|
1099
|
-
"
|
|
1100
|
-
"fieldName": "
|
|
940
|
+
"description": "Instant the comment was posted, rendered through a composed Time.",
|
|
941
|
+
"default": "undefined",
|
|
942
|
+
"fieldName": "timestamp"
|
|
1101
943
|
},
|
|
1102
944
|
{
|
|
1103
|
-
"name": "
|
|
945
|
+
"name": "edited",
|
|
1104
946
|
"type": {
|
|
1105
|
-
"text": "
|
|
947
|
+
"text": "boolean"
|
|
1106
948
|
},
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1109
|
-
"fieldName": "
|
|
949
|
+
"default": "false",
|
|
950
|
+
"description": "Marks the comment as edited since it was first posted.",
|
|
951
|
+
"fieldName": "edited"
|
|
1110
952
|
},
|
|
1111
953
|
{
|
|
1112
|
-
"name": "
|
|
954
|
+
"name": "edited-label",
|
|
1113
955
|
"type": {
|
|
1114
|
-
"text": "string
|
|
956
|
+
"text": "string"
|
|
1115
957
|
},
|
|
1116
|
-
"
|
|
1117
|
-
"
|
|
1118
|
-
"fieldName": "
|
|
958
|
+
"default": "'Edited'",
|
|
959
|
+
"description": "Text of the edited indicator, shown only when `edited` is set.",
|
|
960
|
+
"fieldName": "editedLabel"
|
|
1119
961
|
}
|
|
1120
962
|
],
|
|
1121
963
|
"superclass": {
|
|
1122
964
|
"name": "LitElement",
|
|
1123
965
|
"package": "lit"
|
|
1124
966
|
},
|
|
1125
|
-
"tagName": "skdx-comment
|
|
967
|
+
"tagName": "skdx-comment",
|
|
1126
968
|
"customElement": true
|
|
1127
969
|
}
|
|
1128
970
|
],
|
|
1129
971
|
"exports": [
|
|
1130
972
|
{
|
|
1131
973
|
"kind": "js",
|
|
1132
|
-
"name": "
|
|
974
|
+
"name": "SkdxComment",
|
|
1133
975
|
"declaration": {
|
|
1134
|
-
"name": "
|
|
1135
|
-
"module": "src/comment
|
|
976
|
+
"name": "SkdxComment",
|
|
977
|
+
"module": "src/comment/Comment.ts"
|
|
1136
978
|
}
|
|
1137
979
|
},
|
|
1138
980
|
{
|
|
1139
981
|
"kind": "custom-element-definition",
|
|
1140
|
-
"name": "skdx-comment
|
|
982
|
+
"name": "skdx-comment",
|
|
1141
983
|
"declaration": {
|
|
1142
|
-
"name": "
|
|
1143
|
-
"module": "src/comment
|
|
984
|
+
"name": "SkdxComment",
|
|
985
|
+
"module": "src/comment/Comment.ts"
|
|
1144
986
|
}
|
|
1145
987
|
}
|
|
1146
988
|
]
|
|
1147
989
|
},
|
|
1148
990
|
{
|
|
1149
991
|
"kind": "javascript-module",
|
|
1150
|
-
"path": "src/comment
|
|
992
|
+
"path": "src/comment/index.ts",
|
|
1151
993
|
"declarations": [],
|
|
1152
994
|
"exports": [
|
|
1153
995
|
{
|
|
1154
996
|
"kind": "js",
|
|
1155
|
-
"name": "
|
|
997
|
+
"name": "SkdxComment",
|
|
1156
998
|
"declaration": {
|
|
1157
|
-
"name": "
|
|
1158
|
-
"module": "./
|
|
999
|
+
"name": "SkdxComment",
|
|
1000
|
+
"module": "./Comment"
|
|
1159
1001
|
}
|
|
1160
1002
|
}
|
|
1161
1003
|
]
|
|
1162
1004
|
},
|
|
1163
1005
|
{
|
|
1164
1006
|
"kind": "javascript-module",
|
|
1165
|
-
"path": "src/
|
|
1007
|
+
"path": "src/comment-thread/CommentThread.ts",
|
|
1166
1008
|
"declarations": [
|
|
1167
1009
|
{
|
|
1168
1010
|
"kind": "class",
|
|
1169
|
-
"description": "
|
|
1170
|
-
"name": "
|
|
1011
|
+
"description": "A root comment with its replies, indented one level, collapsible with the\nconsumer's own labels, plus regions for a load-more control and a composer.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-comment-thread` on the host, then `__comment`, `__toggle`,\n`__replies`, `__load-more` and `__composer`. `data-state` on the host reads\n`expanded` or `collapsed`.",
|
|
1012
|
+
"name": "SkdxCommentThread",
|
|
1171
1013
|
"slots": [
|
|
1172
1014
|
{
|
|
1173
|
-
"description": "The
|
|
1015
|
+
"description": "The root comment this thread replies to.",
|
|
1174
1016
|
"name": ""
|
|
1175
1017
|
},
|
|
1176
1018
|
{
|
|
1177
|
-
"description": "
|
|
1178
|
-
"name": "
|
|
1019
|
+
"description": "The reply comments, indented one level below the root comment.",
|
|
1020
|
+
"name": "replies"
|
|
1179
1021
|
},
|
|
1180
1022
|
{
|
|
1181
|
-
"description": "
|
|
1182
|
-
"name": "
|
|
1023
|
+
"description": "Control that requests more replies, below the replies region.",
|
|
1024
|
+
"name": "load-more"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"description": "Reply composer rendered at the end of the thread.",
|
|
1028
|
+
"name": "composer"
|
|
1183
1029
|
}
|
|
1184
1030
|
],
|
|
1185
1031
|
"members": [
|
|
1186
1032
|
{
|
|
1187
1033
|
"kind": "field",
|
|
1188
|
-
"name": "
|
|
1189
|
-
"type": {
|
|
1190
|
-
"text": "string"
|
|
1191
|
-
},
|
|
1192
|
-
"default": "''",
|
|
1193
|
-
"description": "Application title shown in the app bar after the branding, shadowing the native tooltip attribute.",
|
|
1194
|
-
"attribute": "title"
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
"kind": "field",
|
|
1198
|
-
"name": "navigation",
|
|
1199
|
-
"type": {
|
|
1200
|
-
"text": "readonly SkdxDashboardNavigationItem[]"
|
|
1201
|
-
},
|
|
1202
|
-
"description": "The side navigation, one entry per row, nested through each entry's `children`.",
|
|
1203
|
-
"required": true
|
|
1204
|
-
},
|
|
1205
|
-
{
|
|
1206
|
-
"kind": "field",
|
|
1207
|
-
"name": "navOpen",
|
|
1034
|
+
"name": "expanded",
|
|
1208
1035
|
"type": {
|
|
1209
|
-
"text": "boolean | undefined"
|
|
1036
|
+
"text": "boolean | undefined | undefined"
|
|
1210
1037
|
},
|
|
1211
|
-
"description": "Whether the
|
|
1038
|
+
"description": "Whether the replies are shown, for controlled usage paired with `expanded-change`.",
|
|
1212
1039
|
"default": "undefined",
|
|
1213
|
-
"attribute": "
|
|
1040
|
+
"attribute": "expanded"
|
|
1214
1041
|
},
|
|
1215
1042
|
{
|
|
1216
1043
|
"kind": "field",
|
|
1217
|
-
"name": "
|
|
1044
|
+
"name": "defaultExpanded",
|
|
1218
1045
|
"type": {
|
|
1219
1046
|
"text": "boolean"
|
|
1220
1047
|
},
|
|
1221
1048
|
"default": "true",
|
|
1222
|
-
"description": "Whether the
|
|
1223
|
-
"attribute": "default-
|
|
1049
|
+
"description": "Whether the replies start shown, used only while uncontrolled.",
|
|
1050
|
+
"attribute": "default-expanded"
|
|
1224
1051
|
},
|
|
1225
1052
|
{
|
|
1226
1053
|
"kind": "field",
|
|
1227
|
-
"name": "
|
|
1054
|
+
"name": "showRepliesLabel",
|
|
1228
1055
|
"type": {
|
|
1229
|
-
"text": "string"
|
|
1056
|
+
"text": "string | undefined | undefined"
|
|
1230
1057
|
},
|
|
1231
|
-
"
|
|
1232
|
-
"
|
|
1233
|
-
"attribute": "
|
|
1058
|
+
"description": "Text of the toggle button while the replies are hidden; a toggle only renders when this is given.",
|
|
1059
|
+
"default": "undefined",
|
|
1060
|
+
"attribute": "show-replies-label"
|
|
1234
1061
|
},
|
|
1235
1062
|
{
|
|
1236
1063
|
"kind": "field",
|
|
1237
|
-
"name": "
|
|
1064
|
+
"name": "hideRepliesLabel",
|
|
1238
1065
|
"type": {
|
|
1239
|
-
"text": "string"
|
|
1066
|
+
"text": "string | undefined | undefined"
|
|
1240
1067
|
},
|
|
1241
|
-
"
|
|
1242
|
-
"
|
|
1243
|
-
"attribute": "
|
|
1068
|
+
"description": "Text of the toggle button while the replies are shown.",
|
|
1069
|
+
"default": "undefined",
|
|
1070
|
+
"attribute": "hide-replies-label"
|
|
1244
1071
|
}
|
|
1245
1072
|
],
|
|
1246
1073
|
"events": [
|
|
1247
1074
|
{
|
|
1248
|
-
"description": "Fires with the new
|
|
1249
|
-
"name": "
|
|
1075
|
+
"description": "Fires with the new expanded state whenever the replies toggle is activated.",
|
|
1076
|
+
"name": "expanded-change"
|
|
1250
1077
|
}
|
|
1251
1078
|
],
|
|
1252
1079
|
"attributes": [
|
|
1253
1080
|
{
|
|
1254
|
-
"name": "
|
|
1255
|
-
"type": {
|
|
1256
|
-
"text": "string"
|
|
1257
|
-
},
|
|
1258
|
-
"default": "''",
|
|
1259
|
-
"description": "Application title shown in the app bar after the branding, shadowing the native tooltip attribute.",
|
|
1260
|
-
"fieldName": "title"
|
|
1261
|
-
},
|
|
1262
|
-
{
|
|
1263
|
-
"name": "nav-open",
|
|
1081
|
+
"name": "expanded",
|
|
1264
1082
|
"type": {
|
|
1265
|
-
"text": "boolean | undefined"
|
|
1083
|
+
"text": "boolean | undefined | undefined"
|
|
1266
1084
|
},
|
|
1267
|
-
"description": "Whether the
|
|
1085
|
+
"description": "Whether the replies are shown, for controlled usage paired with `expanded-change`.",
|
|
1268
1086
|
"default": "undefined",
|
|
1269
|
-
"fieldName": "
|
|
1087
|
+
"fieldName": "expanded"
|
|
1270
1088
|
},
|
|
1271
1089
|
{
|
|
1272
|
-
"name": "default-
|
|
1090
|
+
"name": "default-expanded",
|
|
1273
1091
|
"type": {
|
|
1274
1092
|
"text": "boolean"
|
|
1275
1093
|
},
|
|
1276
1094
|
"default": "true",
|
|
1277
|
-
"description": "Whether the
|
|
1278
|
-
"fieldName": "
|
|
1095
|
+
"description": "Whether the replies start shown, used only while uncontrolled.",
|
|
1096
|
+
"fieldName": "defaultExpanded"
|
|
1279
1097
|
},
|
|
1280
1098
|
{
|
|
1281
|
-
"name": "
|
|
1099
|
+
"name": "show-replies-label",
|
|
1282
1100
|
"type": {
|
|
1283
|
-
"text": "string"
|
|
1101
|
+
"text": "string | undefined | undefined"
|
|
1284
1102
|
},
|
|
1285
|
-
"
|
|
1286
|
-
"
|
|
1287
|
-
"fieldName": "
|
|
1103
|
+
"description": "Text of the toggle button while the replies are hidden; a toggle only renders when this is given.",
|
|
1104
|
+
"default": "undefined",
|
|
1105
|
+
"fieldName": "showRepliesLabel"
|
|
1288
1106
|
},
|
|
1289
1107
|
{
|
|
1290
|
-
"name": "
|
|
1108
|
+
"name": "hide-replies-label",
|
|
1291
1109
|
"type": {
|
|
1292
|
-
"text": "string"
|
|
1110
|
+
"text": "string | undefined | undefined"
|
|
1293
1111
|
},
|
|
1294
|
-
"
|
|
1295
|
-
"
|
|
1296
|
-
"fieldName": "
|
|
1112
|
+
"description": "Text of the toggle button while the replies are shown.",
|
|
1113
|
+
"default": "undefined",
|
|
1114
|
+
"fieldName": "hideRepliesLabel"
|
|
1297
1115
|
}
|
|
1298
1116
|
],
|
|
1299
1117
|
"superclass": {
|
|
1300
1118
|
"name": "LitElement",
|
|
1301
1119
|
"package": "lit"
|
|
1302
1120
|
},
|
|
1303
|
-
"tagName": "skdx-
|
|
1121
|
+
"tagName": "skdx-comment-thread",
|
|
1304
1122
|
"customElement": true
|
|
1305
1123
|
}
|
|
1306
1124
|
],
|
|
1307
1125
|
"exports": [
|
|
1308
1126
|
{
|
|
1309
1127
|
"kind": "js",
|
|
1310
|
-
"name": "
|
|
1128
|
+
"name": "SkdxCommentThread",
|
|
1311
1129
|
"declaration": {
|
|
1312
|
-
"name": "
|
|
1313
|
-
"module": "src/
|
|
1130
|
+
"name": "SkdxCommentThread",
|
|
1131
|
+
"module": "src/comment-thread/CommentThread.ts"
|
|
1314
1132
|
}
|
|
1315
1133
|
},
|
|
1316
1134
|
{
|
|
1317
1135
|
"kind": "custom-element-definition",
|
|
1318
|
-
"name": "skdx-
|
|
1136
|
+
"name": "skdx-comment-thread",
|
|
1319
1137
|
"declaration": {
|
|
1320
|
-
"name": "
|
|
1321
|
-
"module": "src/
|
|
1138
|
+
"name": "SkdxCommentThread",
|
|
1139
|
+
"module": "src/comment-thread/CommentThread.ts"
|
|
1322
1140
|
}
|
|
1323
1141
|
}
|
|
1324
1142
|
]
|
|
1325
1143
|
},
|
|
1326
1144
|
{
|
|
1327
1145
|
"kind": "javascript-module",
|
|
1328
|
-
"path": "src/
|
|
1146
|
+
"path": "src/comment-thread/index.ts",
|
|
1329
1147
|
"declarations": [],
|
|
1330
1148
|
"exports": [
|
|
1331
1149
|
{
|
|
1332
1150
|
"kind": "js",
|
|
1333
|
-
"name": "
|
|
1334
|
-
"declaration": {
|
|
1335
|
-
"name": "SkdxDashboardLayout",
|
|
1336
|
-
"module": "./DashboardLayout"
|
|
1337
|
-
}
|
|
1338
|
-
},
|
|
1339
|
-
{
|
|
1340
|
-
"kind": "js",
|
|
1341
|
-
"name": "SkdxDashboardNavigationItem",
|
|
1151
|
+
"name": "SkdxCommentThread",
|
|
1342
1152
|
"declaration": {
|
|
1343
|
-
"name": "
|
|
1344
|
-
"module": "./
|
|
1153
|
+
"name": "SkdxCommentThread",
|
|
1154
|
+
"module": "./CommentThread"
|
|
1345
1155
|
}
|
|
1346
1156
|
}
|
|
1347
1157
|
]
|
|
1348
1158
|
},
|
|
1349
1159
|
{
|
|
1350
1160
|
"kind": "javascript-module",
|
|
1351
|
-
"path": "src/
|
|
1161
|
+
"path": "src/conversation-list/ConversationList.ts",
|
|
1352
1162
|
"declarations": [
|
|
1353
1163
|
{
|
|
1354
1164
|
"kind": "class",
|
|
1355
|
-
"description": "
|
|
1356
|
-
"name": "
|
|
1357
|
-
"slots": [
|
|
1358
|
-
{
|
|
1359
|
-
"description": "Extra content rendered between the description and the actions region.",
|
|
1360
|
-
"name": ""
|
|
1361
|
-
},
|
|
1362
|
-
{
|
|
1363
|
-
"description": "Decorative illustration or glyph rendered above the title.",
|
|
1364
|
-
"name": "icon"
|
|
1365
|
-
},
|
|
1366
|
-
{
|
|
1367
|
-
"description": "Primary and secondary controls rendered below the content.",
|
|
1368
|
-
"name": "actions"
|
|
1369
|
-
}
|
|
1370
|
-
],
|
|
1165
|
+
"description": "Conversation navigation block: a single-select listbox of threads with a\ntitle, preview, relative timestamp, unread mark and badge, plus grouping and\nits own loading and empty states. It routes nowhere — it reports the chosen\nconversation and the consumer navigates.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-conversation-list` on the host, then `__loading`, `__empty`,\n`__list`, `__group`, `__group-label`, `__item`, `__leading`, `__body`,\n`__title`, `__preview`, `__meta`, `__time` and `__badge`. `data-unread` sits\non a row that has not been read.",
|
|
1166
|
+
"name": "SkdxConversationList",
|
|
1371
1167
|
"members": [
|
|
1372
1168
|
{
|
|
1373
1169
|
"kind": "field",
|
|
1374
|
-
"name": "
|
|
1170
|
+
"name": "items",
|
|
1375
1171
|
"type": {
|
|
1376
|
-
"text": "
|
|
1172
|
+
"text": "readonly SkdxConversationListItem[]"
|
|
1377
1173
|
},
|
|
1378
|
-
"description": "
|
|
1379
|
-
"attribute": "title",
|
|
1174
|
+
"description": "The conversations to render, in order, each one a selectable option keyed by its id.",
|
|
1380
1175
|
"required": true
|
|
1381
1176
|
},
|
|
1382
1177
|
{
|
|
1383
1178
|
"kind": "field",
|
|
1384
|
-
"name": "
|
|
1179
|
+
"name": "value",
|
|
1385
1180
|
"type": {
|
|
1386
1181
|
"text": "string | undefined | undefined"
|
|
1387
1182
|
},
|
|
1388
|
-
"description": "
|
|
1183
|
+
"description": "Selected conversation's id, for controlled usage paired with `value-change`.",
|
|
1389
1184
|
"default": "undefined",
|
|
1390
|
-
"attribute": "
|
|
1185
|
+
"attribute": "value"
|
|
1391
1186
|
},
|
|
1392
1187
|
{
|
|
1393
1188
|
"kind": "field",
|
|
1394
|
-
"name": "
|
|
1189
|
+
"name": "defaultValue",
|
|
1395
1190
|
"type": {
|
|
1396
|
-
"text": "
|
|
1191
|
+
"text": "string | undefined | undefined"
|
|
1397
1192
|
},
|
|
1398
|
-
"
|
|
1399
|
-
"
|
|
1400
|
-
"attribute": "
|
|
1193
|
+
"description": "Conversation selected on first render, used only while uncontrolled.",
|
|
1194
|
+
"default": "undefined",
|
|
1195
|
+
"attribute": "default-value"
|
|
1401
1196
|
},
|
|
1402
1197
|
{
|
|
1403
1198
|
"kind": "field",
|
|
1404
|
-
"name": "
|
|
1199
|
+
"name": "label",
|
|
1405
1200
|
"type": {
|
|
1406
|
-
"text": "
|
|
1201
|
+
"text": "string"
|
|
1407
1202
|
},
|
|
1408
|
-
"
|
|
1409
|
-
"
|
|
1410
|
-
"attribute": "
|
|
1203
|
+
"default": "'Conversations'",
|
|
1204
|
+
"description": "Accessible name of the derived listbox holding the conversation rows.",
|
|
1205
|
+
"attribute": "label"
|
|
1411
1206
|
},
|
|
1412
1207
|
{
|
|
1413
1208
|
"kind": "field",
|
|
1414
|
-
"name": "
|
|
1209
|
+
"name": "unreadLabel",
|
|
1415
1210
|
"type": {
|
|
1416
|
-
"text": "
|
|
1211
|
+
"text": "string"
|
|
1417
1212
|
},
|
|
1418
|
-
"default": "'
|
|
1419
|
-
"description": "
|
|
1420
|
-
"attribute": "
|
|
1421
|
-
}
|
|
1422
|
-
],
|
|
1423
|
-
"attributes": [
|
|
1213
|
+
"default": "'Unread'",
|
|
1214
|
+
"description": "Visually hidden text appended to an unread row's title, so the mark is spoken.",
|
|
1215
|
+
"attribute": "unread-label"
|
|
1216
|
+
},
|
|
1424
1217
|
{
|
|
1425
|
-
"
|
|
1218
|
+
"kind": "field",
|
|
1219
|
+
"name": "emptyTitle",
|
|
1426
1220
|
"type": {
|
|
1427
1221
|
"text": "string"
|
|
1428
1222
|
},
|
|
1429
|
-
"
|
|
1430
|
-
"
|
|
1431
|
-
"
|
|
1432
|
-
},
|
|
1433
|
-
{
|
|
1434
|
-
"name": "description",
|
|
1435
|
-
"type": {
|
|
1436
|
-
"text": "string | undefined | undefined"
|
|
1437
|
-
},
|
|
1438
|
-
"description": "Supporting copy rendered below the title, explaining why the region is empty.",
|
|
1439
|
-
"default": "undefined",
|
|
1440
|
-
"fieldName": "description"
|
|
1441
|
-
},
|
|
1442
|
-
{
|
|
1443
|
-
"name": "heading-level",
|
|
1444
|
-
"type": {
|
|
1445
|
-
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
1446
|
-
},
|
|
1447
|
-
"default": "3",
|
|
1448
|
-
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
1449
|
-
"fieldName": "headingLevel"
|
|
1450
|
-
},
|
|
1451
|
-
{
|
|
1452
|
-
"name": "size",
|
|
1453
|
-
"type": {
|
|
1454
|
-
"text": "'sm' | 'md' | 'lg' | (string & {}) | undefined | undefined"
|
|
1455
|
-
},
|
|
1456
|
-
"description": "Visual size rung, written to `data-size` on the host; the skin scales the icon, spacing and title by it.",
|
|
1457
|
-
"default": "undefined",
|
|
1458
|
-
"fieldName": "size"
|
|
1459
|
-
},
|
|
1460
|
-
{
|
|
1461
|
-
"name": "align",
|
|
1462
|
-
"type": {
|
|
1463
|
-
"text": "'center' | 'start' | (string & {})"
|
|
1464
|
-
},
|
|
1465
|
-
"default": "'center'",
|
|
1466
|
-
"description": "Text and content alignment rung, written to `data-align` on the host.",
|
|
1467
|
-
"fieldName": "align"
|
|
1468
|
-
}
|
|
1469
|
-
],
|
|
1470
|
-
"superclass": {
|
|
1471
|
-
"name": "LitElement",
|
|
1472
|
-
"package": "lit"
|
|
1473
|
-
},
|
|
1474
|
-
"tagName": "skdx-empty-state",
|
|
1475
|
-
"customElement": true
|
|
1476
|
-
}
|
|
1477
|
-
],
|
|
1478
|
-
"exports": [
|
|
1479
|
-
{
|
|
1480
|
-
"kind": "js",
|
|
1481
|
-
"name": "SkdxEmptyState",
|
|
1482
|
-
"declaration": {
|
|
1483
|
-
"name": "SkdxEmptyState",
|
|
1484
|
-
"module": "src/empty-state/EmptyState.ts"
|
|
1485
|
-
}
|
|
1486
|
-
},
|
|
1487
|
-
{
|
|
1488
|
-
"kind": "custom-element-definition",
|
|
1489
|
-
"name": "skdx-empty-state",
|
|
1490
|
-
"declaration": {
|
|
1491
|
-
"name": "SkdxEmptyState",
|
|
1492
|
-
"module": "src/empty-state/EmptyState.ts"
|
|
1493
|
-
}
|
|
1494
|
-
}
|
|
1495
|
-
]
|
|
1496
|
-
},
|
|
1497
|
-
{
|
|
1498
|
-
"kind": "javascript-module",
|
|
1499
|
-
"path": "src/empty-state/index.ts",
|
|
1500
|
-
"declarations": [],
|
|
1501
|
-
"exports": [
|
|
1502
|
-
{
|
|
1503
|
-
"kind": "js",
|
|
1504
|
-
"name": "SkdxEmptyState",
|
|
1505
|
-
"declaration": {
|
|
1506
|
-
"name": "SkdxEmptyState",
|
|
1507
|
-
"module": "./EmptyState"
|
|
1508
|
-
}
|
|
1509
|
-
}
|
|
1510
|
-
]
|
|
1511
|
-
},
|
|
1512
|
-
{
|
|
1513
|
-
"kind": "javascript-module",
|
|
1514
|
-
"path": "src/filter-bar/FilterBar.ts",
|
|
1515
|
-
"declarations": [
|
|
1516
|
-
{
|
|
1517
|
-
"kind": "class",
|
|
1518
|
-
"description": "Filtering surface above a table, list, card grid or report: a search field,\nthe consumer's filter controls, the applied filters as removable tags, and a\nclear action. Composes TextField, TagGroup and Button.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-filter-bar` on the host, then `__search`, `__filters`,\n`__actions`, `__active`, `__tags` and `__clear`.",
|
|
1519
|
-
"name": "SkdxFilterBar",
|
|
1520
|
-
"slots": [
|
|
1521
|
-
{
|
|
1522
|
-
"description": "The consumer's filter controls, laid out in the filters region.",
|
|
1523
|
-
"name": ""
|
|
1524
|
-
},
|
|
1525
|
-
{
|
|
1526
|
-
"description": "Controls rendered at the end of the bar, such as a \"Save view\" button.",
|
|
1527
|
-
"name": "actions"
|
|
1528
|
-
}
|
|
1529
|
-
],
|
|
1530
|
-
"members": [
|
|
1531
|
-
{
|
|
1532
|
-
"kind": "field",
|
|
1533
|
-
"name": "label",
|
|
1534
|
-
"type": {
|
|
1535
|
-
"text": "string"
|
|
1536
|
-
},
|
|
1537
|
-
"default": "'Filters'",
|
|
1538
|
-
"description": "Accessible name of the root region, written to `aria-label`.",
|
|
1539
|
-
"attribute": "label"
|
|
1540
|
-
},
|
|
1541
|
-
{
|
|
1542
|
-
"kind": "field",
|
|
1543
|
-
"name": "searchLabel",
|
|
1544
|
-
"type": {
|
|
1545
|
-
"text": "string | undefined | undefined"
|
|
1546
|
-
},
|
|
1547
|
-
"description": "Accessible name of the search field; providing it renders the search region.",
|
|
1548
|
-
"default": "undefined",
|
|
1549
|
-
"attribute": "search-label"
|
|
1550
|
-
},
|
|
1551
|
-
{
|
|
1552
|
-
"kind": "field",
|
|
1553
|
-
"name": "searchPlaceholder",
|
|
1554
|
-
"type": {
|
|
1555
|
-
"text": "string | undefined | undefined"
|
|
1556
|
-
},
|
|
1557
|
-
"description": "Placeholder shown in the empty search field.",
|
|
1558
|
-
"default": "undefined",
|
|
1559
|
-
"attribute": "search-placeholder"
|
|
1223
|
+
"default": "'No conversations'",
|
|
1224
|
+
"description": "Heading of the derived EmptyState shown when there is nothing to list.",
|
|
1225
|
+
"attribute": "empty-title"
|
|
1560
1226
|
},
|
|
1561
1227
|
{
|
|
1562
1228
|
"kind": "field",
|
|
1563
|
-
"name": "
|
|
1229
|
+
"name": "emptyDescription",
|
|
1564
1230
|
"type": {
|
|
1565
1231
|
"text": "string | undefined | undefined"
|
|
1566
1232
|
},
|
|
1567
|
-
"description": "
|
|
1233
|
+
"description": "Supporting copy under the empty state's heading, explaining the gap.",
|
|
1568
1234
|
"default": "undefined",
|
|
1569
|
-
"attribute": "
|
|
1570
|
-
},
|
|
1571
|
-
{
|
|
1572
|
-
"kind": "field",
|
|
1573
|
-
"name": "defaultSearchValue",
|
|
1574
|
-
"type": {
|
|
1575
|
-
"text": "string"
|
|
1576
|
-
},
|
|
1577
|
-
"default": "''",
|
|
1578
|
-
"description": "Initial search text, for uncontrolled usage — seeds the internally tracked value.",
|
|
1579
|
-
"attribute": "default-search-value"
|
|
1235
|
+
"attribute": "empty-description"
|
|
1580
1236
|
},
|
|
1581
1237
|
{
|
|
1582
1238
|
"kind": "field",
|
|
1583
|
-
"name": "
|
|
1239
|
+
"name": "loading",
|
|
1584
1240
|
"type": {
|
|
1585
|
-
"text": "
|
|
1241
|
+
"text": "boolean"
|
|
1586
1242
|
},
|
|
1587
|
-
"default": "
|
|
1588
|
-
"description": "
|
|
1589
|
-
"attribute": "
|
|
1243
|
+
"default": "false",
|
|
1244
|
+
"description": "Replaces the rows with decorative placeholder lines and marks the host `aria-busy`.",
|
|
1245
|
+
"attribute": "loading"
|
|
1590
1246
|
},
|
|
1591
1247
|
{
|
|
1592
1248
|
"kind": "field",
|
|
1593
|
-
"name": "
|
|
1249
|
+
"name": "now",
|
|
1594
1250
|
"type": {
|
|
1595
|
-
"text": "
|
|
1251
|
+
"text": "Date | number | undefined | undefined"
|
|
1596
1252
|
},
|
|
1597
|
-
"description": "
|
|
1253
|
+
"description": "Reference instant the relative row timestamps are measured from.",
|
|
1598
1254
|
"default": "undefined"
|
|
1599
1255
|
},
|
|
1600
1256
|
{
|
|
1601
1257
|
"kind": "field",
|
|
1602
|
-
"name": "
|
|
1603
|
-
"type": {
|
|
1604
|
-
"text": "string"
|
|
1605
|
-
},
|
|
1606
|
-
"default": "'Active filters'",
|
|
1607
|
-
"description": "Accessible name of the active-filters tag list.",
|
|
1608
|
-
"attribute": "active-filters-label"
|
|
1609
|
-
},
|
|
1610
|
-
{
|
|
1611
|
-
"kind": "field",
|
|
1612
|
-
"name": "clearLabel",
|
|
1613
|
-
"type": {
|
|
1614
|
-
"text": "string"
|
|
1615
|
-
},
|
|
1616
|
-
"default": "'Clear filters'",
|
|
1617
|
-
"description": "Text rendered on the clear-filters button.",
|
|
1618
|
-
"attribute": "clear-label"
|
|
1619
|
-
}
|
|
1620
|
-
],
|
|
1621
|
-
"events": [
|
|
1622
|
-
{
|
|
1623
|
-
"description": "Fires with the new text whenever the search field changes, controlled or not.",
|
|
1624
|
-
"name": "search-value-change"
|
|
1625
|
-
},
|
|
1626
|
-
{
|
|
1627
|
-
"description": "Fires with the removed filter when its tag's remove control is activated.",
|
|
1628
|
-
"name": "remove-filter"
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"description": "Fires when the clear-filters button is activated while filters are shown.",
|
|
1632
|
-
"name": "clear"
|
|
1633
|
-
}
|
|
1634
|
-
],
|
|
1635
|
-
"attributes": [
|
|
1636
|
-
{
|
|
1637
|
-
"name": "label",
|
|
1638
|
-
"type": {
|
|
1639
|
-
"text": "string"
|
|
1640
|
-
},
|
|
1641
|
-
"default": "'Filters'",
|
|
1642
|
-
"description": "Accessible name of the root region, written to `aria-label`.",
|
|
1643
|
-
"fieldName": "label"
|
|
1644
|
-
},
|
|
1645
|
-
{
|
|
1646
|
-
"name": "search-label",
|
|
1647
|
-
"type": {
|
|
1648
|
-
"text": "string | undefined | undefined"
|
|
1649
|
-
},
|
|
1650
|
-
"description": "Accessible name of the search field; providing it renders the search region.",
|
|
1651
|
-
"default": "undefined",
|
|
1652
|
-
"fieldName": "searchLabel"
|
|
1653
|
-
},
|
|
1654
|
-
{
|
|
1655
|
-
"name": "search-placeholder",
|
|
1656
|
-
"type": {
|
|
1657
|
-
"text": "string | undefined | undefined"
|
|
1658
|
-
},
|
|
1659
|
-
"description": "Placeholder shown in the empty search field.",
|
|
1660
|
-
"default": "undefined",
|
|
1661
|
-
"fieldName": "searchPlaceholder"
|
|
1662
|
-
},
|
|
1663
|
-
{
|
|
1664
|
-
"name": "search-value",
|
|
1665
|
-
"type": {
|
|
1666
|
-
"text": "string | undefined | undefined"
|
|
1667
|
-
},
|
|
1668
|
-
"description": "Current search text, for controlled usage; pair it with `search-value-change`.",
|
|
1669
|
-
"default": "undefined",
|
|
1670
|
-
"fieldName": "searchValue"
|
|
1671
|
-
},
|
|
1672
|
-
{
|
|
1673
|
-
"name": "default-search-value",
|
|
1674
|
-
"type": {
|
|
1675
|
-
"text": "string"
|
|
1676
|
-
},
|
|
1677
|
-
"default": "''",
|
|
1678
|
-
"description": "Initial search text, for uncontrolled usage — seeds the internally tracked value.",
|
|
1679
|
-
"fieldName": "defaultSearchValue"
|
|
1680
|
-
},
|
|
1681
|
-
{
|
|
1682
|
-
"name": "clear-search-label",
|
|
1683
|
-
"type": {
|
|
1684
|
-
"text": "string"
|
|
1685
|
-
},
|
|
1686
|
-
"default": "'Clear search'",
|
|
1687
|
-
"description": "Accessible name of the search field's clear button.",
|
|
1688
|
-
"fieldName": "clearSearchLabel"
|
|
1689
|
-
},
|
|
1690
|
-
{
|
|
1691
|
-
"name": "active-filters-label",
|
|
1692
|
-
"type": {
|
|
1693
|
-
"text": "string"
|
|
1694
|
-
},
|
|
1695
|
-
"default": "'Active filters'",
|
|
1696
|
-
"description": "Accessible name of the active-filters tag list.",
|
|
1697
|
-
"fieldName": "activeFiltersLabel"
|
|
1698
|
-
},
|
|
1699
|
-
{
|
|
1700
|
-
"name": "clear-label",
|
|
1701
|
-
"type": {
|
|
1702
|
-
"text": "string"
|
|
1703
|
-
},
|
|
1704
|
-
"default": "'Clear filters'",
|
|
1705
|
-
"description": "Text rendered on the clear-filters button.",
|
|
1706
|
-
"fieldName": "clearLabel"
|
|
1707
|
-
}
|
|
1708
|
-
],
|
|
1709
|
-
"superclass": {
|
|
1710
|
-
"name": "LitElement",
|
|
1711
|
-
"package": "lit"
|
|
1712
|
-
},
|
|
1713
|
-
"tagName": "skdx-filter-bar",
|
|
1714
|
-
"customElement": true
|
|
1715
|
-
}
|
|
1716
|
-
],
|
|
1717
|
-
"exports": [
|
|
1718
|
-
{
|
|
1719
|
-
"kind": "js",
|
|
1720
|
-
"name": "SkdxFilterBar",
|
|
1721
|
-
"declaration": {
|
|
1722
|
-
"name": "SkdxFilterBar",
|
|
1723
|
-
"module": "src/filter-bar/FilterBar.ts"
|
|
1724
|
-
}
|
|
1725
|
-
},
|
|
1726
|
-
{
|
|
1727
|
-
"kind": "custom-element-definition",
|
|
1728
|
-
"name": "skdx-filter-bar",
|
|
1729
|
-
"declaration": {
|
|
1730
|
-
"name": "SkdxFilterBar",
|
|
1731
|
-
"module": "src/filter-bar/FilterBar.ts"
|
|
1732
|
-
}
|
|
1733
|
-
}
|
|
1734
|
-
]
|
|
1735
|
-
},
|
|
1736
|
-
{
|
|
1737
|
-
"kind": "javascript-module",
|
|
1738
|
-
"path": "src/filter-bar/index.ts",
|
|
1739
|
-
"declarations": [],
|
|
1740
|
-
"exports": [
|
|
1741
|
-
{
|
|
1742
|
-
"kind": "js",
|
|
1743
|
-
"name": "SkdxFilterBar",
|
|
1744
|
-
"declaration": {
|
|
1745
|
-
"name": "SkdxFilterBar",
|
|
1746
|
-
"module": "./FilterBar"
|
|
1747
|
-
}
|
|
1748
|
-
},
|
|
1749
|
-
{
|
|
1750
|
-
"kind": "js",
|
|
1751
|
-
"name": "SkdxFilterBarFilter",
|
|
1752
|
-
"declaration": {
|
|
1753
|
-
"name": "SkdxFilterBarFilter",
|
|
1754
|
-
"module": "./FilterBar"
|
|
1755
|
-
}
|
|
1756
|
-
}
|
|
1757
|
-
]
|
|
1758
|
-
},
|
|
1759
|
-
{
|
|
1760
|
-
"kind": "javascript-module",
|
|
1761
|
-
"path": "src/chat-composer/ChatComposer.ts",
|
|
1762
|
-
"declarations": [
|
|
1763
|
-
{
|
|
1764
|
-
"kind": "class",
|
|
1765
|
-
"description": "Message composer block: an auto-growing Textarea and a send Button inside a\nfield, with consumer-supplied attachment, leading, trailing and footer\nregions and configurable Enter-to-send behaviour.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-chat-composer` on the host, then `__attachments`, `__field`,\n`__leading`, `__textarea`, `__trailing`, `__send` and `__footer`.\n`data-state` on the host reads `pending` while a send is in flight.",
|
|
1766
|
-
"name": "SkdxChatComposer",
|
|
1767
|
-
"slots": [
|
|
1768
|
-
{
|
|
1769
|
-
"description": "Controls rendered inside the field before the textarea, such as an attach button.",
|
|
1770
|
-
"name": "leading"
|
|
1771
|
-
},
|
|
1772
|
-
{
|
|
1773
|
-
"description": "Controls rendered inside the field after the textarea, such as a model picker.",
|
|
1774
|
-
"name": "trailing"
|
|
1775
|
-
},
|
|
1776
|
-
{
|
|
1777
|
-
"description": "Attached files or chips rendered in a row above the field.",
|
|
1778
|
-
"name": "attachments"
|
|
1779
|
-
},
|
|
1780
|
-
{
|
|
1781
|
-
"description": "Usage counters or hints rendered in a row below the field.",
|
|
1782
|
-
"name": "footer"
|
|
1783
|
-
},
|
|
1784
|
-
{
|
|
1785
|
-
"description": "Glyph rendered inside the send button in place of its text, making it icon-only.",
|
|
1786
|
-
"name": "send-icon"
|
|
1787
|
-
}
|
|
1788
|
-
],
|
|
1789
|
-
"members": [
|
|
1790
|
-
{
|
|
1791
|
-
"kind": "field",
|
|
1792
|
-
"name": "value",
|
|
1793
|
-
"type": {
|
|
1794
|
-
"text": "string | undefined | undefined"
|
|
1795
|
-
},
|
|
1796
|
-
"description": "Current message text, for controlled usage paired with `value-change`.",
|
|
1797
|
-
"default": "undefined",
|
|
1798
|
-
"attribute": "value"
|
|
1799
|
-
},
|
|
1800
|
-
{
|
|
1801
|
-
"kind": "field",
|
|
1802
|
-
"name": "defaultValue",
|
|
1803
|
-
"type": {
|
|
1804
|
-
"text": "string"
|
|
1805
|
-
},
|
|
1806
|
-
"default": "''",
|
|
1807
|
-
"description": "Initial message text for uncontrolled usage, read only on mount.",
|
|
1808
|
-
"attribute": "default-value"
|
|
1809
|
-
},
|
|
1810
|
-
{
|
|
1811
|
-
"kind": "field",
|
|
1812
|
-
"name": "placeholder",
|
|
1813
|
-
"type": {
|
|
1814
|
-
"text": "string | undefined | undefined"
|
|
1815
|
-
},
|
|
1816
|
-
"description": "Hint text shown in the empty textarea, rendered as the native placeholder.",
|
|
1817
|
-
"default": "undefined",
|
|
1818
|
-
"attribute": "placeholder"
|
|
1819
|
-
},
|
|
1820
|
-
{
|
|
1821
|
-
"kind": "field",
|
|
1822
|
-
"name": "label",
|
|
1823
|
-
"type": {
|
|
1824
|
-
"text": "string"
|
|
1825
|
-
},
|
|
1826
|
-
"default": "'Message'",
|
|
1827
|
-
"description": "Accessible name of the message textarea, read by assistive technology.",
|
|
1828
|
-
"attribute": "label"
|
|
1829
|
-
},
|
|
1830
|
-
{
|
|
1831
|
-
"kind": "field",
|
|
1832
|
-
"name": "sendLabel",
|
|
1833
|
-
"type": {
|
|
1834
|
-
"text": "string"
|
|
1835
|
-
},
|
|
1836
|
-
"default": "'Send'",
|
|
1837
|
-
"description": "Text of the send button, and its accessible name when the `send-icon` slot is filled.",
|
|
1838
|
-
"attribute": "send-label"
|
|
1839
|
-
},
|
|
1840
|
-
{
|
|
1841
|
-
"kind": "field",
|
|
1842
|
-
"name": "submitKey",
|
|
1843
|
-
"type": {
|
|
1844
|
-
"text": "SkdxChatComposerSubmitKey"
|
|
1845
|
-
},
|
|
1846
|
-
"default": "'enter'",
|
|
1847
|
-
"description": "Which key sends from the textarea; the other Enter presses insert a newline.",
|
|
1848
|
-
"attribute": "submit-key"
|
|
1849
|
-
},
|
|
1850
|
-
{
|
|
1851
|
-
"kind": "field",
|
|
1852
|
-
"name": "maxRows",
|
|
1853
|
-
"type": {
|
|
1854
|
-
"text": "number"
|
|
1855
|
-
},
|
|
1856
|
-
"default": "8",
|
|
1857
|
-
"description": "Caps how far the auto-growing textarea grows, in rows, before it scrolls.",
|
|
1858
|
-
"attribute": "max-rows"
|
|
1859
|
-
},
|
|
1860
|
-
{
|
|
1861
|
-
"kind": "field",
|
|
1862
|
-
"name": "maxLength",
|
|
1863
|
-
"type": {
|
|
1864
|
-
"text": "number | undefined | undefined"
|
|
1865
|
-
},
|
|
1866
|
-
"description": "Native `maxlength` of the textarea — the longest message it accepts.",
|
|
1867
|
-
"default": "undefined",
|
|
1868
|
-
"attribute": "max-length"
|
|
1869
|
-
},
|
|
1870
|
-
{
|
|
1871
|
-
"kind": "field",
|
|
1872
|
-
"name": "disabled",
|
|
1873
|
-
"type": {
|
|
1874
|
-
"text": "boolean"
|
|
1875
|
-
},
|
|
1876
|
-
"default": "false",
|
|
1877
|
-
"description": "Disables the textarea and the send button, blocking every send path.",
|
|
1878
|
-
"attribute": "disabled"
|
|
1879
|
-
},
|
|
1880
|
-
{
|
|
1881
|
-
"kind": "field",
|
|
1882
|
-
"name": "pending",
|
|
1258
|
+
"name": "renderLeading",
|
|
1883
1259
|
"type": {
|
|
1884
|
-
"text": "
|
|
1260
|
+
"text": "((item: SkdxConversationListItem) => unknown) | undefined | undefined"
|
|
1885
1261
|
},
|
|
1886
|
-
"
|
|
1887
|
-
"
|
|
1888
|
-
"attribute": "pending"
|
|
1262
|
+
"description": "Renders a decorative leading region for one row, such as an avatar or a status dot.",
|
|
1263
|
+
"default": "undefined"
|
|
1889
1264
|
}
|
|
1890
1265
|
],
|
|
1891
1266
|
"events": [
|
|
1892
1267
|
{
|
|
1893
|
-
"description": "Fires with
|
|
1268
|
+
"description": "Fires with `{ value, previousValue, reason }` whenever the selection moves by pointer or keyboard.",
|
|
1894
1269
|
"name": "value-change"
|
|
1895
|
-
},
|
|
1896
|
-
{
|
|
1897
|
-
"description": "Fires with the message text when the send button is activated or the configured submit key is pressed.",
|
|
1898
|
-
"name": "send"
|
|
1899
1270
|
}
|
|
1900
1271
|
],
|
|
1901
1272
|
"attributes": [
|
|
@@ -1904,173 +1275,142 @@
|
|
|
1904
1275
|
"type": {
|
|
1905
1276
|
"text": "string | undefined | undefined"
|
|
1906
1277
|
},
|
|
1907
|
-
"description": "
|
|
1278
|
+
"description": "Selected conversation's id, for controlled usage paired with `value-change`.",
|
|
1908
1279
|
"default": "undefined",
|
|
1909
1280
|
"fieldName": "value"
|
|
1910
1281
|
},
|
|
1911
1282
|
{
|
|
1912
1283
|
"name": "default-value",
|
|
1913
|
-
"type": {
|
|
1914
|
-
"text": "string"
|
|
1915
|
-
},
|
|
1916
|
-
"default": "''",
|
|
1917
|
-
"description": "Initial message text for uncontrolled usage, read only on mount.",
|
|
1918
|
-
"fieldName": "defaultValue"
|
|
1919
|
-
},
|
|
1920
|
-
{
|
|
1921
|
-
"name": "placeholder",
|
|
1922
1284
|
"type": {
|
|
1923
1285
|
"text": "string | undefined | undefined"
|
|
1924
1286
|
},
|
|
1925
|
-
"description": "
|
|
1287
|
+
"description": "Conversation selected on first render, used only while uncontrolled.",
|
|
1926
1288
|
"default": "undefined",
|
|
1927
|
-
"fieldName": "
|
|
1289
|
+
"fieldName": "defaultValue"
|
|
1928
1290
|
},
|
|
1929
1291
|
{
|
|
1930
1292
|
"name": "label",
|
|
1931
1293
|
"type": {
|
|
1932
1294
|
"text": "string"
|
|
1933
1295
|
},
|
|
1934
|
-
"default": "'
|
|
1935
|
-
"description": "Accessible name of the
|
|
1296
|
+
"default": "'Conversations'",
|
|
1297
|
+
"description": "Accessible name of the derived listbox holding the conversation rows.",
|
|
1936
1298
|
"fieldName": "label"
|
|
1937
1299
|
},
|
|
1938
1300
|
{
|
|
1939
|
-
"name": "
|
|
1301
|
+
"name": "unread-label",
|
|
1940
1302
|
"type": {
|
|
1941
1303
|
"text": "string"
|
|
1942
1304
|
},
|
|
1943
|
-
"default": "'
|
|
1944
|
-
"description": "
|
|
1945
|
-
"fieldName": "
|
|
1946
|
-
},
|
|
1947
|
-
{
|
|
1948
|
-
"name": "submit-key",
|
|
1949
|
-
"type": {
|
|
1950
|
-
"text": "SkdxChatComposerSubmitKey"
|
|
1951
|
-
},
|
|
1952
|
-
"default": "'enter'",
|
|
1953
|
-
"description": "Which key sends from the textarea; the other Enter presses insert a newline.",
|
|
1954
|
-
"fieldName": "submitKey"
|
|
1955
|
-
},
|
|
1956
|
-
{
|
|
1957
|
-
"name": "max-rows",
|
|
1958
|
-
"type": {
|
|
1959
|
-
"text": "number"
|
|
1960
|
-
},
|
|
1961
|
-
"default": "8",
|
|
1962
|
-
"description": "Caps how far the auto-growing textarea grows, in rows, before it scrolls.",
|
|
1963
|
-
"fieldName": "maxRows"
|
|
1305
|
+
"default": "'Unread'",
|
|
1306
|
+
"description": "Visually hidden text appended to an unread row's title, so the mark is spoken.",
|
|
1307
|
+
"fieldName": "unreadLabel"
|
|
1964
1308
|
},
|
|
1965
1309
|
{
|
|
1966
|
-
"name": "
|
|
1310
|
+
"name": "empty-title",
|
|
1967
1311
|
"type": {
|
|
1968
|
-
"text": "
|
|
1312
|
+
"text": "string"
|
|
1969
1313
|
},
|
|
1970
|
-
"
|
|
1971
|
-
"
|
|
1972
|
-
"fieldName": "
|
|
1314
|
+
"default": "'No conversations'",
|
|
1315
|
+
"description": "Heading of the derived EmptyState shown when there is nothing to list.",
|
|
1316
|
+
"fieldName": "emptyTitle"
|
|
1973
1317
|
},
|
|
1974
1318
|
{
|
|
1975
|
-
"name": "
|
|
1319
|
+
"name": "empty-description",
|
|
1976
1320
|
"type": {
|
|
1977
|
-
"text": "
|
|
1321
|
+
"text": "string | undefined | undefined"
|
|
1978
1322
|
},
|
|
1979
|
-
"
|
|
1980
|
-
"
|
|
1981
|
-
"fieldName": "
|
|
1323
|
+
"description": "Supporting copy under the empty state's heading, explaining the gap.",
|
|
1324
|
+
"default": "undefined",
|
|
1325
|
+
"fieldName": "emptyDescription"
|
|
1982
1326
|
},
|
|
1983
1327
|
{
|
|
1984
|
-
"name": "
|
|
1328
|
+
"name": "loading",
|
|
1985
1329
|
"type": {
|
|
1986
1330
|
"text": "boolean"
|
|
1987
1331
|
},
|
|
1988
1332
|
"default": "false",
|
|
1989
|
-
"description": "
|
|
1990
|
-
"fieldName": "
|
|
1333
|
+
"description": "Replaces the rows with decorative placeholder lines and marks the host `aria-busy`.",
|
|
1334
|
+
"fieldName": "loading"
|
|
1991
1335
|
}
|
|
1992
1336
|
],
|
|
1993
1337
|
"superclass": {
|
|
1994
1338
|
"name": "LitElement",
|
|
1995
1339
|
"package": "lit"
|
|
1996
1340
|
},
|
|
1997
|
-
"tagName": "skdx-
|
|
1341
|
+
"tagName": "skdx-conversation-list",
|
|
1998
1342
|
"customElement": true
|
|
1999
1343
|
}
|
|
2000
1344
|
],
|
|
2001
1345
|
"exports": [
|
|
2002
1346
|
{
|
|
2003
1347
|
"kind": "js",
|
|
2004
|
-
"name": "
|
|
1348
|
+
"name": "SkdxConversationList",
|
|
2005
1349
|
"declaration": {
|
|
2006
|
-
"name": "
|
|
2007
|
-
"module": "src/
|
|
1350
|
+
"name": "SkdxConversationList",
|
|
1351
|
+
"module": "src/conversation-list/ConversationList.ts"
|
|
2008
1352
|
}
|
|
2009
1353
|
},
|
|
2010
1354
|
{
|
|
2011
1355
|
"kind": "custom-element-definition",
|
|
2012
|
-
"name": "skdx-
|
|
1356
|
+
"name": "skdx-conversation-list",
|
|
2013
1357
|
"declaration": {
|
|
2014
|
-
"name": "
|
|
2015
|
-
"module": "src/
|
|
1358
|
+
"name": "SkdxConversationList",
|
|
1359
|
+
"module": "src/conversation-list/ConversationList.ts"
|
|
2016
1360
|
}
|
|
2017
1361
|
}
|
|
2018
1362
|
]
|
|
2019
1363
|
},
|
|
2020
1364
|
{
|
|
2021
1365
|
"kind": "javascript-module",
|
|
2022
|
-
"path": "src/
|
|
1366
|
+
"path": "src/conversation-list/index.ts",
|
|
2023
1367
|
"declarations": [],
|
|
2024
1368
|
"exports": [
|
|
2025
1369
|
{
|
|
2026
1370
|
"kind": "js",
|
|
2027
|
-
"name": "
|
|
2028
|
-
"declaration": {
|
|
2029
|
-
"name": "SkdxChatComposer",
|
|
2030
|
-
"module": "./ChatComposer"
|
|
2031
|
-
}
|
|
2032
|
-
},
|
|
2033
|
-
{
|
|
2034
|
-
"kind": "js",
|
|
2035
|
-
"name": "SkdxChatComposerSendDetail",
|
|
1371
|
+
"name": "SkdxConversationList",
|
|
2036
1372
|
"declaration": {
|
|
2037
|
-
"name": "
|
|
2038
|
-
"module": "./
|
|
1373
|
+
"name": "SkdxConversationList",
|
|
1374
|
+
"module": "./ConversationList"
|
|
2039
1375
|
}
|
|
2040
1376
|
},
|
|
2041
1377
|
{
|
|
2042
1378
|
"kind": "js",
|
|
2043
|
-
"name": "
|
|
1379
|
+
"name": "SkdxConversationListItem",
|
|
2044
1380
|
"declaration": {
|
|
2045
|
-
"name": "
|
|
2046
|
-
"module": "./
|
|
1381
|
+
"name": "SkdxConversationListItem",
|
|
1382
|
+
"module": "./ConversationList"
|
|
2047
1383
|
}
|
|
2048
1384
|
},
|
|
2049
1385
|
{
|
|
2050
1386
|
"kind": "js",
|
|
2051
|
-
"name": "
|
|
1387
|
+
"name": "SkdxConversationListValueChangeDetail",
|
|
2052
1388
|
"declaration": {
|
|
2053
|
-
"name": "
|
|
2054
|
-
"module": "./
|
|
1389
|
+
"name": "SkdxConversationListValueChangeDetail",
|
|
1390
|
+
"module": "./ConversationList"
|
|
2055
1391
|
}
|
|
2056
1392
|
}
|
|
2057
1393
|
]
|
|
2058
1394
|
},
|
|
2059
1395
|
{
|
|
2060
1396
|
"kind": "javascript-module",
|
|
2061
|
-
"path": "src/
|
|
1397
|
+
"path": "src/dashboard-layout/DashboardLayout.ts",
|
|
2062
1398
|
"declarations": [
|
|
2063
1399
|
{
|
|
2064
1400
|
"kind": "class",
|
|
2065
|
-
"description": "
|
|
2066
|
-
"name": "
|
|
1401
|
+
"description": "Application shell block: an app bar, a collapsible side navigation and the content region.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-dashboard-layout` on the host, then `__app-bar`,\n`__nav-toggle`, `__branding`, `__title`, `__actions`, `__body`, `__nav`,\n`__nav-list`, `__nav-item`, `__nav-header`, `__nav-divider` and `__content`.\n`data-nav-open` sits on the host while the navigation is shown.",
|
|
1402
|
+
"name": "SkdxDashboardLayout",
|
|
2067
1403
|
"slots": [
|
|
2068
1404
|
{
|
|
2069
|
-
"description": "The
|
|
1405
|
+
"description": "The page content rendered inside the `<main>` region.",
|
|
2070
1406
|
"name": ""
|
|
2071
1407
|
},
|
|
2072
1408
|
{
|
|
2073
|
-
"description": "
|
|
1409
|
+
"description": "Logo or product mark at the start of the app bar.",
|
|
1410
|
+
"name": "branding"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"description": "Controls at the end of the app bar.",
|
|
2074
1414
|
"name": "actions"
|
|
2075
1415
|
}
|
|
2076
1416
|
],
|
|
@@ -2081,39 +1421,64 @@
|
|
|
2081
1421
|
"type": {
|
|
2082
1422
|
"text": "string"
|
|
2083
1423
|
},
|
|
2084
|
-
"
|
|
2085
|
-
"
|
|
1424
|
+
"default": "''",
|
|
1425
|
+
"description": "Application title shown in the app bar after the branding, shadowing the native tooltip attribute.",
|
|
1426
|
+
"attribute": "title"
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
"kind": "field",
|
|
1430
|
+
"name": "navigation",
|
|
1431
|
+
"type": {
|
|
1432
|
+
"text": "readonly SkdxDashboardNavigationItem[]"
|
|
1433
|
+
},
|
|
1434
|
+
"description": "The side navigation, one entry per row, nested through each entry's `children`.",
|
|
2086
1435
|
"required": true
|
|
2087
1436
|
},
|
|
2088
1437
|
{
|
|
2089
1438
|
"kind": "field",
|
|
2090
|
-
"name": "
|
|
1439
|
+
"name": "navOpen",
|
|
2091
1440
|
"type": {
|
|
2092
|
-
"text": "
|
|
1441
|
+
"text": "boolean | undefined"
|
|
2093
1442
|
},
|
|
2094
|
-
"description": "
|
|
1443
|
+
"description": "Whether the side navigation is shown, for controlled usage.",
|
|
2095
1444
|
"default": "undefined",
|
|
2096
|
-
"attribute": "
|
|
1445
|
+
"attribute": "nav-open"
|
|
2097
1446
|
},
|
|
2098
1447
|
{
|
|
2099
1448
|
"kind": "field",
|
|
2100
|
-
"name": "
|
|
1449
|
+
"name": "defaultNavOpen",
|
|
2101
1450
|
"type": {
|
|
2102
|
-
"text": "
|
|
1451
|
+
"text": "boolean"
|
|
2103
1452
|
},
|
|
2104
|
-
"default": "
|
|
2105
|
-
"description": "
|
|
2106
|
-
"attribute": "
|
|
1453
|
+
"default": "true",
|
|
1454
|
+
"description": "Whether the side navigation starts shown, for uncontrolled usage.",
|
|
1455
|
+
"attribute": "default-nav-open"
|
|
2107
1456
|
},
|
|
2108
1457
|
{
|
|
2109
1458
|
"kind": "field",
|
|
2110
|
-
"name": "
|
|
1459
|
+
"name": "navLabel",
|
|
2111
1460
|
"type": {
|
|
2112
|
-
"text": "
|
|
1461
|
+
"text": "string"
|
|
2113
1462
|
},
|
|
2114
|
-
"
|
|
2115
|
-
"
|
|
2116
|
-
"attribute": "
|
|
1463
|
+
"default": "'Main navigation'",
|
|
1464
|
+
"description": "Accessible name of the side navigation landmark.",
|
|
1465
|
+
"attribute": "nav-label"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"kind": "field",
|
|
1469
|
+
"name": "navToggleLabel",
|
|
1470
|
+
"type": {
|
|
1471
|
+
"text": "string"
|
|
1472
|
+
},
|
|
1473
|
+
"default": "'Toggle navigation'",
|
|
1474
|
+
"description": "Accessible name of the icon-only button that shows and hides the navigation.",
|
|
1475
|
+
"attribute": "nav-toggle-label"
|
|
1476
|
+
}
|
|
1477
|
+
],
|
|
1478
|
+
"events": [
|
|
1479
|
+
{
|
|
1480
|
+
"description": "Fires with the new open state whenever the navigation toggle is activated.",
|
|
1481
|
+
"name": "nav-open-change"
|
|
2117
1482
|
}
|
|
2118
1483
|
],
|
|
2119
1484
|
"attributes": [
|
|
@@ -2122,501 +1487,503 @@
|
|
|
2122
1487
|
"type": {
|
|
2123
1488
|
"text": "string"
|
|
2124
1489
|
},
|
|
2125
|
-
"
|
|
2126
|
-
"
|
|
2127
|
-
"
|
|
1490
|
+
"default": "''",
|
|
1491
|
+
"description": "Application title shown in the app bar after the branding, shadowing the native tooltip attribute.",
|
|
1492
|
+
"fieldName": "title"
|
|
2128
1493
|
},
|
|
2129
1494
|
{
|
|
2130
|
-
"name": "
|
|
1495
|
+
"name": "nav-open",
|
|
2131
1496
|
"type": {
|
|
2132
|
-
"text": "
|
|
1497
|
+
"text": "boolean | undefined"
|
|
2133
1498
|
},
|
|
2134
|
-
"description": "
|
|
1499
|
+
"description": "Whether the side navigation is shown, for controlled usage.",
|
|
2135
1500
|
"default": "undefined",
|
|
2136
|
-
"fieldName": "
|
|
1501
|
+
"fieldName": "navOpen"
|
|
2137
1502
|
},
|
|
2138
1503
|
{
|
|
2139
|
-
"name": "
|
|
1504
|
+
"name": "default-nav-open",
|
|
2140
1505
|
"type": {
|
|
2141
|
-
"text": "
|
|
1506
|
+
"text": "boolean"
|
|
2142
1507
|
},
|
|
2143
|
-
"default": "
|
|
2144
|
-
"description": "
|
|
2145
|
-
"fieldName": "
|
|
1508
|
+
"default": "true",
|
|
1509
|
+
"description": "Whether the side navigation starts shown, for uncontrolled usage.",
|
|
1510
|
+
"fieldName": "defaultNavOpen"
|
|
2146
1511
|
},
|
|
2147
1512
|
{
|
|
2148
|
-
"name": "
|
|
1513
|
+
"name": "nav-label",
|
|
2149
1514
|
"type": {
|
|
2150
|
-
"text": "
|
|
1515
|
+
"text": "string"
|
|
2151
1516
|
},
|
|
2152
|
-
"
|
|
2153
|
-
"
|
|
2154
|
-
"fieldName": "
|
|
1517
|
+
"default": "'Main navigation'",
|
|
1518
|
+
"description": "Accessible name of the side navigation landmark.",
|
|
1519
|
+
"fieldName": "navLabel"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"name": "nav-toggle-label",
|
|
1523
|
+
"type": {
|
|
1524
|
+
"text": "string"
|
|
1525
|
+
},
|
|
1526
|
+
"default": "'Toggle navigation'",
|
|
1527
|
+
"description": "Accessible name of the icon-only button that shows and hides the navigation.",
|
|
1528
|
+
"fieldName": "navToggleLabel"
|
|
2155
1529
|
}
|
|
2156
1530
|
],
|
|
2157
1531
|
"superclass": {
|
|
2158
1532
|
"name": "LitElement",
|
|
2159
1533
|
"package": "lit"
|
|
2160
1534
|
},
|
|
2161
|
-
"tagName": "skdx-
|
|
1535
|
+
"tagName": "skdx-dashboard-layout",
|
|
2162
1536
|
"customElement": true
|
|
2163
1537
|
}
|
|
2164
1538
|
],
|
|
2165
1539
|
"exports": [
|
|
2166
1540
|
{
|
|
2167
1541
|
"kind": "js",
|
|
2168
|
-
"name": "
|
|
1542
|
+
"name": "SkdxDashboardLayout",
|
|
2169
1543
|
"declaration": {
|
|
2170
|
-
"name": "
|
|
2171
|
-
"module": "src/
|
|
1544
|
+
"name": "SkdxDashboardLayout",
|
|
1545
|
+
"module": "src/dashboard-layout/DashboardLayout.ts"
|
|
2172
1546
|
}
|
|
2173
1547
|
},
|
|
2174
1548
|
{
|
|
2175
1549
|
"kind": "custom-element-definition",
|
|
2176
|
-
"name": "skdx-
|
|
1550
|
+
"name": "skdx-dashboard-layout",
|
|
2177
1551
|
"declaration": {
|
|
2178
|
-
"name": "
|
|
2179
|
-
"module": "src/
|
|
1552
|
+
"name": "SkdxDashboardLayout",
|
|
1553
|
+
"module": "src/dashboard-layout/DashboardLayout.ts"
|
|
2180
1554
|
}
|
|
2181
1555
|
}
|
|
2182
1556
|
]
|
|
2183
1557
|
},
|
|
2184
1558
|
{
|
|
2185
1559
|
"kind": "javascript-module",
|
|
2186
|
-
"path": "src/
|
|
1560
|
+
"path": "src/dashboard-layout/index.ts",
|
|
2187
1561
|
"declarations": [],
|
|
2188
1562
|
"exports": [
|
|
2189
1563
|
{
|
|
2190
1564
|
"kind": "js",
|
|
2191
|
-
"name": "
|
|
1565
|
+
"name": "SkdxDashboardLayout",
|
|
2192
1566
|
"declaration": {
|
|
2193
|
-
"name": "
|
|
2194
|
-
"module": "./
|
|
1567
|
+
"name": "SkdxDashboardLayout",
|
|
1568
|
+
"module": "./DashboardLayout"
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"kind": "js",
|
|
1573
|
+
"name": "SkdxDashboardNavigationItem",
|
|
1574
|
+
"declaration": {
|
|
1575
|
+
"name": "SkdxDashboardNavigationItem",
|
|
1576
|
+
"module": "./DashboardLayout"
|
|
2195
1577
|
}
|
|
2196
1578
|
}
|
|
2197
1579
|
]
|
|
2198
1580
|
},
|
|
2199
1581
|
{
|
|
2200
1582
|
"kind": "javascript-module",
|
|
2201
|
-
"path": "src/
|
|
1583
|
+
"path": "src/empty-state/EmptyState.ts",
|
|
2202
1584
|
"declarations": [
|
|
2203
1585
|
{
|
|
2204
1586
|
"kind": "class",
|
|
2205
|
-
"description": "
|
|
2206
|
-
"name": "
|
|
2207
|
-
"
|
|
2208
|
-
{
|
|
2209
|
-
"kind": "field",
|
|
2210
|
-
"name": "items",
|
|
2211
|
-
"type": {
|
|
2212
|
-
"text": "readonly SkdxConversationListItem[]"
|
|
2213
|
-
},
|
|
2214
|
-
"description": "The conversations to render, in order, each one a selectable option keyed by its id.",
|
|
2215
|
-
"required": true
|
|
2216
|
-
},
|
|
2217
|
-
{
|
|
2218
|
-
"kind": "field",
|
|
2219
|
-
"name": "value",
|
|
2220
|
-
"type": {
|
|
2221
|
-
"text": "string | undefined | undefined"
|
|
2222
|
-
},
|
|
2223
|
-
"description": "Selected conversation's id, for controlled usage paired with `value-change`.",
|
|
2224
|
-
"default": "undefined",
|
|
2225
|
-
"attribute": "value"
|
|
2226
|
-
},
|
|
2227
|
-
{
|
|
2228
|
-
"kind": "field",
|
|
2229
|
-
"name": "defaultValue",
|
|
2230
|
-
"type": {
|
|
2231
|
-
"text": "string | undefined | undefined"
|
|
2232
|
-
},
|
|
2233
|
-
"description": "Conversation selected on first render, used only while uncontrolled.",
|
|
2234
|
-
"default": "undefined",
|
|
2235
|
-
"attribute": "default-value"
|
|
2236
|
-
},
|
|
2237
|
-
{
|
|
2238
|
-
"kind": "field",
|
|
2239
|
-
"name": "label",
|
|
2240
|
-
"type": {
|
|
2241
|
-
"text": "string"
|
|
2242
|
-
},
|
|
2243
|
-
"default": "'Conversations'",
|
|
2244
|
-
"description": "Accessible name of the derived listbox holding the conversation rows.",
|
|
2245
|
-
"attribute": "label"
|
|
2246
|
-
},
|
|
1587
|
+
"description": "Placeholder block for a region with nothing to show — no content yet, no\nresults, first use, or disconnected — composing a Heading, a Text\ndescription and consumer-supplied icon and actions.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-empty-state` on the host, then `__icon`, `__title`,\n`__description`, `__content` and `__actions`. `data-size` and `data-align`\nsit on the host for the skin to read.",
|
|
1588
|
+
"name": "SkdxEmptyState",
|
|
1589
|
+
"slots": [
|
|
2247
1590
|
{
|
|
2248
|
-
"
|
|
2249
|
-
"name": "
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
"
|
|
2254
|
-
"description": "Visually hidden text appended to an unread row's title, so the mark is spoken.",
|
|
2255
|
-
"attribute": "unread-label"
|
|
1591
|
+
"description": "Extra content rendered between the description and the actions region.",
|
|
1592
|
+
"name": ""
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"description": "Decorative illustration or glyph rendered above the title.",
|
|
1596
|
+
"name": "icon"
|
|
2256
1597
|
},
|
|
1598
|
+
{
|
|
1599
|
+
"description": "Primary and secondary controls rendered below the content.",
|
|
1600
|
+
"name": "actions"
|
|
1601
|
+
}
|
|
1602
|
+
],
|
|
1603
|
+
"members": [
|
|
2257
1604
|
{
|
|
2258
1605
|
"kind": "field",
|
|
2259
|
-
"name": "
|
|
1606
|
+
"name": "title",
|
|
2260
1607
|
"type": {
|
|
2261
1608
|
"text": "string"
|
|
2262
1609
|
},
|
|
2263
|
-
"
|
|
2264
|
-
"
|
|
2265
|
-
"
|
|
1610
|
+
"description": "Heading text naming the empty region, rendered into a derived Heading.",
|
|
1611
|
+
"attribute": "title",
|
|
1612
|
+
"required": true
|
|
2266
1613
|
},
|
|
2267
1614
|
{
|
|
2268
1615
|
"kind": "field",
|
|
2269
|
-
"name": "
|
|
1616
|
+
"name": "description",
|
|
2270
1617
|
"type": {
|
|
2271
1618
|
"text": "string | undefined | undefined"
|
|
2272
1619
|
},
|
|
2273
|
-
"description": "Supporting copy
|
|
1620
|
+
"description": "Supporting copy rendered below the title, explaining why the region is empty.",
|
|
2274
1621
|
"default": "undefined",
|
|
2275
|
-
"attribute": "
|
|
1622
|
+
"attribute": "description"
|
|
2276
1623
|
},
|
|
2277
1624
|
{
|
|
2278
1625
|
"kind": "field",
|
|
2279
|
-
"name": "
|
|
1626
|
+
"name": "headingLevel",
|
|
2280
1627
|
"type": {
|
|
2281
|
-
"text": "
|
|
1628
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
2282
1629
|
},
|
|
2283
|
-
"default": "
|
|
2284
|
-
"description": "
|
|
2285
|
-
"attribute": "
|
|
1630
|
+
"default": "3",
|
|
1631
|
+
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
1632
|
+
"attribute": "heading-level"
|
|
2286
1633
|
},
|
|
2287
1634
|
{
|
|
2288
1635
|
"kind": "field",
|
|
2289
|
-
"name": "
|
|
1636
|
+
"name": "size",
|
|
2290
1637
|
"type": {
|
|
2291
|
-
"text": "
|
|
1638
|
+
"text": "'sm' | 'md' | 'lg' | (string & {}) | undefined | undefined"
|
|
2292
1639
|
},
|
|
2293
|
-
"description": "
|
|
2294
|
-
"default": "undefined"
|
|
1640
|
+
"description": "Visual size rung, written to `data-size` on the host; the skin scales the icon, spacing and title by it.",
|
|
1641
|
+
"default": "undefined",
|
|
1642
|
+
"attribute": "size"
|
|
2295
1643
|
},
|
|
2296
1644
|
{
|
|
2297
1645
|
"kind": "field",
|
|
2298
|
-
"name": "
|
|
1646
|
+
"name": "align",
|
|
2299
1647
|
"type": {
|
|
2300
|
-
"text": "
|
|
1648
|
+
"text": "'center' | 'start' | (string & {})"
|
|
2301
1649
|
},
|
|
2302
|
-
"
|
|
2303
|
-
"
|
|
2304
|
-
|
|
2305
|
-
],
|
|
2306
|
-
"events": [
|
|
2307
|
-
{
|
|
2308
|
-
"description": "Fires with `{ value, previousValue, reason }` whenever the selection moves by pointer or keyboard.",
|
|
2309
|
-
"name": "value-change"
|
|
1650
|
+
"default": "'center'",
|
|
1651
|
+
"description": "Text and content alignment rung, written to `data-align` on the host.",
|
|
1652
|
+
"attribute": "align"
|
|
2310
1653
|
}
|
|
2311
1654
|
],
|
|
2312
1655
|
"attributes": [
|
|
2313
1656
|
{
|
|
2314
|
-
"name": "
|
|
1657
|
+
"name": "title",
|
|
2315
1658
|
"type": {
|
|
2316
|
-
"text": "string
|
|
1659
|
+
"text": "string"
|
|
2317
1660
|
},
|
|
2318
|
-
"description": "
|
|
2319
|
-
"
|
|
2320
|
-
"
|
|
1661
|
+
"description": "Heading text naming the empty region, rendered into a derived Heading.",
|
|
1662
|
+
"fieldName": "title",
|
|
1663
|
+
"required": true
|
|
2321
1664
|
},
|
|
2322
1665
|
{
|
|
2323
|
-
"name": "
|
|
1666
|
+
"name": "description",
|
|
2324
1667
|
"type": {
|
|
2325
1668
|
"text": "string | undefined | undefined"
|
|
2326
1669
|
},
|
|
2327
|
-
"description": "
|
|
1670
|
+
"description": "Supporting copy rendered below the title, explaining why the region is empty.",
|
|
2328
1671
|
"default": "undefined",
|
|
2329
|
-
"fieldName": "
|
|
2330
|
-
},
|
|
2331
|
-
{
|
|
2332
|
-
"name": "label",
|
|
2333
|
-
"type": {
|
|
2334
|
-
"text": "string"
|
|
2335
|
-
},
|
|
2336
|
-
"default": "'Conversations'",
|
|
2337
|
-
"description": "Accessible name of the derived listbox holding the conversation rows.",
|
|
2338
|
-
"fieldName": "label"
|
|
2339
|
-
},
|
|
2340
|
-
{
|
|
2341
|
-
"name": "unread-label",
|
|
2342
|
-
"type": {
|
|
2343
|
-
"text": "string"
|
|
2344
|
-
},
|
|
2345
|
-
"default": "'Unread'",
|
|
2346
|
-
"description": "Visually hidden text appended to an unread row's title, so the mark is spoken.",
|
|
2347
|
-
"fieldName": "unreadLabel"
|
|
1672
|
+
"fieldName": "description"
|
|
2348
1673
|
},
|
|
2349
1674
|
{
|
|
2350
|
-
"name": "
|
|
1675
|
+
"name": "heading-level",
|
|
2351
1676
|
"type": {
|
|
2352
|
-
"text": "
|
|
1677
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
2353
1678
|
},
|
|
2354
|
-
"default": "
|
|
2355
|
-
"description": "
|
|
2356
|
-
"fieldName": "
|
|
1679
|
+
"default": "3",
|
|
1680
|
+
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
1681
|
+
"fieldName": "headingLevel"
|
|
2357
1682
|
},
|
|
2358
1683
|
{
|
|
2359
|
-
"name": "
|
|
1684
|
+
"name": "size",
|
|
2360
1685
|
"type": {
|
|
2361
|
-
"text": "string | undefined | undefined"
|
|
1686
|
+
"text": "'sm' | 'md' | 'lg' | (string & {}) | undefined | undefined"
|
|
2362
1687
|
},
|
|
2363
|
-
"description": "
|
|
1688
|
+
"description": "Visual size rung, written to `data-size` on the host; the skin scales the icon, spacing and title by it.",
|
|
2364
1689
|
"default": "undefined",
|
|
2365
|
-
"fieldName": "
|
|
1690
|
+
"fieldName": "size"
|
|
2366
1691
|
},
|
|
2367
1692
|
{
|
|
2368
|
-
"name": "
|
|
1693
|
+
"name": "align",
|
|
2369
1694
|
"type": {
|
|
2370
|
-
"text": "
|
|
1695
|
+
"text": "'center' | 'start' | (string & {})"
|
|
2371
1696
|
},
|
|
2372
|
-
"default": "
|
|
2373
|
-
"description": "
|
|
2374
|
-
"fieldName": "
|
|
1697
|
+
"default": "'center'",
|
|
1698
|
+
"description": "Text and content alignment rung, written to `data-align` on the host.",
|
|
1699
|
+
"fieldName": "align"
|
|
2375
1700
|
}
|
|
2376
1701
|
],
|
|
2377
1702
|
"superclass": {
|
|
2378
1703
|
"name": "LitElement",
|
|
2379
1704
|
"package": "lit"
|
|
2380
1705
|
},
|
|
2381
|
-
"tagName": "skdx-
|
|
1706
|
+
"tagName": "skdx-empty-state",
|
|
2382
1707
|
"customElement": true
|
|
2383
1708
|
}
|
|
2384
1709
|
],
|
|
2385
1710
|
"exports": [
|
|
2386
1711
|
{
|
|
2387
1712
|
"kind": "js",
|
|
2388
|
-
"name": "
|
|
1713
|
+
"name": "SkdxEmptyState",
|
|
2389
1714
|
"declaration": {
|
|
2390
|
-
"name": "
|
|
2391
|
-
"module": "src/
|
|
1715
|
+
"name": "SkdxEmptyState",
|
|
1716
|
+
"module": "src/empty-state/EmptyState.ts"
|
|
2392
1717
|
}
|
|
2393
1718
|
},
|
|
2394
1719
|
{
|
|
2395
1720
|
"kind": "custom-element-definition",
|
|
2396
|
-
"name": "skdx-
|
|
1721
|
+
"name": "skdx-empty-state",
|
|
2397
1722
|
"declaration": {
|
|
2398
|
-
"name": "
|
|
2399
|
-
"module": "src/
|
|
1723
|
+
"name": "SkdxEmptyState",
|
|
1724
|
+
"module": "src/empty-state/EmptyState.ts"
|
|
2400
1725
|
}
|
|
2401
1726
|
}
|
|
2402
1727
|
]
|
|
2403
1728
|
},
|
|
2404
1729
|
{
|
|
2405
1730
|
"kind": "javascript-module",
|
|
2406
|
-
"path": "src/
|
|
1731
|
+
"path": "src/empty-state/index.ts",
|
|
2407
1732
|
"declarations": [],
|
|
2408
1733
|
"exports": [
|
|
2409
1734
|
{
|
|
2410
1735
|
"kind": "js",
|
|
2411
|
-
"name": "
|
|
2412
|
-
"declaration": {
|
|
2413
|
-
"name": "SkdxConversationList",
|
|
2414
|
-
"module": "./ConversationList"
|
|
2415
|
-
}
|
|
2416
|
-
},
|
|
2417
|
-
{
|
|
2418
|
-
"kind": "js",
|
|
2419
|
-
"name": "SkdxConversationListItem",
|
|
2420
|
-
"declaration": {
|
|
2421
|
-
"name": "SkdxConversationListItem",
|
|
2422
|
-
"module": "./ConversationList"
|
|
2423
|
-
}
|
|
2424
|
-
},
|
|
2425
|
-
{
|
|
2426
|
-
"kind": "js",
|
|
2427
|
-
"name": "SkdxConversationListValueChangeDetail",
|
|
1736
|
+
"name": "SkdxEmptyState",
|
|
2428
1737
|
"declaration": {
|
|
2429
|
-
"name": "
|
|
2430
|
-
"module": "./
|
|
1738
|
+
"name": "SkdxEmptyState",
|
|
1739
|
+
"module": "./EmptyState"
|
|
2431
1740
|
}
|
|
2432
1741
|
}
|
|
2433
1742
|
]
|
|
2434
1743
|
},
|
|
2435
1744
|
{
|
|
2436
1745
|
"kind": "javascript-module",
|
|
2437
|
-
"path": "src/
|
|
1746
|
+
"path": "src/filter-bar/FilterBar.ts",
|
|
2438
1747
|
"declarations": [
|
|
2439
1748
|
{
|
|
2440
1749
|
"kind": "class",
|
|
2441
|
-
"description": "
|
|
2442
|
-
"name": "
|
|
1750
|
+
"description": "Filtering surface above a table, list, card grid or report: a search field,\nthe consumer's filter controls, the applied filters as removable tags, and a\nclear action. Composes TextField, TagGroup and Button.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-filter-bar` on the host, then `__search`, `__filters`,\n`__actions`, `__active`, `__tags` and `__clear`.",
|
|
1751
|
+
"name": "SkdxFilterBar",
|
|
1752
|
+
"slots": [
|
|
1753
|
+
{
|
|
1754
|
+
"description": "The consumer's filter controls, laid out in the filters region.",
|
|
1755
|
+
"name": ""
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"description": "Controls rendered at the end of the bar, such as a \"Save view\" button.",
|
|
1759
|
+
"name": "actions"
|
|
1760
|
+
}
|
|
1761
|
+
],
|
|
2443
1762
|
"members": [
|
|
2444
1763
|
{
|
|
2445
1764
|
"kind": "field",
|
|
2446
|
-
"name": "
|
|
1765
|
+
"name": "label",
|
|
2447
1766
|
"type": {
|
|
2448
1767
|
"text": "string"
|
|
2449
1768
|
},
|
|
2450
|
-
"
|
|
2451
|
-
"
|
|
2452
|
-
"
|
|
1769
|
+
"default": "'Filters'",
|
|
1770
|
+
"description": "Accessible name of the root region, written to `aria-label`.",
|
|
1771
|
+
"attribute": "label"
|
|
2453
1772
|
},
|
|
2454
1773
|
{
|
|
2455
1774
|
"kind": "field",
|
|
2456
|
-
"name": "
|
|
1775
|
+
"name": "searchLabel",
|
|
2457
1776
|
"type": {
|
|
2458
1777
|
"text": "string | undefined | undefined"
|
|
2459
1778
|
},
|
|
2460
|
-
"description": "
|
|
1779
|
+
"description": "Accessible name of the search field; providing it renders the search region.",
|
|
2461
1780
|
"default": "undefined",
|
|
2462
|
-
"attribute": "
|
|
1781
|
+
"attribute": "search-label"
|
|
2463
1782
|
},
|
|
2464
1783
|
{
|
|
2465
1784
|
"kind": "field",
|
|
2466
|
-
"name": "
|
|
1785
|
+
"name": "searchPlaceholder",
|
|
2467
1786
|
"type": {
|
|
2468
|
-
"text": "
|
|
1787
|
+
"text": "string | undefined | undefined"
|
|
2469
1788
|
},
|
|
2470
|
-
"
|
|
2471
|
-
"
|
|
2472
|
-
"attribute": "
|
|
1789
|
+
"description": "Placeholder shown in the empty search field.",
|
|
1790
|
+
"default": "undefined",
|
|
1791
|
+
"attribute": "search-placeholder"
|
|
2473
1792
|
},
|
|
2474
1793
|
{
|
|
2475
1794
|
"kind": "field",
|
|
2476
|
-
"name": "
|
|
1795
|
+
"name": "searchValue",
|
|
2477
1796
|
"type": {
|
|
2478
|
-
"text": "
|
|
1797
|
+
"text": "string | undefined | undefined"
|
|
2479
1798
|
},
|
|
2480
|
-
"description": "
|
|
2481
|
-
"
|
|
1799
|
+
"description": "Current search text, for controlled usage; pair it with `search-value-change`.",
|
|
1800
|
+
"default": "undefined",
|
|
1801
|
+
"attribute": "search-value"
|
|
2482
1802
|
},
|
|
2483
1803
|
{
|
|
2484
1804
|
"kind": "field",
|
|
2485
|
-
"name": "
|
|
1805
|
+
"name": "defaultSearchValue",
|
|
2486
1806
|
"type": {
|
|
2487
|
-
"text": "
|
|
1807
|
+
"text": "string"
|
|
2488
1808
|
},
|
|
2489
|
-
"
|
|
2490
|
-
"
|
|
1809
|
+
"default": "''",
|
|
1810
|
+
"description": "Initial search text, for uncontrolled usage — seeds the internally tracked value.",
|
|
1811
|
+
"attribute": "default-search-value"
|
|
2491
1812
|
},
|
|
2492
1813
|
{
|
|
2493
1814
|
"kind": "field",
|
|
2494
|
-
"name": "
|
|
1815
|
+
"name": "clearSearchLabel",
|
|
2495
1816
|
"type": {
|
|
2496
1817
|
"text": "string"
|
|
2497
1818
|
},
|
|
2498
|
-
"default": "'
|
|
2499
|
-
"description": "
|
|
2500
|
-
"attribute": "
|
|
1819
|
+
"default": "'Clear search'",
|
|
1820
|
+
"description": "Accessible name of the search field's clear button.",
|
|
1821
|
+
"attribute": "clear-search-label"
|
|
2501
1822
|
},
|
|
2502
1823
|
{
|
|
2503
1824
|
"kind": "field",
|
|
2504
|
-
"name": "
|
|
1825
|
+
"name": "activeFilters",
|
|
1826
|
+
"type": {
|
|
1827
|
+
"text": "readonly SkdxFilterBarFilter[] | undefined | undefined"
|
|
1828
|
+
},
|
|
1829
|
+
"description": "The applied filters, in display order, rendered as removable tags.",
|
|
1830
|
+
"default": "undefined"
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"kind": "field",
|
|
1834
|
+
"name": "activeFiltersLabel",
|
|
2505
1835
|
"type": {
|
|
2506
1836
|
"text": "string"
|
|
2507
1837
|
},
|
|
2508
|
-
"default": "'
|
|
2509
|
-
"description": "
|
|
2510
|
-
"attribute": "
|
|
1838
|
+
"default": "'Active filters'",
|
|
1839
|
+
"description": "Accessible name of the active-filters tag list.",
|
|
1840
|
+
"attribute": "active-filters-label"
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"kind": "field",
|
|
1844
|
+
"name": "clearLabel",
|
|
1845
|
+
"type": {
|
|
1846
|
+
"text": "string"
|
|
1847
|
+
},
|
|
1848
|
+
"default": "'Clear filters'",
|
|
1849
|
+
"description": "Text rendered on the clear-filters button.",
|
|
1850
|
+
"attribute": "clear-label"
|
|
2511
1851
|
}
|
|
2512
1852
|
],
|
|
2513
1853
|
"events": [
|
|
2514
1854
|
{
|
|
2515
|
-
"description": "Fires
|
|
2516
|
-
"name": "
|
|
1855
|
+
"description": "Fires with the new text whenever the search field changes, controlled or not.",
|
|
1856
|
+
"name": "search-value-change"
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"description": "Fires with the removed filter when its tag's remove control is activated.",
|
|
1860
|
+
"name": "remove-filter"
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"description": "Fires when the clear-filters button is activated while filters are shown.",
|
|
1864
|
+
"name": "clear"
|
|
2517
1865
|
}
|
|
2518
1866
|
],
|
|
2519
1867
|
"attributes": [
|
|
2520
1868
|
{
|
|
2521
|
-
"name": "
|
|
1869
|
+
"name": "label",
|
|
2522
1870
|
"type": {
|
|
2523
1871
|
"text": "string"
|
|
2524
1872
|
},
|
|
2525
|
-
"
|
|
2526
|
-
"
|
|
2527
|
-
"
|
|
1873
|
+
"default": "'Filters'",
|
|
1874
|
+
"description": "Accessible name of the root region, written to `aria-label`.",
|
|
1875
|
+
"fieldName": "label"
|
|
2528
1876
|
},
|
|
2529
1877
|
{
|
|
2530
|
-
"name": "
|
|
1878
|
+
"name": "search-label",
|
|
2531
1879
|
"type": {
|
|
2532
1880
|
"text": "string | undefined | undefined"
|
|
2533
1881
|
},
|
|
2534
|
-
"description": "
|
|
1882
|
+
"description": "Accessible name of the search field; providing it renders the search region.",
|
|
2535
1883
|
"default": "undefined",
|
|
2536
|
-
"fieldName": "
|
|
1884
|
+
"fieldName": "searchLabel"
|
|
2537
1885
|
},
|
|
2538
1886
|
{
|
|
2539
|
-
"name": "
|
|
1887
|
+
"name": "search-placeholder",
|
|
2540
1888
|
"type": {
|
|
2541
|
-
"text": "
|
|
1889
|
+
"text": "string | undefined | undefined"
|
|
2542
1890
|
},
|
|
2543
|
-
"
|
|
2544
|
-
"
|
|
2545
|
-
"fieldName": "
|
|
1891
|
+
"description": "Placeholder shown in the empty search field.",
|
|
1892
|
+
"default": "undefined",
|
|
1893
|
+
"fieldName": "searchPlaceholder"
|
|
2546
1894
|
},
|
|
2547
1895
|
{
|
|
2548
|
-
"name": "
|
|
1896
|
+
"name": "search-value",
|
|
1897
|
+
"type": {
|
|
1898
|
+
"text": "string | undefined | undefined"
|
|
1899
|
+
},
|
|
1900
|
+
"description": "Current search text, for controlled usage; pair it with `search-value-change`.",
|
|
1901
|
+
"default": "undefined",
|
|
1902
|
+
"fieldName": "searchValue"
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
"name": "default-search-value",
|
|
2549
1906
|
"type": {
|
|
2550
1907
|
"text": "string"
|
|
2551
1908
|
},
|
|
2552
|
-
"default": "'
|
|
2553
|
-
"description": "
|
|
2554
|
-
"fieldName": "
|
|
1909
|
+
"default": "''",
|
|
1910
|
+
"description": "Initial search text, for uncontrolled usage — seeds the internally tracked value.",
|
|
1911
|
+
"fieldName": "defaultSearchValue"
|
|
2555
1912
|
},
|
|
2556
1913
|
{
|
|
2557
|
-
"name": "
|
|
1914
|
+
"name": "clear-search-label",
|
|
2558
1915
|
"type": {
|
|
2559
1916
|
"text": "string"
|
|
2560
1917
|
},
|
|
2561
|
-
"default": "'
|
|
2562
|
-
"description": "
|
|
2563
|
-
"fieldName": "
|
|
1918
|
+
"default": "'Clear search'",
|
|
1919
|
+
"description": "Accessible name of the search field's clear button.",
|
|
1920
|
+
"fieldName": "clearSearchLabel"
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"name": "active-filters-label",
|
|
1924
|
+
"type": {
|
|
1925
|
+
"text": "string"
|
|
1926
|
+
},
|
|
1927
|
+
"default": "'Active filters'",
|
|
1928
|
+
"description": "Accessible name of the active-filters tag list.",
|
|
1929
|
+
"fieldName": "activeFiltersLabel"
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
"name": "clear-label",
|
|
1933
|
+
"type": {
|
|
1934
|
+
"text": "string"
|
|
1935
|
+
},
|
|
1936
|
+
"default": "'Clear filters'",
|
|
1937
|
+
"description": "Text rendered on the clear-filters button.",
|
|
1938
|
+
"fieldName": "clearLabel"
|
|
2564
1939
|
}
|
|
2565
1940
|
],
|
|
2566
1941
|
"superclass": {
|
|
2567
1942
|
"name": "LitElement",
|
|
2568
1943
|
"package": "lit"
|
|
2569
1944
|
},
|
|
2570
|
-
"tagName": "skdx-
|
|
1945
|
+
"tagName": "skdx-filter-bar",
|
|
2571
1946
|
"customElement": true
|
|
2572
1947
|
}
|
|
2573
1948
|
],
|
|
2574
1949
|
"exports": [
|
|
2575
1950
|
{
|
|
2576
1951
|
"kind": "js",
|
|
2577
|
-
"name": "
|
|
1952
|
+
"name": "SkdxFilterBar",
|
|
2578
1953
|
"declaration": {
|
|
2579
|
-
"name": "
|
|
2580
|
-
"module": "src/
|
|
1954
|
+
"name": "SkdxFilterBar",
|
|
1955
|
+
"module": "src/filter-bar/FilterBar.ts"
|
|
2581
1956
|
}
|
|
2582
1957
|
},
|
|
2583
1958
|
{
|
|
2584
1959
|
"kind": "custom-element-definition",
|
|
2585
|
-
"name": "skdx-
|
|
1960
|
+
"name": "skdx-filter-bar",
|
|
2586
1961
|
"declaration": {
|
|
2587
|
-
"name": "
|
|
2588
|
-
"module": "src/
|
|
1962
|
+
"name": "SkdxFilterBar",
|
|
1963
|
+
"module": "src/filter-bar/FilterBar.ts"
|
|
2589
1964
|
}
|
|
2590
1965
|
}
|
|
2591
1966
|
]
|
|
2592
1967
|
},
|
|
2593
1968
|
{
|
|
2594
1969
|
"kind": "javascript-module",
|
|
2595
|
-
"path": "src/
|
|
1970
|
+
"path": "src/filter-bar/index.ts",
|
|
2596
1971
|
"declarations": [],
|
|
2597
1972
|
"exports": [
|
|
2598
1973
|
{
|
|
2599
1974
|
"kind": "js",
|
|
2600
|
-
"name": "
|
|
2601
|
-
"declaration": {
|
|
2602
|
-
"name": "SkdxOnboardingChecklist",
|
|
2603
|
-
"module": "./OnboardingChecklist"
|
|
2604
|
-
}
|
|
2605
|
-
},
|
|
2606
|
-
{
|
|
2607
|
-
"kind": "js",
|
|
2608
|
-
"name": "SkdxOnboardingChecklistItem",
|
|
1975
|
+
"name": "SkdxFilterBar",
|
|
2609
1976
|
"declaration": {
|
|
2610
|
-
"name": "
|
|
2611
|
-
"module": "./
|
|
1977
|
+
"name": "SkdxFilterBar",
|
|
1978
|
+
"module": "./FilterBar"
|
|
2612
1979
|
}
|
|
2613
1980
|
},
|
|
2614
1981
|
{
|
|
2615
1982
|
"kind": "js",
|
|
2616
|
-
"name": "
|
|
1983
|
+
"name": "SkdxFilterBarFilter",
|
|
2617
1984
|
"declaration": {
|
|
2618
|
-
"name": "
|
|
2619
|
-
"module": "./
|
|
1985
|
+
"name": "SkdxFilterBarFilter",
|
|
1986
|
+
"module": "./FilterBar"
|
|
2620
1987
|
}
|
|
2621
1988
|
}
|
|
2622
1989
|
]
|
|
@@ -2746,88 +2113,228 @@
|
|
|
2746
2113
|
"fieldName": "error"
|
|
2747
2114
|
},
|
|
2748
2115
|
{
|
|
2749
|
-
"name": "success",
|
|
2116
|
+
"name": "success",
|
|
2117
|
+
"type": {
|
|
2118
|
+
"text": "string | undefined"
|
|
2119
|
+
},
|
|
2120
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
2121
|
+
"default": "undefined",
|
|
2122
|
+
"fieldName": "success"
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"name": "pending",
|
|
2126
|
+
"type": {
|
|
2127
|
+
"text": "boolean"
|
|
2128
|
+
},
|
|
2129
|
+
"default": "false",
|
|
2130
|
+
"description": "Marks the request in flight, making the submit button busy while the email field stays editable.",
|
|
2131
|
+
"fieldName": "pending"
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"name": "email-label",
|
|
2135
|
+
"type": {
|
|
2136
|
+
"text": "string"
|
|
2137
|
+
},
|
|
2138
|
+
"default": "'Email'",
|
|
2139
|
+
"description": "Label of the email field the reset link is requested for.",
|
|
2140
|
+
"fieldName": "emailLabel"
|
|
2141
|
+
},
|
|
2142
|
+
{
|
|
2143
|
+
"name": "submit-label",
|
|
2144
|
+
"type": {
|
|
2145
|
+
"text": "string"
|
|
2146
|
+
},
|
|
2147
|
+
"default": "'Send reset link'",
|
|
2148
|
+
"description": "Text of the form's submit button.",
|
|
2149
|
+
"fieldName": "submitLabel"
|
|
2150
|
+
}
|
|
2151
|
+
],
|
|
2152
|
+
"superclass": {
|
|
2153
|
+
"name": "LitElement",
|
|
2154
|
+
"package": "lit"
|
|
2155
|
+
},
|
|
2156
|
+
"tagName": "skdx-forgot-password-page",
|
|
2157
|
+
"customElement": true
|
|
2158
|
+
}
|
|
2159
|
+
],
|
|
2160
|
+
"exports": [
|
|
2161
|
+
{
|
|
2162
|
+
"kind": "js",
|
|
2163
|
+
"name": "SkdxForgotPasswordPage",
|
|
2164
|
+
"declaration": {
|
|
2165
|
+
"name": "SkdxForgotPasswordPage",
|
|
2166
|
+
"module": "src/forgot-password-page/ForgotPasswordPage.ts"
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"kind": "custom-element-definition",
|
|
2171
|
+
"name": "skdx-forgot-password-page",
|
|
2172
|
+
"declaration": {
|
|
2173
|
+
"name": "SkdxForgotPasswordPage",
|
|
2174
|
+
"module": "src/forgot-password-page/ForgotPasswordPage.ts"
|
|
2175
|
+
}
|
|
2176
|
+
}
|
|
2177
|
+
]
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"kind": "javascript-module",
|
|
2181
|
+
"path": "src/forgot-password-page/index.ts",
|
|
2182
|
+
"declarations": [],
|
|
2183
|
+
"exports": [
|
|
2184
|
+
{
|
|
2185
|
+
"kind": "js",
|
|
2186
|
+
"name": "SkdxForgotPasswordPage",
|
|
2187
|
+
"declaration": {
|
|
2188
|
+
"name": "SkdxForgotPasswordPage",
|
|
2189
|
+
"module": "./ForgotPasswordPage"
|
|
2190
|
+
}
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"kind": "js",
|
|
2194
|
+
"name": "SkdxForgotPasswordDetail",
|
|
2195
|
+
"declaration": {
|
|
2196
|
+
"name": "SkdxForgotPasswordDetail",
|
|
2197
|
+
"module": "./ForgotPasswordPage"
|
|
2198
|
+
}
|
|
2199
|
+
}
|
|
2200
|
+
]
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"kind": "javascript-module",
|
|
2204
|
+
"path": "src/form-section/FormSection.ts",
|
|
2205
|
+
"declarations": [
|
|
2206
|
+
{
|
|
2207
|
+
"kind": "class",
|
|
2208
|
+
"description": "Titled group inside a larger form: a heading, supporting text, the group's\nfields and a footer for the group's own actions, composing Heading and Text\naround consumer-supplied fields.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-form-section` on the host, then `__header`, `__title`,\n`__description`, `__content` and `__footer`. `data-variant` sits on the host\nfor the skin to read.",
|
|
2209
|
+
"name": "SkdxFormSection",
|
|
2210
|
+
"slots": [
|
|
2211
|
+
{
|
|
2212
|
+
"description": "The group's fields, rendered into the content region.",
|
|
2213
|
+
"name": ""
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"description": "Save, cancel or other controls rendered in the footer below the fields.",
|
|
2217
|
+
"name": "actions"
|
|
2218
|
+
}
|
|
2219
|
+
],
|
|
2220
|
+
"members": [
|
|
2221
|
+
{
|
|
2222
|
+
"kind": "field",
|
|
2223
|
+
"name": "title",
|
|
2224
|
+
"type": {
|
|
2225
|
+
"text": "string"
|
|
2226
|
+
},
|
|
2227
|
+
"description": "Heading text naming the group, rendered into a derived Heading that names the section.",
|
|
2228
|
+
"attribute": "title",
|
|
2229
|
+
"required": true
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
"kind": "field",
|
|
2233
|
+
"name": "description",
|
|
2234
|
+
"type": {
|
|
2235
|
+
"text": "string | undefined | undefined"
|
|
2236
|
+
},
|
|
2237
|
+
"description": "Supporting copy rendered below the title, explaining the group's fields.",
|
|
2238
|
+
"default": "undefined",
|
|
2239
|
+
"attribute": "description"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"kind": "field",
|
|
2243
|
+
"name": "headingLevel",
|
|
2244
|
+
"type": {
|
|
2245
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
2246
|
+
},
|
|
2247
|
+
"default": "2",
|
|
2248
|
+
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding form outline.",
|
|
2249
|
+
"attribute": "heading-level"
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
"kind": "field",
|
|
2253
|
+
"name": "variant",
|
|
2254
|
+
"type": {
|
|
2255
|
+
"text": "'bordered' | 'split' | (string & {}) | undefined | undefined"
|
|
2256
|
+
},
|
|
2257
|
+
"description": "Layout rung written to `data-variant`; `bordered` draws a bounded panel and `split` places the header beside the content.",
|
|
2258
|
+
"default": "undefined",
|
|
2259
|
+
"attribute": "variant"
|
|
2260
|
+
}
|
|
2261
|
+
],
|
|
2262
|
+
"attributes": [
|
|
2263
|
+
{
|
|
2264
|
+
"name": "title",
|
|
2750
2265
|
"type": {
|
|
2751
|
-
"text": "string
|
|
2266
|
+
"text": "string"
|
|
2752
2267
|
},
|
|
2753
|
-
"description": "
|
|
2754
|
-
"
|
|
2755
|
-
"
|
|
2268
|
+
"description": "Heading text naming the group, rendered into a derived Heading that names the section.",
|
|
2269
|
+
"fieldName": "title",
|
|
2270
|
+
"required": true
|
|
2756
2271
|
},
|
|
2757
2272
|
{
|
|
2758
|
-
"name": "
|
|
2273
|
+
"name": "description",
|
|
2759
2274
|
"type": {
|
|
2760
|
-
"text": "
|
|
2275
|
+
"text": "string | undefined | undefined"
|
|
2761
2276
|
},
|
|
2762
|
-
"
|
|
2763
|
-
"
|
|
2764
|
-
"fieldName": "
|
|
2277
|
+
"description": "Supporting copy rendered below the title, explaining the group's fields.",
|
|
2278
|
+
"default": "undefined",
|
|
2279
|
+
"fieldName": "description"
|
|
2765
2280
|
},
|
|
2766
2281
|
{
|
|
2767
|
-
"name": "
|
|
2282
|
+
"name": "heading-level",
|
|
2768
2283
|
"type": {
|
|
2769
|
-
"text": "
|
|
2284
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
2770
2285
|
},
|
|
2771
|
-
"default": "
|
|
2772
|
-
"description": "
|
|
2773
|
-
"fieldName": "
|
|
2286
|
+
"default": "2",
|
|
2287
|
+
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding form outline.",
|
|
2288
|
+
"fieldName": "headingLevel"
|
|
2774
2289
|
},
|
|
2775
2290
|
{
|
|
2776
|
-
"name": "
|
|
2291
|
+
"name": "variant",
|
|
2777
2292
|
"type": {
|
|
2778
|
-
"text": "string"
|
|
2293
|
+
"text": "'bordered' | 'split' | (string & {}) | undefined | undefined"
|
|
2779
2294
|
},
|
|
2780
|
-
"
|
|
2781
|
-
"
|
|
2782
|
-
"fieldName": "
|
|
2295
|
+
"description": "Layout rung written to `data-variant`; `bordered` draws a bounded panel and `split` places the header beside the content.",
|
|
2296
|
+
"default": "undefined",
|
|
2297
|
+
"fieldName": "variant"
|
|
2783
2298
|
}
|
|
2784
2299
|
],
|
|
2785
2300
|
"superclass": {
|
|
2786
2301
|
"name": "LitElement",
|
|
2787
2302
|
"package": "lit"
|
|
2788
2303
|
},
|
|
2789
|
-
"tagName": "skdx-
|
|
2304
|
+
"tagName": "skdx-form-section",
|
|
2790
2305
|
"customElement": true
|
|
2791
2306
|
}
|
|
2792
2307
|
],
|
|
2793
2308
|
"exports": [
|
|
2794
2309
|
{
|
|
2795
2310
|
"kind": "js",
|
|
2796
|
-
"name": "
|
|
2311
|
+
"name": "SkdxFormSection",
|
|
2797
2312
|
"declaration": {
|
|
2798
|
-
"name": "
|
|
2799
|
-
"module": "src/
|
|
2313
|
+
"name": "SkdxFormSection",
|
|
2314
|
+
"module": "src/form-section/FormSection.ts"
|
|
2800
2315
|
}
|
|
2801
2316
|
},
|
|
2802
2317
|
{
|
|
2803
2318
|
"kind": "custom-element-definition",
|
|
2804
|
-
"name": "skdx-
|
|
2319
|
+
"name": "skdx-form-section",
|
|
2805
2320
|
"declaration": {
|
|
2806
|
-
"name": "
|
|
2807
|
-
"module": "src/
|
|
2321
|
+
"name": "SkdxFormSection",
|
|
2322
|
+
"module": "src/form-section/FormSection.ts"
|
|
2808
2323
|
}
|
|
2809
2324
|
}
|
|
2810
2325
|
]
|
|
2811
2326
|
},
|
|
2812
2327
|
{
|
|
2813
2328
|
"kind": "javascript-module",
|
|
2814
|
-
"path": "src/
|
|
2329
|
+
"path": "src/form-section/index.ts",
|
|
2815
2330
|
"declarations": [],
|
|
2816
2331
|
"exports": [
|
|
2817
2332
|
{
|
|
2818
2333
|
"kind": "js",
|
|
2819
|
-
"name": "
|
|
2820
|
-
"declaration": {
|
|
2821
|
-
"name": "SkdxForgotPasswordPage",
|
|
2822
|
-
"module": "./ForgotPasswordPage"
|
|
2823
|
-
}
|
|
2824
|
-
},
|
|
2825
|
-
{
|
|
2826
|
-
"kind": "js",
|
|
2827
|
-
"name": "SkdxForgotPasswordDetail",
|
|
2334
|
+
"name": "SkdxFormSection",
|
|
2828
2335
|
"declaration": {
|
|
2829
|
-
"name": "
|
|
2830
|
-
"module": "./
|
|
2336
|
+
"name": "SkdxFormSection",
|
|
2337
|
+
"module": "./FormSection"
|
|
2831
2338
|
}
|
|
2832
2339
|
}
|
|
2833
2340
|
]
|
|
@@ -3161,26 +2668,215 @@
|
|
|
3161
2668
|
},
|
|
3162
2669
|
{
|
|
3163
2670
|
"kind": "js",
|
|
3164
|
-
"name": "SkdxNotificationCenterItem",
|
|
2671
|
+
"name": "SkdxNotificationCenterItem",
|
|
2672
|
+
"declaration": {
|
|
2673
|
+
"name": "SkdxNotificationCenterItem",
|
|
2674
|
+
"module": "./NotificationCenter"
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2677
|
+
{
|
|
2678
|
+
"kind": "js",
|
|
2679
|
+
"name": "SkdxNotificationCenterReadChangeDetail",
|
|
2680
|
+
"declaration": {
|
|
2681
|
+
"name": "SkdxNotificationCenterReadChangeDetail",
|
|
2682
|
+
"module": "./NotificationCenter"
|
|
2683
|
+
}
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
"kind": "js",
|
|
2687
|
+
"name": "SkdxNotificationCenterSelectDetail",
|
|
2688
|
+
"declaration": {
|
|
2689
|
+
"name": "SkdxNotificationCenterSelectDetail",
|
|
2690
|
+
"module": "./NotificationCenter"
|
|
2691
|
+
}
|
|
2692
|
+
}
|
|
2693
|
+
]
|
|
2694
|
+
},
|
|
2695
|
+
{
|
|
2696
|
+
"kind": "javascript-module",
|
|
2697
|
+
"path": "src/onboarding-checklist/OnboardingChecklist.ts",
|
|
2698
|
+
"declarations": [
|
|
2699
|
+
{
|
|
2700
|
+
"kind": "class",
|
|
2701
|
+
"description": "Progress checklist block: a header naming the checklist with an overall\nProgress meter, above an ordered list of tasks each carrying its own\ncompletion state and an optional action.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-onboarding-checklist` on the host, then `__header`,\n`__title`, `__description`, `__progress`, `__list`, `__item`, `__indicator`,\n`__body`, `__item-title`, `__optional`, `__item-description` and `__action`.\n`data-state` sits on each item for the skin to read.",
|
|
2702
|
+
"name": "SkdxOnboardingChecklist",
|
|
2703
|
+
"members": [
|
|
2704
|
+
{
|
|
2705
|
+
"kind": "field",
|
|
2706
|
+
"name": "title",
|
|
2707
|
+
"type": {
|
|
2708
|
+
"text": "string"
|
|
2709
|
+
},
|
|
2710
|
+
"description": "Heading text naming the checklist, rendered into a derived Heading that names the section.",
|
|
2711
|
+
"attribute": "title",
|
|
2712
|
+
"required": true
|
|
2713
|
+
},
|
|
2714
|
+
{
|
|
2715
|
+
"kind": "field",
|
|
2716
|
+
"name": "description",
|
|
2717
|
+
"type": {
|
|
2718
|
+
"text": "string | undefined | undefined"
|
|
2719
|
+
},
|
|
2720
|
+
"description": "Supporting copy rendered below the title, explaining what the checklist covers.",
|
|
2721
|
+
"default": "undefined",
|
|
2722
|
+
"attribute": "description"
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"kind": "field",
|
|
2726
|
+
"name": "headingLevel",
|
|
2727
|
+
"type": {
|
|
2728
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
2729
|
+
},
|
|
2730
|
+
"default": "2",
|
|
2731
|
+
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
2732
|
+
"attribute": "heading-level"
|
|
2733
|
+
},
|
|
2734
|
+
{
|
|
2735
|
+
"kind": "field",
|
|
2736
|
+
"name": "items",
|
|
2737
|
+
"type": {
|
|
2738
|
+
"text": "readonly SkdxOnboardingChecklistItem[]"
|
|
2739
|
+
},
|
|
2740
|
+
"description": "The tasks to complete, in render order, each with its own state, optional flag and action label.",
|
|
2741
|
+
"required": true
|
|
2742
|
+
},
|
|
2743
|
+
{
|
|
2744
|
+
"kind": "field",
|
|
2745
|
+
"name": "getProgressLabel",
|
|
2746
|
+
"type": {
|
|
2747
|
+
"text": "(complete: number, total: number) => string | undefined"
|
|
2748
|
+
},
|
|
2749
|
+
"description": "Formats the overall progress meter's readout from the completed and total item counts.",
|
|
2750
|
+
"default": "defaultGetProgressLabel"
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
"kind": "field",
|
|
2754
|
+
"name": "completeLabel",
|
|
2755
|
+
"type": {
|
|
2756
|
+
"text": "string"
|
|
2757
|
+
},
|
|
2758
|
+
"default": "'Completed'",
|
|
2759
|
+
"description": "Visually hidden text appended after a completed item's title, announcing its completion.",
|
|
2760
|
+
"attribute": "complete-label"
|
|
2761
|
+
},
|
|
2762
|
+
{
|
|
2763
|
+
"kind": "field",
|
|
2764
|
+
"name": "optionalLabel",
|
|
2765
|
+
"type": {
|
|
2766
|
+
"text": "string"
|
|
2767
|
+
},
|
|
2768
|
+
"default": "'Optional'",
|
|
2769
|
+
"description": "Text rendered beside an optional item's title.",
|
|
2770
|
+
"attribute": "optional-label"
|
|
2771
|
+
}
|
|
2772
|
+
],
|
|
2773
|
+
"events": [
|
|
2774
|
+
{
|
|
2775
|
+
"description": "Fires when an item's action button is activated, carrying the full item that was acted on.",
|
|
2776
|
+
"name": "action"
|
|
2777
|
+
}
|
|
2778
|
+
],
|
|
2779
|
+
"attributes": [
|
|
2780
|
+
{
|
|
2781
|
+
"name": "title",
|
|
2782
|
+
"type": {
|
|
2783
|
+
"text": "string"
|
|
2784
|
+
},
|
|
2785
|
+
"description": "Heading text naming the checklist, rendered into a derived Heading that names the section.",
|
|
2786
|
+
"fieldName": "title",
|
|
2787
|
+
"required": true
|
|
2788
|
+
},
|
|
2789
|
+
{
|
|
2790
|
+
"name": "description",
|
|
2791
|
+
"type": {
|
|
2792
|
+
"text": "string | undefined | undefined"
|
|
2793
|
+
},
|
|
2794
|
+
"description": "Supporting copy rendered below the title, explaining what the checklist covers.",
|
|
2795
|
+
"default": "undefined",
|
|
2796
|
+
"fieldName": "description"
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
"name": "heading-level",
|
|
2800
|
+
"type": {
|
|
2801
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
2802
|
+
},
|
|
2803
|
+
"default": "2",
|
|
2804
|
+
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
2805
|
+
"fieldName": "headingLevel"
|
|
2806
|
+
},
|
|
2807
|
+
{
|
|
2808
|
+
"name": "complete-label",
|
|
2809
|
+
"type": {
|
|
2810
|
+
"text": "string"
|
|
2811
|
+
},
|
|
2812
|
+
"default": "'Completed'",
|
|
2813
|
+
"description": "Visually hidden text appended after a completed item's title, announcing its completion.",
|
|
2814
|
+
"fieldName": "completeLabel"
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"name": "optional-label",
|
|
2818
|
+
"type": {
|
|
2819
|
+
"text": "string"
|
|
2820
|
+
},
|
|
2821
|
+
"default": "'Optional'",
|
|
2822
|
+
"description": "Text rendered beside an optional item's title.",
|
|
2823
|
+
"fieldName": "optionalLabel"
|
|
2824
|
+
}
|
|
2825
|
+
],
|
|
2826
|
+
"superclass": {
|
|
2827
|
+
"name": "LitElement",
|
|
2828
|
+
"package": "lit"
|
|
2829
|
+
},
|
|
2830
|
+
"tagName": "skdx-onboarding-checklist",
|
|
2831
|
+
"customElement": true
|
|
2832
|
+
}
|
|
2833
|
+
],
|
|
2834
|
+
"exports": [
|
|
2835
|
+
{
|
|
2836
|
+
"kind": "js",
|
|
2837
|
+
"name": "SkdxOnboardingChecklist",
|
|
2838
|
+
"declaration": {
|
|
2839
|
+
"name": "SkdxOnboardingChecklist",
|
|
2840
|
+
"module": "src/onboarding-checklist/OnboardingChecklist.ts"
|
|
2841
|
+
}
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
"kind": "custom-element-definition",
|
|
2845
|
+
"name": "skdx-onboarding-checklist",
|
|
2846
|
+
"declaration": {
|
|
2847
|
+
"name": "SkdxOnboardingChecklist",
|
|
2848
|
+
"module": "src/onboarding-checklist/OnboardingChecklist.ts"
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
]
|
|
2852
|
+
},
|
|
2853
|
+
{
|
|
2854
|
+
"kind": "javascript-module",
|
|
2855
|
+
"path": "src/onboarding-checklist/index.ts",
|
|
2856
|
+
"declarations": [],
|
|
2857
|
+
"exports": [
|
|
2858
|
+
{
|
|
2859
|
+
"kind": "js",
|
|
2860
|
+
"name": "SkdxOnboardingChecklist",
|
|
3165
2861
|
"declaration": {
|
|
3166
|
-
"name": "
|
|
3167
|
-
"module": "./
|
|
2862
|
+
"name": "SkdxOnboardingChecklist",
|
|
2863
|
+
"module": "./OnboardingChecklist"
|
|
3168
2864
|
}
|
|
3169
2865
|
},
|
|
3170
2866
|
{
|
|
3171
2867
|
"kind": "js",
|
|
3172
|
-
"name": "
|
|
2868
|
+
"name": "SkdxOnboardingChecklistItem",
|
|
3173
2869
|
"declaration": {
|
|
3174
|
-
"name": "
|
|
3175
|
-
"module": "./
|
|
2870
|
+
"name": "SkdxOnboardingChecklistItem",
|
|
2871
|
+
"module": "./OnboardingChecklist"
|
|
3176
2872
|
}
|
|
3177
2873
|
},
|
|
3178
2874
|
{
|
|
3179
2875
|
"kind": "js",
|
|
3180
|
-
"name": "
|
|
2876
|
+
"name": "SkdxOnboardingChecklistItemState",
|
|
3181
2877
|
"declaration": {
|
|
3182
|
-
"name": "
|
|
3183
|
-
"module": "./
|
|
2878
|
+
"name": "SkdxOnboardingChecklistItemState",
|
|
2879
|
+
"module": "./OnboardingChecklist"
|
|
3184
2880
|
}
|
|
3185
2881
|
}
|
|
3186
2882
|
]
|
|
@@ -3311,33 +3007,267 @@
|
|
|
3311
3007
|
},
|
|
3312
3008
|
{
|
|
3313
3009
|
"kind": "custom-element-definition",
|
|
3314
|
-
"name": "skdx-page-container",
|
|
3010
|
+
"name": "skdx-page-container",
|
|
3011
|
+
"declaration": {
|
|
3012
|
+
"name": "SkdxPageContainer",
|
|
3013
|
+
"module": "src/page-container/PageContainer.ts"
|
|
3014
|
+
}
|
|
3015
|
+
}
|
|
3016
|
+
]
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
"kind": "javascript-module",
|
|
3020
|
+
"path": "src/page-container/index.ts",
|
|
3021
|
+
"declarations": [],
|
|
3022
|
+
"exports": [
|
|
3023
|
+
{
|
|
3024
|
+
"kind": "js",
|
|
3025
|
+
"name": "SkdxPageContainer",
|
|
3026
|
+
"declaration": {
|
|
3027
|
+
"name": "SkdxPageContainer",
|
|
3028
|
+
"module": "./PageContainer"
|
|
3029
|
+
}
|
|
3030
|
+
},
|
|
3031
|
+
{
|
|
3032
|
+
"kind": "js",
|
|
3033
|
+
"name": "SkdxPageContainerBreadcrumb",
|
|
3034
|
+
"declaration": {
|
|
3035
|
+
"name": "SkdxPageContainerBreadcrumb",
|
|
3036
|
+
"module": "./PageContainer"
|
|
3037
|
+
}
|
|
3038
|
+
}
|
|
3039
|
+
]
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"kind": "javascript-module",
|
|
3043
|
+
"path": "src/reset-password-page/ResetPasswordPage.ts",
|
|
3044
|
+
"declarations": [
|
|
3045
|
+
{
|
|
3046
|
+
"kind": "class",
|
|
3047
|
+
"description": "Reset-password block: a new-password field with its rules, an optional\nconfirmation matched against it, and a submit button, replaced entirely by a\nsuccess alert once the change is accepted.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-reset-password-page` on the host, then `__panel`, `__title`,\n`__error`, `__success`, `__form`, `__field`, `__requirements`, `__submit`\nand `__footer`.",
|
|
3048
|
+
"name": "SkdxResetPasswordPage",
|
|
3049
|
+
"slots": [
|
|
3050
|
+
{
|
|
3051
|
+
"description": "Extra fields rendered inside the form, above the submit button.",
|
|
3052
|
+
"name": ""
|
|
3053
|
+
},
|
|
3054
|
+
{
|
|
3055
|
+
"description": "Password rules used as the new-password field's description.",
|
|
3056
|
+
"name": "requirements"
|
|
3057
|
+
},
|
|
3058
|
+
{
|
|
3059
|
+
"description": "Navigation below the form, such as a link back to the sign-in page.",
|
|
3060
|
+
"name": "footer"
|
|
3061
|
+
}
|
|
3062
|
+
],
|
|
3063
|
+
"members": [
|
|
3064
|
+
{
|
|
3065
|
+
"kind": "field",
|
|
3066
|
+
"name": "title",
|
|
3067
|
+
"type": {
|
|
3068
|
+
"text": "string"
|
|
3069
|
+
},
|
|
3070
|
+
"default": "'Choose a new password'",
|
|
3071
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3072
|
+
"attribute": "title"
|
|
3073
|
+
},
|
|
3074
|
+
{
|
|
3075
|
+
"kind": "field",
|
|
3076
|
+
"name": "error",
|
|
3077
|
+
"type": {
|
|
3078
|
+
"text": "string | undefined"
|
|
3079
|
+
},
|
|
3080
|
+
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
3081
|
+
"default": "undefined",
|
|
3082
|
+
"attribute": "error"
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"kind": "field",
|
|
3086
|
+
"name": "success",
|
|
3087
|
+
"type": {
|
|
3088
|
+
"text": "string | undefined"
|
|
3089
|
+
},
|
|
3090
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
3091
|
+
"default": "undefined",
|
|
3092
|
+
"attribute": "success"
|
|
3093
|
+
},
|
|
3094
|
+
{
|
|
3095
|
+
"kind": "field",
|
|
3096
|
+
"name": "pending",
|
|
3097
|
+
"type": {
|
|
3098
|
+
"text": "boolean"
|
|
3099
|
+
},
|
|
3100
|
+
"default": "false",
|
|
3101
|
+
"description": "Marks the request in flight, making the submit button busy while both fields stay editable.",
|
|
3102
|
+
"attribute": "pending"
|
|
3103
|
+
},
|
|
3104
|
+
{
|
|
3105
|
+
"kind": "field",
|
|
3106
|
+
"name": "passwordLabel",
|
|
3107
|
+
"type": {
|
|
3108
|
+
"text": "string"
|
|
3109
|
+
},
|
|
3110
|
+
"default": "'New password'",
|
|
3111
|
+
"description": "Label of the field where the new password is typed.",
|
|
3112
|
+
"attribute": "password-label"
|
|
3113
|
+
},
|
|
3114
|
+
{
|
|
3115
|
+
"kind": "field",
|
|
3116
|
+
"name": "confirmPasswordLabel",
|
|
3117
|
+
"type": {
|
|
3118
|
+
"text": "string | undefined"
|
|
3119
|
+
},
|
|
3120
|
+
"description": "Label of the confirmation field; supplying it is what turns password matching on.",
|
|
3121
|
+
"default": "undefined",
|
|
3122
|
+
"attribute": "confirm-password-label"
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
"kind": "field",
|
|
3126
|
+
"name": "passwordMismatchMessage",
|
|
3127
|
+
"type": {
|
|
3128
|
+
"text": "string"
|
|
3129
|
+
},
|
|
3130
|
+
"default": "'Passwords do not match'",
|
|
3131
|
+
"description": "Validation message pushed onto the confirmation field when the two passwords differ.",
|
|
3132
|
+
"attribute": "password-mismatch-message"
|
|
3133
|
+
},
|
|
3134
|
+
{
|
|
3135
|
+
"kind": "field",
|
|
3136
|
+
"name": "submitLabel",
|
|
3137
|
+
"type": {
|
|
3138
|
+
"text": "string"
|
|
3139
|
+
},
|
|
3140
|
+
"default": "'Update password'",
|
|
3141
|
+
"description": "Text of the form's submit button.",
|
|
3142
|
+
"attribute": "submit-label"
|
|
3143
|
+
}
|
|
3144
|
+
],
|
|
3145
|
+
"events": [
|
|
3146
|
+
{
|
|
3147
|
+
"description": "Fires with `{ password }` when the form submits with a valid password that matches the confirmation.",
|
|
3148
|
+
"name": "reset-password"
|
|
3149
|
+
}
|
|
3150
|
+
],
|
|
3151
|
+
"attributes": [
|
|
3152
|
+
{
|
|
3153
|
+
"name": "title",
|
|
3154
|
+
"type": {
|
|
3155
|
+
"text": "string"
|
|
3156
|
+
},
|
|
3157
|
+
"default": "'Choose a new password'",
|
|
3158
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3159
|
+
"fieldName": "title"
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
"name": "error",
|
|
3163
|
+
"type": {
|
|
3164
|
+
"text": "string | undefined"
|
|
3165
|
+
},
|
|
3166
|
+
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
3167
|
+
"default": "undefined",
|
|
3168
|
+
"fieldName": "error"
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"name": "success",
|
|
3172
|
+
"type": {
|
|
3173
|
+
"text": "string | undefined"
|
|
3174
|
+
},
|
|
3175
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
3176
|
+
"default": "undefined",
|
|
3177
|
+
"fieldName": "success"
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
"name": "pending",
|
|
3181
|
+
"type": {
|
|
3182
|
+
"text": "boolean"
|
|
3183
|
+
},
|
|
3184
|
+
"default": "false",
|
|
3185
|
+
"description": "Marks the request in flight, making the submit button busy while both fields stay editable.",
|
|
3186
|
+
"fieldName": "pending"
|
|
3187
|
+
},
|
|
3188
|
+
{
|
|
3189
|
+
"name": "password-label",
|
|
3190
|
+
"type": {
|
|
3191
|
+
"text": "string"
|
|
3192
|
+
},
|
|
3193
|
+
"default": "'New password'",
|
|
3194
|
+
"description": "Label of the field where the new password is typed.",
|
|
3195
|
+
"fieldName": "passwordLabel"
|
|
3196
|
+
},
|
|
3197
|
+
{
|
|
3198
|
+
"name": "confirm-password-label",
|
|
3199
|
+
"type": {
|
|
3200
|
+
"text": "string | undefined"
|
|
3201
|
+
},
|
|
3202
|
+
"description": "Label of the confirmation field; supplying it is what turns password matching on.",
|
|
3203
|
+
"default": "undefined",
|
|
3204
|
+
"fieldName": "confirmPasswordLabel"
|
|
3205
|
+
},
|
|
3206
|
+
{
|
|
3207
|
+
"name": "password-mismatch-message",
|
|
3208
|
+
"type": {
|
|
3209
|
+
"text": "string"
|
|
3210
|
+
},
|
|
3211
|
+
"default": "'Passwords do not match'",
|
|
3212
|
+
"description": "Validation message pushed onto the confirmation field when the two passwords differ.",
|
|
3213
|
+
"fieldName": "passwordMismatchMessage"
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"name": "submit-label",
|
|
3217
|
+
"type": {
|
|
3218
|
+
"text": "string"
|
|
3219
|
+
},
|
|
3220
|
+
"default": "'Update password'",
|
|
3221
|
+
"description": "Text of the form's submit button.",
|
|
3222
|
+
"fieldName": "submitLabel"
|
|
3223
|
+
}
|
|
3224
|
+
],
|
|
3225
|
+
"superclass": {
|
|
3226
|
+
"name": "LitElement",
|
|
3227
|
+
"package": "lit"
|
|
3228
|
+
},
|
|
3229
|
+
"tagName": "skdx-reset-password-page",
|
|
3230
|
+
"customElement": true
|
|
3231
|
+
}
|
|
3232
|
+
],
|
|
3233
|
+
"exports": [
|
|
3234
|
+
{
|
|
3235
|
+
"kind": "js",
|
|
3236
|
+
"name": "SkdxResetPasswordPage",
|
|
3237
|
+
"declaration": {
|
|
3238
|
+
"name": "SkdxResetPasswordPage",
|
|
3239
|
+
"module": "src/reset-password-page/ResetPasswordPage.ts"
|
|
3240
|
+
}
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"kind": "custom-element-definition",
|
|
3244
|
+
"name": "skdx-reset-password-page",
|
|
3315
3245
|
"declaration": {
|
|
3316
|
-
"name": "
|
|
3317
|
-
"module": "src/page
|
|
3246
|
+
"name": "SkdxResetPasswordPage",
|
|
3247
|
+
"module": "src/reset-password-page/ResetPasswordPage.ts"
|
|
3318
3248
|
}
|
|
3319
3249
|
}
|
|
3320
3250
|
]
|
|
3321
3251
|
},
|
|
3322
3252
|
{
|
|
3323
3253
|
"kind": "javascript-module",
|
|
3324
|
-
"path": "src/page
|
|
3254
|
+
"path": "src/reset-password-page/index.ts",
|
|
3325
3255
|
"declarations": [],
|
|
3326
3256
|
"exports": [
|
|
3327
3257
|
{
|
|
3328
3258
|
"kind": "js",
|
|
3329
|
-
"name": "
|
|
3259
|
+
"name": "SkdxResetPasswordPage",
|
|
3330
3260
|
"declaration": {
|
|
3331
|
-
"name": "
|
|
3332
|
-
"module": "./
|
|
3261
|
+
"name": "SkdxResetPasswordPage",
|
|
3262
|
+
"module": "./ResetPasswordPage"
|
|
3333
3263
|
}
|
|
3334
3264
|
},
|
|
3335
3265
|
{
|
|
3336
3266
|
"kind": "js",
|
|
3337
|
-
"name": "
|
|
3267
|
+
"name": "SkdxResetPasswordDetail",
|
|
3338
3268
|
"declaration": {
|
|
3339
|
-
"name": "
|
|
3340
|
-
"module": "./
|
|
3269
|
+
"name": "SkdxResetPasswordDetail",
|
|
3270
|
+
"module": "./ResetPasswordPage"
|
|
3341
3271
|
}
|
|
3342
3272
|
}
|
|
3343
3273
|
]
|
|
@@ -3859,240 +3789,6 @@
|
|
|
3859
3789
|
}
|
|
3860
3790
|
]
|
|
3861
3791
|
},
|
|
3862
|
-
{
|
|
3863
|
-
"kind": "javascript-module",
|
|
3864
|
-
"path": "src/reset-password-page/ResetPasswordPage.ts",
|
|
3865
|
-
"declarations": [
|
|
3866
|
-
{
|
|
3867
|
-
"kind": "class",
|
|
3868
|
-
"description": "Reset-password block: a new-password field with its rules, an optional\nconfirmation matched against it, and a submit button, replaced entirely by a\nsuccess alert once the change is accepted.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-reset-password-page` on the host, then `__panel`, `__title`,\n`__error`, `__success`, `__form`, `__field`, `__requirements`, `__submit`\nand `__footer`.",
|
|
3869
|
-
"name": "SkdxResetPasswordPage",
|
|
3870
|
-
"slots": [
|
|
3871
|
-
{
|
|
3872
|
-
"description": "Extra fields rendered inside the form, above the submit button.",
|
|
3873
|
-
"name": ""
|
|
3874
|
-
},
|
|
3875
|
-
{
|
|
3876
|
-
"description": "Password rules used as the new-password field's description.",
|
|
3877
|
-
"name": "requirements"
|
|
3878
|
-
},
|
|
3879
|
-
{
|
|
3880
|
-
"description": "Navigation below the form, such as a link back to the sign-in page.",
|
|
3881
|
-
"name": "footer"
|
|
3882
|
-
}
|
|
3883
|
-
],
|
|
3884
|
-
"members": [
|
|
3885
|
-
{
|
|
3886
|
-
"kind": "field",
|
|
3887
|
-
"name": "title",
|
|
3888
|
-
"type": {
|
|
3889
|
-
"text": "string"
|
|
3890
|
-
},
|
|
3891
|
-
"default": "'Choose a new password'",
|
|
3892
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3893
|
-
"attribute": "title"
|
|
3894
|
-
},
|
|
3895
|
-
{
|
|
3896
|
-
"kind": "field",
|
|
3897
|
-
"name": "error",
|
|
3898
|
-
"type": {
|
|
3899
|
-
"text": "string | undefined"
|
|
3900
|
-
},
|
|
3901
|
-
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
3902
|
-
"default": "undefined",
|
|
3903
|
-
"attribute": "error"
|
|
3904
|
-
},
|
|
3905
|
-
{
|
|
3906
|
-
"kind": "field",
|
|
3907
|
-
"name": "success",
|
|
3908
|
-
"type": {
|
|
3909
|
-
"text": "string | undefined"
|
|
3910
|
-
},
|
|
3911
|
-
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
3912
|
-
"default": "undefined",
|
|
3913
|
-
"attribute": "success"
|
|
3914
|
-
},
|
|
3915
|
-
{
|
|
3916
|
-
"kind": "field",
|
|
3917
|
-
"name": "pending",
|
|
3918
|
-
"type": {
|
|
3919
|
-
"text": "boolean"
|
|
3920
|
-
},
|
|
3921
|
-
"default": "false",
|
|
3922
|
-
"description": "Marks the request in flight, making the submit button busy while both fields stay editable.",
|
|
3923
|
-
"attribute": "pending"
|
|
3924
|
-
},
|
|
3925
|
-
{
|
|
3926
|
-
"kind": "field",
|
|
3927
|
-
"name": "passwordLabel",
|
|
3928
|
-
"type": {
|
|
3929
|
-
"text": "string"
|
|
3930
|
-
},
|
|
3931
|
-
"default": "'New password'",
|
|
3932
|
-
"description": "Label of the field where the new password is typed.",
|
|
3933
|
-
"attribute": "password-label"
|
|
3934
|
-
},
|
|
3935
|
-
{
|
|
3936
|
-
"kind": "field",
|
|
3937
|
-
"name": "confirmPasswordLabel",
|
|
3938
|
-
"type": {
|
|
3939
|
-
"text": "string | undefined"
|
|
3940
|
-
},
|
|
3941
|
-
"description": "Label of the confirmation field; supplying it is what turns password matching on.",
|
|
3942
|
-
"default": "undefined",
|
|
3943
|
-
"attribute": "confirm-password-label"
|
|
3944
|
-
},
|
|
3945
|
-
{
|
|
3946
|
-
"kind": "field",
|
|
3947
|
-
"name": "passwordMismatchMessage",
|
|
3948
|
-
"type": {
|
|
3949
|
-
"text": "string"
|
|
3950
|
-
},
|
|
3951
|
-
"default": "'Passwords do not match'",
|
|
3952
|
-
"description": "Validation message pushed onto the confirmation field when the two passwords differ.",
|
|
3953
|
-
"attribute": "password-mismatch-message"
|
|
3954
|
-
},
|
|
3955
|
-
{
|
|
3956
|
-
"kind": "field",
|
|
3957
|
-
"name": "submitLabel",
|
|
3958
|
-
"type": {
|
|
3959
|
-
"text": "string"
|
|
3960
|
-
},
|
|
3961
|
-
"default": "'Update password'",
|
|
3962
|
-
"description": "Text of the form's submit button.",
|
|
3963
|
-
"attribute": "submit-label"
|
|
3964
|
-
}
|
|
3965
|
-
],
|
|
3966
|
-
"events": [
|
|
3967
|
-
{
|
|
3968
|
-
"description": "Fires with `{ password }` when the form submits with a valid password that matches the confirmation.",
|
|
3969
|
-
"name": "reset-password"
|
|
3970
|
-
}
|
|
3971
|
-
],
|
|
3972
|
-
"attributes": [
|
|
3973
|
-
{
|
|
3974
|
-
"name": "title",
|
|
3975
|
-
"type": {
|
|
3976
|
-
"text": "string"
|
|
3977
|
-
},
|
|
3978
|
-
"default": "'Choose a new password'",
|
|
3979
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3980
|
-
"fieldName": "title"
|
|
3981
|
-
},
|
|
3982
|
-
{
|
|
3983
|
-
"name": "error",
|
|
3984
|
-
"type": {
|
|
3985
|
-
"text": "string | undefined"
|
|
3986
|
-
},
|
|
3987
|
-
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
3988
|
-
"default": "undefined",
|
|
3989
|
-
"fieldName": "error"
|
|
3990
|
-
},
|
|
3991
|
-
{
|
|
3992
|
-
"name": "success",
|
|
3993
|
-
"type": {
|
|
3994
|
-
"text": "string | undefined"
|
|
3995
|
-
},
|
|
3996
|
-
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
3997
|
-
"default": "undefined",
|
|
3998
|
-
"fieldName": "success"
|
|
3999
|
-
},
|
|
4000
|
-
{
|
|
4001
|
-
"name": "pending",
|
|
4002
|
-
"type": {
|
|
4003
|
-
"text": "boolean"
|
|
4004
|
-
},
|
|
4005
|
-
"default": "false",
|
|
4006
|
-
"description": "Marks the request in flight, making the submit button busy while both fields stay editable.",
|
|
4007
|
-
"fieldName": "pending"
|
|
4008
|
-
},
|
|
4009
|
-
{
|
|
4010
|
-
"name": "password-label",
|
|
4011
|
-
"type": {
|
|
4012
|
-
"text": "string"
|
|
4013
|
-
},
|
|
4014
|
-
"default": "'New password'",
|
|
4015
|
-
"description": "Label of the field where the new password is typed.",
|
|
4016
|
-
"fieldName": "passwordLabel"
|
|
4017
|
-
},
|
|
4018
|
-
{
|
|
4019
|
-
"name": "confirm-password-label",
|
|
4020
|
-
"type": {
|
|
4021
|
-
"text": "string | undefined"
|
|
4022
|
-
},
|
|
4023
|
-
"description": "Label of the confirmation field; supplying it is what turns password matching on.",
|
|
4024
|
-
"default": "undefined",
|
|
4025
|
-
"fieldName": "confirmPasswordLabel"
|
|
4026
|
-
},
|
|
4027
|
-
{
|
|
4028
|
-
"name": "password-mismatch-message",
|
|
4029
|
-
"type": {
|
|
4030
|
-
"text": "string"
|
|
4031
|
-
},
|
|
4032
|
-
"default": "'Passwords do not match'",
|
|
4033
|
-
"description": "Validation message pushed onto the confirmation field when the two passwords differ.",
|
|
4034
|
-
"fieldName": "passwordMismatchMessage"
|
|
4035
|
-
},
|
|
4036
|
-
{
|
|
4037
|
-
"name": "submit-label",
|
|
4038
|
-
"type": {
|
|
4039
|
-
"text": "string"
|
|
4040
|
-
},
|
|
4041
|
-
"default": "'Update password'",
|
|
4042
|
-
"description": "Text of the form's submit button.",
|
|
4043
|
-
"fieldName": "submitLabel"
|
|
4044
|
-
}
|
|
4045
|
-
],
|
|
4046
|
-
"superclass": {
|
|
4047
|
-
"name": "LitElement",
|
|
4048
|
-
"package": "lit"
|
|
4049
|
-
},
|
|
4050
|
-
"tagName": "skdx-reset-password-page",
|
|
4051
|
-
"customElement": true
|
|
4052
|
-
}
|
|
4053
|
-
],
|
|
4054
|
-
"exports": [
|
|
4055
|
-
{
|
|
4056
|
-
"kind": "js",
|
|
4057
|
-
"name": "SkdxResetPasswordPage",
|
|
4058
|
-
"declaration": {
|
|
4059
|
-
"name": "SkdxResetPasswordPage",
|
|
4060
|
-
"module": "src/reset-password-page/ResetPasswordPage.ts"
|
|
4061
|
-
}
|
|
4062
|
-
},
|
|
4063
|
-
{
|
|
4064
|
-
"kind": "custom-element-definition",
|
|
4065
|
-
"name": "skdx-reset-password-page",
|
|
4066
|
-
"declaration": {
|
|
4067
|
-
"name": "SkdxResetPasswordPage",
|
|
4068
|
-
"module": "src/reset-password-page/ResetPasswordPage.ts"
|
|
4069
|
-
}
|
|
4070
|
-
}
|
|
4071
|
-
]
|
|
4072
|
-
},
|
|
4073
|
-
{
|
|
4074
|
-
"kind": "javascript-module",
|
|
4075
|
-
"path": "src/reset-password-page/index.ts",
|
|
4076
|
-
"declarations": [],
|
|
4077
|
-
"exports": [
|
|
4078
|
-
{
|
|
4079
|
-
"kind": "js",
|
|
4080
|
-
"name": "SkdxResetPasswordPage",
|
|
4081
|
-
"declaration": {
|
|
4082
|
-
"name": "SkdxResetPasswordPage",
|
|
4083
|
-
"module": "./ResetPasswordPage"
|
|
4084
|
-
}
|
|
4085
|
-
},
|
|
4086
|
-
{
|
|
4087
|
-
"kind": "js",
|
|
4088
|
-
"name": "SkdxResetPasswordDetail",
|
|
4089
|
-
"declaration": {
|
|
4090
|
-
"name": "SkdxResetPasswordDetail",
|
|
4091
|
-
"module": "./ResetPasswordPage"
|
|
4092
|
-
}
|
|
4093
|
-
}
|
|
4094
|
-
]
|
|
4095
|
-
},
|
|
4096
3792
|
{
|
|
4097
3793
|
"kind": "javascript-module",
|
|
4098
3794
|
"path": "src/stat-card/StatCard.ts",
|
|
@@ -4531,12 +4227,262 @@
|
|
|
4531
4227
|
}
|
|
4532
4228
|
]
|
|
4533
4229
|
},
|
|
4534
|
-
{
|
|
4535
|
-
"kind": "javascript-module",
|
|
4536
|
-
"path": "src/usage-card/usage.ts",
|
|
4537
|
-
"declarations": [],
|
|
4538
|
-
"exports": []
|
|
4539
|
-
},
|
|
4230
|
+
{
|
|
4231
|
+
"kind": "javascript-module",
|
|
4232
|
+
"path": "src/usage-card/usage.ts",
|
|
4233
|
+
"declarations": [],
|
|
4234
|
+
"exports": []
|
|
4235
|
+
},
|
|
4236
|
+
{
|
|
4237
|
+
"kind": "javascript-module",
|
|
4238
|
+
"path": "src/user-menu/UserMenu.ts",
|
|
4239
|
+
"declarations": [
|
|
4240
|
+
{
|
|
4241
|
+
"kind": "class",
|
|
4242
|
+
"description": "The signed-in user's menu: a derived trigger showing an avatar, name and\ndescription that opens a panel repeating the identity above the\napplication's own entries.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-user-menu` on the host, then `__avatar`, `__identity`,\n`__name`, `__description`, `__content` and `__header`. `data-variant` sits on\nthe host while the derived trigger renders.",
|
|
4243
|
+
"name": "SkdxUserMenu",
|
|
4244
|
+
"slots": [
|
|
4245
|
+
{
|
|
4246
|
+
"description": "The application's own menu entries, rendered below the repeated identity header.",
|
|
4247
|
+
"name": ""
|
|
4248
|
+
},
|
|
4249
|
+
{
|
|
4250
|
+
"description": "Content that replaces the derived avatar-and-identity trigger entirely.",
|
|
4251
|
+
"name": "trigger"
|
|
4252
|
+
},
|
|
4253
|
+
{
|
|
4254
|
+
"description": "An extra indicator rendered after the identity in the trigger.",
|
|
4255
|
+
"name": "status"
|
|
4256
|
+
}
|
|
4257
|
+
],
|
|
4258
|
+
"members": [
|
|
4259
|
+
{
|
|
4260
|
+
"kind": "field",
|
|
4261
|
+
"name": "name",
|
|
4262
|
+
"type": {
|
|
4263
|
+
"text": "string"
|
|
4264
|
+
},
|
|
4265
|
+
"description": "The signed-in user's name, rendered in the trigger and repeated in the menu header.",
|
|
4266
|
+
"attribute": "name",
|
|
4267
|
+
"required": true
|
|
4268
|
+
},
|
|
4269
|
+
{
|
|
4270
|
+
"kind": "field",
|
|
4271
|
+
"name": "description",
|
|
4272
|
+
"type": {
|
|
4273
|
+
"text": "string | undefined | undefined"
|
|
4274
|
+
},
|
|
4275
|
+
"description": "Secondary text such as an email or role, rendered below the name in the trigger and the header.",
|
|
4276
|
+
"default": "undefined",
|
|
4277
|
+
"attribute": "description"
|
|
4278
|
+
},
|
|
4279
|
+
{
|
|
4280
|
+
"kind": "field",
|
|
4281
|
+
"name": "avatarSrc",
|
|
4282
|
+
"type": {
|
|
4283
|
+
"text": "string | undefined | undefined"
|
|
4284
|
+
},
|
|
4285
|
+
"description": "Source of the identity image, passed straight through to the derived Avatar.",
|
|
4286
|
+
"default": "undefined",
|
|
4287
|
+
"attribute": "avatar-src"
|
|
4288
|
+
},
|
|
4289
|
+
{
|
|
4290
|
+
"kind": "field",
|
|
4291
|
+
"name": "variant",
|
|
4292
|
+
"type": {
|
|
4293
|
+
"text": "'compact' | (string & {}) | undefined | undefined"
|
|
4294
|
+
},
|
|
4295
|
+
"description": "Visual rung written to `data-variant`; `'compact'` visually hides the identity text while keeping it as the accessible name.",
|
|
4296
|
+
"default": "undefined",
|
|
4297
|
+
"attribute": "variant"
|
|
4298
|
+
},
|
|
4299
|
+
{
|
|
4300
|
+
"kind": "field",
|
|
4301
|
+
"name": "open",
|
|
4302
|
+
"type": {
|
|
4303
|
+
"text": "boolean | undefined | undefined"
|
|
4304
|
+
},
|
|
4305
|
+
"description": "Whether the menu is open, for controlled usage paired with `open-change`.",
|
|
4306
|
+
"default": "undefined",
|
|
4307
|
+
"attribute": "open"
|
|
4308
|
+
},
|
|
4309
|
+
{
|
|
4310
|
+
"kind": "field",
|
|
4311
|
+
"name": "defaultOpen",
|
|
4312
|
+
"type": {
|
|
4313
|
+
"text": "boolean"
|
|
4314
|
+
},
|
|
4315
|
+
"default": "false",
|
|
4316
|
+
"description": "Whether the menu starts open, for uncontrolled usage.",
|
|
4317
|
+
"attribute": "default-open"
|
|
4318
|
+
},
|
|
4319
|
+
{
|
|
4320
|
+
"kind": "field",
|
|
4321
|
+
"name": "side",
|
|
4322
|
+
"type": {
|
|
4323
|
+
"text": "'top' | 'right' | 'bottom' | 'left'"
|
|
4324
|
+
},
|
|
4325
|
+
"default": "'bottom'",
|
|
4326
|
+
"description": "Which side of the trigger the menu panel opens on.",
|
|
4327
|
+
"attribute": "side"
|
|
4328
|
+
},
|
|
4329
|
+
{
|
|
4330
|
+
"kind": "field",
|
|
4331
|
+
"name": "align",
|
|
4332
|
+
"type": {
|
|
4333
|
+
"text": "'start' | 'center' | 'end'"
|
|
4334
|
+
},
|
|
4335
|
+
"default": "'end'",
|
|
4336
|
+
"description": "Alignment of the menu panel relative to the side it opens on.",
|
|
4337
|
+
"attribute": "align"
|
|
4338
|
+
}
|
|
4339
|
+
],
|
|
4340
|
+
"events": [
|
|
4341
|
+
{
|
|
4342
|
+
"description": "Fires with the new open state whenever the trigger opens or closes the menu.",
|
|
4343
|
+
"name": "open-change"
|
|
4344
|
+
},
|
|
4345
|
+
{
|
|
4346
|
+
"description": "Fires with the new open state once the panel's enter or exit animation has settled.",
|
|
4347
|
+
"name": "open-change-complete"
|
|
4348
|
+
},
|
|
4349
|
+
{
|
|
4350
|
+
"description": "Fires when Escape is pressed while the menu is open; `preventDefault()` keeps it open.",
|
|
4351
|
+
"name": "escape-key-down"
|
|
4352
|
+
},
|
|
4353
|
+
{
|
|
4354
|
+
"description": "Fires on a pointer-down outside the panel while open; `preventDefault()` keeps it open.",
|
|
4355
|
+
"name": "pointer-down-outside"
|
|
4356
|
+
},
|
|
4357
|
+
{
|
|
4358
|
+
"description": "Fires when focus moves outside the panel while open; `preventDefault()` keeps it open.",
|
|
4359
|
+
"name": "focus-outside"
|
|
4360
|
+
},
|
|
4361
|
+
{
|
|
4362
|
+
"description": "Fires for either kind of outside interaction, just before the specific event.",
|
|
4363
|
+
"name": "interact-outside"
|
|
4364
|
+
},
|
|
4365
|
+
{
|
|
4366
|
+
"description": "Fires before focus returns to the trigger on close; `preventDefault()` suppresses that return.",
|
|
4367
|
+
"name": "close-auto-focus"
|
|
4368
|
+
}
|
|
4369
|
+
],
|
|
4370
|
+
"attributes": [
|
|
4371
|
+
{
|
|
4372
|
+
"name": "name",
|
|
4373
|
+
"type": {
|
|
4374
|
+
"text": "string"
|
|
4375
|
+
},
|
|
4376
|
+
"description": "The signed-in user's name, rendered in the trigger and repeated in the menu header.",
|
|
4377
|
+
"fieldName": "name",
|
|
4378
|
+
"required": true
|
|
4379
|
+
},
|
|
4380
|
+
{
|
|
4381
|
+
"name": "description",
|
|
4382
|
+
"type": {
|
|
4383
|
+
"text": "string | undefined | undefined"
|
|
4384
|
+
},
|
|
4385
|
+
"description": "Secondary text such as an email or role, rendered below the name in the trigger and the header.",
|
|
4386
|
+
"default": "undefined",
|
|
4387
|
+
"fieldName": "description"
|
|
4388
|
+
},
|
|
4389
|
+
{
|
|
4390
|
+
"name": "avatar-src",
|
|
4391
|
+
"type": {
|
|
4392
|
+
"text": "string | undefined | undefined"
|
|
4393
|
+
},
|
|
4394
|
+
"description": "Source of the identity image, passed straight through to the derived Avatar.",
|
|
4395
|
+
"default": "undefined",
|
|
4396
|
+
"fieldName": "avatarSrc"
|
|
4397
|
+
},
|
|
4398
|
+
{
|
|
4399
|
+
"name": "variant",
|
|
4400
|
+
"type": {
|
|
4401
|
+
"text": "'compact' | (string & {}) | undefined | undefined"
|
|
4402
|
+
},
|
|
4403
|
+
"description": "Visual rung written to `data-variant`; `'compact'` visually hides the identity text while keeping it as the accessible name.",
|
|
4404
|
+
"default": "undefined",
|
|
4405
|
+
"fieldName": "variant"
|
|
4406
|
+
},
|
|
4407
|
+
{
|
|
4408
|
+
"name": "open",
|
|
4409
|
+
"type": {
|
|
4410
|
+
"text": "boolean | undefined | undefined"
|
|
4411
|
+
},
|
|
4412
|
+
"description": "Whether the menu is open, for controlled usage paired with `open-change`.",
|
|
4413
|
+
"default": "undefined",
|
|
4414
|
+
"fieldName": "open"
|
|
4415
|
+
},
|
|
4416
|
+
{
|
|
4417
|
+
"name": "default-open",
|
|
4418
|
+
"type": {
|
|
4419
|
+
"text": "boolean"
|
|
4420
|
+
},
|
|
4421
|
+
"default": "false",
|
|
4422
|
+
"description": "Whether the menu starts open, for uncontrolled usage.",
|
|
4423
|
+
"fieldName": "defaultOpen"
|
|
4424
|
+
},
|
|
4425
|
+
{
|
|
4426
|
+
"name": "side",
|
|
4427
|
+
"type": {
|
|
4428
|
+
"text": "'top' | 'right' | 'bottom' | 'left'"
|
|
4429
|
+
},
|
|
4430
|
+
"default": "'bottom'",
|
|
4431
|
+
"description": "Which side of the trigger the menu panel opens on.",
|
|
4432
|
+
"fieldName": "side"
|
|
4433
|
+
},
|
|
4434
|
+
{
|
|
4435
|
+
"name": "align",
|
|
4436
|
+
"type": {
|
|
4437
|
+
"text": "'start' | 'center' | 'end'"
|
|
4438
|
+
},
|
|
4439
|
+
"default": "'end'",
|
|
4440
|
+
"description": "Alignment of the menu panel relative to the side it opens on.",
|
|
4441
|
+
"fieldName": "align"
|
|
4442
|
+
}
|
|
4443
|
+
],
|
|
4444
|
+
"superclass": {
|
|
4445
|
+
"name": "LitElement",
|
|
4446
|
+
"package": "lit"
|
|
4447
|
+
},
|
|
4448
|
+
"tagName": "skdx-user-menu",
|
|
4449
|
+
"customElement": true
|
|
4450
|
+
}
|
|
4451
|
+
],
|
|
4452
|
+
"exports": [
|
|
4453
|
+
{
|
|
4454
|
+
"kind": "js",
|
|
4455
|
+
"name": "SkdxUserMenu",
|
|
4456
|
+
"declaration": {
|
|
4457
|
+
"name": "SkdxUserMenu",
|
|
4458
|
+
"module": "src/user-menu/UserMenu.ts"
|
|
4459
|
+
}
|
|
4460
|
+
},
|
|
4461
|
+
{
|
|
4462
|
+
"kind": "custom-element-definition",
|
|
4463
|
+
"name": "skdx-user-menu",
|
|
4464
|
+
"declaration": {
|
|
4465
|
+
"name": "SkdxUserMenu",
|
|
4466
|
+
"module": "src/user-menu/UserMenu.ts"
|
|
4467
|
+
}
|
|
4468
|
+
}
|
|
4469
|
+
]
|
|
4470
|
+
},
|
|
4471
|
+
{
|
|
4472
|
+
"kind": "javascript-module",
|
|
4473
|
+
"path": "src/user-menu/index.ts",
|
|
4474
|
+
"declarations": [],
|
|
4475
|
+
"exports": [
|
|
4476
|
+
{
|
|
4477
|
+
"kind": "js",
|
|
4478
|
+
"name": "SkdxUserMenu",
|
|
4479
|
+
"declaration": {
|
|
4480
|
+
"name": "SkdxUserMenu",
|
|
4481
|
+
"module": "./UserMenu"
|
|
4482
|
+
}
|
|
4483
|
+
}
|
|
4484
|
+
]
|
|
4485
|
+
},
|
|
4540
4486
|
{
|
|
4541
4487
|
"kind": "javascript-module",
|
|
4542
4488
|
"path": "src/verification-page/VerificationPage.ts",
|
|
@@ -5222,256 +5168,6 @@
|
|
|
5222
5168
|
}
|
|
5223
5169
|
}
|
|
5224
5170
|
]
|
|
5225
|
-
},
|
|
5226
|
-
{
|
|
5227
|
-
"kind": "javascript-module",
|
|
5228
|
-
"path": "src/user-menu/UserMenu.ts",
|
|
5229
|
-
"declarations": [
|
|
5230
|
-
{
|
|
5231
|
-
"kind": "class",
|
|
5232
|
-
"description": "The signed-in user's menu: a derived trigger showing an avatar, name and\ndescription that opens a panel repeating the identity above the\napplication's own entries.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-user-menu` on the host, then `__avatar`, `__identity`,\n`__name`, `__description`, `__content` and `__header`. `data-variant` sits on\nthe host while the derived trigger renders.",
|
|
5233
|
-
"name": "SkdxUserMenu",
|
|
5234
|
-
"slots": [
|
|
5235
|
-
{
|
|
5236
|
-
"description": "The application's own menu entries, rendered below the repeated identity header.",
|
|
5237
|
-
"name": ""
|
|
5238
|
-
},
|
|
5239
|
-
{
|
|
5240
|
-
"description": "Content that replaces the derived avatar-and-identity trigger entirely.",
|
|
5241
|
-
"name": "trigger"
|
|
5242
|
-
},
|
|
5243
|
-
{
|
|
5244
|
-
"description": "An extra indicator rendered after the identity in the trigger.",
|
|
5245
|
-
"name": "status"
|
|
5246
|
-
}
|
|
5247
|
-
],
|
|
5248
|
-
"members": [
|
|
5249
|
-
{
|
|
5250
|
-
"kind": "field",
|
|
5251
|
-
"name": "name",
|
|
5252
|
-
"type": {
|
|
5253
|
-
"text": "string"
|
|
5254
|
-
},
|
|
5255
|
-
"description": "The signed-in user's name, rendered in the trigger and repeated in the menu header.",
|
|
5256
|
-
"attribute": "name",
|
|
5257
|
-
"required": true
|
|
5258
|
-
},
|
|
5259
|
-
{
|
|
5260
|
-
"kind": "field",
|
|
5261
|
-
"name": "description",
|
|
5262
|
-
"type": {
|
|
5263
|
-
"text": "string | undefined | undefined"
|
|
5264
|
-
},
|
|
5265
|
-
"description": "Secondary text such as an email or role, rendered below the name in the trigger and the header.",
|
|
5266
|
-
"default": "undefined",
|
|
5267
|
-
"attribute": "description"
|
|
5268
|
-
},
|
|
5269
|
-
{
|
|
5270
|
-
"kind": "field",
|
|
5271
|
-
"name": "avatarSrc",
|
|
5272
|
-
"type": {
|
|
5273
|
-
"text": "string | undefined | undefined"
|
|
5274
|
-
},
|
|
5275
|
-
"description": "Source of the identity image, passed straight through to the derived Avatar.",
|
|
5276
|
-
"default": "undefined",
|
|
5277
|
-
"attribute": "avatar-src"
|
|
5278
|
-
},
|
|
5279
|
-
{
|
|
5280
|
-
"kind": "field",
|
|
5281
|
-
"name": "variant",
|
|
5282
|
-
"type": {
|
|
5283
|
-
"text": "'compact' | (string & {}) | undefined | undefined"
|
|
5284
|
-
},
|
|
5285
|
-
"description": "Visual rung written to `data-variant`; `'compact'` visually hides the identity text while keeping it as the accessible name.",
|
|
5286
|
-
"default": "undefined",
|
|
5287
|
-
"attribute": "variant"
|
|
5288
|
-
},
|
|
5289
|
-
{
|
|
5290
|
-
"kind": "field",
|
|
5291
|
-
"name": "open",
|
|
5292
|
-
"type": {
|
|
5293
|
-
"text": "boolean | undefined | undefined"
|
|
5294
|
-
},
|
|
5295
|
-
"description": "Whether the menu is open, for controlled usage paired with `open-change`.",
|
|
5296
|
-
"default": "undefined",
|
|
5297
|
-
"attribute": "open"
|
|
5298
|
-
},
|
|
5299
|
-
{
|
|
5300
|
-
"kind": "field",
|
|
5301
|
-
"name": "defaultOpen",
|
|
5302
|
-
"type": {
|
|
5303
|
-
"text": "boolean"
|
|
5304
|
-
},
|
|
5305
|
-
"default": "false",
|
|
5306
|
-
"description": "Whether the menu starts open, for uncontrolled usage.",
|
|
5307
|
-
"attribute": "default-open"
|
|
5308
|
-
},
|
|
5309
|
-
{
|
|
5310
|
-
"kind": "field",
|
|
5311
|
-
"name": "side",
|
|
5312
|
-
"type": {
|
|
5313
|
-
"text": "'top' | 'right' | 'bottom' | 'left'"
|
|
5314
|
-
},
|
|
5315
|
-
"default": "'bottom'",
|
|
5316
|
-
"description": "Which side of the trigger the menu panel opens on.",
|
|
5317
|
-
"attribute": "side"
|
|
5318
|
-
},
|
|
5319
|
-
{
|
|
5320
|
-
"kind": "field",
|
|
5321
|
-
"name": "align",
|
|
5322
|
-
"type": {
|
|
5323
|
-
"text": "'start' | 'center' | 'end'"
|
|
5324
|
-
},
|
|
5325
|
-
"default": "'end'",
|
|
5326
|
-
"description": "Alignment of the menu panel relative to the side it opens on.",
|
|
5327
|
-
"attribute": "align"
|
|
5328
|
-
}
|
|
5329
|
-
],
|
|
5330
|
-
"events": [
|
|
5331
|
-
{
|
|
5332
|
-
"description": "Fires with the new open state whenever the trigger opens or closes the menu.",
|
|
5333
|
-
"name": "open-change"
|
|
5334
|
-
},
|
|
5335
|
-
{
|
|
5336
|
-
"description": "Fires with the new open state once the panel's enter or exit animation has settled.",
|
|
5337
|
-
"name": "open-change-complete"
|
|
5338
|
-
},
|
|
5339
|
-
{
|
|
5340
|
-
"description": "Fires when Escape is pressed while the menu is open; `preventDefault()` keeps it open.",
|
|
5341
|
-
"name": "escape-key-down"
|
|
5342
|
-
},
|
|
5343
|
-
{
|
|
5344
|
-
"description": "Fires on a pointer-down outside the panel while open; `preventDefault()` keeps it open.",
|
|
5345
|
-
"name": "pointer-down-outside"
|
|
5346
|
-
},
|
|
5347
|
-
{
|
|
5348
|
-
"description": "Fires when focus moves outside the panel while open; `preventDefault()` keeps it open.",
|
|
5349
|
-
"name": "focus-outside"
|
|
5350
|
-
},
|
|
5351
|
-
{
|
|
5352
|
-
"description": "Fires for either kind of outside interaction, just before the specific event.",
|
|
5353
|
-
"name": "interact-outside"
|
|
5354
|
-
},
|
|
5355
|
-
{
|
|
5356
|
-
"description": "Fires before focus returns to the trigger on close; `preventDefault()` suppresses that return.",
|
|
5357
|
-
"name": "close-auto-focus"
|
|
5358
|
-
}
|
|
5359
|
-
],
|
|
5360
|
-
"attributes": [
|
|
5361
|
-
{
|
|
5362
|
-
"name": "name",
|
|
5363
|
-
"type": {
|
|
5364
|
-
"text": "string"
|
|
5365
|
-
},
|
|
5366
|
-
"description": "The signed-in user's name, rendered in the trigger and repeated in the menu header.",
|
|
5367
|
-
"fieldName": "name",
|
|
5368
|
-
"required": true
|
|
5369
|
-
},
|
|
5370
|
-
{
|
|
5371
|
-
"name": "description",
|
|
5372
|
-
"type": {
|
|
5373
|
-
"text": "string | undefined | undefined"
|
|
5374
|
-
},
|
|
5375
|
-
"description": "Secondary text such as an email or role, rendered below the name in the trigger and the header.",
|
|
5376
|
-
"default": "undefined",
|
|
5377
|
-
"fieldName": "description"
|
|
5378
|
-
},
|
|
5379
|
-
{
|
|
5380
|
-
"name": "avatar-src",
|
|
5381
|
-
"type": {
|
|
5382
|
-
"text": "string | undefined | undefined"
|
|
5383
|
-
},
|
|
5384
|
-
"description": "Source of the identity image, passed straight through to the derived Avatar.",
|
|
5385
|
-
"default": "undefined",
|
|
5386
|
-
"fieldName": "avatarSrc"
|
|
5387
|
-
},
|
|
5388
|
-
{
|
|
5389
|
-
"name": "variant",
|
|
5390
|
-
"type": {
|
|
5391
|
-
"text": "'compact' | (string & {}) | undefined | undefined"
|
|
5392
|
-
},
|
|
5393
|
-
"description": "Visual rung written to `data-variant`; `'compact'` visually hides the identity text while keeping it as the accessible name.",
|
|
5394
|
-
"default": "undefined",
|
|
5395
|
-
"fieldName": "variant"
|
|
5396
|
-
},
|
|
5397
|
-
{
|
|
5398
|
-
"name": "open",
|
|
5399
|
-
"type": {
|
|
5400
|
-
"text": "boolean | undefined | undefined"
|
|
5401
|
-
},
|
|
5402
|
-
"description": "Whether the menu is open, for controlled usage paired with `open-change`.",
|
|
5403
|
-
"default": "undefined",
|
|
5404
|
-
"fieldName": "open"
|
|
5405
|
-
},
|
|
5406
|
-
{
|
|
5407
|
-
"name": "default-open",
|
|
5408
|
-
"type": {
|
|
5409
|
-
"text": "boolean"
|
|
5410
|
-
},
|
|
5411
|
-
"default": "false",
|
|
5412
|
-
"description": "Whether the menu starts open, for uncontrolled usage.",
|
|
5413
|
-
"fieldName": "defaultOpen"
|
|
5414
|
-
},
|
|
5415
|
-
{
|
|
5416
|
-
"name": "side",
|
|
5417
|
-
"type": {
|
|
5418
|
-
"text": "'top' | 'right' | 'bottom' | 'left'"
|
|
5419
|
-
},
|
|
5420
|
-
"default": "'bottom'",
|
|
5421
|
-
"description": "Which side of the trigger the menu panel opens on.",
|
|
5422
|
-
"fieldName": "side"
|
|
5423
|
-
},
|
|
5424
|
-
{
|
|
5425
|
-
"name": "align",
|
|
5426
|
-
"type": {
|
|
5427
|
-
"text": "'start' | 'center' | 'end'"
|
|
5428
|
-
},
|
|
5429
|
-
"default": "'end'",
|
|
5430
|
-
"description": "Alignment of the menu panel relative to the side it opens on.",
|
|
5431
|
-
"fieldName": "align"
|
|
5432
|
-
}
|
|
5433
|
-
],
|
|
5434
|
-
"superclass": {
|
|
5435
|
-
"name": "LitElement",
|
|
5436
|
-
"package": "lit"
|
|
5437
|
-
},
|
|
5438
|
-
"tagName": "skdx-user-menu",
|
|
5439
|
-
"customElement": true
|
|
5440
|
-
}
|
|
5441
|
-
],
|
|
5442
|
-
"exports": [
|
|
5443
|
-
{
|
|
5444
|
-
"kind": "js",
|
|
5445
|
-
"name": "SkdxUserMenu",
|
|
5446
|
-
"declaration": {
|
|
5447
|
-
"name": "SkdxUserMenu",
|
|
5448
|
-
"module": "src/user-menu/UserMenu.ts"
|
|
5449
|
-
}
|
|
5450
|
-
},
|
|
5451
|
-
{
|
|
5452
|
-
"kind": "custom-element-definition",
|
|
5453
|
-
"name": "skdx-user-menu",
|
|
5454
|
-
"declaration": {
|
|
5455
|
-
"name": "SkdxUserMenu",
|
|
5456
|
-
"module": "src/user-menu/UserMenu.ts"
|
|
5457
|
-
}
|
|
5458
|
-
}
|
|
5459
|
-
]
|
|
5460
|
-
},
|
|
5461
|
-
{
|
|
5462
|
-
"kind": "javascript-module",
|
|
5463
|
-
"path": "src/user-menu/index.ts",
|
|
5464
|
-
"declarations": [],
|
|
5465
|
-
"exports": [
|
|
5466
|
-
{
|
|
5467
|
-
"kind": "js",
|
|
5468
|
-
"name": "SkdxUserMenu",
|
|
5469
|
-
"declaration": {
|
|
5470
|
-
"name": "SkdxUserMenu",
|
|
5471
|
-
"module": "./UserMenu"
|
|
5472
|
-
}
|
|
5473
|
-
}
|
|
5474
|
-
]
|
|
5475
5171
|
}
|
|
5476
5172
|
]
|
|
5477
5173
|
}
|