@skdx/web-components-blocks 0.39.0 → 0.40.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 +601 -586
- package/dist/dashboard-layout/DashboardLayout.cjs +16 -16
- package/dist/dashboard-layout/DashboardLayout.d.cts +9 -3
- package/dist/dashboard-layout/DashboardLayout.d.ts +9 -3
- package/dist/dashboard-layout/DashboardLayout.js +14 -14
- package/dist/empty-state/EmptyState.cjs +2 -2
- package/dist/empty-state/EmptyState.d.cts +2 -2
- package/dist/empty-state/EmptyState.d.ts +2 -2
- package/dist/empty-state/EmptyState.js +2 -2
- package/dist/forgot-password-page/ForgotPasswordPage.cjs +1 -1
- package/dist/forgot-password-page/ForgotPasswordPage.d.cts +1 -1
- package/dist/forgot-password-page/ForgotPasswordPage.d.ts +1 -1
- package/dist/forgot-password-page/ForgotPasswordPage.js +1 -1
- package/dist/form-section/FormSection.cjs +2 -2
- package/dist/form-section/FormSection.d.cts +2 -2
- package/dist/form-section/FormSection.d.ts +2 -2
- package/dist/form-section/FormSection.js +2 -2
- package/dist/internal/define.cjs +1 -1
- package/dist/internal/define.js +1 -1
- package/dist/notification-center/NotificationCenter.cjs +1 -1
- package/dist/notification-center/NotificationCenter.d.cts +1 -1
- package/dist/notification-center/NotificationCenter.d.ts +1 -1
- package/dist/notification-center/NotificationCenter.js +1 -1
- package/dist/onboarding-checklist/OnboardingChecklist.cjs +1 -1
- package/dist/onboarding-checklist/OnboardingChecklist.d.cts +2 -2
- package/dist/onboarding-checklist/OnboardingChecklist.d.ts +2 -2
- package/dist/onboarding-checklist/OnboardingChecklist.js +1 -1
- package/dist/page-container/PageContainer.cjs +6 -6
- package/dist/page-container/PageContainer.d.cts +2 -2
- package/dist/page-container/PageContainer.d.ts +2 -2
- package/dist/page-container/PageContainer.js +2 -2
- package/dist/reset-password-page/ResetPasswordPage.cjs +1 -1
- package/dist/reset-password-page/ResetPasswordPage.d.cts +1 -1
- package/dist/reset-password-page/ResetPasswordPage.d.ts +1 -1
- package/dist/reset-password-page/ResetPasswordPage.js +1 -1
- package/dist/sign-in-page/SignInPage.cjs +3 -3
- package/dist/sign-in-page/SignInPage.d.cts +1 -1
- package/dist/sign-in-page/SignInPage.d.ts +1 -1
- package/dist/sign-in-page/SignInPage.js +3 -3
- package/dist/sign-up-page/SignUpPage.cjs +1 -1
- package/dist/sign-up-page/SignUpPage.d.cts +1 -1
- package/dist/sign-up-page/SignUpPage.d.ts +1 -1
- package/dist/sign-up-page/SignUpPage.js +1 -1
- package/dist/verification-page/VerificationPage.cjs +1 -1
- package/dist/verification-page/VerificationPage.d.cts +1 -1
- package/dist/verification-page/VerificationPage.d.ts +1 -1
- package/dist/verification-page/VerificationPage.js +1 -1
- package/dist/workspace-switcher/WorkspaceSwitcher.d.cts +0 -1
- package/dist/workspace-switcher/WorkspaceSwitcher.d.ts +0 -1
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -661,6 +661,167 @@
|
|
|
661
661
|
}
|
|
662
662
|
]
|
|
663
663
|
},
|
|
664
|
+
{
|
|
665
|
+
"kind": "javascript-module",
|
|
666
|
+
"path": "src/comment/Comment.ts",
|
|
667
|
+
"declarations": [
|
|
668
|
+
{
|
|
669
|
+
"kind": "class",
|
|
670
|
+
"description": "One collaboration comment: author, avatar, timestamp, edited indicator,\narbitrary content, attachments and actions such as reply, edit and react.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-comment` on the host, then `__avatar`, `__main`, `__header`,\n`__author`, `__metadata`, `__time`, `__edited`, `__content`, `__attachments`\nand `__actions`.",
|
|
671
|
+
"name": "SkdxComment",
|
|
672
|
+
"slots": [
|
|
673
|
+
{
|
|
674
|
+
"description": "The comment content, the consumer-supplied body text or markup.",
|
|
675
|
+
"name": ""
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"description": "Decorative avatar rendered beside the author, always `aria-hidden`.",
|
|
679
|
+
"name": "avatar"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"description": "Badges or supplementary text rendered beside the author.",
|
|
683
|
+
"name": "metadata"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"description": "Files or links attached to the comment, below the content.",
|
|
687
|
+
"name": "attachments"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"description": "Controls such as reply, edit and react, below the attachments.",
|
|
691
|
+
"name": "actions"
|
|
692
|
+
}
|
|
693
|
+
],
|
|
694
|
+
"members": [
|
|
695
|
+
{
|
|
696
|
+
"kind": "field",
|
|
697
|
+
"name": "author",
|
|
698
|
+
"type": {
|
|
699
|
+
"text": "string"
|
|
700
|
+
},
|
|
701
|
+
"description": "Name of the person or system that wrote the comment, rendered as visible text.",
|
|
702
|
+
"attribute": "author",
|
|
703
|
+
"required": true
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"kind": "field",
|
|
707
|
+
"name": "timestamp",
|
|
708
|
+
"type": {
|
|
709
|
+
"text": "Date | string | undefined | undefined"
|
|
710
|
+
},
|
|
711
|
+
"description": "Instant the comment was posted, rendered through a composed Time.",
|
|
712
|
+
"default": "undefined",
|
|
713
|
+
"attribute": "timestamp"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"kind": "field",
|
|
717
|
+
"name": "now",
|
|
718
|
+
"type": {
|
|
719
|
+
"text": "Date | number | undefined | undefined"
|
|
720
|
+
},
|
|
721
|
+
"description": "Reference instant `timestamp` renders relative to, forwarded to Time.",
|
|
722
|
+
"default": "undefined"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"kind": "field",
|
|
726
|
+
"name": "edited",
|
|
727
|
+
"type": {
|
|
728
|
+
"text": "boolean"
|
|
729
|
+
},
|
|
730
|
+
"default": "false",
|
|
731
|
+
"description": "Marks the comment as edited since it was first posted.",
|
|
732
|
+
"attribute": "edited"
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"kind": "field",
|
|
736
|
+
"name": "editedLabel",
|
|
737
|
+
"type": {
|
|
738
|
+
"text": "string"
|
|
739
|
+
},
|
|
740
|
+
"default": "'Edited'",
|
|
741
|
+
"description": "Text of the edited indicator, shown only when `edited` is set.",
|
|
742
|
+
"attribute": "edited-label"
|
|
743
|
+
}
|
|
744
|
+
],
|
|
745
|
+
"attributes": [
|
|
746
|
+
{
|
|
747
|
+
"name": "author",
|
|
748
|
+
"type": {
|
|
749
|
+
"text": "string"
|
|
750
|
+
},
|
|
751
|
+
"description": "Name of the person or system that wrote the comment, rendered as visible text.",
|
|
752
|
+
"fieldName": "author",
|
|
753
|
+
"required": true
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"name": "timestamp",
|
|
757
|
+
"type": {
|
|
758
|
+
"text": "Date | string | undefined | undefined"
|
|
759
|
+
},
|
|
760
|
+
"description": "Instant the comment was posted, rendered through a composed Time.",
|
|
761
|
+
"default": "undefined",
|
|
762
|
+
"fieldName": "timestamp"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"name": "edited",
|
|
766
|
+
"type": {
|
|
767
|
+
"text": "boolean"
|
|
768
|
+
},
|
|
769
|
+
"default": "false",
|
|
770
|
+
"description": "Marks the comment as edited since it was first posted.",
|
|
771
|
+
"fieldName": "edited"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"name": "edited-label",
|
|
775
|
+
"type": {
|
|
776
|
+
"text": "string"
|
|
777
|
+
},
|
|
778
|
+
"default": "'Edited'",
|
|
779
|
+
"description": "Text of the edited indicator, shown only when `edited` is set.",
|
|
780
|
+
"fieldName": "editedLabel"
|
|
781
|
+
}
|
|
782
|
+
],
|
|
783
|
+
"superclass": {
|
|
784
|
+
"name": "LitElement",
|
|
785
|
+
"package": "lit"
|
|
786
|
+
},
|
|
787
|
+
"tagName": "skdx-comment",
|
|
788
|
+
"customElement": true
|
|
789
|
+
}
|
|
790
|
+
],
|
|
791
|
+
"exports": [
|
|
792
|
+
{
|
|
793
|
+
"kind": "js",
|
|
794
|
+
"name": "SkdxComment",
|
|
795
|
+
"declaration": {
|
|
796
|
+
"name": "SkdxComment",
|
|
797
|
+
"module": "src/comment/Comment.ts"
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"kind": "custom-element-definition",
|
|
802
|
+
"name": "skdx-comment",
|
|
803
|
+
"declaration": {
|
|
804
|
+
"name": "SkdxComment",
|
|
805
|
+
"module": "src/comment/Comment.ts"
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
]
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"kind": "javascript-module",
|
|
812
|
+
"path": "src/comment/index.ts",
|
|
813
|
+
"declarations": [],
|
|
814
|
+
"exports": [
|
|
815
|
+
{
|
|
816
|
+
"kind": "js",
|
|
817
|
+
"name": "SkdxComment",
|
|
818
|
+
"declaration": {
|
|
819
|
+
"name": "SkdxComment",
|
|
820
|
+
"module": "./Comment"
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
]
|
|
824
|
+
},
|
|
664
825
|
{
|
|
665
826
|
"kind": "javascript-module",
|
|
666
827
|
"path": "src/chat-message/ChatMessage.ts",
|
|
@@ -843,161 +1004,236 @@
|
|
|
843
1004
|
},
|
|
844
1005
|
{
|
|
845
1006
|
"kind": "javascript-module",
|
|
846
|
-
"path": "src/
|
|
1007
|
+
"path": "src/conversation-list/ConversationList.ts",
|
|
847
1008
|
"declarations": [
|
|
848
1009
|
{
|
|
849
1010
|
"kind": "class",
|
|
850
|
-
"description": "
|
|
851
|
-
"name": "
|
|
852
|
-
"slots": [
|
|
853
|
-
{
|
|
854
|
-
"description": "The comment content, the consumer-supplied body text or markup.",
|
|
855
|
-
"name": ""
|
|
856
|
-
},
|
|
857
|
-
{
|
|
858
|
-
"description": "Decorative avatar rendered beside the author, always `aria-hidden`.",
|
|
859
|
-
"name": "avatar"
|
|
860
|
-
},
|
|
861
|
-
{
|
|
862
|
-
"description": "Badges or supplementary text rendered beside the author.",
|
|
863
|
-
"name": "metadata"
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
"description": "Files or links attached to the comment, below the content.",
|
|
867
|
-
"name": "attachments"
|
|
868
|
-
},
|
|
869
|
-
{
|
|
870
|
-
"description": "Controls such as reply, edit and react, below the attachments.",
|
|
871
|
-
"name": "actions"
|
|
872
|
-
}
|
|
873
|
-
],
|
|
1011
|
+
"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.",
|
|
1012
|
+
"name": "SkdxConversationList",
|
|
874
1013
|
"members": [
|
|
875
1014
|
{
|
|
876
1015
|
"kind": "field",
|
|
877
|
-
"name": "
|
|
1016
|
+
"name": "items",
|
|
878
1017
|
"type": {
|
|
879
|
-
"text": "
|
|
1018
|
+
"text": "readonly SkdxConversationListItem[]"
|
|
880
1019
|
},
|
|
881
|
-
"description": "
|
|
882
|
-
"attribute": "author",
|
|
1020
|
+
"description": "The conversations to render, in order, each one a selectable option keyed by its id.",
|
|
883
1021
|
"required": true
|
|
884
1022
|
},
|
|
885
1023
|
{
|
|
886
1024
|
"kind": "field",
|
|
887
|
-
"name": "
|
|
1025
|
+
"name": "value",
|
|
888
1026
|
"type": {
|
|
889
|
-
"text": "
|
|
1027
|
+
"text": "string | undefined | undefined"
|
|
890
1028
|
},
|
|
891
|
-
"description": "
|
|
1029
|
+
"description": "Selected conversation's id, for controlled usage paired with `value-change`.",
|
|
892
1030
|
"default": "undefined",
|
|
893
|
-
"attribute": "
|
|
1031
|
+
"attribute": "value"
|
|
894
1032
|
},
|
|
895
1033
|
{
|
|
896
1034
|
"kind": "field",
|
|
897
|
-
"name": "
|
|
1035
|
+
"name": "defaultValue",
|
|
898
1036
|
"type": {
|
|
899
|
-
"text": "
|
|
1037
|
+
"text": "string | undefined | undefined"
|
|
900
1038
|
},
|
|
901
|
-
"description": "
|
|
902
|
-
"default": "undefined"
|
|
1039
|
+
"description": "Conversation selected on first render, used only while uncontrolled.",
|
|
1040
|
+
"default": "undefined",
|
|
1041
|
+
"attribute": "default-value"
|
|
903
1042
|
},
|
|
904
1043
|
{
|
|
905
1044
|
"kind": "field",
|
|
906
|
-
"name": "
|
|
1045
|
+
"name": "label",
|
|
907
1046
|
"type": {
|
|
908
|
-
"text": "
|
|
1047
|
+
"text": "string"
|
|
909
1048
|
},
|
|
910
|
-
"default": "
|
|
911
|
-
"description": "
|
|
912
|
-
"attribute": "
|
|
1049
|
+
"default": "'Conversations'",
|
|
1050
|
+
"description": "Accessible name of the derived listbox holding the conversation rows.",
|
|
1051
|
+
"attribute": "label"
|
|
913
1052
|
},
|
|
914
1053
|
{
|
|
915
1054
|
"kind": "field",
|
|
916
|
-
"name": "
|
|
1055
|
+
"name": "unreadLabel",
|
|
917
1056
|
"type": {
|
|
918
1057
|
"text": "string"
|
|
919
1058
|
},
|
|
920
|
-
"default": "'
|
|
921
|
-
"description": "
|
|
922
|
-
"attribute": "
|
|
923
|
-
}
|
|
924
|
-
],
|
|
925
|
-
"attributes": [
|
|
1059
|
+
"default": "'Unread'",
|
|
1060
|
+
"description": "Visually hidden text appended to an unread row's title, so the mark is spoken.",
|
|
1061
|
+
"attribute": "unread-label"
|
|
1062
|
+
},
|
|
926
1063
|
{
|
|
927
|
-
"
|
|
1064
|
+
"kind": "field",
|
|
1065
|
+
"name": "emptyTitle",
|
|
928
1066
|
"type": {
|
|
929
1067
|
"text": "string"
|
|
930
1068
|
},
|
|
931
|
-
"
|
|
932
|
-
"
|
|
933
|
-
"
|
|
1069
|
+
"default": "'No conversations'",
|
|
1070
|
+
"description": "Heading of the derived EmptyState shown when there is nothing to list.",
|
|
1071
|
+
"attribute": "empty-title"
|
|
934
1072
|
},
|
|
935
1073
|
{
|
|
936
|
-
"
|
|
1074
|
+
"kind": "field",
|
|
1075
|
+
"name": "emptyDescription",
|
|
937
1076
|
"type": {
|
|
938
|
-
"text": "
|
|
1077
|
+
"text": "string | undefined | undefined"
|
|
939
1078
|
},
|
|
940
|
-
"description": "
|
|
1079
|
+
"description": "Supporting copy under the empty state's heading, explaining the gap.",
|
|
941
1080
|
"default": "undefined",
|
|
942
|
-
"
|
|
1081
|
+
"attribute": "empty-description"
|
|
943
1082
|
},
|
|
944
1083
|
{
|
|
945
|
-
"
|
|
1084
|
+
"kind": "field",
|
|
1085
|
+
"name": "loading",
|
|
946
1086
|
"type": {
|
|
947
1087
|
"text": "boolean"
|
|
948
1088
|
},
|
|
949
1089
|
"default": "false",
|
|
950
|
-
"description": "
|
|
951
|
-
"
|
|
1090
|
+
"description": "Replaces the rows with decorative placeholder lines and marks the host `aria-busy`.",
|
|
1091
|
+
"attribute": "loading"
|
|
952
1092
|
},
|
|
953
1093
|
{
|
|
954
|
-
"
|
|
1094
|
+
"kind": "field",
|
|
1095
|
+
"name": "now",
|
|
1096
|
+
"type": {
|
|
1097
|
+
"text": "Date | number | undefined | undefined"
|
|
1098
|
+
},
|
|
1099
|
+
"description": "Reference instant the relative row timestamps are measured from.",
|
|
1100
|
+
"default": "undefined"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"kind": "field",
|
|
1104
|
+
"name": "renderLeading",
|
|
1105
|
+
"type": {
|
|
1106
|
+
"text": "((item: SkdxConversationListItem) => unknown) | undefined | undefined"
|
|
1107
|
+
},
|
|
1108
|
+
"description": "Renders a decorative leading region for one row, such as an avatar or a status dot.",
|
|
1109
|
+
"default": "undefined"
|
|
1110
|
+
}
|
|
1111
|
+
],
|
|
1112
|
+
"events": [
|
|
1113
|
+
{
|
|
1114
|
+
"description": "Fires with `{ value, previousValue, reason }` whenever the selection moves by pointer or keyboard.",
|
|
1115
|
+
"name": "value-change"
|
|
1116
|
+
}
|
|
1117
|
+
],
|
|
1118
|
+
"attributes": [
|
|
1119
|
+
{
|
|
1120
|
+
"name": "value",
|
|
1121
|
+
"type": {
|
|
1122
|
+
"text": "string | undefined | undefined"
|
|
1123
|
+
},
|
|
1124
|
+
"description": "Selected conversation's id, for controlled usage paired with `value-change`.",
|
|
1125
|
+
"default": "undefined",
|
|
1126
|
+
"fieldName": "value"
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"name": "default-value",
|
|
1130
|
+
"type": {
|
|
1131
|
+
"text": "string | undefined | undefined"
|
|
1132
|
+
},
|
|
1133
|
+
"description": "Conversation selected on first render, used only while uncontrolled.",
|
|
1134
|
+
"default": "undefined",
|
|
1135
|
+
"fieldName": "defaultValue"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"name": "label",
|
|
955
1139
|
"type": {
|
|
956
1140
|
"text": "string"
|
|
957
1141
|
},
|
|
958
|
-
"default": "'
|
|
959
|
-
"description": "
|
|
960
|
-
"fieldName": "
|
|
1142
|
+
"default": "'Conversations'",
|
|
1143
|
+
"description": "Accessible name of the derived listbox holding the conversation rows.",
|
|
1144
|
+
"fieldName": "label"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"name": "unread-label",
|
|
1148
|
+
"type": {
|
|
1149
|
+
"text": "string"
|
|
1150
|
+
},
|
|
1151
|
+
"default": "'Unread'",
|
|
1152
|
+
"description": "Visually hidden text appended to an unread row's title, so the mark is spoken.",
|
|
1153
|
+
"fieldName": "unreadLabel"
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"name": "empty-title",
|
|
1157
|
+
"type": {
|
|
1158
|
+
"text": "string"
|
|
1159
|
+
},
|
|
1160
|
+
"default": "'No conversations'",
|
|
1161
|
+
"description": "Heading of the derived EmptyState shown when there is nothing to list.",
|
|
1162
|
+
"fieldName": "emptyTitle"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"name": "empty-description",
|
|
1166
|
+
"type": {
|
|
1167
|
+
"text": "string | undefined | undefined"
|
|
1168
|
+
},
|
|
1169
|
+
"description": "Supporting copy under the empty state's heading, explaining the gap.",
|
|
1170
|
+
"default": "undefined",
|
|
1171
|
+
"fieldName": "emptyDescription"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"name": "loading",
|
|
1175
|
+
"type": {
|
|
1176
|
+
"text": "boolean"
|
|
1177
|
+
},
|
|
1178
|
+
"default": "false",
|
|
1179
|
+
"description": "Replaces the rows with decorative placeholder lines and marks the host `aria-busy`.",
|
|
1180
|
+
"fieldName": "loading"
|
|
961
1181
|
}
|
|
962
1182
|
],
|
|
963
1183
|
"superclass": {
|
|
964
1184
|
"name": "LitElement",
|
|
965
1185
|
"package": "lit"
|
|
966
1186
|
},
|
|
967
|
-
"tagName": "skdx-
|
|
1187
|
+
"tagName": "skdx-conversation-list",
|
|
968
1188
|
"customElement": true
|
|
969
1189
|
}
|
|
970
1190
|
],
|
|
971
1191
|
"exports": [
|
|
972
1192
|
{
|
|
973
1193
|
"kind": "js",
|
|
974
|
-
"name": "
|
|
1194
|
+
"name": "SkdxConversationList",
|
|
975
1195
|
"declaration": {
|
|
976
|
-
"name": "
|
|
977
|
-
"module": "src/
|
|
1196
|
+
"name": "SkdxConversationList",
|
|
1197
|
+
"module": "src/conversation-list/ConversationList.ts"
|
|
978
1198
|
}
|
|
979
1199
|
},
|
|
980
1200
|
{
|
|
981
1201
|
"kind": "custom-element-definition",
|
|
982
|
-
"name": "skdx-
|
|
1202
|
+
"name": "skdx-conversation-list",
|
|
983
1203
|
"declaration": {
|
|
984
|
-
"name": "
|
|
985
|
-
"module": "src/
|
|
1204
|
+
"name": "SkdxConversationList",
|
|
1205
|
+
"module": "src/conversation-list/ConversationList.ts"
|
|
986
1206
|
}
|
|
987
1207
|
}
|
|
988
1208
|
]
|
|
989
1209
|
},
|
|
990
1210
|
{
|
|
991
1211
|
"kind": "javascript-module",
|
|
992
|
-
"path": "src/
|
|
1212
|
+
"path": "src/conversation-list/index.ts",
|
|
993
1213
|
"declarations": [],
|
|
994
1214
|
"exports": [
|
|
995
1215
|
{
|
|
996
1216
|
"kind": "js",
|
|
997
|
-
"name": "
|
|
1217
|
+
"name": "SkdxConversationList",
|
|
998
1218
|
"declaration": {
|
|
999
|
-
"name": "
|
|
1000
|
-
"module": "./
|
|
1219
|
+
"name": "SkdxConversationList",
|
|
1220
|
+
"module": "./ConversationList"
|
|
1221
|
+
}
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"kind": "js",
|
|
1225
|
+
"name": "SkdxConversationListItem",
|
|
1226
|
+
"declaration": {
|
|
1227
|
+
"name": "SkdxConversationListItem",
|
|
1228
|
+
"module": "./ConversationList"
|
|
1229
|
+
}
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"kind": "js",
|
|
1233
|
+
"name": "SkdxConversationListValueChangeDetail",
|
|
1234
|
+
"declaration": {
|
|
1235
|
+
"name": "SkdxConversationListValueChangeDetail",
|
|
1236
|
+
"module": "./ConversationList"
|
|
1001
1237
|
}
|
|
1002
1238
|
}
|
|
1003
1239
|
]
|
|
@@ -1158,259 +1394,234 @@
|
|
|
1158
1394
|
},
|
|
1159
1395
|
{
|
|
1160
1396
|
"kind": "javascript-module",
|
|
1161
|
-
"path": "src/
|
|
1397
|
+
"path": "src/forgot-password-page/ForgotPasswordPage.ts",
|
|
1162
1398
|
"declarations": [
|
|
1163
1399
|
{
|
|
1164
1400
|
"kind": "class",
|
|
1165
|
-
"description": "
|
|
1166
|
-
"name": "
|
|
1167
|
-
"
|
|
1168
|
-
{
|
|
1169
|
-
"kind": "field",
|
|
1170
|
-
"name": "items",
|
|
1171
|
-
"type": {
|
|
1172
|
-
"text": "readonly SkdxConversationListItem[]"
|
|
1173
|
-
},
|
|
1174
|
-
"description": "The conversations to render, in order, each one a selectable option keyed by its id.",
|
|
1175
|
-
"required": true
|
|
1176
|
-
},
|
|
1401
|
+
"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`.",
|
|
1402
|
+
"name": "SkdxForgotPasswordPage",
|
|
1403
|
+
"slots": [
|
|
1177
1404
|
{
|
|
1178
|
-
"
|
|
1179
|
-
"name": "
|
|
1180
|
-
"type": {
|
|
1181
|
-
"text": "string | undefined | undefined"
|
|
1182
|
-
},
|
|
1183
|
-
"description": "Selected conversation's id, for controlled usage paired with `value-change`.",
|
|
1184
|
-
"default": "undefined",
|
|
1185
|
-
"attribute": "value"
|
|
1405
|
+
"description": "Extra fields rendered inside the form, above the submit button.",
|
|
1406
|
+
"name": ""
|
|
1186
1407
|
},
|
|
1187
1408
|
{
|
|
1188
|
-
"
|
|
1189
|
-
"name": "
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
"description": "Conversation selected on first render, used only while uncontrolled.",
|
|
1194
|
-
"default": "undefined",
|
|
1195
|
-
"attribute": "default-value"
|
|
1196
|
-
},
|
|
1409
|
+
"description": "Navigation below the form, such as a link back to the sign-in page.",
|
|
1410
|
+
"name": "footer"
|
|
1411
|
+
}
|
|
1412
|
+
],
|
|
1413
|
+
"members": [
|
|
1197
1414
|
{
|
|
1198
1415
|
"kind": "field",
|
|
1199
|
-
"name": "
|
|
1416
|
+
"name": "title",
|
|
1200
1417
|
"type": {
|
|
1201
1418
|
"text": "string"
|
|
1202
1419
|
},
|
|
1203
|
-
"default": "'
|
|
1204
|
-
"description": "
|
|
1205
|
-
"attribute": "
|
|
1420
|
+
"default": "'Reset your password'",
|
|
1421
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
1422
|
+
"attribute": "heading"
|
|
1206
1423
|
},
|
|
1207
1424
|
{
|
|
1208
1425
|
"kind": "field",
|
|
1209
|
-
"name": "
|
|
1426
|
+
"name": "description",
|
|
1210
1427
|
"type": {
|
|
1211
|
-
"text": "string"
|
|
1428
|
+
"text": "string | undefined"
|
|
1212
1429
|
},
|
|
1213
|
-
"
|
|
1214
|
-
"
|
|
1215
|
-
"attribute": "
|
|
1430
|
+
"description": "Supporting copy rendered below the title, explaining what the reset link does.",
|
|
1431
|
+
"default": "undefined",
|
|
1432
|
+
"attribute": "description"
|
|
1216
1433
|
},
|
|
1217
1434
|
{
|
|
1218
1435
|
"kind": "field",
|
|
1219
|
-
"name": "
|
|
1436
|
+
"name": "error",
|
|
1220
1437
|
"type": {
|
|
1221
|
-
"text": "string"
|
|
1438
|
+
"text": "string | undefined"
|
|
1222
1439
|
},
|
|
1223
|
-
"
|
|
1224
|
-
"
|
|
1225
|
-
"attribute": "
|
|
1440
|
+
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
1441
|
+
"default": "undefined",
|
|
1442
|
+
"attribute": "error"
|
|
1226
1443
|
},
|
|
1227
1444
|
{
|
|
1228
1445
|
"kind": "field",
|
|
1229
|
-
"name": "
|
|
1446
|
+
"name": "success",
|
|
1230
1447
|
"type": {
|
|
1231
|
-
"text": "string | undefined
|
|
1448
|
+
"text": "string | undefined"
|
|
1232
1449
|
},
|
|
1233
|
-
"description": "
|
|
1450
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
1234
1451
|
"default": "undefined",
|
|
1235
|
-
"attribute": "
|
|
1452
|
+
"attribute": "success"
|
|
1236
1453
|
},
|
|
1237
1454
|
{
|
|
1238
1455
|
"kind": "field",
|
|
1239
|
-
"name": "
|
|
1456
|
+
"name": "pending",
|
|
1240
1457
|
"type": {
|
|
1241
1458
|
"text": "boolean"
|
|
1242
1459
|
},
|
|
1243
1460
|
"default": "false",
|
|
1244
|
-
"description": "
|
|
1245
|
-
"attribute": "
|
|
1461
|
+
"description": "Marks the request in flight, making the submit button busy while the email field stays editable.",
|
|
1462
|
+
"attribute": "pending"
|
|
1246
1463
|
},
|
|
1247
1464
|
{
|
|
1248
1465
|
"kind": "field",
|
|
1249
|
-
"name": "
|
|
1466
|
+
"name": "emailLabel",
|
|
1250
1467
|
"type": {
|
|
1251
|
-
"text": "
|
|
1468
|
+
"text": "string"
|
|
1252
1469
|
},
|
|
1253
|
-
"
|
|
1254
|
-
"
|
|
1470
|
+
"default": "'Email'",
|
|
1471
|
+
"description": "Label of the email field the reset link is requested for.",
|
|
1472
|
+
"attribute": "email-label"
|
|
1255
1473
|
},
|
|
1256
1474
|
{
|
|
1257
1475
|
"kind": "field",
|
|
1258
|
-
"name": "
|
|
1476
|
+
"name": "submitLabel",
|
|
1259
1477
|
"type": {
|
|
1260
|
-
"text": "
|
|
1478
|
+
"text": "string"
|
|
1261
1479
|
},
|
|
1262
|
-
"
|
|
1263
|
-
"
|
|
1480
|
+
"default": "'Send reset link'",
|
|
1481
|
+
"description": "Text of the form's submit button.",
|
|
1482
|
+
"attribute": "submit-label"
|
|
1264
1483
|
}
|
|
1265
1484
|
],
|
|
1266
1485
|
"events": [
|
|
1267
1486
|
{
|
|
1268
|
-
"description": "Fires with `{
|
|
1269
|
-
"name": "
|
|
1487
|
+
"description": "Fires with `{ email }` when the form submits with an address that passes constraint validation.",
|
|
1488
|
+
"name": "request-reset"
|
|
1270
1489
|
}
|
|
1271
1490
|
],
|
|
1272
1491
|
"attributes": [
|
|
1273
1492
|
{
|
|
1274
|
-
"name": "
|
|
1493
|
+
"name": "heading",
|
|
1275
1494
|
"type": {
|
|
1276
|
-
"text": "string
|
|
1495
|
+
"text": "string"
|
|
1277
1496
|
},
|
|
1278
|
-
"
|
|
1279
|
-
"
|
|
1280
|
-
"fieldName": "
|
|
1497
|
+
"default": "'Reset your password'",
|
|
1498
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
1499
|
+
"fieldName": "title"
|
|
1281
1500
|
},
|
|
1282
1501
|
{
|
|
1283
|
-
"name": "
|
|
1502
|
+
"name": "description",
|
|
1284
1503
|
"type": {
|
|
1285
|
-
"text": "string | undefined
|
|
1504
|
+
"text": "string | undefined"
|
|
1286
1505
|
},
|
|
1287
|
-
"description": "
|
|
1506
|
+
"description": "Supporting copy rendered below the title, explaining what the reset link does.",
|
|
1288
1507
|
"default": "undefined",
|
|
1289
|
-
"fieldName": "
|
|
1508
|
+
"fieldName": "description"
|
|
1290
1509
|
},
|
|
1291
1510
|
{
|
|
1292
|
-
"name": "
|
|
1511
|
+
"name": "error",
|
|
1293
1512
|
"type": {
|
|
1294
|
-
"text": "string"
|
|
1513
|
+
"text": "string | undefined"
|
|
1295
1514
|
},
|
|
1296
|
-
"
|
|
1297
|
-
"
|
|
1298
|
-
"fieldName": "
|
|
1515
|
+
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
1516
|
+
"default": "undefined",
|
|
1517
|
+
"fieldName": "error"
|
|
1299
1518
|
},
|
|
1300
1519
|
{
|
|
1301
|
-
"name": "
|
|
1520
|
+
"name": "success",
|
|
1302
1521
|
"type": {
|
|
1303
|
-
"text": "string"
|
|
1522
|
+
"text": "string | undefined"
|
|
1304
1523
|
},
|
|
1305
|
-
"
|
|
1306
|
-
"
|
|
1307
|
-
"fieldName": "
|
|
1524
|
+
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
1525
|
+
"default": "undefined",
|
|
1526
|
+
"fieldName": "success"
|
|
1308
1527
|
},
|
|
1309
1528
|
{
|
|
1310
|
-
"name": "
|
|
1529
|
+
"name": "pending",
|
|
1311
1530
|
"type": {
|
|
1312
|
-
"text": "
|
|
1531
|
+
"text": "boolean"
|
|
1313
1532
|
},
|
|
1314
|
-
"default": "
|
|
1315
|
-
"description": "
|
|
1316
|
-
"fieldName": "
|
|
1533
|
+
"default": "false",
|
|
1534
|
+
"description": "Marks the request in flight, making the submit button busy while the email field stays editable.",
|
|
1535
|
+
"fieldName": "pending"
|
|
1317
1536
|
},
|
|
1318
1537
|
{
|
|
1319
|
-
"name": "
|
|
1538
|
+
"name": "email-label",
|
|
1320
1539
|
"type": {
|
|
1321
|
-
"text": "string
|
|
1540
|
+
"text": "string"
|
|
1322
1541
|
},
|
|
1323
|
-
"
|
|
1324
|
-
"
|
|
1325
|
-
"fieldName": "
|
|
1542
|
+
"default": "'Email'",
|
|
1543
|
+
"description": "Label of the email field the reset link is requested for.",
|
|
1544
|
+
"fieldName": "emailLabel"
|
|
1326
1545
|
},
|
|
1327
1546
|
{
|
|
1328
|
-
"name": "
|
|
1547
|
+
"name": "submit-label",
|
|
1329
1548
|
"type": {
|
|
1330
|
-
"text": "
|
|
1549
|
+
"text": "string"
|
|
1331
1550
|
},
|
|
1332
|
-
"default": "
|
|
1333
|
-
"description": "
|
|
1334
|
-
"fieldName": "
|
|
1551
|
+
"default": "'Send reset link'",
|
|
1552
|
+
"description": "Text of the form's submit button.",
|
|
1553
|
+
"fieldName": "submitLabel"
|
|
1335
1554
|
}
|
|
1336
1555
|
],
|
|
1337
1556
|
"superclass": {
|
|
1338
1557
|
"name": "LitElement",
|
|
1339
1558
|
"package": "lit"
|
|
1340
1559
|
},
|
|
1341
|
-
"tagName": "skdx-
|
|
1560
|
+
"tagName": "skdx-forgot-password-page",
|
|
1342
1561
|
"customElement": true
|
|
1343
1562
|
}
|
|
1344
1563
|
],
|
|
1345
1564
|
"exports": [
|
|
1346
1565
|
{
|
|
1347
1566
|
"kind": "js",
|
|
1348
|
-
"name": "
|
|
1567
|
+
"name": "SkdxForgotPasswordPage",
|
|
1349
1568
|
"declaration": {
|
|
1350
|
-
"name": "
|
|
1351
|
-
"module": "src/
|
|
1569
|
+
"name": "SkdxForgotPasswordPage",
|
|
1570
|
+
"module": "src/forgot-password-page/ForgotPasswordPage.ts"
|
|
1352
1571
|
}
|
|
1353
1572
|
},
|
|
1354
1573
|
{
|
|
1355
1574
|
"kind": "custom-element-definition",
|
|
1356
|
-
"name": "skdx-
|
|
1575
|
+
"name": "skdx-forgot-password-page",
|
|
1357
1576
|
"declaration": {
|
|
1358
|
-
"name": "
|
|
1359
|
-
"module": "src/
|
|
1577
|
+
"name": "SkdxForgotPasswordPage",
|
|
1578
|
+
"module": "src/forgot-password-page/ForgotPasswordPage.ts"
|
|
1360
1579
|
}
|
|
1361
1580
|
}
|
|
1362
1581
|
]
|
|
1363
1582
|
},
|
|
1364
1583
|
{
|
|
1365
1584
|
"kind": "javascript-module",
|
|
1366
|
-
"path": "src/
|
|
1585
|
+
"path": "src/forgot-password-page/index.ts",
|
|
1367
1586
|
"declarations": [],
|
|
1368
1587
|
"exports": [
|
|
1369
1588
|
{
|
|
1370
1589
|
"kind": "js",
|
|
1371
|
-
"name": "
|
|
1372
|
-
"declaration": {
|
|
1373
|
-
"name": "SkdxConversationList",
|
|
1374
|
-
"module": "./ConversationList"
|
|
1375
|
-
}
|
|
1376
|
-
},
|
|
1377
|
-
{
|
|
1378
|
-
"kind": "js",
|
|
1379
|
-
"name": "SkdxConversationListItem",
|
|
1590
|
+
"name": "SkdxForgotPasswordPage",
|
|
1380
1591
|
"declaration": {
|
|
1381
|
-
"name": "
|
|
1382
|
-
"module": "./
|
|
1592
|
+
"name": "SkdxForgotPasswordPage",
|
|
1593
|
+
"module": "./ForgotPasswordPage"
|
|
1383
1594
|
}
|
|
1384
1595
|
},
|
|
1385
1596
|
{
|
|
1386
1597
|
"kind": "js",
|
|
1387
|
-
"name": "
|
|
1598
|
+
"name": "SkdxForgotPasswordDetail",
|
|
1388
1599
|
"declaration": {
|
|
1389
|
-
"name": "
|
|
1390
|
-
"module": "./
|
|
1600
|
+
"name": "SkdxForgotPasswordDetail",
|
|
1601
|
+
"module": "./ForgotPasswordPage"
|
|
1391
1602
|
}
|
|
1392
1603
|
}
|
|
1393
1604
|
]
|
|
1394
1605
|
},
|
|
1395
1606
|
{
|
|
1396
1607
|
"kind": "javascript-module",
|
|
1397
|
-
"path": "src/
|
|
1608
|
+
"path": "src/dashboard-layout/DashboardLayout.ts",
|
|
1398
1609
|
"declarations": [
|
|
1399
1610
|
{
|
|
1400
1611
|
"kind": "class",
|
|
1401
|
-
"description": "
|
|
1402
|
-
"name": "
|
|
1612
|
+
"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.",
|
|
1613
|
+
"name": "SkdxDashboardLayout",
|
|
1403
1614
|
"slots": [
|
|
1404
1615
|
{
|
|
1405
|
-
"description": "
|
|
1616
|
+
"description": "The page content rendered inside the `<main>` region.",
|
|
1406
1617
|
"name": ""
|
|
1407
1618
|
},
|
|
1408
1619
|
{
|
|
1409
|
-
"description": "
|
|
1410
|
-
"name": "
|
|
1620
|
+
"description": "Logo or product mark at the start of the app bar.",
|
|
1621
|
+
"name": "branding"
|
|
1411
1622
|
},
|
|
1412
1623
|
{
|
|
1413
|
-
"description": "
|
|
1624
|
+
"description": "Controls at the end of the app bar.",
|
|
1414
1625
|
"name": "actions"
|
|
1415
1626
|
}
|
|
1416
1627
|
],
|
|
@@ -1421,159 +1632,201 @@
|
|
|
1421
1632
|
"type": {
|
|
1422
1633
|
"text": "string"
|
|
1423
1634
|
},
|
|
1424
|
-
"
|
|
1425
|
-
"
|
|
1635
|
+
"default": "''",
|
|
1636
|
+
"description": "Application title shown in the app bar after the branding. The JavaScript property is `title`.",
|
|
1637
|
+
"attribute": "heading"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"kind": "field",
|
|
1641
|
+
"name": "navigation",
|
|
1642
|
+
"type": {
|
|
1643
|
+
"text": "readonly SkdxDashboardNavigationItem[]"
|
|
1644
|
+
},
|
|
1645
|
+
"description": "The side navigation, one entry per row, nested through each entry's `children`.",
|
|
1426
1646
|
"required": true
|
|
1427
1647
|
},
|
|
1428
1648
|
{
|
|
1429
1649
|
"kind": "field",
|
|
1430
|
-
"name": "
|
|
1650
|
+
"name": "contentAs",
|
|
1431
1651
|
"type": {
|
|
1432
|
-
"text": "
|
|
1652
|
+
"text": "'main' | 'div'"
|
|
1433
1653
|
},
|
|
1434
|
-
"
|
|
1654
|
+
"default": "'main'",
|
|
1655
|
+
"description": "Content element: use `div` when embedding inside an existing page main landmark.",
|
|
1656
|
+
"attribute": "content-as"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"kind": "field",
|
|
1660
|
+
"name": "navOpen",
|
|
1661
|
+
"type": {
|
|
1662
|
+
"text": "boolean | undefined"
|
|
1663
|
+
},
|
|
1664
|
+
"description": "Whether the side navigation is shown, for controlled usage.",
|
|
1435
1665
|
"default": "undefined",
|
|
1436
|
-
"attribute": "
|
|
1666
|
+
"attribute": "nav-open"
|
|
1437
1667
|
},
|
|
1438
1668
|
{
|
|
1439
1669
|
"kind": "field",
|
|
1440
|
-
"name": "
|
|
1670
|
+
"name": "defaultNavOpen",
|
|
1441
1671
|
"type": {
|
|
1442
|
-
"text": "
|
|
1672
|
+
"text": "boolean"
|
|
1443
1673
|
},
|
|
1444
|
-
"default": "
|
|
1445
|
-
"description": "
|
|
1446
|
-
"attribute": "
|
|
1674
|
+
"default": "true",
|
|
1675
|
+
"description": "Whether the side navigation starts shown, for uncontrolled usage.",
|
|
1676
|
+
"attribute": "default-nav-open"
|
|
1447
1677
|
},
|
|
1448
1678
|
{
|
|
1449
1679
|
"kind": "field",
|
|
1450
|
-
"name": "
|
|
1680
|
+
"name": "navLabel",
|
|
1451
1681
|
"type": {
|
|
1452
|
-
"text": "
|
|
1682
|
+
"text": "string"
|
|
1453
1683
|
},
|
|
1454
|
-
"
|
|
1455
|
-
"
|
|
1456
|
-
"attribute": "
|
|
1684
|
+
"default": "'Main navigation'",
|
|
1685
|
+
"description": "Accessible name of the side navigation landmark.",
|
|
1686
|
+
"attribute": "nav-label"
|
|
1457
1687
|
},
|
|
1458
1688
|
{
|
|
1459
1689
|
"kind": "field",
|
|
1460
|
-
"name": "
|
|
1690
|
+
"name": "navToggleLabel",
|
|
1461
1691
|
"type": {
|
|
1462
|
-
"text": "
|
|
1692
|
+
"text": "string"
|
|
1463
1693
|
},
|
|
1464
|
-
"default": "'
|
|
1465
|
-
"description": "
|
|
1466
|
-
"attribute": "
|
|
1694
|
+
"default": "'Toggle navigation'",
|
|
1695
|
+
"description": "Accessible name of the icon-only button that shows and hides the navigation.",
|
|
1696
|
+
"attribute": "nav-toggle-label"
|
|
1697
|
+
}
|
|
1698
|
+
],
|
|
1699
|
+
"events": [
|
|
1700
|
+
{
|
|
1701
|
+
"description": "Fires with the new open state whenever the navigation toggle is activated.",
|
|
1702
|
+
"name": "nav-open-change"
|
|
1467
1703
|
}
|
|
1468
1704
|
],
|
|
1469
1705
|
"attributes": [
|
|
1470
1706
|
{
|
|
1471
|
-
"name": "
|
|
1707
|
+
"name": "heading",
|
|
1472
1708
|
"type": {
|
|
1473
1709
|
"text": "string"
|
|
1474
1710
|
},
|
|
1475
|
-
"
|
|
1476
|
-
"
|
|
1477
|
-
"
|
|
1711
|
+
"default": "''",
|
|
1712
|
+
"description": "Application title shown in the app bar after the branding. The JavaScript property is `title`.",
|
|
1713
|
+
"fieldName": "title"
|
|
1478
1714
|
},
|
|
1479
1715
|
{
|
|
1480
|
-
"name": "
|
|
1716
|
+
"name": "content-as",
|
|
1481
1717
|
"type": {
|
|
1482
|
-
"text": "
|
|
1718
|
+
"text": "'main' | 'div'"
|
|
1483
1719
|
},
|
|
1484
|
-
"
|
|
1720
|
+
"default": "'main'",
|
|
1721
|
+
"description": "Content element: use `div` when embedding inside an existing page main landmark.",
|
|
1722
|
+
"fieldName": "contentAs"
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
"name": "nav-open",
|
|
1726
|
+
"type": {
|
|
1727
|
+
"text": "boolean | undefined"
|
|
1728
|
+
},
|
|
1729
|
+
"description": "Whether the side navigation is shown, for controlled usage.",
|
|
1485
1730
|
"default": "undefined",
|
|
1486
|
-
"fieldName": "
|
|
1731
|
+
"fieldName": "navOpen"
|
|
1487
1732
|
},
|
|
1488
1733
|
{
|
|
1489
|
-
"name": "
|
|
1734
|
+
"name": "default-nav-open",
|
|
1490
1735
|
"type": {
|
|
1491
|
-
"text": "
|
|
1736
|
+
"text": "boolean"
|
|
1492
1737
|
},
|
|
1493
|
-
"default": "
|
|
1494
|
-
"description": "
|
|
1495
|
-
"fieldName": "
|
|
1738
|
+
"default": "true",
|
|
1739
|
+
"description": "Whether the side navigation starts shown, for uncontrolled usage.",
|
|
1740
|
+
"fieldName": "defaultNavOpen"
|
|
1496
1741
|
},
|
|
1497
1742
|
{
|
|
1498
|
-
"name": "
|
|
1743
|
+
"name": "nav-label",
|
|
1499
1744
|
"type": {
|
|
1500
|
-
"text": "
|
|
1745
|
+
"text": "string"
|
|
1501
1746
|
},
|
|
1502
|
-
"
|
|
1503
|
-
"
|
|
1504
|
-
"fieldName": "
|
|
1747
|
+
"default": "'Main navigation'",
|
|
1748
|
+
"description": "Accessible name of the side navigation landmark.",
|
|
1749
|
+
"fieldName": "navLabel"
|
|
1505
1750
|
},
|
|
1506
1751
|
{
|
|
1507
|
-
"name": "
|
|
1752
|
+
"name": "nav-toggle-label",
|
|
1508
1753
|
"type": {
|
|
1509
|
-
"text": "
|
|
1754
|
+
"text": "string"
|
|
1510
1755
|
},
|
|
1511
|
-
"default": "'
|
|
1512
|
-
"description": "
|
|
1513
|
-
"fieldName": "
|
|
1756
|
+
"default": "'Toggle navigation'",
|
|
1757
|
+
"description": "Accessible name of the icon-only button that shows and hides the navigation.",
|
|
1758
|
+
"fieldName": "navToggleLabel"
|
|
1514
1759
|
}
|
|
1515
1760
|
],
|
|
1516
1761
|
"superclass": {
|
|
1517
1762
|
"name": "LitElement",
|
|
1518
1763
|
"package": "lit"
|
|
1519
1764
|
},
|
|
1520
|
-
"tagName": "skdx-
|
|
1765
|
+
"tagName": "skdx-dashboard-layout",
|
|
1521
1766
|
"customElement": true
|
|
1522
1767
|
}
|
|
1523
1768
|
],
|
|
1524
1769
|
"exports": [
|
|
1525
1770
|
{
|
|
1526
1771
|
"kind": "js",
|
|
1527
|
-
"name": "
|
|
1772
|
+
"name": "SkdxDashboardLayout",
|
|
1528
1773
|
"declaration": {
|
|
1529
|
-
"name": "
|
|
1530
|
-
"module": "src/
|
|
1774
|
+
"name": "SkdxDashboardLayout",
|
|
1775
|
+
"module": "src/dashboard-layout/DashboardLayout.ts"
|
|
1531
1776
|
}
|
|
1532
1777
|
},
|
|
1533
1778
|
{
|
|
1534
1779
|
"kind": "custom-element-definition",
|
|
1535
|
-
"name": "skdx-
|
|
1780
|
+
"name": "skdx-dashboard-layout",
|
|
1536
1781
|
"declaration": {
|
|
1537
|
-
"name": "
|
|
1538
|
-
"module": "src/
|
|
1782
|
+
"name": "SkdxDashboardLayout",
|
|
1783
|
+
"module": "src/dashboard-layout/DashboardLayout.ts"
|
|
1539
1784
|
}
|
|
1540
1785
|
}
|
|
1541
1786
|
]
|
|
1542
1787
|
},
|
|
1543
1788
|
{
|
|
1544
1789
|
"kind": "javascript-module",
|
|
1545
|
-
"path": "src/
|
|
1790
|
+
"path": "src/dashboard-layout/index.ts",
|
|
1546
1791
|
"declarations": [],
|
|
1547
1792
|
"exports": [
|
|
1548
1793
|
{
|
|
1549
1794
|
"kind": "js",
|
|
1550
|
-
"name": "
|
|
1795
|
+
"name": "SkdxDashboardLayout",
|
|
1551
1796
|
"declaration": {
|
|
1552
|
-
"name": "
|
|
1553
|
-
"module": "./
|
|
1797
|
+
"name": "SkdxDashboardLayout",
|
|
1798
|
+
"module": "./DashboardLayout"
|
|
1799
|
+
}
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"kind": "js",
|
|
1803
|
+
"name": "SkdxDashboardNavigationItem",
|
|
1804
|
+
"declaration": {
|
|
1805
|
+
"name": "SkdxDashboardNavigationItem",
|
|
1806
|
+
"module": "./DashboardLayout"
|
|
1554
1807
|
}
|
|
1555
1808
|
}
|
|
1556
1809
|
]
|
|
1557
1810
|
},
|
|
1558
1811
|
{
|
|
1559
1812
|
"kind": "javascript-module",
|
|
1560
|
-
"path": "src/
|
|
1813
|
+
"path": "src/empty-state/EmptyState.ts",
|
|
1561
1814
|
"declarations": [
|
|
1562
1815
|
{
|
|
1563
1816
|
"kind": "class",
|
|
1564
|
-
"description": "
|
|
1565
|
-
"name": "
|
|
1817
|
+
"description": "Placeholder block for a region with nothing to show — no content yet, no\nresults, first use, or disconnected — composing a Heading, a Text\ndescription and consumer-supplied icon and actions.\n\nRenders light DOM, so its parts are classes rather than shadow `::part()`\ntargets: `.skdx-empty-state` on the host, then `__icon`, `__title`,\n`__description`, `__content` and `__actions`. `data-size` and `data-align`\nsit on the host for the skin to read.",
|
|
1818
|
+
"name": "SkdxEmptyState",
|
|
1566
1819
|
"slots": [
|
|
1567
1820
|
{
|
|
1568
|
-
"description": "
|
|
1821
|
+
"description": "Extra content rendered between the description and the actions region.",
|
|
1569
1822
|
"name": ""
|
|
1570
1823
|
},
|
|
1571
1824
|
{
|
|
1572
|
-
"description": "
|
|
1573
|
-
"name": "
|
|
1825
|
+
"description": "Decorative illustration or glyph rendered above the title.",
|
|
1826
|
+
"name": "icon"
|
|
1574
1827
|
},
|
|
1575
1828
|
{
|
|
1576
|
-
"description": "
|
|
1829
|
+
"description": "Primary and secondary controls rendered below the content.",
|
|
1577
1830
|
"name": "actions"
|
|
1578
1831
|
}
|
|
1579
1832
|
],
|
|
@@ -1584,159 +1837,136 @@
|
|
|
1584
1837
|
"type": {
|
|
1585
1838
|
"text": "string"
|
|
1586
1839
|
},
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1589
|
-
"attribute": "title"
|
|
1590
|
-
},
|
|
1591
|
-
{
|
|
1592
|
-
"kind": "field",
|
|
1593
|
-
"name": "navigation",
|
|
1594
|
-
"type": {
|
|
1595
|
-
"text": "readonly SkdxDashboardNavigationItem[]"
|
|
1596
|
-
},
|
|
1597
|
-
"description": "The side navigation, one entry per row, nested through each entry's `children`.",
|
|
1840
|
+
"description": "Heading text naming the empty region, rendered into a derived Heading. The JavaScript property is `title`.",
|
|
1841
|
+
"attribute": "heading",
|
|
1598
1842
|
"required": true
|
|
1599
1843
|
},
|
|
1600
1844
|
{
|
|
1601
1845
|
"kind": "field",
|
|
1602
|
-
"name": "
|
|
1846
|
+
"name": "description",
|
|
1603
1847
|
"type": {
|
|
1604
|
-
"text": "
|
|
1848
|
+
"text": "string | undefined | undefined"
|
|
1605
1849
|
},
|
|
1606
|
-
"description": "
|
|
1850
|
+
"description": "Supporting copy rendered below the title, explaining why the region is empty.",
|
|
1607
1851
|
"default": "undefined",
|
|
1608
|
-
"attribute": "
|
|
1852
|
+
"attribute": "description"
|
|
1609
1853
|
},
|
|
1610
1854
|
{
|
|
1611
1855
|
"kind": "field",
|
|
1612
|
-
"name": "
|
|
1856
|
+
"name": "headingLevel",
|
|
1613
1857
|
"type": {
|
|
1614
|
-
"text": "
|
|
1858
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
1615
1859
|
},
|
|
1616
|
-
"default": "
|
|
1617
|
-
"description": "
|
|
1618
|
-
"attribute": "
|
|
1860
|
+
"default": "3",
|
|
1861
|
+
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
1862
|
+
"attribute": "heading-level"
|
|
1619
1863
|
},
|
|
1620
1864
|
{
|
|
1621
1865
|
"kind": "field",
|
|
1622
|
-
"name": "
|
|
1866
|
+
"name": "size",
|
|
1623
1867
|
"type": {
|
|
1624
|
-
"text": "string"
|
|
1868
|
+
"text": "'sm' | 'md' | 'lg' | (string & {}) | undefined | undefined"
|
|
1625
1869
|
},
|
|
1626
|
-
"
|
|
1627
|
-
"
|
|
1628
|
-
"attribute": "
|
|
1870
|
+
"description": "Visual size rung, written to `data-size` on the host; the skin scales the icon, spacing and title by it.",
|
|
1871
|
+
"default": "undefined",
|
|
1872
|
+
"attribute": "size"
|
|
1629
1873
|
},
|
|
1630
1874
|
{
|
|
1631
1875
|
"kind": "field",
|
|
1632
|
-
"name": "
|
|
1876
|
+
"name": "align",
|
|
1633
1877
|
"type": {
|
|
1634
|
-
"text": "string"
|
|
1878
|
+
"text": "'center' | 'start' | (string & {})"
|
|
1635
1879
|
},
|
|
1636
|
-
"default": "'
|
|
1637
|
-
"description": "
|
|
1638
|
-
"attribute": "
|
|
1639
|
-
}
|
|
1640
|
-
],
|
|
1641
|
-
"events": [
|
|
1642
|
-
{
|
|
1643
|
-
"description": "Fires with the new open state whenever the navigation toggle is activated.",
|
|
1644
|
-
"name": "nav-open-change"
|
|
1880
|
+
"default": "'center'",
|
|
1881
|
+
"description": "Text and content alignment rung, written to `data-align` on the host.",
|
|
1882
|
+
"attribute": "align"
|
|
1645
1883
|
}
|
|
1646
1884
|
],
|
|
1647
1885
|
"attributes": [
|
|
1648
1886
|
{
|
|
1649
|
-
"name": "
|
|
1887
|
+
"name": "heading",
|
|
1650
1888
|
"type": {
|
|
1651
1889
|
"text": "string"
|
|
1652
1890
|
},
|
|
1653
|
-
"
|
|
1654
|
-
"
|
|
1655
|
-
"
|
|
1891
|
+
"description": "Heading text naming the empty region, rendered into a derived Heading. The JavaScript property is `title`.",
|
|
1892
|
+
"fieldName": "title",
|
|
1893
|
+
"required": true
|
|
1656
1894
|
},
|
|
1657
1895
|
{
|
|
1658
|
-
"name": "
|
|
1896
|
+
"name": "description",
|
|
1659
1897
|
"type": {
|
|
1660
|
-
"text": "
|
|
1898
|
+
"text": "string | undefined | undefined"
|
|
1661
1899
|
},
|
|
1662
|
-
"description": "
|
|
1900
|
+
"description": "Supporting copy rendered below the title, explaining why the region is empty.",
|
|
1663
1901
|
"default": "undefined",
|
|
1664
|
-
"fieldName": "
|
|
1902
|
+
"fieldName": "description"
|
|
1665
1903
|
},
|
|
1666
1904
|
{
|
|
1667
|
-
"name": "
|
|
1905
|
+
"name": "heading-level",
|
|
1668
1906
|
"type": {
|
|
1669
|
-
"text": "
|
|
1907
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
1670
1908
|
},
|
|
1671
|
-
"default": "
|
|
1672
|
-
"description": "
|
|
1673
|
-
"fieldName": "
|
|
1909
|
+
"default": "3",
|
|
1910
|
+
"description": "Outline level of the derived title heading, lowered or raised to fit the surrounding outline.",
|
|
1911
|
+
"fieldName": "headingLevel"
|
|
1674
1912
|
},
|
|
1675
1913
|
{
|
|
1676
|
-
"name": "
|
|
1914
|
+
"name": "size",
|
|
1677
1915
|
"type": {
|
|
1678
|
-
"text": "string"
|
|
1916
|
+
"text": "'sm' | 'md' | 'lg' | (string & {}) | undefined | undefined"
|
|
1679
1917
|
},
|
|
1680
|
-
"
|
|
1681
|
-
"
|
|
1682
|
-
"fieldName": "
|
|
1918
|
+
"description": "Visual size rung, written to `data-size` on the host; the skin scales the icon, spacing and title by it.",
|
|
1919
|
+
"default": "undefined",
|
|
1920
|
+
"fieldName": "size"
|
|
1683
1921
|
},
|
|
1684
1922
|
{
|
|
1685
|
-
"name": "
|
|
1923
|
+
"name": "align",
|
|
1686
1924
|
"type": {
|
|
1687
|
-
"text": "string"
|
|
1925
|
+
"text": "'center' | 'start' | (string & {})"
|
|
1688
1926
|
},
|
|
1689
|
-
"default": "'
|
|
1690
|
-
"description": "
|
|
1691
|
-
"fieldName": "
|
|
1927
|
+
"default": "'center'",
|
|
1928
|
+
"description": "Text and content alignment rung, written to `data-align` on the host.",
|
|
1929
|
+
"fieldName": "align"
|
|
1692
1930
|
}
|
|
1693
1931
|
],
|
|
1694
1932
|
"superclass": {
|
|
1695
1933
|
"name": "LitElement",
|
|
1696
1934
|
"package": "lit"
|
|
1697
1935
|
},
|
|
1698
|
-
"tagName": "skdx-
|
|
1936
|
+
"tagName": "skdx-empty-state",
|
|
1699
1937
|
"customElement": true
|
|
1700
1938
|
}
|
|
1701
1939
|
],
|
|
1702
1940
|
"exports": [
|
|
1703
1941
|
{
|
|
1704
1942
|
"kind": "js",
|
|
1705
|
-
"name": "
|
|
1943
|
+
"name": "SkdxEmptyState",
|
|
1706
1944
|
"declaration": {
|
|
1707
|
-
"name": "
|
|
1708
|
-
"module": "src/
|
|
1945
|
+
"name": "SkdxEmptyState",
|
|
1946
|
+
"module": "src/empty-state/EmptyState.ts"
|
|
1709
1947
|
}
|
|
1710
1948
|
},
|
|
1711
1949
|
{
|
|
1712
1950
|
"kind": "custom-element-definition",
|
|
1713
|
-
"name": "skdx-
|
|
1951
|
+
"name": "skdx-empty-state",
|
|
1714
1952
|
"declaration": {
|
|
1715
|
-
"name": "
|
|
1716
|
-
"module": "src/
|
|
1953
|
+
"name": "SkdxEmptyState",
|
|
1954
|
+
"module": "src/empty-state/EmptyState.ts"
|
|
1717
1955
|
}
|
|
1718
1956
|
}
|
|
1719
1957
|
]
|
|
1720
1958
|
},
|
|
1721
1959
|
{
|
|
1722
1960
|
"kind": "javascript-module",
|
|
1723
|
-
"path": "src/
|
|
1961
|
+
"path": "src/empty-state/index.ts",
|
|
1724
1962
|
"declarations": [],
|
|
1725
1963
|
"exports": [
|
|
1726
1964
|
{
|
|
1727
1965
|
"kind": "js",
|
|
1728
|
-
"name": "
|
|
1729
|
-
"declaration": {
|
|
1730
|
-
"name": "SkdxDashboardLayout",
|
|
1731
|
-
"module": "./DashboardLayout"
|
|
1732
|
-
}
|
|
1733
|
-
},
|
|
1734
|
-
{
|
|
1735
|
-
"kind": "js",
|
|
1736
|
-
"name": "SkdxDashboardNavigationItem",
|
|
1966
|
+
"name": "SkdxEmptyState",
|
|
1737
1967
|
"declaration": {
|
|
1738
|
-
"name": "
|
|
1739
|
-
"module": "./
|
|
1968
|
+
"name": "SkdxEmptyState",
|
|
1969
|
+
"module": "./EmptyState"
|
|
1740
1970
|
}
|
|
1741
1971
|
}
|
|
1742
1972
|
]
|
|
@@ -1988,217 +2218,6 @@
|
|
|
1988
2218
|
}
|
|
1989
2219
|
]
|
|
1990
2220
|
},
|
|
1991
|
-
{
|
|
1992
|
-
"kind": "javascript-module",
|
|
1993
|
-
"path": "src/forgot-password-page/ForgotPasswordPage.ts",
|
|
1994
|
-
"declarations": [
|
|
1995
|
-
{
|
|
1996
|
-
"kind": "class",
|
|
1997
|
-
"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`.",
|
|
1998
|
-
"name": "SkdxForgotPasswordPage",
|
|
1999
|
-
"slots": [
|
|
2000
|
-
{
|
|
2001
|
-
"description": "Extra fields rendered inside the form, above the submit button.",
|
|
2002
|
-
"name": ""
|
|
2003
|
-
},
|
|
2004
|
-
{
|
|
2005
|
-
"description": "Navigation below the form, such as a link back to the sign-in page.",
|
|
2006
|
-
"name": "footer"
|
|
2007
|
-
}
|
|
2008
|
-
],
|
|
2009
|
-
"members": [
|
|
2010
|
-
{
|
|
2011
|
-
"kind": "field",
|
|
2012
|
-
"name": "title",
|
|
2013
|
-
"type": {
|
|
2014
|
-
"text": "string"
|
|
2015
|
-
},
|
|
2016
|
-
"default": "'Reset your password'",
|
|
2017
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
2018
|
-
"attribute": "title"
|
|
2019
|
-
},
|
|
2020
|
-
{
|
|
2021
|
-
"kind": "field",
|
|
2022
|
-
"name": "description",
|
|
2023
|
-
"type": {
|
|
2024
|
-
"text": "string | undefined"
|
|
2025
|
-
},
|
|
2026
|
-
"description": "Supporting copy rendered below the title, explaining what the reset link does.",
|
|
2027
|
-
"default": "undefined",
|
|
2028
|
-
"attribute": "description"
|
|
2029
|
-
},
|
|
2030
|
-
{
|
|
2031
|
-
"kind": "field",
|
|
2032
|
-
"name": "error",
|
|
2033
|
-
"type": {
|
|
2034
|
-
"text": "string | undefined"
|
|
2035
|
-
},
|
|
2036
|
-
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
2037
|
-
"default": "undefined",
|
|
2038
|
-
"attribute": "error"
|
|
2039
|
-
},
|
|
2040
|
-
{
|
|
2041
|
-
"kind": "field",
|
|
2042
|
-
"name": "success",
|
|
2043
|
-
"type": {
|
|
2044
|
-
"text": "string | undefined"
|
|
2045
|
-
},
|
|
2046
|
-
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
2047
|
-
"default": "undefined",
|
|
2048
|
-
"attribute": "success"
|
|
2049
|
-
},
|
|
2050
|
-
{
|
|
2051
|
-
"kind": "field",
|
|
2052
|
-
"name": "pending",
|
|
2053
|
-
"type": {
|
|
2054
|
-
"text": "boolean"
|
|
2055
|
-
},
|
|
2056
|
-
"default": "false",
|
|
2057
|
-
"description": "Marks the request in flight, making the submit button busy while the email field stays editable.",
|
|
2058
|
-
"attribute": "pending"
|
|
2059
|
-
},
|
|
2060
|
-
{
|
|
2061
|
-
"kind": "field",
|
|
2062
|
-
"name": "emailLabel",
|
|
2063
|
-
"type": {
|
|
2064
|
-
"text": "string"
|
|
2065
|
-
},
|
|
2066
|
-
"default": "'Email'",
|
|
2067
|
-
"description": "Label of the email field the reset link is requested for.",
|
|
2068
|
-
"attribute": "email-label"
|
|
2069
|
-
},
|
|
2070
|
-
{
|
|
2071
|
-
"kind": "field",
|
|
2072
|
-
"name": "submitLabel",
|
|
2073
|
-
"type": {
|
|
2074
|
-
"text": "string"
|
|
2075
|
-
},
|
|
2076
|
-
"default": "'Send reset link'",
|
|
2077
|
-
"description": "Text of the form's submit button.",
|
|
2078
|
-
"attribute": "submit-label"
|
|
2079
|
-
}
|
|
2080
|
-
],
|
|
2081
|
-
"events": [
|
|
2082
|
-
{
|
|
2083
|
-
"description": "Fires with `{ email }` when the form submits with an address that passes constraint validation.",
|
|
2084
|
-
"name": "request-reset"
|
|
2085
|
-
}
|
|
2086
|
-
],
|
|
2087
|
-
"attributes": [
|
|
2088
|
-
{
|
|
2089
|
-
"name": "title",
|
|
2090
|
-
"type": {
|
|
2091
|
-
"text": "string"
|
|
2092
|
-
},
|
|
2093
|
-
"default": "'Reset your password'",
|
|
2094
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
2095
|
-
"fieldName": "title"
|
|
2096
|
-
},
|
|
2097
|
-
{
|
|
2098
|
-
"name": "description",
|
|
2099
|
-
"type": {
|
|
2100
|
-
"text": "string | undefined"
|
|
2101
|
-
},
|
|
2102
|
-
"description": "Supporting copy rendered below the title, explaining what the reset link does.",
|
|
2103
|
-
"default": "undefined",
|
|
2104
|
-
"fieldName": "description"
|
|
2105
|
-
},
|
|
2106
|
-
{
|
|
2107
|
-
"name": "error",
|
|
2108
|
-
"type": {
|
|
2109
|
-
"text": "string | undefined"
|
|
2110
|
-
},
|
|
2111
|
-
"description": "Message rendered into a derived error Alert above the form. The block never clears it.",
|
|
2112
|
-
"default": "undefined",
|
|
2113
|
-
"fieldName": "error"
|
|
2114
|
-
},
|
|
2115
|
-
{
|
|
2116
|
-
"name": "success",
|
|
2117
|
-
"type": {
|
|
2118
|
-
"text": "string | undefined"
|
|
2119
|
-
},
|
|
2120
|
-
"description": "Confirmation rendered into a derived success Alert that replaces the form entirely.",
|
|
2121
|
-
"default": "undefined",
|
|
2122
|
-
"fieldName": "success"
|
|
2123
|
-
},
|
|
2124
|
-
{
|
|
2125
|
-
"name": "pending",
|
|
2126
|
-
"type": {
|
|
2127
|
-
"text": "boolean"
|
|
2128
|
-
},
|
|
2129
|
-
"default": "false",
|
|
2130
|
-
"description": "Marks the request in flight, making the submit button busy while the email field stays editable.",
|
|
2131
|
-
"fieldName": "pending"
|
|
2132
|
-
},
|
|
2133
|
-
{
|
|
2134
|
-
"name": "email-label",
|
|
2135
|
-
"type": {
|
|
2136
|
-
"text": "string"
|
|
2137
|
-
},
|
|
2138
|
-
"default": "'Email'",
|
|
2139
|
-
"description": "Label of the email field the reset link is requested for.",
|
|
2140
|
-
"fieldName": "emailLabel"
|
|
2141
|
-
},
|
|
2142
|
-
{
|
|
2143
|
-
"name": "submit-label",
|
|
2144
|
-
"type": {
|
|
2145
|
-
"text": "string"
|
|
2146
|
-
},
|
|
2147
|
-
"default": "'Send reset link'",
|
|
2148
|
-
"description": "Text of the form's submit button.",
|
|
2149
|
-
"fieldName": "submitLabel"
|
|
2150
|
-
}
|
|
2151
|
-
],
|
|
2152
|
-
"superclass": {
|
|
2153
|
-
"name": "LitElement",
|
|
2154
|
-
"package": "lit"
|
|
2155
|
-
},
|
|
2156
|
-
"tagName": "skdx-forgot-password-page",
|
|
2157
|
-
"customElement": true
|
|
2158
|
-
}
|
|
2159
|
-
],
|
|
2160
|
-
"exports": [
|
|
2161
|
-
{
|
|
2162
|
-
"kind": "js",
|
|
2163
|
-
"name": "SkdxForgotPasswordPage",
|
|
2164
|
-
"declaration": {
|
|
2165
|
-
"name": "SkdxForgotPasswordPage",
|
|
2166
|
-
"module": "src/forgot-password-page/ForgotPasswordPage.ts"
|
|
2167
|
-
}
|
|
2168
|
-
},
|
|
2169
|
-
{
|
|
2170
|
-
"kind": "custom-element-definition",
|
|
2171
|
-
"name": "skdx-forgot-password-page",
|
|
2172
|
-
"declaration": {
|
|
2173
|
-
"name": "SkdxForgotPasswordPage",
|
|
2174
|
-
"module": "src/forgot-password-page/ForgotPasswordPage.ts"
|
|
2175
|
-
}
|
|
2176
|
-
}
|
|
2177
|
-
]
|
|
2178
|
-
},
|
|
2179
|
-
{
|
|
2180
|
-
"kind": "javascript-module",
|
|
2181
|
-
"path": "src/forgot-password-page/index.ts",
|
|
2182
|
-
"declarations": [],
|
|
2183
|
-
"exports": [
|
|
2184
|
-
{
|
|
2185
|
-
"kind": "js",
|
|
2186
|
-
"name": "SkdxForgotPasswordPage",
|
|
2187
|
-
"declaration": {
|
|
2188
|
-
"name": "SkdxForgotPasswordPage",
|
|
2189
|
-
"module": "./ForgotPasswordPage"
|
|
2190
|
-
}
|
|
2191
|
-
},
|
|
2192
|
-
{
|
|
2193
|
-
"kind": "js",
|
|
2194
|
-
"name": "SkdxForgotPasswordDetail",
|
|
2195
|
-
"declaration": {
|
|
2196
|
-
"name": "SkdxForgotPasswordDetail",
|
|
2197
|
-
"module": "./ForgotPasswordPage"
|
|
2198
|
-
}
|
|
2199
|
-
}
|
|
2200
|
-
]
|
|
2201
|
-
},
|
|
2202
2221
|
{
|
|
2203
2222
|
"kind": "javascript-module",
|
|
2204
2223
|
"path": "src/form-section/FormSection.ts",
|
|
@@ -2224,8 +2243,8 @@
|
|
|
2224
2243
|
"type": {
|
|
2225
2244
|
"text": "string"
|
|
2226
2245
|
},
|
|
2227
|
-
"description": "Heading text naming the group, rendered into a derived Heading that names the section.",
|
|
2228
|
-
"attribute": "
|
|
2246
|
+
"description": "Heading text naming the group, rendered into a derived Heading that names the section. The JavaScript property is `title`.",
|
|
2247
|
+
"attribute": "heading",
|
|
2229
2248
|
"required": true
|
|
2230
2249
|
},
|
|
2231
2250
|
{
|
|
@@ -2261,11 +2280,11 @@
|
|
|
2261
2280
|
],
|
|
2262
2281
|
"attributes": [
|
|
2263
2282
|
{
|
|
2264
|
-
"name": "
|
|
2283
|
+
"name": "heading",
|
|
2265
2284
|
"type": {
|
|
2266
2285
|
"text": "string"
|
|
2267
2286
|
},
|
|
2268
|
-
"description": "Heading text naming the group, rendered into a derived Heading that names the section.",
|
|
2287
|
+
"description": "Heading text naming the group, rendered into a derived Heading that names the section. The JavaScript property is `title`.",
|
|
2269
2288
|
"fieldName": "title",
|
|
2270
2289
|
"required": true
|
|
2271
2290
|
},
|
|
@@ -2437,8 +2456,8 @@
|
|
|
2437
2456
|
"text": "string"
|
|
2438
2457
|
},
|
|
2439
2458
|
"default": "'Notifications'",
|
|
2440
|
-
"description": "Heading text, rendered into a derived Heading that names the section.",
|
|
2441
|
-
"attribute": "
|
|
2459
|
+
"description": "Heading text, rendered into a derived Heading that names the section. The JavaScript property is `title`.",
|
|
2460
|
+
"attribute": "heading"
|
|
2442
2461
|
},
|
|
2443
2462
|
{
|
|
2444
2463
|
"kind": "field",
|
|
@@ -2554,12 +2573,12 @@
|
|
|
2554
2573
|
],
|
|
2555
2574
|
"attributes": [
|
|
2556
2575
|
{
|
|
2557
|
-
"name": "
|
|
2576
|
+
"name": "heading",
|
|
2558
2577
|
"type": {
|
|
2559
2578
|
"text": "string"
|
|
2560
2579
|
},
|
|
2561
2580
|
"default": "'Notifications'",
|
|
2562
|
-
"description": "Heading text, rendered into a derived Heading that names the section.",
|
|
2581
|
+
"description": "Heading text, rendered into a derived Heading that names the section. The JavaScript property is `title`.",
|
|
2563
2582
|
"fieldName": "title"
|
|
2564
2583
|
},
|
|
2565
2584
|
{
|
|
@@ -2707,8 +2726,8 @@
|
|
|
2707
2726
|
"type": {
|
|
2708
2727
|
"text": "string"
|
|
2709
2728
|
},
|
|
2710
|
-
"description": "Heading text naming the checklist, rendered into a derived Heading that names the section.",
|
|
2711
|
-
"attribute": "
|
|
2729
|
+
"description": "Heading text naming the checklist, rendered into a derived Heading that names the section. The JavaScript property is `title`.",
|
|
2730
|
+
"attribute": "heading",
|
|
2712
2731
|
"required": true
|
|
2713
2732
|
},
|
|
2714
2733
|
{
|
|
@@ -2778,11 +2797,11 @@
|
|
|
2778
2797
|
],
|
|
2779
2798
|
"attributes": [
|
|
2780
2799
|
{
|
|
2781
|
-
"name": "
|
|
2800
|
+
"name": "heading",
|
|
2782
2801
|
"type": {
|
|
2783
2802
|
"text": "string"
|
|
2784
2803
|
},
|
|
2785
|
-
"description": "Heading text naming the checklist, rendered into a derived Heading that names the section.",
|
|
2804
|
+
"description": "Heading text naming the checklist, rendered into a derived Heading that names the section. The JavaScript property is `title`.",
|
|
2786
2805
|
"fieldName": "title",
|
|
2787
2806
|
"required": true
|
|
2788
2807
|
},
|
|
@@ -2906,8 +2925,8 @@
|
|
|
2906
2925
|
"type": {
|
|
2907
2926
|
"text": "string"
|
|
2908
2927
|
},
|
|
2909
|
-
"description": "The page heading text, rendered into a derived Heading that also names the section.",
|
|
2910
|
-
"attribute": "
|
|
2928
|
+
"description": "The page heading text, rendered into a derived Heading that also names the section. The JavaScript property is `title`.",
|
|
2929
|
+
"attribute": "heading",
|
|
2911
2930
|
"required": true
|
|
2912
2931
|
},
|
|
2913
2932
|
{
|
|
@@ -2952,11 +2971,11 @@
|
|
|
2952
2971
|
],
|
|
2953
2972
|
"attributes": [
|
|
2954
2973
|
{
|
|
2955
|
-
"name": "
|
|
2974
|
+
"name": "heading",
|
|
2956
2975
|
"type": {
|
|
2957
2976
|
"text": "string"
|
|
2958
2977
|
},
|
|
2959
|
-
"description": "The page heading text, rendered into a derived Heading that also names the section.",
|
|
2978
|
+
"description": "The page heading text, rendered into a derived Heading that also names the section. The JavaScript property is `title`.",
|
|
2960
2979
|
"fieldName": "title",
|
|
2961
2980
|
"required": true
|
|
2962
2981
|
},
|
|
@@ -3068,8 +3087,8 @@
|
|
|
3068
3087
|
"text": "string"
|
|
3069
3088
|
},
|
|
3070
3089
|
"default": "'Choose a new password'",
|
|
3071
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3072
|
-
"attribute": "
|
|
3090
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
3091
|
+
"attribute": "heading"
|
|
3073
3092
|
},
|
|
3074
3093
|
{
|
|
3075
3094
|
"kind": "field",
|
|
@@ -3150,12 +3169,12 @@
|
|
|
3150
3169
|
],
|
|
3151
3170
|
"attributes": [
|
|
3152
3171
|
{
|
|
3153
|
-
"name": "
|
|
3172
|
+
"name": "heading",
|
|
3154
3173
|
"type": {
|
|
3155
3174
|
"text": "string"
|
|
3156
3175
|
},
|
|
3157
3176
|
"default": "'Choose a new password'",
|
|
3158
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3177
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
3159
3178
|
"fieldName": "title"
|
|
3160
3179
|
},
|
|
3161
3180
|
{
|
|
@@ -3306,8 +3325,8 @@
|
|
|
3306
3325
|
"text": "string"
|
|
3307
3326
|
},
|
|
3308
3327
|
"default": "'Sign in'",
|
|
3309
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3310
|
-
"attribute": "
|
|
3328
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
3329
|
+
"attribute": "heading"
|
|
3311
3330
|
},
|
|
3312
3331
|
{
|
|
3313
3332
|
"kind": "field",
|
|
@@ -3386,12 +3405,12 @@
|
|
|
3386
3405
|
],
|
|
3387
3406
|
"attributes": [
|
|
3388
3407
|
{
|
|
3389
|
-
"name": "
|
|
3408
|
+
"name": "heading",
|
|
3390
3409
|
"type": {
|
|
3391
3410
|
"text": "string"
|
|
3392
3411
|
},
|
|
3393
3412
|
"default": "'Sign in'",
|
|
3394
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3413
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
3395
3414
|
"fieldName": "title"
|
|
3396
3415
|
},
|
|
3397
3416
|
{
|
|
@@ -3544,8 +3563,8 @@
|
|
|
3544
3563
|
"text": "string"
|
|
3545
3564
|
},
|
|
3546
3565
|
"default": "'Create account'",
|
|
3547
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3548
|
-
"attribute": "
|
|
3566
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
3567
|
+
"attribute": "heading"
|
|
3549
3568
|
},
|
|
3550
3569
|
{
|
|
3551
3570
|
"kind": "field",
|
|
@@ -3654,12 +3673,12 @@
|
|
|
3654
3673
|
],
|
|
3655
3674
|
"attributes": [
|
|
3656
3675
|
{
|
|
3657
|
-
"name": "
|
|
3676
|
+
"name": "heading",
|
|
3658
3677
|
"type": {
|
|
3659
3678
|
"text": "string"
|
|
3660
3679
|
},
|
|
3661
3680
|
"default": "'Create account'",
|
|
3662
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
3681
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
3663
3682
|
"fieldName": "title"
|
|
3664
3683
|
},
|
|
3665
3684
|
{
|
|
@@ -4509,8 +4528,8 @@
|
|
|
4509
4528
|
"text": "string"
|
|
4510
4529
|
},
|
|
4511
4530
|
"default": "'Enter your verification code'",
|
|
4512
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
4513
|
-
"attribute": "
|
|
4531
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
4532
|
+
"attribute": "heading"
|
|
4514
4533
|
},
|
|
4515
4534
|
{
|
|
4516
4535
|
"kind": "field",
|
|
@@ -4639,12 +4658,12 @@
|
|
|
4639
4658
|
],
|
|
4640
4659
|
"attributes": [
|
|
4641
4660
|
{
|
|
4642
|
-
"name": "
|
|
4661
|
+
"name": "heading",
|
|
4643
4662
|
"type": {
|
|
4644
4663
|
"text": "string"
|
|
4645
4664
|
},
|
|
4646
4665
|
"default": "'Enter your verification code'",
|
|
4647
|
-
"description": "Heading text, rendered into a derived `<h1>` that names the section.",
|
|
4666
|
+
"description": "Heading text, rendered into a derived `<h1>` that names the section. The JavaScript property is `title`.",
|
|
4648
4667
|
"fieldName": "title"
|
|
4649
4668
|
},
|
|
4650
4669
|
{
|
|
@@ -4992,10 +5011,6 @@
|
|
|
4992
5011
|
"description": "Fires for either kind of outside interaction, just before the specific event.",
|
|
4993
5012
|
"name": "interact-outside"
|
|
4994
5013
|
},
|
|
4995
|
-
{
|
|
4996
|
-
"description": "Fires before focus moves into the panel on open; `preventDefault()` leaves focus where it is.",
|
|
4997
|
-
"name": "open-auto-focus"
|
|
4998
|
-
},
|
|
4999
5014
|
{
|
|
5000
5015
|
"description": "Fires before focus returns to the trigger on close; `preventDefault()` suppresses that return.",
|
|
5001
5016
|
"name": "close-auto-focus"
|