@skyux/popovers 5.0.0-beta.0 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. package/LICENSE +21 -0
  2. package/bundles/skyux-popovers-testing.umd.js +647 -518
  3. package/bundles/skyux-popovers.umd.js +476 -640
  4. package/documentation.json +4192 -0
  5. package/esm2015/modules/dropdown/dropdown-button.component.js +13 -11
  6. package/esm2015/modules/dropdown/dropdown-extensions.js +1 -1
  7. package/esm2015/modules/dropdown/dropdown-item.component.js +22 -25
  8. package/esm2015/modules/dropdown/dropdown-menu.component.js +39 -45
  9. package/esm2015/modules/dropdown/dropdown.component.js +65 -74
  10. package/esm2015/modules/dropdown/dropdown.module.js +46 -25
  11. package/esm2015/modules/dropdown/types/dropdown-horizontal-alignment.js +2 -1
  12. package/esm2015/modules/dropdown/types/dropdown-menu-change.js +2 -1
  13. package/esm2015/modules/dropdown/types/dropdown-message-type.js +1 -1
  14. package/esm2015/modules/dropdown/types/dropdown-message.js +2 -1
  15. package/esm2015/modules/dropdown/types/dropdown-trigger-type.js +2 -1
  16. package/esm2015/modules/popover/popover-adapter.service.js +11 -10
  17. package/esm2015/modules/popover/popover-animation-state.js +2 -1
  18. package/esm2015/modules/popover/popover-animation.js +8 -14
  19. package/esm2015/modules/popover/popover-content.component.js +73 -64
  20. package/esm2015/modules/popover/popover-context.js +1 -1
  21. package/esm2015/modules/popover/popover-extensions.js +1 -1
  22. package/esm2015/modules/popover/popover.component.js +60 -61
  23. package/esm2015/modules/popover/popover.directive.js +28 -31
  24. package/esm2015/modules/popover/popover.module.js +43 -28
  25. package/esm2015/modules/popover/types/popover-adapter-arrow-coordinates.js +2 -1
  26. package/esm2015/modules/popover/types/popover-adapter-elements.js +2 -1
  27. package/esm2015/modules/popover/types/popover-alignment.js +2 -1
  28. package/esm2015/modules/popover/types/popover-message-type.js +1 -1
  29. package/esm2015/modules/popover/types/popover-message.js +2 -1
  30. package/esm2015/modules/popover/types/popover-placement.js +2 -1
  31. package/esm2015/modules/popover/types/popover-position.js +2 -1
  32. package/esm2015/modules/popover/types/popover-trigger.js +2 -1
  33. package/esm2015/modules/shared/sky-popovers-resources.module.js +47 -0
  34. package/esm2015/public-api.js +23 -0
  35. package/esm2015/skyux-popovers.js +2 -15
  36. package/esm2015/testing/dropdown/dropdown-fixture.js +4 -4
  37. package/esm2015/testing/dropdown/dropdown-testing.module.js +13 -12
  38. package/esm2015/testing/dropdown/popovers-fixture-dropdown-item.js +2 -1
  39. package/esm2015/testing/dropdown/popovers-fixture-dropdown-menu.js +2 -1
  40. package/esm2015/testing/dropdown/popovers-fixture-dropdown.js +2 -1
  41. package/esm2015/testing/popover/popover-fixture.js +4 -8
  42. package/esm2015/testing/popover/popover-testing.module.js +25 -18
  43. package/esm2015/testing/public-api.js +8 -0
  44. package/esm2015/testing/skyux-popovers-testing.js +2 -2
  45. package/fesm2015/skyux-popovers-testing.js +42 -35
  46. package/fesm2015/skyux-popovers-testing.js.map +1 -1
  47. package/fesm2015/skyux-popovers.js +428 -397
  48. package/fesm2015/skyux-popovers.js.map +1 -1
  49. package/modules/dropdown/dropdown-button.component.d.ts +3 -0
  50. package/modules/dropdown/dropdown-item.component.d.ts +3 -0
  51. package/modules/dropdown/dropdown-menu.component.d.ts +3 -0
  52. package/modules/dropdown/dropdown.component.d.ts +4 -0
  53. package/modules/dropdown/dropdown.module.d.ts +13 -0
  54. package/modules/popover/popover-adapter.service.d.ts +3 -0
  55. package/modules/popover/popover-content.component.d.ts +5 -0
  56. package/modules/popover/popover.component.d.ts +8 -0
  57. package/modules/popover/popover.directive.d.ts +3 -0
  58. package/modules/popover/popover.module.d.ts +12 -0
  59. package/modules/shared/sky-popovers-resources.module.d.ts +14 -0
  60. package/package.json +12 -26
  61. package/{public_api.d.ts → public-api.d.ts} +7 -0
  62. package/skyux-popovers.d.ts +2 -14
  63. package/testing/dropdown/dropdown-testing.module.d.ts +5 -0
  64. package/testing/package.json +2 -5
  65. package/testing/popover/popover-testing.module.d.ts +7 -0
  66. package/testing/{public_api.d.ts → public-api.d.ts} +0 -0
  67. package/testing/skyux-popovers-testing.d.ts +2 -1
  68. package/CHANGELOG.md +0 -176
  69. package/bundles/skyux-popovers-testing.umd.js.map +0 -1
  70. package/bundles/skyux-popovers-testing.umd.min.js +0 -16
  71. package/bundles/skyux-popovers-testing.umd.min.js.map +0 -1
  72. package/bundles/skyux-popovers.umd.js.map +0 -1
  73. package/bundles/skyux-popovers.umd.min.js +0 -16
  74. package/bundles/skyux-popovers.umd.min.js.map +0 -1
  75. package/esm2015/modules/shared/popovers-for-root-compat.module.js +0 -18
  76. package/esm2015/modules/shared/popovers-resources.module.js +0 -20
  77. package/esm2015/plugin-resources/popovers-resources-provider.js +0 -16
  78. package/esm2015/public_api.js +0 -5
  79. package/esm2015/testing/public_api.js +0 -5
  80. package/esm5/modules/dropdown/dropdown-button.component.js +0 -15
  81. package/esm5/modules/dropdown/dropdown-extensions.js +0 -14
  82. package/esm5/modules/dropdown/dropdown-item.component.js +0 -84
  83. package/esm5/modules/dropdown/dropdown-menu.component.js +0 -332
  84. package/esm5/modules/dropdown/dropdown.component.js +0 -404
  85. package/esm5/modules/dropdown/dropdown.module.js +0 -42
  86. package/esm5/modules/dropdown/types/dropdown-horizontal-alignment.js +0 -1
  87. package/esm5/modules/dropdown/types/dropdown-menu-change.js +0 -1
  88. package/esm5/modules/dropdown/types/dropdown-message-type.js +0 -37
  89. package/esm5/modules/dropdown/types/dropdown-message.js +0 -1
  90. package/esm5/modules/dropdown/types/dropdown-trigger-type.js +0 -1
  91. package/esm5/modules/popover/popover-adapter.service.js +0 -76
  92. package/esm5/modules/popover/popover-animation-state.js +0 -1
  93. package/esm5/modules/popover/popover-animation.js +0 -25
  94. package/esm5/modules/popover/popover-content.component.js +0 -278
  95. package/esm5/modules/popover/popover-context.js +0 -12
  96. package/esm5/modules/popover/popover-extensions.js +0 -29
  97. package/esm5/modules/popover/popover.component.js +0 -215
  98. package/esm5/modules/popover/popover.directive.js +0 -184
  99. package/esm5/modules/popover/popover.module.js +0 -44
  100. package/esm5/modules/popover/types/popover-adapter-arrow-coordinates.js +0 -1
  101. package/esm5/modules/popover/types/popover-adapter-elements.js +0 -1
  102. package/esm5/modules/popover/types/popover-alignment.js +0 -1
  103. package/esm5/modules/popover/types/popover-message-type.js +0 -24
  104. package/esm5/modules/popover/types/popover-message.js +0 -1
  105. package/esm5/modules/popover/types/popover-placement.js +0 -1
  106. package/esm5/modules/popover/types/popover-position.js +0 -1
  107. package/esm5/modules/popover/types/popover-trigger.js +0 -1
  108. package/esm5/modules/shared/popovers-for-root-compat.module.js +0 -21
  109. package/esm5/modules/shared/popovers-resources.module.js +0 -23
  110. package/esm5/plugin-resources/popovers-resources-provider.js +0 -17
  111. package/esm5/public_api.js +0 -5
  112. package/esm5/skyux-popovers.js +0 -18
  113. package/esm5/testing/dropdown/dropdown-fixture.js +0 -165
  114. package/esm5/testing/dropdown/dropdown-testing.module.js +0 -17
  115. package/esm5/testing/dropdown/popovers-fixture-dropdown-item.js +0 -1
  116. package/esm5/testing/dropdown/popovers-fixture-dropdown-menu.js +0 -1
  117. package/esm5/testing/dropdown/popovers-fixture-dropdown.js +0 -1
  118. package/esm5/testing/popover/popover-fixture.js +0 -128
  119. package/esm5/testing/popover/popover-testing.module.js +0 -25
  120. package/esm5/testing/public_api.js +0 -5
  121. package/esm5/testing/skyux-popovers-testing.js +0 -5
  122. package/fesm5/skyux-popovers-testing.js +0 -333
  123. package/fesm5/skyux-popovers-testing.js.map +0 -1
  124. package/fesm5/skyux-popovers.js +0 -1803
  125. package/fesm5/skyux-popovers.js.map +0 -1
  126. package/modules/shared/popovers-for-root-compat.module.d.ts +0 -6
  127. package/modules/shared/popovers-resources.module.d.ts +0 -2
  128. package/plugin-resources/popovers-resources-provider.d.ts +0 -5
  129. package/skyux-popovers.metadata.json +0 -1
  130. package/src/assets/img/guidelines/dropdown/anatomy.png +0 -0
  131. package/src/assets/img/guidelines/dropdown/dropdown-content-1.png +0 -0
  132. package/src/assets/img/guidelines/dropdown/dropdown-content-2.png +0 -0
  133. package/src/assets/img/guidelines/dropdown/dropdown-content-3.png +0 -0
  134. package/src/assets/img/guidelines/dropdown/layout.png +0 -0
  135. package/src/assets/img/guidelines/dropdown/more-button.png +0 -0
  136. package/src/assets/img/guidelines/dropdown/option-type-context.png +0 -0
  137. package/src/assets/img/guidelines/dropdown/option-type-default.png +0 -0
  138. package/src/assets/img/guidelines/dropdown/option-type-icon.png +0 -0
  139. package/src/assets/img/guidelines/dropdown/usage-context-menu.png +0 -0
  140. package/src/assets/img/guidelines/dropdown/usage-dont-input.png +0 -0
  141. package/src/assets/img/guidelines/dropdown/usage-icon.png +0 -0
  142. package/src/assets/img/guidelines/dropdown/usage-toolbar.png +0 -0
  143. package/src/assets/img/guidelines/popover/anatomy.png +0 -0
  144. package/src/assets/img/guidelines/popover/behavior-responsive.png +0 -0
  145. package/src/assets/img/guidelines/popover/content-dont-overload.png +0 -0
  146. package/src/assets/img/guidelines/popover/content-html.png +0 -0
  147. package/src/assets/img/guidelines/popover/content-simple.png +0 -0
  148. package/src/assets/img/guidelines/popover/layout-alternate.png +0 -0
  149. package/src/assets/img/guidelines/popover/layout-default.png +0 -0
  150. package/src/assets/img/guidelines/popover/option-position.png +0 -0
  151. package/src/assets/img/guidelines/popover/popover-auto.mp4 +0 -0
  152. package/src/assets/img/guidelines/popover/popover-click.mp4 +0 -0
  153. package/src/assets/img/guidelines/popover/popover-usage-1.png +0 -0
  154. package/src/assets/img/guidelines/popover/popover-usage-2.png +0 -0
  155. package/src/assets/img/guidelines/popover/popover-usage-3.png +0 -0
  156. package/src/assets/img/guidelines/popover/popover-usage-4.png +0 -0
  157. package/src/assets/img/guidelines/popover/popover-usage-5.png +0 -0
  158. package/src/assets/img/guidelines/wording/add-alert-button.png +0 -0
  159. package/src/assets/img/guidelines/wording/add-button.png +0 -0
  160. package/src/assets/img/guidelines/wording/context-menu.png +0 -0
  161. package/src/assets/img/guidelines/wording/dropdown-single-action.png +0 -0
  162. package/src/assets/img/guidelines/wording/form-field-label.png +0 -0
  163. package/src/assets/img/guidelines/wording/modal-with-object.png +0 -0
  164. package/src/assets/img/guidelines/wording/modal-without-object.png +0 -0
  165. package/src/assets/img/guidelines/wording/more-button.png +0 -0
  166. package/src/assets/locales/resources_en_US.json +0 -6
  167. package/testing/skyux-popovers-testing.metadata.json +0 -1
@@ -0,0 +1,4192 @@
1
+ {
2
+ "anchorIds": {
3
+ "SkyDropdownMessageType": "enumeration-skydropdownmessagetype",
4
+ "SkyPopoverMessageType": "enumeration-skypopovermessagetype",
5
+ "SkyDropdownModule": "class-skydropdownmodule",
6
+ "SkyPopoverModule": "class-skypopovermodule",
7
+ "SkyDropdownItemComponent": "class-skydropdownitemcomponent",
8
+ "SkyDropdownButtonComponent": "class-skydropdownbuttoncomponent",
9
+ "SkyDropdownComponent": "class-skydropdowncomponent",
10
+ "SkyDropdownMenuComponent": "class-skydropdownmenucomponent",
11
+ "SkyPopoverComponent": "class-skypopovercomponent",
12
+ "SkyPopoverDirective": "class-skypopoverdirective",
13
+ "SkyDropdownMenuChange": "interface-skydropdownmenuchange",
14
+ "SkyDropdownMessage": "interface-skydropdownmessage",
15
+ "SkyPopoverMessage": "interface-skypopovermessage",
16
+ "SkyDropdownHorizontalAlignment": "type-alias-skydropdownhorizontalalignment",
17
+ "SkyDropdownTriggerType": "type-alias-skydropdowntriggertype",
18
+ "SkyPopoverAlignment": "type-alias-skypopoveralignment",
19
+ "SkyPopoverPlacement": "type-alias-skypopoverplacement",
20
+ "SkyPopoverTrigger": "type-alias-skypopovertrigger"
21
+ },
22
+ "typedoc": {
23
+ "id": 0,
24
+ "name": "@skyux/popovers",
25
+ "kind": 1,
26
+ "kindString": "Project",
27
+ "flags": {},
28
+ "originalName": "",
29
+ "children": [
30
+ {
31
+ "id": 324,
32
+ "name": "SkyDropdownMessageType",
33
+ "kind": 8,
34
+ "kindString": "Enumeration",
35
+ "flags": {},
36
+ "children": [
37
+ {
38
+ "id": 326,
39
+ "name": "Close",
40
+ "kind": 16,
41
+ "kindString": "Enumeration member",
42
+ "flags": {},
43
+ "comment": {
44
+ "shortText": " Closes the dropdown menu."
45
+ },
46
+ "sources": [
47
+ {
48
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
49
+ "line": 10,
50
+ "character": 2
51
+ }
52
+ ],
53
+ "defaultValue": "1"
54
+ },
55
+ {
56
+ "id": 331,
57
+ "name": "FocusFirstItem",
58
+ "kind": 16,
59
+ "kindString": "Enumeration member",
60
+ "flags": {},
61
+ "comment": {
62
+ "shortText": "Puts focus on the first item in the dropdown menu."
63
+ },
64
+ "sources": [
65
+ {
66
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
67
+ "line": 36,
68
+ "character": 2
69
+ }
70
+ ],
71
+ "defaultValue": "6"
72
+ },
73
+ {
74
+ "id": 332,
75
+ "name": "FocusLastItem",
76
+ "kind": 16,
77
+ "kindString": "Enumeration member",
78
+ "flags": {},
79
+ "comment": {
80
+ "shortText": "Puts focus on the last item in the dropdown menu."
81
+ },
82
+ "sources": [
83
+ {
84
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
85
+ "line": 41,
86
+ "character": 2
87
+ }
88
+ ],
89
+ "defaultValue": "7"
90
+ },
91
+ {
92
+ "id": 328,
93
+ "name": "FocusNextItem",
94
+ "kind": 16,
95
+ "kindString": "Enumeration member",
96
+ "flags": {},
97
+ "comment": {
98
+ "shortText": "Puts focus on the next item in the dropdown menu."
99
+ },
100
+ "sources": [
101
+ {
102
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
103
+ "line": 20,
104
+ "character": 2
105
+ }
106
+ ],
107
+ "defaultValue": "3"
108
+ },
109
+ {
110
+ "id": 329,
111
+ "name": "FocusPreviousItem",
112
+ "kind": 16,
113
+ "kindString": "Enumeration member",
114
+ "flags": {},
115
+ "comment": {
116
+ "shortText": "Puts focus on the previous item in the dropdown menu."
117
+ },
118
+ "sources": [
119
+ {
120
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
121
+ "line": 25,
122
+ "character": 2
123
+ }
124
+ ],
125
+ "defaultValue": "4"
126
+ },
127
+ {
128
+ "id": 327,
129
+ "name": "FocusTriggerButton",
130
+ "kind": 16,
131
+ "kindString": "Enumeration member",
132
+ "flags": {},
133
+ "comment": {
134
+ "shortText": "Puts focus on the dropdown button."
135
+ },
136
+ "sources": [
137
+ {
138
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
139
+ "line": 15,
140
+ "character": 2
141
+ }
142
+ ],
143
+ "defaultValue": "2"
144
+ },
145
+ {
146
+ "id": 325,
147
+ "name": "Open",
148
+ "kind": 16,
149
+ "kindString": "Enumeration member",
150
+ "flags": {},
151
+ "comment": {
152
+ "shortText": "Opens the dropdown menu."
153
+ },
154
+ "sources": [
155
+ {
156
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
157
+ "line": 5,
158
+ "character": 2
159
+ }
160
+ ],
161
+ "defaultValue": "0"
162
+ },
163
+ {
164
+ "id": 330,
165
+ "name": "Reposition",
166
+ "kind": 16,
167
+ "kindString": "Enumeration member",
168
+ "flags": {},
169
+ "comment": {
170
+ "shortText": "Repositions the dropdown menu next to the dropdown button. This is useful for when the\ndropdown menu's width and height change while it is open."
171
+ },
172
+ "sources": [
173
+ {
174
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
175
+ "line": 31,
176
+ "character": 2
177
+ }
178
+ ],
179
+ "defaultValue": "5"
180
+ }
181
+ ],
182
+ "groups": [
183
+ {
184
+ "title": "Enumeration members",
185
+ "kind": 16,
186
+ "children": [
187
+ 326,
188
+ 331,
189
+ 332,
190
+ 328,
191
+ 329,
192
+ 327,
193
+ 325,
194
+ 330
195
+ ]
196
+ }
197
+ ],
198
+ "sources": [
199
+ {
200
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
201
+ "line": 1,
202
+ "character": 12
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "id": 343,
208
+ "name": "SkyPopoverMessageType",
209
+ "kind": 8,
210
+ "kindString": "Enumeration",
211
+ "flags": {},
212
+ "comment": {
213
+ "shortText": "Specifies the type of message to send to the popover component."
214
+ },
215
+ "children": [
216
+ {
217
+ "id": 345,
218
+ "name": "Close",
219
+ "kind": 16,
220
+ "kindString": "Enumeration member",
221
+ "flags": {},
222
+ "comment": {
223
+ "shortText": "Closes the popover."
224
+ },
225
+ "sources": [
226
+ {
227
+ "fileName": "projects/popovers/src/modules/popover/types/popover-message-type.ts",
228
+ "line": 13,
229
+ "character": 2
230
+ }
231
+ ],
232
+ "defaultValue": "1"
233
+ },
234
+ {
235
+ "id": 347,
236
+ "name": "Focus",
237
+ "kind": 16,
238
+ "kindString": "Enumeration member",
239
+ "flags": {},
240
+ "comment": {
241
+ "shortText": "Brings focus to the popover element."
242
+ },
243
+ "sources": [
244
+ {
245
+ "fileName": "projects/popovers/src/modules/popover/types/popover-message-type.ts",
246
+ "line": 24,
247
+ "character": 2
248
+ }
249
+ ],
250
+ "defaultValue": "3"
251
+ },
252
+ {
253
+ "id": 344,
254
+ "name": "Open",
255
+ "kind": 16,
256
+ "kindString": "Enumeration member",
257
+ "flags": {},
258
+ "comment": {
259
+ "shortText": "Opens the popover."
260
+ },
261
+ "sources": [
262
+ {
263
+ "fileName": "projects/popovers/src/modules/popover/types/popover-message-type.ts",
264
+ "line": 8,
265
+ "character": 2
266
+ }
267
+ ],
268
+ "defaultValue": "0"
269
+ },
270
+ {
271
+ "id": 346,
272
+ "name": "Reposition",
273
+ "kind": 16,
274
+ "kindString": "Enumeration member",
275
+ "flags": {},
276
+ "comment": {
277
+ "shortText": "Repositions the popover to the appropriate position.\nThis is useful for when the popover's width and height change while it is open."
278
+ },
279
+ "sources": [
280
+ {
281
+ "fileName": "projects/popovers/src/modules/popover/types/popover-message-type.ts",
282
+ "line": 19,
283
+ "character": 2
284
+ }
285
+ ],
286
+ "defaultValue": "2"
287
+ }
288
+ ],
289
+ "groups": [
290
+ {
291
+ "title": "Enumeration members",
292
+ "kind": 16,
293
+ "children": [
294
+ 345,
295
+ 347,
296
+ 344,
297
+ 346
298
+ ]
299
+ }
300
+ ],
301
+ "sources": [
302
+ {
303
+ "fileName": "projects/popovers/src/modules/popover/types/popover-message-type.ts",
304
+ "line": 4,
305
+ "character": 12
306
+ }
307
+ ]
308
+ },
309
+ {
310
+ "id": 334,
311
+ "name": "SkyDropdownModule",
312
+ "kind": 128,
313
+ "kindString": "Class",
314
+ "flags": {},
315
+ "decorators": [
316
+ {
317
+ "name": "NgModule",
318
+ "type": {
319
+ "type": "reference",
320
+ "name": "NgModule"
321
+ },
322
+ "arguments": {
323
+ "obj": "{\n declarations: [\n SkyDropdownButtonComponent,\n SkyDropdownComponent,\n SkyDropdownItemComponent,\n SkyDropdownMenuComponent,\n ],\n imports: [\n CommonModule,\n SkyAffixModule,\n SkyIconModule,\n SkyOverlayModule,\n SkyPopoversResourcesModule,\n SkyThemeModule,\n ],\n exports: [\n SkyDropdownButtonComponent,\n SkyDropdownComponent,\n SkyDropdownItemComponent,\n SkyDropdownMenuComponent,\n ],\n}"
324
+ }
325
+ }
326
+ ],
327
+ "children": [
328
+ {
329
+ "id": 335,
330
+ "name": "constructor",
331
+ "kind": 512,
332
+ "kindString": "Constructor",
333
+ "flags": {},
334
+ "signatures": [
335
+ {
336
+ "id": 336,
337
+ "name": "new SkyDropdownModule",
338
+ "kind": 16384,
339
+ "kindString": "Constructor signature",
340
+ "flags": {},
341
+ "type": {
342
+ "type": "reference",
343
+ "id": 334,
344
+ "name": "SkyDropdownModule"
345
+ }
346
+ }
347
+ ]
348
+ }
349
+ ],
350
+ "groups": [
351
+ {
352
+ "title": "Constructors",
353
+ "kind": 512,
354
+ "children": [
355
+ 335
356
+ ]
357
+ }
358
+ ],
359
+ "sources": [
360
+ {
361
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.module.ts",
362
+ "line": 43,
363
+ "character": 13
364
+ }
365
+ ]
366
+ },
367
+ {
368
+ "id": 337,
369
+ "name": "SkyPopoverModule",
370
+ "kind": 128,
371
+ "kindString": "Class",
372
+ "flags": {},
373
+ "decorators": [
374
+ {
375
+ "name": "NgModule",
376
+ "type": {
377
+ "type": "reference",
378
+ "name": "NgModule"
379
+ },
380
+ "arguments": {
381
+ "obj": "{\n declarations: [\n SkyPopoverComponent,\n SkyPopoverContentComponent,\n SkyPopoverDirective,\n ],\n imports: [\n CommonModule,\n SkyAffixModule,\n SkyIconModule,\n SkyOverlayModule,\n SkyPopoversResourcesModule,\n SkyThemeModule,\n ],\n exports: [\n SkyPopoverComponent,\n SkyPopoverContentComponent,\n SkyPopoverDirective,\n ],\n entryComponents: [SkyPopoverContentComponent],\n}"
382
+ }
383
+ }
384
+ ],
385
+ "children": [
386
+ {
387
+ "id": 338,
388
+ "name": "constructor",
389
+ "kind": 512,
390
+ "kindString": "Constructor",
391
+ "flags": {},
392
+ "signatures": [
393
+ {
394
+ "id": 339,
395
+ "name": "new SkyPopoverModule",
396
+ "kind": 16384,
397
+ "kindString": "Constructor signature",
398
+ "flags": {},
399
+ "type": {
400
+ "type": "reference",
401
+ "id": 337,
402
+ "name": "SkyPopoverModule"
403
+ }
404
+ }
405
+ ]
406
+ }
407
+ ],
408
+ "groups": [
409
+ {
410
+ "title": "Constructors",
411
+ "kind": 512,
412
+ "children": [
413
+ 338
414
+ ]
415
+ }
416
+ ],
417
+ "sources": [
418
+ {
419
+ "fileName": "projects/popovers/src/modules/popover/popover.module.ts",
420
+ "line": 40,
421
+ "character": 13
422
+ }
423
+ ]
424
+ },
425
+ {
426
+ "id": 1,
427
+ "name": "SkyDropdownItemComponent",
428
+ "kind": 128,
429
+ "kindString": "Class",
430
+ "flags": {},
431
+ "decorators": [
432
+ {
433
+ "name": "Component",
434
+ "type": {
435
+ "type": "reference",
436
+ "name": "Component"
437
+ },
438
+ "arguments": {
439
+ "obj": "{\n selector: 'sky-dropdown-item',\n templateUrl: './dropdown-item.component.html',\n styleUrls: ['./dropdown-item.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n}"
440
+ }
441
+ }
442
+ ],
443
+ "children": [
444
+ {
445
+ "id": 2,
446
+ "name": "constructor",
447
+ "kind": 512,
448
+ "kindString": "Constructor",
449
+ "flags": {
450
+ "isPublic": true
451
+ },
452
+ "sources": [
453
+ {
454
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
455
+ "line": 47,
456
+ "character": 2
457
+ }
458
+ ],
459
+ "signatures": [
460
+ {
461
+ "id": 3,
462
+ "name": "SkyDropdownItemComponent",
463
+ "kind": 16384,
464
+ "kindString": "Constructor signature",
465
+ "flags": {},
466
+ "parameters": [
467
+ {
468
+ "id": 4,
469
+ "name": "elementRef",
470
+ "kind": 32768,
471
+ "kindString": "Parameter",
472
+ "flags": {},
473
+ "type": {
474
+ "type": "reference",
475
+ "typeArguments": [
476
+ {
477
+ "type": "intrinsic",
478
+ "name": "any"
479
+ }
480
+ ],
481
+ "name": "ElementRef"
482
+ }
483
+ },
484
+ {
485
+ "id": 5,
486
+ "name": "changeDetector",
487
+ "kind": 32768,
488
+ "kindString": "Parameter",
489
+ "flags": {},
490
+ "type": {
491
+ "type": "reference",
492
+ "name": "ChangeDetectorRef"
493
+ }
494
+ },
495
+ {
496
+ "id": 6,
497
+ "name": "renderer",
498
+ "kind": 32768,
499
+ "kindString": "Parameter",
500
+ "flags": {},
501
+ "type": {
502
+ "type": "reference",
503
+ "name": "Renderer2"
504
+ }
505
+ }
506
+ ],
507
+ "type": {
508
+ "type": "reference",
509
+ "id": 1,
510
+ "name": "SkyDropdownItemComponent"
511
+ }
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ "id": 16,
517
+ "name": "elementRef",
518
+ "kind": 1024,
519
+ "kindString": "Property",
520
+ "flags": {
521
+ "isPublic": true
522
+ },
523
+ "type": {
524
+ "type": "reference",
525
+ "typeArguments": [
526
+ {
527
+ "type": "intrinsic",
528
+ "name": "any"
529
+ }
530
+ ],
531
+ "name": "ElementRef"
532
+ }
533
+ },
534
+ {
535
+ "id": 13,
536
+ "name": "isActive",
537
+ "kind": 1024,
538
+ "kindString": "Property",
539
+ "flags": {
540
+ "isPublic": true
541
+ },
542
+ "sources": [
543
+ {
544
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
545
+ "line": 41,
546
+ "character": 9
547
+ }
548
+ ],
549
+ "type": {
550
+ "type": "intrinsic",
551
+ "name": "boolean"
552
+ },
553
+ "defaultValue": "false"
554
+ },
555
+ {
556
+ "id": 14,
557
+ "name": "isDisabled",
558
+ "kind": 1024,
559
+ "kindString": "Property",
560
+ "flags": {
561
+ "isPublic": true
562
+ },
563
+ "sources": [
564
+ {
565
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
566
+ "line": 43,
567
+ "character": 9
568
+ }
569
+ ],
570
+ "type": {
571
+ "type": "intrinsic",
572
+ "name": "boolean"
573
+ },
574
+ "defaultValue": "false"
575
+ },
576
+ {
577
+ "id": 7,
578
+ "name": "ariaRole",
579
+ "kind": 262144,
580
+ "kindString": "Accessor",
581
+ "flags": {
582
+ "isPublic": true
583
+ },
584
+ "decorators": [
585
+ {
586
+ "name": "Input",
587
+ "type": {
588
+ "type": "reference",
589
+ "name": "Input"
590
+ },
591
+ "arguments": {}
592
+ }
593
+ ],
594
+ "sources": [
595
+ {
596
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
597
+ "line": 29,
598
+ "character": 13
599
+ }
600
+ ],
601
+ "getSignature": [
602
+ {
603
+ "id": 8,
604
+ "name": "ariaRole",
605
+ "kind": 524288,
606
+ "kindString": "Get signature",
607
+ "flags": {},
608
+ "comment": {
609
+ "shortText": "Specifies an ARIA role for the dropdown menu item\n[to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility)\nby indicating how the item functions and what it controls. For information about\nhow an ARIA role indicates what an item represents on a web page, see the\n[WAI-ARIA roles model](https://www.w3.org/WAI/PF/aria/roles)."
610
+ },
611
+ "type": {
612
+ "type": "intrinsic",
613
+ "name": "string"
614
+ }
615
+ }
616
+ ],
617
+ "setSignature": [
618
+ {
619
+ "id": 9,
620
+ "name": "ariaRole",
621
+ "kind": 1048576,
622
+ "kindString": "Set signature",
623
+ "flags": {},
624
+ "comment": {
625
+ "shortText": "Specifies an ARIA role for the dropdown menu item\n[to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility)\nby indicating how the item functions and what it controls. For information about\nhow an ARIA role indicates what an item represents on a web page, see the\n[WAI-ARIA roles model](https://www.w3.org/WAI/PF/aria/roles).",
626
+ "tags": [
627
+ {
628
+ "tag": "default",
629
+ "text": "\"menuitem\"\n"
630
+ }
631
+ ]
632
+ },
633
+ "parameters": [
634
+ {
635
+ "id": 10,
636
+ "name": "value",
637
+ "kind": 32768,
638
+ "kindString": "Parameter",
639
+ "flags": {},
640
+ "type": {
641
+ "type": "intrinsic",
642
+ "name": "string"
643
+ }
644
+ }
645
+ ],
646
+ "type": {
647
+ "type": "intrinsic",
648
+ "name": "void"
649
+ }
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "id": 11,
655
+ "name": "buttonElement",
656
+ "kind": 262144,
657
+ "kindString": "Accessor",
658
+ "flags": {
659
+ "isPublic": true
660
+ },
661
+ "sources": [
662
+ {
663
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
664
+ "line": 37,
665
+ "character": 13
666
+ }
667
+ ],
668
+ "getSignature": [
669
+ {
670
+ "id": 12,
671
+ "name": "buttonElement",
672
+ "kind": 524288,
673
+ "kindString": "Get signature",
674
+ "flags": {},
675
+ "type": {
676
+ "type": "reference",
677
+ "name": "HTMLButtonElement"
678
+ }
679
+ }
680
+ ]
681
+ },
682
+ {
683
+ "id": 19,
684
+ "name": "focusElement",
685
+ "kind": 2048,
686
+ "kindString": "Method",
687
+ "flags": {
688
+ "isPublic": true
689
+ },
690
+ "sources": [
691
+ {
692
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
693
+ "line": 66,
694
+ "character": 9
695
+ }
696
+ ],
697
+ "signatures": [
698
+ {
699
+ "id": 20,
700
+ "name": "focusElement",
701
+ "kind": 4096,
702
+ "kindString": "Call signature",
703
+ "flags": {},
704
+ "parameters": [
705
+ {
706
+ "id": 21,
707
+ "name": "enableNativeFocus",
708
+ "kind": 32768,
709
+ "kindString": "Parameter",
710
+ "flags": {},
711
+ "type": {
712
+ "type": "intrinsic",
713
+ "name": "boolean"
714
+ }
715
+ }
716
+ ],
717
+ "type": {
718
+ "type": "intrinsic",
719
+ "name": "void"
720
+ }
721
+ }
722
+ ]
723
+ },
724
+ {
725
+ "id": 22,
726
+ "name": "isFocusable",
727
+ "kind": 2048,
728
+ "kindString": "Method",
729
+ "flags": {
730
+ "isPublic": true
731
+ },
732
+ "sources": [
733
+ {
734
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
735
+ "line": 76,
736
+ "character": 9
737
+ }
738
+ ],
739
+ "signatures": [
740
+ {
741
+ "id": 23,
742
+ "name": "isFocusable",
743
+ "kind": 4096,
744
+ "kindString": "Call signature",
745
+ "flags": {},
746
+ "type": {
747
+ "type": "intrinsic",
748
+ "name": "boolean"
749
+ }
750
+ }
751
+ ]
752
+ },
753
+ {
754
+ "id": 17,
755
+ "name": "ngAfterViewInit",
756
+ "kind": 2048,
757
+ "kindString": "Method",
758
+ "flags": {
759
+ "isPublic": true
760
+ },
761
+ "sources": [
762
+ {
763
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
764
+ "line": 53,
765
+ "character": 9
766
+ }
767
+ ],
768
+ "signatures": [
769
+ {
770
+ "id": 18,
771
+ "name": "ngAfterViewInit",
772
+ "kind": 4096,
773
+ "kindString": "Call signature",
774
+ "flags": {},
775
+ "type": {
776
+ "type": "intrinsic",
777
+ "name": "void"
778
+ },
779
+ "implementationOf": {
780
+ "type": "reference",
781
+ "name": "AfterViewInit.ngAfterViewInit"
782
+ }
783
+ }
784
+ ],
785
+ "implementationOf": {
786
+ "type": "reference",
787
+ "name": "AfterViewInit.ngAfterViewInit"
788
+ }
789
+ },
790
+ {
791
+ "id": 24,
792
+ "name": "resetState",
793
+ "kind": 2048,
794
+ "kindString": "Method",
795
+ "flags": {
796
+ "isPublic": true
797
+ },
798
+ "sources": [
799
+ {
800
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
801
+ "line": 85,
802
+ "character": 9
803
+ }
804
+ ],
805
+ "signatures": [
806
+ {
807
+ "id": 25,
808
+ "name": "resetState",
809
+ "kind": 4096,
810
+ "kindString": "Call signature",
811
+ "flags": {},
812
+ "type": {
813
+ "type": "intrinsic",
814
+ "name": "void"
815
+ }
816
+ }
817
+ ]
818
+ }
819
+ ],
820
+ "groups": [
821
+ {
822
+ "title": "Constructors",
823
+ "kind": 512,
824
+ "children": [
825
+ 2
826
+ ]
827
+ },
828
+ {
829
+ "title": "Properties",
830
+ "kind": 1024,
831
+ "children": [
832
+ 16,
833
+ 13,
834
+ 14
835
+ ]
836
+ },
837
+ {
838
+ "title": "Accessors",
839
+ "kind": 262144,
840
+ "children": [
841
+ 7,
842
+ 11
843
+ ]
844
+ },
845
+ {
846
+ "title": "Methods",
847
+ "kind": 2048,
848
+ "children": [
849
+ 19,
850
+ 22,
851
+ 17,
852
+ 24
853
+ ]
854
+ }
855
+ ],
856
+ "sources": [
857
+ {
858
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
859
+ "line": 19,
860
+ "character": 13
861
+ }
862
+ ],
863
+ "implementedTypes": [
864
+ {
865
+ "type": "reference",
866
+ "name": "AfterViewInit"
867
+ }
868
+ ]
869
+ },
870
+ {
871
+ "id": 26,
872
+ "name": "SkyDropdownButtonComponent",
873
+ "kind": 128,
874
+ "kindString": "Class",
875
+ "flags": {},
876
+ "decorators": [
877
+ {
878
+ "name": "Component",
879
+ "type": {
880
+ "type": "reference",
881
+ "name": "Component"
882
+ },
883
+ "arguments": {
884
+ "obj": "{\n selector: 'sky-dropdown-button',\n templateUrl: './dropdown-button.component.html',\n}"
885
+ }
886
+ }
887
+ ],
888
+ "children": [
889
+ {
890
+ "id": 27,
891
+ "name": "constructor",
892
+ "kind": 512,
893
+ "kindString": "Constructor",
894
+ "flags": {},
895
+ "signatures": [
896
+ {
897
+ "id": 28,
898
+ "name": "SkyDropdownButtonComponent",
899
+ "kind": 16384,
900
+ "kindString": "Constructor signature",
901
+ "flags": {},
902
+ "type": {
903
+ "type": "reference",
904
+ "id": 26,
905
+ "name": "SkyDropdownButtonComponent"
906
+ }
907
+ }
908
+ ]
909
+ }
910
+ ],
911
+ "groups": [
912
+ {
913
+ "title": "Constructors",
914
+ "kind": 512,
915
+ "children": [
916
+ 27
917
+ ]
918
+ }
919
+ ],
920
+ "sources": [
921
+ {
922
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-button.component.ts",
923
+ "line": 7,
924
+ "character": 13
925
+ }
926
+ ]
927
+ },
928
+ {
929
+ "id": 29,
930
+ "name": "SkyDropdownComponent",
931
+ "kind": 128,
932
+ "kindString": "Class",
933
+ "flags": {},
934
+ "decorators": [
935
+ {
936
+ "name": "Component",
937
+ "type": {
938
+ "type": "reference",
939
+ "name": "Component"
940
+ },
941
+ "arguments": {
942
+ "obj": "{\n selector: 'sky-dropdown',\n templateUrl: './dropdown.component.html',\n styleUrls: ['./dropdown.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n}"
943
+ }
944
+ }
945
+ ],
946
+ "children": [
947
+ {
948
+ "id": 30,
949
+ "name": "constructor",
950
+ "kind": 512,
951
+ "kindString": "Constructor",
952
+ "flags": {},
953
+ "sources": [
954
+ {
955
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
956
+ "line": 229,
957
+ "character": 2
958
+ }
959
+ ],
960
+ "signatures": [
961
+ {
962
+ "id": 31,
963
+ "name": "SkyDropdownComponent",
964
+ "kind": 16384,
965
+ "kindString": "Constructor signature",
966
+ "flags": {},
967
+ "parameters": [
968
+ {
969
+ "id": 32,
970
+ "name": "changeDetector",
971
+ "kind": 32768,
972
+ "kindString": "Parameter",
973
+ "flags": {},
974
+ "type": {
975
+ "type": "reference",
976
+ "name": "ChangeDetectorRef"
977
+ }
978
+ },
979
+ {
980
+ "id": 33,
981
+ "name": "affixService",
982
+ "kind": 32768,
983
+ "kindString": "Parameter",
984
+ "flags": {},
985
+ "type": {
986
+ "type": "reference",
987
+ "name": "SkyAffixService"
988
+ }
989
+ },
990
+ {
991
+ "id": 34,
992
+ "name": "overlayService",
993
+ "kind": 32768,
994
+ "kindString": "Parameter",
995
+ "flags": {},
996
+ "type": {
997
+ "type": "reference",
998
+ "name": "SkyOverlayService"
999
+ }
1000
+ },
1001
+ {
1002
+ "id": 35,
1003
+ "name": "themeSvc",
1004
+ "kind": 32768,
1005
+ "kindString": "Parameter",
1006
+ "flags": {
1007
+ "isOptional": true
1008
+ },
1009
+ "decorators": [
1010
+ {
1011
+ "name": "Optional",
1012
+ "type": {
1013
+ "type": "reference",
1014
+ "name": "Optional"
1015
+ },
1016
+ "arguments": {}
1017
+ }
1018
+ ],
1019
+ "type": {
1020
+ "type": "reference",
1021
+ "name": "SkyThemeService"
1022
+ }
1023
+ }
1024
+ ],
1025
+ "type": {
1026
+ "type": "reference",
1027
+ "id": 29,
1028
+ "name": "SkyDropdownComponent"
1029
+ }
1030
+ }
1031
+ ]
1032
+ },
1033
+ {
1034
+ "id": 71,
1035
+ "name": "isMouseEnter",
1036
+ "kind": 1024,
1037
+ "kindString": "Property",
1038
+ "flags": {
1039
+ "isPublic": true
1040
+ },
1041
+ "sources": [
1042
+ {
1043
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1044
+ "line": 185,
1045
+ "character": 9
1046
+ }
1047
+ ],
1048
+ "type": {
1049
+ "type": "intrinsic",
1050
+ "name": "boolean"
1051
+ },
1052
+ "defaultValue": "false"
1053
+ },
1054
+ {
1055
+ "id": 72,
1056
+ "name": "isVisible",
1057
+ "kind": 1024,
1058
+ "kindString": "Property",
1059
+ "flags": {
1060
+ "isPublic": true
1061
+ },
1062
+ "sources": [
1063
+ {
1064
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1065
+ "line": 187,
1066
+ "character": 9
1067
+ }
1068
+ ],
1069
+ "type": {
1070
+ "type": "intrinsic",
1071
+ "name": "boolean"
1072
+ },
1073
+ "defaultValue": "false"
1074
+ },
1075
+ {
1076
+ "id": 52,
1077
+ "name": "label",
1078
+ "kind": 1024,
1079
+ "kindString": "Property",
1080
+ "flags": {
1081
+ "isPublic": true
1082
+ },
1083
+ "comment": {
1084
+ "shortText": "Specifies an ARIA label for the dropdown. This sets the dropdown's `aria-label` attribute\n[to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility)."
1085
+ },
1086
+ "decorators": [
1087
+ {
1088
+ "name": "Input",
1089
+ "type": {
1090
+ "type": "reference",
1091
+ "name": "Input"
1092
+ },
1093
+ "arguments": {}
1094
+ }
1095
+ ],
1096
+ "sources": [
1097
+ {
1098
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1099
+ "line": 112,
1100
+ "character": 9
1101
+ }
1102
+ ],
1103
+ "type": {
1104
+ "type": "intrinsic",
1105
+ "name": "string"
1106
+ }
1107
+ },
1108
+ {
1109
+ "id": 74,
1110
+ "name": "menuAriaRole",
1111
+ "kind": 1024,
1112
+ "kindString": "Property",
1113
+ "flags": {
1114
+ "isPublic": true
1115
+ },
1116
+ "sources": [
1117
+ {
1118
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1119
+ "line": 191,
1120
+ "character": 9
1121
+ }
1122
+ ],
1123
+ "type": {
1124
+ "type": "intrinsic",
1125
+ "name": "string"
1126
+ }
1127
+ },
1128
+ {
1129
+ "id": 73,
1130
+ "name": "menuId",
1131
+ "kind": 1024,
1132
+ "kindString": "Property",
1133
+ "flags": {
1134
+ "isPublic": true
1135
+ },
1136
+ "sources": [
1137
+ {
1138
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1139
+ "line": 189,
1140
+ "character": 9
1141
+ }
1142
+ ],
1143
+ "type": {
1144
+ "type": "intrinsic",
1145
+ "name": "string"
1146
+ }
1147
+ },
1148
+ {
1149
+ "id": 57,
1150
+ "name": "messageStream",
1151
+ "kind": 1024,
1152
+ "kindString": "Property",
1153
+ "flags": {
1154
+ "isPublic": true
1155
+ },
1156
+ "comment": {
1157
+ "shortText": "Provides an observable to send commands to the dropdown. The commands should respect\nthe [[SkyDropdownMessage]] type."
1158
+ },
1159
+ "decorators": [
1160
+ {
1161
+ "name": "Input",
1162
+ "type": {
1163
+ "type": "reference",
1164
+ "name": "Input"
1165
+ },
1166
+ "arguments": {}
1167
+ }
1168
+ ],
1169
+ "sources": [
1170
+ {
1171
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1172
+ "line": 133,
1173
+ "character": 9
1174
+ }
1175
+ ],
1176
+ "type": {
1177
+ "type": "reference",
1178
+ "typeArguments": [
1179
+ {
1180
+ "type": "reference",
1181
+ "id": 322,
1182
+ "name": "SkyDropdownMessage"
1183
+ }
1184
+ ],
1185
+ "name": "Subject"
1186
+ },
1187
+ "defaultValue": "..."
1188
+ },
1189
+ {
1190
+ "id": 58,
1191
+ "name": "title",
1192
+ "kind": 1024,
1193
+ "kindString": "Property",
1194
+ "flags": {
1195
+ "isPublic": true
1196
+ },
1197
+ "comment": {
1198
+ "shortText": "Specifies a title to display in a tooltip when users hover the mouse over the dropdown button."
1199
+ },
1200
+ "decorators": [
1201
+ {
1202
+ "name": "Input",
1203
+ "type": {
1204
+ "type": "reference",
1205
+ "name": "Input"
1206
+ },
1207
+ "arguments": {}
1208
+ }
1209
+ ],
1210
+ "sources": [
1211
+ {
1212
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1213
+ "line": 139,
1214
+ "character": 9
1215
+ }
1216
+ ],
1217
+ "type": {
1218
+ "type": "intrinsic",
1219
+ "name": "string"
1220
+ }
1221
+ },
1222
+ {
1223
+ "id": 36,
1224
+ "name": "buttonStyle",
1225
+ "kind": 262144,
1226
+ "kindString": "Accessor",
1227
+ "flags": {
1228
+ "isPublic": true
1229
+ },
1230
+ "decorators": [
1231
+ {
1232
+ "name": "Input",
1233
+ "type": {
1234
+ "type": "reference",
1235
+ "name": "Input"
1236
+ },
1237
+ "arguments": {}
1238
+ }
1239
+ ],
1240
+ "sources": [
1241
+ {
1242
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1243
+ "line": 52,
1244
+ "character": 13
1245
+ }
1246
+ ],
1247
+ "getSignature": [
1248
+ {
1249
+ "id": 37,
1250
+ "name": "buttonStyle",
1251
+ "kind": 524288,
1252
+ "kindString": "Get signature",
1253
+ "flags": {},
1254
+ "comment": {
1255
+ "shortText": "Specifies a background color for the dropdown button. Available values are `default` and\n`primary`. These values set the background color from the\n[secondary and primary button classes](https://developer.blackbaud.com/skyux/components/button) respectively."
1256
+ },
1257
+ "type": {
1258
+ "type": "intrinsic",
1259
+ "name": "string"
1260
+ }
1261
+ }
1262
+ ],
1263
+ "setSignature": [
1264
+ {
1265
+ "id": 38,
1266
+ "name": "buttonStyle",
1267
+ "kind": 1048576,
1268
+ "kindString": "Set signature",
1269
+ "flags": {},
1270
+ "comment": {
1271
+ "shortText": "Specifies a background color for the dropdown button. Available values are `default` and\n`primary`. These values set the background color from the\n[secondary and primary button classes](https://developer.blackbaud.com/skyux/components/button) respectively.",
1272
+ "tags": [
1273
+ {
1274
+ "tag": "default",
1275
+ "text": "\"default\"\n"
1276
+ }
1277
+ ]
1278
+ },
1279
+ "parameters": [
1280
+ {
1281
+ "id": 39,
1282
+ "name": "value",
1283
+ "kind": 32768,
1284
+ "kindString": "Parameter",
1285
+ "flags": {},
1286
+ "type": {
1287
+ "type": "intrinsic",
1288
+ "name": "string"
1289
+ }
1290
+ }
1291
+ ],
1292
+ "type": {
1293
+ "type": "intrinsic",
1294
+ "name": "void"
1295
+ }
1296
+ }
1297
+ ]
1298
+ },
1299
+ {
1300
+ "id": 40,
1301
+ "name": "buttonType",
1302
+ "kind": 262144,
1303
+ "kindString": "Accessor",
1304
+ "flags": {
1305
+ "isPublic": true
1306
+ },
1307
+ "decorators": [
1308
+ {
1309
+ "name": "Input",
1310
+ "type": {
1311
+ "type": "reference",
1312
+ "name": "Input"
1313
+ },
1314
+ "arguments": {}
1315
+ }
1316
+ ],
1317
+ "sources": [
1318
+ {
1319
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1320
+ "line": 69,
1321
+ "character": 13
1322
+ }
1323
+ ],
1324
+ "getSignature": [
1325
+ {
1326
+ "id": 41,
1327
+ "name": "buttonType",
1328
+ "kind": 524288,
1329
+ "kindString": "Get signature",
1330
+ "flags": {},
1331
+ "comment": {
1332
+ "shortText": "Specifies the type of button to render as the dropdown's trigger element. To display a button\nwith text and a caret, specify `select` and then enter the button text in a\n`sky-dropdown-button` element. To display a round button with an ellipsis, specify\n`context-menu`. And to display a button with a [Font Awesome icon](http://fontawesome.io/icons/), specify the icon's class name.\nFor example, to display the `fa-filter` icon, specify `filter`."
1333
+ },
1334
+ "type": {
1335
+ "type": "intrinsic",
1336
+ "name": "string"
1337
+ }
1338
+ }
1339
+ ],
1340
+ "setSignature": [
1341
+ {
1342
+ "id": 42,
1343
+ "name": "buttonType",
1344
+ "kind": 1048576,
1345
+ "kindString": "Set signature",
1346
+ "flags": {},
1347
+ "comment": {
1348
+ "shortText": "Specifies the type of button to render as the dropdown's trigger element. To display a button\nwith text and a caret, specify `select` and then enter the button text in a\n`sky-dropdown-button` element. To display a round button with an ellipsis, specify\n`context-menu`. And to display a button with a [Font Awesome icon](http://fontawesome.io/icons/), specify the icon's class name.\nFor example, to display the `fa-filter` icon, specify `filter`.",
1349
+ "tags": [
1350
+ {
1351
+ "tag": "default",
1352
+ "text": "\"select\"\n"
1353
+ }
1354
+ ]
1355
+ },
1356
+ "parameters": [
1357
+ {
1358
+ "id": 43,
1359
+ "name": "value",
1360
+ "kind": 32768,
1361
+ "kindString": "Parameter",
1362
+ "flags": {},
1363
+ "type": {
1364
+ "type": "intrinsic",
1365
+ "name": "string"
1366
+ }
1367
+ }
1368
+ ],
1369
+ "type": {
1370
+ "type": "intrinsic",
1371
+ "name": "void"
1372
+ }
1373
+ }
1374
+ ]
1375
+ },
1376
+ {
1377
+ "id": 44,
1378
+ "name": "disabled",
1379
+ "kind": 262144,
1380
+ "kindString": "Accessor",
1381
+ "flags": {
1382
+ "isPublic": true
1383
+ },
1384
+ "decorators": [
1385
+ {
1386
+ "name": "Input",
1387
+ "type": {
1388
+ "type": "reference",
1389
+ "name": "Input"
1390
+ },
1391
+ "arguments": {}
1392
+ }
1393
+ ],
1394
+ "sources": [
1395
+ {
1396
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1397
+ "line": 82,
1398
+ "character": 13
1399
+ }
1400
+ ],
1401
+ "getSignature": [
1402
+ {
1403
+ "id": 45,
1404
+ "name": "disabled",
1405
+ "kind": 524288,
1406
+ "kindString": "Get signature",
1407
+ "flags": {},
1408
+ "comment": {
1409
+ "shortText": "Indicates whether to disable the dropdown button."
1410
+ },
1411
+ "type": {
1412
+ "type": "intrinsic",
1413
+ "name": "boolean"
1414
+ }
1415
+ }
1416
+ ],
1417
+ "setSignature": [
1418
+ {
1419
+ "id": 46,
1420
+ "name": "disabled",
1421
+ "kind": 1048576,
1422
+ "kindString": "Set signature",
1423
+ "flags": {},
1424
+ "comment": {
1425
+ "shortText": "Indicates whether to disable the dropdown button.",
1426
+ "tags": [
1427
+ {
1428
+ "tag": "default",
1429
+ "text": "false\n"
1430
+ }
1431
+ ]
1432
+ },
1433
+ "parameters": [
1434
+ {
1435
+ "id": 47,
1436
+ "name": "value",
1437
+ "kind": 32768,
1438
+ "kindString": "Parameter",
1439
+ "flags": {},
1440
+ "type": {
1441
+ "type": "intrinsic",
1442
+ "name": "boolean"
1443
+ }
1444
+ }
1445
+ ],
1446
+ "type": {
1447
+ "type": "intrinsic",
1448
+ "name": "void"
1449
+ }
1450
+ }
1451
+ ]
1452
+ },
1453
+ {
1454
+ "id": 48,
1455
+ "name": "dismissOnBlur",
1456
+ "kind": 262144,
1457
+ "kindString": "Accessor",
1458
+ "flags": {
1459
+ "isPublic": true
1460
+ },
1461
+ "decorators": [
1462
+ {
1463
+ "name": "Input",
1464
+ "type": {
1465
+ "type": "reference",
1466
+ "name": "Input"
1467
+ },
1468
+ "arguments": {}
1469
+ }
1470
+ ],
1471
+ "sources": [
1472
+ {
1473
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1474
+ "line": 95,
1475
+ "character": 13
1476
+ }
1477
+ ],
1478
+ "getSignature": [
1479
+ {
1480
+ "id": 49,
1481
+ "name": "dismissOnBlur",
1482
+ "kind": 524288,
1483
+ "kindString": "Get signature",
1484
+ "flags": {},
1485
+ "comment": {
1486
+ "shortText": "Indicates whether to close the dropdown when users click away from the menu."
1487
+ },
1488
+ "type": {
1489
+ "type": "intrinsic",
1490
+ "name": "boolean"
1491
+ }
1492
+ }
1493
+ ],
1494
+ "setSignature": [
1495
+ {
1496
+ "id": 50,
1497
+ "name": "dismissOnBlur",
1498
+ "kind": 1048576,
1499
+ "kindString": "Set signature",
1500
+ "flags": {},
1501
+ "comment": {
1502
+ "shortText": "Indicates whether to close the dropdown when users click away from the menu.",
1503
+ "tags": [
1504
+ {
1505
+ "tag": "default",
1506
+ "text": "true\n"
1507
+ }
1508
+ ]
1509
+ },
1510
+ "parameters": [
1511
+ {
1512
+ "id": 51,
1513
+ "name": "value",
1514
+ "kind": 32768,
1515
+ "kindString": "Parameter",
1516
+ "flags": {},
1517
+ "type": {
1518
+ "type": "intrinsic",
1519
+ "name": "boolean"
1520
+ }
1521
+ }
1522
+ ],
1523
+ "type": {
1524
+ "type": "intrinsic",
1525
+ "name": "void"
1526
+ }
1527
+ }
1528
+ ]
1529
+ },
1530
+ {
1531
+ "id": 53,
1532
+ "name": "horizontalAlignment",
1533
+ "kind": 262144,
1534
+ "kindString": "Accessor",
1535
+ "flags": {
1536
+ "isPublic": true
1537
+ },
1538
+ "decorators": [
1539
+ {
1540
+ "name": "Input",
1541
+ "type": {
1542
+ "type": "reference",
1543
+ "name": "Input"
1544
+ },
1545
+ "arguments": {}
1546
+ }
1547
+ ],
1548
+ "sources": [
1549
+ {
1550
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1551
+ "line": 119,
1552
+ "character": 13
1553
+ }
1554
+ ],
1555
+ "getSignature": [
1556
+ {
1557
+ "id": 54,
1558
+ "name": "horizontalAlignment",
1559
+ "kind": 524288,
1560
+ "kindString": "Get signature",
1561
+ "flags": {},
1562
+ "comment": {
1563
+ "shortText": "Specifies the horizontal alignment of the dropdown menu in relation to the dropdown button."
1564
+ },
1565
+ "type": {
1566
+ "type": "reference",
1567
+ "name": "SkyAffixHorizontalAlignment"
1568
+ }
1569
+ }
1570
+ ],
1571
+ "setSignature": [
1572
+ {
1573
+ "id": 55,
1574
+ "name": "horizontalAlignment",
1575
+ "kind": 1048576,
1576
+ "kindString": "Set signature",
1577
+ "flags": {},
1578
+ "comment": {
1579
+ "shortText": "Specifies the horizontal alignment of the dropdown menu in relation to the dropdown button.",
1580
+ "tags": [
1581
+ {
1582
+ "tag": "default",
1583
+ "text": "\"left\"\n"
1584
+ }
1585
+ ]
1586
+ },
1587
+ "parameters": [
1588
+ {
1589
+ "id": 56,
1590
+ "name": "value",
1591
+ "kind": 32768,
1592
+ "kindString": "Parameter",
1593
+ "flags": {},
1594
+ "type": {
1595
+ "type": "reference",
1596
+ "name": "SkyAffixHorizontalAlignment"
1597
+ }
1598
+ }
1599
+ ],
1600
+ "type": {
1601
+ "type": "intrinsic",
1602
+ "name": "void"
1603
+ }
1604
+ }
1605
+ ]
1606
+ },
1607
+ {
1608
+ "id": 63,
1609
+ "name": "isOpen",
1610
+ "kind": 262144,
1611
+ "kindString": "Accessor",
1612
+ "flags": {
1613
+ "isPublic": true
1614
+ },
1615
+ "sources": [
1616
+ {
1617
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1618
+ "line": 160,
1619
+ "character": 13
1620
+ }
1621
+ ],
1622
+ "getSignature": [
1623
+ {
1624
+ "id": 64,
1625
+ "name": "isOpen",
1626
+ "kind": 524288,
1627
+ "kindString": "Get signature",
1628
+ "flags": {},
1629
+ "type": {
1630
+ "type": "intrinsic",
1631
+ "name": "boolean"
1632
+ }
1633
+ }
1634
+ ],
1635
+ "setSignature": [
1636
+ {
1637
+ "id": 65,
1638
+ "name": "isOpen",
1639
+ "kind": 1048576,
1640
+ "kindString": "Set signature",
1641
+ "flags": {},
1642
+ "parameters": [
1643
+ {
1644
+ "id": 66,
1645
+ "name": "value",
1646
+ "kind": 32768,
1647
+ "kindString": "Parameter",
1648
+ "flags": {},
1649
+ "type": {
1650
+ "type": "intrinsic",
1651
+ "name": "boolean"
1652
+ }
1653
+ }
1654
+ ],
1655
+ "type": {
1656
+ "type": "intrinsic",
1657
+ "name": "void"
1658
+ }
1659
+ }
1660
+ ]
1661
+ },
1662
+ {
1663
+ "id": 67,
1664
+ "name": "menuContainerElementRef",
1665
+ "kind": 262144,
1666
+ "kindString": "Accessor",
1667
+ "flags": {
1668
+ "isPublic": true
1669
+ },
1670
+ "decorators": [
1671
+ {
1672
+ "name": "ViewChild",
1673
+ "type": {
1674
+ "type": "reference",
1675
+ "name": "ViewChild"
1676
+ },
1677
+ "arguments": {
1678
+ "selector": "'menuContainerElementRef'",
1679
+ "opts": "{\n read: ElementRef,\n }"
1680
+ }
1681
+ }
1682
+ ],
1683
+ "sources": [
1684
+ {
1685
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1686
+ "line": 172,
1687
+ "character": 13
1688
+ }
1689
+ ],
1690
+ "getSignature": [
1691
+ {
1692
+ "id": 68,
1693
+ "name": "menuContainerElementRef",
1694
+ "kind": 524288,
1695
+ "kindString": "Get signature",
1696
+ "flags": {},
1697
+ "type": {
1698
+ "type": "reference",
1699
+ "typeArguments": [
1700
+ {
1701
+ "type": "intrinsic",
1702
+ "name": "any"
1703
+ }
1704
+ ],
1705
+ "name": "ElementRef"
1706
+ }
1707
+ }
1708
+ ],
1709
+ "setSignature": [
1710
+ {
1711
+ "id": 69,
1712
+ "name": "menuContainerElementRef",
1713
+ "kind": 1048576,
1714
+ "kindString": "Set signature",
1715
+ "flags": {},
1716
+ "parameters": [
1717
+ {
1718
+ "id": 70,
1719
+ "name": "value",
1720
+ "kind": 32768,
1721
+ "kindString": "Parameter",
1722
+ "flags": {},
1723
+ "type": {
1724
+ "type": "reference",
1725
+ "typeArguments": [
1726
+ {
1727
+ "type": "intrinsic",
1728
+ "name": "any"
1729
+ }
1730
+ ],
1731
+ "name": "ElementRef"
1732
+ }
1733
+ }
1734
+ ],
1735
+ "type": {
1736
+ "type": "intrinsic",
1737
+ "name": "void"
1738
+ }
1739
+ }
1740
+ ]
1741
+ },
1742
+ {
1743
+ "id": 59,
1744
+ "name": "trigger",
1745
+ "kind": 262144,
1746
+ "kindString": "Accessor",
1747
+ "flags": {
1748
+ "isPublic": true
1749
+ },
1750
+ "decorators": [
1751
+ {
1752
+ "name": "Input",
1753
+ "type": {
1754
+ "type": "reference",
1755
+ "name": "Input"
1756
+ },
1757
+ "arguments": {}
1758
+ }
1759
+ ],
1760
+ "sources": [
1761
+ {
1762
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1763
+ "line": 152,
1764
+ "character": 13
1765
+ }
1766
+ ],
1767
+ "getSignature": [
1768
+ {
1769
+ "id": 60,
1770
+ "name": "trigger",
1771
+ "kind": 524288,
1772
+ "kindString": "Get signature",
1773
+ "flags": {},
1774
+ "comment": {
1775
+ "shortText": "Specifies how users interact with the dropdown button to expose the dropdown menu.\nWe recommend the default `click` value because the `hover` value can pose\n[accessibility](https://developer.blackbaud.com/skyux/learn/accessibility) issues\nfor users on touch devices such as phones and tablets."
1776
+ },
1777
+ "type": {
1778
+ "type": "reference",
1779
+ "id": 333,
1780
+ "name": "SkyDropdownTriggerType"
1781
+ }
1782
+ }
1783
+ ],
1784
+ "setSignature": [
1785
+ {
1786
+ "id": 61,
1787
+ "name": "trigger",
1788
+ "kind": 1048576,
1789
+ "kindString": "Set signature",
1790
+ "flags": {},
1791
+ "comment": {
1792
+ "shortText": "Specifies how users interact with the dropdown button to expose the dropdown menu.\nWe recommend the default `click` value because the `hover` value can pose\n[accessibility](https://developer.blackbaud.com/skyux/learn/accessibility) issues\nfor users on touch devices such as phones and tablets.",
1793
+ "tags": [
1794
+ {
1795
+ "tag": "deprecated",
1796
+ "text": "We recommend against using this property. If you choose to use the deprecated\n`hover` value anyway, we recommend that you not use it in combination with the `title`\nproperty. (This property will be removed in the next major version release.)"
1797
+ },
1798
+ {
1799
+ "tag": "default",
1800
+ "text": "\"click\"\n"
1801
+ }
1802
+ ]
1803
+ },
1804
+ "parameters": [
1805
+ {
1806
+ "id": 62,
1807
+ "name": "value",
1808
+ "kind": 32768,
1809
+ "kindString": "Parameter",
1810
+ "flags": {},
1811
+ "type": {
1812
+ "type": "reference",
1813
+ "id": 333,
1814
+ "name": "SkyDropdownTriggerType"
1815
+ }
1816
+ }
1817
+ ],
1818
+ "type": {
1819
+ "type": "intrinsic",
1820
+ "name": "void"
1821
+ }
1822
+ }
1823
+ ]
1824
+ },
1825
+ {
1826
+ "id": 91,
1827
+ "name": "ngOnDestroy",
1828
+ "kind": 2048,
1829
+ "kindString": "Method",
1830
+ "flags": {
1831
+ "isPublic": true
1832
+ },
1833
+ "sources": [
1834
+ {
1835
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1836
+ "line": 253,
1837
+ "character": 9
1838
+ }
1839
+ ],
1840
+ "signatures": [
1841
+ {
1842
+ "id": 92,
1843
+ "name": "ngOnDestroy",
1844
+ "kind": 4096,
1845
+ "kindString": "Call signature",
1846
+ "flags": {},
1847
+ "type": {
1848
+ "type": "intrinsic",
1849
+ "name": "void"
1850
+ },
1851
+ "implementationOf": {
1852
+ "type": "reference",
1853
+ "name": "OnDestroy.ngOnDestroy"
1854
+ }
1855
+ }
1856
+ ],
1857
+ "implementationOf": {
1858
+ "type": "reference",
1859
+ "name": "OnDestroy.ngOnDestroy"
1860
+ }
1861
+ },
1862
+ {
1863
+ "id": 89,
1864
+ "name": "ngOnInit",
1865
+ "kind": 2048,
1866
+ "kindString": "Method",
1867
+ "flags": {
1868
+ "isPublic": true
1869
+ },
1870
+ "sources": [
1871
+ {
1872
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1873
+ "line": 236,
1874
+ "character": 9
1875
+ }
1876
+ ],
1877
+ "signatures": [
1878
+ {
1879
+ "id": 90,
1880
+ "name": "ngOnInit",
1881
+ "kind": 4096,
1882
+ "kindString": "Call signature",
1883
+ "flags": {},
1884
+ "type": {
1885
+ "type": "intrinsic",
1886
+ "name": "void"
1887
+ },
1888
+ "implementationOf": {
1889
+ "type": "reference",
1890
+ "name": "OnInit.ngOnInit"
1891
+ }
1892
+ }
1893
+ ],
1894
+ "implementationOf": {
1895
+ "type": "reference",
1896
+ "name": "OnInit.ngOnInit"
1897
+ }
1898
+ }
1899
+ ],
1900
+ "groups": [
1901
+ {
1902
+ "title": "Constructors",
1903
+ "kind": 512,
1904
+ "children": [
1905
+ 30
1906
+ ]
1907
+ },
1908
+ {
1909
+ "title": "Properties",
1910
+ "kind": 1024,
1911
+ "children": [
1912
+ 71,
1913
+ 72,
1914
+ 52,
1915
+ 74,
1916
+ 73,
1917
+ 57,
1918
+ 58
1919
+ ]
1920
+ },
1921
+ {
1922
+ "title": "Accessors",
1923
+ "kind": 262144,
1924
+ "children": [
1925
+ 36,
1926
+ 40,
1927
+ 44,
1928
+ 48,
1929
+ 53,
1930
+ 63,
1931
+ 67,
1932
+ 59
1933
+ ]
1934
+ },
1935
+ {
1936
+ "title": "Methods",
1937
+ "kind": 2048,
1938
+ "children": [
1939
+ 91,
1940
+ 89
1941
+ ]
1942
+ }
1943
+ ],
1944
+ "sources": [
1945
+ {
1946
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1947
+ "line": 44,
1948
+ "character": 13
1949
+ }
1950
+ ],
1951
+ "implementedTypes": [
1952
+ {
1953
+ "type": "reference",
1954
+ "name": "OnInit"
1955
+ },
1956
+ {
1957
+ "type": "reference",
1958
+ "name": "OnDestroy"
1959
+ }
1960
+ ]
1961
+ },
1962
+ {
1963
+ "id": 111,
1964
+ "name": "SkyDropdownMenuComponent",
1965
+ "kind": 128,
1966
+ "kindString": "Class",
1967
+ "flags": {},
1968
+ "decorators": [
1969
+ {
1970
+ "name": "Component",
1971
+ "type": {
1972
+ "type": "reference",
1973
+ "name": "Component"
1974
+ },
1975
+ "arguments": {
1976
+ "obj": "{\n selector: 'sky-dropdown-menu',\n templateUrl: './dropdown-menu.component.html',\n styleUrls: ['./dropdown-menu.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n}"
1977
+ }
1978
+ }
1979
+ ],
1980
+ "children": [
1981
+ {
1982
+ "id": 112,
1983
+ "name": "constructor",
1984
+ "kind": 512,
1985
+ "kindString": "Constructor",
1986
+ "flags": {},
1987
+ "sources": [
1988
+ {
1989
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
1990
+ "line": 129,
1991
+ "character": 2
1992
+ }
1993
+ ],
1994
+ "signatures": [
1995
+ {
1996
+ "id": 113,
1997
+ "name": "SkyDropdownMenuComponent",
1998
+ "kind": 16384,
1999
+ "kindString": "Constructor signature",
2000
+ "flags": {},
2001
+ "parameters": [
2002
+ {
2003
+ "id": 114,
2004
+ "name": "changeDetector",
2005
+ "kind": 32768,
2006
+ "kindString": "Parameter",
2007
+ "flags": {},
2008
+ "type": {
2009
+ "type": "reference",
2010
+ "name": "ChangeDetectorRef"
2011
+ }
2012
+ },
2013
+ {
2014
+ "id": 115,
2015
+ "name": "elementRef",
2016
+ "kind": 32768,
2017
+ "kindString": "Parameter",
2018
+ "flags": {},
2019
+ "type": {
2020
+ "type": "reference",
2021
+ "typeArguments": [
2022
+ {
2023
+ "type": "intrinsic",
2024
+ "name": "any"
2025
+ }
2026
+ ],
2027
+ "name": "ElementRef"
2028
+ }
2029
+ },
2030
+ {
2031
+ "id": 116,
2032
+ "name": "dropdownComponent",
2033
+ "kind": 32768,
2034
+ "kindString": "Parameter",
2035
+ "flags": {},
2036
+ "decorators": [
2037
+ {
2038
+ "name": "Optional",
2039
+ "type": {
2040
+ "type": "reference",
2041
+ "name": "Optional"
2042
+ },
2043
+ "arguments": {}
2044
+ }
2045
+ ],
2046
+ "type": {
2047
+ "type": "reference",
2048
+ "id": 29,
2049
+ "name": "SkyDropdownComponent"
2050
+ }
2051
+ }
2052
+ ],
2053
+ "type": {
2054
+ "type": "reference",
2055
+ "id": 111,
2056
+ "name": "SkyDropdownMenuComponent"
2057
+ }
2058
+ }
2059
+ ]
2060
+ },
2061
+ {
2062
+ "id": 117,
2063
+ "name": "ariaLabelledBy",
2064
+ "kind": 1024,
2065
+ "kindString": "Property",
2066
+ "flags": {
2067
+ "isPublic": true
2068
+ },
2069
+ "comment": {
2070
+ "shortText": "Specifies the HTML element ID (without the leading `#`) of the element that labels\nthe dropdown menu. This sets the dropdown menu's `aria-labelledby` attribute\n[to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility)."
2071
+ },
2072
+ "decorators": [
2073
+ {
2074
+ "name": "Input",
2075
+ "type": {
2076
+ "type": "reference",
2077
+ "name": "Input"
2078
+ },
2079
+ "arguments": {}
2080
+ }
2081
+ ],
2082
+ "sources": [
2083
+ {
2084
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2085
+ "line": 47,
2086
+ "character": 9
2087
+ }
2088
+ ],
2089
+ "type": {
2090
+ "type": "intrinsic",
2091
+ "name": "string"
2092
+ }
2093
+ },
2094
+ {
2095
+ "id": 127,
2096
+ "name": "dropdownMenuId",
2097
+ "kind": 1024,
2098
+ "kindString": "Property",
2099
+ "flags": {
2100
+ "isPublic": true
2101
+ },
2102
+ "sources": [
2103
+ {
2104
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2105
+ "line": 95,
2106
+ "character": 9
2107
+ }
2108
+ ],
2109
+ "type": {
2110
+ "type": "intrinsic",
2111
+ "name": "string"
2112
+ },
2113
+ "defaultValue": "..."
2114
+ },
2115
+ {
2116
+ "id": 126,
2117
+ "name": "menuChanges",
2118
+ "kind": 1024,
2119
+ "kindString": "Property",
2120
+ "flags": {
2121
+ "isPublic": true
2122
+ },
2123
+ "comment": {
2124
+ "shortText": "Fires when the dropdown menu's active index or selected item changes. This event provides an\nobservable to emit changes, and the response is of\nthe SkyDropdownMenuChange type."
2125
+ },
2126
+ "decorators": [
2127
+ {
2128
+ "name": "Output",
2129
+ "type": {
2130
+ "type": "reference",
2131
+ "name": "Output"
2132
+ },
2133
+ "arguments": {}
2134
+ }
2135
+ ],
2136
+ "sources": [
2137
+ {
2138
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2139
+ "line": 93,
2140
+ "character": 9
2141
+ }
2142
+ ],
2143
+ "type": {
2144
+ "type": "reference",
2145
+ "typeArguments": [
2146
+ {
2147
+ "type": "reference",
2148
+ "id": 318,
2149
+ "name": "SkyDropdownMenuChange"
2150
+ }
2151
+ ],
2152
+ "name": "EventEmitter"
2153
+ },
2154
+ "defaultValue": "..."
2155
+ },
2156
+ {
2157
+ "id": 134,
2158
+ "name": "menuItems",
2159
+ "kind": 1024,
2160
+ "kindString": "Property",
2161
+ "flags": {
2162
+ "isPublic": true
2163
+ },
2164
+ "decorators": [
2165
+ {
2166
+ "name": "ContentChildren",
2167
+ "type": {
2168
+ "type": "reference",
2169
+ "name": "ContentChildren"
2170
+ },
2171
+ "arguments": {
2172
+ "selector": "SkyDropdownItemComponent",
2173
+ "opts": "{ descendants: true }"
2174
+ }
2175
+ }
2176
+ ],
2177
+ "sources": [
2178
+ {
2179
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2180
+ "line": 119,
2181
+ "character": 9
2182
+ }
2183
+ ],
2184
+ "type": {
2185
+ "type": "reference",
2186
+ "typeArguments": [
2187
+ {
2188
+ "type": "reference",
2189
+ "id": 1,
2190
+ "name": "SkyDropdownItemComponent"
2191
+ }
2192
+ ],
2193
+ "name": "QueryList"
2194
+ }
2195
+ },
2196
+ {
2197
+ "id": 118,
2198
+ "name": "ariaRole",
2199
+ "kind": 262144,
2200
+ "kindString": "Accessor",
2201
+ "flags": {
2202
+ "isPublic": true
2203
+ },
2204
+ "decorators": [
2205
+ {
2206
+ "name": "Input",
2207
+ "type": {
2208
+ "type": "reference",
2209
+ "name": "Input"
2210
+ },
2211
+ "arguments": {}
2212
+ }
2213
+ ],
2214
+ "sources": [
2215
+ {
2216
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2217
+ "line": 59,
2218
+ "character": 13
2219
+ }
2220
+ ],
2221
+ "getSignature": [
2222
+ {
2223
+ "id": 119,
2224
+ "name": "ariaRole",
2225
+ "kind": 524288,
2226
+ "kindString": "Get signature",
2227
+ "flags": {},
2228
+ "comment": {
2229
+ "shortText": "Specifies an ARIA role for the dropdown menu\n[to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility)\nby indicating how the dropdown menu functions and what it controls. The dropdown button\ninherits this value to set its `aria-haspopup` property. For information\nabout how an ARIA role indicates what an item represents on a web page, see the\n[WAI-ARIA roles model](https://www.w3.org/WAI/PF/aria/roles)."
2230
+ },
2231
+ "type": {
2232
+ "type": "intrinsic",
2233
+ "name": "string"
2234
+ }
2235
+ }
2236
+ ],
2237
+ "setSignature": [
2238
+ {
2239
+ "id": 120,
2240
+ "name": "ariaRole",
2241
+ "kind": 1048576,
2242
+ "kindString": "Set signature",
2243
+ "flags": {},
2244
+ "comment": {
2245
+ "shortText": "Specifies an ARIA role for the dropdown menu\n[to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility)\nby indicating how the dropdown menu functions and what it controls. The dropdown button\ninherits this value to set its `aria-haspopup` property. For information\nabout how an ARIA role indicates what an item represents on a web page, see the\n[WAI-ARIA roles model](https://www.w3.org/WAI/PF/aria/roles).",
2246
+ "tags": [
2247
+ {
2248
+ "tag": "default",
2249
+ "text": "\"menu\"\n"
2250
+ }
2251
+ ]
2252
+ },
2253
+ "parameters": [
2254
+ {
2255
+ "id": 121,
2256
+ "name": "value",
2257
+ "kind": 32768,
2258
+ "kindString": "Parameter",
2259
+ "flags": {},
2260
+ "type": {
2261
+ "type": "intrinsic",
2262
+ "name": "string"
2263
+ }
2264
+ }
2265
+ ],
2266
+ "type": {
2267
+ "type": "intrinsic",
2268
+ "name": "void"
2269
+ }
2270
+ }
2271
+ ]
2272
+ },
2273
+ {
2274
+ "id": 130,
2275
+ "name": "menuIndex",
2276
+ "kind": 262144,
2277
+ "kindString": "Accessor",
2278
+ "flags": {
2279
+ "isPublic": true
2280
+ },
2281
+ "sources": [
2282
+ {
2283
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2284
+ "line": 102,
2285
+ "character": 13
2286
+ }
2287
+ ],
2288
+ "getSignature": [
2289
+ {
2290
+ "id": 131,
2291
+ "name": "menuIndex",
2292
+ "kind": 524288,
2293
+ "kindString": "Get signature",
2294
+ "flags": {},
2295
+ "type": {
2296
+ "type": "intrinsic",
2297
+ "name": "number"
2298
+ }
2299
+ }
2300
+ ],
2301
+ "setSignature": [
2302
+ {
2303
+ "id": 132,
2304
+ "name": "menuIndex",
2305
+ "kind": 1048576,
2306
+ "kindString": "Set signature",
2307
+ "flags": {},
2308
+ "parameters": [
2309
+ {
2310
+ "id": 133,
2311
+ "name": "value",
2312
+ "kind": 32768,
2313
+ "kindString": "Parameter",
2314
+ "flags": {},
2315
+ "type": {
2316
+ "type": "intrinsic",
2317
+ "name": "number"
2318
+ }
2319
+ }
2320
+ ],
2321
+ "type": {
2322
+ "type": "intrinsic",
2323
+ "name": "void"
2324
+ }
2325
+ }
2326
+ ]
2327
+ },
2328
+ {
2329
+ "id": 122,
2330
+ "name": "useNativeFocus",
2331
+ "kind": 262144,
2332
+ "kindString": "Accessor",
2333
+ "flags": {
2334
+ "isPublic": true
2335
+ },
2336
+ "decorators": [
2337
+ {
2338
+ "name": "Input",
2339
+ "type": {
2340
+ "type": "reference",
2341
+ "name": "Input"
2342
+ },
2343
+ "arguments": {}
2344
+ }
2345
+ ],
2346
+ "sources": [
2347
+ {
2348
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2349
+ "line": 75,
2350
+ "character": 13
2351
+ }
2352
+ ],
2353
+ "getSignature": [
2354
+ {
2355
+ "id": 123,
2356
+ "name": "useNativeFocus",
2357
+ "kind": 524288,
2358
+ "kindString": "Get signature",
2359
+ "flags": {},
2360
+ "comment": {
2361
+ "shortText": "Indicates whether to use the browser's native focus function when users navigate through menu\nitems with the keyboard. To disable the native focus function, set this property to `false`.\nFor example, to let users interact with the dropdown menu but keep the keyboard focus on a\ndifferent element, set this property to `false`."
2362
+ },
2363
+ "type": {
2364
+ "type": "intrinsic",
2365
+ "name": "boolean"
2366
+ }
2367
+ }
2368
+ ],
2369
+ "setSignature": [
2370
+ {
2371
+ "id": 124,
2372
+ "name": "useNativeFocus",
2373
+ "kind": 1048576,
2374
+ "kindString": "Set signature",
2375
+ "flags": {},
2376
+ "comment": {
2377
+ "shortText": "Indicates whether to use the browser's native focus function when users navigate through menu\nitems with the keyboard. To disable the native focus function, set this property to `false`.\nFor example, to let users interact with the dropdown menu but keep the keyboard focus on a\ndifferent element, set this property to `false`.",
2378
+ "tags": [
2379
+ {
2380
+ "tag": "default",
2381
+ "text": "true\n"
2382
+ }
2383
+ ]
2384
+ },
2385
+ "parameters": [
2386
+ {
2387
+ "id": 125,
2388
+ "name": "value",
2389
+ "kind": 32768,
2390
+ "kindString": "Parameter",
2391
+ "flags": {},
2392
+ "type": {
2393
+ "type": "intrinsic",
2394
+ "name": "boolean"
2395
+ }
2396
+ }
2397
+ ],
2398
+ "type": {
2399
+ "type": "intrinsic",
2400
+ "name": "void"
2401
+ }
2402
+ }
2403
+ ]
2404
+ },
2405
+ {
2406
+ "id": 143,
2407
+ "name": "focusFirstItem",
2408
+ "kind": 2048,
2409
+ "kindString": "Method",
2410
+ "flags": {
2411
+ "isPublic": true
2412
+ },
2413
+ "sources": [
2414
+ {
2415
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2416
+ "line": 204,
2417
+ "character": 9
2418
+ }
2419
+ ],
2420
+ "signatures": [
2421
+ {
2422
+ "id": 144,
2423
+ "name": "focusFirstItem",
2424
+ "kind": 4096,
2425
+ "kindString": "Call signature",
2426
+ "flags": {},
2427
+ "type": {
2428
+ "type": "intrinsic",
2429
+ "name": "void"
2430
+ }
2431
+ }
2432
+ ]
2433
+ },
2434
+ {
2435
+ "id": 145,
2436
+ "name": "focusLastItem",
2437
+ "kind": 2048,
2438
+ "kindString": "Method",
2439
+ "flags": {
2440
+ "isPublic": true
2441
+ },
2442
+ "sources": [
2443
+ {
2444
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2445
+ "line": 219,
2446
+ "character": 9
2447
+ }
2448
+ ],
2449
+ "signatures": [
2450
+ {
2451
+ "id": 146,
2452
+ "name": "focusLastItem",
2453
+ "kind": 4096,
2454
+ "kindString": "Call signature",
2455
+ "flags": {},
2456
+ "type": {
2457
+ "type": "intrinsic",
2458
+ "name": "void"
2459
+ }
2460
+ }
2461
+ ]
2462
+ },
2463
+ {
2464
+ "id": 149,
2465
+ "name": "focusNextItem",
2466
+ "kind": 2048,
2467
+ "kindString": "Method",
2468
+ "flags": {
2469
+ "isPublic": true
2470
+ },
2471
+ "sources": [
2472
+ {
2473
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2474
+ "line": 249,
2475
+ "character": 9
2476
+ }
2477
+ ],
2478
+ "signatures": [
2479
+ {
2480
+ "id": 150,
2481
+ "name": "focusNextItem",
2482
+ "kind": 4096,
2483
+ "kindString": "Call signature",
2484
+ "flags": {},
2485
+ "type": {
2486
+ "type": "intrinsic",
2487
+ "name": "void"
2488
+ }
2489
+ }
2490
+ ]
2491
+ },
2492
+ {
2493
+ "id": 147,
2494
+ "name": "focusPreviousItem",
2495
+ "kind": 2048,
2496
+ "kindString": "Method",
2497
+ "flags": {
2498
+ "isPublic": true
2499
+ },
2500
+ "sources": [
2501
+ {
2502
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2503
+ "line": 234,
2504
+ "character": 9
2505
+ }
2506
+ ],
2507
+ "signatures": [
2508
+ {
2509
+ "id": 148,
2510
+ "name": "focusPreviousItem",
2511
+ "kind": 4096,
2512
+ "kindString": "Call signature",
2513
+ "flags": {},
2514
+ "type": {
2515
+ "type": "intrinsic",
2516
+ "name": "void"
2517
+ }
2518
+ }
2519
+ ]
2520
+ },
2521
+ {
2522
+ "id": 139,
2523
+ "name": "ngAfterContentInit",
2524
+ "kind": 2048,
2525
+ "kindString": "Method",
2526
+ "flags": {
2527
+ "isPublic": true
2528
+ },
2529
+ "sources": [
2530
+ {
2531
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2532
+ "line": 135,
2533
+ "character": 9
2534
+ }
2535
+ ],
2536
+ "signatures": [
2537
+ {
2538
+ "id": 140,
2539
+ "name": "ngAfterContentInit",
2540
+ "kind": 4096,
2541
+ "kindString": "Call signature",
2542
+ "flags": {},
2543
+ "type": {
2544
+ "type": "intrinsic",
2545
+ "name": "void"
2546
+ },
2547
+ "implementationOf": {
2548
+ "type": "reference",
2549
+ "name": "AfterContentInit.ngAfterContentInit"
2550
+ }
2551
+ }
2552
+ ],
2553
+ "implementationOf": {
2554
+ "type": "reference",
2555
+ "name": "AfterContentInit.ngAfterContentInit"
2556
+ }
2557
+ },
2558
+ {
2559
+ "id": 141,
2560
+ "name": "ngOnDestroy",
2561
+ "kind": 2048,
2562
+ "kindString": "Method",
2563
+ "flags": {
2564
+ "isPublic": true
2565
+ },
2566
+ "sources": [
2567
+ {
2568
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2569
+ "line": 198,
2570
+ "character": 9
2571
+ }
2572
+ ],
2573
+ "signatures": [
2574
+ {
2575
+ "id": 142,
2576
+ "name": "ngOnDestroy",
2577
+ "kind": 4096,
2578
+ "kindString": "Call signature",
2579
+ "flags": {},
2580
+ "type": {
2581
+ "type": "intrinsic",
2582
+ "name": "void"
2583
+ },
2584
+ "implementationOf": {
2585
+ "type": "reference",
2586
+ "name": "OnDestroy.ngOnDestroy"
2587
+ }
2588
+ }
2589
+ ],
2590
+ "implementationOf": {
2591
+ "type": "reference",
2592
+ "name": "OnDestroy.ngOnDestroy"
2593
+ }
2594
+ },
2595
+ {
2596
+ "id": 151,
2597
+ "name": "reset",
2598
+ "kind": 2048,
2599
+ "kindString": "Method",
2600
+ "flags": {
2601
+ "isPublic": true
2602
+ },
2603
+ "sources": [
2604
+ {
2605
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2606
+ "line": 264,
2607
+ "character": 9
2608
+ }
2609
+ ],
2610
+ "signatures": [
2611
+ {
2612
+ "id": 152,
2613
+ "name": "reset",
2614
+ "kind": 4096,
2615
+ "kindString": "Call signature",
2616
+ "flags": {},
2617
+ "type": {
2618
+ "type": "intrinsic",
2619
+ "name": "void"
2620
+ }
2621
+ }
2622
+ ]
2623
+ }
2624
+ ],
2625
+ "groups": [
2626
+ {
2627
+ "title": "Constructors",
2628
+ "kind": 512,
2629
+ "children": [
2630
+ 112
2631
+ ]
2632
+ },
2633
+ {
2634
+ "title": "Properties",
2635
+ "kind": 1024,
2636
+ "children": [
2637
+ 117,
2638
+ 127,
2639
+ 126,
2640
+ 134
2641
+ ]
2642
+ },
2643
+ {
2644
+ "title": "Accessors",
2645
+ "kind": 262144,
2646
+ "children": [
2647
+ 118,
2648
+ 130,
2649
+ 122
2650
+ ]
2651
+ },
2652
+ {
2653
+ "title": "Methods",
2654
+ "kind": 2048,
2655
+ "children": [
2656
+ 143,
2657
+ 145,
2658
+ 149,
2659
+ 147,
2660
+ 139,
2661
+ 141,
2662
+ 151
2663
+ ]
2664
+ }
2665
+ ],
2666
+ "sources": [
2667
+ {
2668
+ "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2669
+ "line": 40,
2670
+ "character": 13
2671
+ }
2672
+ ],
2673
+ "implementedTypes": [
2674
+ {
2675
+ "type": "reference",
2676
+ "name": "AfterContentInit"
2677
+ },
2678
+ {
2679
+ "type": "reference",
2680
+ "name": "OnDestroy"
2681
+ }
2682
+ ]
2683
+ },
2684
+ {
2685
+ "id": 235,
2686
+ "name": "SkyPopoverComponent",
2687
+ "kind": 128,
2688
+ "kindString": "Class",
2689
+ "flags": {},
2690
+ "decorators": [
2691
+ {
2692
+ "name": "Component",
2693
+ "type": {
2694
+ "type": "reference",
2695
+ "name": "Component"
2696
+ },
2697
+ "arguments": {
2698
+ "obj": "{\n selector: 'sky-popover',\n templateUrl: './popover.component.html',\n}"
2699
+ }
2700
+ }
2701
+ ],
2702
+ "children": [
2703
+ {
2704
+ "id": 236,
2705
+ "name": "constructor",
2706
+ "kind": 512,
2707
+ "kindString": "Constructor",
2708
+ "flags": {},
2709
+ "sources": [
2710
+ {
2711
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2712
+ "line": 137,
2713
+ "character": 2
2714
+ }
2715
+ ],
2716
+ "signatures": [
2717
+ {
2718
+ "id": 237,
2719
+ "name": "SkyPopoverComponent",
2720
+ "kind": 16384,
2721
+ "kindString": "Constructor signature",
2722
+ "flags": {},
2723
+ "parameters": [
2724
+ {
2725
+ "id": 238,
2726
+ "name": "overlayService",
2727
+ "kind": 32768,
2728
+ "kindString": "Parameter",
2729
+ "flags": {},
2730
+ "type": {
2731
+ "type": "reference",
2732
+ "name": "SkyOverlayService"
2733
+ }
2734
+ }
2735
+ ],
2736
+ "type": {
2737
+ "type": "reference",
2738
+ "id": 235,
2739
+ "name": "SkyPopoverComponent"
2740
+ }
2741
+ }
2742
+ ]
2743
+ },
2744
+ {
2745
+ "id": 257,
2746
+ "name": "isMouseEnter",
2747
+ "kind": 1024,
2748
+ "kindString": "Property",
2749
+ "flags": {
2750
+ "isPublic": true
2751
+ },
2752
+ "sources": [
2753
+ {
2754
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2755
+ "line": 115,
2756
+ "character": 9
2757
+ }
2758
+ ],
2759
+ "type": {
2760
+ "type": "intrinsic",
2761
+ "name": "boolean"
2762
+ },
2763
+ "defaultValue": "false"
2764
+ },
2765
+ {
2766
+ "id": 253,
2767
+ "name": "popoverClosed",
2768
+ "kind": 1024,
2769
+ "kindString": "Property",
2770
+ "flags": {
2771
+ "isPublic": true
2772
+ },
2773
+ "comment": {
2774
+ "shortText": "Fires when users close the popover."
2775
+ },
2776
+ "decorators": [
2777
+ {
2778
+ "name": "Output",
2779
+ "type": {
2780
+ "type": "reference",
2781
+ "name": "Output"
2782
+ },
2783
+ "arguments": {}
2784
+ }
2785
+ ],
2786
+ "sources": [
2787
+ {
2788
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2789
+ "line": 94,
2790
+ "character": 9
2791
+ }
2792
+ ],
2793
+ "type": {
2794
+ "type": "reference",
2795
+ "typeArguments": [
2796
+ {
2797
+ "type": "reference",
2798
+ "id": 235,
2799
+ "name": "SkyPopoverComponent"
2800
+ }
2801
+ ],
2802
+ "name": "EventEmitter"
2803
+ },
2804
+ "defaultValue": "..."
2805
+ },
2806
+ {
2807
+ "id": 254,
2808
+ "name": "popoverOpened",
2809
+ "kind": 1024,
2810
+ "kindString": "Property",
2811
+ "flags": {
2812
+ "isPublic": true
2813
+ },
2814
+ "comment": {
2815
+ "shortText": "Fires when users open the popover."
2816
+ },
2817
+ "decorators": [
2818
+ {
2819
+ "name": "Output",
2820
+ "type": {
2821
+ "type": "reference",
2822
+ "name": "Output"
2823
+ },
2824
+ "arguments": {}
2825
+ }
2826
+ ],
2827
+ "sources": [
2828
+ {
2829
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2830
+ "line": 100,
2831
+ "character": 9
2832
+ }
2833
+ ],
2834
+ "type": {
2835
+ "type": "reference",
2836
+ "typeArguments": [
2837
+ {
2838
+ "type": "reference",
2839
+ "id": 235,
2840
+ "name": "SkyPopoverComponent"
2841
+ }
2842
+ ],
2843
+ "name": "EventEmitter"
2844
+ },
2845
+ "defaultValue": "..."
2846
+ },
2847
+ {
2848
+ "id": 251,
2849
+ "name": "popoverTitle",
2850
+ "kind": 1024,
2851
+ "kindString": "Property",
2852
+ "flags": {
2853
+ "isPublic": true
2854
+ },
2855
+ "comment": {
2856
+ "shortText": "Specifies a title for the popover."
2857
+ },
2858
+ "decorators": [
2859
+ {
2860
+ "name": "Input",
2861
+ "type": {
2862
+ "type": "reference",
2863
+ "name": "Input"
2864
+ },
2865
+ "arguments": {}
2866
+ }
2867
+ ],
2868
+ "sources": [
2869
+ {
2870
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2871
+ "line": 81,
2872
+ "character": 9
2873
+ }
2874
+ ],
2875
+ "type": {
2876
+ "type": "intrinsic",
2877
+ "name": "string"
2878
+ }
2879
+ },
2880
+ {
2881
+ "id": 252,
2882
+ "name": "popoverType",
2883
+ "kind": 1024,
2884
+ "kindString": "Property",
2885
+ "flags": {
2886
+ "isPublic": true
2887
+ },
2888
+ "comment": {
2889
+ "shortText": "Specifies the type of popover.",
2890
+ "tags": [
2891
+ {
2892
+ "tag": "default",
2893
+ "text": "'info'\n"
2894
+ }
2895
+ ]
2896
+ },
2897
+ "decorators": [
2898
+ {
2899
+ "name": "Input",
2900
+ "type": {
2901
+ "type": "reference",
2902
+ "name": "Input"
2903
+ },
2904
+ "arguments": {}
2905
+ }
2906
+ ],
2907
+ "sources": [
2908
+ {
2909
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2910
+ "line": 88,
2911
+ "character": 9
2912
+ }
2913
+ ],
2914
+ "type": {
2915
+ "type": "union",
2916
+ "types": [
2917
+ {
2918
+ "type": "literal",
2919
+ "value": "danger"
2920
+ },
2921
+ {
2922
+ "type": "literal",
2923
+ "value": "info"
2924
+ }
2925
+ ]
2926
+ }
2927
+ },
2928
+ {
2929
+ "id": 239,
2930
+ "name": "alignment",
2931
+ "kind": 262144,
2932
+ "kindString": "Accessor",
2933
+ "flags": {
2934
+ "isPublic": true
2935
+ },
2936
+ "decorators": [
2937
+ {
2938
+ "name": "Input",
2939
+ "type": {
2940
+ "type": "reference",
2941
+ "name": "Input"
2942
+ },
2943
+ "arguments": {}
2944
+ }
2945
+ ],
2946
+ "sources": [
2947
+ {
2948
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2949
+ "line": 37,
2950
+ "character": 13
2951
+ }
2952
+ ],
2953
+ "getSignature": [
2954
+ {
2955
+ "id": 240,
2956
+ "name": "alignment",
2957
+ "kind": 524288,
2958
+ "kindString": "Get signature",
2959
+ "flags": {},
2960
+ "comment": {
2961
+ "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element.\nThe `skyPopoverAlignment` property on the popover directive overwrites this property."
2962
+ },
2963
+ "type": {
2964
+ "type": "reference",
2965
+ "id": 340,
2966
+ "name": "SkyPopoverAlignment"
2967
+ }
2968
+ }
2969
+ ],
2970
+ "setSignature": [
2971
+ {
2972
+ "id": 241,
2973
+ "name": "alignment",
2974
+ "kind": 1048576,
2975
+ "kindString": "Set signature",
2976
+ "flags": {},
2977
+ "comment": {
2978
+ "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element.\nThe `skyPopoverAlignment` property on the popover directive overwrites this property.",
2979
+ "tags": [
2980
+ {
2981
+ "tag": "default",
2982
+ "text": "\"center\"\n"
2983
+ }
2984
+ ]
2985
+ },
2986
+ "parameters": [
2987
+ {
2988
+ "id": 242,
2989
+ "name": "value",
2990
+ "kind": 32768,
2991
+ "kindString": "Parameter",
2992
+ "flags": {},
2993
+ "type": {
2994
+ "type": "reference",
2995
+ "id": 340,
2996
+ "name": "SkyPopoverAlignment"
2997
+ }
2998
+ }
2999
+ ],
3000
+ "type": {
3001
+ "type": "intrinsic",
3002
+ "name": "void"
3003
+ }
3004
+ }
3005
+ ]
3006
+ },
3007
+ {
3008
+ "id": 243,
3009
+ "name": "dismissOnBlur",
3010
+ "kind": 262144,
3011
+ "kindString": "Accessor",
3012
+ "flags": {
3013
+ "isPublic": true
3014
+ },
3015
+ "decorators": [
3016
+ {
3017
+ "name": "Input",
3018
+ "type": {
3019
+ "type": "reference",
3020
+ "name": "Input"
3021
+ },
3022
+ "arguments": {}
3023
+ }
3024
+ ],
3025
+ "sources": [
3026
+ {
3027
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
3028
+ "line": 51,
3029
+ "character": 13
3030
+ }
3031
+ ],
3032
+ "getSignature": [
3033
+ {
3034
+ "id": 244,
3035
+ "name": "dismissOnBlur",
3036
+ "kind": 524288,
3037
+ "kindString": "Get signature",
3038
+ "flags": {},
3039
+ "comment": {
3040
+ "shortText": "Indicates whether to close the popover when it loses focus.\nTo require users to click a trigger button to close the popover, set this input to false."
3041
+ },
3042
+ "type": {
3043
+ "type": "intrinsic",
3044
+ "name": "boolean"
3045
+ }
3046
+ }
3047
+ ],
3048
+ "setSignature": [
3049
+ {
3050
+ "id": 245,
3051
+ "name": "dismissOnBlur",
3052
+ "kind": 1048576,
3053
+ "kindString": "Set signature",
3054
+ "flags": {},
3055
+ "comment": {
3056
+ "shortText": "Indicates whether to close the popover when it loses focus.\nTo require users to click a trigger button to close the popover, set this input to false.",
3057
+ "tags": [
3058
+ {
3059
+ "tag": "default",
3060
+ "text": "true\n"
3061
+ }
3062
+ ]
3063
+ },
3064
+ "parameters": [
3065
+ {
3066
+ "id": 246,
3067
+ "name": "value",
3068
+ "kind": 32768,
3069
+ "kindString": "Parameter",
3070
+ "flags": {},
3071
+ "type": {
3072
+ "type": "intrinsic",
3073
+ "name": "boolean"
3074
+ }
3075
+ }
3076
+ ],
3077
+ "type": {
3078
+ "type": "intrinsic",
3079
+ "name": "void"
3080
+ }
3081
+ }
3082
+ ]
3083
+ },
3084
+ {
3085
+ "id": 247,
3086
+ "name": "placement",
3087
+ "kind": 262144,
3088
+ "kindString": "Accessor",
3089
+ "flags": {
3090
+ "isPublic": true
3091
+ },
3092
+ "decorators": [
3093
+ {
3094
+ "name": "Input",
3095
+ "type": {
3096
+ "type": "reference",
3097
+ "name": "Input"
3098
+ },
3099
+ "arguments": {}
3100
+ }
3101
+ ],
3102
+ "sources": [
3103
+ {
3104
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
3105
+ "line": 69,
3106
+ "character": 13
3107
+ }
3108
+ ],
3109
+ "getSignature": [
3110
+ {
3111
+ "id": 248,
3112
+ "name": "placement",
3113
+ "kind": 524288,
3114
+ "kindString": "Get signature",
3115
+ "flags": {},
3116
+ "comment": {
3117
+ "shortText": "Specifies the placement of the popover in relation to the trigger element.\nThe `skyPopoverPlacement` property on the popover directive overwrites this property."
3118
+ },
3119
+ "type": {
3120
+ "type": "reference",
3121
+ "id": 348,
3122
+ "name": "SkyPopoverPlacement"
3123
+ }
3124
+ }
3125
+ ],
3126
+ "setSignature": [
3127
+ {
3128
+ "id": 249,
3129
+ "name": "placement",
3130
+ "kind": 1048576,
3131
+ "kindString": "Set signature",
3132
+ "flags": {},
3133
+ "comment": {
3134
+ "shortText": "Specifies the placement of the popover in relation to the trigger element.\nThe `skyPopoverPlacement` property on the popover directive overwrites this property.",
3135
+ "tags": [
3136
+ {
3137
+ "tag": "default",
3138
+ "text": "\"above\"\n"
3139
+ }
3140
+ ]
3141
+ },
3142
+ "parameters": [
3143
+ {
3144
+ "id": 250,
3145
+ "name": "value",
3146
+ "kind": 32768,
3147
+ "kindString": "Parameter",
3148
+ "flags": {},
3149
+ "type": {
3150
+ "type": "reference",
3151
+ "id": 348,
3152
+ "name": "SkyPopoverPlacement"
3153
+ }
3154
+ }
3155
+ ],
3156
+ "type": {
3157
+ "type": "intrinsic",
3158
+ "name": "void"
3159
+ }
3160
+ }
3161
+ ]
3162
+ },
3163
+ {
3164
+ "id": 266,
3165
+ "name": "ngOnDestroy",
3166
+ "kind": 2048,
3167
+ "kindString": "Method",
3168
+ "flags": {
3169
+ "isPublic": true
3170
+ },
3171
+ "sources": [
3172
+ {
3173
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
3174
+ "line": 139,
3175
+ "character": 9
3176
+ }
3177
+ ],
3178
+ "signatures": [
3179
+ {
3180
+ "id": 267,
3181
+ "name": "ngOnDestroy",
3182
+ "kind": 4096,
3183
+ "kindString": "Call signature",
3184
+ "flags": {},
3185
+ "type": {
3186
+ "type": "intrinsic",
3187
+ "name": "void"
3188
+ },
3189
+ "implementationOf": {
3190
+ "type": "reference",
3191
+ "name": "OnDestroy.ngOnDestroy"
3192
+ }
3193
+ }
3194
+ ],
3195
+ "implementationOf": {
3196
+ "type": "reference",
3197
+ "name": "OnDestroy.ngOnDestroy"
3198
+ }
3199
+ }
3200
+ ],
3201
+ "groups": [
3202
+ {
3203
+ "title": "Constructors",
3204
+ "kind": 512,
3205
+ "children": [
3206
+ 236
3207
+ ]
3208
+ },
3209
+ {
3210
+ "title": "Properties",
3211
+ "kind": 1024,
3212
+ "children": [
3213
+ 257,
3214
+ 253,
3215
+ 254,
3216
+ 251,
3217
+ 252
3218
+ ]
3219
+ },
3220
+ {
3221
+ "title": "Accessors",
3222
+ "kind": 262144,
3223
+ "children": [
3224
+ 239,
3225
+ 243,
3226
+ 247
3227
+ ]
3228
+ },
3229
+ {
3230
+ "title": "Methods",
3231
+ "kind": 2048,
3232
+ "children": [
3233
+ 266
3234
+ ]
3235
+ }
3236
+ ],
3237
+ "sources": [
3238
+ {
3239
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
3240
+ "line": 30,
3241
+ "character": 13
3242
+ }
3243
+ ],
3244
+ "implementedTypes": [
3245
+ {
3246
+ "type": "reference",
3247
+ "name": "OnDestroy"
3248
+ }
3249
+ ]
3250
+ },
3251
+ {
3252
+ "id": 281,
3253
+ "name": "SkyPopoverDirective",
3254
+ "kind": 128,
3255
+ "kindString": "Class",
3256
+ "flags": {},
3257
+ "decorators": [
3258
+ {
3259
+ "name": "Directive",
3260
+ "type": {
3261
+ "type": "reference",
3262
+ "name": "Directive"
3263
+ },
3264
+ "arguments": {
3265
+ "obj": "{\n selector: '[skyPopover]',\n}"
3266
+ }
3267
+ }
3268
+ ],
3269
+ "children": [
3270
+ {
3271
+ "id": 282,
3272
+ "name": "constructor",
3273
+ "kind": 512,
3274
+ "kindString": "Constructor",
3275
+ "flags": {},
3276
+ "sources": [
3277
+ {
3278
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3279
+ "line": 66,
3280
+ "character": 2
3281
+ }
3282
+ ],
3283
+ "signatures": [
3284
+ {
3285
+ "id": 283,
3286
+ "name": "SkyPopoverDirective",
3287
+ "kind": 16384,
3288
+ "kindString": "Constructor signature",
3289
+ "flags": {},
3290
+ "parameters": [
3291
+ {
3292
+ "id": 284,
3293
+ "name": "elementRef",
3294
+ "kind": 32768,
3295
+ "kindString": "Parameter",
3296
+ "flags": {},
3297
+ "type": {
3298
+ "type": "reference",
3299
+ "typeArguments": [
3300
+ {
3301
+ "type": "intrinsic",
3302
+ "name": "any"
3303
+ }
3304
+ ],
3305
+ "name": "ElementRef"
3306
+ }
3307
+ }
3308
+ ],
3309
+ "type": {
3310
+ "type": "reference",
3311
+ "id": 281,
3312
+ "name": "SkyPopoverDirective"
3313
+ }
3314
+ }
3315
+ ]
3316
+ },
3317
+ {
3318
+ "id": 285,
3319
+ "name": "skyPopover",
3320
+ "kind": 1024,
3321
+ "kindString": "Property",
3322
+ "flags": {
3323
+ "isPublic": true
3324
+ },
3325
+ "comment": {
3326
+ "shortText": "References the popover component to display. Add this directive to the trigger element that opens the popover.",
3327
+ "tags": [
3328
+ {
3329
+ "tag": "required",
3330
+ "text": "\n"
3331
+ }
3332
+ ]
3333
+ },
3334
+ "decorators": [
3335
+ {
3336
+ "name": "Input",
3337
+ "type": {
3338
+ "type": "reference",
3339
+ "name": "Input"
3340
+ },
3341
+ "arguments": {}
3342
+ }
3343
+ ],
3344
+ "sources": [
3345
+ {
3346
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3347
+ "line": 28,
3348
+ "character": 9
3349
+ }
3350
+ ],
3351
+ "type": {
3352
+ "type": "reference",
3353
+ "id": 235,
3354
+ "name": "SkyPopoverComponent"
3355
+ }
3356
+ },
3357
+ {
3358
+ "id": 286,
3359
+ "name": "skyPopoverAlignment",
3360
+ "kind": 1024,
3361
+ "kindString": "Property",
3362
+ "flags": {
3363
+ "isPublic": true
3364
+ },
3365
+ "comment": {
3366
+ "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element.",
3367
+ "tags": [
3368
+ {
3369
+ "tag": "default",
3370
+ "text": "\"center\"\n"
3371
+ }
3372
+ ]
3373
+ },
3374
+ "decorators": [
3375
+ {
3376
+ "name": "Input",
3377
+ "type": {
3378
+ "type": "reference",
3379
+ "name": "Input"
3380
+ },
3381
+ "arguments": {}
3382
+ }
3383
+ ],
3384
+ "sources": [
3385
+ {
3386
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3387
+ "line": 35,
3388
+ "character": 9
3389
+ }
3390
+ ],
3391
+ "type": {
3392
+ "type": "reference",
3393
+ "id": 340,
3394
+ "name": "SkyPopoverAlignment"
3395
+ }
3396
+ },
3397
+ {
3398
+ "id": 287,
3399
+ "name": "skyPopoverMessageStream",
3400
+ "kind": 1024,
3401
+ "kindString": "Property",
3402
+ "flags": {
3403
+ "isPublic": true
3404
+ },
3405
+ "comment": {
3406
+ "shortText": "Provides an observable to send commands to the popover that respect the `SkyPopoverMessage` type."
3407
+ },
3408
+ "decorators": [
3409
+ {
3410
+ "name": "Input",
3411
+ "type": {
3412
+ "type": "reference",
3413
+ "name": "Input"
3414
+ },
3415
+ "arguments": {}
3416
+ }
3417
+ ],
3418
+ "sources": [
3419
+ {
3420
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3421
+ "line": 41,
3422
+ "character": 9
3423
+ }
3424
+ ],
3425
+ "type": {
3426
+ "type": "reference",
3427
+ "typeArguments": [
3428
+ {
3429
+ "type": "reference",
3430
+ "id": 341,
3431
+ "name": "SkyPopoverMessage"
3432
+ }
3433
+ ],
3434
+ "name": "Subject"
3435
+ },
3436
+ "defaultValue": "..."
3437
+ },
3438
+ {
3439
+ "id": 288,
3440
+ "name": "skyPopoverPlacement",
3441
+ "kind": 1024,
3442
+ "kindString": "Property",
3443
+ "flags": {
3444
+ "isPublic": true
3445
+ },
3446
+ "comment": {
3447
+ "shortText": "Specifies the placement of the popover in relation to the trigger element.",
3448
+ "tags": [
3449
+ {
3450
+ "tag": "default",
3451
+ "text": "\"above\"\n"
3452
+ }
3453
+ ]
3454
+ },
3455
+ "decorators": [
3456
+ {
3457
+ "name": "Input",
3458
+ "type": {
3459
+ "type": "reference",
3460
+ "name": "Input"
3461
+ },
3462
+ "arguments": {}
3463
+ }
3464
+ ],
3465
+ "sources": [
3466
+ {
3467
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3468
+ "line": 48,
3469
+ "character": 9
3470
+ }
3471
+ ],
3472
+ "type": {
3473
+ "type": "reference",
3474
+ "id": 348,
3475
+ "name": "SkyPopoverPlacement"
3476
+ }
3477
+ },
3478
+ {
3479
+ "id": 289,
3480
+ "name": "skyPopoverTrigger",
3481
+ "kind": 262144,
3482
+ "kindString": "Accessor",
3483
+ "flags": {
3484
+ "isPublic": true
3485
+ },
3486
+ "decorators": [
3487
+ {
3488
+ "name": "Input",
3489
+ "type": {
3490
+ "type": "reference",
3491
+ "name": "Input"
3492
+ },
3493
+ "arguments": {}
3494
+ }
3495
+ ],
3496
+ "sources": [
3497
+ {
3498
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3499
+ "line": 54,
3500
+ "character": 13
3501
+ }
3502
+ ],
3503
+ "getSignature": [
3504
+ {
3505
+ "id": 290,
3506
+ "name": "skyPopoverTrigger",
3507
+ "kind": 524288,
3508
+ "kindString": "Get signature",
3509
+ "flags": {},
3510
+ "comment": {
3511
+ "shortText": "Specifies the user action that displays the popover."
3512
+ },
3513
+ "type": {
3514
+ "type": "reference",
3515
+ "id": 356,
3516
+ "name": "SkyPopoverTrigger"
3517
+ }
3518
+ }
3519
+ ],
3520
+ "setSignature": [
3521
+ {
3522
+ "id": 291,
3523
+ "name": "skyPopoverTrigger",
3524
+ "kind": 1048576,
3525
+ "kindString": "Set signature",
3526
+ "flags": {},
3527
+ "comment": {
3528
+ "shortText": "Specifies the user action that displays the popover."
3529
+ },
3530
+ "parameters": [
3531
+ {
3532
+ "id": 292,
3533
+ "name": "value",
3534
+ "kind": 32768,
3535
+ "kindString": "Parameter",
3536
+ "flags": {},
3537
+ "type": {
3538
+ "type": "reference",
3539
+ "id": 356,
3540
+ "name": "SkyPopoverTrigger"
3541
+ }
3542
+ }
3543
+ ],
3544
+ "type": {
3545
+ "type": "intrinsic",
3546
+ "name": "void"
3547
+ }
3548
+ }
3549
+ ]
3550
+ },
3551
+ {
3552
+ "id": 297,
3553
+ "name": "ngOnDestroy",
3554
+ "kind": 2048,
3555
+ "kindString": "Method",
3556
+ "flags": {
3557
+ "isPublic": true
3558
+ },
3559
+ "sources": [
3560
+ {
3561
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3562
+ "line": 72,
3563
+ "character": 9
3564
+ }
3565
+ ],
3566
+ "signatures": [
3567
+ {
3568
+ "id": 298,
3569
+ "name": "ngOnDestroy",
3570
+ "kind": 4096,
3571
+ "kindString": "Call signature",
3572
+ "flags": {},
3573
+ "type": {
3574
+ "type": "intrinsic",
3575
+ "name": "void"
3576
+ },
3577
+ "implementationOf": {
3578
+ "type": "reference",
3579
+ "name": "OnDestroy.ngOnDestroy"
3580
+ }
3581
+ }
3582
+ ],
3583
+ "implementationOf": {
3584
+ "type": "reference",
3585
+ "name": "OnDestroy.ngOnDestroy"
3586
+ }
3587
+ },
3588
+ {
3589
+ "id": 295,
3590
+ "name": "ngOnInit",
3591
+ "kind": 2048,
3592
+ "kindString": "Method",
3593
+ "flags": {
3594
+ "isPublic": true
3595
+ },
3596
+ "sources": [
3597
+ {
3598
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3599
+ "line": 68,
3600
+ "character": 9
3601
+ }
3602
+ ],
3603
+ "signatures": [
3604
+ {
3605
+ "id": 296,
3606
+ "name": "ngOnInit",
3607
+ "kind": 4096,
3608
+ "kindString": "Call signature",
3609
+ "flags": {},
3610
+ "type": {
3611
+ "type": "intrinsic",
3612
+ "name": "void"
3613
+ },
3614
+ "implementationOf": {
3615
+ "type": "reference",
3616
+ "name": "OnInit.ngOnInit"
3617
+ }
3618
+ }
3619
+ ],
3620
+ "implementationOf": {
3621
+ "type": "reference",
3622
+ "name": "OnInit.ngOnInit"
3623
+ }
3624
+ },
3625
+ {
3626
+ "id": 299,
3627
+ "name": "togglePopover",
3628
+ "kind": 2048,
3629
+ "kindString": "Method",
3630
+ "flags": {
3631
+ "isPublic": true
3632
+ },
3633
+ "sources": [
3634
+ {
3635
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3636
+ "line": 76,
3637
+ "character": 9
3638
+ }
3639
+ ],
3640
+ "signatures": [
3641
+ {
3642
+ "id": 300,
3643
+ "name": "togglePopover",
3644
+ "kind": 4096,
3645
+ "kindString": "Call signature",
3646
+ "flags": {},
3647
+ "type": {
3648
+ "type": "intrinsic",
3649
+ "name": "void"
3650
+ }
3651
+ }
3652
+ ]
3653
+ }
3654
+ ],
3655
+ "groups": [
3656
+ {
3657
+ "title": "Constructors",
3658
+ "kind": 512,
3659
+ "children": [
3660
+ 282
3661
+ ]
3662
+ },
3663
+ {
3664
+ "title": "Properties",
3665
+ "kind": 1024,
3666
+ "children": [
3667
+ 285,
3668
+ 286,
3669
+ 287,
3670
+ 288
3671
+ ]
3672
+ },
3673
+ {
3674
+ "title": "Accessors",
3675
+ "kind": 262144,
3676
+ "children": [
3677
+ 289
3678
+ ]
3679
+ },
3680
+ {
3681
+ "title": "Methods",
3682
+ "kind": 2048,
3683
+ "children": [
3684
+ 297,
3685
+ 295,
3686
+ 299
3687
+ ]
3688
+ }
3689
+ ],
3690
+ "sources": [
3691
+ {
3692
+ "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3693
+ "line": 22,
3694
+ "character": 13
3695
+ }
3696
+ ],
3697
+ "implementedTypes": [
3698
+ {
3699
+ "type": "reference",
3700
+ "name": "OnInit"
3701
+ },
3702
+ {
3703
+ "type": "reference",
3704
+ "name": "OnDestroy"
3705
+ }
3706
+ ]
3707
+ },
3708
+ {
3709
+ "id": 318,
3710
+ "name": "SkyDropdownMenuChange",
3711
+ "kind": 256,
3712
+ "kindString": "Interface",
3713
+ "flags": {},
3714
+ "children": [
3715
+ {
3716
+ "id": 319,
3717
+ "name": "activeIndex",
3718
+ "kind": 1024,
3719
+ "kindString": "Property",
3720
+ "flags": {
3721
+ "isOptional": true
3722
+ },
3723
+ "comment": {
3724
+ "shortText": "Indicates the active menu index."
3725
+ },
3726
+ "sources": [
3727
+ {
3728
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-menu-change.ts",
3729
+ "line": 7,
3730
+ "character": 2
3731
+ }
3732
+ ],
3733
+ "type": {
3734
+ "type": "intrinsic",
3735
+ "name": "number"
3736
+ }
3737
+ },
3738
+ {
3739
+ "id": 320,
3740
+ "name": "items",
3741
+ "kind": 1024,
3742
+ "kindString": "Property",
3743
+ "flags": {
3744
+ "isOptional": true
3745
+ },
3746
+ "comment": {
3747
+ "shortText": "Indicates the items in the menu."
3748
+ },
3749
+ "sources": [
3750
+ {
3751
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-menu-change.ts",
3752
+ "line": 12,
3753
+ "character": 2
3754
+ }
3755
+ ],
3756
+ "type": {
3757
+ "type": "array",
3758
+ "elementType": {
3759
+ "type": "reference",
3760
+ "id": 1,
3761
+ "name": "SkyDropdownItemComponent"
3762
+ }
3763
+ }
3764
+ },
3765
+ {
3766
+ "id": 321,
3767
+ "name": "selectedItem",
3768
+ "kind": 1024,
3769
+ "kindString": "Property",
3770
+ "flags": {
3771
+ "isOptional": true
3772
+ },
3773
+ "comment": {
3774
+ "shortText": "Indicates the selected item in the menu."
3775
+ },
3776
+ "sources": [
3777
+ {
3778
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-menu-change.ts",
3779
+ "line": 17,
3780
+ "character": 2
3781
+ }
3782
+ ],
3783
+ "type": {
3784
+ "type": "reference",
3785
+ "id": 1,
3786
+ "name": "SkyDropdownItemComponent"
3787
+ }
3788
+ }
3789
+ ],
3790
+ "groups": [
3791
+ {
3792
+ "title": "Properties",
3793
+ "kind": 1024,
3794
+ "children": [
3795
+ 319,
3796
+ 320,
3797
+ 321
3798
+ ]
3799
+ }
3800
+ ],
3801
+ "sources": [
3802
+ {
3803
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-menu-change.ts",
3804
+ "line": 3,
3805
+ "character": 17
3806
+ }
3807
+ ]
3808
+ },
3809
+ {
3810
+ "id": 322,
3811
+ "name": "SkyDropdownMessage",
3812
+ "kind": 256,
3813
+ "kindString": "Interface",
3814
+ "flags": {},
3815
+ "children": [
3816
+ {
3817
+ "id": 323,
3818
+ "name": "type",
3819
+ "kind": 1024,
3820
+ "kindString": "Property",
3821
+ "flags": {
3822
+ "isOptional": true
3823
+ },
3824
+ "comment": {
3825
+ "shortText": "Indicates the type of message to send."
3826
+ },
3827
+ "sources": [
3828
+ {
3829
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message.ts",
3830
+ "line": 7,
3831
+ "character": 2
3832
+ }
3833
+ ],
3834
+ "type": {
3835
+ "type": "reference",
3836
+ "id": 324,
3837
+ "name": "SkyDropdownMessageType"
3838
+ }
3839
+ }
3840
+ ],
3841
+ "groups": [
3842
+ {
3843
+ "title": "Properties",
3844
+ "kind": 1024,
3845
+ "children": [
3846
+ 323
3847
+ ]
3848
+ }
3849
+ ],
3850
+ "sources": [
3851
+ {
3852
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message.ts",
3853
+ "line": 3,
3854
+ "character": 17
3855
+ }
3856
+ ]
3857
+ },
3858
+ {
3859
+ "id": 341,
3860
+ "name": "SkyPopoverMessage",
3861
+ "kind": 256,
3862
+ "kindString": "Interface",
3863
+ "flags": {},
3864
+ "comment": {
3865
+ "shortText": "Specifies messages to be sent to the popover component."
3866
+ },
3867
+ "children": [
3868
+ {
3869
+ "id": 342,
3870
+ "name": "type",
3871
+ "kind": 1024,
3872
+ "kindString": "Property",
3873
+ "flags": {
3874
+ "isOptional": true
3875
+ },
3876
+ "comment": {
3877
+ "shortText": "The type of message to send."
3878
+ },
3879
+ "sources": [
3880
+ {
3881
+ "fileName": "projects/popovers/src/modules/popover/types/popover-message.ts",
3882
+ "line": 10,
3883
+ "character": 2
3884
+ }
3885
+ ],
3886
+ "type": {
3887
+ "type": "reference",
3888
+ "id": 343,
3889
+ "name": "SkyPopoverMessageType"
3890
+ }
3891
+ }
3892
+ ],
3893
+ "groups": [
3894
+ {
3895
+ "title": "Properties",
3896
+ "kind": 1024,
3897
+ "children": [
3898
+ 342
3899
+ ]
3900
+ }
3901
+ ],
3902
+ "sources": [
3903
+ {
3904
+ "fileName": "projects/popovers/src/modules/popover/types/popover-message.ts",
3905
+ "line": 6,
3906
+ "character": 17
3907
+ }
3908
+ ]
3909
+ },
3910
+ {
3911
+ "id": 317,
3912
+ "name": "SkyDropdownHorizontalAlignment",
3913
+ "kind": 4194304,
3914
+ "kindString": "Type alias",
3915
+ "flags": {},
3916
+ "sources": [
3917
+ {
3918
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-horizontal-alignment.ts",
3919
+ "line": 3,
3920
+ "character": 12
3921
+ }
3922
+ ],
3923
+ "type": {
3924
+ "type": "reference",
3925
+ "name": "SkyAffixHorizontalAlignment"
3926
+ }
3927
+ },
3928
+ {
3929
+ "id": 333,
3930
+ "name": "SkyDropdownTriggerType",
3931
+ "kind": 4194304,
3932
+ "kindString": "Type alias",
3933
+ "flags": {},
3934
+ "sources": [
3935
+ {
3936
+ "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-trigger-type.ts",
3937
+ "line": 1,
3938
+ "character": 12
3939
+ }
3940
+ ],
3941
+ "type": {
3942
+ "type": "union",
3943
+ "types": [
3944
+ {
3945
+ "type": "literal",
3946
+ "value": "click"
3947
+ },
3948
+ {
3949
+ "type": "literal",
3950
+ "value": "hover"
3951
+ }
3952
+ ]
3953
+ }
3954
+ },
3955
+ {
3956
+ "id": 340,
3957
+ "name": "SkyPopoverAlignment",
3958
+ "kind": 4194304,
3959
+ "kindString": "Type alias",
3960
+ "flags": {},
3961
+ "comment": {
3962
+ "shortText": "Represents the horizontal alignment of the popover in relation to the trigger element."
3963
+ },
3964
+ "sources": [
3965
+ {
3966
+ "fileName": "projects/popovers/src/modules/popover/types/popover-alignment.ts",
3967
+ "line": 4,
3968
+ "character": 12
3969
+ }
3970
+ ],
3971
+ "type": {
3972
+ "type": "union",
3973
+ "types": [
3974
+ {
3975
+ "type": "literal",
3976
+ "value": "left"
3977
+ },
3978
+ {
3979
+ "type": "literal",
3980
+ "value": "center"
3981
+ },
3982
+ {
3983
+ "type": "literal",
3984
+ "value": "right"
3985
+ }
3986
+ ]
3987
+ }
3988
+ },
3989
+ {
3990
+ "id": 348,
3991
+ "name": "SkyPopoverPlacement",
3992
+ "kind": 4194304,
3993
+ "kindString": "Type alias",
3994
+ "flags": {},
3995
+ "comment": {
3996
+ "shortText": "Represents the placement of the popover in relation to the trigger element."
3997
+ },
3998
+ "sources": [
3999
+ {
4000
+ "fileName": "projects/popovers/src/modules/popover/types/popover-placement.ts",
4001
+ "line": 4,
4002
+ "character": 12
4003
+ }
4004
+ ],
4005
+ "type": {
4006
+ "type": "union",
4007
+ "types": [
4008
+ {
4009
+ "type": "literal",
4010
+ "value": "above"
4011
+ },
4012
+ {
4013
+ "type": "literal",
4014
+ "value": "below"
4015
+ },
4016
+ {
4017
+ "type": "literal",
4018
+ "value": "right"
4019
+ },
4020
+ {
4021
+ "type": "literal",
4022
+ "value": "left"
4023
+ }
4024
+ ]
4025
+ }
4026
+ },
4027
+ {
4028
+ "id": 356,
4029
+ "name": "SkyPopoverTrigger",
4030
+ "kind": 4194304,
4031
+ "kindString": "Type alias",
4032
+ "flags": {},
4033
+ "comment": {
4034
+ "shortText": "Specifies the user action that displays the popover."
4035
+ },
4036
+ "sources": [
4037
+ {
4038
+ "fileName": "projects/popovers/src/modules/popover/types/popover-trigger.ts",
4039
+ "line": 4,
4040
+ "character": 12
4041
+ }
4042
+ ],
4043
+ "type": {
4044
+ "type": "union",
4045
+ "types": [
4046
+ {
4047
+ "type": "literal",
4048
+ "value": "click"
4049
+ },
4050
+ {
4051
+ "type": "literal",
4052
+ "value": "mouseenter"
4053
+ }
4054
+ ]
4055
+ }
4056
+ }
4057
+ ],
4058
+ "groups": [
4059
+ {
4060
+ "title": "Enumerations",
4061
+ "kind": 8,
4062
+ "children": [
4063
+ 324,
4064
+ 343
4065
+ ]
4066
+ },
4067
+ {
4068
+ "title": "Classes",
4069
+ "kind": 128,
4070
+ "children": [
4071
+ 334,
4072
+ 337,
4073
+ 1,
4074
+ 26,
4075
+ 29,
4076
+ 111,
4077
+ 235,
4078
+ 281
4079
+ ]
4080
+ },
4081
+ {
4082
+ "title": "Interfaces",
4083
+ "kind": 256,
4084
+ "children": [
4085
+ 318,
4086
+ 322,
4087
+ 341
4088
+ ]
4089
+ },
4090
+ {
4091
+ "title": "Type aliases",
4092
+ "kind": 4194304,
4093
+ "children": [
4094
+ 317,
4095
+ 333,
4096
+ 340,
4097
+ 348,
4098
+ 356
4099
+ ]
4100
+ }
4101
+ ],
4102
+ "sources": [
4103
+ {
4104
+ "fileName": "projects/popovers/src/public-api.ts",
4105
+ "line": 1,
4106
+ "character": 0
4107
+ }
4108
+ ]
4109
+ },
4110
+ "codeExamples": [
4111
+ {
4112
+ "fileName": ".eslintrc.json",
4113
+ "filePath": "/projects/popovers/documentation/code-examples/.eslintrc.json",
4114
+ "rawContents": "{\n \"extends\": [\"../../.eslintrc.json\"],\n \"overrides\": [\n {\n \"files\": [\"*.ts\"],\n \"rules\": {\n \"@angular-eslint/directive-selector\": [\n \"error\",\n {\n \"type\": \"attribute\",\n \"prefix\": \"app\",\n \"style\": \"camelCase\"\n }\n ],\n \"@angular-eslint/component-selector\": [\n \"error\",\n {\n \"type\": \"element\",\n \"prefix\": \"app\",\n \"style\": \"kebab-case\"\n }\n ]\n }\n }\n ]\n}\n"
4115
+ },
4116
+ {
4117
+ "fileName": "dropdown-demo.component.html",
4118
+ "filePath": "/projects/popovers/documentation/code-examples/dropdown/basic/dropdown-demo.component.html",
4119
+ "rawContents": "<sky-dropdown>\n <sky-dropdown-button> Show dropdown </sky-dropdown-button>\n <sky-dropdown-menu>\n <sky-dropdown-item *ngFor=\"let item of items\">\n <button\n type=\"button\"\n [attr.disabled]=\"item.disabled ? '' : null\"\n (click)=\"actionClicked(item.name)\"\n >\n {{ item.name }}\n </button>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n</sky-dropdown>\n"
4120
+ },
4121
+ {
4122
+ "fileName": "dropdown-demo.component.ts",
4123
+ "filePath": "/projects/popovers/documentation/code-examples/dropdown/basic/dropdown-demo.component.ts",
4124
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-dropdown-demo',\n templateUrl: './dropdown-demo.component.html',\n})\nexport class DropdownDemoComponent {\n public items: any[] = [\n { name: 'Option 1', disabled: false },\n { name: 'Disabled option', disabled: true },\n { name: 'Option 3', disabled: false },\n { name: 'Option 4', disabled: false },\n { name: 'Option 5', disabled: false },\n ];\n\n public actionClicked(action: string): void {\n alert(`You selected ${action}.`);\n }\n}\n"
4125
+ },
4126
+ {
4127
+ "fileName": "dropdown-demo.module.ts",
4128
+ "filePath": "/projects/popovers/documentation/code-examples/dropdown/basic/dropdown-demo.module.ts",
4129
+ "rawContents": "import { CommonModule } from '@angular/common';\n\nimport { NgModule } from '@angular/core';\n\nimport { SkyDropdownModule } from '@skyux/popovers';\n\nimport { DropdownDemoComponent } from './dropdown-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyDropdownModule],\n exports: [DropdownDemoComponent],\n declarations: [DropdownDemoComponent],\n})\nexport class DropdownDemoModule {}\n"
4130
+ },
4131
+ {
4132
+ "fileName": "dropdown-demo.component.html",
4133
+ "filePath": "/projects/popovers/documentation/code-examples/dropdown/remote/dropdown-demo.component.html",
4134
+ "rawContents": "<p>\n <button\n class=\"sky-btn sky-btn-default sky-margin-inline-default\"\n type=\"button\"\n (click)=\"openDropdown()\"\n >\n Open dropdown\n </button>\n\n <button\n class=\"sky-btn sky-btn-default sky-margin-inline-default\"\n type=\"button\"\n (click)=\"closeDropdown()\"\n >\n Close dropdown\n </button>\n\n <button\n class=\"sky-btn sky-btn-default sky-margin-inline-default\"\n type=\"button\"\n (click)=\"focusTriggerButton()\"\n >\n Focus trigger button\n </button>\n\n <button\n class=\"sky-btn sky-btn-default sky-margin-inline-default\"\n type=\"button\"\n (click)=\"focusNextItem()\"\n >\n Focus next item\n </button>\n\n <button\n class=\"sky-btn sky-btn-default sky-margin-inline-default\"\n type=\"button\"\n (click)=\"focusPreviousItem()\"\n >\n Focus previous item\n </button>\n\n <button\n class=\"sky-btn sky-btn-default sky-margin-inline-default\"\n type=\"button\"\n (click)=\"removeItem()\"\n >\n Remove item\n </button>\n</p>\n\n<sky-dropdown\n buttonStyle=\"primary\"\n [dismissOnBlur]=\"false\"\n [messageStream]=\"dropdownController\"\n>\n <sky-dropdown-button> Open </sky-dropdown-button>\n <sky-dropdown-menu\n [useNativeFocus]=\"false\"\n (menuChanges)=\"onMenuChanges($event)\"\n >\n <sky-dropdown-item *ngFor=\"let item of items\">\n <button\n type=\"button\"\n [attr.disabled]=\"item.disabled ? '' : null\"\n (click)=\"actionClicked(item.name)\"\n >\n {{ item.name }}\n </button>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n</sky-dropdown>\n\n<p>\n This menu does not bring the active items to focus; this is useful for custom\n implementations where the focus should remain on a different control.\n</p>\n"
4135
+ },
4136
+ {
4137
+ "fileName": "dropdown-demo.component.ts",
4138
+ "filePath": "/projects/popovers/documentation/code-examples/dropdown/remote/dropdown-demo.component.ts",
4139
+ "rawContents": "import { ChangeDetectorRef, Component } from '@angular/core';\n\nimport {\n SkyDropdownMessage,\n SkyDropdownMessageType,\n SkyDropdownMenuChange,\n} from '@skyux/popovers';\n\nimport { Subject } from 'rxjs';\n\n@Component({\n selector: 'app-dropdown-demo',\n templateUrl: './dropdown-demo.component.html',\n})\nexport class DropdownDemoComponent {\n public dropdownController = new Subject<SkyDropdownMessage>();\n\n public items: any[] = [\n { name: 'Option 1', disabled: false },\n { name: 'Disabled option', disabled: true },\n { name: 'Option 3', disabled: false },\n { name: 'Option 4', disabled: false },\n { name: 'Option 5', disabled: false },\n ];\n\n constructor(private changeDetector: ChangeDetectorRef) {}\n\n public actionClicked(action: string): void {\n alert(`You selected ${action}.`);\n }\n\n public openDropdown(): void {\n this.sendMessage(SkyDropdownMessageType.Open);\n }\n\n public closeDropdown(): void {\n this.sendMessage(SkyDropdownMessageType.Close);\n }\n\n public focusTriggerButton(): void {\n this.sendMessage(SkyDropdownMessageType.FocusTriggerButton);\n }\n\n public focusNextItem(): void {\n this.sendMessage(SkyDropdownMessageType.FocusNextItem);\n }\n\n public focusPreviousItem(): void {\n this.sendMessage(SkyDropdownMessageType.FocusPreviousItem);\n }\n\n public removeItem(): void {\n if (this.items.length > 1) {\n this.items.pop();\n this.changeDetector.detectChanges();\n }\n }\n\n public onMenuChanges(change: SkyDropdownMenuChange): void {\n if (change.activeIndex !== undefined) {\n console.log(`The menu's active index changed to: ${change.activeIndex}.`);\n }\n }\n\n private sendMessage(type: SkyDropdownMessageType): void {\n const message: SkyDropdownMessage = { type };\n this.dropdownController.next(message);\n }\n}\n"
4140
+ },
4141
+ {
4142
+ "fileName": "dropdown-demo.module.ts",
4143
+ "filePath": "/projects/popovers/documentation/code-examples/dropdown/remote/dropdown-demo.module.ts",
4144
+ "rawContents": "import { CommonModule } from '@angular/common';\n\nimport { NgModule } from '@angular/core';\n\nimport { SkyDropdownModule } from '@skyux/popovers';\n\nimport { DropdownDemoComponent } from './dropdown-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyDropdownModule],\n exports: [DropdownDemoComponent],\n declarations: [DropdownDemoComponent],\n})\nexport class DropdownDemoModule {}\n"
4145
+ },
4146
+ {
4147
+ "fileName": "popover-demo.component.html",
4148
+ "filePath": "/projects/popovers/documentation/code-examples/popover/asynchronous/popover-demo.component.html",
4149
+ "rawContents": "<button\n class=\"sky-btn sky-btn-default\"\n type=\"button\"\n [skyPopover]=\"asyncPopoverRef\"\n>\n Open popover\n</button>\n\n<sky-popover #asyncPopover> My asynchronous popover. </sky-popover>\n"
4150
+ },
4151
+ {
4152
+ "fileName": "popover-demo.component.ts",
4153
+ "filePath": "/projects/popovers/documentation/code-examples/popover/asynchronous/popover-demo.component.ts",
4154
+ "rawContents": "import { AfterViewInit, Component, ViewChild } from '@angular/core';\n\n@Component({\n selector: 'app-popover-demo',\n templateUrl: './popover-demo.component.html',\n})\nexport class PopoverDemoComponent implements AfterViewInit {\n public asyncPopoverRef: any;\n\n @ViewChild('asyncPopover')\n private asyncPopover: any;\n\n public ngAfterViewInit(): void {\n // Simulate asynchronous retrieval.\n setTimeout(() => {\n this.asyncPopoverRef = this.asyncPopover;\n }, 1000);\n }\n}\n"
4155
+ },
4156
+ {
4157
+ "fileName": "popover-demo.module.ts",
4158
+ "filePath": "/projects/popovers/documentation/code-examples/popover/asynchronous/popover-demo.module.ts",
4159
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { SkyPopoverModule } from '@skyux/popovers';\n\nimport { PopoverDemoComponent } from './popover-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyPopoverModule],\n declarations: [PopoverDemoComponent],\n exports: [PopoverDemoComponent],\n})\nexport class PopoverDemoModule {}\n"
4160
+ },
4161
+ {
4162
+ "fileName": "popover-demo.component.html",
4163
+ "filePath": "/projects/popovers/documentation/code-examples/popover/basic/popover-demo.component.html",
4164
+ "rawContents": "<button\n class=\"sky-btn sky-margin-inline-compact\"\n type=\"button\"\n [skyPopover]=\"myPopover\"\n>\n Open popover on click\n</button>\n\n<button\n class=\"sky-btn\"\n type=\"button\"\n [skyPopover]=\"myPopover\"\n skyPopoverTrigger=\"mouseenter\"\n>\n Open popover on hover\n</button>\n\n<sky-popover popoverTitle=\"Did you know?\" #myPopover>\n This is a popover.\n</sky-popover>\n"
4165
+ },
4166
+ {
4167
+ "fileName": "popover-demo.component.ts",
4168
+ "filePath": "/projects/popovers/documentation/code-examples/popover/basic/popover-demo.component.ts",
4169
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-popover-demo',\n templateUrl: './popover-demo.component.html',\n})\nexport class PopoverDemoComponent {}\n"
4170
+ },
4171
+ {
4172
+ "fileName": "popover-demo.module.ts",
4173
+ "filePath": "/projects/popovers/documentation/code-examples/popover/basic/popover-demo.module.ts",
4174
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { SkyPopoverModule } from '@skyux/popovers';\n\nimport { PopoverDemoComponent } from './popover-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyPopoverModule],\n declarations: [PopoverDemoComponent],\n exports: [PopoverDemoComponent],\n})\nexport class PopoverDemoModule {}\n"
4175
+ },
4176
+ {
4177
+ "fileName": "popover-demo.component.html",
4178
+ "filePath": "/projects/popovers/documentation/code-examples/popover/programmatic/popover-demo.component.html",
4179
+ "rawContents": "<sky-help-inline\n [skyPopover]=\"myPopover\"\n [skyPopoverMessageStream]=\"popoverController\"\n></sky-help-inline>\n\n<button\n class=\"sky-btn sky-margin-inline-default\"\n type=\"button\"\n (click)=\"openPopover()\"\n>\n Open popover with message stream\n</button>\n\n<sky-popover\n #myPopover\n (popoverClosed)=\"onPopoverStateChange(false)\"\n (popoverOpened)=\"onPopoverStateChange(true)\"\n>\n This is a popover.\n</sky-popover>\n"
4180
+ },
4181
+ {
4182
+ "fileName": "popover-demo.component.ts",
4183
+ "filePath": "/projects/popovers/documentation/code-examples/popover/programmatic/popover-demo.component.ts",
4184
+ "rawContents": "import { Component } from '@angular/core';\n\nimport { SkyPopoverMessage, SkyPopoverMessageType } from '@skyux/popovers';\n\nimport { Subject } from 'rxjs';\n\n@Component({\n selector: 'app-popover-demo',\n templateUrl: './popover-demo.component.html',\n})\nexport class PopoverDemoComponent {\n public popoverController = new Subject<SkyPopoverMessage>();\n\n private popoverOpen: boolean = false;\n\n public onPopoverStateChange(isOpen: boolean): void {\n this.popoverOpen = isOpen;\n }\n\n public openPopover(): void {\n if (!this.popoverOpen) {\n this.sendMessage(SkyPopoverMessageType.Open);\n }\n }\n\n private sendMessage(type: SkyPopoverMessageType): void {\n const message: SkyPopoverMessage = { type };\n this.popoverController.next(message);\n }\n}\n"
4185
+ },
4186
+ {
4187
+ "fileName": "popover-demo.module.ts",
4188
+ "filePath": "/projects/popovers/documentation/code-examples/popover/programmatic/popover-demo.module.ts",
4189
+ "rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { SkyHelpInlineModule } from '@skyux/indicators';\n\nimport { SkyPopoverModule } from '@skyux/popovers';\n\nimport { PopoverDemoComponent } from './popover-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyHelpInlineModule, SkyPopoverModule],\n declarations: [PopoverDemoComponent],\n exports: [PopoverDemoComponent],\n})\nexport class PopoverDemoModule {}\n"
4190
+ }
4191
+ ]
4192
+ }