@skyux/popovers 6.0.0-beta.1 → 6.0.0-beta.10

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 (52) hide show
  1. package/documentation.json +495 -380
  2. package/esm2020/index.mjs +2 -1
  3. package/esm2020/lib/modules/dropdown/dropdown-button.component.mjs +7 -4
  4. package/esm2020/lib/modules/dropdown/dropdown-item.component.mjs +7 -6
  5. package/esm2020/lib/modules/dropdown/dropdown-menu.component.mjs +9 -10
  6. package/esm2020/lib/modules/dropdown/dropdown.component.mjs +17 -13
  7. package/esm2020/lib/modules/dropdown/dropdown.module.mjs +4 -4
  8. package/esm2020/lib/modules/dropdown/types/dropdown-horizontal-alignment.mjs +1 -1
  9. package/esm2020/lib/modules/dropdown/types/dropdown-menu-change.mjs +1 -1
  10. package/esm2020/lib/modules/dropdown/types/dropdown-message-type.mjs +4 -1
  11. package/esm2020/lib/modules/dropdown/types/dropdown-message.mjs +1 -1
  12. package/esm2020/lib/modules/dropdown/types/dropdown-trigger-type.mjs +1 -1
  13. package/esm2020/lib/modules/popover/popover-adapter.service.mjs +3 -3
  14. package/esm2020/lib/modules/popover/popover-content.component.mjs +22 -43
  15. package/esm2020/lib/modules/popover/popover-context.mjs +1 -1
  16. package/esm2020/lib/modules/popover/popover.component.mjs +19 -12
  17. package/esm2020/lib/modules/popover/popover.directive.mjs +33 -16
  18. package/esm2020/lib/modules/popover/popover.module.mjs +4 -4
  19. package/esm2020/lib/modules/popover/types/popover-type.mjs +2 -0
  20. package/esm2020/lib/modules/shared/sky-popovers-resources.module.mjs +4 -4
  21. package/esm2020/testing/dropdown/dropdown-fixture.mjs +8 -2
  22. package/esm2020/testing/dropdown/dropdown-testing.module.mjs +4 -4
  23. package/esm2020/testing/dropdown/popovers-fixture-dropdown.mjs +1 -1
  24. package/esm2020/testing/popover/popover-fixture.mjs +9 -9
  25. package/esm2020/testing/popover/popover-testing.module.mjs +4 -4
  26. package/fesm2015/skyux-popovers-testing.mjs +23 -17
  27. package/fesm2015/skyux-popovers-testing.mjs.map +1 -1
  28. package/fesm2015/skyux-popovers.mjs +124 -115
  29. package/fesm2015/skyux-popovers.mjs.map +1 -1
  30. package/fesm2020/skyux-popovers-testing.mjs +23 -17
  31. package/fesm2020/skyux-popovers-testing.mjs.map +1 -1
  32. package/fesm2020/skyux-popovers.mjs +124 -112
  33. package/fesm2020/skyux-popovers.mjs.map +1 -1
  34. package/index.d.ts +1 -0
  35. package/lib/modules/dropdown/dropdown-button.component.d.ts +3 -0
  36. package/lib/modules/dropdown/dropdown-item.component.d.ts +4 -1
  37. package/lib/modules/dropdown/dropdown-menu.component.d.ts +7 -3
  38. package/lib/modules/dropdown/dropdown.component.d.ts +15 -12
  39. package/lib/modules/dropdown/types/dropdown-horizontal-alignment.d.ts +3 -0
  40. package/lib/modules/dropdown/types/dropdown-menu-change.d.ts +3 -0
  41. package/lib/modules/dropdown/types/dropdown-message-type.d.ts +3 -0
  42. package/lib/modules/dropdown/types/dropdown-message.d.ts +3 -0
  43. package/lib/modules/dropdown/types/dropdown-trigger-type.d.ts +3 -0
  44. package/lib/modules/popover/popover-content.component.d.ts +13 -12
  45. package/lib/modules/popover/popover-context.d.ts +2 -2
  46. package/lib/modules/popover/popover.component.d.ts +9 -9
  47. package/lib/modules/popover/popover.directive.d.ts +10 -9
  48. package/lib/modules/popover/types/popover-type.d.ts +4 -0
  49. package/package.json +25 -22
  50. package/testing/dropdown/dropdown-fixture.d.ts +7 -7
  51. package/testing/dropdown/popovers-fixture-dropdown.d.ts +2 -2
  52. package/testing/popover/popover-fixture.d.ts +6 -6
@@ -17,7 +17,8 @@
17
17
  "SkyDropdownTriggerType": "type-alias-skydropdowntriggertype",
18
18
  "SkyPopoverAlignment": "type-alias-skypopoveralignment",
19
19
  "SkyPopoverPlacement": "type-alias-skypopoverplacement",
20
- "SkyPopoverTrigger": "type-alias-skypopovertrigger"
20
+ "SkyPopoverTrigger": "type-alias-skypopovertrigger",
21
+ "SkyPopoverType": "type-alias-skypopovertype"
21
22
  },
22
23
  "typedoc": {
23
24
  "id": 0,
@@ -28,14 +29,17 @@
28
29
  "originalName": "",
29
30
  "children": [
30
31
  {
31
- "id": 327,
32
+ "id": 341,
32
33
  "name": "SkyDropdownMessageType",
33
34
  "kind": 8,
34
35
  "kindString": "Enumeration",
35
36
  "flags": {},
37
+ "comment": {
38
+ "shortText": "Specifies the type of message to send."
39
+ },
36
40
  "children": [
37
41
  {
38
- "id": 329,
42
+ "id": 343,
39
43
  "name": "Close",
40
44
  "kind": 16,
41
45
  "kindString": "Enumeration member",
@@ -46,14 +50,14 @@
46
50
  "sources": [
47
51
  {
48
52
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
49
- "line": 10,
53
+ "line": 13,
50
54
  "character": 2
51
55
  }
52
56
  ],
53
57
  "defaultValue": "1"
54
58
  },
55
59
  {
56
- "id": 334,
60
+ "id": 348,
57
61
  "name": "FocusFirstItem",
58
62
  "kind": 16,
59
63
  "kindString": "Enumeration member",
@@ -64,14 +68,14 @@
64
68
  "sources": [
65
69
  {
66
70
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
67
- "line": 36,
71
+ "line": 39,
68
72
  "character": 2
69
73
  }
70
74
  ],
71
75
  "defaultValue": "6"
72
76
  },
73
77
  {
74
- "id": 335,
78
+ "id": 349,
75
79
  "name": "FocusLastItem",
76
80
  "kind": 16,
77
81
  "kindString": "Enumeration member",
@@ -82,14 +86,14 @@
82
86
  "sources": [
83
87
  {
84
88
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
85
- "line": 41,
89
+ "line": 44,
86
90
  "character": 2
87
91
  }
88
92
  ],
89
93
  "defaultValue": "7"
90
94
  },
91
95
  {
92
- "id": 331,
96
+ "id": 345,
93
97
  "name": "FocusNextItem",
94
98
  "kind": 16,
95
99
  "kindString": "Enumeration member",
@@ -100,14 +104,14 @@
100
104
  "sources": [
101
105
  {
102
106
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
103
- "line": 20,
107
+ "line": 23,
104
108
  "character": 2
105
109
  }
106
110
  ],
107
111
  "defaultValue": "3"
108
112
  },
109
113
  {
110
- "id": 332,
114
+ "id": 346,
111
115
  "name": "FocusPreviousItem",
112
116
  "kind": 16,
113
117
  "kindString": "Enumeration member",
@@ -118,14 +122,14 @@
118
122
  "sources": [
119
123
  {
120
124
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
121
- "line": 25,
125
+ "line": 28,
122
126
  "character": 2
123
127
  }
124
128
  ],
125
129
  "defaultValue": "4"
126
130
  },
127
131
  {
128
- "id": 330,
132
+ "id": 344,
129
133
  "name": "FocusTriggerButton",
130
134
  "kind": 16,
131
135
  "kindString": "Enumeration member",
@@ -136,14 +140,14 @@
136
140
  "sources": [
137
141
  {
138
142
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
139
- "line": 15,
143
+ "line": 18,
140
144
  "character": 2
141
145
  }
142
146
  ],
143
147
  "defaultValue": "2"
144
148
  },
145
149
  {
146
- "id": 328,
150
+ "id": 342,
147
151
  "name": "Open",
148
152
  "kind": 16,
149
153
  "kindString": "Enumeration member",
@@ -154,14 +158,14 @@
154
158
  "sources": [
155
159
  {
156
160
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
157
- "line": 5,
161
+ "line": 8,
158
162
  "character": 2
159
163
  }
160
164
  ],
161
165
  "defaultValue": "0"
162
166
  },
163
167
  {
164
- "id": 333,
168
+ "id": 347,
165
169
  "name": "Reposition",
166
170
  "kind": 16,
167
171
  "kindString": "Enumeration member",
@@ -172,7 +176,7 @@
172
176
  "sources": [
173
177
  {
174
178
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
175
- "line": 31,
179
+ "line": 34,
176
180
  "character": 2
177
181
  }
178
182
  ],
@@ -184,27 +188,27 @@
184
188
  "title": "Enumeration members",
185
189
  "kind": 16,
186
190
  "children": [
187
- 329,
188
- 334,
189
- 335,
190
- 331,
191
- 332,
192
- 330,
193
- 328,
194
- 333
191
+ 343,
192
+ 348,
193
+ 349,
194
+ 345,
195
+ 346,
196
+ 344,
197
+ 342,
198
+ 347
195
199
  ]
196
200
  }
197
201
  ],
198
202
  "sources": [
199
203
  {
200
204
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message-type.ts",
201
- "line": 1,
205
+ "line": 4,
202
206
  "character": 12
203
207
  }
204
208
  ]
205
209
  },
206
210
  {
207
- "id": 346,
211
+ "id": 360,
208
212
  "name": "SkyPopoverMessageType",
209
213
  "kind": 8,
210
214
  "kindString": "Enumeration",
@@ -214,7 +218,7 @@
214
218
  },
215
219
  "children": [
216
220
  {
217
- "id": 348,
221
+ "id": 362,
218
222
  "name": "Close",
219
223
  "kind": 16,
220
224
  "kindString": "Enumeration member",
@@ -232,7 +236,7 @@
232
236
  "defaultValue": "1"
233
237
  },
234
238
  {
235
- "id": 350,
239
+ "id": 364,
236
240
  "name": "Focus",
237
241
  "kind": 16,
238
242
  "kindString": "Enumeration member",
@@ -250,7 +254,7 @@
250
254
  "defaultValue": "3"
251
255
  },
252
256
  {
253
- "id": 347,
257
+ "id": 361,
254
258
  "name": "Open",
255
259
  "kind": 16,
256
260
  "kindString": "Enumeration member",
@@ -268,7 +272,7 @@
268
272
  "defaultValue": "0"
269
273
  },
270
274
  {
271
- "id": 349,
275
+ "id": 363,
272
276
  "name": "Reposition",
273
277
  "kind": 16,
274
278
  "kindString": "Enumeration member",
@@ -291,10 +295,10 @@
291
295
  "title": "Enumeration members",
292
296
  "kind": 16,
293
297
  "children": [
294
- 348,
295
- 350,
296
- 347,
297
- 349
298
+ 362,
299
+ 364,
300
+ 361,
301
+ 363
298
302
  ]
299
303
  }
300
304
  ],
@@ -307,7 +311,7 @@
307
311
  ]
308
312
  },
309
313
  {
310
- "id": 337,
314
+ "id": 351,
311
315
  "name": "SkyDropdownModule",
312
316
  "kind": 128,
313
317
  "kindString": "Class",
@@ -332,7 +336,7 @@
332
336
  "title": "Constructors",
333
337
  "kind": 512,
334
338
  "children": [
335
- 338
339
+ 352
336
340
  ]
337
341
  }
338
342
  ],
@@ -345,7 +349,7 @@
345
349
  ]
346
350
  },
347
351
  {
348
- "id": 340,
352
+ "id": 354,
349
353
  "name": "SkyPopoverModule",
350
354
  "kind": 128,
351
355
  "kindString": "Class",
@@ -370,7 +374,7 @@
370
374
  "title": "Constructors",
371
375
  "kind": 512,
372
376
  "children": [
373
- 341
377
+ 355
374
378
  ]
375
379
  }
376
380
  ],
@@ -388,6 +392,9 @@
388
392
  "kind": 128,
389
393
  "kindString": "Class",
390
394
  "flags": {},
395
+ "comment": {
396
+ "shortText": "Specifies the items to display on the dropdown menu."
397
+ },
391
398
  "decorators": [
392
399
  {
393
400
  "name": "Component",
@@ -414,7 +421,7 @@
414
421
  "sources": [
415
422
  {
416
423
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
417
- "line": 47,
424
+ "line": 50,
418
425
  "character": 2
419
426
  }
420
427
  ],
@@ -491,7 +498,7 @@
491
498
  "sources": [
492
499
  {
493
500
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
494
- "line": 41,
501
+ "line": 44,
495
502
  "character": 9
496
503
  }
497
504
  ],
@@ -512,7 +519,7 @@
512
519
  "sources": [
513
520
  {
514
521
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
515
- "line": 43,
522
+ "line": 46,
516
523
  "character": 9
517
524
  }
518
525
  ],
@@ -545,7 +552,7 @@
545
552
  "sources": [
546
553
  {
547
554
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
548
- "line": 29,
555
+ "line": 32,
549
556
  "character": 13
550
557
  }
551
558
  ],
@@ -618,7 +625,7 @@
618
625
  "sources": [
619
626
  {
620
627
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
621
- "line": 37,
628
+ "line": 40,
622
629
  "character": 13
623
630
  }
624
631
  ],
@@ -649,7 +656,7 @@
649
656
  "sources": [
650
657
  {
651
658
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
652
- "line": 66,
659
+ "line": 69,
653
660
  "character": 9
654
661
  }
655
662
  ],
@@ -691,7 +698,7 @@
691
698
  "sources": [
692
699
  {
693
700
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
694
- "line": 76,
701
+ "line": 79,
695
702
  "character": 9
696
703
  }
697
704
  ],
@@ -720,7 +727,7 @@
720
727
  "sources": [
721
728
  {
722
729
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
723
- "line": 53,
730
+ "line": 56,
724
731
  "character": 9
725
732
  }
726
733
  ],
@@ -757,7 +764,7 @@
757
764
  "sources": [
758
765
  {
759
766
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
760
- "line": 85,
767
+ "line": 86,
761
768
  "character": 9
762
769
  }
763
770
  ],
@@ -815,7 +822,7 @@
815
822
  "sources": [
816
823
  {
817
824
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-item.component.ts",
818
- "line": 19,
825
+ "line": 22,
819
826
  "character": 13
820
827
  }
821
828
  ],
@@ -834,6 +841,9 @@
834
841
  "kind": 128,
835
842
  "kindString": "Class",
836
843
  "flags": {},
844
+ "comment": {
845
+ "shortText": "Specifies the button for the dropdown menu."
846
+ },
837
847
  "decorators": [
838
848
  {
839
849
  "name": "Component",
@@ -861,7 +871,7 @@
861
871
  "sources": [
862
872
  {
863
873
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-button.component.ts",
864
- "line": 7,
874
+ "line": 10,
865
875
  "character": 13
866
876
  }
867
877
  ]
@@ -872,6 +882,9 @@
872
882
  "kind": 128,
873
883
  "kindString": "Class",
874
884
  "flags": {},
885
+ "comment": {
886
+ "shortText": "Creates a dropdown menu that displays menu items that users may select."
887
+ },
875
888
  "decorators": [
876
889
  {
877
890
  "name": "Component",
@@ -896,7 +909,7 @@
896
909
  "sources": [
897
910
  {
898
911
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
899
- "line": 222,
912
+ "line": 227,
900
913
  "character": 2
901
914
  }
902
915
  ],
@@ -988,7 +1001,7 @@
988
1001
  "sources": [
989
1002
  {
990
1003
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
991
- "line": 178,
1004
+ "line": 183,
992
1005
  "character": 9
993
1006
  }
994
1007
  ],
@@ -1009,7 +1022,7 @@
1009
1022
  "sources": [
1010
1023
  {
1011
1024
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1012
- "line": 180,
1025
+ "line": 185,
1013
1026
  "character": 9
1014
1027
  }
1015
1028
  ],
@@ -1045,7 +1058,7 @@
1045
1058
  "sources": [
1046
1059
  {
1047
1060
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1048
- "line": 105,
1061
+ "line": 108,
1049
1062
  "character": 9
1050
1063
  }
1051
1064
  ],
@@ -1065,7 +1078,7 @@
1065
1078
  "sources": [
1066
1079
  {
1067
1080
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1068
- "line": 184,
1081
+ "line": 189,
1069
1082
  "character": 9
1070
1083
  }
1071
1084
  ],
@@ -1085,7 +1098,7 @@
1085
1098
  "sources": [
1086
1099
  {
1087
1100
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1088
- "line": 182,
1101
+ "line": 187,
1089
1102
  "character": 9
1090
1103
  }
1091
1104
  ],
@@ -1120,7 +1133,7 @@
1120
1133
  "sources": [
1121
1134
  {
1122
1135
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1123
- "line": 126,
1136
+ "line": 131,
1124
1137
  "character": 9
1125
1138
  }
1126
1139
  ],
@@ -1129,7 +1142,7 @@
1129
1142
  "typeArguments": [
1130
1143
  {
1131
1144
  "type": "reference",
1132
- "id": 325,
1145
+ "id": 339,
1133
1146
  "name": "SkyDropdownMessage"
1134
1147
  }
1135
1148
  ],
@@ -1165,7 +1178,7 @@
1165
1178
  "sources": [
1166
1179
  {
1167
1180
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1168
- "line": 132,
1181
+ "line": 137,
1169
1182
  "character": 9
1170
1183
  }
1171
1184
  ],
@@ -1197,7 +1210,7 @@
1197
1210
  "sources": [
1198
1211
  {
1199
1212
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1200
- "line": 45,
1213
+ "line": 48,
1201
1214
  "character": 13
1202
1215
  }
1203
1216
  ],
@@ -1282,7 +1295,7 @@
1282
1295
  "sources": [
1283
1296
  {
1284
1297
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1285
- "line": 62,
1298
+ "line": 65,
1286
1299
  "character": 13
1287
1300
  }
1288
1301
  ],
@@ -1367,7 +1380,7 @@
1367
1380
  "sources": [
1368
1381
  {
1369
1382
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1370
- "line": 75,
1383
+ "line": 78,
1371
1384
  "character": 13
1372
1385
  }
1373
1386
  ],
@@ -1452,7 +1465,7 @@
1452
1465
  "sources": [
1453
1466
  {
1454
1467
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1455
- "line": 88,
1468
+ "line": 91,
1456
1469
  "character": 13
1457
1470
  }
1458
1471
  ],
@@ -1537,7 +1550,7 @@
1537
1550
  "sources": [
1538
1551
  {
1539
1552
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1540
- "line": 112,
1553
+ "line": 115,
1541
1554
  "character": 13
1542
1555
  }
1543
1556
  ],
@@ -1610,7 +1623,7 @@
1610
1623
  "sources": [
1611
1624
  {
1612
1625
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1613
- "line": 153,
1626
+ "line": 158,
1614
1627
  "character": 13
1615
1628
  }
1616
1629
  ],
@@ -1680,7 +1693,7 @@
1680
1693
  "sources": [
1681
1694
  {
1682
1695
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1683
- "line": 165,
1696
+ "line": 170,
1684
1697
  "character": 13
1685
1698
  }
1686
1699
  ],
@@ -1763,7 +1776,7 @@
1763
1776
  "sources": [
1764
1777
  {
1765
1778
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1766
- "line": 145,
1779
+ "line": 150,
1767
1780
  "character": 13
1768
1781
  }
1769
1782
  ],
@@ -1789,7 +1802,7 @@
1789
1802
  },
1790
1803
  "type": {
1791
1804
  "type": "reference",
1792
- "id": 336,
1805
+ "id": 350,
1793
1806
  "name": "SkyDropdownTriggerType"
1794
1807
  }
1795
1808
  }
@@ -1823,7 +1836,7 @@
1823
1836
  "flags": {},
1824
1837
  "type": {
1825
1838
  "type": "reference",
1826
- "id": 336,
1839
+ "id": 350,
1827
1840
  "name": "SkyDropdownTriggerType"
1828
1841
  }
1829
1842
  }
@@ -1846,7 +1859,7 @@
1846
1859
  "sources": [
1847
1860
  {
1848
1861
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1849
- "line": 246,
1862
+ "line": 251,
1850
1863
  "character": 9
1851
1864
  }
1852
1865
  ],
@@ -1883,7 +1896,7 @@
1883
1896
  "sources": [
1884
1897
  {
1885
1898
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1886
- "line": 229,
1899
+ "line": 234,
1887
1900
  "character": 9
1888
1901
  }
1889
1902
  ],
@@ -1957,7 +1970,7 @@
1957
1970
  "sources": [
1958
1971
  {
1959
1972
  "fileName": "projects/popovers/src/modules/dropdown/dropdown.component.ts",
1960
- "line": 37,
1973
+ "line": 40,
1961
1974
  "character": 13
1962
1975
  }
1963
1976
  ],
@@ -1977,11 +1990,14 @@
1977
1990
  ]
1978
1991
  },
1979
1992
  {
1980
- "id": 111,
1993
+ "id": 112,
1981
1994
  "name": "SkyDropdownMenuComponent",
1982
1995
  "kind": 128,
1983
1996
  "kindString": "Class",
1984
1997
  "flags": {},
1998
+ "comment": {
1999
+ "shortText": "Creates a menu that contains dropdown menu items."
2000
+ },
1985
2001
  "decorators": [
1986
2002
  {
1987
2003
  "name": "Component",
@@ -1998,7 +2014,7 @@
1998
2014
  ],
1999
2015
  "children": [
2000
2016
  {
2001
- "id": 112,
2017
+ "id": 113,
2002
2018
  "name": "constructor",
2003
2019
  "kind": 512,
2004
2020
  "kindString": "Constructor",
@@ -2006,20 +2022,20 @@
2006
2022
  "sources": [
2007
2023
  {
2008
2024
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2009
- "line": 124,
2025
+ "line": 127,
2010
2026
  "character": 2
2011
2027
  }
2012
2028
  ],
2013
2029
  "signatures": [
2014
2030
  {
2015
- "id": 113,
2031
+ "id": 114,
2016
2032
  "name": "SkyDropdownMenuComponent",
2017
2033
  "kind": 16384,
2018
2034
  "kindString": "Constructor signature",
2019
2035
  "flags": {},
2020
2036
  "parameters": [
2021
2037
  {
2022
- "id": 114,
2038
+ "id": 115,
2023
2039
  "name": "changeDetector",
2024
2040
  "kind": 32768,
2025
2041
  "kindString": "Parameter",
@@ -2032,7 +2048,7 @@
2032
2048
  }
2033
2049
  },
2034
2050
  {
2035
- "id": 115,
2051
+ "id": 116,
2036
2052
  "name": "elementRef",
2037
2053
  "kind": 32768,
2038
2054
  "kindString": "Parameter",
@@ -2051,7 +2067,7 @@
2051
2067
  }
2052
2068
  },
2053
2069
  {
2054
- "id": 116,
2070
+ "id": 117,
2055
2071
  "name": "dropdownComponent",
2056
2072
  "kind": 32768,
2057
2073
  "kindString": "Parameter",
@@ -2077,14 +2093,14 @@
2077
2093
  ],
2078
2094
  "type": {
2079
2095
  "type": "reference",
2080
- "id": 111,
2096
+ "id": 112,
2081
2097
  "name": "SkyDropdownMenuComponent"
2082
2098
  }
2083
2099
  }
2084
2100
  ]
2085
2101
  },
2086
2102
  {
2087
- "id": 117,
2103
+ "id": 118,
2088
2104
  "name": "ariaLabelledBy",
2089
2105
  "kind": 1024,
2090
2106
  "kindString": "Property",
@@ -2109,7 +2125,7 @@
2109
2125
  "sources": [
2110
2126
  {
2111
2127
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2112
- "line": 42,
2128
+ "line": 45,
2113
2129
  "character": 9
2114
2130
  }
2115
2131
  ],
@@ -2119,7 +2135,7 @@
2119
2135
  }
2120
2136
  },
2121
2137
  {
2122
- "id": 127,
2138
+ "id": 128,
2123
2139
  "name": "dropdownMenuId",
2124
2140
  "kind": 1024,
2125
2141
  "kindString": "Property",
@@ -2129,7 +2145,7 @@
2129
2145
  "sources": [
2130
2146
  {
2131
2147
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2132
- "line": 90,
2148
+ "line": 93,
2133
2149
  "character": 9
2134
2150
  }
2135
2151
  ],
@@ -2140,7 +2156,7 @@
2140
2156
  "defaultValue": "..."
2141
2157
  },
2142
2158
  {
2143
- "id": 126,
2159
+ "id": 127,
2144
2160
  "name": "menuChanges",
2145
2161
  "kind": 1024,
2146
2162
  "kindString": "Property",
@@ -2165,7 +2181,7 @@
2165
2181
  "sources": [
2166
2182
  {
2167
2183
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2168
- "line": 88,
2184
+ "line": 91,
2169
2185
  "character": 9
2170
2186
  }
2171
2187
  ],
@@ -2174,7 +2190,7 @@
2174
2190
  "typeArguments": [
2175
2191
  {
2176
2192
  "type": "reference",
2177
- "id": 321,
2193
+ "id": 335,
2178
2194
  "name": "SkyDropdownMenuChange"
2179
2195
  }
2180
2196
  ],
@@ -2185,7 +2201,7 @@
2185
2201
  "defaultValue": "..."
2186
2202
  },
2187
2203
  {
2188
- "id": 134,
2204
+ "id": 135,
2189
2205
  "name": "menuItems",
2190
2206
  "kind": 1024,
2191
2207
  "kindString": "Property",
@@ -2210,7 +2226,7 @@
2210
2226
  "sources": [
2211
2227
  {
2212
2228
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2213
- "line": 114,
2229
+ "line": 117,
2214
2230
  "character": 9
2215
2231
  }
2216
2232
  ],
@@ -2229,7 +2245,7 @@
2229
2245
  }
2230
2246
  },
2231
2247
  {
2232
- "id": 118,
2248
+ "id": 119,
2233
2249
  "name": "ariaRole",
2234
2250
  "kind": 262144,
2235
2251
  "kindString": "Accessor",
@@ -2251,13 +2267,13 @@
2251
2267
  "sources": [
2252
2268
  {
2253
2269
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2254
- "line": 54,
2270
+ "line": 57,
2255
2271
  "character": 13
2256
2272
  }
2257
2273
  ],
2258
2274
  "getSignature": [
2259
2275
  {
2260
- "id": 119,
2276
+ "id": 120,
2261
2277
  "name": "ariaRole",
2262
2278
  "kind": 524288,
2263
2279
  "kindString": "Get signature",
@@ -2279,7 +2295,7 @@
2279
2295
  ],
2280
2296
  "setSignature": [
2281
2297
  {
2282
- "id": 120,
2298
+ "id": 121,
2283
2299
  "name": "ariaRole",
2284
2300
  "kind": 1048576,
2285
2301
  "kindString": "Set signature",
@@ -2295,7 +2311,7 @@
2295
2311
  },
2296
2312
  "parameters": [
2297
2313
  {
2298
- "id": 121,
2314
+ "id": 122,
2299
2315
  "name": "value",
2300
2316
  "kind": 32768,
2301
2317
  "kindString": "Parameter",
@@ -2314,7 +2330,7 @@
2314
2330
  ]
2315
2331
  },
2316
2332
  {
2317
- "id": 130,
2333
+ "id": 131,
2318
2334
  "name": "menuIndex",
2319
2335
  "kind": 262144,
2320
2336
  "kindString": "Accessor",
@@ -2324,13 +2340,13 @@
2324
2340
  "sources": [
2325
2341
  {
2326
2342
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2327
- "line": 97,
2343
+ "line": 100,
2328
2344
  "character": 13
2329
2345
  }
2330
2346
  ],
2331
2347
  "getSignature": [
2332
2348
  {
2333
- "id": 131,
2349
+ "id": 132,
2334
2350
  "name": "menuIndex",
2335
2351
  "kind": 524288,
2336
2352
  "kindString": "Get signature",
@@ -2343,14 +2359,14 @@
2343
2359
  ],
2344
2360
  "setSignature": [
2345
2361
  {
2346
- "id": 132,
2362
+ "id": 133,
2347
2363
  "name": "menuIndex",
2348
2364
  "kind": 1048576,
2349
2365
  "kindString": "Set signature",
2350
2366
  "flags": {},
2351
2367
  "parameters": [
2352
2368
  {
2353
- "id": 133,
2369
+ "id": 134,
2354
2370
  "name": "value",
2355
2371
  "kind": 32768,
2356
2372
  "kindString": "Parameter",
@@ -2369,7 +2385,7 @@
2369
2385
  ]
2370
2386
  },
2371
2387
  {
2372
- "id": 122,
2388
+ "id": 123,
2373
2389
  "name": "useNativeFocus",
2374
2390
  "kind": 262144,
2375
2391
  "kindString": "Accessor",
@@ -2391,13 +2407,13 @@
2391
2407
  "sources": [
2392
2408
  {
2393
2409
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2394
- "line": 70,
2410
+ "line": 73,
2395
2411
  "character": 13
2396
2412
  }
2397
2413
  ],
2398
2414
  "getSignature": [
2399
2415
  {
2400
- "id": 123,
2416
+ "id": 124,
2401
2417
  "name": "useNativeFocus",
2402
2418
  "kind": 524288,
2403
2419
  "kindString": "Get signature",
@@ -2419,7 +2435,7 @@
2419
2435
  ],
2420
2436
  "setSignature": [
2421
2437
  {
2422
- "id": 124,
2438
+ "id": 125,
2423
2439
  "name": "useNativeFocus",
2424
2440
  "kind": 1048576,
2425
2441
  "kindString": "Set signature",
@@ -2435,7 +2451,7 @@
2435
2451
  },
2436
2452
  "parameters": [
2437
2453
  {
2438
- "id": 125,
2454
+ "id": 126,
2439
2455
  "name": "value",
2440
2456
  "kind": 32768,
2441
2457
  "kindString": "Parameter",
@@ -2454,7 +2470,7 @@
2454
2470
  ]
2455
2471
  },
2456
2472
  {
2457
- "id": 143,
2473
+ "id": 144,
2458
2474
  "name": "focusFirstItem",
2459
2475
  "kind": 2048,
2460
2476
  "kindString": "Method",
@@ -2464,13 +2480,13 @@
2464
2480
  "sources": [
2465
2481
  {
2466
2482
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2467
- "line": 199,
2483
+ "line": 200,
2468
2484
  "character": 9
2469
2485
  }
2470
2486
  ],
2471
2487
  "signatures": [
2472
2488
  {
2473
- "id": 144,
2489
+ "id": 145,
2474
2490
  "name": "focusFirstItem",
2475
2491
  "kind": 4096,
2476
2492
  "kindString": "Call signature",
@@ -2483,7 +2499,7 @@
2483
2499
  ]
2484
2500
  },
2485
2501
  {
2486
- "id": 145,
2502
+ "id": 146,
2487
2503
  "name": "focusLastItem",
2488
2504
  "kind": 2048,
2489
2505
  "kindString": "Method",
@@ -2493,13 +2509,13 @@
2493
2509
  "sources": [
2494
2510
  {
2495
2511
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2496
- "line": 214,
2512
+ "line": 215,
2497
2513
  "character": 9
2498
2514
  }
2499
2515
  ],
2500
2516
  "signatures": [
2501
2517
  {
2502
- "id": 146,
2518
+ "id": 147,
2503
2519
  "name": "focusLastItem",
2504
2520
  "kind": 4096,
2505
2521
  "kindString": "Call signature",
@@ -2512,7 +2528,7 @@
2512
2528
  ]
2513
2529
  },
2514
2530
  {
2515
- "id": 149,
2531
+ "id": 150,
2516
2532
  "name": "focusNextItem",
2517
2533
  "kind": 2048,
2518
2534
  "kindString": "Method",
@@ -2522,13 +2538,13 @@
2522
2538
  "sources": [
2523
2539
  {
2524
2540
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2525
- "line": 244,
2541
+ "line": 245,
2526
2542
  "character": 9
2527
2543
  }
2528
2544
  ],
2529
2545
  "signatures": [
2530
2546
  {
2531
- "id": 150,
2547
+ "id": 151,
2532
2548
  "name": "focusNextItem",
2533
2549
  "kind": 4096,
2534
2550
  "kindString": "Call signature",
@@ -2541,7 +2557,7 @@
2541
2557
  ]
2542
2558
  },
2543
2559
  {
2544
- "id": 147,
2560
+ "id": 148,
2545
2561
  "name": "focusPreviousItem",
2546
2562
  "kind": 2048,
2547
2563
  "kindString": "Method",
@@ -2551,13 +2567,13 @@
2551
2567
  "sources": [
2552
2568
  {
2553
2569
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2554
- "line": 229,
2570
+ "line": 230,
2555
2571
  "character": 9
2556
2572
  }
2557
2573
  ],
2558
2574
  "signatures": [
2559
2575
  {
2560
- "id": 148,
2576
+ "id": 149,
2561
2577
  "name": "focusPreviousItem",
2562
2578
  "kind": 4096,
2563
2579
  "kindString": "Call signature",
@@ -2570,7 +2586,7 @@
2570
2586
  ]
2571
2587
  },
2572
2588
  {
2573
- "id": 139,
2589
+ "id": 140,
2574
2590
  "name": "ngAfterContentInit",
2575
2591
  "kind": 2048,
2576
2592
  "kindString": "Method",
@@ -2580,13 +2596,13 @@
2580
2596
  "sources": [
2581
2597
  {
2582
2598
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2583
- "line": 130,
2599
+ "line": 133,
2584
2600
  "character": 9
2585
2601
  }
2586
2602
  ],
2587
2603
  "signatures": [
2588
2604
  {
2589
- "id": 140,
2605
+ "id": 141,
2590
2606
  "name": "ngAfterContentInit",
2591
2607
  "kind": 4096,
2592
2608
  "kindString": "Call signature",
@@ -2607,7 +2623,7 @@
2607
2623
  }
2608
2624
  },
2609
2625
  {
2610
- "id": 141,
2626
+ "id": 142,
2611
2627
  "name": "ngOnDestroy",
2612
2628
  "kind": 2048,
2613
2629
  "kindString": "Method",
@@ -2617,13 +2633,13 @@
2617
2633
  "sources": [
2618
2634
  {
2619
2635
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2620
- "line": 193,
2636
+ "line": 195,
2621
2637
  "character": 9
2622
2638
  }
2623
2639
  ],
2624
2640
  "signatures": [
2625
2641
  {
2626
- "id": 142,
2642
+ "id": 143,
2627
2643
  "name": "ngOnDestroy",
2628
2644
  "kind": 4096,
2629
2645
  "kindString": "Call signature",
@@ -2644,7 +2660,7 @@
2644
2660
  }
2645
2661
  },
2646
2662
  {
2647
- "id": 151,
2663
+ "id": 152,
2648
2664
  "name": "reset",
2649
2665
  "kind": 2048,
2650
2666
  "kindString": "Method",
@@ -2654,13 +2670,13 @@
2654
2670
  "sources": [
2655
2671
  {
2656
2672
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2657
- "line": 259,
2673
+ "line": 260,
2658
2674
  "character": 9
2659
2675
  }
2660
2676
  ],
2661
2677
  "signatures": [
2662
2678
  {
2663
- "id": 152,
2679
+ "id": 153,
2664
2680
  "name": "reset",
2665
2681
  "kind": 4096,
2666
2682
  "kindString": "Call signature",
@@ -2678,46 +2694,46 @@
2678
2694
  "title": "Constructors",
2679
2695
  "kind": 512,
2680
2696
  "children": [
2681
- 112
2697
+ 113
2682
2698
  ]
2683
2699
  },
2684
2700
  {
2685
2701
  "title": "Properties",
2686
2702
  "kind": 1024,
2687
2703
  "children": [
2688
- 117,
2704
+ 118,
2705
+ 128,
2689
2706
  127,
2690
- 126,
2691
- 134
2707
+ 135
2692
2708
  ]
2693
2709
  },
2694
2710
  {
2695
2711
  "title": "Accessors",
2696
2712
  "kind": 262144,
2697
2713
  "children": [
2698
- 118,
2699
- 130,
2700
- 122
2714
+ 119,
2715
+ 131,
2716
+ 123
2701
2717
  ]
2702
2718
  },
2703
2719
  {
2704
2720
  "title": "Methods",
2705
2721
  "kind": 2048,
2706
2722
  "children": [
2707
- 143,
2708
- 145,
2709
- 149,
2710
- 147,
2711
- 139,
2712
- 141,
2713
- 151
2723
+ 144,
2724
+ 146,
2725
+ 150,
2726
+ 148,
2727
+ 140,
2728
+ 142,
2729
+ 152
2714
2730
  ]
2715
2731
  }
2716
2732
  ],
2717
2733
  "sources": [
2718
2734
  {
2719
2735
  "fileName": "projects/popovers/src/modules/dropdown/dropdown-menu.component.ts",
2720
- "line": 35,
2736
+ "line": 38,
2721
2737
  "character": 13
2722
2738
  }
2723
2739
  ],
@@ -2737,7 +2753,7 @@
2737
2753
  ]
2738
2754
  },
2739
2755
  {
2740
- "id": 238,
2756
+ "id": 239,
2741
2757
  "name": "SkyPopoverComponent",
2742
2758
  "kind": 128,
2743
2759
  "kindString": "Class",
@@ -2758,7 +2774,7 @@
2758
2774
  ],
2759
2775
  "children": [
2760
2776
  {
2761
- "id": 239,
2777
+ "id": 240,
2762
2778
  "name": "constructor",
2763
2779
  "kind": 512,
2764
2780
  "kindString": "Constructor",
@@ -2766,20 +2782,20 @@
2766
2782
  "sources": [
2767
2783
  {
2768
2784
  "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2769
- "line": 135,
2785
+ "line": 141,
2770
2786
  "character": 2
2771
2787
  }
2772
2788
  ],
2773
2789
  "signatures": [
2774
2790
  {
2775
- "id": 240,
2791
+ "id": 241,
2776
2792
  "name": "SkyPopoverComponent",
2777
2793
  "kind": 16384,
2778
2794
  "kindString": "Constructor signature",
2779
2795
  "flags": {},
2780
2796
  "parameters": [
2781
2797
  {
2782
- "id": 241,
2798
+ "id": 242,
2783
2799
  "name": "overlayService",
2784
2800
  "kind": 32768,
2785
2801
  "kindString": "Parameter",
@@ -2792,14 +2808,14 @@
2792
2808
  ],
2793
2809
  "type": {
2794
2810
  "type": "reference",
2795
- "id": 238,
2811
+ "id": 239,
2796
2812
  "name": "SkyPopoverComponent"
2797
2813
  }
2798
2814
  }
2799
2815
  ]
2800
2816
  },
2801
2817
  {
2802
- "id": 260,
2818
+ "id": 264,
2803
2819
  "name": "isMouseEnter",
2804
2820
  "kind": 1024,
2805
2821
  "kindString": "Property",
@@ -2809,7 +2825,7 @@
2809
2825
  "sources": [
2810
2826
  {
2811
2827
  "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2812
- "line": 113,
2828
+ "line": 117,
2813
2829
  "character": 9
2814
2830
  }
2815
2831
  ],
@@ -2820,7 +2836,7 @@
2820
2836
  "defaultValue": "false"
2821
2837
  },
2822
2838
  {
2823
- "id": 256,
2839
+ "id": 260,
2824
2840
  "name": "popoverClosed",
2825
2841
  "kind": 1024,
2826
2842
  "kindString": "Property",
@@ -2845,7 +2861,7 @@
2845
2861
  "sources": [
2846
2862
  {
2847
2863
  "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2848
- "line": 92,
2864
+ "line": 96,
2849
2865
  "character": 9
2850
2866
  }
2851
2867
  ],
@@ -2854,7 +2870,7 @@
2854
2870
  "typeArguments": [
2855
2871
  {
2856
2872
  "type": "reference",
2857
- "id": 238,
2873
+ "id": 239,
2858
2874
  "name": "SkyPopoverComponent"
2859
2875
  }
2860
2876
  ],
@@ -2865,7 +2881,7 @@
2865
2881
  "defaultValue": "..."
2866
2882
  },
2867
2883
  {
2868
- "id": 257,
2884
+ "id": 261,
2869
2885
  "name": "popoverOpened",
2870
2886
  "kind": 1024,
2871
2887
  "kindString": "Property",
@@ -2890,7 +2906,7 @@
2890
2906
  "sources": [
2891
2907
  {
2892
2908
  "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2893
- "line": 98,
2909
+ "line": 102,
2894
2910
  "character": 9
2895
2911
  }
2896
2912
  ],
@@ -2899,7 +2915,7 @@
2899
2915
  "typeArguments": [
2900
2916
  {
2901
2917
  "type": "reference",
2902
- "id": 238,
2918
+ "id": 239,
2903
2919
  "name": "SkyPopoverComponent"
2904
2920
  }
2905
2921
  ],
@@ -2910,7 +2926,7 @@
2910
2926
  "defaultValue": "..."
2911
2927
  },
2912
2928
  {
2913
- "id": 254,
2929
+ "id": 255,
2914
2930
  "name": "popoverTitle",
2915
2931
  "kind": 1024,
2916
2932
  "kindString": "Property",
@@ -2935,7 +2951,7 @@
2935
2951
  "sources": [
2936
2952
  {
2937
2953
  "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2938
- "line": 78,
2954
+ "line": 77,
2939
2955
  "character": 9
2940
2956
  }
2941
2957
  ],
@@ -2945,57 +2961,7 @@
2945
2961
  }
2946
2962
  },
2947
2963
  {
2948
- "id": 255,
2949
- "name": "popoverType",
2950
- "kind": 1024,
2951
- "kindString": "Property",
2952
- "flags": {
2953
- "isPublic": true
2954
- },
2955
- "comment": {
2956
- "shortText": "Specifies the type of popover.\nOptions include `\"info\"` and `\"danger\"`.",
2957
- "tags": [
2958
- {
2959
- "tag": "default",
2960
- "text": "\"info\"\n"
2961
- }
2962
- ]
2963
- },
2964
- "decorators": [
2965
- {
2966
- "name": "Input",
2967
- "type": {
2968
- "type": "reference",
2969
- "qualifiedName": "InputDecorator",
2970
- "package": "@angular/core",
2971
- "name": "Input"
2972
- },
2973
- "arguments": {}
2974
- }
2975
- ],
2976
- "sources": [
2977
- {
2978
- "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
2979
- "line": 86,
2980
- "character": 9
2981
- }
2982
- ],
2983
- "type": {
2984
- "type": "union",
2985
- "types": [
2986
- {
2987
- "type": "literal",
2988
- "value": "danger"
2989
- },
2990
- {
2991
- "type": "literal",
2992
- "value": "info"
2993
- }
2994
- ]
2995
- }
2996
- },
2997
- {
2998
- "id": 242,
2964
+ "id": 243,
2999
2965
  "name": "alignment",
3000
2966
  "kind": 262144,
3001
2967
  "kindString": "Accessor",
@@ -3023,13 +2989,13 @@
3023
2989
  ],
3024
2990
  "getSignature": [
3025
2991
  {
3026
- "id": 243,
2992
+ "id": 244,
3027
2993
  "name": "alignment",
3028
2994
  "kind": 524288,
3029
2995
  "kindString": "Get signature",
3030
2996
  "flags": {},
3031
2997
  "comment": {
3032
- "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element.\nThe `skyPopoverAlignment` property on the popover directive overwrites this property.\nOptions include:`\"center\"`, `\"right\"`, and `'\"left\"`.",
2998
+ "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element.\nThe `skyPopoverAlignment` property on the popover directive takes precedence over this property when specified.",
3033
2999
  "tags": [
3034
3000
  {
3035
3001
  "tag": "default",
@@ -3039,20 +3005,20 @@
3039
3005
  },
3040
3006
  "type": {
3041
3007
  "type": "reference",
3042
- "id": 343,
3008
+ "id": 357,
3043
3009
  "name": "SkyPopoverAlignment"
3044
3010
  }
3045
3011
  }
3046
3012
  ],
3047
3013
  "setSignature": [
3048
3014
  {
3049
- "id": 244,
3015
+ "id": 245,
3050
3016
  "name": "alignment",
3051
3017
  "kind": 1048576,
3052
3018
  "kindString": "Set signature",
3053
3019
  "flags": {},
3054
3020
  "comment": {
3055
- "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element.\nThe `skyPopoverAlignment` property on the popover directive overwrites this property.\nOptions include:`\"center\"`, `\"right\"`, and `'\"left\"`.",
3021
+ "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element.\nThe `skyPopoverAlignment` property on the popover directive takes precedence over this property when specified.",
3056
3022
  "tags": [
3057
3023
  {
3058
3024
  "tag": "default",
@@ -3062,14 +3028,14 @@
3062
3028
  },
3063
3029
  "parameters": [
3064
3030
  {
3065
- "id": 245,
3031
+ "id": 246,
3066
3032
  "name": "value",
3067
3033
  "kind": 32768,
3068
3034
  "kindString": "Parameter",
3069
3035
  "flags": {},
3070
3036
  "type": {
3071
3037
  "type": "reference",
3072
- "id": 343,
3038
+ "id": 357,
3073
3039
  "name": "SkyPopoverAlignment"
3074
3040
  }
3075
3041
  }
@@ -3082,7 +3048,7 @@
3082
3048
  ]
3083
3049
  },
3084
3050
  {
3085
- "id": 246,
3051
+ "id": 247,
3086
3052
  "name": "dismissOnBlur",
3087
3053
  "kind": 262144,
3088
3054
  "kindString": "Accessor",
@@ -3110,7 +3076,7 @@
3110
3076
  ],
3111
3077
  "getSignature": [
3112
3078
  {
3113
- "id": 247,
3079
+ "id": 248,
3114
3080
  "name": "dismissOnBlur",
3115
3081
  "kind": 524288,
3116
3082
  "kindString": "Get signature",
@@ -3132,7 +3098,7 @@
3132
3098
  ],
3133
3099
  "setSignature": [
3134
3100
  {
3135
- "id": 248,
3101
+ "id": 249,
3136
3102
  "name": "dismissOnBlur",
3137
3103
  "kind": 1048576,
3138
3104
  "kindString": "Set signature",
@@ -3148,7 +3114,7 @@
3148
3114
  },
3149
3115
  "parameters": [
3150
3116
  {
3151
- "id": 249,
3117
+ "id": 250,
3152
3118
  "name": "value",
3153
3119
  "kind": 32768,
3154
3120
  "kindString": "Parameter",
@@ -3167,7 +3133,7 @@
3167
3133
  ]
3168
3134
  },
3169
3135
  {
3170
- "id": 250,
3136
+ "id": 251,
3171
3137
  "name": "placement",
3172
3138
  "kind": 262144,
3173
3139
  "kindString": "Accessor",
@@ -3189,19 +3155,19 @@
3189
3155
  "sources": [
3190
3156
  {
3191
3157
  "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
3192
- "line": 66,
3158
+ "line": 65,
3193
3159
  "character": 13
3194
3160
  }
3195
3161
  ],
3196
3162
  "getSignature": [
3197
3163
  {
3198
- "id": 251,
3164
+ "id": 252,
3199
3165
  "name": "placement",
3200
3166
  "kind": 524288,
3201
3167
  "kindString": "Get signature",
3202
3168
  "flags": {},
3203
3169
  "comment": {
3204
- "shortText": "Specifies the placement of the popover in relation to the trigger element.\nThe `skyPopoverPlacement` property on the popover directive overwrites this property.\nOptions include:`\"above\"`, `\"below\"`, `\"right\"`, and `\"left\"`.",
3170
+ "shortText": "Specifies the placement of the popover in relation to the trigger element.\nThe `skyPopoverPlacement` property on the popover directive takes precedence over this property when specified.",
3205
3171
  "tags": [
3206
3172
  {
3207
3173
  "tag": "default",
@@ -3211,20 +3177,20 @@
3211
3177
  },
3212
3178
  "type": {
3213
3179
  "type": "reference",
3214
- "id": 351,
3180
+ "id": 365,
3215
3181
  "name": "SkyPopoverPlacement"
3216
3182
  }
3217
3183
  }
3218
3184
  ],
3219
3185
  "setSignature": [
3220
3186
  {
3221
- "id": 252,
3187
+ "id": 253,
3222
3188
  "name": "placement",
3223
3189
  "kind": 1048576,
3224
3190
  "kindString": "Set signature",
3225
3191
  "flags": {},
3226
3192
  "comment": {
3227
- "shortText": "Specifies the placement of the popover in relation to the trigger element.\nThe `skyPopoverPlacement` property on the popover directive overwrites this property.\nOptions include:`\"above\"`, `\"below\"`, `\"right\"`, and `\"left\"`.",
3193
+ "shortText": "Specifies the placement of the popover in relation to the trigger element.\nThe `skyPopoverPlacement` property on the popover directive takes precedence over this property when specified.",
3228
3194
  "tags": [
3229
3195
  {
3230
3196
  "tag": "default",
@@ -3234,14 +3200,14 @@
3234
3200
  },
3235
3201
  "parameters": [
3236
3202
  {
3237
- "id": 253,
3203
+ "id": 254,
3238
3204
  "name": "value",
3239
3205
  "kind": 32768,
3240
3206
  "kindString": "Parameter",
3241
3207
  "flags": {},
3242
3208
  "type": {
3243
3209
  "type": "reference",
3244
- "id": 351,
3210
+ "id": 365,
3245
3211
  "name": "SkyPopoverPlacement"
3246
3212
  }
3247
3213
  }
@@ -3254,7 +3220,94 @@
3254
3220
  ]
3255
3221
  },
3256
3222
  {
3257
- "id": 269,
3223
+ "id": 256,
3224
+ "name": "popoverType",
3225
+ "kind": 262144,
3226
+ "kindString": "Accessor",
3227
+ "flags": {
3228
+ "isPublic": true
3229
+ },
3230
+ "decorators": [
3231
+ {
3232
+ "name": "Input",
3233
+ "type": {
3234
+ "type": "reference",
3235
+ "qualifiedName": "InputDecorator",
3236
+ "package": "@angular/core",
3237
+ "name": "Input"
3238
+ },
3239
+ "arguments": {}
3240
+ }
3241
+ ],
3242
+ "sources": [
3243
+ {
3244
+ "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
3245
+ "line": 84,
3246
+ "character": 13
3247
+ }
3248
+ ],
3249
+ "getSignature": [
3250
+ {
3251
+ "id": 257,
3252
+ "name": "popoverType",
3253
+ "kind": 524288,
3254
+ "kindString": "Get signature",
3255
+ "flags": {},
3256
+ "comment": {
3257
+ "shortText": "Specifies the type of popover.",
3258
+ "tags": [
3259
+ {
3260
+ "tag": "default",
3261
+ "text": "\"info\"\n"
3262
+ }
3263
+ ]
3264
+ },
3265
+ "type": {
3266
+ "type": "reference",
3267
+ "id": 374,
3268
+ "name": "SkyPopoverType"
3269
+ }
3270
+ }
3271
+ ],
3272
+ "setSignature": [
3273
+ {
3274
+ "id": 258,
3275
+ "name": "popoverType",
3276
+ "kind": 1048576,
3277
+ "kindString": "Set signature",
3278
+ "flags": {},
3279
+ "comment": {
3280
+ "shortText": "Specifies the type of popover.",
3281
+ "tags": [
3282
+ {
3283
+ "tag": "default",
3284
+ "text": "\"info\"\n"
3285
+ }
3286
+ ]
3287
+ },
3288
+ "parameters": [
3289
+ {
3290
+ "id": 259,
3291
+ "name": "value",
3292
+ "kind": 32768,
3293
+ "kindString": "Parameter",
3294
+ "flags": {},
3295
+ "type": {
3296
+ "type": "reference",
3297
+ "id": 374,
3298
+ "name": "SkyPopoverType"
3299
+ }
3300
+ }
3301
+ ],
3302
+ "type": {
3303
+ "type": "intrinsic",
3304
+ "name": "void"
3305
+ }
3306
+ }
3307
+ ]
3308
+ },
3309
+ {
3310
+ "id": 274,
3258
3311
  "name": "ngOnDestroy",
3259
3312
  "kind": 2048,
3260
3313
  "kindString": "Method",
@@ -3264,13 +3317,13 @@
3264
3317
  "sources": [
3265
3318
  {
3266
3319
  "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
3267
- "line": 137,
3320
+ "line": 143,
3268
3321
  "character": 9
3269
3322
  }
3270
3323
  ],
3271
3324
  "signatures": [
3272
3325
  {
3273
- "id": 270,
3326
+ "id": 275,
3274
3327
  "name": "ngOnDestroy",
3275
3328
  "kind": 4096,
3276
3329
  "kindString": "Call signature",
@@ -3296,17 +3349,16 @@
3296
3349
  "title": "Constructors",
3297
3350
  "kind": 512,
3298
3351
  "children": [
3299
- 239
3352
+ 240
3300
3353
  ]
3301
3354
  },
3302
3355
  {
3303
3356
  "title": "Properties",
3304
3357
  "kind": 1024,
3305
3358
  "children": [
3359
+ 264,
3306
3360
  260,
3307
- 256,
3308
- 257,
3309
- 254,
3361
+ 261,
3310
3362
  255
3311
3363
  ]
3312
3364
  },
@@ -3314,23 +3366,24 @@
3314
3366
  "title": "Accessors",
3315
3367
  "kind": 262144,
3316
3368
  "children": [
3317
- 242,
3318
- 246,
3319
- 250
3369
+ 243,
3370
+ 247,
3371
+ 251,
3372
+ 256
3320
3373
  ]
3321
3374
  },
3322
3375
  {
3323
3376
  "title": "Methods",
3324
3377
  "kind": 2048,
3325
3378
  "children": [
3326
- 269
3379
+ 274
3327
3380
  ]
3328
3381
  }
3329
3382
  ],
3330
3383
  "sources": [
3331
3384
  {
3332
3385
  "fileName": "projects/popovers/src/modules/popover/popover.component.ts",
3333
- "line": 25,
3386
+ "line": 26,
3334
3387
  "character": 13
3335
3388
  }
3336
3389
  ],
@@ -3344,7 +3397,7 @@
3344
3397
  ]
3345
3398
  },
3346
3399
  {
3347
- "id": 284,
3400
+ "id": 289,
3348
3401
  "name": "SkyPopoverDirective",
3349
3402
  "kind": 128,
3350
3403
  "kindString": "Class",
@@ -3365,7 +3418,7 @@
3365
3418
  ],
3366
3419
  "children": [
3367
3420
  {
3368
- "id": 285,
3421
+ "id": 290,
3369
3422
  "name": "constructor",
3370
3423
  "kind": 512,
3371
3424
  "kindString": "Constructor",
@@ -3373,20 +3426,20 @@
3373
3426
  "sources": [
3374
3427
  {
3375
3428
  "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3376
- "line": 62,
3429
+ "line": 71,
3377
3430
  "character": 2
3378
3431
  }
3379
3432
  ],
3380
3433
  "signatures": [
3381
3434
  {
3382
- "id": 286,
3435
+ "id": 291,
3383
3436
  "name": "SkyPopoverDirective",
3384
3437
  "kind": 16384,
3385
3438
  "kindString": "Constructor signature",
3386
3439
  "flags": {},
3387
3440
  "parameters": [
3388
3441
  {
3389
- "id": 287,
3442
+ "id": 292,
3390
3443
  "name": "elementRef",
3391
3444
  "kind": 32768,
3392
3445
  "kindString": "Parameter",
@@ -3407,14 +3460,14 @@
3407
3460
  ],
3408
3461
  "type": {
3409
3462
  "type": "reference",
3410
- "id": 284,
3463
+ "id": 289,
3411
3464
  "name": "SkyPopoverDirective"
3412
3465
  }
3413
3466
  }
3414
3467
  ]
3415
3468
  },
3416
3469
  {
3417
- "id": 288,
3470
+ "id": 293,
3418
3471
  "name": "skyPopover",
3419
3472
  "kind": 1024,
3420
3473
  "kindString": "Property",
@@ -3451,12 +3504,12 @@
3451
3504
  ],
3452
3505
  "type": {
3453
3506
  "type": "reference",
3454
- "id": 238,
3507
+ "id": 239,
3455
3508
  "name": "SkyPopoverComponent"
3456
3509
  }
3457
3510
  },
3458
3511
  {
3459
- "id": 289,
3512
+ "id": 294,
3460
3513
  "name": "skyPopoverAlignment",
3461
3514
  "kind": 1024,
3462
3515
  "kindString": "Property",
@@ -3464,13 +3517,7 @@
3464
3517
  "isPublic": true
3465
3518
  },
3466
3519
  "comment": {
3467
- "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element.\nOptions include:`\"center\"`, `\"right\"`, and `\"left\"`.",
3468
- "tags": [
3469
- {
3470
- "tag": "default",
3471
- "text": "\"center\"\n"
3472
- }
3473
- ]
3520
+ "shortText": "Specifies the horizontal alignment of the popover in relation to the trigger element."
3474
3521
  },
3475
3522
  "decorators": [
3476
3523
  {
@@ -3487,26 +3534,26 @@
3487
3534
  "sources": [
3488
3535
  {
3489
3536
  "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3490
- "line": 30,
3537
+ "line": 28,
3491
3538
  "character": 9
3492
3539
  }
3493
3540
  ],
3494
3541
  "type": {
3495
3542
  "type": "reference",
3496
- "id": 343,
3543
+ "id": 357,
3497
3544
  "name": "SkyPopoverAlignment"
3498
3545
  }
3499
3546
  },
3500
3547
  {
3501
- "id": 290,
3502
- "name": "skyPopoverMessageStream",
3548
+ "id": 301,
3549
+ "name": "skyPopoverPlacement",
3503
3550
  "kind": 1024,
3504
3551
  "kindString": "Property",
3505
3552
  "flags": {
3506
3553
  "isPublic": true
3507
3554
  },
3508
3555
  "comment": {
3509
- "shortText": "Provides an observable to send commands to the popover that respect the `SkyPopoverMessage` type."
3556
+ "shortText": "Specifies the placement of the popover in relation to the trigger element."
3510
3557
  },
3511
3558
  "decorators": [
3512
3559
  {
@@ -3523,42 +3570,24 @@
3523
3570
  "sources": [
3524
3571
  {
3525
3572
  "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3526
- "line": 36,
3573
+ "line": 53,
3527
3574
  "character": 9
3528
3575
  }
3529
3576
  ],
3530
3577
  "type": {
3531
3578
  "type": "reference",
3532
- "typeArguments": [
3533
- {
3534
- "type": "reference",
3535
- "id": 344,
3536
- "name": "SkyPopoverMessage"
3537
- }
3538
- ],
3539
- "qualifiedName": "Subject",
3540
- "package": "rxjs",
3541
- "name": "Subject"
3542
- },
3543
- "defaultValue": "..."
3579
+ "id": 365,
3580
+ "name": "SkyPopoverPlacement"
3581
+ }
3544
3582
  },
3545
3583
  {
3546
- "id": 291,
3547
- "name": "skyPopoverPlacement",
3548
- "kind": 1024,
3549
- "kindString": "Property",
3584
+ "id": 295,
3585
+ "name": "skyPopoverMessageStream",
3586
+ "kind": 262144,
3587
+ "kindString": "Accessor",
3550
3588
  "flags": {
3551
3589
  "isPublic": true
3552
3590
  },
3553
- "comment": {
3554
- "shortText": "Specifies the placement of the popover in relation to the trigger element.\nOptions include:`\"above\"`, `\"below\"`, `\"right\"`, and `\"left\"`.",
3555
- "tags": [
3556
- {
3557
- "tag": "default",
3558
- "text": "\"above\"\n"
3559
- }
3560
- ]
3561
- },
3562
3591
  "decorators": [
3563
3592
  {
3564
3593
  "name": "Input",
@@ -3574,18 +3603,76 @@
3574
3603
  "sources": [
3575
3604
  {
3576
3605
  "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3577
- "line": 44,
3578
- "character": 9
3606
+ "line": 34,
3607
+ "character": 13
3579
3608
  }
3580
3609
  ],
3581
- "type": {
3582
- "type": "reference",
3583
- "id": 351,
3584
- "name": "SkyPopoverPlacement"
3585
- }
3610
+ "getSignature": [
3611
+ {
3612
+ "id": 296,
3613
+ "name": "skyPopoverMessageStream",
3614
+ "kind": 524288,
3615
+ "kindString": "Get signature",
3616
+ "flags": {},
3617
+ "comment": {
3618
+ "shortText": "Provides an RxJS `Subject` to send commands to the popover that respect the `SkyPopoverMessage` type."
3619
+ },
3620
+ "type": {
3621
+ "type": "reference",
3622
+ "typeArguments": [
3623
+ {
3624
+ "type": "reference",
3625
+ "id": 358,
3626
+ "name": "SkyPopoverMessage"
3627
+ }
3628
+ ],
3629
+ "qualifiedName": "Subject",
3630
+ "package": "rxjs",
3631
+ "name": "Subject"
3632
+ }
3633
+ }
3634
+ ],
3635
+ "setSignature": [
3636
+ {
3637
+ "id": 297,
3638
+ "name": "skyPopoverMessageStream",
3639
+ "kind": 1048576,
3640
+ "kindString": "Set signature",
3641
+ "flags": {},
3642
+ "comment": {
3643
+ "shortText": "Provides an RxJS `Subject` to send commands to the popover that respect the `SkyPopoverMessage` type."
3644
+ },
3645
+ "parameters": [
3646
+ {
3647
+ "id": 298,
3648
+ "name": "value",
3649
+ "kind": 32768,
3650
+ "kindString": "Parameter",
3651
+ "flags": {},
3652
+ "type": {
3653
+ "type": "reference",
3654
+ "typeArguments": [
3655
+ {
3656
+ "type": "reference",
3657
+ "id": 358,
3658
+ "name": "SkyPopoverMessage"
3659
+ }
3660
+ ],
3661
+ "qualifiedName": "Subject",
3662
+ "package": "rxjs",
3663
+ "name": "Subject"
3664
+ }
3665
+ }
3666
+ ],
3667
+ "type": {
3668
+ "type": "intrinsic",
3669
+ "name": "void"
3670
+ }
3671
+ }
3672
+ ]
3586
3673
  },
3587
3674
  {
3588
- "id": 292,
3675
+ "id": 302,
3589
3676
  "name": "skyPopoverTrigger",
3590
3677
  "kind": 262144,
3591
3678
  "kindString": "Accessor",
@@ -3607,13 +3694,13 @@
3607
3694
  "sources": [
3608
3695
  {
3609
3696
  "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3610
- "line": 50,
3697
+ "line": 59,
3611
3698
  "character": 13
3612
3699
  }
3613
3700
  ],
3614
3701
  "getSignature": [
3615
3702
  {
3616
- "id": 293,
3703
+ "id": 303,
3617
3704
  "name": "skyPopoverTrigger",
3618
3705
  "kind": 524288,
3619
3706
  "kindString": "Get signature",
@@ -3623,14 +3710,14 @@
3623
3710
  },
3624
3711
  "type": {
3625
3712
  "type": "reference",
3626
- "id": 359,
3713
+ "id": 373,
3627
3714
  "name": "SkyPopoverTrigger"
3628
3715
  }
3629
3716
  }
3630
3717
  ],
3631
3718
  "setSignature": [
3632
3719
  {
3633
- "id": 294,
3720
+ "id": 304,
3634
3721
  "name": "skyPopoverTrigger",
3635
3722
  "kind": 1048576,
3636
3723
  "kindString": "Set signature",
@@ -3640,14 +3727,14 @@
3640
3727
  },
3641
3728
  "parameters": [
3642
3729
  {
3643
- "id": 295,
3730
+ "id": 305,
3644
3731
  "name": "value",
3645
3732
  "kind": 32768,
3646
3733
  "kindString": "Parameter",
3647
3734
  "flags": {},
3648
3735
  "type": {
3649
3736
  "type": "reference",
3650
- "id": 359,
3737
+ "id": 373,
3651
3738
  "name": "SkyPopoverTrigger"
3652
3739
  }
3653
3740
  }
@@ -3660,7 +3747,7 @@
3660
3747
  ]
3661
3748
  },
3662
3749
  {
3663
- "id": 300,
3750
+ "id": 310,
3664
3751
  "name": "ngOnDestroy",
3665
3752
  "kind": 2048,
3666
3753
  "kindString": "Method",
@@ -3670,13 +3757,13 @@
3670
3757
  "sources": [
3671
3758
  {
3672
3759
  "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3673
- "line": 68,
3760
+ "line": 79,
3674
3761
  "character": 9
3675
3762
  }
3676
3763
  ],
3677
3764
  "signatures": [
3678
3765
  {
3679
- "id": 301,
3766
+ "id": 311,
3680
3767
  "name": "ngOnDestroy",
3681
3768
  "kind": 4096,
3682
3769
  "kindString": "Call signature",
@@ -3697,7 +3784,7 @@
3697
3784
  }
3698
3785
  },
3699
3786
  {
3700
- "id": 298,
3787
+ "id": 308,
3701
3788
  "name": "ngOnInit",
3702
3789
  "kind": 2048,
3703
3790
  "kindString": "Method",
@@ -3707,13 +3794,13 @@
3707
3794
  "sources": [
3708
3795
  {
3709
3796
  "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3710
- "line": 64,
3797
+ "line": 75,
3711
3798
  "character": 9
3712
3799
  }
3713
3800
  ],
3714
3801
  "signatures": [
3715
3802
  {
3716
- "id": 299,
3803
+ "id": 309,
3717
3804
  "name": "ngOnInit",
3718
3805
  "kind": 4096,
3719
3806
  "kindString": "Call signature",
@@ -3734,7 +3821,7 @@
3734
3821
  }
3735
3822
  },
3736
3823
  {
3737
- "id": 302,
3824
+ "id": 312,
3738
3825
  "name": "togglePopover",
3739
3826
  "kind": 2048,
3740
3827
  "kindString": "Method",
@@ -3744,13 +3831,13 @@
3744
3831
  "sources": [
3745
3832
  {
3746
3833
  "fileName": "projects/popovers/src/modules/popover/popover.directive.ts",
3747
- "line": 72,
3834
+ "line": 84,
3748
3835
  "character": 9
3749
3836
  }
3750
3837
  ],
3751
3838
  "signatures": [
3752
3839
  {
3753
- "id": 303,
3840
+ "id": 313,
3754
3841
  "name": "togglePopover",
3755
3842
  "kind": 4096,
3756
3843
  "kindString": "Call signature",
@@ -3768,33 +3855,33 @@
3768
3855
  "title": "Constructors",
3769
3856
  "kind": 512,
3770
3857
  "children": [
3771
- 285
3858
+ 290
3772
3859
  ]
3773
3860
  },
3774
3861
  {
3775
3862
  "title": "Properties",
3776
3863
  "kind": 1024,
3777
3864
  "children": [
3778
- 288,
3779
- 289,
3780
- 290,
3781
- 291
3865
+ 293,
3866
+ 294,
3867
+ 301
3782
3868
  ]
3783
3869
  },
3784
3870
  {
3785
3871
  "title": "Accessors",
3786
3872
  "kind": 262144,
3787
3873
  "children": [
3788
- 292
3874
+ 295,
3875
+ 302
3789
3876
  ]
3790
3877
  },
3791
3878
  {
3792
3879
  "title": "Methods",
3793
3880
  "kind": 2048,
3794
3881
  "children": [
3795
- 300,
3796
- 298,
3797
- 302
3882
+ 310,
3883
+ 308,
3884
+ 312
3798
3885
  ]
3799
3886
  }
3800
3887
  ],
@@ -3821,14 +3908,17 @@
3821
3908
  ]
3822
3909
  },
3823
3910
  {
3824
- "id": 321,
3911
+ "id": 335,
3825
3912
  "name": "SkyDropdownMenuChange",
3826
3913
  "kind": 256,
3827
3914
  "kindString": "Interface",
3828
3915
  "flags": {},
3916
+ "comment": {
3917
+ "shortText": "Specifies menu items, including the selected one."
3918
+ },
3829
3919
  "children": [
3830
3920
  {
3831
- "id": 322,
3921
+ "id": 336,
3832
3922
  "name": "activeIndex",
3833
3923
  "kind": 1024,
3834
3924
  "kindString": "Property",
@@ -3841,7 +3931,7 @@
3841
3931
  "sources": [
3842
3932
  {
3843
3933
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-menu-change.ts",
3844
- "line": 7,
3934
+ "line": 10,
3845
3935
  "character": 2
3846
3936
  }
3847
3937
  ],
@@ -3851,7 +3941,7 @@
3851
3941
  }
3852
3942
  },
3853
3943
  {
3854
- "id": 323,
3944
+ "id": 337,
3855
3945
  "name": "items",
3856
3946
  "kind": 1024,
3857
3947
  "kindString": "Property",
@@ -3864,7 +3954,7 @@
3864
3954
  "sources": [
3865
3955
  {
3866
3956
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-menu-change.ts",
3867
- "line": 12,
3957
+ "line": 15,
3868
3958
  "character": 2
3869
3959
  }
3870
3960
  ],
@@ -3878,7 +3968,7 @@
3878
3968
  }
3879
3969
  },
3880
3970
  {
3881
- "id": 324,
3971
+ "id": 338,
3882
3972
  "name": "selectedItem",
3883
3973
  "kind": 1024,
3884
3974
  "kindString": "Property",
@@ -3891,7 +3981,7 @@
3891
3981
  "sources": [
3892
3982
  {
3893
3983
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-menu-change.ts",
3894
- "line": 17,
3984
+ "line": 20,
3895
3985
  "character": 2
3896
3986
  }
3897
3987
  ],
@@ -3907,29 +3997,32 @@
3907
3997
  "title": "Properties",
3908
3998
  "kind": 1024,
3909
3999
  "children": [
3910
- 322,
3911
- 323,
3912
- 324
4000
+ 336,
4001
+ 337,
4002
+ 338
3913
4003
  ]
3914
4004
  }
3915
4005
  ],
3916
4006
  "sources": [
3917
4007
  {
3918
4008
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-menu-change.ts",
3919
- "line": 3,
4009
+ "line": 6,
3920
4010
  "character": 17
3921
4011
  }
3922
4012
  ]
3923
4013
  },
3924
4014
  {
3925
- "id": 325,
4015
+ "id": 339,
3926
4016
  "name": "SkyDropdownMessage",
3927
4017
  "kind": 256,
3928
4018
  "kindString": "Interface",
3929
4019
  "flags": {},
4020
+ "comment": {
4021
+ "shortText": "Specifies the type of message to send to the dropdown component."
4022
+ },
3930
4023
  "children": [
3931
4024
  {
3932
- "id": 326,
4025
+ "id": 340,
3933
4026
  "name": "type",
3934
4027
  "kind": 1024,
3935
4028
  "kindString": "Property",
@@ -3942,13 +4035,13 @@
3942
4035
  "sources": [
3943
4036
  {
3944
4037
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message.ts",
3945
- "line": 7,
4038
+ "line": 10,
3946
4039
  "character": 2
3947
4040
  }
3948
4041
  ],
3949
4042
  "type": {
3950
4043
  "type": "reference",
3951
- "id": 327,
4044
+ "id": 341,
3952
4045
  "name": "SkyDropdownMessageType"
3953
4046
  }
3954
4047
  }
@@ -3958,20 +4051,20 @@
3958
4051
  "title": "Properties",
3959
4052
  "kind": 1024,
3960
4053
  "children": [
3961
- 326
4054
+ 340
3962
4055
  ]
3963
4056
  }
3964
4057
  ],
3965
4058
  "sources": [
3966
4059
  {
3967
4060
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-message.ts",
3968
- "line": 3,
4061
+ "line": 6,
3969
4062
  "character": 17
3970
4063
  }
3971
4064
  ]
3972
4065
  },
3973
4066
  {
3974
- "id": 344,
4067
+ "id": 358,
3975
4068
  "name": "SkyPopoverMessage",
3976
4069
  "kind": 256,
3977
4070
  "kindString": "Interface",
@@ -3981,7 +4074,7 @@
3981
4074
  },
3982
4075
  "children": [
3983
4076
  {
3984
- "id": 345,
4077
+ "id": 359,
3985
4078
  "name": "type",
3986
4079
  "kind": 1024,
3987
4080
  "kindString": "Property",
@@ -4000,7 +4093,7 @@
4000
4093
  ],
4001
4094
  "type": {
4002
4095
  "type": "reference",
4003
- "id": 346,
4096
+ "id": 360,
4004
4097
  "name": "SkyPopoverMessageType"
4005
4098
  }
4006
4099
  }
@@ -4010,7 +4103,7 @@
4010
4103
  "title": "Properties",
4011
4104
  "kind": 1024,
4012
4105
  "children": [
4013
- 345
4106
+ 359
4014
4107
  ]
4015
4108
  }
4016
4109
  ],
@@ -4023,15 +4116,18 @@
4023
4116
  ]
4024
4117
  },
4025
4118
  {
4026
- "id": 320,
4119
+ "id": 334,
4027
4120
  "name": "SkyDropdownHorizontalAlignment",
4028
4121
  "kind": 4194304,
4029
4122
  "kindString": "Type alias",
4030
4123
  "flags": {},
4124
+ "comment": {
4125
+ "shortText": "Specifies the horizontal alignment for the dropdown."
4126
+ },
4031
4127
  "sources": [
4032
4128
  {
4033
4129
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-horizontal-alignment.ts",
4034
- "line": 3,
4130
+ "line": 6,
4035
4131
  "character": 12
4036
4132
  }
4037
4133
  ],
@@ -4041,15 +4137,18 @@
4041
4137
  }
4042
4138
  },
4043
4139
  {
4044
- "id": 336,
4140
+ "id": 350,
4045
4141
  "name": "SkyDropdownTriggerType",
4046
4142
  "kind": 4194304,
4047
4143
  "kindString": "Type alias",
4048
4144
  "flags": {},
4145
+ "comment": {
4146
+ "shortText": "Specifies how users interact with the dropdown button to expose the dropdown menu."
4147
+ },
4049
4148
  "sources": [
4050
4149
  {
4051
4150
  "fileName": "projects/popovers/src/modules/dropdown/types/dropdown-trigger-type.ts",
4052
- "line": 1,
4151
+ "line": 4,
4053
4152
  "character": 12
4054
4153
  }
4055
4154
  ],
@@ -4068,7 +4167,7 @@
4068
4167
  }
4069
4168
  },
4070
4169
  {
4071
- "id": 343,
4170
+ "id": 357,
4072
4171
  "name": "SkyPopoverAlignment",
4073
4172
  "kind": 4194304,
4074
4173
  "kindString": "Type alias",
@@ -4102,7 +4201,7 @@
4102
4201
  }
4103
4202
  },
4104
4203
  {
4105
- "id": 351,
4204
+ "id": 365,
4106
4205
  "name": "SkyPopoverPlacement",
4107
4206
  "kind": 4194304,
4108
4207
  "kindString": "Type alias",
@@ -4140,7 +4239,7 @@
4140
4239
  }
4141
4240
  },
4142
4241
  {
4143
- "id": 359,
4242
+ "id": 373,
4144
4243
  "name": "SkyPopoverTrigger",
4145
4244
  "kind": 4194304,
4146
4245
  "kindString": "Type alias",
@@ -4168,6 +4267,36 @@
4168
4267
  }
4169
4268
  ]
4170
4269
  }
4270
+ },
4271
+ {
4272
+ "id": 374,
4273
+ "name": "SkyPopoverType",
4274
+ "kind": 4194304,
4275
+ "kindString": "Type alias",
4276
+ "flags": {},
4277
+ "comment": {
4278
+ "shortText": "The style type of the popover."
4279
+ },
4280
+ "sources": [
4281
+ {
4282
+ "fileName": "projects/popovers/src/modules/popover/types/popover-type.ts",
4283
+ "line": 4,
4284
+ "character": 12
4285
+ }
4286
+ ],
4287
+ "type": {
4288
+ "type": "union",
4289
+ "types": [
4290
+ {
4291
+ "type": "literal",
4292
+ "value": "danger"
4293
+ },
4294
+ {
4295
+ "type": "literal",
4296
+ "value": "info"
4297
+ }
4298
+ ]
4299
+ }
4171
4300
  }
4172
4301
  ],
4173
4302
  "groups": [
@@ -4175,42 +4304,43 @@
4175
4304
  "title": "Enumerations",
4176
4305
  "kind": 8,
4177
4306
  "children": [
4178
- 327,
4179
- 346
4307
+ 341,
4308
+ 360
4180
4309
  ]
4181
4310
  },
4182
4311
  {
4183
4312
  "title": "Classes",
4184
4313
  "kind": 128,
4185
4314
  "children": [
4186
- 337,
4187
- 340,
4315
+ 351,
4316
+ 354,
4188
4317
  1,
4189
4318
  26,
4190
4319
  29,
4191
- 111,
4192
- 238,
4193
- 284
4320
+ 112,
4321
+ 239,
4322
+ 289
4194
4323
  ]
4195
4324
  },
4196
4325
  {
4197
4326
  "title": "Interfaces",
4198
4327
  "kind": 256,
4199
4328
  "children": [
4200
- 321,
4201
- 325,
4202
- 344
4329
+ 335,
4330
+ 339,
4331
+ 358
4203
4332
  ]
4204
4333
  },
4205
4334
  {
4206
4335
  "title": "Type aliases",
4207
4336
  "kind": 4194304,
4208
4337
  "children": [
4209
- 320,
4210
- 336,
4211
- 343,
4212
- 351,
4213
- 359
4338
+ 334,
4339
+ 350,
4340
+ 357,
4341
+ 365,
4342
+ 373,
4343
+ 374
4214
4344
  ]
4215
4345
  }
4216
4346
  ],
@@ -4241,7 +4371,7 @@
4241
4371
  {
4242
4372
  "fileName": "dropdown-demo.component.html",
4243
4373
  "filePath": "/projects/popovers/documentation/code-examples/dropdown/remote/dropdown-demo.component.html",
4244
- "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"
4374
+ "rawContents": "<p>\n <button\n class=\"sky-btn sky-btn-default sky-margin-inline-sm\"\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-sm\"\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-sm\"\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-sm\"\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-sm\"\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-sm\"\n type=\"button\"\n (click)=\"removeItem()\"\n >\n Remove last 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"
4245
4375
  },
4246
4376
  {
4247
4377
  "fileName": "dropdown-demo.component.ts",
@@ -4253,25 +4383,10 @@
4253
4383
  "filePath": "/projects/popovers/documentation/code-examples/dropdown/remote/dropdown-demo.module.ts",
4254
4384
  "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\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"
4255
4385
  },
4256
- {
4257
- "fileName": "popover-demo.component.html",
4258
- "filePath": "/projects/popovers/documentation/code-examples/popover/asynchronous/popover-demo.component.html",
4259
- "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"
4260
- },
4261
- {
4262
- "fileName": "popover-demo.component.ts",
4263
- "filePath": "/projects/popovers/documentation/code-examples/popover/asynchronous/popover-demo.component.ts",
4264
- "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"
4265
- },
4266
- {
4267
- "fileName": "popover-demo.module.ts",
4268
- "filePath": "/projects/popovers/documentation/code-examples/popover/asynchronous/popover-demo.module.ts",
4269
- "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\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"
4270
- },
4271
4386
  {
4272
4387
  "fileName": "popover-demo.component.html",
4273
4388
  "filePath": "/projects/popovers/documentation/code-examples/popover/basic/popover-demo.component.html",
4274
- "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"
4389
+ "rawContents": "<button\n class=\"sky-btn sky-btn-default sky-margin-inline-sm\"\n type=\"button\"\n [skyPopover]=\"myPopover\"\n>\n Open popover on click\n</button>\n\n<button\n class=\"sky-btn sky-btn-link\"\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"
4275
4390
  },
4276
4391
  {
4277
4392
  "fileName": "popover-demo.component.ts",
@@ -4286,7 +4401,7 @@
4286
4401
  {
4287
4402
  "fileName": "popover-demo.component.html",
4288
4403
  "filePath": "/projects/popovers/documentation/code-examples/popover/programmatic/popover-demo.component.html",
4289
- "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"
4404
+ "rawContents": "<sky-help-inline\n [skyPopover]=\"myPopover\"\n [skyPopoverMessageStream]=\"popoverController\"\n></sky-help-inline>\n\n<button\n class=\"sky-btn sky-btn-default sky-margin-inline-sm\"\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"
4290
4405
  },
4291
4406
  {
4292
4407
  "fileName": "popover-demo.component.ts",