@tylertech/forge 3.14.0-dev.4 → 3.14.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.
@@ -4,169 +4,116 @@
4
4
  "modules": [
5
5
  {
6
6
  "kind": "javascript-module",
7
- "path": "src/lib/avatar/avatar.ts",
7
+ "path": "src/lib/accordion/accordion.ts",
8
8
  "declarations": [
9
9
  {
10
10
  "kind": "variable",
11
- "name": "AVATAR_TAG_NAME",
11
+ "name": "ACCORDION_TAG_NAME",
12
12
  "type": {
13
13
  "text": "keyof HTMLElementTagNameMap"
14
14
  },
15
- "default": "'forge-avatar'"
15
+ "default": "'forge-accordion'"
16
16
  },
17
17
  {
18
18
  "kind": "class",
19
19
  "description": "",
20
- "name": "AvatarComponent",
21
- "cssProperties": [
22
- {
23
- "type": {
24
- "text": "string"
25
- },
26
- "description": "The background color of the avatar.",
27
- "name": "--forge-avatar-background"
28
- },
29
- {
30
- "type": {
31
- "text": "number"
32
- },
33
- "description": "The border radius of the avatar, defaults to 50%.",
34
- "name": "--forge-avatar-shape"
35
- },
36
- {
37
- "type": {
38
- "text": "color"
39
- },
40
- "description": "The text color of the avatar.",
41
- "name": "--forge-avatar-color"
42
- },
43
- {
44
- "type": {
45
- "text": "number"
46
- },
47
- "description": "The height and width of the avatar.",
48
- "name": "--forge-avatar-size"
49
- },
50
- {
51
- "type": {
52
- "text": "number"
53
- },
54
- "description": "The transition duration for animations.",
55
- "name": "--forge-avatar-transition-duration"
56
- },
57
- {
58
- "type": {
59
- "text": "string"
60
- },
61
- "description": "The transition timing function for animations.",
62
- "name": "--forge-avatar-transition-timing"
63
- }
64
- ],
65
- "cssParts": [
66
- {
67
- "description": "The root container element.",
68
- "name": "root"
69
- }
70
- ],
71
- "slots": [
72
- {
73
- "description": "The default slot for avatar content if not provided via text/imageUrl.",
74
- "name": ""
75
- }
76
- ],
20
+ "name": "AccordionComponent",
77
21
  "members": [
78
22
  {
79
23
  "kind": "field",
80
- "name": "text",
24
+ "name": "panelSelector",
81
25
  "type": {
82
- "text": "string"
26
+ "text": "string | undefined"
83
27
  },
84
28
  "privacy": "public",
85
- "default": "''",
86
- "description": "The text to display in the avatar.",
87
- "attribute": "text"
29
+ "description": "Gets/sets the selector to use for finding the child expansion panels. Defaults to searching the direct children for `<forge-expansion-panel>` elements.\nUse this if you need to scope this accordion to a specific set of expansion panels, or your expansion panels are not direct children of the accordion.",
30
+ "attribute": "panel-selector"
88
31
  },
89
32
  {
90
33
  "kind": "field",
91
- "name": "letterCount",
34
+ "name": "#onToggle",
35
+ "privacy": "private",
92
36
  "type": {
93
- "text": "number"
94
- },
95
- "privacy": "public",
96
- "default": "2",
97
- "description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
98
- "attribute": "letter-count"
37
+ "text": "EventListener"
38
+ }
99
39
  },
100
40
  {
101
- "kind": "field",
102
- "name": "imageUrl",
103
- "type": {
104
- "text": "string"
41
+ "kind": "method",
42
+ "name": "#handleToggle",
43
+ "privacy": "private",
44
+ "return": {
45
+ "type": {
46
+ "text": "void"
47
+ }
105
48
  },
106
- "privacy": "public",
107
- "default": "''",
108
- "description": "The background image URL to use.",
109
- "attribute": "image-url"
49
+ "parameters": [
50
+ {
51
+ "name": "evt",
52
+ "type": {
53
+ "text": "CustomEvent"
54
+ }
55
+ }
56
+ ]
110
57
  },
111
58
  {
112
- "kind": "field",
113
- "name": "_image",
114
- "type": {
115
- "text": "HTMLImageElement | undefined"
59
+ "kind": "method",
60
+ "name": "#isNestedPanel",
61
+ "privacy": "private",
62
+ "return": {
63
+ "type": {
64
+ "text": "boolean"
65
+ }
116
66
  },
117
- "privacy": "private"
67
+ "parameters": [
68
+ {
69
+ "name": "element",
70
+ "type": {
71
+ "text": "HTMLElement"
72
+ }
73
+ }
74
+ ]
118
75
  },
119
76
  {
120
77
  "kind": "method",
121
- "name": "_tryLoadImage",
78
+ "name": "#getChildPanels",
122
79
  "privacy": "private",
123
80
  "return": {
124
81
  "type": {
125
- "text": "Promise<void>"
82
+ "text": "ExpansionPanelComponent[]"
126
83
  }
127
84
  }
128
85
  }
129
86
  ],
130
- "attributes": [
131
- {
132
- "name": "text",
133
- "type": {
134
- "text": "string"
135
- },
136
- "default": "''",
137
- "description": "The text to display in the avatar.",
138
- "fieldName": "text"
139
- },
87
+ "events": [
140
88
  {
141
- "name": "letter-count",
89
+ "name": "forge-accordion-toggle",
142
90
  "type": {
143
- "text": "number"
91
+ "text": "CustomEvent<IExpansionPanelComponent>"
144
92
  },
145
- "default": "2",
146
- "description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
147
- "fieldName": "letterCount"
148
- },
93
+ "description": "Dispatched when a child expansion panel is toggled. Includes the related expansion panel element in the event detail."
94
+ }
95
+ ],
96
+ "attributes": [
149
97
  {
150
- "name": "image-url",
98
+ "name": "panel-selector",
151
99
  "type": {
152
- "text": "string"
100
+ "text": "string | undefined"
153
101
  },
154
- "default": "''",
155
- "description": "The background image URL to use.",
156
- "fieldName": "imageUrl"
102
+ "description": "Gets/sets the selector to use for finding the child expansion panels. Defaults to searching the direct children for `<forge-expansion-panel>` elements.\nUse this if you need to scope this accordion to a specific set of expansion panels, or your expansion panels are not direct children of the accordion.",
103
+ "fieldName": "panelSelector"
157
104
  }
158
105
  ],
159
106
  "superclass": {
160
107
  "name": "BaseLitElement",
161
108
  "module": "/src/lib/core/base/base-lit-element.js"
162
109
  },
163
- "tagName": "forge-avatar",
110
+ "tagName": "forge-accordion",
164
111
  "customElement": true,
165
- "summary": "Avatars represent an entity via text or image. Use avatars to visually represent users, objects, or identifiers in your application.",
166
- "cssClasses": [
112
+ "summary": "Accordions wrap a collection of expansion panels to ensure that only one panel is expanded at a time.",
113
+ "dependencies": [
167
114
  {
168
- "name": "forge-avatar",
169
- "description": "The avatar class _(required)_."
115
+ "name": "forge-expansion-panel",
116
+ "description": ""
170
117
  }
171
118
  ]
172
119
  }
@@ -174,18 +121,18 @@
174
121
  "exports": [
175
122
  {
176
123
  "kind": "js",
177
- "name": "AVATAR_TAG_NAME",
124
+ "name": "ACCORDION_TAG_NAME",
178
125
  "declaration": {
179
- "name": "AVATAR_TAG_NAME",
180
- "module": "src/lib/avatar/avatar.ts"
126
+ "name": "ACCORDION_TAG_NAME",
127
+ "module": "src/lib/accordion/accordion.ts"
181
128
  }
182
129
  },
183
130
  {
184
131
  "kind": "js",
185
- "name": "AvatarComponent",
132
+ "name": "AccordionComponent",
186
133
  "declaration": {
187
- "name": "AvatarComponent",
188
- "module": "src/lib/avatar/avatar.ts"
134
+ "name": "AccordionComponent",
135
+ "module": "src/lib/accordion/accordion.ts"
189
136
  }
190
137
  }
191
138
  ]
@@ -961,116 +908,169 @@
961
908
  },
962
909
  {
963
910
  "kind": "javascript-module",
964
- "path": "src/lib/accordion/accordion.ts",
911
+ "path": "src/lib/avatar/avatar.ts",
965
912
  "declarations": [
966
913
  {
967
914
  "kind": "variable",
968
- "name": "ACCORDION_TAG_NAME",
915
+ "name": "AVATAR_TAG_NAME",
969
916
  "type": {
970
917
  "text": "keyof HTMLElementTagNameMap"
971
918
  },
972
- "default": "'forge-accordion'"
919
+ "default": "'forge-avatar'"
973
920
  },
974
921
  {
975
922
  "kind": "class",
976
923
  "description": "",
977
- "name": "AccordionComponent",
924
+ "name": "AvatarComponent",
925
+ "cssProperties": [
926
+ {
927
+ "type": {
928
+ "text": "string"
929
+ },
930
+ "description": "The background color of the avatar.",
931
+ "name": "--forge-avatar-background"
932
+ },
933
+ {
934
+ "type": {
935
+ "text": "number"
936
+ },
937
+ "description": "The border radius of the avatar, defaults to 50%.",
938
+ "name": "--forge-avatar-shape"
939
+ },
940
+ {
941
+ "type": {
942
+ "text": "color"
943
+ },
944
+ "description": "The text color of the avatar.",
945
+ "name": "--forge-avatar-color"
946
+ },
947
+ {
948
+ "type": {
949
+ "text": "number"
950
+ },
951
+ "description": "The height and width of the avatar.",
952
+ "name": "--forge-avatar-size"
953
+ },
954
+ {
955
+ "type": {
956
+ "text": "number"
957
+ },
958
+ "description": "The transition duration for animations.",
959
+ "name": "--forge-avatar-transition-duration"
960
+ },
961
+ {
962
+ "type": {
963
+ "text": "string"
964
+ },
965
+ "description": "The transition timing function for animations.",
966
+ "name": "--forge-avatar-transition-timing"
967
+ }
968
+ ],
969
+ "cssParts": [
970
+ {
971
+ "description": "The root container element.",
972
+ "name": "root"
973
+ }
974
+ ],
975
+ "slots": [
976
+ {
977
+ "description": "The default slot for avatar content if not provided via text/imageUrl.",
978
+ "name": ""
979
+ }
980
+ ],
978
981
  "members": [
979
982
  {
980
983
  "kind": "field",
981
- "name": "panelSelector",
984
+ "name": "text",
982
985
  "type": {
983
- "text": "string | undefined"
986
+ "text": "string"
984
987
  },
985
988
  "privacy": "public",
986
- "description": "Gets/sets the selector to use for finding the child expansion panels. Defaults to searching the direct children for `<forge-expansion-panel>` elements.\nUse this if you need to scope this accordion to a specific set of expansion panels, or your expansion panels are not direct children of the accordion.",
987
- "attribute": "panel-selector"
989
+ "default": "''",
990
+ "description": "The text to display in the avatar.",
991
+ "attribute": "text"
988
992
  },
989
993
  {
990
994
  "kind": "field",
991
- "name": "#onToggle",
992
- "privacy": "private",
995
+ "name": "letterCount",
993
996
  "type": {
994
- "text": "EventListener"
995
- }
997
+ "text": "number"
998
+ },
999
+ "privacy": "public",
1000
+ "default": "2",
1001
+ "description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
1002
+ "attribute": "letter-count"
996
1003
  },
997
1004
  {
998
- "kind": "method",
999
- "name": "#handleToggle",
1000
- "privacy": "private",
1001
- "return": {
1002
- "type": {
1003
- "text": "void"
1004
- }
1005
+ "kind": "field",
1006
+ "name": "imageUrl",
1007
+ "type": {
1008
+ "text": "string"
1005
1009
  },
1006
- "parameters": [
1007
- {
1008
- "name": "evt",
1009
- "type": {
1010
- "text": "CustomEvent"
1011
- }
1012
- }
1013
- ]
1010
+ "privacy": "public",
1011
+ "default": "''",
1012
+ "description": "The background image URL to use.",
1013
+ "attribute": "image-url"
1014
1014
  },
1015
1015
  {
1016
- "kind": "method",
1017
- "name": "#isNestedPanel",
1018
- "privacy": "private",
1019
- "return": {
1020
- "type": {
1021
- "text": "boolean"
1022
- }
1016
+ "kind": "field",
1017
+ "name": "_image",
1018
+ "type": {
1019
+ "text": "HTMLImageElement | undefined"
1023
1020
  },
1024
- "parameters": [
1025
- {
1026
- "name": "element",
1027
- "type": {
1028
- "text": "HTMLElement"
1029
- }
1030
- }
1031
- ]
1021
+ "privacy": "private"
1032
1022
  },
1033
1023
  {
1034
1024
  "kind": "method",
1035
- "name": "#getChildPanels",
1025
+ "name": "_tryLoadImage",
1036
1026
  "privacy": "private",
1037
1027
  "return": {
1038
1028
  "type": {
1039
- "text": "ExpansionPanelComponent[]"
1029
+ "text": "Promise<void>"
1040
1030
  }
1041
1031
  }
1042
1032
  }
1043
1033
  ],
1044
- "events": [
1034
+ "attributes": [
1045
1035
  {
1046
- "name": "forge-accordion-toggle",
1036
+ "name": "text",
1047
1037
  "type": {
1048
- "text": "CustomEvent<IExpansionPanelComponent>"
1038
+ "text": "string"
1049
1039
  },
1050
- "description": "Dispatched when a child expansion panel is toggled. Includes the related expansion panel element in the event detail."
1051
- }
1052
- ],
1053
- "attributes": [
1040
+ "default": "''",
1041
+ "description": "The text to display in the avatar.",
1042
+ "fieldName": "text"
1043
+ },
1054
1044
  {
1055
- "name": "panel-selector",
1045
+ "name": "letter-count",
1056
1046
  "type": {
1057
- "text": "string | undefined"
1047
+ "text": "number"
1058
1048
  },
1059
- "description": "Gets/sets the selector to use for finding the child expansion panels. Defaults to searching the direct children for `<forge-expansion-panel>` elements.\nUse this if you need to scope this accordion to a specific set of expansion panels, or your expansion panels are not direct children of the accordion.",
1060
- "fieldName": "panelSelector"
1049
+ "default": "2",
1050
+ "description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
1051
+ "fieldName": "letterCount"
1052
+ },
1053
+ {
1054
+ "name": "image-url",
1055
+ "type": {
1056
+ "text": "string"
1057
+ },
1058
+ "default": "''",
1059
+ "description": "The background image URL to use.",
1060
+ "fieldName": "imageUrl"
1061
1061
  }
1062
1062
  ],
1063
1063
  "superclass": {
1064
1064
  "name": "BaseLitElement",
1065
1065
  "module": "/src/lib/core/base/base-lit-element.js"
1066
1066
  },
1067
- "tagName": "forge-accordion",
1067
+ "tagName": "forge-avatar",
1068
1068
  "customElement": true,
1069
- "summary": "Accordions wrap a collection of expansion panels to ensure that only one panel is expanded at a time.",
1070
- "dependencies": [
1069
+ "summary": "Avatars represent an entity via text or image. Use avatars to visually represent users, objects, or identifiers in your application.",
1070
+ "cssClasses": [
1071
1071
  {
1072
- "name": "forge-expansion-panel",
1073
- "description": ""
1072
+ "name": "forge-avatar",
1073
+ "description": "The avatar class _(required)_."
1074
1074
  }
1075
1075
  ]
1076
1076
  }
@@ -1078,18 +1078,18 @@
1078
1078
  "exports": [
1079
1079
  {
1080
1080
  "kind": "js",
1081
- "name": "ACCORDION_TAG_NAME",
1081
+ "name": "AVATAR_TAG_NAME",
1082
1082
  "declaration": {
1083
- "name": "ACCORDION_TAG_NAME",
1084
- "module": "src/lib/accordion/accordion.ts"
1083
+ "name": "AVATAR_TAG_NAME",
1084
+ "module": "src/lib/avatar/avatar.ts"
1085
1085
  }
1086
1086
  },
1087
1087
  {
1088
1088
  "kind": "js",
1089
- "name": "AccordionComponent",
1089
+ "name": "AvatarComponent",
1090
1090
  "declaration": {
1091
- "name": "AccordionComponent",
1092
- "module": "src/lib/accordion/accordion.ts"
1091
+ "name": "AvatarComponent",
1092
+ "module": "src/lib/avatar/avatar.ts"
1093
1093
  }
1094
1094
  }
1095
1095
  ]
@@ -16820,6 +16820,547 @@
16820
16820
  }
16821
16821
  ]
16822
16822
  },
16823
+ {
16824
+ "kind": "javascript-module",
16825
+ "path": "src/lib/secret/secret.ts",
16826
+ "declarations": [
16827
+ {
16828
+ "kind": "variable",
16829
+ "name": "SECRET_TAG_NAME",
16830
+ "type": {
16831
+ "text": "keyof HTMLElementTagNameMap"
16832
+ },
16833
+ "default": "'forge-secret'"
16834
+ },
16835
+ {
16836
+ "kind": "class",
16837
+ "description": "",
16838
+ "name": "SecretComponent",
16839
+ "cssProperties": [
16840
+ {
16841
+ "description": "The radius of the blur effect.",
16842
+ "name": "--forge-secret-blur"
16843
+ },
16844
+ {
16845
+ "description": "The background color of the button.",
16846
+ "name": "--forge-secret-button-background"
16847
+ },
16848
+ {
16849
+ "description": "The text and icon color of the button.",
16850
+ "name": "--forge-secret-button-color"
16851
+ },
16852
+ {
16853
+ "description": "The button's border radius.",
16854
+ "name": "--forge-secret-button-shape"
16855
+ },
16856
+ {
16857
+ "description": "The inline padding around the button or inline and block padding around the text button.",
16858
+ "name": "--forge-secret-button-padding"
16859
+ },
16860
+ {
16861
+ "description": "The icon's size.",
16862
+ "name": "--forge-secret-icon-size"
16863
+ },
16864
+ {
16865
+ "description": "The text button's border radius.",
16866
+ "name": "--forge-secret-text-button-shape"
16867
+ },
16868
+ {
16869
+ "description": "The decoration line applied to open inline content.",
16870
+ "name": "--forge-secret-text-decoration-line"
16871
+ },
16872
+ {
16873
+ "description": "The style of the text decoration line.",
16874
+ "name": "--forge-secret-text-decoration-style"
16875
+ },
16876
+ {
16877
+ "description": "The color of the text decoration line.",
16878
+ "name": "--forge-secret-text-decoration-color"
16879
+ },
16880
+ {
16881
+ "description": "The spacing between the inline content and the text decoration line.",
16882
+ "name": "--forge-secret-text-underline-offset"
16883
+ },
16884
+ {
16885
+ "description": "The duration of transitions.",
16886
+ "name": "--forge-secret-transition-duration"
16887
+ },
16888
+ {
16889
+ "description": "The timing function of transitions.",
16890
+ "name": "--forge-secret-transition-easing"
16891
+ }
16892
+ ],
16893
+ "cssParts": [
16894
+ {
16895
+ "description": "The root container.",
16896
+ "name": "root"
16897
+ },
16898
+ {
16899
+ "description": "The content container.",
16900
+ "name": "content"
16901
+ },
16902
+ {
16903
+ "description": "The toggle button element.",
16904
+ "name": "button"
16905
+ },
16906
+ {
16907
+ "description": "The toggle button element when the secret is set to block.",
16908
+ "name": "text-button"
16909
+ }
16910
+ ],
16911
+ "slots": [
16912
+ {
16913
+ "description": "Default slot for the secret content.",
16914
+ "name": ""
16915
+ },
16916
+ {
16917
+ "description": "An icon that is shown when the secret is open, indicating it can be closed.",
16918
+ "name": "close-icon"
16919
+ },
16920
+ {
16921
+ "description": "An icon that is shown when the secret is closed, indicating it can be opened.",
16922
+ "name": "open-icon"
16923
+ },
16924
+ {
16925
+ "description": "Text content that appears in the tooltip attached to the button or as the button text when set to block.",
16926
+ "name": "label"
16927
+ }
16928
+ ],
16929
+ "members": [
16930
+ {
16931
+ "kind": "field",
16932
+ "name": "open",
16933
+ "type": {
16934
+ "text": "boolean"
16935
+ },
16936
+ "privacy": "public",
16937
+ "default": "false",
16938
+ "description": "Whether the secret content is visible.",
16939
+ "attribute": "open"
16940
+ },
16941
+ {
16942
+ "kind": "field",
16943
+ "name": "variant",
16944
+ "type": {
16945
+ "text": "SecretVariant"
16946
+ },
16947
+ "privacy": "public",
16948
+ "default": "'blur'",
16949
+ "description": "The style applied to hidden content when the secret is set to inline. Possible values are blur, masked, and noise.",
16950
+ "attribute": "variant"
16951
+ },
16952
+ {
16953
+ "kind": "field",
16954
+ "name": "mask",
16955
+ "type": {
16956
+ "text": "string"
16957
+ },
16958
+ "privacy": "public",
16959
+ "default": "''",
16960
+ "description": "The mask pattern to use with the masked variant. When empty the slotted text content is used as the mask.",
16961
+ "attribute": "mask"
16962
+ },
16963
+ {
16964
+ "kind": "field",
16965
+ "name": "maskCharacter",
16966
+ "type": {
16967
+ "text": "string"
16968
+ },
16969
+ "privacy": "public",
16970
+ "default": "'●'",
16971
+ "description": "The character to replace characters with in the masked variant.",
16972
+ "attribute": "mask-character"
16973
+ },
16974
+ {
16975
+ "kind": "field",
16976
+ "name": "unmaskedCharacters",
16977
+ "type": {
16978
+ "text": "string"
16979
+ },
16980
+ "privacy": "public",
16981
+ "default": "''",
16982
+ "description": "Characters that will not be replaced by the mask character in the masked variant.",
16983
+ "attribute": "unmasked-characters"
16984
+ },
16985
+ {
16986
+ "kind": "field",
16987
+ "name": "block",
16988
+ "type": {
16989
+ "text": "boolean"
16990
+ },
16991
+ "privacy": "public",
16992
+ "default": "false",
16993
+ "description": "Whether the secret content should be displayed as a block element instead of inline with text.",
16994
+ "attribute": "block"
16995
+ },
16996
+ {
16997
+ "kind": "field",
16998
+ "name": "buttonPosition",
16999
+ "type": {
17000
+ "text": "SecretButtonPosition"
17001
+ },
17002
+ "privacy": "public",
17003
+ "default": "'end'",
17004
+ "description": "The position of the button when the secret is set to inline. Possible values are start and end.",
17005
+ "attribute": "button-position"
17006
+ },
17007
+ {
17008
+ "kind": "field",
17009
+ "name": "showOnHover",
17010
+ "type": {
17011
+ "text": "boolean"
17012
+ },
17013
+ "privacy": "public",
17014
+ "default": "false",
17015
+ "description": "Whether to reveal content on hover/focus in addition to clicks.",
17016
+ "attribute": "show-on-hover"
17017
+ },
17018
+ {
17019
+ "kind": "field",
17020
+ "name": "name",
17021
+ "type": {
17022
+ "text": "string"
17023
+ },
17024
+ "privacy": "public",
17025
+ "default": "''",
17026
+ "description": "When set, secrets with the same name will close when another secret with that name is opened.",
17027
+ "attribute": "name"
17028
+ },
17029
+ {
17030
+ "kind": "field",
17031
+ "name": "_buttonElement",
17032
+ "type": {
17033
+ "text": "ButtonComponent | IconButtonComponent"
17034
+ },
17035
+ "privacy": "private"
17036
+ },
17037
+ {
17038
+ "kind": "field",
17039
+ "name": "_contentNodes",
17040
+ "type": {
17041
+ "text": "NodeListOf<ChildNode>"
17042
+ },
17043
+ "privacy": "private"
17044
+ },
17045
+ {
17046
+ "kind": "field",
17047
+ "name": "_mask",
17048
+ "type": {
17049
+ "text": "string"
17050
+ },
17051
+ "privacy": "private",
17052
+ "default": "''"
17053
+ },
17054
+ {
17055
+ "kind": "field",
17056
+ "name": "#toggleTextRef",
17057
+ "privacy": "private"
17058
+ },
17059
+ {
17060
+ "kind": "field",
17061
+ "name": "#internals",
17062
+ "privacy": "private",
17063
+ "type": {
17064
+ "text": "ElementInternals"
17065
+ }
17066
+ },
17067
+ {
17068
+ "kind": "method",
17069
+ "name": "#renderTextButton",
17070
+ "privacy": "private",
17071
+ "return": {
17072
+ "type": {
17073
+ "text": "TemplateResult"
17074
+ }
17075
+ }
17076
+ },
17077
+ {
17078
+ "kind": "method",
17079
+ "name": "#renderIconButton",
17080
+ "privacy": "private",
17081
+ "return": {
17082
+ "type": {
17083
+ "text": "TemplateResult"
17084
+ }
17085
+ }
17086
+ },
17087
+ {
17088
+ "kind": "method",
17089
+ "name": "#renderIcon",
17090
+ "privacy": "private",
17091
+ "return": {
17092
+ "type": {
17093
+ "text": "TemplateResult"
17094
+ }
17095
+ }
17096
+ },
17097
+ {
17098
+ "kind": "method",
17099
+ "name": "#handleClick",
17100
+ "privacy": "private",
17101
+ "return": {
17102
+ "type": {
17103
+ "text": "void"
17104
+ }
17105
+ },
17106
+ "parameters": [
17107
+ {
17108
+ "name": "evt",
17109
+ "type": {
17110
+ "text": "PointerEvent"
17111
+ }
17112
+ }
17113
+ ]
17114
+ },
17115
+ {
17116
+ "kind": "method",
17117
+ "name": "#handleKeyDown",
17118
+ "privacy": "private",
17119
+ "return": {
17120
+ "type": {
17121
+ "text": "void"
17122
+ }
17123
+ },
17124
+ "parameters": [
17125
+ {
17126
+ "name": "event",
17127
+ "type": {
17128
+ "text": "KeyboardEvent"
17129
+ }
17130
+ }
17131
+ ]
17132
+ },
17133
+ {
17134
+ "kind": "method",
17135
+ "name": "#hideOtherSecretsInGroup",
17136
+ "privacy": "private",
17137
+ "return": {
17138
+ "type": {
17139
+ "text": "void"
17140
+ }
17141
+ }
17142
+ },
17143
+ {
17144
+ "kind": "method",
17145
+ "name": "#dispatchToggleEvent",
17146
+ "privacy": "private",
17147
+ "return": {
17148
+ "type": {
17149
+ "text": "void"
17150
+ }
17151
+ }
17152
+ },
17153
+ {
17154
+ "kind": "method",
17155
+ "name": "#getTextContent",
17156
+ "privacy": "private",
17157
+ "return": {
17158
+ "type": {
17159
+ "text": "string"
17160
+ }
17161
+ }
17162
+ },
17163
+ {
17164
+ "kind": "method",
17165
+ "name": "#announceContent",
17166
+ "privacy": "private",
17167
+ "return": {
17168
+ "type": {
17169
+ "text": "void"
17170
+ }
17171
+ }
17172
+ },
17173
+ {
17174
+ "kind": "method",
17175
+ "name": "#tryUpdateInternalMask",
17176
+ "privacy": "private",
17177
+ "return": {
17178
+ "type": {
17179
+ "text": "void"
17180
+ }
17181
+ },
17182
+ "parameters": [
17183
+ {
17184
+ "name": "changedProperties",
17185
+ "type": {
17186
+ "text": "PropertyValues<this>"
17187
+ }
17188
+ }
17189
+ ]
17190
+ }
17191
+ ],
17192
+ "events": [
17193
+ {
17194
+ "type": {
17195
+ "text": "ToggleEvent"
17196
+ },
17197
+ "description": "Dispatched when the secret opens or closes.",
17198
+ "name": "toggle"
17199
+ }
17200
+ ],
17201
+ "attributes": [
17202
+ {
17203
+ "name": "open",
17204
+ "type": {
17205
+ "text": "boolean"
17206
+ },
17207
+ "default": "false",
17208
+ "description": "Whether the secret content is visible.",
17209
+ "fieldName": "open"
17210
+ },
17211
+ {
17212
+ "name": "variant",
17213
+ "type": {
17214
+ "text": "SecretVariant"
17215
+ },
17216
+ "default": "'blur'",
17217
+ "description": "The style applied to hidden content when the secret is set to inline. Possible values are blur, masked, and noise.",
17218
+ "fieldName": "variant"
17219
+ },
17220
+ {
17221
+ "name": "mask",
17222
+ "type": {
17223
+ "text": "string"
17224
+ },
17225
+ "default": "''",
17226
+ "description": "The mask pattern to use with the masked variant. When empty the slotted text content is used as the mask.",
17227
+ "fieldName": "mask"
17228
+ },
17229
+ {
17230
+ "name": "mask-character",
17231
+ "type": {
17232
+ "text": "string"
17233
+ },
17234
+ "default": "'●'",
17235
+ "description": "The character to replace characters with in the masked variant.",
17236
+ "fieldName": "maskCharacter"
17237
+ },
17238
+ {
17239
+ "name": "unmasked-characters",
17240
+ "type": {
17241
+ "text": "string"
17242
+ },
17243
+ "default": "''",
17244
+ "description": "Characters that will not be replaced by the mask character in the masked variant.",
17245
+ "fieldName": "unmaskedCharacters"
17246
+ },
17247
+ {
17248
+ "name": "block",
17249
+ "type": {
17250
+ "text": "boolean"
17251
+ },
17252
+ "default": "false",
17253
+ "description": "Whether the secret content should be displayed as a block element instead of inline with text.",
17254
+ "fieldName": "block"
17255
+ },
17256
+ {
17257
+ "name": "button-position",
17258
+ "type": {
17259
+ "text": "SecretButtonPosition"
17260
+ },
17261
+ "default": "'end'",
17262
+ "description": "The position of the button when the secret is set to inline. Possible values are start and end.",
17263
+ "fieldName": "buttonPosition"
17264
+ },
17265
+ {
17266
+ "name": "show-on-hover",
17267
+ "type": {
17268
+ "text": "boolean"
17269
+ },
17270
+ "default": "false",
17271
+ "description": "Whether to reveal content on hover/focus in addition to clicks.",
17272
+ "fieldName": "showOnHover"
17273
+ },
17274
+ {
17275
+ "name": "name",
17276
+ "type": {
17277
+ "text": "string"
17278
+ },
17279
+ "default": "''",
17280
+ "description": "When set, secrets with the same name will close when another secret with that name is opened.",
17281
+ "fieldName": "name"
17282
+ }
17283
+ ],
17284
+ "superclass": {
17285
+ "name": "BaseLitElement",
17286
+ "module": "/src/lib/core/base/base-lit-element.js"
17287
+ },
17288
+ "tagName": "forge-secret",
17289
+ "customElement": true,
17290
+ "summary": "A component that conceals content with a blur or dot mask, revealing it on user interaction.",
17291
+ "states": [
17292
+ {
17293
+ "name": "open",
17294
+ "description": "Indicates that the content is visible."
17295
+ },
17296
+ {
17297
+ "name": "block",
17298
+ "description": "Indicates that the secret is displayed as a block element instead of inline."
17299
+ }
17300
+ ],
17301
+ "cssClasses": [
17302
+ {
17303
+ "name": "forge-secret",
17304
+ "description": "The secret component container (required)."
17305
+ },
17306
+ {
17307
+ "name": "forge-secret--blur",
17308
+ "description": "Applies a blur effect to conceal content when the button has `aria-expanded=\"false\"`."
17309
+ },
17310
+ {
17311
+ "name": "forge-secret--masked",
17312
+ "description": "Applies a dot mask to conceal content when the button has `aria-expanded=\"false\"`. Not applicable when the secret is set to block. In that case the blur variant is used instead."
17313
+ },
17314
+ {
17315
+ "name": "forge-secret--noise",
17316
+ "description": "Applies a noise effect to conceal content when the button has `aria-expanded=\"false\"`."
17317
+ },
17318
+ {
17319
+ "name": "forge-secret--block",
17320
+ "description": "Displays the secret as a block element."
17321
+ },
17322
+ {
17323
+ "name": "forge-secret--show-on-hover",
17324
+ "description": "Reveals the secret content when hovering over the component or focusing the button."
17325
+ },
17326
+ {
17327
+ "name": "forge-secret__content",
17328
+ "description": "The content to be concealed or revealed."
17329
+ },
17330
+ {
17331
+ "name": "forge-secret__button",
17332
+ "description": "The icon button used to toggle an inline secret."
17333
+ },
17334
+ {
17335
+ "name": "forge-secret__text-button",
17336
+ "description": "The text button used to toggle a block secret."
17337
+ },
17338
+ {
17339
+ "name": "forge-secret__masked",
17340
+ "description": "The element replacing concealed content when the masked variant is used. The `data-mask` attribute on this element sets its content."
17341
+ }
17342
+ ]
17343
+ }
17344
+ ],
17345
+ "exports": [
17346
+ {
17347
+ "kind": "js",
17348
+ "name": "SECRET_TAG_NAME",
17349
+ "declaration": {
17350
+ "name": "SECRET_TAG_NAME",
17351
+ "module": "src/lib/secret/secret.ts"
17352
+ }
17353
+ },
17354
+ {
17355
+ "kind": "js",
17356
+ "name": "SecretComponent",
17357
+ "declaration": {
17358
+ "name": "SecretComponent",
17359
+ "module": "src/lib/secret/secret.ts"
17360
+ }
17361
+ }
17362
+ ]
17363
+ },
16823
17364
  {
16824
17365
  "kind": "javascript-module",
16825
17366
  "path": "src/lib/skeleton/skeleton.ts",
@@ -17013,6 +17554,323 @@
17013
17554
  }
17014
17555
  ]
17015
17556
  },
17557
+ {
17558
+ "kind": "javascript-module",
17559
+ "path": "src/lib/skip-link/skip-link.ts",
17560
+ "declarations": [
17561
+ {
17562
+ "kind": "class",
17563
+ "description": "",
17564
+ "name": "SkipLinkComponent",
17565
+ "cssProperties": [
17566
+ {
17567
+ "description": "The background color of the skip link.",
17568
+ "name": "--forge-skip-link-background"
17569
+ },
17570
+ {
17571
+ "description": "The text color of the skip link.",
17572
+ "name": "--forge-skip-link-color"
17573
+ },
17574
+ {
17575
+ "description": "The border radius of the skip link.",
17576
+ "name": "--forge-skip-link-shape"
17577
+ },
17578
+ {
17579
+ "description": "The skip link's inset from the edge of the viewport.",
17580
+ "name": "--forge-skip-link-inset"
17581
+ },
17582
+ {
17583
+ "description": "The z-index of the skip link.",
17584
+ "name": "--forge-skip-link-z-index"
17585
+ },
17586
+ {
17587
+ "description": "The box shadow of the skip link.",
17588
+ "name": "--forge-skip-link-elevation"
17589
+ },
17590
+ {
17591
+ "description": "The interior padding of the skip link along the block axis.",
17592
+ "name": "--forge-skip-link-padding-block"
17593
+ },
17594
+ {
17595
+ "description": "The interior padding of the skip link along the inline axis.",
17596
+ "name": "--forge-skip-link-padding-inline"
17597
+ },
17598
+ {
17599
+ "description": "The color of the focus indicator.",
17600
+ "name": "--forge-skip-link-focus-indicator-color"
17601
+ },
17602
+ {
17603
+ "description": "The duration of the skip link's animations.",
17604
+ "name": "--forge-skip-link-transition-duration"
17605
+ },
17606
+ {
17607
+ "description": "The timing function of the skip link's animations.",
17608
+ "name": "--forge-skip-link-transition-timing-function"
17609
+ }
17610
+ ],
17611
+ "cssParts": [
17612
+ {
17613
+ "description": "The root anchor element.",
17614
+ "name": "anchor"
17615
+ },
17616
+ {
17617
+ "description": "The focus indicator element.",
17618
+ "name": "focus-indicator"
17619
+ },
17620
+ {
17621
+ "description": "The state layer element.",
17622
+ "name": "state-layer"
17623
+ }
17624
+ ],
17625
+ "slots": [
17626
+ {
17627
+ "description": "The default/unnamed slot for link text.",
17628
+ "name": ""
17629
+ }
17630
+ ],
17631
+ "members": [
17632
+ {
17633
+ "kind": "field",
17634
+ "name": "_target",
17635
+ "type": {
17636
+ "text": "string"
17637
+ },
17638
+ "privacy": "private",
17639
+ "default": "''"
17640
+ },
17641
+ {
17642
+ "kind": "field",
17643
+ "name": "_theme",
17644
+ "type": {
17645
+ "text": "SkipLinkTheme"
17646
+ },
17647
+ "privacy": "private",
17648
+ "default": "'default'"
17649
+ },
17650
+ {
17651
+ "kind": "field",
17652
+ "name": "_muted",
17653
+ "type": {
17654
+ "text": "boolean"
17655
+ },
17656
+ "privacy": "private",
17657
+ "default": "false"
17658
+ },
17659
+ {
17660
+ "kind": "field",
17661
+ "name": "_persistent",
17662
+ "type": {
17663
+ "text": "boolean"
17664
+ },
17665
+ "privacy": "private",
17666
+ "default": "false"
17667
+ },
17668
+ {
17669
+ "kind": "field",
17670
+ "name": "_inline",
17671
+ "type": {
17672
+ "text": "boolean"
17673
+ },
17674
+ "privacy": "private",
17675
+ "default": "false"
17676
+ },
17677
+ {
17678
+ "kind": "field",
17679
+ "name": "_skipUrlChange",
17680
+ "type": {
17681
+ "text": "boolean"
17682
+ },
17683
+ "privacy": "private",
17684
+ "default": "false"
17685
+ },
17686
+ {
17687
+ "kind": "field",
17688
+ "name": "_anchorElement",
17689
+ "type": {
17690
+ "text": "HTMLAnchorElement"
17691
+ },
17692
+ "privacy": "private",
17693
+ "default": "getShadowElement(this, SKIP_LINK_CONSTANTS.selectors.ANCHOR)"
17694
+ },
17695
+ {
17696
+ "kind": "field",
17697
+ "name": "_clickListener",
17698
+ "type": {
17699
+ "text": "EventListener"
17700
+ },
17701
+ "privacy": "private"
17702
+ },
17703
+ {
17704
+ "kind": "field",
17705
+ "name": "target",
17706
+ "type": {
17707
+ "text": "string"
17708
+ },
17709
+ "privacy": "public",
17710
+ "description": "The IDREF of the element to which the skip link should navigate.",
17711
+ "default": "''",
17712
+ "attribute": "target"
17713
+ },
17714
+ {
17715
+ "kind": "field",
17716
+ "name": "theme",
17717
+ "type": {
17718
+ "text": "SkipLinkTheme"
17719
+ },
17720
+ "privacy": "public",
17721
+ "description": "The theme applied to the skip link.",
17722
+ "default": "'default'",
17723
+ "attribute": "theme"
17724
+ },
17725
+ {
17726
+ "kind": "field",
17727
+ "name": "muted",
17728
+ "type": {
17729
+ "text": "boolean"
17730
+ },
17731
+ "privacy": "public",
17732
+ "description": "Whether or not the skip link uses a muted color scheme.",
17733
+ "default": "false",
17734
+ "attribute": "muted"
17735
+ },
17736
+ {
17737
+ "kind": "field",
17738
+ "name": "persistent",
17739
+ "type": {
17740
+ "text": "boolean"
17741
+ },
17742
+ "privacy": "public",
17743
+ "description": "Whether or not the skip link should remain visible when not focused.",
17744
+ "default": "false",
17745
+ "attribute": "persistent"
17746
+ },
17747
+ {
17748
+ "kind": "field",
17749
+ "name": "inline",
17750
+ "type": {
17751
+ "text": "boolean"
17752
+ },
17753
+ "privacy": "public",
17754
+ "description": "Whether or not the skip link renders within its container.",
17755
+ "default": "false",
17756
+ "attribute": "inline"
17757
+ },
17758
+ {
17759
+ "kind": "field",
17760
+ "name": "skipUrlChange",
17761
+ "type": {
17762
+ "text": "boolean"
17763
+ },
17764
+ "privacy": "public",
17765
+ "description": "Sets the skip link to skip browser navigation and scroll to the target element.",
17766
+ "default": "false",
17767
+ "attribute": "skip-url-change"
17768
+ },
17769
+ {
17770
+ "kind": "method",
17771
+ "name": "_handleClick",
17772
+ "privacy": "private",
17773
+ "return": {
17774
+ "type": {
17775
+ "text": "void"
17776
+ }
17777
+ },
17778
+ "parameters": [
17779
+ {
17780
+ "name": "evt",
17781
+ "type": {
17782
+ "text": "Event"
17783
+ }
17784
+ }
17785
+ ]
17786
+ }
17787
+ ],
17788
+ "attributes": [
17789
+ {
17790
+ "name": "target",
17791
+ "type": {
17792
+ "text": "string"
17793
+ },
17794
+ "description": "The IDREF of the element to which the skip link should navigate.",
17795
+ "default": "''",
17796
+ "fieldName": "target"
17797
+ },
17798
+ {
17799
+ "name": "theme",
17800
+ "type": {
17801
+ "text": "SkipLinkTheme"
17802
+ },
17803
+ "description": "The theme applied to the skip link.",
17804
+ "default": "'default'",
17805
+ "fieldName": "theme"
17806
+ },
17807
+ {
17808
+ "name": "muted",
17809
+ "type": {
17810
+ "text": "boolean"
17811
+ },
17812
+ "description": "Whether or not the skip link uses a muted color scheme.",
17813
+ "default": "false",
17814
+ "fieldName": "muted"
17815
+ },
17816
+ {
17817
+ "name": "persistent",
17818
+ "type": {
17819
+ "text": "boolean"
17820
+ },
17821
+ "description": "Whether or not the skip link should remain visible when not focused.",
17822
+ "default": "false",
17823
+ "fieldName": "persistent"
17824
+ },
17825
+ {
17826
+ "name": "inline",
17827
+ "type": {
17828
+ "text": "boolean"
17829
+ },
17830
+ "description": "Whether or not the skip link renders within its container.",
17831
+ "default": "false",
17832
+ "fieldName": "inline"
17833
+ },
17834
+ {
17835
+ "name": "skip-url-change",
17836
+ "type": {
17837
+ "text": "boolean"
17838
+ },
17839
+ "description": "Sets the skip link to skip browser navigation and scroll to the target element.",
17840
+ "default": "false",
17841
+ "fieldName": "skipUrlChange"
17842
+ }
17843
+ ],
17844
+ "superclass": {
17845
+ "name": "BaseComponent",
17846
+ "module": "/src/lib/core/index.js"
17847
+ },
17848
+ "tagName": "forge-skip-link",
17849
+ "customElement": true,
17850
+ "summary": "The Forge Skip Link component is used to provide an accessible way for users to skip repetitive content and navigate directly to a section of the page. This is used for screen reader and keyboard users to improve the overall accessibility of web applications.",
17851
+ "dependencies": [
17852
+ {
17853
+ "name": "forge-focus-indicator",
17854
+ "description": ""
17855
+ },
17856
+ {
17857
+ "name": "forge-state-layer",
17858
+ "description": ""
17859
+ }
17860
+ ]
17861
+ }
17862
+ ],
17863
+ "exports": [
17864
+ {
17865
+ "kind": "js",
17866
+ "name": "SkipLinkComponent",
17867
+ "declaration": {
17868
+ "name": "SkipLinkComponent",
17869
+ "module": "src/lib/skip-link/skip-link.ts"
17870
+ }
17871
+ }
17872
+ ]
17873
+ },
17016
17874
  {
17017
17875
  "kind": "javascript-module",
17018
17876
  "path": "src/lib/slider/slider.ts",
@@ -17585,323 +18443,6 @@
17585
18443
  }
17586
18444
  ]
17587
18445
  },
17588
- {
17589
- "kind": "javascript-module",
17590
- "path": "src/lib/skip-link/skip-link.ts",
17591
- "declarations": [
17592
- {
17593
- "kind": "class",
17594
- "description": "",
17595
- "name": "SkipLinkComponent",
17596
- "cssProperties": [
17597
- {
17598
- "description": "The background color of the skip link.",
17599
- "name": "--forge-skip-link-background"
17600
- },
17601
- {
17602
- "description": "The text color of the skip link.",
17603
- "name": "--forge-skip-link-color"
17604
- },
17605
- {
17606
- "description": "The border radius of the skip link.",
17607
- "name": "--forge-skip-link-shape"
17608
- },
17609
- {
17610
- "description": "The skip link's inset from the edge of the viewport.",
17611
- "name": "--forge-skip-link-inset"
17612
- },
17613
- {
17614
- "description": "The z-index of the skip link.",
17615
- "name": "--forge-skip-link-z-index"
17616
- },
17617
- {
17618
- "description": "The box shadow of the skip link.",
17619
- "name": "--forge-skip-link-elevation"
17620
- },
17621
- {
17622
- "description": "The interior padding of the skip link along the block axis.",
17623
- "name": "--forge-skip-link-padding-block"
17624
- },
17625
- {
17626
- "description": "The interior padding of the skip link along the inline axis.",
17627
- "name": "--forge-skip-link-padding-inline"
17628
- },
17629
- {
17630
- "description": "The color of the focus indicator.",
17631
- "name": "--forge-skip-link-focus-indicator-color"
17632
- },
17633
- {
17634
- "description": "The duration of the skip link's animations.",
17635
- "name": "--forge-skip-link-transition-duration"
17636
- },
17637
- {
17638
- "description": "The timing function of the skip link's animations.",
17639
- "name": "--forge-skip-link-transition-timing-function"
17640
- }
17641
- ],
17642
- "cssParts": [
17643
- {
17644
- "description": "The root anchor element.",
17645
- "name": "anchor"
17646
- },
17647
- {
17648
- "description": "The focus indicator element.",
17649
- "name": "focus-indicator"
17650
- },
17651
- {
17652
- "description": "The state layer element.",
17653
- "name": "state-layer"
17654
- }
17655
- ],
17656
- "slots": [
17657
- {
17658
- "description": "The default/unnamed slot for link text.",
17659
- "name": ""
17660
- }
17661
- ],
17662
- "members": [
17663
- {
17664
- "kind": "field",
17665
- "name": "_target",
17666
- "type": {
17667
- "text": "string"
17668
- },
17669
- "privacy": "private",
17670
- "default": "''"
17671
- },
17672
- {
17673
- "kind": "field",
17674
- "name": "_theme",
17675
- "type": {
17676
- "text": "SkipLinkTheme"
17677
- },
17678
- "privacy": "private",
17679
- "default": "'default'"
17680
- },
17681
- {
17682
- "kind": "field",
17683
- "name": "_muted",
17684
- "type": {
17685
- "text": "boolean"
17686
- },
17687
- "privacy": "private",
17688
- "default": "false"
17689
- },
17690
- {
17691
- "kind": "field",
17692
- "name": "_persistent",
17693
- "type": {
17694
- "text": "boolean"
17695
- },
17696
- "privacy": "private",
17697
- "default": "false"
17698
- },
17699
- {
17700
- "kind": "field",
17701
- "name": "_inline",
17702
- "type": {
17703
- "text": "boolean"
17704
- },
17705
- "privacy": "private",
17706
- "default": "false"
17707
- },
17708
- {
17709
- "kind": "field",
17710
- "name": "_skipUrlChange",
17711
- "type": {
17712
- "text": "boolean"
17713
- },
17714
- "privacy": "private",
17715
- "default": "false"
17716
- },
17717
- {
17718
- "kind": "field",
17719
- "name": "_anchorElement",
17720
- "type": {
17721
- "text": "HTMLAnchorElement"
17722
- },
17723
- "privacy": "private",
17724
- "default": "getShadowElement(this, SKIP_LINK_CONSTANTS.selectors.ANCHOR)"
17725
- },
17726
- {
17727
- "kind": "field",
17728
- "name": "_clickListener",
17729
- "type": {
17730
- "text": "EventListener"
17731
- },
17732
- "privacy": "private"
17733
- },
17734
- {
17735
- "kind": "field",
17736
- "name": "target",
17737
- "type": {
17738
- "text": "string"
17739
- },
17740
- "privacy": "public",
17741
- "description": "The IDREF of the element to which the skip link should navigate.",
17742
- "default": "''",
17743
- "attribute": "target"
17744
- },
17745
- {
17746
- "kind": "field",
17747
- "name": "theme",
17748
- "type": {
17749
- "text": "SkipLinkTheme"
17750
- },
17751
- "privacy": "public",
17752
- "description": "The theme applied to the skip link.",
17753
- "default": "'default'",
17754
- "attribute": "theme"
17755
- },
17756
- {
17757
- "kind": "field",
17758
- "name": "muted",
17759
- "type": {
17760
- "text": "boolean"
17761
- },
17762
- "privacy": "public",
17763
- "description": "Whether or not the skip link uses a muted color scheme.",
17764
- "default": "false",
17765
- "attribute": "muted"
17766
- },
17767
- {
17768
- "kind": "field",
17769
- "name": "persistent",
17770
- "type": {
17771
- "text": "boolean"
17772
- },
17773
- "privacy": "public",
17774
- "description": "Whether or not the skip link should remain visible when not focused.",
17775
- "default": "false",
17776
- "attribute": "persistent"
17777
- },
17778
- {
17779
- "kind": "field",
17780
- "name": "inline",
17781
- "type": {
17782
- "text": "boolean"
17783
- },
17784
- "privacy": "public",
17785
- "description": "Whether or not the skip link renders within its container.",
17786
- "default": "false",
17787
- "attribute": "inline"
17788
- },
17789
- {
17790
- "kind": "field",
17791
- "name": "skipUrlChange",
17792
- "type": {
17793
- "text": "boolean"
17794
- },
17795
- "privacy": "public",
17796
- "description": "Sets the skip link to skip browser navigation and scroll to the target element.",
17797
- "default": "false",
17798
- "attribute": "skip-url-change"
17799
- },
17800
- {
17801
- "kind": "method",
17802
- "name": "_handleClick",
17803
- "privacy": "private",
17804
- "return": {
17805
- "type": {
17806
- "text": "void"
17807
- }
17808
- },
17809
- "parameters": [
17810
- {
17811
- "name": "evt",
17812
- "type": {
17813
- "text": "Event"
17814
- }
17815
- }
17816
- ]
17817
- }
17818
- ],
17819
- "attributes": [
17820
- {
17821
- "name": "target",
17822
- "type": {
17823
- "text": "string"
17824
- },
17825
- "description": "The IDREF of the element to which the skip link should navigate.",
17826
- "default": "''",
17827
- "fieldName": "target"
17828
- },
17829
- {
17830
- "name": "theme",
17831
- "type": {
17832
- "text": "SkipLinkTheme"
17833
- },
17834
- "description": "The theme applied to the skip link.",
17835
- "default": "'default'",
17836
- "fieldName": "theme"
17837
- },
17838
- {
17839
- "name": "muted",
17840
- "type": {
17841
- "text": "boolean"
17842
- },
17843
- "description": "Whether or not the skip link uses a muted color scheme.",
17844
- "default": "false",
17845
- "fieldName": "muted"
17846
- },
17847
- {
17848
- "name": "persistent",
17849
- "type": {
17850
- "text": "boolean"
17851
- },
17852
- "description": "Whether or not the skip link should remain visible when not focused.",
17853
- "default": "false",
17854
- "fieldName": "persistent"
17855
- },
17856
- {
17857
- "name": "inline",
17858
- "type": {
17859
- "text": "boolean"
17860
- },
17861
- "description": "Whether or not the skip link renders within its container.",
17862
- "default": "false",
17863
- "fieldName": "inline"
17864
- },
17865
- {
17866
- "name": "skip-url-change",
17867
- "type": {
17868
- "text": "boolean"
17869
- },
17870
- "description": "Sets the skip link to skip browser navigation and scroll to the target element.",
17871
- "default": "false",
17872
- "fieldName": "skipUrlChange"
17873
- }
17874
- ],
17875
- "superclass": {
17876
- "name": "BaseComponent",
17877
- "module": "/src/lib/core/index.js"
17878
- },
17879
- "tagName": "forge-skip-link",
17880
- "customElement": true,
17881
- "summary": "The Forge Skip Link component is used to provide an accessible way for users to skip repetitive content and navigate directly to a section of the page. This is used for screen reader and keyboard users to improve the overall accessibility of web applications.",
17882
- "dependencies": [
17883
- {
17884
- "name": "forge-focus-indicator",
17885
- "description": ""
17886
- },
17887
- {
17888
- "name": "forge-state-layer",
17889
- "description": ""
17890
- }
17891
- ]
17892
- }
17893
- ],
17894
- "exports": [
17895
- {
17896
- "kind": "js",
17897
- "name": "SkipLinkComponent",
17898
- "declaration": {
17899
- "name": "SkipLinkComponent",
17900
- "module": "src/lib/skip-link/skip-link.ts"
17901
- }
17902
- }
17903
- ]
17904
- },
17905
18446
  {
17906
18447
  "kind": "javascript-module",
17907
18448
  "path": "src/lib/split-button/split-button.ts",
@@ -22777,6 +23318,89 @@
22777
23318
  }
22778
23319
  ]
22779
23320
  },
23321
+ {
23322
+ "kind": "javascript-module",
23323
+ "path": "src/lib/app-bar/help-button/app-bar-help-button.ts",
23324
+ "declarations": [
23325
+ {
23326
+ "kind": "class",
23327
+ "description": "",
23328
+ "name": "AppBarHelpButtonComponent",
23329
+ "members": [
23330
+ {
23331
+ "kind": "field",
23332
+ "name": "options",
23333
+ "type": {
23334
+ "text": "IMenuOption[]"
23335
+ },
23336
+ "privacy": "public",
23337
+ "description": "The menu options to display when the button is clicked",
23338
+ "default": "[]"
23339
+ },
23340
+ {
23341
+ "kind": "field",
23342
+ "name": "icon",
23343
+ "type": {
23344
+ "text": "string"
23345
+ },
23346
+ "privacy": "public",
23347
+ "description": "The name of an alternative icon to display.",
23348
+ "default": "help"
23349
+ }
23350
+ ],
23351
+ "events": [
23352
+ {
23353
+ "type": {
23354
+ "text": "CustomEvent<IMenuSelectEventData>"
23355
+ },
23356
+ "description": "Bubbles up the menu select from the internal menu component.",
23357
+ "name": "forge-menu-select"
23358
+ }
23359
+ ],
23360
+ "attributes": [
23361
+ {
23362
+ "type": {
23363
+ "text": "string"
23364
+ },
23365
+ "description": "The name of an alternative icon to display.",
23366
+ "name": "icon",
23367
+ "default": "help"
23368
+ },
23369
+ {
23370
+ "type": {
23371
+ "text": "string"
23372
+ },
23373
+ "description": "The aria-label to apply to the button.",
23374
+ "name": "aria-label"
23375
+ },
23376
+ {
23377
+ "type": {
23378
+ "text": "string"
23379
+ },
23380
+ "description": "The id of an element to use as the aria-labelledby attribute.",
23381
+ "name": "aria-labelledby"
23382
+ }
23383
+ ],
23384
+ "superclass": {
23385
+ "name": "BaseComponent",
23386
+ "module": "/src/lib/core/base/base-component.js"
23387
+ },
23388
+ "tagName": "forge-app-bar-help-button",
23389
+ "customElement": true,
23390
+ "summary": "A help button component with a predefined help icon that displays a dropdown menu when clicked, designed for use in an app bar's end slot."
23391
+ }
23392
+ ],
23393
+ "exports": [
23394
+ {
23395
+ "kind": "js",
23396
+ "name": "AppBarHelpButtonComponent",
23397
+ "declaration": {
23398
+ "name": "AppBarHelpButtonComponent",
23399
+ "module": "src/lib/app-bar/help-button/app-bar-help-button.ts"
23400
+ }
23401
+ }
23402
+ ]
23403
+ },
22780
23404
  {
22781
23405
  "kind": "javascript-module",
22782
23406
  "path": "src/lib/app-bar/app-bar/app-bar.ts",
@@ -23131,89 +23755,6 @@
23131
23755
  }
23132
23756
  ]
23133
23757
  },
23134
- {
23135
- "kind": "javascript-module",
23136
- "path": "src/lib/app-bar/help-button/app-bar-help-button.ts",
23137
- "declarations": [
23138
- {
23139
- "kind": "class",
23140
- "description": "",
23141
- "name": "AppBarHelpButtonComponent",
23142
- "members": [
23143
- {
23144
- "kind": "field",
23145
- "name": "options",
23146
- "type": {
23147
- "text": "IMenuOption[]"
23148
- },
23149
- "privacy": "public",
23150
- "description": "The menu options to display when the button is clicked",
23151
- "default": "[]"
23152
- },
23153
- {
23154
- "kind": "field",
23155
- "name": "icon",
23156
- "type": {
23157
- "text": "string"
23158
- },
23159
- "privacy": "public",
23160
- "description": "The name of an alternative icon to display.",
23161
- "default": "help"
23162
- }
23163
- ],
23164
- "events": [
23165
- {
23166
- "type": {
23167
- "text": "CustomEvent<IMenuSelectEventData>"
23168
- },
23169
- "description": "Bubbles up the menu select from the internal menu component.",
23170
- "name": "forge-menu-select"
23171
- }
23172
- ],
23173
- "attributes": [
23174
- {
23175
- "type": {
23176
- "text": "string"
23177
- },
23178
- "description": "The name of an alternative icon to display.",
23179
- "name": "icon",
23180
- "default": "help"
23181
- },
23182
- {
23183
- "type": {
23184
- "text": "string"
23185
- },
23186
- "description": "The aria-label to apply to the button.",
23187
- "name": "aria-label"
23188
- },
23189
- {
23190
- "type": {
23191
- "text": "string"
23192
- },
23193
- "description": "The id of an element to use as the aria-labelledby attribute.",
23194
- "name": "aria-labelledby"
23195
- }
23196
- ],
23197
- "superclass": {
23198
- "name": "BaseComponent",
23199
- "module": "/src/lib/core/base/base-component.js"
23200
- },
23201
- "tagName": "forge-app-bar-help-button",
23202
- "customElement": true,
23203
- "summary": "A help button component with a predefined help icon that displays a dropdown menu when clicked, designed for use in an app bar's end slot."
23204
- }
23205
- ],
23206
- "exports": [
23207
- {
23208
- "kind": "js",
23209
- "name": "AppBarHelpButtonComponent",
23210
- "declaration": {
23211
- "name": "AppBarHelpButtonComponent",
23212
- "module": "src/lib/app-bar/help-button/app-bar-help-button.ts"
23213
- }
23214
- }
23215
- ]
23216
- },
23217
23758
  {
23218
23759
  "kind": "javascript-module",
23219
23760
  "path": "src/lib/app-bar/menu-button/app-bar-menu-button.ts",
@@ -27226,6 +27767,189 @@
27226
27767
  }
27227
27768
  ]
27228
27769
  },
27770
+ {
27771
+ "kind": "javascript-module",
27772
+ "path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
27773
+ "declarations": [
27774
+ {
27775
+ "kind": "class",
27776
+ "description": "",
27777
+ "name": "ModalDrawerComponent",
27778
+ "cssProperties": [
27779
+ {
27780
+ "description": "The width of the drawer.",
27781
+ "name": "--forge-drawer-width"
27782
+ },
27783
+ {
27784
+ "description": "The background color of the drawer.",
27785
+ "name": "--forge-drawer-background"
27786
+ },
27787
+ {
27788
+ "description": "The border of the drawer.",
27789
+ "name": "--forge-drawer-border-color"
27790
+ },
27791
+ {
27792
+ "description": "The border width of the drawer.",
27793
+ "name": "--forge-drawer-border-width"
27794
+ },
27795
+ {
27796
+ "description": "The transition duration of the drawer.",
27797
+ "name": "--forge-drawer-transition-duration"
27798
+ },
27799
+ {
27800
+ "description": "The transition timing function of the drawer.",
27801
+ "name": "--forge-drawer-transition-easing"
27802
+ },
27803
+ {
27804
+ "description": "The duration of the drawer closing animation.",
27805
+ "name": "--forge-drawer-duration-close"
27806
+ }
27807
+ ],
27808
+ "cssParts": [
27809
+ {
27810
+ "description": "The component's root element.",
27811
+ "name": "root"
27812
+ },
27813
+ {
27814
+ "description": "The content container element.",
27815
+ "name": "content"
27816
+ },
27817
+ {
27818
+ "description": "The backdrop root element.",
27819
+ "name": "backdrop"
27820
+ }
27821
+ ],
27822
+ "slots": [
27823
+ {
27824
+ "description": "The content to display in the scrollable content container.",
27825
+ "name": ""
27826
+ },
27827
+ {
27828
+ "description": "The header content above the main content.",
27829
+ "name": "header"
27830
+ },
27831
+ {
27832
+ "description": "The footer content below the main content.",
27833
+ "name": "footer"
27834
+ }
27835
+ ],
27836
+ "members": [
27837
+ {
27838
+ "kind": "field",
27839
+ "name": "open",
27840
+ "type": {
27841
+ "text": "boolean"
27842
+ },
27843
+ "privacy": "public",
27844
+ "description": "Toggles whether the drawer is visible or not.",
27845
+ "default": "false",
27846
+ "attribute": "open",
27847
+ "inheritedFrom": {
27848
+ "name": "BaseDrawerComponent",
27849
+ "module": "src/lib/drawer/base/base-drawer.ts"
27850
+ }
27851
+ },
27852
+ {
27853
+ "kind": "field",
27854
+ "name": "direction",
27855
+ "type": {
27856
+ "text": "DrawerDirection"
27857
+ },
27858
+ "privacy": "public",
27859
+ "description": "Controls the layout and animation direction of the drawer for positioning on the left vs. right side of the screen when toggling the `open` attribute.",
27860
+ "default": "\"left\"",
27861
+ "attribute": "direction",
27862
+ "inheritedFrom": {
27863
+ "name": "BaseDrawerComponent",
27864
+ "module": "src/lib/drawer/base/base-drawer.ts"
27865
+ }
27866
+ }
27867
+ ],
27868
+ "events": [
27869
+ {
27870
+ "type": {
27871
+ "text": "CustomEvent<void>"
27872
+ },
27873
+ "description": "Dispatched when the modal drawer is closed by clicking the backdrop.",
27874
+ "name": "forge-modal-drawer-close"
27875
+ },
27876
+ {
27877
+ "type": {
27878
+ "text": "CustomEvent<void>"
27879
+ },
27880
+ "description": "Dispatched after the drawer has opened.",
27881
+ "name": "forge-drawer-after-open",
27882
+ "inheritedFrom": {
27883
+ "name": "BaseDrawerComponent",
27884
+ "module": "src/lib/drawer/base/base-drawer.ts"
27885
+ }
27886
+ },
27887
+ {
27888
+ "type": {
27889
+ "text": "CustomEvent<void>"
27890
+ },
27891
+ "description": "Dispatched after the drawer has closed.",
27892
+ "name": "forge-drawer-after-close",
27893
+ "inheritedFrom": {
27894
+ "name": "BaseDrawerComponent",
27895
+ "module": "src/lib/drawer/base/base-drawer.ts"
27896
+ }
27897
+ }
27898
+ ],
27899
+ "superclass": {
27900
+ "name": "BaseDrawerComponent",
27901
+ "module": "/src/lib/drawer/base/index.js"
27902
+ },
27903
+ "tagName": "forge-modal-drawer",
27904
+ "customElement": true,
27905
+ "summary": "A modal navigation drawer component that slides in from the side with a backdrop overlay, typically used for temporary navigation panels. Prefer to use the dialog component with the preset options for sidesheet styles drawers.",
27906
+ "dependencies": [
27907
+ {
27908
+ "name": "forge-backdrop",
27909
+ "description": ""
27910
+ }
27911
+ ],
27912
+ "attributes": [
27913
+ {
27914
+ "name": "open",
27915
+ "type": {
27916
+ "text": "boolean"
27917
+ },
27918
+ "description": "Toggles whether the drawer is visible or not.",
27919
+ "default": "false",
27920
+ "fieldName": "open",
27921
+ "inheritedFrom": {
27922
+ "name": "BaseDrawerComponent",
27923
+ "module": "src/lib/drawer/base/base-drawer.ts"
27924
+ }
27925
+ },
27926
+ {
27927
+ "name": "direction",
27928
+ "type": {
27929
+ "text": "DrawerDirection"
27930
+ },
27931
+ "description": "Controls the layout and animation direction of the drawer for positioning on the left vs. right side of the screen when toggling the `open` attribute.",
27932
+ "default": "\"left\"",
27933
+ "fieldName": "direction",
27934
+ "inheritedFrom": {
27935
+ "name": "BaseDrawerComponent",
27936
+ "module": "src/lib/drawer/base/base-drawer.ts"
27937
+ }
27938
+ }
27939
+ ]
27940
+ }
27941
+ ],
27942
+ "exports": [
27943
+ {
27944
+ "kind": "js",
27945
+ "name": "ModalDrawerComponent",
27946
+ "declaration": {
27947
+ "name": "ModalDrawerComponent",
27948
+ "module": "src/lib/drawer/modal-drawer/modal-drawer.ts"
27949
+ }
27950
+ }
27951
+ ]
27952
+ },
27229
27953
  {
27230
27954
  "kind": "javascript-module",
27231
27955
  "path": "src/lib/field/base/base-field.ts",
@@ -28297,189 +29021,6 @@
28297
29021
  }
28298
29022
  ]
28299
29023
  },
28300
- {
28301
- "kind": "javascript-module",
28302
- "path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
28303
- "declarations": [
28304
- {
28305
- "kind": "class",
28306
- "description": "",
28307
- "name": "ModalDrawerComponent",
28308
- "cssProperties": [
28309
- {
28310
- "description": "The width of the drawer.",
28311
- "name": "--forge-drawer-width"
28312
- },
28313
- {
28314
- "description": "The background color of the drawer.",
28315
- "name": "--forge-drawer-background"
28316
- },
28317
- {
28318
- "description": "The border of the drawer.",
28319
- "name": "--forge-drawer-border-color"
28320
- },
28321
- {
28322
- "description": "The border width of the drawer.",
28323
- "name": "--forge-drawer-border-width"
28324
- },
28325
- {
28326
- "description": "The transition duration of the drawer.",
28327
- "name": "--forge-drawer-transition-duration"
28328
- },
28329
- {
28330
- "description": "The transition timing function of the drawer.",
28331
- "name": "--forge-drawer-transition-easing"
28332
- },
28333
- {
28334
- "description": "The duration of the drawer closing animation.",
28335
- "name": "--forge-drawer-duration-close"
28336
- }
28337
- ],
28338
- "cssParts": [
28339
- {
28340
- "description": "The component's root element.",
28341
- "name": "root"
28342
- },
28343
- {
28344
- "description": "The content container element.",
28345
- "name": "content"
28346
- },
28347
- {
28348
- "description": "The backdrop root element.",
28349
- "name": "backdrop"
28350
- }
28351
- ],
28352
- "slots": [
28353
- {
28354
- "description": "The content to display in the scrollable content container.",
28355
- "name": ""
28356
- },
28357
- {
28358
- "description": "The header content above the main content.",
28359
- "name": "header"
28360
- },
28361
- {
28362
- "description": "The footer content below the main content.",
28363
- "name": "footer"
28364
- }
28365
- ],
28366
- "members": [
28367
- {
28368
- "kind": "field",
28369
- "name": "open",
28370
- "type": {
28371
- "text": "boolean"
28372
- },
28373
- "privacy": "public",
28374
- "description": "Toggles whether the drawer is visible or not.",
28375
- "default": "false",
28376
- "attribute": "open",
28377
- "inheritedFrom": {
28378
- "name": "BaseDrawerComponent",
28379
- "module": "src/lib/drawer/base/base-drawer.ts"
28380
- }
28381
- },
28382
- {
28383
- "kind": "field",
28384
- "name": "direction",
28385
- "type": {
28386
- "text": "DrawerDirection"
28387
- },
28388
- "privacy": "public",
28389
- "description": "Controls the layout and animation direction of the drawer for positioning on the left vs. right side of the screen when toggling the `open` attribute.",
28390
- "default": "\"left\"",
28391
- "attribute": "direction",
28392
- "inheritedFrom": {
28393
- "name": "BaseDrawerComponent",
28394
- "module": "src/lib/drawer/base/base-drawer.ts"
28395
- }
28396
- }
28397
- ],
28398
- "events": [
28399
- {
28400
- "type": {
28401
- "text": "CustomEvent<void>"
28402
- },
28403
- "description": "Dispatched when the modal drawer is closed by clicking the backdrop.",
28404
- "name": "forge-modal-drawer-close"
28405
- },
28406
- {
28407
- "type": {
28408
- "text": "CustomEvent<void>"
28409
- },
28410
- "description": "Dispatched after the drawer has opened.",
28411
- "name": "forge-drawer-after-open",
28412
- "inheritedFrom": {
28413
- "name": "BaseDrawerComponent",
28414
- "module": "src/lib/drawer/base/base-drawer.ts"
28415
- }
28416
- },
28417
- {
28418
- "type": {
28419
- "text": "CustomEvent<void>"
28420
- },
28421
- "description": "Dispatched after the drawer has closed.",
28422
- "name": "forge-drawer-after-close",
28423
- "inheritedFrom": {
28424
- "name": "BaseDrawerComponent",
28425
- "module": "src/lib/drawer/base/base-drawer.ts"
28426
- }
28427
- }
28428
- ],
28429
- "superclass": {
28430
- "name": "BaseDrawerComponent",
28431
- "module": "/src/lib/drawer/base/index.js"
28432
- },
28433
- "tagName": "forge-modal-drawer",
28434
- "customElement": true,
28435
- "summary": "A modal navigation drawer component that slides in from the side with a backdrop overlay, typically used for temporary navigation panels. Prefer to use the dialog component with the preset options for sidesheet styles drawers.",
28436
- "dependencies": [
28437
- {
28438
- "name": "forge-backdrop",
28439
- "description": ""
28440
- }
28441
- ],
28442
- "attributes": [
28443
- {
28444
- "name": "open",
28445
- "type": {
28446
- "text": "boolean"
28447
- },
28448
- "description": "Toggles whether the drawer is visible or not.",
28449
- "default": "false",
28450
- "fieldName": "open",
28451
- "inheritedFrom": {
28452
- "name": "BaseDrawerComponent",
28453
- "module": "src/lib/drawer/base/base-drawer.ts"
28454
- }
28455
- },
28456
- {
28457
- "name": "direction",
28458
- "type": {
28459
- "text": "DrawerDirection"
28460
- },
28461
- "description": "Controls the layout and animation direction of the drawer for positioning on the left vs. right side of the screen when toggling the `open` attribute.",
28462
- "default": "\"left\"",
28463
- "fieldName": "direction",
28464
- "inheritedFrom": {
28465
- "name": "BaseDrawerComponent",
28466
- "module": "src/lib/drawer/base/base-drawer.ts"
28467
- }
28468
- }
28469
- ]
28470
- }
28471
- ],
28472
- "exports": [
28473
- {
28474
- "kind": "js",
28475
- "name": "ModalDrawerComponent",
28476
- "declaration": {
28477
- "name": "ModalDrawerComponent",
28478
- "module": "src/lib/drawer/modal-drawer/modal-drawer.ts"
28479
- }
28480
- }
28481
- ]
28482
- },
28483
29024
  {
28484
29025
  "kind": "javascript-module",
28485
29026
  "path": "src/lib/key/key/key.ts",
@@ -36220,6 +36761,34 @@
36220
36761
  }
36221
36762
  ]
36222
36763
  },
36764
+ {
36765
+ "kind": "javascript-module",
36766
+ "path": "src/lib/view-switcher/view/view.ts",
36767
+ "declarations": [
36768
+ {
36769
+ "kind": "class",
36770
+ "description": "",
36771
+ "name": "ViewComponent",
36772
+ "superclass": {
36773
+ "name": "BaseComponent",
36774
+ "module": "/src/lib/core/base/base-component.js"
36775
+ },
36776
+ "tagName": "forge-view",
36777
+ "customElement": true,
36778
+ "summary": "Represents a single view content area within a view-switcher for organizing and displaying content sections."
36779
+ }
36780
+ ],
36781
+ "exports": [
36782
+ {
36783
+ "kind": "js",
36784
+ "name": "ViewComponent",
36785
+ "declaration": {
36786
+ "name": "ViewComponent",
36787
+ "module": "src/lib/view-switcher/view/view.ts"
36788
+ }
36789
+ }
36790
+ ]
36791
+ },
36223
36792
  {
36224
36793
  "kind": "javascript-module",
36225
36794
  "path": "src/lib/tree/tree-item/tree-item.ts",
@@ -36666,34 +37235,6 @@
36666
37235
  }
36667
37236
  }
36668
37237
  ]
36669
- },
36670
- {
36671
- "kind": "javascript-module",
36672
- "path": "src/lib/view-switcher/view/view.ts",
36673
- "declarations": [
36674
- {
36675
- "kind": "class",
36676
- "description": "",
36677
- "name": "ViewComponent",
36678
- "superclass": {
36679
- "name": "BaseComponent",
36680
- "module": "/src/lib/core/base/base-component.js"
36681
- },
36682
- "tagName": "forge-view",
36683
- "customElement": true,
36684
- "summary": "Represents a single view content area within a view-switcher for organizing and displaying content sections."
36685
- }
36686
- ],
36687
- "exports": [
36688
- {
36689
- "kind": "js",
36690
- "name": "ViewComponent",
36691
- "declaration": {
36692
- "name": "ViewComponent",
36693
- "module": "src/lib/view-switcher/view/view.ts"
36694
- }
36695
- }
36696
- ]
36697
37238
  }
36698
37239
  ],
36699
37240
  "branchName": "main",
@@ -36718,17 +37259,17 @@
36718
37259
  "path": "src/lib/constants.ts",
36719
37260
  "lineNumber": 62
36720
37261
  },
36721
- "IAvatarComponent": {
36722
- "path": "src/lib/avatar/avatar.ts",
36723
- "lineNumber": 10
37262
+ "IAccordionComponent": {
37263
+ "path": "src/lib/accordion/accordion.ts",
37264
+ "lineNumber": 9
36724
37265
  },
36725
- "HTMLElementTagNameMap": {
36726
- "path": "src/lib/view-switcher/view/view.ts",
36727
- "lineNumber": 12
37266
+ "AccordionComponent": {
37267
+ "path": "src/lib/accordion/accordion.ts",
37268
+ "lineNumber": 24
36728
37269
  },
36729
- "AvatarComponent": {
36730
- "path": "src/lib/avatar/avatar.ts",
36731
- "lineNumber": 54
37270
+ "HTMLElementTagNameMap": {
37271
+ "path": "src/lib/tree/tree-item/tree-item.ts",
37272
+ "lineNumber": 382
36732
37273
  },
36733
37274
  "IAutocompleteAdapter": {
36734
37275
  "path": "src/lib/autocomplete/autocomplete-adapter.ts",
@@ -36822,13 +37363,13 @@
36822
37363
  "path": "src/lib/autocomplete/autocomplete.ts",
36823
37364
  "lineNumber": 77
36824
37365
  },
36825
- "IAccordionComponent": {
36826
- "path": "src/lib/accordion/accordion.ts",
36827
- "lineNumber": 9
37366
+ "IAvatarComponent": {
37367
+ "path": "src/lib/avatar/avatar.ts",
37368
+ "lineNumber": 10
36828
37369
  },
36829
- "AccordionComponent": {
36830
- "path": "src/lib/accordion/accordion.ts",
36831
- "lineNumber": 24
37370
+ "AvatarComponent": {
37371
+ "path": "src/lib/avatar/avatar.ts",
37372
+ "lineNumber": 54
36832
37373
  },
36833
37374
  "IBackdropComponent": {
36834
37375
  "path": "src/lib/backdrop/backdrop.ts",
@@ -38266,6 +38807,18 @@
38266
38807
  "path": "src/lib/scaffold/scaffold.ts",
38267
38808
  "lineNumber": 53
38268
38809
  },
38810
+ "SecretVariant": {
38811
+ "path": "src/lib/secret/secret.ts",
38812
+ "lineNumber": 21
38813
+ },
38814
+ "SecretButtonPosition": {
38815
+ "path": "src/lib/secret/secret.ts",
38816
+ "lineNumber": 22
38817
+ },
38818
+ "SecretComponent": {
38819
+ "path": "src/lib/secret/secret.ts",
38820
+ "lineNumber": 76
38821
+ },
38269
38822
  "IOption": {
38270
38823
  "path": "src/lib/select/index.ts",
38271
38824
  "lineNumber": 8
@@ -38298,6 +38851,18 @@
38298
38851
  "path": "src/lib/skeleton/skeleton.ts",
38299
38852
  "lineNumber": 59
38300
38853
  },
38854
+ "SkipLinkTheme": {
38855
+ "path": "src/lib/skip-link/skip-link-constants.ts",
38856
+ "lineNumber": 29
38857
+ },
38858
+ "ISkipLinkComponent": {
38859
+ "path": "src/lib/skip-link/skip-link.ts",
38860
+ "lineNumber": 10
38861
+ },
38862
+ "SkipLinkComponent": {
38863
+ "path": "src/lib/skip-link/skip-link.ts",
38864
+ "lineNumber": 51
38865
+ },
38301
38866
  "ISliderState": {
38302
38867
  "path": "src/lib/slider/slider-adapter.ts",
38303
38868
  "lineNumber": 10
@@ -38354,18 +38919,6 @@
38354
38919
  "path": "src/lib/slider/slider.ts",
38355
38920
  "lineNumber": 143
38356
38921
  },
38357
- "SkipLinkTheme": {
38358
- "path": "src/lib/skip-link/skip-link-constants.ts",
38359
- "lineNumber": 29
38360
- },
38361
- "ISkipLinkComponent": {
38362
- "path": "src/lib/skip-link/skip-link.ts",
38363
- "lineNumber": 10
38364
- },
38365
- "SkipLinkComponent": {
38366
- "path": "src/lib/skip-link/skip-link.ts",
38367
- "lineNumber": 51
38368
- },
38369
38922
  "ISplitButtonAdapter": {
38370
38923
  "path": "src/lib/split-button/split-button-adapter.ts",
38371
38924
  "lineNumber": 6
@@ -38934,26 +39487,6 @@
38934
39487
  "path": "src/lib/view-switcher/view-switcher.ts",
38935
39488
  "lineNumber": 38
38936
39489
  },
38937
- "AppBarElevation": {
38938
- "path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
38939
- "lineNumber": 43
38940
- },
38941
- "AppBarTheme": {
38942
- "path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
38943
- "lineNumber": 44
38944
- },
38945
- "AppBarThemeMode": {
38946
- "path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
38947
- "lineNumber": 45
38948
- },
38949
- "IAppBarComponent": {
38950
- "path": "src/lib/app-bar/app-bar/app-bar.ts",
38951
- "lineNumber": 14
38952
- },
38953
- "AppBarComponent": {
38954
- "path": "src/lib/app-bar/app-bar/app-bar.ts",
38955
- "lineNumber": 65
38956
- },
38957
39490
  "IAppBarHelpButtonAdapter": {
38958
39491
  "path": "src/lib/app-bar/help-button/app-bar-help-button-adapter.ts",
38959
39492
  "lineNumber": 11
@@ -38978,6 +39511,26 @@
38978
39511
  "path": "src/lib/app-bar/help-button/app-bar-help-button.ts",
38979
39512
  "lineNumber": 39
38980
39513
  },
39514
+ "AppBarElevation": {
39515
+ "path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
39516
+ "lineNumber": 43
39517
+ },
39518
+ "AppBarTheme": {
39519
+ "path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
39520
+ "lineNumber": 44
39521
+ },
39522
+ "AppBarThemeMode": {
39523
+ "path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
39524
+ "lineNumber": 45
39525
+ },
39526
+ "IAppBarComponent": {
39527
+ "path": "src/lib/app-bar/app-bar/app-bar.ts",
39528
+ "lineNumber": 14
39529
+ },
39530
+ "AppBarComponent": {
39531
+ "path": "src/lib/app-bar/app-bar/app-bar.ts",
39532
+ "lineNumber": 65
39533
+ },
38981
39534
  "IAppBarMenuButtonComponent": {
38982
39535
  "path": "src/lib/app-bar/menu-button/app-bar-menu-button.ts",
38983
39536
  "lineNumber": 12
@@ -39734,6 +40287,30 @@
39734
40287
  "path": "src/lib/drawer/mini-drawer/mini-drawer.ts",
39735
40288
  "lineNumber": 52
39736
40289
  },
40290
+ "IModalDrawerAdapter": {
40291
+ "path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
40292
+ "lineNumber": 6
40293
+ },
40294
+ "ModalDrawerAdapter": {
40295
+ "path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
40296
+ "lineNumber": 12
40297
+ },
40298
+ "IModalDrawerCore": {
40299
+ "path": "src/lib/drawer/modal-drawer/modal-drawer-core.ts",
40300
+ "lineNumber": 6
40301
+ },
40302
+ "ModalDrawerCore": {
40303
+ "path": "src/lib/drawer/modal-drawer/modal-drawer-core.ts",
40304
+ "lineNumber": 8
40305
+ },
40306
+ "IModalDrawerComponent": {
40307
+ "path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
40308
+ "lineNumber": 11
40309
+ },
40310
+ "ModalDrawerComponent": {
40311
+ "path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
40312
+ "lineNumber": 48
40313
+ },
39737
40314
  "IBaseFieldAdapter": {
39738
40315
  "path": "src/lib/field/base/base-field-adapter.ts",
39739
40316
  "lineNumber": 5
@@ -39798,30 +40375,6 @@
39798
40375
  "path": "src/lib/field/base/with-base-field.ts",
39799
40376
  "lineNumber": 97
39800
40377
  },
39801
- "IModalDrawerAdapter": {
39802
- "path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
39803
- "lineNumber": 6
39804
- },
39805
- "ModalDrawerAdapter": {
39806
- "path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
39807
- "lineNumber": 12
39808
- },
39809
- "IModalDrawerCore": {
39810
- "path": "src/lib/drawer/modal-drawer/modal-drawer-core.ts",
39811
- "lineNumber": 6
39812
- },
39813
- "ModalDrawerCore": {
39814
- "path": "src/lib/drawer/modal-drawer/modal-drawer-core.ts",
39815
- "lineNumber": 8
39816
- },
39817
- "IModalDrawerComponent": {
39818
- "path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
39819
- "lineNumber": 11
39820
- },
39821
- "ModalDrawerComponent": {
39822
- "path": "src/lib/drawer/modal-drawer/modal-drawer.ts",
39823
- "lineNumber": 48
39824
- },
39825
40378
  "KeyComponent": {
39826
40379
  "path": "src/lib/key/key/key.ts",
39827
40380
  "lineNumber": 23
@@ -40222,10 +40775,6 @@
40222
40775
  "path": "src/lib/split-view/split-view/split-view.ts",
40223
40776
  "lineNumber": 32
40224
40777
  },
40225
- "StepperUtils": {
40226
- "path": "src/lib/stepper/core/stepper-utils.ts",
40227
- "lineNumber": 4
40228
- },
40229
40778
  "ISplitViewPanelAdapter": {
40230
40779
  "path": "src/lib/split-view/split-view-panel/split-view-panel-adapter.ts",
40231
40780
  "lineNumber": 12
@@ -40278,6 +40827,10 @@
40278
40827
  "path": "src/lib/split-view/split-view-panel/split-view-panel.ts",
40279
40828
  "lineNumber": 89
40280
40829
  },
40830
+ "StepperUtils": {
40831
+ "path": "src/lib/stepper/core/stepper-utils.ts",
40832
+ "lineNumber": 4
40833
+ },
40281
40834
  "IStepAdapter": {
40282
40835
  "path": "src/lib/stepper/step/step-adapter.ts",
40283
40836
  "lineNumber": 9
@@ -40422,6 +40975,14 @@
40422
40975
  "path": "src/lib/tree/tree/tree.ts",
40423
40976
  "lineNumber": 56
40424
40977
  },
40978
+ "IViewComponent": {
40979
+ "path": "src/lib/view-switcher/view/view.ts",
40980
+ "lineNumber": 9
40981
+ },
40982
+ "ViewComponent": {
40983
+ "path": "src/lib/view-switcher/view/view.ts",
40984
+ "lineNumber": 22
40985
+ },
40425
40986
  "TreeItemCheckboxIcon": {
40426
40987
  "path": "src/lib/tree/tree-item/tree-item.ts",
40427
40988
  "lineNumber": 18
@@ -40434,14 +40995,6 @@
40434
40995
  "path": "src/lib/tree/tree-item/tree-item.ts",
40435
40996
  "lineNumber": 32
40436
40997
  },
40437
- "IViewComponent": {
40438
- "path": "src/lib/view-switcher/view/view.ts",
40439
- "lineNumber": 9
40440
- },
40441
- "ViewComponent": {
40442
- "path": "src/lib/view-switcher/view/view.ts",
40443
- "lineNumber": 22
40444
- },
40445
40998
  "IWithFocusable": {
40446
40999
  "path": "src/lib/core/mixins/focus/with-focusable.ts",
40447
41000
  "lineNumber": 16