@skdx/web-components-blocks 0.36.0 → 0.38.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 +1055 -1359
- 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",
|
|
@@ -530,302 +522,6 @@
|
|
|
530
522
|
}
|
|
531
523
|
]
|
|
532
524
|
},
|
|
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": [
|
|
542
|
-
{
|
|
543
|
-
"description": "Extra content rendered between the description and the footer buttons.",
|
|
544
|
-
"name": ""
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
"description": "Content of the button that opens the dialog; no trigger renders without it.",
|
|
548
|
-
"name": "trigger"
|
|
549
|
-
}
|
|
550
|
-
],
|
|
551
|
-
"members": [
|
|
552
|
-
{
|
|
553
|
-
"kind": "field",
|
|
554
|
-
"name": "open",
|
|
555
|
-
"type": {
|
|
556
|
-
"text": "boolean | undefined | undefined"
|
|
557
|
-
},
|
|
558
|
-
"description": "Whether the dialog is open, for controlled usage; pair it with `open-change`.",
|
|
559
|
-
"default": "undefined",
|
|
560
|
-
"attribute": "open"
|
|
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"
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
"kind": "field",
|
|
574
|
-
"name": "title",
|
|
575
|
-
"type": {
|
|
576
|
-
"text": "string"
|
|
577
|
-
},
|
|
578
|
-
"description": "Heading text rendered into the panel's title, naming and labelling the dialog.",
|
|
579
|
-
"attribute": "title",
|
|
580
|
-
"required": true
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
"kind": "field",
|
|
584
|
-
"name": "description",
|
|
585
|
-
"type": {
|
|
586
|
-
"text": "string | undefined | undefined"
|
|
587
|
-
},
|
|
588
|
-
"description": "Supporting sentence rendered into the panel's description, read alongside the title.",
|
|
589
|
-
"default": "undefined",
|
|
590
|
-
"attribute": "description"
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
"kind": "field",
|
|
594
|
-
"name": "confirmLabel",
|
|
595
|
-
"type": {
|
|
596
|
-
"text": "string"
|
|
597
|
-
},
|
|
598
|
-
"default": "'Confirm'",
|
|
599
|
-
"description": "Text of the button that carries out the confirmed action.",
|
|
600
|
-
"attribute": "confirm-label"
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"kind": "field",
|
|
604
|
-
"name": "cancelLabel",
|
|
605
|
-
"type": {
|
|
606
|
-
"text": "string"
|
|
607
|
-
},
|
|
608
|
-
"default": "'Cancel'",
|
|
609
|
-
"description": "Text of the button that abandons the action.",
|
|
610
|
-
"attribute": "cancel-label"
|
|
611
|
-
},
|
|
612
|
-
{
|
|
613
|
-
"kind": "field",
|
|
614
|
-
"name": "destructive",
|
|
615
|
-
"type": {
|
|
616
|
-
"text": "boolean"
|
|
617
|
-
},
|
|
618
|
-
"default": "false",
|
|
619
|
-
"description": "Colours the confirm button and the panel danger, for an irreversible or destructive action.",
|
|
620
|
-
"attribute": "destructive"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"kind": "field",
|
|
624
|
-
"name": "pending",
|
|
625
|
-
"type": {
|
|
626
|
-
"text": "boolean"
|
|
627
|
-
},
|
|
628
|
-
"default": "false",
|
|
629
|
-
"description": "Marks the confirmed request as in flight: disables both buttons, marks the confirm button loading, and blocks Escape dismissal until it clears.",
|
|
630
|
-
"attribute": "pending"
|
|
631
|
-
},
|
|
632
|
-
{
|
|
633
|
-
"kind": "field",
|
|
634
|
-
"name": "disabled",
|
|
635
|
-
"type": {
|
|
636
|
-
"text": "boolean"
|
|
637
|
-
},
|
|
638
|
-
"default": "false",
|
|
639
|
-
"description": "Disables the confirm button on its own, independent of `pending` — for example until a typed confirmation matches.",
|
|
640
|
-
"attribute": "disabled"
|
|
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"
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
"name": "pending",
|
|
761
|
-
"type": {
|
|
762
|
-
"text": "boolean"
|
|
763
|
-
},
|
|
764
|
-
"default": "false",
|
|
765
|
-
"description": "Marks the confirmed request as in flight: disables both buttons, marks the confirm button loading, and blocks Escape dismissal until it clears.",
|
|
766
|
-
"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
|
-
}
|
|
786
|
-
],
|
|
787
|
-
"superclass": {
|
|
788
|
-
"name": "LitElement",
|
|
789
|
-
"package": "lit"
|
|
790
|
-
},
|
|
791
|
-
"tagName": "skdx-confirm-dialog",
|
|
792
|
-
"customElement": true
|
|
793
|
-
}
|
|
794
|
-
],
|
|
795
|
-
"exports": [
|
|
796
|
-
{
|
|
797
|
-
"kind": "js",
|
|
798
|
-
"name": "SkdxConfirmDialog",
|
|
799
|
-
"declaration": {
|
|
800
|
-
"name": "SkdxConfirmDialog",
|
|
801
|
-
"module": "src/confirm-dialog/ConfirmDialog.ts"
|
|
802
|
-
}
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
"kind": "custom-element-definition",
|
|
806
|
-
"name": "skdx-confirm-dialog",
|
|
807
|
-
"declaration": {
|
|
808
|
-
"name": "SkdxConfirmDialog",
|
|
809
|
-
"module": "src/confirm-dialog/ConfirmDialog.ts"
|
|
810
|
-
}
|
|
811
|
-
}
|
|
812
|
-
]
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
"kind": "javascript-module",
|
|
816
|
-
"path": "src/confirm-dialog/index.ts",
|
|
817
|
-
"declarations": [],
|
|
818
|
-
"exports": [
|
|
819
|
-
{
|
|
820
|
-
"kind": "js",
|
|
821
|
-
"name": "SkdxConfirmDialog",
|
|
822
|
-
"declaration": {
|
|
823
|
-
"name": "SkdxConfirmDialog",
|
|
824
|
-
"module": "./ConfirmDialog"
|
|
825
|
-
}
|
|
826
|
-
}
|
|
827
|
-
]
|
|
828
|
-
},
|
|
829
525
|
{
|
|
830
526
|
"kind": "javascript-module",
|
|
831
527
|
"path": "src/chat-message/ChatMessage.ts",
|
|
@@ -1162,20 +858,256 @@
|
|
|
1162
858
|
},
|
|
1163
859
|
{
|
|
1164
860
|
"kind": "javascript-module",
|
|
1165
|
-
"path": "src/
|
|
861
|
+
"path": "src/conversation-list/ConversationList.ts",
|
|
1166
862
|
"declarations": [
|
|
1167
863
|
{
|
|
1168
864
|
"kind": "class",
|
|
1169
|
-
"description": "
|
|
1170
|
-
"name": "
|
|
1171
|
-
"
|
|
1172
|
-
{
|
|
1173
|
-
"description": "The page content rendered inside the `<main>` region.",
|
|
1174
|
-
"name": ""
|
|
1175
|
-
},
|
|
865
|
+
"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.",
|
|
866
|
+
"name": "SkdxConversationList",
|
|
867
|
+
"members": [
|
|
1176
868
|
{
|
|
1177
|
-
"
|
|
1178
|
-
"name": "
|
|
869
|
+
"kind": "field",
|
|
870
|
+
"name": "items",
|
|
871
|
+
"type": {
|
|
872
|
+
"text": "readonly SkdxConversationListItem[]"
|
|
873
|
+
},
|
|
874
|
+
"description": "The conversations to render, in order, each one a selectable option keyed by its id.",
|
|
875
|
+
"required": true
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"kind": "field",
|
|
879
|
+
"name": "value",
|
|
880
|
+
"type": {
|
|
881
|
+
"text": "string | undefined | undefined"
|
|
882
|
+
},
|
|
883
|
+
"description": "Selected conversation's id, for controlled usage paired with `value-change`.",
|
|
884
|
+
"default": "undefined",
|
|
885
|
+
"attribute": "value"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"kind": "field",
|
|
889
|
+
"name": "defaultValue",
|
|
890
|
+
"type": {
|
|
891
|
+
"text": "string | undefined | undefined"
|
|
892
|
+
},
|
|
893
|
+
"description": "Conversation selected on first render, used only while uncontrolled.",
|
|
894
|
+
"default": "undefined",
|
|
895
|
+
"attribute": "default-value"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"kind": "field",
|
|
899
|
+
"name": "label",
|
|
900
|
+
"type": {
|
|
901
|
+
"text": "string"
|
|
902
|
+
},
|
|
903
|
+
"default": "'Conversations'",
|
|
904
|
+
"description": "Accessible name of the derived listbox holding the conversation rows.",
|
|
905
|
+
"attribute": "label"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"kind": "field",
|
|
909
|
+
"name": "unreadLabel",
|
|
910
|
+
"type": {
|
|
911
|
+
"text": "string"
|
|
912
|
+
},
|
|
913
|
+
"default": "'Unread'",
|
|
914
|
+
"description": "Visually hidden text appended to an unread row's title, so the mark is spoken.",
|
|
915
|
+
"attribute": "unread-label"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"kind": "field",
|
|
919
|
+
"name": "emptyTitle",
|
|
920
|
+
"type": {
|
|
921
|
+
"text": "string"
|
|
922
|
+
},
|
|
923
|
+
"default": "'No conversations'",
|
|
924
|
+
"description": "Heading of the derived EmptyState shown when there is nothing to list.",
|
|
925
|
+
"attribute": "empty-title"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"kind": "field",
|
|
929
|
+
"name": "emptyDescription",
|
|
930
|
+
"type": {
|
|
931
|
+
"text": "string | undefined | undefined"
|
|
932
|
+
},
|
|
933
|
+
"description": "Supporting copy under the empty state's heading, explaining the gap.",
|
|
934
|
+
"default": "undefined",
|
|
935
|
+
"attribute": "empty-description"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"kind": "field",
|
|
939
|
+
"name": "loading",
|
|
940
|
+
"type": {
|
|
941
|
+
"text": "boolean"
|
|
942
|
+
},
|
|
943
|
+
"default": "false",
|
|
944
|
+
"description": "Replaces the rows with decorative placeholder lines and marks the host `aria-busy`.",
|
|
945
|
+
"attribute": "loading"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"kind": "field",
|
|
949
|
+
"name": "now",
|
|
950
|
+
"type": {
|
|
951
|
+
"text": "Date | number | undefined | undefined"
|
|
952
|
+
},
|
|
953
|
+
"description": "Reference instant the relative row timestamps are measured from.",
|
|
954
|
+
"default": "undefined"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"kind": "field",
|
|
958
|
+
"name": "renderLeading",
|
|
959
|
+
"type": {
|
|
960
|
+
"text": "((item: SkdxConversationListItem) => unknown) | undefined | undefined"
|
|
961
|
+
},
|
|
962
|
+
"description": "Renders a decorative leading region for one row, such as an avatar or a status dot.",
|
|
963
|
+
"default": "undefined"
|
|
964
|
+
}
|
|
965
|
+
],
|
|
966
|
+
"events": [
|
|
967
|
+
{
|
|
968
|
+
"description": "Fires with `{ value, previousValue, reason }` whenever the selection moves by pointer or keyboard.",
|
|
969
|
+
"name": "value-change"
|
|
970
|
+
}
|
|
971
|
+
],
|
|
972
|
+
"attributes": [
|
|
973
|
+
{
|
|
974
|
+
"name": "value",
|
|
975
|
+
"type": {
|
|
976
|
+
"text": "string | undefined | undefined"
|
|
977
|
+
},
|
|
978
|
+
"description": "Selected conversation's id, for controlled usage paired with `value-change`.",
|
|
979
|
+
"default": "undefined",
|
|
980
|
+
"fieldName": "value"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"name": "default-value",
|
|
984
|
+
"type": {
|
|
985
|
+
"text": "string | undefined | undefined"
|
|
986
|
+
},
|
|
987
|
+
"description": "Conversation selected on first render, used only while uncontrolled.",
|
|
988
|
+
"default": "undefined",
|
|
989
|
+
"fieldName": "defaultValue"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"name": "label",
|
|
993
|
+
"type": {
|
|
994
|
+
"text": "string"
|
|
995
|
+
},
|
|
996
|
+
"default": "'Conversations'",
|
|
997
|
+
"description": "Accessible name of the derived listbox holding the conversation rows.",
|
|
998
|
+
"fieldName": "label"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"name": "unread-label",
|
|
1002
|
+
"type": {
|
|
1003
|
+
"text": "string"
|
|
1004
|
+
},
|
|
1005
|
+
"default": "'Unread'",
|
|
1006
|
+
"description": "Visually hidden text appended to an unread row's title, so the mark is spoken.",
|
|
1007
|
+
"fieldName": "unreadLabel"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"name": "empty-title",
|
|
1011
|
+
"type": {
|
|
1012
|
+
"text": "string"
|
|
1013
|
+
},
|
|
1014
|
+
"default": "'No conversations'",
|
|
1015
|
+
"description": "Heading of the derived EmptyState shown when there is nothing to list.",
|
|
1016
|
+
"fieldName": "emptyTitle"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"name": "empty-description",
|
|
1020
|
+
"type": {
|
|
1021
|
+
"text": "string | undefined | undefined"
|
|
1022
|
+
},
|
|
1023
|
+
"description": "Supporting copy under the empty state's heading, explaining the gap.",
|
|
1024
|
+
"default": "undefined",
|
|
1025
|
+
"fieldName": "emptyDescription"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"name": "loading",
|
|
1029
|
+
"type": {
|
|
1030
|
+
"text": "boolean"
|
|
1031
|
+
},
|
|
1032
|
+
"default": "false",
|
|
1033
|
+
"description": "Replaces the rows with decorative placeholder lines and marks the host `aria-busy`.",
|
|
1034
|
+
"fieldName": "loading"
|
|
1035
|
+
}
|
|
1036
|
+
],
|
|
1037
|
+
"superclass": {
|
|
1038
|
+
"name": "LitElement",
|
|
1039
|
+
"package": "lit"
|
|
1040
|
+
},
|
|
1041
|
+
"tagName": "skdx-conversation-list",
|
|
1042
|
+
"customElement": true
|
|
1043
|
+
}
|
|
1044
|
+
],
|
|
1045
|
+
"exports": [
|
|
1046
|
+
{
|
|
1047
|
+
"kind": "js",
|
|
1048
|
+
"name": "SkdxConversationList",
|
|
1049
|
+
"declaration": {
|
|
1050
|
+
"name": "SkdxConversationList",
|
|
1051
|
+
"module": "src/conversation-list/ConversationList.ts"
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"kind": "custom-element-definition",
|
|
1056
|
+
"name": "skdx-conversation-list",
|
|
1057
|
+
"declaration": {
|
|
1058
|
+
"name": "SkdxConversationList",
|
|
1059
|
+
"module": "src/conversation-list/ConversationList.ts"
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
]
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"kind": "javascript-module",
|
|
1066
|
+
"path": "src/conversation-list/index.ts",
|
|
1067
|
+
"declarations": [],
|
|
1068
|
+
"exports": [
|
|
1069
|
+
{
|
|
1070
|
+
"kind": "js",
|
|
1071
|
+
"name": "SkdxConversationList",
|
|
1072
|
+
"declaration": {
|
|
1073
|
+
"name": "SkdxConversationList",
|
|
1074
|
+
"module": "./ConversationList"
|
|
1075
|
+
}
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"kind": "js",
|
|
1079
|
+
"name": "SkdxConversationListItem",
|
|
1080
|
+
"declaration": {
|
|
1081
|
+
"name": "SkdxConversationListItem",
|
|
1082
|
+
"module": "./ConversationList"
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"kind": "js",
|
|
1087
|
+
"name": "SkdxConversationListValueChangeDetail",
|
|
1088
|
+
"declaration": {
|
|
1089
|
+
"name": "SkdxConversationListValueChangeDetail",
|
|
1090
|
+
"module": "./ConversationList"
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
]
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"kind": "javascript-module",
|
|
1097
|
+
"path": "src/dashboard-layout/DashboardLayout.ts",
|
|
1098
|
+
"declarations": [
|
|
1099
|
+
{
|
|
1100
|
+
"kind": "class",
|
|
1101
|
+
"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.",
|
|
1102
|
+
"name": "SkdxDashboardLayout",
|
|
1103
|
+
"slots": [
|
|
1104
|
+
{
|
|
1105
|
+
"description": "The page content rendered inside the `<main>` region.",
|
|
1106
|
+
"name": ""
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"description": "Logo or product mark at the start of the app bar.",
|
|
1110
|
+
"name": "branding"
|
|
1179
1111
|
},
|
|
1180
1112
|
{
|
|
1181
1113
|
"description": "Controls at the end of the app bar.",
|
|
@@ -1758,300 +1690,211 @@
|
|
|
1758
1690
|
},
|
|
1759
1691
|
{
|
|
1760
1692
|
"kind": "javascript-module",
|
|
1761
|
-
"path": "src/
|
|
1693
|
+
"path": "src/forgot-password-page/ForgotPasswordPage.ts",
|
|
1762
1694
|
"declarations": [
|
|
1763
1695
|
{
|
|
1764
1696
|
"kind": "class",
|
|
1765
|
-
"description": "
|
|
1766
|
-
"name": "
|
|
1697
|
+
"description": "Forgot-password block: a description, one email field and a submit button,\nreplaced entirely by a success alert once the request is accepted.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-forgot-password-page` on the host, then `__panel`,\n`__title`, `__description`, `__error`, `__success`, `__form`, `__field`,\n`__submit` and `__footer`.",
|
|
1698
|
+
"name": "SkdxForgotPasswordPage",
|
|
1767
1699
|
"slots": [
|
|
1768
1700
|
{
|
|
1769
|
-
"description": "
|
|
1770
|
-
"name": "
|
|
1771
|
-
},
|
|
1772
|
-
{
|
|
1773
|
-
"description": "Controls rendered inside the field after the textarea, such as a model picker.",
|
|
1774
|
-
"name": "trailing"
|
|
1701
|
+
"description": "Extra fields rendered inside the form, above the submit button.",
|
|
1702
|
+
"name": ""
|
|
1775
1703
|
},
|
|
1776
1704
|
{
|
|
1777
|
-
"description": "
|
|
1778
|
-
"name": "attachments"
|
|
1779
|
-
},
|
|
1780
|
-
{
|
|
1781
|
-
"description": "Usage counters or hints rendered in a row below the field.",
|
|
1705
|
+
"description": "Navigation below the form, such as a link back to the sign-in page.",
|
|
1782
1706
|
"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
1707
|
}
|
|
1788
1708
|
],
|
|
1789
1709
|
"members": [
|
|
1790
1710
|
{
|
|
1791
1711
|
"kind": "field",
|
|
1792
|
-
"name": "
|
|
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",
|
|
1712
|
+
"name": "title",
|
|
1803
1713
|
"type": {
|
|
1804
1714
|
"text": "string"
|
|
1805
1715
|
},
|
|
1806
|
-
"default": "''",
|
|
1807
|
-
"description": "
|
|
1808
|
-
"attribute": "
|
|
1716
|
+
"default": "'Reset your password'",
|
|
1717
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
1718
|
+
"attribute": "title"
|
|
1809
1719
|
},
|
|
1810
1720
|
{
|
|
1811
1721
|
"kind": "field",
|
|
1812
|
-
"name": "
|
|
1722
|
+
"name": "description",
|
|
1813
1723
|
"type": {
|
|
1814
|
-
"text": "string | undefined
|
|
1724
|
+
"text": "string | undefined"
|
|
1815
1725
|
},
|
|
1816
|
-
"description": "
|
|
1726
|
+
"description": "Supporting copy rendered below the title, explaining what the reset link does.",
|
|
1817
1727
|
"default": "undefined",
|
|
1818
|
-
"attribute": "
|
|
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"
|
|
1728
|
+
"attribute": "description"
|
|
1839
1729
|
},
|
|
1840
1730
|
{
|
|
1841
1731
|
"kind": "field",
|
|
1842
|
-
"name": "
|
|
1732
|
+
"name": "error",
|
|
1843
1733
|
"type": {
|
|
1844
|
-
"text": "
|
|
1734
|
+
"text": "string | undefined"
|
|
1845
1735
|
},
|
|
1846
|
-
"
|
|
1847
|
-
"
|
|
1848
|
-
"attribute": "
|
|
1736
|
+
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
1737
|
+
"default": "undefined",
|
|
1738
|
+
"attribute": "error"
|
|
1849
1739
|
},
|
|
1850
1740
|
{
|
|
1851
1741
|
"kind": "field",
|
|
1852
|
-
"name": "
|
|
1742
|
+
"name": "success",
|
|
1853
1743
|
"type": {
|
|
1854
|
-
"text": "
|
|
1744
|
+
"text": "string | undefined"
|
|
1855
1745
|
},
|
|
1856
|
-
"
|
|
1857
|
-
"
|
|
1858
|
-
"attribute": "
|
|
1746
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
1747
|
+
"default": "undefined",
|
|
1748
|
+
"attribute": "success"
|
|
1859
1749
|
},
|
|
1860
1750
|
{
|
|
1861
1751
|
"kind": "field",
|
|
1862
|
-
"name": "
|
|
1752
|
+
"name": "pending",
|
|
1863
1753
|
"type": {
|
|
1864
|
-
"text": "
|
|
1754
|
+
"text": "boolean"
|
|
1865
1755
|
},
|
|
1866
|
-
"
|
|
1867
|
-
"
|
|
1868
|
-
"attribute": "
|
|
1756
|
+
"default": "false",
|
|
1757
|
+
"description": "Marks the request in flight, making the submit button busy while the email field stays editable.",
|
|
1758
|
+
"attribute": "pending"
|
|
1869
1759
|
},
|
|
1870
1760
|
{
|
|
1871
1761
|
"kind": "field",
|
|
1872
|
-
"name": "
|
|
1762
|
+
"name": "emailLabel",
|
|
1873
1763
|
"type": {
|
|
1874
|
-
"text": "
|
|
1764
|
+
"text": "string"
|
|
1875
1765
|
},
|
|
1876
|
-
"default": "
|
|
1877
|
-
"description": "
|
|
1878
|
-
"attribute": "
|
|
1766
|
+
"default": "'Email'",
|
|
1767
|
+
"description": "Label of the email field the reset link is requested for.",
|
|
1768
|
+
"attribute": "email-label"
|
|
1879
1769
|
},
|
|
1880
1770
|
{
|
|
1881
1771
|
"kind": "field",
|
|
1882
|
-
"name": "
|
|
1772
|
+
"name": "submitLabel",
|
|
1883
1773
|
"type": {
|
|
1884
|
-
"text": "
|
|
1774
|
+
"text": "string"
|
|
1885
1775
|
},
|
|
1886
|
-
"default": "
|
|
1887
|
-
"description": "
|
|
1888
|
-
"attribute": "
|
|
1776
|
+
"default": "'Send reset link'",
|
|
1777
|
+
"description": "Text of the form's submit button.",
|
|
1778
|
+
"attribute": "submit-label"
|
|
1889
1779
|
}
|
|
1890
1780
|
],
|
|
1891
1781
|
"events": [
|
|
1892
1782
|
{
|
|
1893
|
-
"description": "Fires with
|
|
1894
|
-
"name": "
|
|
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"
|
|
1783
|
+
"description": "Fires with `{ email }` when the form submits with an address that passes constraint validation.",
|
|
1784
|
+
"name": "request-reset"
|
|
1899
1785
|
}
|
|
1900
1786
|
],
|
|
1901
1787
|
"attributes": [
|
|
1902
1788
|
{
|
|
1903
|
-
"name": "
|
|
1904
|
-
"type": {
|
|
1905
|
-
"text": "string | undefined | undefined"
|
|
1906
|
-
},
|
|
1907
|
-
"description": "Current message text, for controlled usage paired with `value-change`.",
|
|
1908
|
-
"default": "undefined",
|
|
1909
|
-
"fieldName": "value"
|
|
1910
|
-
},
|
|
1911
|
-
{
|
|
1912
|
-
"name": "default-value",
|
|
1789
|
+
"name": "title",
|
|
1913
1790
|
"type": {
|
|
1914
1791
|
"text": "string"
|
|
1915
1792
|
},
|
|
1916
|
-
"default": "''",
|
|
1917
|
-
"description": "
|
|
1918
|
-
"fieldName": "
|
|
1793
|
+
"default": "'Reset your password'",
|
|
1794
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
1795
|
+
"fieldName": "title"
|
|
1919
1796
|
},
|
|
1920
1797
|
{
|
|
1921
|
-
"name": "
|
|
1798
|
+
"name": "description",
|
|
1922
1799
|
"type": {
|
|
1923
|
-
"text": "string | undefined
|
|
1800
|
+
"text": "string | undefined"
|
|
1924
1801
|
},
|
|
1925
|
-
"description": "
|
|
1802
|
+
"description": "Supporting copy rendered below the title, explaining what the reset link does.",
|
|
1926
1803
|
"default": "undefined",
|
|
1927
|
-
"fieldName": "
|
|
1928
|
-
},
|
|
1929
|
-
{
|
|
1930
|
-
"name": "label",
|
|
1931
|
-
"type": {
|
|
1932
|
-
"text": "string"
|
|
1933
|
-
},
|
|
1934
|
-
"default": "'Message'",
|
|
1935
|
-
"description": "Accessible name of the message textarea, read by assistive technology.",
|
|
1936
|
-
"fieldName": "label"
|
|
1937
|
-
},
|
|
1938
|
-
{
|
|
1939
|
-
"name": "send-label",
|
|
1940
|
-
"type": {
|
|
1941
|
-
"text": "string"
|
|
1942
|
-
},
|
|
1943
|
-
"default": "'Send'",
|
|
1944
|
-
"description": "Text of the send button, and its accessible name when the `send-icon` slot is filled.",
|
|
1945
|
-
"fieldName": "sendLabel"
|
|
1804
|
+
"fieldName": "description"
|
|
1946
1805
|
},
|
|
1947
1806
|
{
|
|
1948
|
-
"name": "
|
|
1807
|
+
"name": "error",
|
|
1949
1808
|
"type": {
|
|
1950
|
-
"text": "
|
|
1809
|
+
"text": "string | undefined"
|
|
1951
1810
|
},
|
|
1952
|
-
"
|
|
1953
|
-
"
|
|
1954
|
-
"fieldName": "
|
|
1811
|
+
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
1812
|
+
"default": "undefined",
|
|
1813
|
+
"fieldName": "error"
|
|
1955
1814
|
},
|
|
1956
1815
|
{
|
|
1957
|
-
"name": "
|
|
1816
|
+
"name": "success",
|
|
1958
1817
|
"type": {
|
|
1959
|
-
"text": "
|
|
1818
|
+
"text": "string | undefined"
|
|
1960
1819
|
},
|
|
1961
|
-
"
|
|
1962
|
-
"
|
|
1963
|
-
"fieldName": "
|
|
1820
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
1821
|
+
"default": "undefined",
|
|
1822
|
+
"fieldName": "success"
|
|
1964
1823
|
},
|
|
1965
1824
|
{
|
|
1966
|
-
"name": "
|
|
1825
|
+
"name": "pending",
|
|
1967
1826
|
"type": {
|
|
1968
|
-
"text": "
|
|
1827
|
+
"text": "boolean"
|
|
1969
1828
|
},
|
|
1970
|
-
"
|
|
1971
|
-
"
|
|
1972
|
-
"fieldName": "
|
|
1829
|
+
"default": "false",
|
|
1830
|
+
"description": "Marks the request in flight, making the submit button busy while the email field stays editable.",
|
|
1831
|
+
"fieldName": "pending"
|
|
1973
1832
|
},
|
|
1974
1833
|
{
|
|
1975
|
-
"name": "
|
|
1834
|
+
"name": "email-label",
|
|
1976
1835
|
"type": {
|
|
1977
|
-
"text": "
|
|
1836
|
+
"text": "string"
|
|
1978
1837
|
},
|
|
1979
|
-
"default": "
|
|
1980
|
-
"description": "
|
|
1981
|
-
"fieldName": "
|
|
1838
|
+
"default": "'Email'",
|
|
1839
|
+
"description": "Label of the email field the reset link is requested for.",
|
|
1840
|
+
"fieldName": "emailLabel"
|
|
1982
1841
|
},
|
|
1983
1842
|
{
|
|
1984
|
-
"name": "
|
|
1843
|
+
"name": "submit-label",
|
|
1985
1844
|
"type": {
|
|
1986
|
-
"text": "
|
|
1845
|
+
"text": "string"
|
|
1987
1846
|
},
|
|
1988
|
-
"default": "
|
|
1989
|
-
"description": "
|
|
1990
|
-
"fieldName": "
|
|
1847
|
+
"default": "'Send reset link'",
|
|
1848
|
+
"description": "Text of the form's submit button.",
|
|
1849
|
+
"fieldName": "submitLabel"
|
|
1991
1850
|
}
|
|
1992
1851
|
],
|
|
1993
1852
|
"superclass": {
|
|
1994
1853
|
"name": "LitElement",
|
|
1995
1854
|
"package": "lit"
|
|
1996
1855
|
},
|
|
1997
|
-
"tagName": "skdx-
|
|
1856
|
+
"tagName": "skdx-forgot-password-page",
|
|
1998
1857
|
"customElement": true
|
|
1999
1858
|
}
|
|
2000
1859
|
],
|
|
2001
1860
|
"exports": [
|
|
2002
1861
|
{
|
|
2003
1862
|
"kind": "js",
|
|
2004
|
-
"name": "
|
|
1863
|
+
"name": "SkdxForgotPasswordPage",
|
|
2005
1864
|
"declaration": {
|
|
2006
|
-
"name": "
|
|
2007
|
-
"module": "src/
|
|
1865
|
+
"name": "SkdxForgotPasswordPage",
|
|
1866
|
+
"module": "src/forgot-password-page/ForgotPasswordPage.ts"
|
|
2008
1867
|
}
|
|
2009
1868
|
},
|
|
2010
1869
|
{
|
|
2011
1870
|
"kind": "custom-element-definition",
|
|
2012
|
-
"name": "skdx-
|
|
1871
|
+
"name": "skdx-forgot-password-page",
|
|
2013
1872
|
"declaration": {
|
|
2014
|
-
"name": "
|
|
2015
|
-
"module": "src/
|
|
1873
|
+
"name": "SkdxForgotPasswordPage",
|
|
1874
|
+
"module": "src/forgot-password-page/ForgotPasswordPage.ts"
|
|
2016
1875
|
}
|
|
2017
1876
|
}
|
|
2018
1877
|
]
|
|
2019
1878
|
},
|
|
2020
1879
|
{
|
|
2021
1880
|
"kind": "javascript-module",
|
|
2022
|
-
"path": "src/
|
|
1881
|
+
"path": "src/forgot-password-page/index.ts",
|
|
2023
1882
|
"declarations": [],
|
|
2024
1883
|
"exports": [
|
|
2025
1884
|
{
|
|
2026
1885
|
"kind": "js",
|
|
2027
|
-
"name": "
|
|
2028
|
-
"declaration": {
|
|
2029
|
-
"name": "SkdxChatComposer",
|
|
2030
|
-
"module": "./ChatComposer"
|
|
2031
|
-
}
|
|
2032
|
-
},
|
|
2033
|
-
{
|
|
2034
|
-
"kind": "js",
|
|
2035
|
-
"name": "SkdxChatComposerSendDetail",
|
|
2036
|
-
"declaration": {
|
|
2037
|
-
"name": "SkdxChatComposerSendDetail",
|
|
2038
|
-
"module": "./ChatComposer"
|
|
2039
|
-
}
|
|
2040
|
-
},
|
|
2041
|
-
{
|
|
2042
|
-
"kind": "js",
|
|
2043
|
-
"name": "SkdxChatComposerSubmitKey",
|
|
1886
|
+
"name": "SkdxForgotPasswordPage",
|
|
2044
1887
|
"declaration": {
|
|
2045
|
-
"name": "
|
|
2046
|
-
"module": "./
|
|
1888
|
+
"name": "SkdxForgotPasswordPage",
|
|
1889
|
+
"module": "./ForgotPasswordPage"
|
|
2047
1890
|
}
|
|
2048
1891
|
},
|
|
2049
1892
|
{
|
|
2050
1893
|
"kind": "js",
|
|
2051
|
-
"name": "
|
|
1894
|
+
"name": "SkdxForgotPasswordDetail",
|
|
2052
1895
|
"declaration": {
|
|
2053
|
-
"name": "
|
|
2054
|
-
"module": "./
|
|
1896
|
+
"name": "SkdxForgotPasswordDetail",
|
|
1897
|
+
"module": "./ForgotPasswordPage"
|
|
2055
1898
|
}
|
|
2056
1899
|
}
|
|
2057
1900
|
]
|
|
@@ -2198,41 +2041,64 @@
|
|
|
2198
2041
|
},
|
|
2199
2042
|
{
|
|
2200
2043
|
"kind": "javascript-module",
|
|
2201
|
-
"path": "src/
|
|
2044
|
+
"path": "src/chat-composer/ChatComposer.ts",
|
|
2202
2045
|
"declarations": [
|
|
2203
2046
|
{
|
|
2204
2047
|
"kind": "class",
|
|
2205
|
-
"description": "
|
|
2206
|
-
"name": "
|
|
2207
|
-
"
|
|
2048
|
+
"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.",
|
|
2049
|
+
"name": "SkdxChatComposer",
|
|
2050
|
+
"slots": [
|
|
2208
2051
|
{
|
|
2209
|
-
"
|
|
2210
|
-
"name": "
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
"
|
|
2215
|
-
"required": true
|
|
2052
|
+
"description": "Controls rendered inside the field before the textarea, such as an attach button.",
|
|
2053
|
+
"name": "leading"
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"description": "Controls rendered inside the field after the textarea, such as a model picker.",
|
|
2057
|
+
"name": "trailing"
|
|
2216
2058
|
},
|
|
2059
|
+
{
|
|
2060
|
+
"description": "Attached files or chips rendered in a row above the field.",
|
|
2061
|
+
"name": "attachments"
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"description": "Usage counters or hints rendered in a row below the field.",
|
|
2065
|
+
"name": "footer"
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"description": "Glyph rendered inside the send button in place of its text, making it icon-only.",
|
|
2069
|
+
"name": "send-icon"
|
|
2070
|
+
}
|
|
2071
|
+
],
|
|
2072
|
+
"members": [
|
|
2217
2073
|
{
|
|
2218
2074
|
"kind": "field",
|
|
2219
2075
|
"name": "value",
|
|
2220
2076
|
"type": {
|
|
2221
2077
|
"text": "string | undefined | undefined"
|
|
2222
2078
|
},
|
|
2223
|
-
"description": "
|
|
2079
|
+
"description": "Current message text, for controlled usage paired with `value-change`.",
|
|
2224
2080
|
"default": "undefined",
|
|
2225
2081
|
"attribute": "value"
|
|
2226
2082
|
},
|
|
2227
2083
|
{
|
|
2228
2084
|
"kind": "field",
|
|
2229
2085
|
"name": "defaultValue",
|
|
2086
|
+
"type": {
|
|
2087
|
+
"text": "string"
|
|
2088
|
+
},
|
|
2089
|
+
"default": "''",
|
|
2090
|
+
"description": "Initial message text for uncontrolled usage, read only on mount.",
|
|
2091
|
+
"attribute": "default-value"
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
"kind": "field",
|
|
2095
|
+
"name": "placeholder",
|
|
2230
2096
|
"type": {
|
|
2231
2097
|
"text": "string | undefined | undefined"
|
|
2232
2098
|
},
|
|
2233
|
-
"description": "
|
|
2099
|
+
"description": "Hint text shown in the empty textarea, rendered as the native placeholder.",
|
|
2234
2100
|
"default": "undefined",
|
|
2235
|
-
"attribute": "
|
|
2101
|
+
"attribute": "placeholder"
|
|
2236
2102
|
},
|
|
2237
2103
|
{
|
|
2238
2104
|
"kind": "field",
|
|
@@ -2240,73 +2106,79 @@
|
|
|
2240
2106
|
"type": {
|
|
2241
2107
|
"text": "string"
|
|
2242
2108
|
},
|
|
2243
|
-
"default": "'
|
|
2244
|
-
"description": "Accessible name of the
|
|
2109
|
+
"default": "'Message'",
|
|
2110
|
+
"description": "Accessible name of the message textarea, read by assistive technology.",
|
|
2245
2111
|
"attribute": "label"
|
|
2246
2112
|
},
|
|
2247
2113
|
{
|
|
2248
2114
|
"kind": "field",
|
|
2249
|
-
"name": "
|
|
2115
|
+
"name": "sendLabel",
|
|
2250
2116
|
"type": {
|
|
2251
2117
|
"text": "string"
|
|
2252
2118
|
},
|
|
2253
|
-
"default": "'
|
|
2254
|
-
"description": "
|
|
2255
|
-
"attribute": "
|
|
2119
|
+
"default": "'Send'",
|
|
2120
|
+
"description": "Text of the send button, and its accessible name when the `send-icon` slot is filled.",
|
|
2121
|
+
"attribute": "send-label"
|
|
2256
2122
|
},
|
|
2257
2123
|
{
|
|
2258
2124
|
"kind": "field",
|
|
2259
|
-
"name": "
|
|
2125
|
+
"name": "submitKey",
|
|
2260
2126
|
"type": {
|
|
2261
|
-
"text": "
|
|
2127
|
+
"text": "SkdxChatComposerSubmitKey"
|
|
2262
2128
|
},
|
|
2263
|
-
"default": "'
|
|
2264
|
-
"description": "
|
|
2265
|
-
"attribute": "
|
|
2129
|
+
"default": "'enter'",
|
|
2130
|
+
"description": "Which key sends from the textarea; the other Enter presses insert a newline.",
|
|
2131
|
+
"attribute": "submit-key"
|
|
2266
2132
|
},
|
|
2267
2133
|
{
|
|
2268
2134
|
"kind": "field",
|
|
2269
|
-
"name": "
|
|
2135
|
+
"name": "maxRows",
|
|
2270
2136
|
"type": {
|
|
2271
|
-
"text": "
|
|
2137
|
+
"text": "number"
|
|
2272
2138
|
},
|
|
2273
|
-
"
|
|
2274
|
-
"
|
|
2275
|
-
"attribute": "
|
|
2139
|
+
"default": "8",
|
|
2140
|
+
"description": "Caps how far the auto-growing textarea grows, in rows, before it scrolls.",
|
|
2141
|
+
"attribute": "max-rows"
|
|
2276
2142
|
},
|
|
2277
2143
|
{
|
|
2278
2144
|
"kind": "field",
|
|
2279
|
-
"name": "
|
|
2145
|
+
"name": "maxLength",
|
|
2280
2146
|
"type": {
|
|
2281
|
-
"text": "
|
|
2147
|
+
"text": "number | undefined | undefined"
|
|
2282
2148
|
},
|
|
2283
|
-
"
|
|
2284
|
-
"
|
|
2285
|
-
"attribute": "
|
|
2149
|
+
"description": "Native `maxlength` of the textarea — the longest message it accepts.",
|
|
2150
|
+
"default": "undefined",
|
|
2151
|
+
"attribute": "max-length"
|
|
2286
2152
|
},
|
|
2287
2153
|
{
|
|
2288
2154
|
"kind": "field",
|
|
2289
|
-
"name": "
|
|
2155
|
+
"name": "disabled",
|
|
2290
2156
|
"type": {
|
|
2291
|
-
"text": "
|
|
2157
|
+
"text": "boolean"
|
|
2292
2158
|
},
|
|
2293
|
-
"
|
|
2294
|
-
"
|
|
2159
|
+
"default": "false",
|
|
2160
|
+
"description": "Disables the textarea and the send button, blocking every send path.",
|
|
2161
|
+
"attribute": "disabled"
|
|
2295
2162
|
},
|
|
2296
2163
|
{
|
|
2297
2164
|
"kind": "field",
|
|
2298
|
-
"name": "
|
|
2165
|
+
"name": "pending",
|
|
2299
2166
|
"type": {
|
|
2300
|
-
"text": "
|
|
2167
|
+
"text": "boolean"
|
|
2301
2168
|
},
|
|
2302
|
-
"
|
|
2303
|
-
"
|
|
2169
|
+
"default": "false",
|
|
2170
|
+
"description": "Marks a send in flight: the button is busy and inert, the textarea stays editable.",
|
|
2171
|
+
"attribute": "pending"
|
|
2304
2172
|
}
|
|
2305
2173
|
],
|
|
2306
2174
|
"events": [
|
|
2307
2175
|
{
|
|
2308
|
-
"description": "Fires with
|
|
2176
|
+
"description": "Fires with the new text on every edit, including the clear that follows an uncontrolled send.",
|
|
2309
2177
|
"name": "value-change"
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"description": "Fires with the message text when the send button is activated or the configured submit key is pressed.",
|
|
2181
|
+
"name": "send"
|
|
2310
2182
|
}
|
|
2311
2183
|
],
|
|
2312
2184
|
"attributes": [
|
|
@@ -2315,519 +2187,154 @@
|
|
|
2315
2187
|
"type": {
|
|
2316
2188
|
"text": "string | undefined | undefined"
|
|
2317
2189
|
},
|
|
2318
|
-
"description": "
|
|
2190
|
+
"description": "Current message text, for controlled usage paired with `value-change`.",
|
|
2319
2191
|
"default": "undefined",
|
|
2320
2192
|
"fieldName": "value"
|
|
2321
2193
|
},
|
|
2322
2194
|
{
|
|
2323
2195
|
"name": "default-value",
|
|
2324
2196
|
"type": {
|
|
2325
|
-
"text": "string
|
|
2197
|
+
"text": "string"
|
|
2326
2198
|
},
|
|
2327
|
-
"
|
|
2328
|
-
"
|
|
2199
|
+
"default": "''",
|
|
2200
|
+
"description": "Initial message text for uncontrolled usage, read only on mount.",
|
|
2329
2201
|
"fieldName": "defaultValue"
|
|
2330
2202
|
},
|
|
2331
2203
|
{
|
|
2332
|
-
"name": "
|
|
2204
|
+
"name": "placeholder",
|
|
2333
2205
|
"type": {
|
|
2334
|
-
"text": "string"
|
|
2206
|
+
"text": "string | undefined | undefined"
|
|
2335
2207
|
},
|
|
2336
|
-
"
|
|
2337
|
-
"
|
|
2338
|
-
"fieldName": "
|
|
2208
|
+
"description": "Hint text shown in the empty textarea, rendered as the native placeholder.",
|
|
2209
|
+
"default": "undefined",
|
|
2210
|
+
"fieldName": "placeholder"
|
|
2339
2211
|
},
|
|
2340
2212
|
{
|
|
2341
|
-
"name": "
|
|
2213
|
+
"name": "label",
|
|
2342
2214
|
"type": {
|
|
2343
2215
|
"text": "string"
|
|
2344
2216
|
},
|
|
2345
|
-
"default": "'
|
|
2346
|
-
"description": "
|
|
2347
|
-
"fieldName": "
|
|
2217
|
+
"default": "'Message'",
|
|
2218
|
+
"description": "Accessible name of the message textarea, read by assistive technology.",
|
|
2219
|
+
"fieldName": "label"
|
|
2348
2220
|
},
|
|
2349
2221
|
{
|
|
2350
|
-
"name": "
|
|
2222
|
+
"name": "send-label",
|
|
2351
2223
|
"type": {
|
|
2352
2224
|
"text": "string"
|
|
2353
2225
|
},
|
|
2354
|
-
"default": "'
|
|
2355
|
-
"description": "
|
|
2356
|
-
"fieldName": "
|
|
2226
|
+
"default": "'Send'",
|
|
2227
|
+
"description": "Text of the send button, and its accessible name when the `send-icon` slot is filled.",
|
|
2228
|
+
"fieldName": "sendLabel"
|
|
2357
2229
|
},
|
|
2358
2230
|
{
|
|
2359
|
-
"name": "
|
|
2231
|
+
"name": "submit-key",
|
|
2360
2232
|
"type": {
|
|
2361
|
-
"text": "
|
|
2233
|
+
"text": "SkdxChatComposerSubmitKey"
|
|
2362
2234
|
},
|
|
2363
|
-
"
|
|
2364
|
-
"
|
|
2365
|
-
"fieldName": "
|
|
2235
|
+
"default": "'enter'",
|
|
2236
|
+
"description": "Which key sends from the textarea; the other Enter presses insert a newline.",
|
|
2237
|
+
"fieldName": "submitKey"
|
|
2366
2238
|
},
|
|
2367
2239
|
{
|
|
2368
|
-
"name": "
|
|
2369
|
-
"type": {
|
|
2370
|
-
"text": "boolean"
|
|
2371
|
-
},
|
|
2372
|
-
"default": "false",
|
|
2373
|
-
"description": "Replaces the rows with decorative placeholder lines and marks the host `aria-busy`.",
|
|
2374
|
-
"fieldName": "loading"
|
|
2375
|
-
}
|
|
2376
|
-
],
|
|
2377
|
-
"superclass": {
|
|
2378
|
-
"name": "LitElement",
|
|
2379
|
-
"package": "lit"
|
|
2380
|
-
},
|
|
2381
|
-
"tagName": "skdx-conversation-list",
|
|
2382
|
-
"customElement": true
|
|
2383
|
-
}
|
|
2384
|
-
],
|
|
2385
|
-
"exports": [
|
|
2386
|
-
{
|
|
2387
|
-
"kind": "js",
|
|
2388
|
-
"name": "SkdxConversationList",
|
|
2389
|
-
"declaration": {
|
|
2390
|
-
"name": "SkdxConversationList",
|
|
2391
|
-
"module": "src/conversation-list/ConversationList.ts"
|
|
2392
|
-
}
|
|
2393
|
-
},
|
|
2394
|
-
{
|
|
2395
|
-
"kind": "custom-element-definition",
|
|
2396
|
-
"name": "skdx-conversation-list",
|
|
2397
|
-
"declaration": {
|
|
2398
|
-
"name": "SkdxConversationList",
|
|
2399
|
-
"module": "src/conversation-list/ConversationList.ts"
|
|
2400
|
-
}
|
|
2401
|
-
}
|
|
2402
|
-
]
|
|
2403
|
-
},
|
|
2404
|
-
{
|
|
2405
|
-
"kind": "javascript-module",
|
|
2406
|
-
"path": "src/conversation-list/index.ts",
|
|
2407
|
-
"declarations": [],
|
|
2408
|
-
"exports": [
|
|
2409
|
-
{
|
|
2410
|
-
"kind": "js",
|
|
2411
|
-
"name": "SkdxConversationList",
|
|
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",
|
|
2428
|
-
"declaration": {
|
|
2429
|
-
"name": "SkdxConversationListValueChangeDetail",
|
|
2430
|
-
"module": "./ConversationList"
|
|
2431
|
-
}
|
|
2432
|
-
}
|
|
2433
|
-
]
|
|
2434
|
-
},
|
|
2435
|
-
{
|
|
2436
|
-
"kind": "javascript-module",
|
|
2437
|
-
"path": "src/onboarding-checklist/OnboardingChecklist.ts",
|
|
2438
|
-
"declarations": [
|
|
2439
|
-
{
|
|
2440
|
-
"kind": "class",
|
|
2441
|
-
"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.",
|
|
2442
|
-
"name": "SkdxOnboardingChecklist",
|
|
2443
|
-
"members": [
|
|
2444
|
-
{
|
|
2445
|
-
"kind": "field",
|
|
2446
|
-
"name": "title",
|
|
2240
|
+
"name": "max-rows",
|
|
2447
2241
|
"type": {
|
|
2448
|
-
"text": "
|
|
2242
|
+
"text": "number"
|
|
2449
2243
|
},
|
|
2450
|
-
"
|
|
2451
|
-
"
|
|
2452
|
-
"
|
|
2244
|
+
"default": "8",
|
|
2245
|
+
"description": "Caps how far the auto-growing textarea grows, in rows, before it scrolls.",
|
|
2246
|
+
"fieldName": "maxRows"
|
|
2453
2247
|
},
|
|
2454
2248
|
{
|
|
2455
|
-
"
|
|
2456
|
-
"name": "description",
|
|
2249
|
+
"name": "max-length",
|
|
2457
2250
|
"type": {
|
|
2458
|
-
"text": "
|
|
2251
|
+
"text": "number | undefined | undefined"
|
|
2459
2252
|
},
|
|
2460
|
-
"description": "
|
|
2253
|
+
"description": "Native `maxlength` of the textarea — the longest message it accepts.",
|
|
2461
2254
|
"default": "undefined",
|
|
2462
|
-
"
|
|
2255
|
+
"fieldName": "maxLength"
|
|
2463
2256
|
},
|
|
2464
2257
|
{
|
|
2465
|
-
"
|
|
2466
|
-
"name": "headingLevel",
|
|
2467
|
-
"type": {
|
|
2468
|
-
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
2469
|
-
},
|
|
2470
|
-
"default": "2",
|
|
2471
|
-
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
2472
|
-
"attribute": "heading-level"
|
|
2473
|
-
},
|
|
2474
|
-
{
|
|
2475
|
-
"kind": "field",
|
|
2476
|
-
"name": "items",
|
|
2477
|
-
"type": {
|
|
2478
|
-
"text": "readonly SkdxOnboardingChecklistItem[]"
|
|
2479
|
-
},
|
|
2480
|
-
"description": "The tasks to complete, in render order, each with its own state, optional flag and action label.",
|
|
2481
|
-
"required": true
|
|
2482
|
-
},
|
|
2483
|
-
{
|
|
2484
|
-
"kind": "field",
|
|
2485
|
-
"name": "getProgressLabel",
|
|
2486
|
-
"type": {
|
|
2487
|
-
"text": "(complete: number, total: number) => string | undefined"
|
|
2488
|
-
},
|
|
2489
|
-
"description": "Formats the overall progress meter's readout from the completed and total item counts.",
|
|
2490
|
-
"default": "defaultGetProgressLabel"
|
|
2491
|
-
},
|
|
2492
|
-
{
|
|
2493
|
-
"kind": "field",
|
|
2494
|
-
"name": "completeLabel",
|
|
2495
|
-
"type": {
|
|
2496
|
-
"text": "string"
|
|
2497
|
-
},
|
|
2498
|
-
"default": "'Completed'",
|
|
2499
|
-
"description": "Visually hidden text appended after a completed item's title, announcing its completion.",
|
|
2500
|
-
"attribute": "complete-label"
|
|
2501
|
-
},
|
|
2502
|
-
{
|
|
2503
|
-
"kind": "field",
|
|
2504
|
-
"name": "optionalLabel",
|
|
2505
|
-
"type": {
|
|
2506
|
-
"text": "string"
|
|
2507
|
-
},
|
|
2508
|
-
"default": "'Optional'",
|
|
2509
|
-
"description": "Text rendered beside an optional item's title.",
|
|
2510
|
-
"attribute": "optional-label"
|
|
2511
|
-
}
|
|
2512
|
-
],
|
|
2513
|
-
"events": [
|
|
2514
|
-
{
|
|
2515
|
-
"description": "Fires when an item's action button is activated, carrying the full item that was acted on.",
|
|
2516
|
-
"name": "action"
|
|
2517
|
-
}
|
|
2518
|
-
],
|
|
2519
|
-
"attributes": [
|
|
2520
|
-
{
|
|
2521
|
-
"name": "title",
|
|
2522
|
-
"type": {
|
|
2523
|
-
"text": "string"
|
|
2524
|
-
},
|
|
2525
|
-
"description": "Heading text naming the checklist, rendered into a derived Heading that names the section.",
|
|
2526
|
-
"fieldName": "title",
|
|
2527
|
-
"required": true
|
|
2528
|
-
},
|
|
2529
|
-
{
|
|
2530
|
-
"name": "description",
|
|
2531
|
-
"type": {
|
|
2532
|
-
"text": "string | undefined | undefined"
|
|
2533
|
-
},
|
|
2534
|
-
"description": "Supporting copy rendered below the title, explaining what the checklist covers.",
|
|
2535
|
-
"default": "undefined",
|
|
2536
|
-
"fieldName": "description"
|
|
2537
|
-
},
|
|
2538
|
-
{
|
|
2539
|
-
"name": "heading-level",
|
|
2540
|
-
"type": {
|
|
2541
|
-
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
2542
|
-
},
|
|
2543
|
-
"default": "2",
|
|
2544
|
-
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
2545
|
-
"fieldName": "headingLevel"
|
|
2546
|
-
},
|
|
2547
|
-
{
|
|
2548
|
-
"name": "complete-label",
|
|
2549
|
-
"type": {
|
|
2550
|
-
"text": "string"
|
|
2551
|
-
},
|
|
2552
|
-
"default": "'Completed'",
|
|
2553
|
-
"description": "Visually hidden text appended after a completed item's title, announcing its completion.",
|
|
2554
|
-
"fieldName": "completeLabel"
|
|
2555
|
-
},
|
|
2556
|
-
{
|
|
2557
|
-
"name": "optional-label",
|
|
2558
|
-
"type": {
|
|
2559
|
-
"text": "string"
|
|
2560
|
-
},
|
|
2561
|
-
"default": "'Optional'",
|
|
2562
|
-
"description": "Text rendered beside an optional item's title.",
|
|
2563
|
-
"fieldName": "optionalLabel"
|
|
2564
|
-
}
|
|
2565
|
-
],
|
|
2566
|
-
"superclass": {
|
|
2567
|
-
"name": "LitElement",
|
|
2568
|
-
"package": "lit"
|
|
2569
|
-
},
|
|
2570
|
-
"tagName": "skdx-onboarding-checklist",
|
|
2571
|
-
"customElement": true
|
|
2572
|
-
}
|
|
2573
|
-
],
|
|
2574
|
-
"exports": [
|
|
2575
|
-
{
|
|
2576
|
-
"kind": "js",
|
|
2577
|
-
"name": "SkdxOnboardingChecklist",
|
|
2578
|
-
"declaration": {
|
|
2579
|
-
"name": "SkdxOnboardingChecklist",
|
|
2580
|
-
"module": "src/onboarding-checklist/OnboardingChecklist.ts"
|
|
2581
|
-
}
|
|
2582
|
-
},
|
|
2583
|
-
{
|
|
2584
|
-
"kind": "custom-element-definition",
|
|
2585
|
-
"name": "skdx-onboarding-checklist",
|
|
2586
|
-
"declaration": {
|
|
2587
|
-
"name": "SkdxOnboardingChecklist",
|
|
2588
|
-
"module": "src/onboarding-checklist/OnboardingChecklist.ts"
|
|
2589
|
-
}
|
|
2590
|
-
}
|
|
2591
|
-
]
|
|
2592
|
-
},
|
|
2593
|
-
{
|
|
2594
|
-
"kind": "javascript-module",
|
|
2595
|
-
"path": "src/onboarding-checklist/index.ts",
|
|
2596
|
-
"declarations": [],
|
|
2597
|
-
"exports": [
|
|
2598
|
-
{
|
|
2599
|
-
"kind": "js",
|
|
2600
|
-
"name": "SkdxOnboardingChecklist",
|
|
2601
|
-
"declaration": {
|
|
2602
|
-
"name": "SkdxOnboardingChecklist",
|
|
2603
|
-
"module": "./OnboardingChecklist"
|
|
2604
|
-
}
|
|
2605
|
-
},
|
|
2606
|
-
{
|
|
2607
|
-
"kind": "js",
|
|
2608
|
-
"name": "SkdxOnboardingChecklistItem",
|
|
2609
|
-
"declaration": {
|
|
2610
|
-
"name": "SkdxOnboardingChecklistItem",
|
|
2611
|
-
"module": "./OnboardingChecklist"
|
|
2612
|
-
}
|
|
2613
|
-
},
|
|
2614
|
-
{
|
|
2615
|
-
"kind": "js",
|
|
2616
|
-
"name": "SkdxOnboardingChecklistItemState",
|
|
2617
|
-
"declaration": {
|
|
2618
|
-
"name": "SkdxOnboardingChecklistItemState",
|
|
2619
|
-
"module": "./OnboardingChecklist"
|
|
2620
|
-
}
|
|
2621
|
-
}
|
|
2622
|
-
]
|
|
2623
|
-
},
|
|
2624
|
-
{
|
|
2625
|
-
"kind": "javascript-module",
|
|
2626
|
-
"path": "src/forgot-password-page/ForgotPasswordPage.ts",
|
|
2627
|
-
"declarations": [
|
|
2628
|
-
{
|
|
2629
|
-
"kind": "class",
|
|
2630
|
-
"description": "Forgot-password block: a description, one email field and a submit button,\nreplaced entirely by a success alert once the request is accepted.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-forgot-password-page` on the host, then `__panel`,\n`__title`, `__description`, `__error`, `__success`, `__form`, `__field`,\n`__submit` and `__footer`.",
|
|
2631
|
-
"name": "SkdxForgotPasswordPage",
|
|
2632
|
-
"slots": [
|
|
2633
|
-
{
|
|
2634
|
-
"description": "Extra fields rendered inside the form, above the submit button.",
|
|
2635
|
-
"name": ""
|
|
2636
|
-
},
|
|
2637
|
-
{
|
|
2638
|
-
"description": "Navigation below the form, such as a link back to the sign-in page.",
|
|
2639
|
-
"name": "footer"
|
|
2640
|
-
}
|
|
2641
|
-
],
|
|
2642
|
-
"members": [
|
|
2643
|
-
{
|
|
2644
|
-
"kind": "field",
|
|
2645
|
-
"name": "title",
|
|
2646
|
-
"type": {
|
|
2647
|
-
"text": "string"
|
|
2648
|
-
},
|
|
2649
|
-
"default": "'Reset your password'",
|
|
2650
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
2651
|
-
"attribute": "title"
|
|
2652
|
-
},
|
|
2653
|
-
{
|
|
2654
|
-
"kind": "field",
|
|
2655
|
-
"name": "description",
|
|
2656
|
-
"type": {
|
|
2657
|
-
"text": "string | undefined"
|
|
2658
|
-
},
|
|
2659
|
-
"description": "Supporting copy rendered below the title, explaining what the reset link does.",
|
|
2660
|
-
"default": "undefined",
|
|
2661
|
-
"attribute": "description"
|
|
2662
|
-
},
|
|
2663
|
-
{
|
|
2664
|
-
"kind": "field",
|
|
2665
|
-
"name": "error",
|
|
2666
|
-
"type": {
|
|
2667
|
-
"text": "string | undefined"
|
|
2668
|
-
},
|
|
2669
|
-
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
2670
|
-
"default": "undefined",
|
|
2671
|
-
"attribute": "error"
|
|
2672
|
-
},
|
|
2673
|
-
{
|
|
2674
|
-
"kind": "field",
|
|
2675
|
-
"name": "success",
|
|
2676
|
-
"type": {
|
|
2677
|
-
"text": "string | undefined"
|
|
2678
|
-
},
|
|
2679
|
-
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
2680
|
-
"default": "undefined",
|
|
2681
|
-
"attribute": "success"
|
|
2682
|
-
},
|
|
2683
|
-
{
|
|
2684
|
-
"kind": "field",
|
|
2685
|
-
"name": "pending",
|
|
2686
|
-
"type": {
|
|
2687
|
-
"text": "boolean"
|
|
2688
|
-
},
|
|
2689
|
-
"default": "false",
|
|
2690
|
-
"description": "Marks the request in flight, making the submit button busy while the email field stays editable.",
|
|
2691
|
-
"attribute": "pending"
|
|
2692
|
-
},
|
|
2693
|
-
{
|
|
2694
|
-
"kind": "field",
|
|
2695
|
-
"name": "emailLabel",
|
|
2696
|
-
"type": {
|
|
2697
|
-
"text": "string"
|
|
2698
|
-
},
|
|
2699
|
-
"default": "'Email'",
|
|
2700
|
-
"description": "Label of the email field the reset link is requested for.",
|
|
2701
|
-
"attribute": "email-label"
|
|
2702
|
-
},
|
|
2703
|
-
{
|
|
2704
|
-
"kind": "field",
|
|
2705
|
-
"name": "submitLabel",
|
|
2706
|
-
"type": {
|
|
2707
|
-
"text": "string"
|
|
2708
|
-
},
|
|
2709
|
-
"default": "'Send reset link'",
|
|
2710
|
-
"description": "Text of the form's submit button.",
|
|
2711
|
-
"attribute": "submit-label"
|
|
2712
|
-
}
|
|
2713
|
-
],
|
|
2714
|
-
"events": [
|
|
2715
|
-
{
|
|
2716
|
-
"description": "Fires with `{ email }` when the form submits with an address that passes constraint validation.",
|
|
2717
|
-
"name": "request-reset"
|
|
2718
|
-
}
|
|
2719
|
-
],
|
|
2720
|
-
"attributes": [
|
|
2721
|
-
{
|
|
2722
|
-
"name": "title",
|
|
2723
|
-
"type": {
|
|
2724
|
-
"text": "string"
|
|
2725
|
-
},
|
|
2726
|
-
"default": "'Reset your password'",
|
|
2727
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
2728
|
-
"fieldName": "title"
|
|
2729
|
-
},
|
|
2730
|
-
{
|
|
2731
|
-
"name": "description",
|
|
2732
|
-
"type": {
|
|
2733
|
-
"text": "string | undefined"
|
|
2734
|
-
},
|
|
2735
|
-
"description": "Supporting copy rendered below the title, explaining what the reset link does.",
|
|
2736
|
-
"default": "undefined",
|
|
2737
|
-
"fieldName": "description"
|
|
2738
|
-
},
|
|
2739
|
-
{
|
|
2740
|
-
"name": "error",
|
|
2741
|
-
"type": {
|
|
2742
|
-
"text": "string | undefined"
|
|
2743
|
-
},
|
|
2744
|
-
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
2745
|
-
"default": "undefined",
|
|
2746
|
-
"fieldName": "error"
|
|
2747
|
-
},
|
|
2748
|
-
{
|
|
2749
|
-
"name": "success",
|
|
2750
|
-
"type": {
|
|
2751
|
-
"text": "string | undefined"
|
|
2752
|
-
},
|
|
2753
|
-
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
2754
|
-
"default": "undefined",
|
|
2755
|
-
"fieldName": "success"
|
|
2756
|
-
},
|
|
2757
|
-
{
|
|
2758
|
-
"name": "pending",
|
|
2258
|
+
"name": "disabled",
|
|
2759
2259
|
"type": {
|
|
2760
2260
|
"text": "boolean"
|
|
2761
2261
|
},
|
|
2762
2262
|
"default": "false",
|
|
2763
|
-
"description": "
|
|
2764
|
-
"fieldName": "
|
|
2765
|
-
},
|
|
2766
|
-
{
|
|
2767
|
-
"name": "email-label",
|
|
2768
|
-
"type": {
|
|
2769
|
-
"text": "string"
|
|
2770
|
-
},
|
|
2771
|
-
"default": "'Email'",
|
|
2772
|
-
"description": "Label of the email field the reset link is requested for.",
|
|
2773
|
-
"fieldName": "emailLabel"
|
|
2263
|
+
"description": "Disables the textarea and the send button, blocking every send path.",
|
|
2264
|
+
"fieldName": "disabled"
|
|
2774
2265
|
},
|
|
2775
2266
|
{
|
|
2776
|
-
"name": "
|
|
2267
|
+
"name": "pending",
|
|
2777
2268
|
"type": {
|
|
2778
|
-
"text": "
|
|
2269
|
+
"text": "boolean"
|
|
2779
2270
|
},
|
|
2780
|
-
"default": "
|
|
2781
|
-
"description": "
|
|
2782
|
-
"fieldName": "
|
|
2271
|
+
"default": "false",
|
|
2272
|
+
"description": "Marks a send in flight: the button is busy and inert, the textarea stays editable.",
|
|
2273
|
+
"fieldName": "pending"
|
|
2783
2274
|
}
|
|
2784
2275
|
],
|
|
2785
2276
|
"superclass": {
|
|
2786
2277
|
"name": "LitElement",
|
|
2787
2278
|
"package": "lit"
|
|
2788
2279
|
},
|
|
2789
|
-
"tagName": "skdx-
|
|
2280
|
+
"tagName": "skdx-chat-composer",
|
|
2790
2281
|
"customElement": true
|
|
2791
2282
|
}
|
|
2792
2283
|
],
|
|
2793
2284
|
"exports": [
|
|
2794
2285
|
{
|
|
2795
2286
|
"kind": "js",
|
|
2796
|
-
"name": "
|
|
2287
|
+
"name": "SkdxChatComposer",
|
|
2797
2288
|
"declaration": {
|
|
2798
|
-
"name": "
|
|
2799
|
-
"module": "src/
|
|
2289
|
+
"name": "SkdxChatComposer",
|
|
2290
|
+
"module": "src/chat-composer/ChatComposer.ts"
|
|
2800
2291
|
}
|
|
2801
2292
|
},
|
|
2802
2293
|
{
|
|
2803
2294
|
"kind": "custom-element-definition",
|
|
2804
|
-
"name": "skdx-
|
|
2295
|
+
"name": "skdx-chat-composer",
|
|
2805
2296
|
"declaration": {
|
|
2806
|
-
"name": "
|
|
2807
|
-
"module": "src/
|
|
2297
|
+
"name": "SkdxChatComposer",
|
|
2298
|
+
"module": "src/chat-composer/ChatComposer.ts"
|
|
2808
2299
|
}
|
|
2809
2300
|
}
|
|
2810
2301
|
]
|
|
2811
2302
|
},
|
|
2812
2303
|
{
|
|
2813
2304
|
"kind": "javascript-module",
|
|
2814
|
-
"path": "src/
|
|
2305
|
+
"path": "src/chat-composer/index.ts",
|
|
2815
2306
|
"declarations": [],
|
|
2816
2307
|
"exports": [
|
|
2817
2308
|
{
|
|
2818
2309
|
"kind": "js",
|
|
2819
|
-
"name": "
|
|
2310
|
+
"name": "SkdxChatComposer",
|
|
2820
2311
|
"declaration": {
|
|
2821
|
-
"name": "
|
|
2822
|
-
"module": "./
|
|
2312
|
+
"name": "SkdxChatComposer",
|
|
2313
|
+
"module": "./ChatComposer"
|
|
2823
2314
|
}
|
|
2824
2315
|
},
|
|
2825
2316
|
{
|
|
2826
2317
|
"kind": "js",
|
|
2827
|
-
"name": "
|
|
2318
|
+
"name": "SkdxChatComposerSendDetail",
|
|
2828
2319
|
"declaration": {
|
|
2829
|
-
"name": "
|
|
2830
|
-
"module": "./
|
|
2320
|
+
"name": "SkdxChatComposerSendDetail",
|
|
2321
|
+
"module": "./ChatComposer"
|
|
2322
|
+
}
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"kind": "js",
|
|
2326
|
+
"name": "SkdxChatComposerSubmitKey",
|
|
2327
|
+
"declaration": {
|
|
2328
|
+
"name": "SkdxChatComposerSubmitKey",
|
|
2329
|
+
"module": "./ChatComposer"
|
|
2330
|
+
}
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
"kind": "js",
|
|
2334
|
+
"name": "SkdxChatComposerValueChangeDetail",
|
|
2335
|
+
"declaration": {
|
|
2336
|
+
"name": "SkdxChatComposerValueChangeDetail",
|
|
2337
|
+
"module": "./ChatComposer"
|
|
2831
2338
|
}
|
|
2832
2339
|
}
|
|
2833
2340
|
]
|
|
@@ -3185,6 +2692,195 @@
|
|
|
3185
2692
|
}
|
|
3186
2693
|
]
|
|
3187
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",
|
|
2861
|
+
"declaration": {
|
|
2862
|
+
"name": "SkdxOnboardingChecklist",
|
|
2863
|
+
"module": "./OnboardingChecklist"
|
|
2864
|
+
}
|
|
2865
|
+
},
|
|
2866
|
+
{
|
|
2867
|
+
"kind": "js",
|
|
2868
|
+
"name": "SkdxOnboardingChecklistItem",
|
|
2869
|
+
"declaration": {
|
|
2870
|
+
"name": "SkdxOnboardingChecklistItem",
|
|
2871
|
+
"module": "./OnboardingChecklist"
|
|
2872
|
+
}
|
|
2873
|
+
},
|
|
2874
|
+
{
|
|
2875
|
+
"kind": "js",
|
|
2876
|
+
"name": "SkdxOnboardingChecklistItemState",
|
|
2877
|
+
"declaration": {
|
|
2878
|
+
"name": "SkdxOnboardingChecklistItemState",
|
|
2879
|
+
"module": "./OnboardingChecklist"
|
|
2880
|
+
}
|
|
2881
|
+
}
|
|
2882
|
+
]
|
|
2883
|
+
},
|
|
3188
2884
|
{
|
|
3189
2885
|
"kind": "javascript-module",
|
|
3190
2886
|
"path": "src/page-container/PageContainer.ts",
|
|
@@ -3586,20 +3282,20 @@
|
|
|
3586
3282
|
},
|
|
3587
3283
|
{
|
|
3588
3284
|
"kind": "javascript-module",
|
|
3589
|
-
"path": "src/
|
|
3285
|
+
"path": "src/reset-password-page/ResetPasswordPage.ts",
|
|
3590
3286
|
"declarations": [
|
|
3591
3287
|
{
|
|
3592
3288
|
"kind": "class",
|
|
3593
|
-
"description": "
|
|
3594
|
-
"name": "
|
|
3289
|
+
"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`.",
|
|
3290
|
+
"name": "SkdxResetPasswordPage",
|
|
3595
3291
|
"slots": [
|
|
3596
3292
|
{
|
|
3597
|
-
"description": "Extra fields rendered inside the form, above the
|
|
3293
|
+
"description": "Extra fields rendered inside the form, above the submit button.",
|
|
3598
3294
|
"name": ""
|
|
3599
3295
|
},
|
|
3600
3296
|
{
|
|
3601
|
-
"description": "
|
|
3602
|
-
"name": "
|
|
3297
|
+
"description": "Password rules used as the new-password field's description.",
|
|
3298
|
+
"name": "requirements"
|
|
3603
3299
|
},
|
|
3604
3300
|
{
|
|
3605
3301
|
"description": "Navigation below the form, such as a link back to the sign-in page.",
|
|
@@ -3613,19 +3309,10 @@
|
|
|
3613
3309
|
"type": {
|
|
3614
3310
|
"text": "string"
|
|
3615
3311
|
},
|
|
3616
|
-
"default": "'
|
|
3312
|
+
"default": "'Choose a new password'",
|
|
3617
3313
|
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3618
3314
|
"attribute": "title"
|
|
3619
3315
|
},
|
|
3620
|
-
{
|
|
3621
|
-
"kind": "field",
|
|
3622
|
-
"name": "providers",
|
|
3623
|
-
"type": {
|
|
3624
|
-
"text": "readonly SkdxSignInProvider[] | undefined"
|
|
3625
|
-
},
|
|
3626
|
-
"description": "Third-party providers, in render order, each rendering one button above the credentials form.",
|
|
3627
|
-
"default": "undefined"
|
|
3628
|
-
},
|
|
3629
3316
|
{
|
|
3630
3317
|
"kind": "field",
|
|
3631
3318
|
"name": "error",
|
|
@@ -3638,33 +3325,23 @@
|
|
|
3638
3325
|
},
|
|
3639
3326
|
{
|
|
3640
3327
|
"kind": "field",
|
|
3641
|
-
"name": "
|
|
3642
|
-
"type": {
|
|
3643
|
-
"text": "boolean"
|
|
3644
|
-
},
|
|
3645
|
-
"default": "false",
|
|
3646
|
-
"description": "Marks the request in flight, making the submit button busy while every field stays editable.",
|
|
3647
|
-
"attribute": "pending"
|
|
3648
|
-
},
|
|
3649
|
-
{
|
|
3650
|
-
"kind": "field",
|
|
3651
|
-
"name": "nameLabel",
|
|
3328
|
+
"name": "success",
|
|
3652
3329
|
"type": {
|
|
3653
3330
|
"text": "string | undefined"
|
|
3654
3331
|
},
|
|
3655
|
-
"description": "
|
|
3332
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
3656
3333
|
"default": "undefined",
|
|
3657
|
-
"attribute": "
|
|
3334
|
+
"attribute": "success"
|
|
3658
3335
|
},
|
|
3659
3336
|
{
|
|
3660
3337
|
"kind": "field",
|
|
3661
|
-
"name": "
|
|
3338
|
+
"name": "pending",
|
|
3662
3339
|
"type": {
|
|
3663
|
-
"text": "
|
|
3340
|
+
"text": "boolean"
|
|
3664
3341
|
},
|
|
3665
|
-
"default": "
|
|
3666
|
-
"description": "
|
|
3667
|
-
"attribute": "
|
|
3342
|
+
"default": "false",
|
|
3343
|
+
"description": "Marks the request in flight, making the submit button busy while both fields stay editable.",
|
|
3344
|
+
"attribute": "pending"
|
|
3668
3345
|
},
|
|
3669
3346
|
{
|
|
3670
3347
|
"kind": "field",
|
|
@@ -3672,8 +3349,8 @@
|
|
|
3672
3349
|
"type": {
|
|
3673
3350
|
"text": "string"
|
|
3674
3351
|
},
|
|
3675
|
-
"default": "'
|
|
3676
|
-
"description": "Label of the
|
|
3352
|
+
"default": "'New password'",
|
|
3353
|
+
"description": "Label of the field where the new password is typed.",
|
|
3677
3354
|
"attribute": "password-label"
|
|
3678
3355
|
},
|
|
3679
3356
|
{
|
|
@@ -3702,24 +3379,15 @@
|
|
|
3702
3379
|
"type": {
|
|
3703
3380
|
"text": "string"
|
|
3704
3381
|
},
|
|
3705
|
-
"default": "'
|
|
3706
|
-
"description": "Text of the
|
|
3382
|
+
"default": "'Update password'",
|
|
3383
|
+
"description": "Text of the form's submit button.",
|
|
3707
3384
|
"attribute": "submit-label"
|
|
3708
|
-
},
|
|
3709
|
-
{
|
|
3710
|
-
"kind": "field",
|
|
3711
|
-
"name": "getProviderLabel",
|
|
3712
|
-
"type": {
|
|
3713
|
-
"text": "(provider: SkdxSignInProvider) => string | undefined"
|
|
3714
|
-
},
|
|
3715
|
-
"description": "Formats a provider button's text from its entry.",
|
|
3716
|
-
"default": "defaultProviderLabel"
|
|
3717
3385
|
}
|
|
3718
3386
|
],
|
|
3719
3387
|
"events": [
|
|
3720
3388
|
{
|
|
3721
|
-
"description": "Fires with `{
|
|
3722
|
-
"name": "
|
|
3389
|
+
"description": "Fires with `{ password }` when the form submits with a valid password that matches the confirmation.",
|
|
3390
|
+
"name": "reset-password"
|
|
3723
3391
|
}
|
|
3724
3392
|
],
|
|
3725
3393
|
"attributes": [
|
|
@@ -3728,7 +3396,7 @@
|
|
|
3728
3396
|
"type": {
|
|
3729
3397
|
"text": "string"
|
|
3730
3398
|
},
|
|
3731
|
-
"default": "'
|
|
3399
|
+
"default": "'Choose a new password'",
|
|
3732
3400
|
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3733
3401
|
"fieldName": "title"
|
|
3734
3402
|
},
|
|
@@ -3742,39 +3410,30 @@
|
|
|
3742
3410
|
"fieldName": "error"
|
|
3743
3411
|
},
|
|
3744
3412
|
{
|
|
3745
|
-
"name": "
|
|
3746
|
-
"type": {
|
|
3747
|
-
"text": "boolean"
|
|
3748
|
-
},
|
|
3749
|
-
"default": "false",
|
|
3750
|
-
"description": "Marks the request in flight, making the submit button busy while every field stays editable.",
|
|
3751
|
-
"fieldName": "pending"
|
|
3752
|
-
},
|
|
3753
|
-
{
|
|
3754
|
-
"name": "name-label",
|
|
3413
|
+
"name": "success",
|
|
3755
3414
|
"type": {
|
|
3756
3415
|
"text": "string | undefined"
|
|
3757
3416
|
},
|
|
3758
|
-
"description": "
|
|
3417
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
3759
3418
|
"default": "undefined",
|
|
3760
|
-
"fieldName": "
|
|
3419
|
+
"fieldName": "success"
|
|
3761
3420
|
},
|
|
3762
3421
|
{
|
|
3763
|
-
"name": "
|
|
3422
|
+
"name": "pending",
|
|
3764
3423
|
"type": {
|
|
3765
|
-
"text": "
|
|
3424
|
+
"text": "boolean"
|
|
3766
3425
|
},
|
|
3767
|
-
"default": "
|
|
3768
|
-
"description": "
|
|
3769
|
-
"fieldName": "
|
|
3426
|
+
"default": "false",
|
|
3427
|
+
"description": "Marks the request in flight, making the submit button busy while both fields stay editable.",
|
|
3428
|
+
"fieldName": "pending"
|
|
3770
3429
|
},
|
|
3771
3430
|
{
|
|
3772
3431
|
"name": "password-label",
|
|
3773
3432
|
"type": {
|
|
3774
3433
|
"text": "string"
|
|
3775
3434
|
},
|
|
3776
|
-
"default": "'
|
|
3777
|
-
"description": "Label of the
|
|
3435
|
+
"default": "'New password'",
|
|
3436
|
+
"description": "Label of the field where the new password is typed.",
|
|
3778
3437
|
"fieldName": "passwordLabel"
|
|
3779
3438
|
},
|
|
3780
3439
|
{
|
|
@@ -3800,8 +3459,8 @@
|
|
|
3800
3459
|
"type": {
|
|
3801
3460
|
"text": "string"
|
|
3802
3461
|
},
|
|
3803
|
-
"default": "'
|
|
3804
|
-
"description": "Text of the
|
|
3462
|
+
"default": "'Update password'",
|
|
3463
|
+
"description": "Text of the form's submit button.",
|
|
3805
3464
|
"fieldName": "submitLabel"
|
|
3806
3465
|
}
|
|
3807
3466
|
],
|
|
@@ -3809,72 +3468,68 @@
|
|
|
3809
3468
|
"name": "LitElement",
|
|
3810
3469
|
"package": "lit"
|
|
3811
3470
|
},
|
|
3812
|
-
"tagName": "skdx-
|
|
3471
|
+
"tagName": "skdx-reset-password-page",
|
|
3813
3472
|
"customElement": true
|
|
3814
|
-
},
|
|
3815
|
-
{
|
|
3816
|
-
"kind": "variable",
|
|
3817
|
-
"name": "password"
|
|
3818
3473
|
}
|
|
3819
3474
|
],
|
|
3820
3475
|
"exports": [
|
|
3821
3476
|
{
|
|
3822
3477
|
"kind": "js",
|
|
3823
|
-
"name": "
|
|
3478
|
+
"name": "SkdxResetPasswordPage",
|
|
3824
3479
|
"declaration": {
|
|
3825
|
-
"name": "
|
|
3826
|
-
"module": "src/
|
|
3480
|
+
"name": "SkdxResetPasswordPage",
|
|
3481
|
+
"module": "src/reset-password-page/ResetPasswordPage.ts"
|
|
3827
3482
|
}
|
|
3828
3483
|
},
|
|
3829
3484
|
{
|
|
3830
3485
|
"kind": "custom-element-definition",
|
|
3831
|
-
"name": "skdx-
|
|
3486
|
+
"name": "skdx-reset-password-page",
|
|
3832
3487
|
"declaration": {
|
|
3833
|
-
"name": "
|
|
3834
|
-
"module": "src/
|
|
3488
|
+
"name": "SkdxResetPasswordPage",
|
|
3489
|
+
"module": "src/reset-password-page/ResetPasswordPage.ts"
|
|
3835
3490
|
}
|
|
3836
3491
|
}
|
|
3837
3492
|
]
|
|
3838
3493
|
},
|
|
3839
3494
|
{
|
|
3840
3495
|
"kind": "javascript-module",
|
|
3841
|
-
"path": "src/
|
|
3496
|
+
"path": "src/reset-password-page/index.ts",
|
|
3842
3497
|
"declarations": [],
|
|
3843
3498
|
"exports": [
|
|
3844
3499
|
{
|
|
3845
3500
|
"kind": "js",
|
|
3846
|
-
"name": "
|
|
3501
|
+
"name": "SkdxResetPasswordPage",
|
|
3847
3502
|
"declaration": {
|
|
3848
|
-
"name": "
|
|
3849
|
-
"module": "./
|
|
3503
|
+
"name": "SkdxResetPasswordPage",
|
|
3504
|
+
"module": "./ResetPasswordPage"
|
|
3850
3505
|
}
|
|
3851
3506
|
},
|
|
3852
3507
|
{
|
|
3853
3508
|
"kind": "js",
|
|
3854
|
-
"name": "
|
|
3509
|
+
"name": "SkdxResetPasswordDetail",
|
|
3855
3510
|
"declaration": {
|
|
3856
|
-
"name": "
|
|
3857
|
-
"module": "./
|
|
3511
|
+
"name": "SkdxResetPasswordDetail",
|
|
3512
|
+
"module": "./ResetPasswordPage"
|
|
3858
3513
|
}
|
|
3859
3514
|
}
|
|
3860
3515
|
]
|
|
3861
3516
|
},
|
|
3862
3517
|
{
|
|
3863
3518
|
"kind": "javascript-module",
|
|
3864
|
-
"path": "src/
|
|
3519
|
+
"path": "src/sign-up-page/SignUpPage.ts",
|
|
3865
3520
|
"declarations": [
|
|
3866
3521
|
{
|
|
3867
3522
|
"kind": "class",
|
|
3868
|
-
"description": "
|
|
3869
|
-
"name": "
|
|
3523
|
+
"description": "Sign-up block: provider buttons, a credentials form with optional name,\nconfirmation and terms fields, and a footer.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-sign-up-page` on the host, then `__panel`, `__title`,\n`__error`, `__providers`, `__provider`, `__divider`, `__form`, `__field`,\n`__terms`, `__submit` and `__footer`.",
|
|
3524
|
+
"name": "SkdxSignUpPage",
|
|
3870
3525
|
"slots": [
|
|
3871
3526
|
{
|
|
3872
|
-
"description": "Extra fields rendered inside the form, above the submit button.",
|
|
3527
|
+
"description": "Extra fields rendered inside the form, above the terms and the submit button.",
|
|
3873
3528
|
"name": ""
|
|
3874
3529
|
},
|
|
3875
3530
|
{
|
|
3876
|
-
"description": "
|
|
3877
|
-
"name": "
|
|
3531
|
+
"description": "Terms copy and links used as the label of the required terms checkbox.",
|
|
3532
|
+
"name": "terms"
|
|
3878
3533
|
},
|
|
3879
3534
|
{
|
|
3880
3535
|
"description": "Navigation below the form, such as a link back to the sign-in page.",
|
|
@@ -3888,10 +3543,19 @@
|
|
|
3888
3543
|
"type": {
|
|
3889
3544
|
"text": "string"
|
|
3890
3545
|
},
|
|
3891
|
-
"default": "'
|
|
3546
|
+
"default": "'Create account'",
|
|
3892
3547
|
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3893
3548
|
"attribute": "title"
|
|
3894
3549
|
},
|
|
3550
|
+
{
|
|
3551
|
+
"kind": "field",
|
|
3552
|
+
"name": "providers",
|
|
3553
|
+
"type": {
|
|
3554
|
+
"text": "readonly SkdxSignInProvider[] | undefined"
|
|
3555
|
+
},
|
|
3556
|
+
"description": "Third-party providers, in render order, each rendering one button above the credentials form.",
|
|
3557
|
+
"default": "undefined"
|
|
3558
|
+
},
|
|
3895
3559
|
{
|
|
3896
3560
|
"kind": "field",
|
|
3897
3561
|
"name": "error",
|
|
@@ -3904,23 +3568,33 @@
|
|
|
3904
3568
|
},
|
|
3905
3569
|
{
|
|
3906
3570
|
"kind": "field",
|
|
3907
|
-
"name": "
|
|
3571
|
+
"name": "pending",
|
|
3572
|
+
"type": {
|
|
3573
|
+
"text": "boolean"
|
|
3574
|
+
},
|
|
3575
|
+
"default": "false",
|
|
3576
|
+
"description": "Marks the request in flight, making the submit button busy while every field stays editable.",
|
|
3577
|
+
"attribute": "pending"
|
|
3578
|
+
},
|
|
3579
|
+
{
|
|
3580
|
+
"kind": "field",
|
|
3581
|
+
"name": "nameLabel",
|
|
3908
3582
|
"type": {
|
|
3909
3583
|
"text": "string | undefined"
|
|
3910
3584
|
},
|
|
3911
|
-
"description": "
|
|
3585
|
+
"description": "Label of the name field; supplying it is what makes that field render at all.",
|
|
3912
3586
|
"default": "undefined",
|
|
3913
|
-
"attribute": "
|
|
3587
|
+
"attribute": "name-label"
|
|
3914
3588
|
},
|
|
3915
3589
|
{
|
|
3916
3590
|
"kind": "field",
|
|
3917
|
-
"name": "
|
|
3591
|
+
"name": "emailLabel",
|
|
3918
3592
|
"type": {
|
|
3919
|
-
"text": "
|
|
3593
|
+
"text": "string"
|
|
3920
3594
|
},
|
|
3921
|
-
"default": "
|
|
3922
|
-
"description": "
|
|
3923
|
-
"attribute": "
|
|
3595
|
+
"default": "'Email'",
|
|
3596
|
+
"description": "Label of the email field in the credentials form.",
|
|
3597
|
+
"attribute": "email-label"
|
|
3924
3598
|
},
|
|
3925
3599
|
{
|
|
3926
3600
|
"kind": "field",
|
|
@@ -3928,8 +3602,8 @@
|
|
|
3928
3602
|
"type": {
|
|
3929
3603
|
"text": "string"
|
|
3930
3604
|
},
|
|
3931
|
-
"default": "'
|
|
3932
|
-
"description": "Label of the field
|
|
3605
|
+
"default": "'Password'",
|
|
3606
|
+
"description": "Label of the password field in the credentials form.",
|
|
3933
3607
|
"attribute": "password-label"
|
|
3934
3608
|
},
|
|
3935
3609
|
{
|
|
@@ -3958,15 +3632,24 @@
|
|
|
3958
3632
|
"type": {
|
|
3959
3633
|
"text": "string"
|
|
3960
3634
|
},
|
|
3961
|
-
"default": "'
|
|
3962
|
-
"description": "Text of the form's submit button.",
|
|
3635
|
+
"default": "'Create account'",
|
|
3636
|
+
"description": "Text of the credentials form's submit button.",
|
|
3963
3637
|
"attribute": "submit-label"
|
|
3638
|
+
},
|
|
3639
|
+
{
|
|
3640
|
+
"kind": "field",
|
|
3641
|
+
"name": "getProviderLabel",
|
|
3642
|
+
"type": {
|
|
3643
|
+
"text": "(provider: SkdxSignInProvider) => string | undefined"
|
|
3644
|
+
},
|
|
3645
|
+
"description": "Formats a provider button's text from its entry.",
|
|
3646
|
+
"default": "defaultProviderLabel"
|
|
3964
3647
|
}
|
|
3965
3648
|
],
|
|
3966
3649
|
"events": [
|
|
3967
3650
|
{
|
|
3968
|
-
"description": "Fires with `{ password }` when the form submits with
|
|
3969
|
-
"name": "
|
|
3651
|
+
"description": "Fires with `{ providerId, name?, email?, password?, termsAccepted? }` when a provider button is activated or the form submits with matching, valid fields.",
|
|
3652
|
+
"name": "sign-up"
|
|
3970
3653
|
}
|
|
3971
3654
|
],
|
|
3972
3655
|
"attributes": [
|
|
@@ -3975,7 +3658,7 @@
|
|
|
3975
3658
|
"type": {
|
|
3976
3659
|
"text": "string"
|
|
3977
3660
|
},
|
|
3978
|
-
"default": "'
|
|
3661
|
+
"default": "'Create account'",
|
|
3979
3662
|
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3980
3663
|
"fieldName": "title"
|
|
3981
3664
|
},
|
|
@@ -3989,30 +3672,39 @@
|
|
|
3989
3672
|
"fieldName": "error"
|
|
3990
3673
|
},
|
|
3991
3674
|
{
|
|
3992
|
-
"name": "
|
|
3675
|
+
"name": "pending",
|
|
3676
|
+
"type": {
|
|
3677
|
+
"text": "boolean"
|
|
3678
|
+
},
|
|
3679
|
+
"default": "false",
|
|
3680
|
+
"description": "Marks the request in flight, making the submit button busy while every field stays editable.",
|
|
3681
|
+
"fieldName": "pending"
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
"name": "name-label",
|
|
3993
3685
|
"type": {
|
|
3994
3686
|
"text": "string | undefined"
|
|
3995
3687
|
},
|
|
3996
|
-
"description": "
|
|
3688
|
+
"description": "Label of the name field; supplying it is what makes that field render at all.",
|
|
3997
3689
|
"default": "undefined",
|
|
3998
|
-
"fieldName": "
|
|
3690
|
+
"fieldName": "nameLabel"
|
|
3999
3691
|
},
|
|
4000
3692
|
{
|
|
4001
|
-
"name": "
|
|
3693
|
+
"name": "email-label",
|
|
4002
3694
|
"type": {
|
|
4003
|
-
"text": "
|
|
3695
|
+
"text": "string"
|
|
4004
3696
|
},
|
|
4005
|
-
"default": "
|
|
4006
|
-
"description": "
|
|
4007
|
-
"fieldName": "
|
|
3697
|
+
"default": "'Email'",
|
|
3698
|
+
"description": "Label of the email field in the credentials form.",
|
|
3699
|
+
"fieldName": "emailLabel"
|
|
4008
3700
|
},
|
|
4009
3701
|
{
|
|
4010
3702
|
"name": "password-label",
|
|
4011
3703
|
"type": {
|
|
4012
3704
|
"text": "string"
|
|
4013
3705
|
},
|
|
4014
|
-
"default": "'
|
|
4015
|
-
"description": "Label of the field
|
|
3706
|
+
"default": "'Password'",
|
|
3707
|
+
"description": "Label of the password field in the credentials form.",
|
|
4016
3708
|
"fieldName": "passwordLabel"
|
|
4017
3709
|
},
|
|
4018
3710
|
{
|
|
@@ -4038,8 +3730,8 @@
|
|
|
4038
3730
|
"type": {
|
|
4039
3731
|
"text": "string"
|
|
4040
3732
|
},
|
|
4041
|
-
"default": "'
|
|
4042
|
-
"description": "Text of the form's submit button.",
|
|
3733
|
+
"default": "'Create account'",
|
|
3734
|
+
"description": "Text of the credentials form's submit button.",
|
|
4043
3735
|
"fieldName": "submitLabel"
|
|
4044
3736
|
}
|
|
4045
3737
|
],
|
|
@@ -4047,48 +3739,52 @@
|
|
|
4047
3739
|
"name": "LitElement",
|
|
4048
3740
|
"package": "lit"
|
|
4049
3741
|
},
|
|
4050
|
-
"tagName": "skdx-
|
|
3742
|
+
"tagName": "skdx-sign-up-page",
|
|
4051
3743
|
"customElement": true
|
|
3744
|
+
},
|
|
3745
|
+
{
|
|
3746
|
+
"kind": "variable",
|
|
3747
|
+
"name": "password"
|
|
4052
3748
|
}
|
|
4053
3749
|
],
|
|
4054
3750
|
"exports": [
|
|
4055
3751
|
{
|
|
4056
3752
|
"kind": "js",
|
|
4057
|
-
"name": "
|
|
3753
|
+
"name": "SkdxSignUpPage",
|
|
4058
3754
|
"declaration": {
|
|
4059
|
-
"name": "
|
|
4060
|
-
"module": "src/
|
|
3755
|
+
"name": "SkdxSignUpPage",
|
|
3756
|
+
"module": "src/sign-up-page/SignUpPage.ts"
|
|
4061
3757
|
}
|
|
4062
3758
|
},
|
|
4063
3759
|
{
|
|
4064
3760
|
"kind": "custom-element-definition",
|
|
4065
|
-
"name": "skdx-
|
|
3761
|
+
"name": "skdx-sign-up-page",
|
|
4066
3762
|
"declaration": {
|
|
4067
|
-
"name": "
|
|
4068
|
-
"module": "src/
|
|
3763
|
+
"name": "SkdxSignUpPage",
|
|
3764
|
+
"module": "src/sign-up-page/SignUpPage.ts"
|
|
4069
3765
|
}
|
|
4070
3766
|
}
|
|
4071
3767
|
]
|
|
4072
3768
|
},
|
|
4073
3769
|
{
|
|
4074
3770
|
"kind": "javascript-module",
|
|
4075
|
-
"path": "src/
|
|
3771
|
+
"path": "src/sign-up-page/index.ts",
|
|
4076
3772
|
"declarations": [],
|
|
4077
3773
|
"exports": [
|
|
4078
3774
|
{
|
|
4079
3775
|
"kind": "js",
|
|
4080
|
-
"name": "
|
|
3776
|
+
"name": "SkdxSignUpPage",
|
|
4081
3777
|
"declaration": {
|
|
4082
|
-
"name": "
|
|
4083
|
-
"module": "./
|
|
3778
|
+
"name": "SkdxSignUpPage",
|
|
3779
|
+
"module": "./SignUpPage"
|
|
4084
3780
|
}
|
|
4085
3781
|
},
|
|
4086
3782
|
{
|
|
4087
3783
|
"kind": "js",
|
|
4088
|
-
"name": "
|
|
3784
|
+
"name": "SkdxSignUpDetail",
|
|
4089
3785
|
"declaration": {
|
|
4090
|
-
"name": "
|
|
4091
|
-
"module": "./
|
|
3786
|
+
"name": "SkdxSignUpDetail",
|
|
3787
|
+
"module": "./SignUpPage"
|
|
4092
3788
|
}
|
|
4093
3789
|
}
|
|
4094
3790
|
]
|
|
@@ -4851,10 +4547,260 @@
|
|
|
4851
4547
|
},
|
|
4852
4548
|
{
|
|
4853
4549
|
"kind": "js",
|
|
4854
|
-
"name": "SkdxVerificationValueChangeDetail",
|
|
4550
|
+
"name": "SkdxVerificationValueChangeDetail",
|
|
4551
|
+
"declaration": {
|
|
4552
|
+
"name": "SkdxVerificationValueChangeDetail",
|
|
4553
|
+
"module": "./VerificationPage"
|
|
4554
|
+
}
|
|
4555
|
+
}
|
|
4556
|
+
]
|
|
4557
|
+
},
|
|
4558
|
+
{
|
|
4559
|
+
"kind": "javascript-module",
|
|
4560
|
+
"path": "src/user-menu/UserMenu.ts",
|
|
4561
|
+
"declarations": [
|
|
4562
|
+
{
|
|
4563
|
+
"kind": "class",
|
|
4564
|
+
"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.",
|
|
4565
|
+
"name": "SkdxUserMenu",
|
|
4566
|
+
"slots": [
|
|
4567
|
+
{
|
|
4568
|
+
"description": "The application's own menu entries, rendered below the repeated identity header.",
|
|
4569
|
+
"name": ""
|
|
4570
|
+
},
|
|
4571
|
+
{
|
|
4572
|
+
"description": "Content that replaces the derived avatar-and-identity trigger entirely.",
|
|
4573
|
+
"name": "trigger"
|
|
4574
|
+
},
|
|
4575
|
+
{
|
|
4576
|
+
"description": "An extra indicator rendered after the identity in the trigger.",
|
|
4577
|
+
"name": "status"
|
|
4578
|
+
}
|
|
4579
|
+
],
|
|
4580
|
+
"members": [
|
|
4581
|
+
{
|
|
4582
|
+
"kind": "field",
|
|
4583
|
+
"name": "name",
|
|
4584
|
+
"type": {
|
|
4585
|
+
"text": "string"
|
|
4586
|
+
},
|
|
4587
|
+
"description": "The signed-in user's name, rendered in the trigger and repeated in the menu header.",
|
|
4588
|
+
"attribute": "name",
|
|
4589
|
+
"required": true
|
|
4590
|
+
},
|
|
4591
|
+
{
|
|
4592
|
+
"kind": "field",
|
|
4593
|
+
"name": "description",
|
|
4594
|
+
"type": {
|
|
4595
|
+
"text": "string | undefined | undefined"
|
|
4596
|
+
},
|
|
4597
|
+
"description": "Secondary text such as an email or role, rendered below the name in the trigger and the header.",
|
|
4598
|
+
"default": "undefined",
|
|
4599
|
+
"attribute": "description"
|
|
4600
|
+
},
|
|
4601
|
+
{
|
|
4602
|
+
"kind": "field",
|
|
4603
|
+
"name": "avatarSrc",
|
|
4604
|
+
"type": {
|
|
4605
|
+
"text": "string | undefined | undefined"
|
|
4606
|
+
},
|
|
4607
|
+
"description": "Source of the identity image, passed straight through to the derived Avatar.",
|
|
4608
|
+
"default": "undefined",
|
|
4609
|
+
"attribute": "avatar-src"
|
|
4610
|
+
},
|
|
4611
|
+
{
|
|
4612
|
+
"kind": "field",
|
|
4613
|
+
"name": "variant",
|
|
4614
|
+
"type": {
|
|
4615
|
+
"text": "'compact' | (string & {}) | undefined | undefined"
|
|
4616
|
+
},
|
|
4617
|
+
"description": "Visual rung written to `data-variant`; `'compact'` visually hides the identity text while keeping it as the accessible name.",
|
|
4618
|
+
"default": "undefined",
|
|
4619
|
+
"attribute": "variant"
|
|
4620
|
+
},
|
|
4621
|
+
{
|
|
4622
|
+
"kind": "field",
|
|
4623
|
+
"name": "open",
|
|
4624
|
+
"type": {
|
|
4625
|
+
"text": "boolean | undefined | undefined"
|
|
4626
|
+
},
|
|
4627
|
+
"description": "Whether the menu is open, for controlled usage paired with `open-change`.",
|
|
4628
|
+
"default": "undefined",
|
|
4629
|
+
"attribute": "open"
|
|
4630
|
+
},
|
|
4631
|
+
{
|
|
4632
|
+
"kind": "field",
|
|
4633
|
+
"name": "defaultOpen",
|
|
4634
|
+
"type": {
|
|
4635
|
+
"text": "boolean"
|
|
4636
|
+
},
|
|
4637
|
+
"default": "false",
|
|
4638
|
+
"description": "Whether the menu starts open, for uncontrolled usage.",
|
|
4639
|
+
"attribute": "default-open"
|
|
4640
|
+
},
|
|
4641
|
+
{
|
|
4642
|
+
"kind": "field",
|
|
4643
|
+
"name": "side",
|
|
4644
|
+
"type": {
|
|
4645
|
+
"text": "'top' | 'right' | 'bottom' | 'left'"
|
|
4646
|
+
},
|
|
4647
|
+
"default": "'bottom'",
|
|
4648
|
+
"description": "Which side of the trigger the menu panel opens on.",
|
|
4649
|
+
"attribute": "side"
|
|
4650
|
+
},
|
|
4651
|
+
{
|
|
4652
|
+
"kind": "field",
|
|
4653
|
+
"name": "align",
|
|
4654
|
+
"type": {
|
|
4655
|
+
"text": "'start' | 'center' | 'end'"
|
|
4656
|
+
},
|
|
4657
|
+
"default": "'end'",
|
|
4658
|
+
"description": "Alignment of the menu panel relative to the side it opens on.",
|
|
4659
|
+
"attribute": "align"
|
|
4660
|
+
}
|
|
4661
|
+
],
|
|
4662
|
+
"events": [
|
|
4663
|
+
{
|
|
4664
|
+
"description": "Fires with the new open state whenever the trigger opens or closes the menu.",
|
|
4665
|
+
"name": "open-change"
|
|
4666
|
+
},
|
|
4667
|
+
{
|
|
4668
|
+
"description": "Fires with the new open state once the panel's enter or exit animation has settled.",
|
|
4669
|
+
"name": "open-change-complete"
|
|
4670
|
+
},
|
|
4671
|
+
{
|
|
4672
|
+
"description": "Fires when Escape is pressed while the menu is open; `preventDefault()` keeps it open.",
|
|
4673
|
+
"name": "escape-key-down"
|
|
4674
|
+
},
|
|
4675
|
+
{
|
|
4676
|
+
"description": "Fires on a pointer-down outside the panel while open; `preventDefault()` keeps it open.",
|
|
4677
|
+
"name": "pointer-down-outside"
|
|
4678
|
+
},
|
|
4679
|
+
{
|
|
4680
|
+
"description": "Fires when focus moves outside the panel while open; `preventDefault()` keeps it open.",
|
|
4681
|
+
"name": "focus-outside"
|
|
4682
|
+
},
|
|
4683
|
+
{
|
|
4684
|
+
"description": "Fires for either kind of outside interaction, just before the specific event.",
|
|
4685
|
+
"name": "interact-outside"
|
|
4686
|
+
},
|
|
4687
|
+
{
|
|
4688
|
+
"description": "Fires before focus returns to the trigger on close; `preventDefault()` suppresses that return.",
|
|
4689
|
+
"name": "close-auto-focus"
|
|
4690
|
+
}
|
|
4691
|
+
],
|
|
4692
|
+
"attributes": [
|
|
4693
|
+
{
|
|
4694
|
+
"name": "name",
|
|
4695
|
+
"type": {
|
|
4696
|
+
"text": "string"
|
|
4697
|
+
},
|
|
4698
|
+
"description": "The signed-in user's name, rendered in the trigger and repeated in the menu header.",
|
|
4699
|
+
"fieldName": "name",
|
|
4700
|
+
"required": true
|
|
4701
|
+
},
|
|
4702
|
+
{
|
|
4703
|
+
"name": "description",
|
|
4704
|
+
"type": {
|
|
4705
|
+
"text": "string | undefined | undefined"
|
|
4706
|
+
},
|
|
4707
|
+
"description": "Secondary text such as an email or role, rendered below the name in the trigger and the header.",
|
|
4708
|
+
"default": "undefined",
|
|
4709
|
+
"fieldName": "description"
|
|
4710
|
+
},
|
|
4711
|
+
{
|
|
4712
|
+
"name": "avatar-src",
|
|
4713
|
+
"type": {
|
|
4714
|
+
"text": "string | undefined | undefined"
|
|
4715
|
+
},
|
|
4716
|
+
"description": "Source of the identity image, passed straight through to the derived Avatar.",
|
|
4717
|
+
"default": "undefined",
|
|
4718
|
+
"fieldName": "avatarSrc"
|
|
4719
|
+
},
|
|
4720
|
+
{
|
|
4721
|
+
"name": "variant",
|
|
4722
|
+
"type": {
|
|
4723
|
+
"text": "'compact' | (string & {}) | undefined | undefined"
|
|
4724
|
+
},
|
|
4725
|
+
"description": "Visual rung written to `data-variant`; `'compact'` visually hides the identity text while keeping it as the accessible name.",
|
|
4726
|
+
"default": "undefined",
|
|
4727
|
+
"fieldName": "variant"
|
|
4728
|
+
},
|
|
4729
|
+
{
|
|
4730
|
+
"name": "open",
|
|
4731
|
+
"type": {
|
|
4732
|
+
"text": "boolean | undefined | undefined"
|
|
4733
|
+
},
|
|
4734
|
+
"description": "Whether the menu is open, for controlled usage paired with `open-change`.",
|
|
4735
|
+
"default": "undefined",
|
|
4736
|
+
"fieldName": "open"
|
|
4737
|
+
},
|
|
4738
|
+
{
|
|
4739
|
+
"name": "default-open",
|
|
4740
|
+
"type": {
|
|
4741
|
+
"text": "boolean"
|
|
4742
|
+
},
|
|
4743
|
+
"default": "false",
|
|
4744
|
+
"description": "Whether the menu starts open, for uncontrolled usage.",
|
|
4745
|
+
"fieldName": "defaultOpen"
|
|
4746
|
+
},
|
|
4747
|
+
{
|
|
4748
|
+
"name": "side",
|
|
4749
|
+
"type": {
|
|
4750
|
+
"text": "'top' | 'right' | 'bottom' | 'left'"
|
|
4751
|
+
},
|
|
4752
|
+
"default": "'bottom'",
|
|
4753
|
+
"description": "Which side of the trigger the menu panel opens on.",
|
|
4754
|
+
"fieldName": "side"
|
|
4755
|
+
},
|
|
4756
|
+
{
|
|
4757
|
+
"name": "align",
|
|
4758
|
+
"type": {
|
|
4759
|
+
"text": "'start' | 'center' | 'end'"
|
|
4760
|
+
},
|
|
4761
|
+
"default": "'end'",
|
|
4762
|
+
"description": "Alignment of the menu panel relative to the side it opens on.",
|
|
4763
|
+
"fieldName": "align"
|
|
4764
|
+
}
|
|
4765
|
+
],
|
|
4766
|
+
"superclass": {
|
|
4767
|
+
"name": "LitElement",
|
|
4768
|
+
"package": "lit"
|
|
4769
|
+
},
|
|
4770
|
+
"tagName": "skdx-user-menu",
|
|
4771
|
+
"customElement": true
|
|
4772
|
+
}
|
|
4773
|
+
],
|
|
4774
|
+
"exports": [
|
|
4775
|
+
{
|
|
4776
|
+
"kind": "js",
|
|
4777
|
+
"name": "SkdxUserMenu",
|
|
4778
|
+
"declaration": {
|
|
4779
|
+
"name": "SkdxUserMenu",
|
|
4780
|
+
"module": "src/user-menu/UserMenu.ts"
|
|
4781
|
+
}
|
|
4782
|
+
},
|
|
4783
|
+
{
|
|
4784
|
+
"kind": "custom-element-definition",
|
|
4785
|
+
"name": "skdx-user-menu",
|
|
4786
|
+
"declaration": {
|
|
4787
|
+
"name": "SkdxUserMenu",
|
|
4788
|
+
"module": "src/user-menu/UserMenu.ts"
|
|
4789
|
+
}
|
|
4790
|
+
}
|
|
4791
|
+
]
|
|
4792
|
+
},
|
|
4793
|
+
{
|
|
4794
|
+
"kind": "javascript-module",
|
|
4795
|
+
"path": "src/user-menu/index.ts",
|
|
4796
|
+
"declarations": [],
|
|
4797
|
+
"exports": [
|
|
4798
|
+
{
|
|
4799
|
+
"kind": "js",
|
|
4800
|
+
"name": "SkdxUserMenu",
|
|
4855
4801
|
"declaration": {
|
|
4856
|
-
"name": "
|
|
4857
|
-
"module": "./
|
|
4802
|
+
"name": "SkdxUserMenu",
|
|
4803
|
+
"module": "./UserMenu"
|
|
4858
4804
|
}
|
|
4859
4805
|
}
|
|
4860
4806
|
]
|
|
@@ -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
|
}
|