@skyux/layout 5.9.4 → 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 (305) hide show
  1. package/documentation.json +647 -488
  2. package/esm2020/index.mjs +74 -0
  3. package/esm2020/lib/modules/action-button/action-button-adapter-service.mjs +43 -0
  4. package/esm2020/lib/modules/action-button/action-button-container.component.mjs +139 -0
  5. package/esm2020/lib/modules/action-button/action-button-details.component.mjs +14 -0
  6. package/esm2020/lib/modules/action-button/action-button-header.component.mjs +15 -0
  7. package/esm2020/lib/modules/action-button/action-button-icon.component.mjs +40 -0
  8. package/esm2020/lib/modules/action-button/action-button-permalink.mjs +2 -0
  9. package/esm2020/lib/modules/action-button/action-button.component.mjs +34 -0
  10. package/esm2020/lib/modules/action-button/action-button.module.mjs +62 -0
  11. package/esm2020/lib/modules/action-button/types/action-button-container-align-items-type.mjs +2 -0
  12. package/esm2020/lib/modules/action-button/types/action-button-container-align-items.mjs +2 -0
  13. package/esm2020/lib/modules/back-to-top/back-to-top-adapter.service.mjs +84 -0
  14. package/esm2020/lib/modules/back-to-top/back-to-top.component.mjs +26 -0
  15. package/esm2020/lib/modules/back-to-top/back-to-top.directive.mjs +114 -0
  16. package/esm2020/lib/modules/back-to-top/back-to-top.module.mjs +35 -0
  17. package/esm2020/lib/modules/back-to-top/models/back-to-top-message-type.mjs +11 -0
  18. package/esm2020/lib/modules/back-to-top/models/back-to-top-message.mjs +2 -0
  19. package/esm2020/lib/modules/back-to-top/models/back-to-top-options.mjs +2 -0
  20. package/esm2020/lib/modules/box/box-content.component.mjs +15 -0
  21. package/esm2020/lib/modules/box/box-controls.component.mjs +14 -0
  22. package/esm2020/lib/modules/box/box-header.component.mjs +14 -0
  23. package/esm2020/lib/modules/box/box.component.mjs +21 -0
  24. package/esm2020/lib/modules/box/box.module.mjs +38 -0
  25. package/esm2020/lib/modules/card/card-actions.component.mjs +15 -0
  26. package/esm2020/lib/modules/card/card-content.component.mjs +15 -0
  27. package/esm2020/lib/modules/card/card-title.component.mjs +15 -0
  28. package/esm2020/lib/modules/card/card.component.mjs +83 -0
  29. package/esm2020/lib/modules/card/card.module.mjs +64 -0
  30. package/esm2020/lib/modules/definition-list/definition-list-content.component.mjs +14 -0
  31. package/esm2020/lib/modules/definition-list/definition-list-heading.component.mjs +14 -0
  32. package/esm2020/lib/modules/definition-list/definition-list-label.component.mjs +20 -0
  33. package/esm2020/lib/modules/definition-list/definition-list-value.component.mjs +21 -0
  34. package/esm2020/lib/modules/definition-list/definition-list.component.mjs +45 -0
  35. package/esm2020/lib/modules/definition-list/definition-list.module.mjs +47 -0
  36. package/esm2020/lib/modules/definition-list/definition-list.service.mjs +18 -0
  37. package/esm2020/lib/modules/description-list/description-list-adapter-service.mjs +43 -0
  38. package/esm2020/lib/modules/description-list/description-list-content.component.mjs +22 -0
  39. package/esm2020/lib/modules/description-list/description-list-description.component.mjs +51 -0
  40. package/esm2020/lib/modules/description-list/description-list-term.component.mjs +20 -0
  41. package/esm2020/lib/modules/description-list/description-list.component.mjs +101 -0
  42. package/esm2020/lib/modules/description-list/description-list.module.mjs +53 -0
  43. package/esm2020/lib/modules/description-list/description-list.service.mjs +26 -0
  44. package/esm2020/lib/modules/description-list/types/description-list-mode-type.mjs +2 -0
  45. package/esm2020/lib/modules/description-list/types/description-list-mode.mjs +24 -0
  46. package/esm2020/lib/modules/fluid-grid/column.component.mjs +53 -0
  47. package/esm2020/lib/modules/fluid-grid/fluid-grid-gutter-size.mjs +20 -0
  48. package/esm2020/lib/modules/fluid-grid/fluid-grid.component.mjs +62 -0
  49. package/esm2020/lib/modules/fluid-grid/fluid-grid.module.mjs +20 -0
  50. package/esm2020/lib/modules/fluid-grid/row.component.mjs +25 -0
  51. package/esm2020/lib/modules/fluid-grid/types/fluid-grid-gutter-size-type.mjs +2 -0
  52. package/esm2020/lib/modules/format/format-item.mjs +2 -0
  53. package/esm2020/lib/modules/format/format.component.mjs +59 -0
  54. package/esm2020/lib/modules/format/format.module.mjs +18 -0
  55. package/esm2020/lib/modules/inline-delete/inline-delete-adapter.service.mjs +115 -0
  56. package/esm2020/lib/modules/inline-delete/inline-delete-type.mjs +16 -0
  57. package/esm2020/lib/modules/inline-delete/inline-delete.component.mjs +161 -0
  58. package/esm2020/lib/modules/inline-delete/inline-delete.module.mjs +34 -0
  59. package/esm2020/lib/modules/page/page-theme-adapter.service.mjs +26 -0
  60. package/esm2020/lib/modules/page/page.component.mjs +27 -0
  61. package/esm2020/lib/modules/page/page.module.mjs +16 -0
  62. package/esm2020/lib/modules/page-summary/page-summary-adapter.service.mjs +23 -0
  63. package/esm2020/lib/modules/page-summary/page-summary-alert.component.mjs +18 -0
  64. package/esm2020/lib/modules/page-summary/page-summary-content.component.mjs +17 -0
  65. package/esm2020/lib/modules/page-summary/page-summary-image.component.mjs +18 -0
  66. package/esm2020/lib/modules/page-summary/page-summary-key-info.component.mjs +16 -0
  67. package/esm2020/lib/modules/page-summary/page-summary-status.component.mjs +18 -0
  68. package/esm2020/lib/modules/page-summary/page-summary-subtitle.component.mjs +17 -0
  69. package/esm2020/lib/modules/page-summary/page-summary-title.component.mjs +17 -0
  70. package/esm2020/lib/modules/page-summary/page-summary.component.mjs +51 -0
  71. package/esm2020/lib/modules/page-summary/page-summary.module.mjs +60 -0
  72. package/esm2020/lib/modules/shared/sky-layout-resources.module.mjs +60 -0
  73. package/esm2020/lib/modules/text-expand/text-expand-adapter.service.mjs +31 -0
  74. package/esm2020/lib/modules/text-expand/text-expand-modal-context.mjs +6 -0
  75. package/esm2020/lib/modules/text-expand/text-expand-modal.component.mjs +26 -0
  76. package/esm2020/lib/modules/text-expand/text-expand.component.mjs +247 -0
  77. package/esm2020/lib/modules/text-expand/text-expand.module.mjs +35 -0
  78. package/esm2020/lib/modules/text-expand-repeater/text-expand-repeater-adapter.service.mjs +37 -0
  79. package/esm2020/lib/modules/text-expand-repeater/text-expand-repeater.component.mjs +171 -0
  80. package/esm2020/lib/modules/text-expand-repeater/text-expand-repeater.module.mjs +20 -0
  81. package/esm2020/lib/modules/text-expand-repeater/types/text-expand-repeater-list-style-type.mjs +2 -0
  82. package/esm2020/lib/modules/toolbar/toolbar-item.component.mjs +14 -0
  83. package/esm2020/lib/modules/toolbar/toolbar-section.component.mjs +14 -0
  84. package/esm2020/lib/modules/toolbar/toolbar-view-actions.component.mjs +15 -0
  85. package/esm2020/lib/modules/toolbar/toolbar.component.mjs +25 -0
  86. package/esm2020/lib/modules/toolbar/toolbar.module.mjs +37 -0
  87. package/esm2020/skyux-layout.mjs +5 -0
  88. package/esm2020/testing/action-button-fixture.mjs +44 -0
  89. package/esm2020/testing/card-fixture.mjs +63 -0
  90. package/esm2020/testing/page-summary-fixture.mjs +29 -0
  91. package/esm2020/testing/public-api.mjs +4 -0
  92. package/esm2020/testing/skyux-layout-testing.mjs +5 -0
  93. package/fesm2015/{skyux-layout-testing.js → skyux-layout-testing.mjs} +1 -1
  94. package/fesm2015/skyux-layout-testing.mjs.map +1 -0
  95. package/fesm2015/skyux-layout.mjs +2764 -0
  96. package/fesm2015/skyux-layout.mjs.map +1 -0
  97. package/fesm2020/skyux-layout-testing.mjs +139 -0
  98. package/fesm2020/skyux-layout-testing.mjs.map +1 -0
  99. package/fesm2020/skyux-layout.mjs +2760 -0
  100. package/fesm2020/skyux-layout.mjs.map +1 -0
  101. package/lib/modules/card/card-actions.component.d.ts +1 -0
  102. package/lib/modules/card/card-content.component.d.ts +1 -0
  103. package/lib/modules/card/card-title.component.d.ts +1 -0
  104. package/lib/modules/card/card.component.d.ts +3 -0
  105. package/lib/modules/card/card.module.d.ts +3 -0
  106. package/lib/modules/definition-list/definition-list.component.d.ts +2 -1
  107. package/lib/modules/definition-list/definition-list.module.d.ts +3 -0
  108. package/lib/modules/page-summary/page-summary-alert.component.d.ts +1 -0
  109. package/lib/modules/page-summary/page-summary-content.component.d.ts +1 -0
  110. package/lib/modules/page-summary/page-summary-image.component.d.ts +1 -0
  111. package/lib/modules/page-summary/page-summary-key-info.component.d.ts +1 -0
  112. package/lib/modules/page-summary/page-summary-status.component.d.ts +1 -0
  113. package/lib/modules/page-summary/page-summary-subtitle.component.d.ts +1 -0
  114. package/lib/modules/page-summary/page-summary-title.component.d.ts +1 -0
  115. package/lib/modules/page-summary/page-summary.component.d.ts +3 -2
  116. package/lib/modules/page-summary/page-summary.module.d.ts +3 -0
  117. package/package.json +44 -20
  118. package/testing/package.json +5 -5
  119. package/bundles/skyux-layout-testing.umd.js +0 -191
  120. package/bundles/skyux-layout.umd.js +0 -3574
  121. package/esm2015/index.js +0 -74
  122. package/esm2015/index.js.map +0 -1
  123. package/esm2015/lib/modules/action-button/action-button-adapter-service.js +0 -43
  124. package/esm2015/lib/modules/action-button/action-button-adapter-service.js.map +0 -1
  125. package/esm2015/lib/modules/action-button/action-button-container.component.js +0 -145
  126. package/esm2015/lib/modules/action-button/action-button-container.component.js.map +0 -1
  127. package/esm2015/lib/modules/action-button/action-button-details.component.js +0 -17
  128. package/esm2015/lib/modules/action-button/action-button-details.component.js.map +0 -1
  129. package/esm2015/lib/modules/action-button/action-button-header.component.js +0 -19
  130. package/esm2015/lib/modules/action-button/action-button-header.component.js.map +0 -1
  131. package/esm2015/lib/modules/action-button/action-button-icon.component.js +0 -44
  132. package/esm2015/lib/modules/action-button/action-button-icon.component.js.map +0 -1
  133. package/esm2015/lib/modules/action-button/action-button-permalink.js +0 -2
  134. package/esm2015/lib/modules/action-button/action-button-permalink.js.map +0 -1
  135. package/esm2015/lib/modules/action-button/action-button.component.js +0 -39
  136. package/esm2015/lib/modules/action-button/action-button.component.js.map +0 -1
  137. package/esm2015/lib/modules/action-button/action-button.module.js +0 -62
  138. package/esm2015/lib/modules/action-button/action-button.module.js.map +0 -1
  139. package/esm2015/lib/modules/action-button/types/action-button-container-align-items-type.js +0 -2
  140. package/esm2015/lib/modules/action-button/types/action-button-container-align-items-type.js.map +0 -1
  141. package/esm2015/lib/modules/action-button/types/action-button-container-align-items.js +0 -2
  142. package/esm2015/lib/modules/action-button/types/action-button-container-align-items.js.map +0 -1
  143. package/esm2015/lib/modules/back-to-top/back-to-top-adapter.service.js +0 -84
  144. package/esm2015/lib/modules/back-to-top/back-to-top-adapter.service.js.map +0 -1
  145. package/esm2015/lib/modules/back-to-top/back-to-top.component.js +0 -31
  146. package/esm2015/lib/modules/back-to-top/back-to-top.component.js.map +0 -1
  147. package/esm2015/lib/modules/back-to-top/back-to-top.directive.js +0 -114
  148. package/esm2015/lib/modules/back-to-top/back-to-top.directive.js.map +0 -1
  149. package/esm2015/lib/modules/back-to-top/back-to-top.module.js +0 -36
  150. package/esm2015/lib/modules/back-to-top/back-to-top.module.js.map +0 -1
  151. package/esm2015/lib/modules/back-to-top/models/back-to-top-message-type.js +0 -11
  152. package/esm2015/lib/modules/back-to-top/models/back-to-top-message-type.js.map +0 -1
  153. package/esm2015/lib/modules/back-to-top/models/back-to-top-message.js +0 -2
  154. package/esm2015/lib/modules/back-to-top/models/back-to-top-message.js.map +0 -1
  155. package/esm2015/lib/modules/back-to-top/models/back-to-top-options.js +0 -2
  156. package/esm2015/lib/modules/back-to-top/models/back-to-top-options.js.map +0 -1
  157. package/esm2015/lib/modules/box/box-content.component.js +0 -18
  158. package/esm2015/lib/modules/box/box-content.component.js.map +0 -1
  159. package/esm2015/lib/modules/box/box-controls.component.js +0 -17
  160. package/esm2015/lib/modules/box/box-controls.component.js.map +0 -1
  161. package/esm2015/lib/modules/box/box-header.component.js +0 -17
  162. package/esm2015/lib/modules/box/box-header.component.js.map +0 -1
  163. package/esm2015/lib/modules/box/box.component.js +0 -26
  164. package/esm2015/lib/modules/box/box.component.js.map +0 -1
  165. package/esm2015/lib/modules/box/box.module.js +0 -38
  166. package/esm2015/lib/modules/box/box.module.js.map +0 -1
  167. package/esm2015/lib/modules/card/card-actions.component.js +0 -18
  168. package/esm2015/lib/modules/card/card-actions.component.js.map +0 -1
  169. package/esm2015/lib/modules/card/card-content.component.js +0 -17
  170. package/esm2015/lib/modules/card/card-content.component.js.map +0 -1
  171. package/esm2015/lib/modules/card/card-title.component.js +0 -17
  172. package/esm2015/lib/modules/card/card-title.component.js.map +0 -1
  173. package/esm2015/lib/modules/card/card.component.js +0 -79
  174. package/esm2015/lib/modules/card/card.component.js.map +0 -1
  175. package/esm2015/lib/modules/card/card.module.js +0 -61
  176. package/esm2015/lib/modules/card/card.module.js.map +0 -1
  177. package/esm2015/lib/modules/definition-list/definition-list-content.component.js +0 -19
  178. package/esm2015/lib/modules/definition-list/definition-list-content.component.js.map +0 -1
  179. package/esm2015/lib/modules/definition-list/definition-list-heading.component.js +0 -19
  180. package/esm2015/lib/modules/definition-list/definition-list-heading.component.js.map +0 -1
  181. package/esm2015/lib/modules/definition-list/definition-list-label.component.js +0 -25
  182. package/esm2015/lib/modules/definition-list/definition-list-label.component.js.map +0 -1
  183. package/esm2015/lib/modules/definition-list/definition-list-value.component.js +0 -25
  184. package/esm2015/lib/modules/definition-list/definition-list-value.component.js.map +0 -1
  185. package/esm2015/lib/modules/definition-list/definition-list.component.js +0 -44
  186. package/esm2015/lib/modules/definition-list/definition-list.component.js.map +0 -1
  187. package/esm2015/lib/modules/definition-list/definition-list.module.js +0 -44
  188. package/esm2015/lib/modules/definition-list/definition-list.module.js.map +0 -1
  189. package/esm2015/lib/modules/definition-list/definition-list.service.js +0 -18
  190. package/esm2015/lib/modules/definition-list/definition-list.service.js.map +0 -1
  191. package/esm2015/lib/modules/description-list/description-list-adapter-service.js +0 -43
  192. package/esm2015/lib/modules/description-list/description-list-adapter-service.js.map +0 -1
  193. package/esm2015/lib/modules/description-list/description-list-content.component.js +0 -25
  194. package/esm2015/lib/modules/description-list/description-list-content.component.js.map +0 -1
  195. package/esm2015/lib/modules/description-list/description-list-description.component.js +0 -55
  196. package/esm2015/lib/modules/description-list/description-list-description.component.js.map +0 -1
  197. package/esm2015/lib/modules/description-list/description-list-term.component.js +0 -24
  198. package/esm2015/lib/modules/description-list/description-list-term.component.js.map +0 -1
  199. package/esm2015/lib/modules/description-list/description-list.component.js +0 -107
  200. package/esm2015/lib/modules/description-list/description-list.component.js.map +0 -1
  201. package/esm2015/lib/modules/description-list/description-list.module.js +0 -53
  202. package/esm2015/lib/modules/description-list/description-list.module.js.map +0 -1
  203. package/esm2015/lib/modules/description-list/description-list.service.js +0 -26
  204. package/esm2015/lib/modules/description-list/description-list.service.js.map +0 -1
  205. package/esm2015/lib/modules/description-list/types/description-list-mode-type.js +0 -2
  206. package/esm2015/lib/modules/description-list/types/description-list-mode-type.js.map +0 -1
  207. package/esm2015/lib/modules/description-list/types/description-list-mode.js +0 -24
  208. package/esm2015/lib/modules/description-list/types/description-list-mode.js.map +0 -1
  209. package/esm2015/lib/modules/fluid-grid/column.component.js +0 -58
  210. package/esm2015/lib/modules/fluid-grid/column.component.js.map +0 -1
  211. package/esm2015/lib/modules/fluid-grid/fluid-grid-gutter-size.js +0 -20
  212. package/esm2015/lib/modules/fluid-grid/fluid-grid-gutter-size.js.map +0 -1
  213. package/esm2015/lib/modules/fluid-grid/fluid-grid.component.js +0 -66
  214. package/esm2015/lib/modules/fluid-grid/fluid-grid.component.js.map +0 -1
  215. package/esm2015/lib/modules/fluid-grid/fluid-grid.module.js +0 -20
  216. package/esm2015/lib/modules/fluid-grid/fluid-grid.module.js.map +0 -1
  217. package/esm2015/lib/modules/fluid-grid/row.component.js +0 -29
  218. package/esm2015/lib/modules/fluid-grid/row.component.js.map +0 -1
  219. package/esm2015/lib/modules/fluid-grid/types/fluid-grid-gutter-size-type.js +0 -2
  220. package/esm2015/lib/modules/fluid-grid/types/fluid-grid-gutter-size-type.js.map +0 -1
  221. package/esm2015/lib/modules/format/format-item.js +0 -2
  222. package/esm2015/lib/modules/format/format-item.js.map +0 -1
  223. package/esm2015/lib/modules/format/format.component.js +0 -63
  224. package/esm2015/lib/modules/format/format.component.js.map +0 -1
  225. package/esm2015/lib/modules/format/format.module.js +0 -18
  226. package/esm2015/lib/modules/format/format.module.js.map +0 -1
  227. package/esm2015/lib/modules/inline-delete/inline-delete-adapter.service.js +0 -115
  228. package/esm2015/lib/modules/inline-delete/inline-delete-adapter.service.js.map +0 -1
  229. package/esm2015/lib/modules/inline-delete/inline-delete-type.js +0 -16
  230. package/esm2015/lib/modules/inline-delete/inline-delete-type.js.map +0 -1
  231. package/esm2015/lib/modules/inline-delete/inline-delete.component.js +0 -167
  232. package/esm2015/lib/modules/inline-delete/inline-delete.component.js.map +0 -1
  233. package/esm2015/lib/modules/inline-delete/inline-delete.module.js +0 -34
  234. package/esm2015/lib/modules/inline-delete/inline-delete.module.js.map +0 -1
  235. package/esm2015/lib/modules/page/page-theme-adapter.service.js +0 -26
  236. package/esm2015/lib/modules/page/page-theme-adapter.service.js.map +0 -1
  237. package/esm2015/lib/modules/page/page.component.js +0 -31
  238. package/esm2015/lib/modules/page/page.component.js.map +0 -1
  239. package/esm2015/lib/modules/page/page.module.js +0 -16
  240. package/esm2015/lib/modules/page/page.module.js.map +0 -1
  241. package/esm2015/lib/modules/page-summary/page-summary-adapter.service.js +0 -23
  242. package/esm2015/lib/modules/page-summary/page-summary-adapter.service.js.map +0 -1
  243. package/esm2015/lib/modules/page-summary/page-summary-alert.component.js +0 -21
  244. package/esm2015/lib/modules/page-summary/page-summary-alert.component.js.map +0 -1
  245. package/esm2015/lib/modules/page-summary/page-summary-content.component.js +0 -20
  246. package/esm2015/lib/modules/page-summary/page-summary-content.component.js.map +0 -1
  247. package/esm2015/lib/modules/page-summary/page-summary-image.component.js +0 -21
  248. package/esm2015/lib/modules/page-summary/page-summary-image.component.js.map +0 -1
  249. package/esm2015/lib/modules/page-summary/page-summary-key-info.component.js +0 -19
  250. package/esm2015/lib/modules/page-summary/page-summary-key-info.component.js.map +0 -1
  251. package/esm2015/lib/modules/page-summary/page-summary-status.component.js +0 -21
  252. package/esm2015/lib/modules/page-summary/page-summary-status.component.js.map +0 -1
  253. package/esm2015/lib/modules/page-summary/page-summary-subtitle.component.js +0 -20
  254. package/esm2015/lib/modules/page-summary/page-summary-subtitle.component.js.map +0 -1
  255. package/esm2015/lib/modules/page-summary/page-summary-title.component.js +0 -20
  256. package/esm2015/lib/modules/page-summary/page-summary-title.component.js.map +0 -1
  257. package/esm2015/lib/modules/page-summary/page-summary.component.js +0 -50
  258. package/esm2015/lib/modules/page-summary/page-summary.component.js.map +0 -1
  259. package/esm2015/lib/modules/page-summary/page-summary.module.js +0 -57
  260. package/esm2015/lib/modules/page-summary/page-summary.module.js.map +0 -1
  261. package/esm2015/lib/modules/shared/sky-layout-resources.module.js +0 -60
  262. package/esm2015/lib/modules/shared/sky-layout-resources.module.js.map +0 -1
  263. package/esm2015/lib/modules/text-expand/text-expand-adapter.service.js +0 -31
  264. package/esm2015/lib/modules/text-expand/text-expand-adapter.service.js.map +0 -1
  265. package/esm2015/lib/modules/text-expand/text-expand-modal-context.js +0 -6
  266. package/esm2015/lib/modules/text-expand/text-expand-modal-context.js.map +0 -1
  267. package/esm2015/lib/modules/text-expand/text-expand-modal.component.js +0 -30
  268. package/esm2015/lib/modules/text-expand/text-expand-modal.component.js.map +0 -1
  269. package/esm2015/lib/modules/text-expand/text-expand.component.js +0 -252
  270. package/esm2015/lib/modules/text-expand/text-expand.component.js.map +0 -1
  271. package/esm2015/lib/modules/text-expand/text-expand.module.js +0 -36
  272. package/esm2015/lib/modules/text-expand/text-expand.module.js.map +0 -1
  273. package/esm2015/lib/modules/text-expand-repeater/text-expand-repeater-adapter.service.js +0 -37
  274. package/esm2015/lib/modules/text-expand-repeater/text-expand-repeater-adapter.service.js.map +0 -1
  275. package/esm2015/lib/modules/text-expand-repeater/text-expand-repeater.component.js +0 -176
  276. package/esm2015/lib/modules/text-expand-repeater/text-expand-repeater.component.js.map +0 -1
  277. package/esm2015/lib/modules/text-expand-repeater/text-expand-repeater.module.js +0 -20
  278. package/esm2015/lib/modules/text-expand-repeater/text-expand-repeater.module.js.map +0 -1
  279. package/esm2015/lib/modules/text-expand-repeater/types/text-expand-repeater-list-style-type.js +0 -2
  280. package/esm2015/lib/modules/text-expand-repeater/types/text-expand-repeater-list-style-type.js.map +0 -1
  281. package/esm2015/lib/modules/toolbar/toolbar-item.component.js +0 -18
  282. package/esm2015/lib/modules/toolbar/toolbar-item.component.js.map +0 -1
  283. package/esm2015/lib/modules/toolbar/toolbar-section.component.js +0 -18
  284. package/esm2015/lib/modules/toolbar/toolbar-section.component.js.map +0 -1
  285. package/esm2015/lib/modules/toolbar/toolbar-view-actions.component.js +0 -20
  286. package/esm2015/lib/modules/toolbar/toolbar-view-actions.component.js.map +0 -1
  287. package/esm2015/lib/modules/toolbar/toolbar.component.js +0 -29
  288. package/esm2015/lib/modules/toolbar/toolbar.component.js.map +0 -1
  289. package/esm2015/lib/modules/toolbar/toolbar.module.js +0 -37
  290. package/esm2015/lib/modules/toolbar/toolbar.module.js.map +0 -1
  291. package/esm2015/skyux-layout.js +0 -5
  292. package/esm2015/skyux-layout.js.map +0 -1
  293. package/esm2015/testing/action-button-fixture.js +0 -44
  294. package/esm2015/testing/action-button-fixture.js.map +0 -1
  295. package/esm2015/testing/card-fixture.js +0 -63
  296. package/esm2015/testing/card-fixture.js.map +0 -1
  297. package/esm2015/testing/page-summary-fixture.js +0 -29
  298. package/esm2015/testing/page-summary-fixture.js.map +0 -1
  299. package/esm2015/testing/public-api.js +0 -4
  300. package/esm2015/testing/public-api.js.map +0 -1
  301. package/esm2015/testing/skyux-layout-testing.js +0 -5
  302. package/esm2015/testing/skyux-layout-testing.js.map +0 -1
  303. package/fesm2015/skyux-layout-testing.js.map +0 -1
  304. package/fesm2015/skyux-layout.js +0 -2914
  305. package/fesm2015/skyux-layout.js.map +0 -1
@@ -75,7 +75,7 @@
75
75
  "originalName": "",
76
76
  "children": [
77
77
  {
78
- "id": 477,
78
+ "id": 480,
79
79
  "name": "SkyBackToTopMessageType",
80
80
  "kind": 8,
81
81
  "kindString": "Enumeration",
@@ -85,7 +85,7 @@
85
85
  },
86
86
  "children": [
87
87
  {
88
- "id": 478,
88
+ "id": 481,
89
89
  "name": "BackToTop",
90
90
  "kind": 16,
91
91
  "kindString": "Enumeration member",
@@ -108,7 +108,7 @@
108
108
  "title": "Enumeration members",
109
109
  "kind": 16,
110
110
  "children": [
111
- 478
111
+ 481
112
112
  ]
113
113
  }
114
114
  ],
@@ -121,7 +121,7 @@
121
121
  ]
122
122
  },
123
123
  {
124
- "id": 465,
124
+ "id": 468,
125
125
  "name": "SkyActionButtonModule",
126
126
  "kind": 128,
127
127
  "kindString": "Class",
@@ -146,7 +146,7 @@
146
146
  "title": "Constructors",
147
147
  "kind": 512,
148
148
  "children": [
149
- 466
149
+ 469
150
150
  ]
151
151
  }
152
152
  ],
@@ -159,7 +159,7 @@
159
159
  ]
160
160
  },
161
161
  {
162
- "id": 472,
162
+ "id": 475,
163
163
  "name": "SkyBackToTopModule",
164
164
  "kind": 128,
165
165
  "kindString": "Class",
@@ -174,7 +174,7 @@
174
174
  "name": "NgModule"
175
175
  },
176
176
  "arguments": {
177
- "obj": "{\n declarations: [SkyBackToTopComponent, SkyBackToTopDirective],\n imports: [\n CommonModule,\n SkyDockModule,\n SkyI18nModule,\n SkyLayoutResourcesModule,\n ],\n exports: [SkyBackToTopComponent, SkyBackToTopDirective],\n entryComponents: [SkyBackToTopComponent],\n}"
177
+ "obj": "{\n declarations: [SkyBackToTopComponent, SkyBackToTopDirective],\n imports: [\n CommonModule,\n SkyDockModule,\n SkyI18nModule,\n SkyLayoutResourcesModule,\n ],\n exports: [SkyBackToTopComponent, SkyBackToTopDirective],\n}"
178
178
  }
179
179
  }
180
180
  ],
@@ -184,20 +184,20 @@
184
184
  "title": "Constructors",
185
185
  "kind": 512,
186
186
  "children": [
187
- 473
187
+ 476
188
188
  ]
189
189
  }
190
190
  ],
191
191
  "sources": [
192
192
  {
193
193
  "fileName": "projects/layout/src/modules/back-to-top/back-to-top.module.ts",
194
- "line": 22,
194
+ "line": 21,
195
195
  "character": 13
196
196
  }
197
197
  ]
198
198
  },
199
199
  {
200
- "id": 481,
200
+ "id": 484,
201
201
  "name": "SkyBoxModule",
202
202
  "kind": 128,
203
203
  "kindString": "Class",
@@ -222,7 +222,7 @@
222
222
  "title": "Constructors",
223
223
  "kind": 512,
224
224
  "children": [
225
- 482
225
+ 485
226
226
  ]
227
227
  }
228
228
  ],
@@ -235,11 +235,19 @@
235
235
  ]
236
236
  },
237
237
  {
238
- "id": 484,
238
+ "id": 487,
239
239
  "name": "SkyCardModule",
240
240
  "kind": 128,
241
241
  "kindString": "Class",
242
242
  "flags": {},
243
+ "comment": {
244
+ "tags": [
245
+ {
246
+ "tag": "deprecated",
247
+ "text": "`SkyCardModule` is deprecated. For other SKY UX components that group and list content, see the content containers guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/content-containers.\n"
248
+ }
249
+ ]
250
+ },
243
251
  "decorators": [
244
252
  {
245
253
  "name": "NgModule",
@@ -260,24 +268,32 @@
260
268
  "title": "Constructors",
261
269
  "kind": 512,
262
270
  "children": [
263
- 485
271
+ 488
264
272
  ]
265
273
  }
266
274
  ],
267
275
  "sources": [
268
276
  {
269
277
  "fileName": "projects/layout/src/modules/card/card.module.ts",
270
- "line": 37,
278
+ "line": 40,
271
279
  "character": 13
272
280
  }
273
281
  ]
274
282
  },
275
283
  {
276
- "id": 487,
284
+ "id": 490,
277
285
  "name": "SkyDefinitionListModule",
278
286
  "kind": 128,
279
287
  "kindString": "Class",
280
288
  "flags": {},
289
+ "comment": {
290
+ "tags": [
291
+ {
292
+ "tag": "deprecated",
293
+ "text": "Use `SkyDescriptionListModule` instead.\n"
294
+ }
295
+ ]
296
+ },
281
297
  "decorators": [
282
298
  {
283
299
  "name": "NgModule",
@@ -298,20 +314,20 @@
298
314
  "title": "Constructors",
299
315
  "kind": 512,
300
316
  "children": [
301
- 488
317
+ 491
302
318
  ]
303
319
  }
304
320
  ],
305
321
  "sources": [
306
322
  {
307
323
  "fileName": "projects/layout/src/modules/definition-list/definition-list.module.ts",
308
- "line": 30,
324
+ "line": 33,
309
325
  "character": 13
310
326
  }
311
327
  ]
312
328
  },
313
329
  {
314
- "id": 490,
330
+ "id": 493,
315
331
  "name": "SkyDescriptionListModule",
316
332
  "kind": 128,
317
333
  "kindString": "Class",
@@ -336,7 +352,7 @@
336
352
  "title": "Constructors",
337
353
  "kind": 512,
338
354
  "children": [
339
- 491
355
+ 494
340
356
  ]
341
357
  }
342
358
  ],
@@ -349,7 +365,7 @@
349
365
  ]
350
366
  },
351
367
  {
352
- "id": 502,
368
+ "id": 505,
353
369
  "name": "SkyFluidGridModule",
354
370
  "kind": 128,
355
371
  "kindString": "Class",
@@ -374,7 +390,7 @@
374
390
  "title": "Constructors",
375
391
  "kind": 512,
376
392
  "children": [
377
- 503
393
+ 506
378
394
  ]
379
395
  }
380
396
  ],
@@ -387,7 +403,7 @@
387
403
  ]
388
404
  },
389
405
  {
390
- "id": 509,
406
+ "id": 512,
391
407
  "name": "SkyFormatModule",
392
408
  "kind": 128,
393
409
  "kindString": "Class",
@@ -412,7 +428,7 @@
412
428
  "title": "Constructors",
413
429
  "kind": 512,
414
430
  "children": [
415
- 510
431
+ 513
416
432
  ]
417
433
  }
418
434
  ],
@@ -425,7 +441,7 @@
425
441
  ]
426
442
  },
427
443
  {
428
- "id": 515,
444
+ "id": 518,
429
445
  "name": "SkyInlineDeleteModule",
430
446
  "kind": 128,
431
447
  "kindString": "Class",
@@ -450,7 +466,7 @@
450
466
  "title": "Constructors",
451
467
  "kind": 512,
452
468
  "children": [
453
- 516
469
+ 519
454
470
  ]
455
471
  }
456
472
  ],
@@ -463,7 +479,7 @@
463
479
  ]
464
480
  },
465
481
  {
466
- "id": 518,
482
+ "id": 521,
467
483
  "name": "SkyPageModule",
468
484
  "kind": 128,
469
485
  "kindString": "Class",
@@ -488,7 +504,7 @@
488
504
  "title": "Constructors",
489
505
  "kind": 512,
490
506
  "children": [
491
- 519
507
+ 522
492
508
  ]
493
509
  }
494
510
  ],
@@ -501,11 +517,19 @@
501
517
  ]
502
518
  },
503
519
  {
504
- "id": 521,
520
+ "id": 524,
505
521
  "name": "SkyPageSummaryModule",
506
522
  "kind": 128,
507
523
  "kindString": "Class",
508
524
  "flags": {},
525
+ "comment": {
526
+ "tags": [
527
+ {
528
+ "tag": "deprecated",
529
+ "text": "`SkyPageSummaryModule` is deprecated. For page templates and techniques to summarize page content, see the page design guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/page-layouts.\n"
530
+ }
531
+ ]
532
+ },
509
533
  "decorators": [
510
534
  {
511
535
  "name": "NgModule",
@@ -526,20 +550,20 @@
526
550
  "title": "Constructors",
527
551
  "kind": 512,
528
552
  "children": [
529
- 522
553
+ 525
530
554
  ]
531
555
  }
532
556
  ],
533
557
  "sources": [
534
558
  {
535
559
  "fileName": "projects/layout/src/modules/page-summary/page-summary.module.ts",
536
- "line": 36,
560
+ "line": 39,
537
561
  "character": 13
538
562
  }
539
563
  ]
540
564
  },
541
565
  {
542
- "id": 524,
566
+ "id": 527,
543
567
  "name": "SkyTextExpandModule",
544
568
  "kind": 128,
545
569
  "kindString": "Class",
@@ -554,7 +578,7 @@
554
578
  "name": "NgModule"
555
579
  },
556
580
  "arguments": {
557
- "obj": "{\n declarations: [SkyTextExpandComponent, SkyTextExpandModalComponent],\n imports: [\n SkyI18nModule,\n SkyLayoutResourcesModule,\n SkyModalModule,\n CommonModule,\n ],\n exports: [SkyTextExpandComponent],\n entryComponents: [SkyTextExpandModalComponent],\n}"
581
+ "obj": "{\n declarations: [SkyTextExpandComponent, SkyTextExpandModalComponent],\n imports: [\n SkyI18nModule,\n SkyLayoutResourcesModule,\n SkyModalModule,\n CommonModule,\n ],\n exports: [SkyTextExpandComponent],\n}"
558
582
  }
559
583
  }
560
584
  ],
@@ -564,20 +588,20 @@
564
588
  "title": "Constructors",
565
589
  "kind": 512,
566
590
  "children": [
567
- 525
591
+ 528
568
592
  ]
569
593
  }
570
594
  ],
571
595
  "sources": [
572
596
  {
573
597
  "fileName": "projects/layout/src/modules/text-expand/text-expand.module.ts",
574
- "line": 22,
598
+ "line": 21,
575
599
  "character": 13
576
600
  }
577
601
  ]
578
602
  },
579
603
  {
580
- "id": 528,
604
+ "id": 531,
581
605
  "name": "SkyTextExpandRepeaterModule",
582
606
  "kind": 128,
583
607
  "kindString": "Class",
@@ -602,7 +626,7 @@
602
626
  "title": "Constructors",
603
627
  "kind": 512,
604
628
  "children": [
605
- 529
629
+ 532
606
630
  ]
607
631
  }
608
632
  ],
@@ -615,7 +639,7 @@
615
639
  ]
616
640
  },
617
641
  {
618
- "id": 531,
642
+ "id": 534,
619
643
  "name": "SkyToolbarModule",
620
644
  "kind": 128,
621
645
  "kindString": "Class",
@@ -640,7 +664,7 @@
640
664
  "title": "Constructors",
641
665
  "kind": 512,
642
666
  "children": [
643
- 532
667
+ 535
644
668
  ]
645
669
  }
646
670
  ],
@@ -752,7 +776,7 @@
752
776
  ],
753
777
  "type": {
754
778
  "type": "reference",
755
- "id": 459,
779
+ "id": 462,
756
780
  "name": "SkyActionButtonPermalink"
757
781
  }
758
782
  },
@@ -849,13 +873,19 @@
849
873
  ]
850
874
  },
851
875
  {
852
- "id": 152,
876
+ "id": 153,
853
877
  "name": "SkyCardActionsComponent",
854
878
  "kind": 128,
855
879
  "kindString": "Class",
856
880
  "flags": {},
857
881
  "comment": {
858
- "shortText": "Specifies an action that users can perform on the card."
882
+ "shortText": "Specifies an action that users can perform on the card.",
883
+ "tags": [
884
+ {
885
+ "tag": "deprecated",
886
+ "text": "\n"
887
+ }
888
+ ]
859
889
  },
860
890
  "decorators": [
861
891
  {
@@ -877,26 +907,32 @@
877
907
  "title": "Constructors",
878
908
  "kind": 512,
879
909
  "children": [
880
- 153
910
+ 154
881
911
  ]
882
912
  }
883
913
  ],
884
914
  "sources": [
885
915
  {
886
916
  "fileName": "projects/layout/src/modules/card/card-actions.component.ts",
887
- "line": 11,
917
+ "line": 12,
888
918
  "character": 13
889
919
  }
890
920
  ]
891
921
  },
892
922
  {
893
- "id": 155,
923
+ "id": 156,
894
924
  "name": "SkyCardContentComponent",
895
925
  "kind": 128,
896
926
  "kindString": "Class",
897
927
  "flags": {},
898
928
  "comment": {
899
- "shortText": "Specifies the content to display in the body of the card."
929
+ "shortText": "Specifies the content to display in the body of the card.",
930
+ "tags": [
931
+ {
932
+ "tag": "deprecated",
933
+ "text": "\n"
934
+ }
935
+ ]
900
936
  },
901
937
  "decorators": [
902
938
  {
@@ -918,26 +954,32 @@
918
954
  "title": "Constructors",
919
955
  "kind": 512,
920
956
  "children": [
921
- 156
957
+ 157
922
958
  ]
923
959
  }
924
960
  ],
925
961
  "sources": [
926
962
  {
927
963
  "fileName": "projects/layout/src/modules/card/card-content.component.ts",
928
- "line": 10,
964
+ "line": 11,
929
965
  "character": 13
930
966
  }
931
967
  ]
932
968
  },
933
969
  {
934
- "id": 158,
970
+ "id": 159,
935
971
  "name": "SkyCardTitleComponent",
936
972
  "kind": 128,
937
973
  "kindString": "Class",
938
974
  "flags": {},
939
975
  "comment": {
940
- "shortText": "Specifies a title to identify what the card represents."
976
+ "shortText": "Specifies a title to identify what the card represents.",
977
+ "tags": [
978
+ {
979
+ "tag": "deprecated",
980
+ "text": "\n"
981
+ }
982
+ ]
941
983
  },
942
984
  "decorators": [
943
985
  {
@@ -959,20 +1001,20 @@
959
1001
  "title": "Constructors",
960
1002
  "kind": 512,
961
1003
  "children": [
962
- 159
1004
+ 160
963
1005
  ]
964
1006
  }
965
1007
  ],
966
1008
  "sources": [
967
1009
  {
968
1010
  "fileName": "projects/layout/src/modules/card/card-title.component.ts",
969
- "line": 10,
1011
+ "line": 11,
970
1012
  "character": 13
971
1013
  }
972
1014
  ]
973
1015
  },
974
1016
  {
975
- "id": 161,
1017
+ "id": 162,
976
1018
  "name": "SkyDefinitionListComponent",
977
1019
  "kind": 128,
978
1020
  "kindString": "Class",
@@ -996,7 +1038,7 @@
996
1038
  ],
997
1039
  "children": [
998
1040
  {
999
- "id": 162,
1041
+ "id": 163,
1000
1042
  "name": "constructor",
1001
1043
  "kind": 512,
1002
1044
  "kindString": "Constructor",
@@ -1004,20 +1046,20 @@
1004
1046
  "sources": [
1005
1047
  {
1006
1048
  "fileName": "projects/layout/src/modules/definition-list/definition-list.component.ts",
1007
- "line": 35,
1049
+ "line": 36,
1008
1050
  "character": 2
1009
1051
  }
1010
1052
  ],
1011
1053
  "signatures": [
1012
1054
  {
1013
- "id": 163,
1055
+ "id": 164,
1014
1056
  "name": "SkyDefinitionListComponent",
1015
1057
  "kind": 16384,
1016
1058
  "kindString": "Constructor signature",
1017
1059
  "flags": {},
1018
1060
  "parameters": [
1019
1061
  {
1020
- "id": 164,
1062
+ "id": 165,
1021
1063
  "name": "service",
1022
1064
  "kind": 32768,
1023
1065
  "kindString": "Parameter",
@@ -1026,18 +1068,29 @@
1026
1068
  "type": "reference",
1027
1069
  "name": "SkyDefinitionListService"
1028
1070
  }
1071
+ },
1072
+ {
1073
+ "id": 166,
1074
+ "name": "logger",
1075
+ "kind": 32768,
1076
+ "kindString": "Parameter",
1077
+ "flags": {},
1078
+ "type": {
1079
+ "type": "reference",
1080
+ "name": "SkyLogService"
1081
+ }
1029
1082
  }
1030
1083
  ],
1031
1084
  "type": {
1032
1085
  "type": "reference",
1033
- "id": 161,
1086
+ "id": 162,
1034
1087
  "name": "SkyDefinitionListComponent"
1035
1088
  }
1036
1089
  }
1037
1090
  ]
1038
1091
  },
1039
1092
  {
1040
- "id": 168,
1093
+ "id": 170,
1041
1094
  "name": "defaultValue",
1042
1095
  "kind": 262144,
1043
1096
  "kindString": "Accessor",
@@ -1059,13 +1112,13 @@
1059
1112
  "sources": [
1060
1113
  {
1061
1114
  "fileName": "projects/layout/src/modules/definition-list/definition-list.component.ts",
1062
- "line": 31,
1115
+ "line": 32,
1063
1116
  "character": 13
1064
1117
  }
1065
1118
  ],
1066
1119
  "setSignature": [
1067
1120
  {
1068
- "id": 169,
1121
+ "id": 171,
1069
1122
  "name": "defaultValue",
1070
1123
  "kind": 1048576,
1071
1124
  "kindString": "Set signature",
@@ -1081,7 +1134,7 @@
1081
1134
  },
1082
1135
  "parameters": [
1083
1136
  {
1084
- "id": 170,
1137
+ "id": 172,
1085
1138
  "name": "value",
1086
1139
  "kind": 32768,
1087
1140
  "kindString": "Parameter",
@@ -1100,7 +1153,7 @@
1100
1153
  ]
1101
1154
  },
1102
1155
  {
1103
- "id": 165,
1156
+ "id": 167,
1104
1157
  "name": "labelWidth",
1105
1158
  "kind": 262144,
1106
1159
  "kindString": "Accessor",
@@ -1122,13 +1175,13 @@
1122
1175
  "sources": [
1123
1176
  {
1124
1177
  "fileName": "projects/layout/src/modules/definition-list/definition-list.component.ts",
1125
- "line": 21,
1178
+ "line": 22,
1126
1179
  "character": 13
1127
1180
  }
1128
1181
  ],
1129
1182
  "setSignature": [
1130
1183
  {
1131
- "id": 166,
1184
+ "id": 168,
1132
1185
  "name": "labelWidth",
1133
1186
  "kind": 1048576,
1134
1187
  "kindString": "Set signature",
@@ -1144,7 +1197,7 @@
1144
1197
  },
1145
1198
  "parameters": [
1146
1199
  {
1147
- "id": 167,
1200
+ "id": 169,
1148
1201
  "name": "value",
1149
1202
  "kind": 32768,
1150
1203
  "kindString": "Parameter",
@@ -1168,35 +1221,35 @@
1168
1221
  "title": "Constructors",
1169
1222
  "kind": 512,
1170
1223
  "children": [
1171
- 162
1224
+ 163
1172
1225
  ]
1173
1226
  },
1174
1227
  {
1175
1228
  "title": "Properties",
1176
1229
  "kind": 1024,
1177
1230
  "children": [
1178
- 171
1231
+ 173
1179
1232
  ]
1180
1233
  },
1181
1234
  {
1182
1235
  "title": "Accessors",
1183
1236
  "kind": 262144,
1184
1237
  "children": [
1185
- 168,
1186
- 165
1238
+ 170,
1239
+ 167
1187
1240
  ]
1188
1241
  }
1189
1242
  ],
1190
1243
  "sources": [
1191
1244
  {
1192
1245
  "fileName": "projects/layout/src/modules/definition-list/definition-list.component.ts",
1193
- "line": 15,
1246
+ "line": 16,
1194
1247
  "character": 13
1195
1248
  }
1196
1249
  ]
1197
1250
  },
1198
1251
  {
1199
- "id": 172,
1252
+ "id": 174,
1200
1253
  "name": "SkyDefinitionListContentComponent",
1201
1254
  "kind": 128,
1202
1255
  "kindString": "Class",
@@ -1224,7 +1277,7 @@
1224
1277
  "title": "Constructors",
1225
1278
  "kind": 512,
1226
1279
  "children": [
1227
- 173
1280
+ 175
1228
1281
  ]
1229
1282
  }
1230
1283
  ],
@@ -1237,7 +1290,7 @@
1237
1290
  ]
1238
1291
  },
1239
1292
  {
1240
- "id": 175,
1293
+ "id": 177,
1241
1294
  "name": "SkyDefinitionListHeadingComponent",
1242
1295
  "kind": 128,
1243
1296
  "kindString": "Class",
@@ -1265,7 +1318,7 @@
1265
1318
  "title": "Constructors",
1266
1319
  "kind": 512,
1267
1320
  "children": [
1268
- 176
1321
+ 178
1269
1322
  ]
1270
1323
  }
1271
1324
  ],
@@ -1278,7 +1331,7 @@
1278
1331
  ]
1279
1332
  },
1280
1333
  {
1281
- "id": 178,
1334
+ "id": 180,
1282
1335
  "name": "SkyDefinitionListLabelComponent",
1283
1336
  "kind": 128,
1284
1337
  "kindString": "Class",
@@ -1302,7 +1355,7 @@
1302
1355
  ],
1303
1356
  "children": [
1304
1357
  {
1305
- "id": 179,
1358
+ "id": 181,
1306
1359
  "name": "constructor",
1307
1360
  "kind": 512,
1308
1361
  "kindString": "Constructor",
@@ -1316,14 +1369,14 @@
1316
1369
  ],
1317
1370
  "signatures": [
1318
1371
  {
1319
- "id": 180,
1372
+ "id": 182,
1320
1373
  "name": "SkyDefinitionListLabelComponent",
1321
1374
  "kind": 16384,
1322
1375
  "kindString": "Constructor signature",
1323
1376
  "flags": {},
1324
1377
  "parameters": [
1325
1378
  {
1326
- "id": 181,
1379
+ "id": 183,
1327
1380
  "name": "service",
1328
1381
  "kind": 32768,
1329
1382
  "kindString": "Parameter",
@@ -1336,14 +1389,14 @@
1336
1389
  ],
1337
1390
  "type": {
1338
1391
  "type": "reference",
1339
- "id": 178,
1392
+ "id": 180,
1340
1393
  "name": "SkyDefinitionListLabelComponent"
1341
1394
  }
1342
1395
  }
1343
1396
  ]
1344
1397
  },
1345
1398
  {
1346
- "id": 182,
1399
+ "id": 184,
1347
1400
  "name": "labelWidth",
1348
1401
  "kind": 1024,
1349
1402
  "kindString": "Property",
@@ -1368,15 +1421,15 @@
1368
1421
  "title": "Constructors",
1369
1422
  "kind": 512,
1370
1423
  "children": [
1371
- 179
1424
+ 181
1372
1425
  ]
1373
1426
  },
1374
1427
  {
1375
1428
  "title": "Properties",
1376
1429
  "kind": 1024,
1377
1430
  "children": [
1378
- 182,
1379
- 183
1431
+ 184,
1432
+ 185
1380
1433
  ]
1381
1434
  }
1382
1435
  ],
@@ -1389,7 +1442,7 @@
1389
1442
  ]
1390
1443
  },
1391
1444
  {
1392
- "id": 184,
1445
+ "id": 186,
1393
1446
  "name": "SkyDefinitionListValueComponent",
1394
1447
  "kind": 128,
1395
1448
  "kindString": "Class",
@@ -1413,7 +1466,7 @@
1413
1466
  ],
1414
1467
  "children": [
1415
1468
  {
1416
- "id": 185,
1469
+ "id": 187,
1417
1470
  "name": "constructor",
1418
1471
  "kind": 512,
1419
1472
  "kindString": "Constructor",
@@ -1427,14 +1480,14 @@
1427
1480
  ],
1428
1481
  "signatures": [
1429
1482
  {
1430
- "id": 186,
1483
+ "id": 188,
1431
1484
  "name": "SkyDefinitionListValueComponent",
1432
1485
  "kind": 16384,
1433
1486
  "kindString": "Constructor signature",
1434
1487
  "flags": {},
1435
1488
  "parameters": [
1436
1489
  {
1437
- "id": 187,
1490
+ "id": 189,
1438
1491
  "name": "service",
1439
1492
  "kind": 32768,
1440
1493
  "kindString": "Parameter",
@@ -1447,14 +1500,14 @@
1447
1500
  ],
1448
1501
  "type": {
1449
1502
  "type": "reference",
1450
- "id": 184,
1503
+ "id": 186,
1451
1504
  "name": "SkyDefinitionListValueComponent"
1452
1505
  }
1453
1506
  }
1454
1507
  ]
1455
1508
  },
1456
1509
  {
1457
- "id": 188,
1510
+ "id": 190,
1458
1511
  "name": "defaultValue",
1459
1512
  "kind": 1024,
1460
1513
  "kindString": "Property",
@@ -1479,15 +1532,15 @@
1479
1532
  "title": "Constructors",
1480
1533
  "kind": 512,
1481
1534
  "children": [
1482
- 185
1535
+ 187
1483
1536
  ]
1484
1537
  },
1485
1538
  {
1486
1539
  "title": "Properties",
1487
1540
  "kind": 1024,
1488
1541
  "children": [
1489
- 188,
1490
- 189
1542
+ 190,
1543
+ 191
1491
1544
  ]
1492
1545
  }
1493
1546
  ],
@@ -1500,7 +1553,7 @@
1500
1553
  ]
1501
1554
  },
1502
1555
  {
1503
- "id": 190,
1556
+ "id": 192,
1504
1557
  "name": "SkyDescriptionListComponent",
1505
1558
  "kind": 128,
1506
1559
  "kindString": "Class",
@@ -1524,7 +1577,7 @@
1524
1577
  ],
1525
1578
  "children": [
1526
1579
  {
1527
- "id": 191,
1580
+ "id": 193,
1528
1581
  "name": "constructor",
1529
1582
  "kind": 512,
1530
1583
  "kindString": "Constructor",
@@ -1538,14 +1591,14 @@
1538
1591
  ],
1539
1592
  "signatures": [
1540
1593
  {
1541
- "id": 192,
1594
+ "id": 194,
1542
1595
  "name": "SkyDescriptionListComponent",
1543
1596
  "kind": 16384,
1544
1597
  "kindString": "Constructor signature",
1545
1598
  "flags": {},
1546
1599
  "parameters": [
1547
1600
  {
1548
- "id": 193,
1601
+ "id": 195,
1549
1602
  "name": "adapterService",
1550
1603
  "kind": 32768,
1551
1604
  "kindString": "Parameter",
@@ -1556,7 +1609,7 @@
1556
1609
  }
1557
1610
  },
1558
1611
  {
1559
- "id": 194,
1612
+ "id": 196,
1560
1613
  "name": "changeDetector",
1561
1614
  "kind": 32768,
1562
1615
  "kindString": "Parameter",
@@ -1569,7 +1622,7 @@
1569
1622
  }
1570
1623
  },
1571
1624
  {
1572
- "id": 195,
1625
+ "id": 197,
1573
1626
  "name": "descriptionListService",
1574
1627
  "kind": 32768,
1575
1628
  "kindString": "Parameter",
@@ -1580,7 +1633,7 @@
1580
1633
  }
1581
1634
  },
1582
1635
  {
1583
- "id": 196,
1636
+ "id": 198,
1584
1637
  "name": "mutationSvc",
1585
1638
  "kind": 32768,
1586
1639
  "kindString": "Parameter",
@@ -1593,14 +1646,14 @@
1593
1646
  ],
1594
1647
  "type": {
1595
1648
  "type": "reference",
1596
- "id": 190,
1649
+ "id": 192,
1597
1650
  "name": "SkyDescriptionListComponent"
1598
1651
  }
1599
1652
  }
1600
1653
  ]
1601
1654
  },
1602
1655
  {
1603
- "id": 205,
1656
+ "id": 207,
1604
1657
  "name": "contentComponents",
1605
1658
  "kind": 1024,
1606
1659
  "kindString": "Property",
@@ -1633,7 +1686,7 @@
1633
1686
  "typeArguments": [
1634
1687
  {
1635
1688
  "type": "reference",
1636
- "id": 239,
1689
+ "id": 241,
1637
1690
  "name": "SkyDescriptionListContentComponent"
1638
1691
  }
1639
1692
  ],
@@ -1643,7 +1696,7 @@
1643
1696
  }
1644
1697
  },
1645
1698
  {
1646
- "id": 200,
1699
+ "id": 202,
1647
1700
  "name": "listItemWidth",
1648
1701
  "kind": 1024,
1649
1702
  "kindString": "Property",
@@ -1678,7 +1731,7 @@
1678
1731
  }
1679
1732
  },
1680
1733
  {
1681
- "id": 197,
1734
+ "id": 199,
1682
1735
  "name": "defaultDescription",
1683
1736
  "kind": 262144,
1684
1737
  "kindString": "Accessor",
@@ -1706,7 +1759,7 @@
1706
1759
  ],
1707
1760
  "setSignature": [
1708
1761
  {
1709
- "id": 198,
1762
+ "id": 200,
1710
1763
  "name": "defaultDescription",
1711
1764
  "kind": 1048576,
1712
1765
  "kindString": "Set signature",
@@ -1722,7 +1775,7 @@
1722
1775
  },
1723
1776
  "parameters": [
1724
1777
  {
1725
- "id": 199,
1778
+ "id": 201,
1726
1779
  "name": "value",
1727
1780
  "kind": 32768,
1728
1781
  "kindString": "Parameter",
@@ -1741,7 +1794,7 @@
1741
1794
  ]
1742
1795
  },
1743
1796
  {
1744
- "id": 201,
1797
+ "id": 203,
1745
1798
  "name": "mode",
1746
1799
  "kind": 262144,
1747
1800
  "kindString": "Accessor",
@@ -1769,7 +1822,7 @@
1769
1822
  ],
1770
1823
  "getSignature": [
1771
1824
  {
1772
- "id": 202,
1825
+ "id": 204,
1773
1826
  "name": "mode",
1774
1827
  "kind": 524288,
1775
1828
  "kindString": "Get signature",
@@ -1785,14 +1838,14 @@
1785
1838
  },
1786
1839
  "type": {
1787
1840
  "type": "reference",
1788
- "id": 497,
1841
+ "id": 500,
1789
1842
  "name": "SkyDescriptionListModeType"
1790
1843
  }
1791
1844
  }
1792
1845
  ],
1793
1846
  "setSignature": [
1794
1847
  {
1795
- "id": 203,
1848
+ "id": 205,
1796
1849
  "name": "mode",
1797
1850
  "kind": 1048576,
1798
1851
  "kindString": "Set signature",
@@ -1808,14 +1861,14 @@
1808
1861
  },
1809
1862
  "parameters": [
1810
1863
  {
1811
- "id": 204,
1864
+ "id": 206,
1812
1865
  "name": "value",
1813
1866
  "kind": 32768,
1814
1867
  "kindString": "Parameter",
1815
1868
  "flags": {},
1816
1869
  "type": {
1817
1870
  "type": "reference",
1818
- "id": 497,
1871
+ "id": 500,
1819
1872
  "name": "SkyDescriptionListModeType"
1820
1873
  }
1821
1874
  }
@@ -1828,7 +1881,7 @@
1828
1881
  ]
1829
1882
  },
1830
1883
  {
1831
- "id": 210,
1884
+ "id": 212,
1832
1885
  "name": "ngAfterContentInit",
1833
1886
  "kind": 2048,
1834
1887
  "kindString": "Method",
@@ -1844,7 +1897,7 @@
1844
1897
  ],
1845
1898
  "signatures": [
1846
1899
  {
1847
- "id": 211,
1900
+ "id": 213,
1848
1901
  "name": "ngAfterContentInit",
1849
1902
  "kind": 4096,
1850
1903
  "kindString": "Call signature",
@@ -1865,7 +1918,7 @@
1865
1918
  }
1866
1919
  },
1867
1920
  {
1868
- "id": 212,
1921
+ "id": 214,
1869
1922
  "name": "ngAfterViewInit",
1870
1923
  "kind": 2048,
1871
1924
  "kindString": "Method",
@@ -1881,7 +1934,7 @@
1881
1934
  ],
1882
1935
  "signatures": [
1883
1936
  {
1884
- "id": 213,
1937
+ "id": 215,
1885
1938
  "name": "ngAfterViewInit",
1886
1939
  "kind": 4096,
1887
1940
  "kindString": "Call signature",
@@ -1902,7 +1955,7 @@
1902
1955
  }
1903
1956
  },
1904
1957
  {
1905
- "id": 214,
1958
+ "id": 216,
1906
1959
  "name": "ngOnDestroy",
1907
1960
  "kind": 2048,
1908
1961
  "kindString": "Method",
@@ -1918,7 +1971,7 @@
1918
1971
  ],
1919
1972
  "signatures": [
1920
1973
  {
1921
- "id": 215,
1974
+ "id": 217,
1922
1975
  "name": "ngOnDestroy",
1923
1976
  "kind": 4096,
1924
1977
  "kindString": "Call signature",
@@ -1939,7 +1992,7 @@
1939
1992
  }
1940
1993
  },
1941
1994
  {
1942
- "id": 216,
1995
+ "id": 218,
1943
1996
  "name": "onWindowResize",
1944
1997
  "kind": 2048,
1945
1998
  "kindString": "Method",
@@ -1969,7 +2022,7 @@
1969
2022
  ],
1970
2023
  "signatures": [
1971
2024
  {
1972
- "id": 217,
2025
+ "id": 219,
1973
2026
  "name": "onWindowResize",
1974
2027
  "kind": 4096,
1975
2028
  "kindString": "Call signature",
@@ -1987,33 +2040,33 @@
1987
2040
  "title": "Constructors",
1988
2041
  "kind": 512,
1989
2042
  "children": [
1990
- 191
2043
+ 193
1991
2044
  ]
1992
2045
  },
1993
2046
  {
1994
2047
  "title": "Properties",
1995
2048
  "kind": 1024,
1996
2049
  "children": [
1997
- 205,
1998
- 200
2050
+ 207,
2051
+ 202
1999
2052
  ]
2000
2053
  },
2001
2054
  {
2002
2055
  "title": "Accessors",
2003
2056
  "kind": 262144,
2004
2057
  "children": [
2005
- 197,
2006
- 201
2058
+ 199,
2059
+ 203
2007
2060
  ]
2008
2061
  },
2009
2062
  {
2010
2063
  "title": "Methods",
2011
2064
  "kind": 2048,
2012
2065
  "children": [
2013
- 210,
2014
2066
  212,
2015
2067
  214,
2016
- 216
2068
+ 216,
2069
+ 218
2017
2070
  ]
2018
2071
  }
2019
2072
  ],
@@ -2046,7 +2099,7 @@
2046
2099
  ]
2047
2100
  },
2048
2101
  {
2049
- "id": 220,
2102
+ "id": 222,
2050
2103
  "name": "SkyDescriptionListTermComponent",
2051
2104
  "kind": 128,
2052
2105
  "kindString": "Class",
@@ -2070,7 +2123,7 @@
2070
2123
  ],
2071
2124
  "children": [
2072
2125
  {
2073
- "id": 223,
2126
+ "id": 225,
2074
2127
  "name": "templateRef",
2075
2128
  "kind": 1024,
2076
2129
  "kindString": "Property",
@@ -2118,14 +2171,14 @@
2118
2171
  "title": "Constructors",
2119
2172
  "kind": 512,
2120
2173
  "children": [
2121
- 221
2174
+ 223
2122
2175
  ]
2123
2176
  },
2124
2177
  {
2125
2178
  "title": "Properties",
2126
2179
  "kind": 1024,
2127
2180
  "children": [
2128
- 223
2181
+ 225
2129
2182
  ]
2130
2183
  }
2131
2184
  ],
@@ -2345,7 +2398,7 @@
2345
2398
  },
2346
2399
  "type": {
2347
2400
  "type": "reference",
2348
- "id": 471,
2401
+ "id": 474,
2349
2402
  "name": "SkyActionButtonContainerAlignItemsType"
2350
2403
  }
2351
2404
  }
@@ -2375,7 +2428,7 @@
2375
2428
  "flags": {},
2376
2429
  "type": {
2377
2430
  "type": "reference",
2378
- "id": 471,
2431
+ "id": 474,
2379
2432
  "name": "SkyActionButtonContainerAlignItemsType"
2380
2433
  }
2381
2434
  }
@@ -2597,7 +2650,7 @@
2597
2650
  ]
2598
2651
  },
2599
2652
  {
2600
- "id": 224,
2653
+ "id": 226,
2601
2654
  "name": "SkyDescriptionListDescriptionComponent",
2602
2655
  "kind": 128,
2603
2656
  "kindString": "Class",
@@ -2621,7 +2674,7 @@
2621
2674
  ],
2622
2675
  "children": [
2623
2676
  {
2624
- "id": 225,
2677
+ "id": 227,
2625
2678
  "name": "constructor",
2626
2679
  "kind": 512,
2627
2680
  "kindString": "Constructor",
@@ -2635,14 +2688,14 @@
2635
2688
  ],
2636
2689
  "signatures": [
2637
2690
  {
2638
- "id": 226,
2691
+ "id": 228,
2639
2692
  "name": "SkyDescriptionListDescriptionComponent",
2640
2693
  "kind": 16384,
2641
2694
  "kindString": "Constructor signature",
2642
2695
  "flags": {},
2643
2696
  "parameters": [
2644
2697
  {
2645
- "id": 227,
2698
+ "id": 229,
2646
2699
  "name": "service",
2647
2700
  "kind": 32768,
2648
2701
  "kindString": "Parameter",
@@ -2653,7 +2706,7 @@
2653
2706
  }
2654
2707
  },
2655
2708
  {
2656
- "id": 228,
2709
+ "id": 230,
2657
2710
  "name": "changeRef",
2658
2711
  "kind": 32768,
2659
2712
  "kindString": "Parameter",
@@ -2666,7 +2719,7 @@
2666
2719
  }
2667
2720
  },
2668
2721
  {
2669
- "id": 229,
2722
+ "id": 231,
2670
2723
  "name": "themeSvc",
2671
2724
  "kind": 32768,
2672
2725
  "kindString": "Parameter",
@@ -2693,14 +2746,14 @@
2693
2746
  ],
2694
2747
  "type": {
2695
2748
  "type": "reference",
2696
- "id": 224,
2749
+ "id": 226,
2697
2750
  "name": "SkyDescriptionListDescriptionComponent"
2698
2751
  }
2699
2752
  }
2700
2753
  ]
2701
2754
  },
2702
2755
  {
2703
- "id": 230,
2756
+ "id": 232,
2704
2757
  "name": "defaultDescription",
2705
2758
  "kind": 1024,
2706
2759
  "kindString": "Property",
@@ -2720,7 +2773,7 @@
2720
2773
  }
2721
2774
  },
2722
2775
  {
2723
- "id": 232,
2776
+ "id": 234,
2724
2777
  "name": "templateRef",
2725
2778
  "kind": 1024,
2726
2779
  "kindString": "Property",
@@ -2763,7 +2816,7 @@
2763
2816
  }
2764
2817
  },
2765
2818
  {
2766
- "id": 231,
2819
+ "id": 233,
2767
2820
  "name": "themeName",
2768
2821
  "kind": 1024,
2769
2822
  "kindString": "Property",
@@ -2783,7 +2836,7 @@
2783
2836
  }
2784
2837
  },
2785
2838
  {
2786
- "id": 237,
2839
+ "id": 239,
2787
2840
  "name": "ngOnDestroy",
2788
2841
  "kind": 2048,
2789
2842
  "kindString": "Method",
@@ -2799,7 +2852,7 @@
2799
2852
  ],
2800
2853
  "signatures": [
2801
2854
  {
2802
- "id": 238,
2855
+ "id": 240,
2803
2856
  "name": "ngOnDestroy",
2804
2857
  "kind": 4096,
2805
2858
  "kindString": "Call signature",
@@ -2820,7 +2873,7 @@
2820
2873
  }
2821
2874
  },
2822
2875
  {
2823
- "id": 235,
2876
+ "id": 237,
2824
2877
  "name": "ngOnInit",
2825
2878
  "kind": 2048,
2826
2879
  "kindString": "Method",
@@ -2836,7 +2889,7 @@
2836
2889
  ],
2837
2890
  "signatures": [
2838
2891
  {
2839
- "id": 236,
2892
+ "id": 238,
2840
2893
  "name": "ngOnInit",
2841
2894
  "kind": 4096,
2842
2895
  "kindString": "Call signature",
@@ -2862,25 +2915,25 @@
2862
2915
  "title": "Constructors",
2863
2916
  "kind": 512,
2864
2917
  "children": [
2865
- 225
2918
+ 227
2866
2919
  ]
2867
2920
  },
2868
2921
  {
2869
2922
  "title": "Properties",
2870
2923
  "kind": 1024,
2871
2924
  "children": [
2872
- 230,
2873
- 234,
2874
2925
  232,
2875
- 231
2926
+ 236,
2927
+ 234,
2928
+ 233
2876
2929
  ]
2877
2930
  },
2878
2931
  {
2879
2932
  "title": "Methods",
2880
2933
  "kind": 2048,
2881
2934
  "children": [
2882
- 237,
2883
- 235
2935
+ 239,
2936
+ 237
2884
2937
  ]
2885
2938
  }
2886
2939
  ],
@@ -2907,7 +2960,7 @@
2907
2960
  ]
2908
2961
  },
2909
2962
  {
2910
- "id": 239,
2963
+ "id": 241,
2911
2964
  "name": "SkyDescriptionListContentComponent",
2912
2965
  "kind": 128,
2913
2966
  "kindString": "Class",
@@ -2931,7 +2984,7 @@
2931
2984
  ],
2932
2985
  "children": [
2933
2986
  {
2934
- "id": 243,
2987
+ "id": 245,
2935
2988
  "name": "descriptionComponents",
2936
2989
  "kind": 1024,
2937
2990
  "kindString": "Property",
@@ -2964,7 +3017,7 @@
2964
3017
  "typeArguments": [
2965
3018
  {
2966
3019
  "type": "reference",
2967
- "id": 224,
3020
+ "id": 226,
2968
3021
  "name": "SkyDescriptionListDescriptionComponent"
2969
3022
  }
2970
3023
  ],
@@ -2974,7 +3027,7 @@
2974
3027
  }
2975
3028
  },
2976
3029
  {
2977
- "id": 242,
3030
+ "id": 244,
2978
3031
  "name": "termComponents",
2979
3032
  "kind": 1024,
2980
3033
  "kindString": "Property",
@@ -3007,7 +3060,7 @@
3007
3060
  "typeArguments": [
3008
3061
  {
3009
3062
  "type": "reference",
3010
- "id": 220,
3063
+ "id": 222,
3011
3064
  "name": "SkyDescriptionListTermComponent"
3012
3065
  }
3013
3066
  ],
@@ -3022,15 +3075,15 @@
3022
3075
  "title": "Constructors",
3023
3076
  "kind": 512,
3024
3077
  "children": [
3025
- 240
3078
+ 242
3026
3079
  ]
3027
3080
  },
3028
3081
  {
3029
3082
  "title": "Properties",
3030
3083
  "kind": 1024,
3031
3084
  "children": [
3032
- 243,
3033
- 242
3085
+ 245,
3086
+ 244
3034
3087
  ]
3035
3088
  }
3036
3089
  ],
@@ -3043,7 +3096,7 @@
3043
3096
  ]
3044
3097
  },
3045
3098
  {
3046
- "id": 244,
3099
+ "id": 246,
3047
3100
  "name": "SkyFluidGridComponent",
3048
3101
  "kind": 128,
3049
3102
  "kindString": "Class",
@@ -3067,7 +3120,7 @@
3067
3120
  ],
3068
3121
  "children": [
3069
3122
  {
3070
- "id": 247,
3123
+ "id": 249,
3071
3124
  "name": "disableMargin",
3072
3125
  "kind": 262144,
3073
3126
  "kindString": "Accessor",
@@ -3095,7 +3148,7 @@
3095
3148
  ],
3096
3149
  "getSignature": [
3097
3150
  {
3098
- "id": 248,
3151
+ "id": 250,
3099
3152
  "name": "disableMargin",
3100
3153
  "kind": 524288,
3101
3154
  "kindString": "Get signature",
@@ -3117,7 +3170,7 @@
3117
3170
  ],
3118
3171
  "setSignature": [
3119
3172
  {
3120
- "id": 249,
3173
+ "id": 251,
3121
3174
  "name": "disableMargin",
3122
3175
  "kind": 1048576,
3123
3176
  "kindString": "Set signature",
@@ -3133,7 +3186,7 @@
3133
3186
  },
3134
3187
  "parameters": [
3135
3188
  {
3136
- "id": 250,
3189
+ "id": 252,
3137
3190
  "name": "value",
3138
3191
  "kind": 32768,
3139
3192
  "kindString": "Parameter",
@@ -3152,7 +3205,7 @@
3152
3205
  ]
3153
3206
  },
3154
3207
  {
3155
- "id": 251,
3208
+ "id": 253,
3156
3209
  "name": "gutterSize",
3157
3210
  "kind": 262144,
3158
3211
  "kindString": "Accessor",
@@ -3180,7 +3233,7 @@
3180
3233
  ],
3181
3234
  "getSignature": [
3182
3235
  {
3183
- "id": 252,
3236
+ "id": 254,
3184
3237
  "name": "gutterSize",
3185
3238
  "kind": 524288,
3186
3239
  "kindString": "Get signature",
@@ -3196,14 +3249,14 @@
3196
3249
  },
3197
3250
  "type": {
3198
3251
  "type": "reference",
3199
- "id": 505,
3252
+ "id": 508,
3200
3253
  "name": "SkyFluidGridGutterSizeType"
3201
3254
  }
3202
3255
  }
3203
3256
  ],
3204
3257
  "setSignature": [
3205
3258
  {
3206
- "id": 253,
3259
+ "id": 255,
3207
3260
  "name": "gutterSize",
3208
3261
  "kind": 1048576,
3209
3262
  "kindString": "Set signature",
@@ -3219,14 +3272,14 @@
3219
3272
  },
3220
3273
  "parameters": [
3221
3274
  {
3222
- "id": 254,
3275
+ "id": 256,
3223
3276
  "name": "value",
3224
3277
  "kind": 32768,
3225
3278
  "kindString": "Parameter",
3226
3279
  "flags": {},
3227
3280
  "type": {
3228
3281
  "type": "reference",
3229
- "id": 505,
3282
+ "id": 508,
3230
3283
  "name": "SkyFluidGridGutterSizeType"
3231
3284
  }
3232
3285
  }
@@ -3244,15 +3297,15 @@
3244
3297
  "title": "Constructors",
3245
3298
  "kind": 512,
3246
3299
  "children": [
3247
- 245
3300
+ 247
3248
3301
  ]
3249
3302
  },
3250
3303
  {
3251
3304
  "title": "Accessors",
3252
3305
  "kind": 262144,
3253
3306
  "children": [
3254
- 247,
3255
- 251
3307
+ 249,
3308
+ 253
3256
3309
  ]
3257
3310
  }
3258
3311
  ],
@@ -3265,7 +3318,7 @@
3265
3318
  ]
3266
3319
  },
3267
3320
  {
3268
- "id": 259,
3321
+ "id": 261,
3269
3322
  "name": "SkyRowComponent",
3270
3323
  "kind": 128,
3271
3324
  "kindString": "Class",
@@ -3289,7 +3342,7 @@
3289
3342
  ],
3290
3343
  "children": [
3291
3344
  {
3292
- "id": 262,
3345
+ "id": 264,
3293
3346
  "name": "reverseColumnOrder",
3294
3347
  "kind": 1024,
3295
3348
  "kindString": "Property",
@@ -3336,14 +3389,14 @@
3336
3389
  "title": "Constructors",
3337
3390
  "kind": 512,
3338
3391
  "children": [
3339
- 260
3392
+ 262
3340
3393
  ]
3341
3394
  },
3342
3395
  {
3343
3396
  "title": "Properties",
3344
3397
  "kind": 1024,
3345
3398
  "children": [
3346
- 262
3399
+ 264
3347
3400
  ]
3348
3401
  }
3349
3402
  ],
@@ -3356,7 +3409,7 @@
3356
3409
  ]
3357
3410
  },
3358
3411
  {
3359
- "id": 263,
3412
+ "id": 265,
3360
3413
  "name": "SkyColumnComponent",
3361
3414
  "kind": 128,
3362
3415
  "kindString": "Class",
@@ -3380,7 +3433,7 @@
3380
3433
  ],
3381
3434
  "children": [
3382
3435
  {
3383
- "id": 270,
3436
+ "id": 272,
3384
3437
  "name": "classnames",
3385
3438
  "kind": 1024,
3386
3439
  "kindString": "Property",
@@ -3414,7 +3467,7 @@
3414
3467
  }
3415
3468
  },
3416
3469
  {
3417
- "id": 269,
3470
+ "id": 271,
3418
3471
  "name": "screenLarge",
3419
3472
  "kind": 1024,
3420
3473
  "kindString": "Property",
@@ -3449,7 +3502,7 @@
3449
3502
  }
3450
3503
  },
3451
3504
  {
3452
- "id": 268,
3505
+ "id": 270,
3453
3506
  "name": "screenMedium",
3454
3507
  "kind": 1024,
3455
3508
  "kindString": "Property",
@@ -3484,7 +3537,7 @@
3484
3537
  }
3485
3538
  },
3486
3539
  {
3487
- "id": 267,
3540
+ "id": 269,
3488
3541
  "name": "screenSmall",
3489
3542
  "kind": 1024,
3490
3543
  "kindString": "Property",
@@ -3519,7 +3572,7 @@
3519
3572
  }
3520
3573
  },
3521
3574
  {
3522
- "id": 266,
3575
+ "id": 268,
3523
3576
  "name": "screenXSmall",
3524
3577
  "kind": 1024,
3525
3578
  "kindString": "Property",
@@ -3560,7 +3613,7 @@
3560
3613
  }
3561
3614
  },
3562
3615
  {
3563
- "id": 274,
3616
+ "id": 276,
3564
3617
  "name": "getClassNames",
3565
3618
  "kind": 2048,
3566
3619
  "kindString": "Method",
@@ -3576,7 +3629,7 @@
3576
3629
  ],
3577
3630
  "signatures": [
3578
3631
  {
3579
- "id": 275,
3632
+ "id": 277,
3580
3633
  "name": "getClassNames",
3581
3634
  "kind": 4096,
3582
3635
  "kindString": "Call signature",
@@ -3589,7 +3642,7 @@
3589
3642
  ]
3590
3643
  },
3591
3644
  {
3592
- "id": 271,
3645
+ "id": 273,
3593
3646
  "name": "ngOnChanges",
3594
3647
  "kind": 2048,
3595
3648
  "kindString": "Method",
@@ -3605,14 +3658,14 @@
3605
3658
  ],
3606
3659
  "signatures": [
3607
3660
  {
3608
- "id": 272,
3661
+ "id": 274,
3609
3662
  "name": "ngOnChanges",
3610
3663
  "kind": 4096,
3611
3664
  "kindString": "Call signature",
3612
3665
  "flags": {},
3613
3666
  "parameters": [
3614
3667
  {
3615
- "id": 273,
3668
+ "id": 275,
3616
3669
  "name": "changes",
3617
3670
  "kind": 32768,
3618
3671
  "kindString": "Parameter",
@@ -3641,7 +3694,7 @@
3641
3694
  }
3642
3695
  },
3643
3696
  {
3644
- "id": 276,
3697
+ "id": 278,
3645
3698
  "name": "ngOnInit",
3646
3699
  "kind": 2048,
3647
3700
  "kindString": "Method",
@@ -3657,7 +3710,7 @@
3657
3710
  ],
3658
3711
  "signatures": [
3659
3712
  {
3660
- "id": 277,
3713
+ "id": 279,
3661
3714
  "name": "ngOnInit",
3662
3715
  "kind": 4096,
3663
3716
  "kindString": "Call signature",
@@ -3683,27 +3736,27 @@
3683
3736
  "title": "Constructors",
3684
3737
  "kind": 512,
3685
3738
  "children": [
3686
- 264
3739
+ 266
3687
3740
  ]
3688
3741
  },
3689
3742
  {
3690
3743
  "title": "Properties",
3691
3744
  "kind": 1024,
3692
3745
  "children": [
3746
+ 272,
3747
+ 271,
3693
3748
  270,
3694
3749
  269,
3695
- 268,
3696
- 267,
3697
- 266
3750
+ 268
3698
3751
  ]
3699
3752
  },
3700
3753
  {
3701
3754
  "title": "Methods",
3702
3755
  "kind": 2048,
3703
3756
  "children": [
3704
- 274,
3705
- 271,
3706
- 276
3757
+ 276,
3758
+ 273,
3759
+ 278
3707
3760
  ]
3708
3761
  }
3709
3762
  ],
@@ -3730,7 +3783,7 @@
3730
3783
  ]
3731
3784
  },
3732
3785
  {
3733
- "id": 278,
3786
+ "id": 280,
3734
3787
  "name": "SkyFormatComponent",
3735
3788
  "kind": 128,
3736
3789
  "kindString": "Class",
@@ -3751,7 +3804,7 @@
3751
3804
  ],
3752
3805
  "children": [
3753
3806
  {
3754
- "id": 281,
3807
+ "id": 283,
3755
3808
  "name": "itemsForDisplay",
3756
3809
  "kind": 1024,
3757
3810
  "kindString": "Property",
@@ -3774,7 +3827,7 @@
3774
3827
  }
3775
3828
  },
3776
3829
  {
3777
- "id": 286,
3830
+ "id": 288,
3778
3831
  "name": "args",
3779
3832
  "kind": 262144,
3780
3833
  "kindString": "Accessor",
@@ -3802,7 +3855,7 @@
3802
3855
  ],
3803
3856
  "getSignature": [
3804
3857
  {
3805
- "id": 287,
3858
+ "id": 289,
3806
3859
  "name": "args",
3807
3860
  "kind": 524288,
3808
3861
  "kindString": "Get signature",
@@ -3829,7 +3882,7 @@
3829
3882
  ],
3830
3883
  "setSignature": [
3831
3884
  {
3832
- "id": 288,
3885
+ "id": 290,
3833
3886
  "name": "args",
3834
3887
  "kind": 1048576,
3835
3888
  "kindString": "Set signature",
@@ -3839,7 +3892,7 @@
3839
3892
  },
3840
3893
  "parameters": [
3841
3894
  {
3842
- "id": 289,
3895
+ "id": 291,
3843
3896
  "name": "value",
3844
3897
  "kind": 32768,
3845
3898
  "kindString": "Parameter",
@@ -3869,7 +3922,7 @@
3869
3922
  ]
3870
3923
  },
3871
3924
  {
3872
- "id": 282,
3925
+ "id": 284,
3873
3926
  "name": "text",
3874
3927
  "kind": 262144,
3875
3928
  "kindString": "Accessor",
@@ -3897,7 +3950,7 @@
3897
3950
  ],
3898
3951
  "getSignature": [
3899
3952
  {
3900
- "id": 283,
3953
+ "id": 285,
3901
3954
  "name": "text",
3902
3955
  "kind": 524288,
3903
3956
  "kindString": "Get signature",
@@ -3913,7 +3966,7 @@
3913
3966
  ],
3914
3967
  "setSignature": [
3915
3968
  {
3916
- "id": 284,
3969
+ "id": 286,
3917
3970
  "name": "text",
3918
3971
  "kind": 1048576,
3919
3972
  "kindString": "Set signature",
@@ -3923,7 +3976,7 @@
3923
3976
  },
3924
3977
  "parameters": [
3925
3978
  {
3926
- "id": 285,
3979
+ "id": 287,
3927
3980
  "name": "value",
3928
3981
  "kind": 32768,
3929
3982
  "kindString": "Parameter",
@@ -3947,22 +4000,22 @@
3947
4000
  "title": "Constructors",
3948
4001
  "kind": 512,
3949
4002
  "children": [
3950
- 279
4003
+ 281
3951
4004
  ]
3952
4005
  },
3953
4006
  {
3954
4007
  "title": "Properties",
3955
4008
  "kind": 1024,
3956
4009
  "children": [
3957
- 281
4010
+ 283
3958
4011
  ]
3959
4012
  },
3960
4013
  {
3961
4014
  "title": "Accessors",
3962
4015
  "kind": 262144,
3963
4016
  "children": [
3964
- 286,
3965
- 282
4017
+ 288,
4018
+ 284
3966
4019
  ]
3967
4020
  }
3968
4021
  ],
@@ -3975,7 +4028,7 @@
3975
4028
  ]
3976
4029
  },
3977
4030
  {
3978
- "id": 294,
4031
+ "id": 296,
3979
4032
  "name": "SkyPageComponent",
3980
4033
  "kind": 128,
3981
4034
  "kindString": "Class",
@@ -3999,7 +4052,7 @@
3999
4052
  ],
4000
4053
  "children": [
4001
4054
  {
4002
- "id": 295,
4055
+ "id": 297,
4003
4056
  "name": "constructor",
4004
4057
  "kind": 512,
4005
4058
  "kindString": "Constructor",
@@ -4013,14 +4066,14 @@
4013
4066
  ],
4014
4067
  "signatures": [
4015
4068
  {
4016
- "id": 296,
4069
+ "id": 298,
4017
4070
  "name": "SkyPageComponent",
4018
4071
  "kind": 16384,
4019
4072
  "kindString": "Constructor signature",
4020
4073
  "flags": {},
4021
4074
  "parameters": [
4022
4075
  {
4023
- "id": 297,
4076
+ "id": 299,
4024
4077
  "name": "themeAdapter",
4025
4078
  "kind": 32768,
4026
4079
  "kindString": "Parameter",
@@ -4033,14 +4086,14 @@
4033
4086
  ],
4034
4087
  "type": {
4035
4088
  "type": "reference",
4036
- "id": 294,
4089
+ "id": 296,
4037
4090
  "name": "SkyPageComponent"
4038
4091
  }
4039
4092
  }
4040
4093
  ]
4041
4094
  },
4042
4095
  {
4043
- "id": 300,
4096
+ "id": 302,
4044
4097
  "name": "ngOnDestroy",
4045
4098
  "kind": 2048,
4046
4099
  "kindString": "Method",
@@ -4056,7 +4109,7 @@
4056
4109
  ],
4057
4110
  "signatures": [
4058
4111
  {
4059
- "id": 301,
4112
+ "id": 303,
4060
4113
  "name": "ngOnDestroy",
4061
4114
  "kind": 4096,
4062
4115
  "kindString": "Call signature",
@@ -4077,7 +4130,7 @@
4077
4130
  }
4078
4131
  },
4079
4132
  {
4080
- "id": 298,
4133
+ "id": 300,
4081
4134
  "name": "ngOnInit",
4082
4135
  "kind": 2048,
4083
4136
  "kindString": "Method",
@@ -4093,7 +4146,7 @@
4093
4146
  ],
4094
4147
  "signatures": [
4095
4148
  {
4096
- "id": 299,
4149
+ "id": 301,
4097
4150
  "name": "ngOnInit",
4098
4151
  "kind": 4096,
4099
4152
  "kindString": "Call signature",
@@ -4119,15 +4172,15 @@
4119
4172
  "title": "Constructors",
4120
4173
  "kind": 512,
4121
4174
  "children": [
4122
- 295
4175
+ 297
4123
4176
  ]
4124
4177
  },
4125
4178
  {
4126
4179
  "title": "Methods",
4127
4180
  "kind": 2048,
4128
4181
  "children": [
4129
- 300,
4130
- 298
4182
+ 302,
4183
+ 300
4131
4184
  ]
4132
4185
  }
4133
4186
  ],
@@ -4154,13 +4207,19 @@
4154
4207
  ]
4155
4208
  },
4156
4209
  {
4157
- "id": 302,
4210
+ "id": 304,
4158
4211
  "name": "SkyPageSummaryComponent",
4159
4212
  "kind": 128,
4160
4213
  "kindString": "Class",
4161
4214
  "flags": {},
4162
4215
  "comment": {
4163
- "shortText": "Specifies the components to display in the page summary."
4216
+ "shortText": "Specifies the components to display in the page summary.",
4217
+ "tags": [
4218
+ {
4219
+ "tag": "deprecated",
4220
+ "text": "`SkyPageSummaryComponent` is deprecated. For page templates and techniques to summarize page content, see the page design guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/page-layouts.\n"
4221
+ }
4222
+ ]
4164
4223
  },
4165
4224
  "decorators": [
4166
4225
  {
@@ -4178,7 +4237,7 @@
4178
4237
  ],
4179
4238
  "children": [
4180
4239
  {
4181
- "id": 303,
4240
+ "id": 305,
4182
4241
  "name": "constructor",
4183
4242
  "kind": 512,
4184
4243
  "kindString": "Constructor",
@@ -4186,20 +4245,20 @@
4186
4245
  "sources": [
4187
4246
  {
4188
4247
  "fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
4189
- "line": 37,
4248
+ "line": 42,
4190
4249
  "character": 2
4191
4250
  }
4192
4251
  ],
4193
4252
  "signatures": [
4194
4253
  {
4195
- "id": 304,
4254
+ "id": 306,
4196
4255
  "name": "SkyPageSummaryComponent",
4197
4256
  "kind": 16384,
4198
4257
  "kindString": "Constructor signature",
4199
4258
  "flags": {},
4200
4259
  "parameters": [
4201
4260
  {
4202
- "id": 305,
4261
+ "id": 307,
4203
4262
  "name": "elRef",
4204
4263
  "kind": 32768,
4205
4264
  "kindString": "Parameter",
@@ -4218,7 +4277,7 @@
4218
4277
  }
4219
4278
  },
4220
4279
  {
4221
- "id": 306,
4280
+ "id": 308,
4222
4281
  "name": "adapter",
4223
4282
  "kind": 32768,
4224
4283
  "kindString": "Parameter",
@@ -4229,7 +4288,7 @@
4229
4288
  }
4230
4289
  },
4231
4290
  {
4232
- "id": 307,
4291
+ "id": 309,
4233
4292
  "name": "mediaQueryService",
4234
4293
  "kind": 32768,
4235
4294
  "kindString": "Parameter",
@@ -4238,18 +4297,29 @@
4238
4297
  "type": "reference",
4239
4298
  "name": "SkyMediaQueryService"
4240
4299
  }
4300
+ },
4301
+ {
4302
+ "id": 310,
4303
+ "name": "logger",
4304
+ "kind": 32768,
4305
+ "kindString": "Parameter",
4306
+ "flags": {},
4307
+ "type": {
4308
+ "type": "reference",
4309
+ "name": "SkyLogService"
4310
+ }
4241
4311
  }
4242
4312
  ],
4243
4313
  "type": {
4244
4314
  "type": "reference",
4245
- "id": 302,
4315
+ "id": 304,
4246
4316
  "name": "SkyPageSummaryComponent"
4247
4317
  }
4248
4318
  }
4249
4319
  ]
4250
4320
  },
4251
4321
  {
4252
- "id": 308,
4322
+ "id": 311,
4253
4323
  "name": "hasKeyInfo",
4254
4324
  "kind": 262144,
4255
4325
  "kindString": "Accessor",
@@ -4259,13 +4329,13 @@
4259
4329
  "sources": [
4260
4330
  {
4261
4331
  "fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
4262
- "line": 26,
4332
+ "line": 31,
4263
4333
  "character": 13
4264
4334
  }
4265
4335
  ],
4266
4336
  "getSignature": [
4267
4337
  {
4268
- "id": 309,
4338
+ "id": 312,
4269
4339
  "name": "hasKeyInfo",
4270
4340
  "kind": 524288,
4271
4341
  "kindString": "Get signature",
@@ -4278,7 +4348,7 @@
4278
4348
  ]
4279
4349
  },
4280
4350
  {
4281
- "id": 312,
4351
+ "id": 315,
4282
4352
  "name": "ngAfterViewInit",
4283
4353
  "kind": 2048,
4284
4354
  "kindString": "Method",
@@ -4288,13 +4358,13 @@
4288
4358
  "sources": [
4289
4359
  {
4290
4360
  "fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
4291
- "line": 43,
4361
+ "line": 57,
4292
4362
  "character": 9
4293
4363
  }
4294
4364
  ],
4295
4365
  "signatures": [
4296
4366
  {
4297
- "id": 313,
4367
+ "id": 316,
4298
4368
  "name": "ngAfterViewInit",
4299
4369
  "kind": 4096,
4300
4370
  "kindString": "Call signature",
@@ -4315,7 +4385,7 @@
4315
4385
  }
4316
4386
  },
4317
4387
  {
4318
- "id": 314,
4388
+ "id": 317,
4319
4389
  "name": "ngOnDestroy",
4320
4390
  "kind": 2048,
4321
4391
  "kindString": "Method",
@@ -4325,13 +4395,13 @@
4325
4395
  "sources": [
4326
4396
  {
4327
4397
  "fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
4328
- "line": 54,
4398
+ "line": 68,
4329
4399
  "character": 9
4330
4400
  }
4331
4401
  ],
4332
4402
  "signatures": [
4333
4403
  {
4334
- "id": 315,
4404
+ "id": 318,
4335
4405
  "name": "ngOnDestroy",
4336
4406
  "kind": 4096,
4337
4407
  "kindString": "Call signature",
@@ -4357,29 +4427,29 @@
4357
4427
  "title": "Constructors",
4358
4428
  "kind": 512,
4359
4429
  "children": [
4360
- 303
4430
+ 305
4361
4431
  ]
4362
4432
  },
4363
4433
  {
4364
4434
  "title": "Accessors",
4365
4435
  "kind": 262144,
4366
4436
  "children": [
4367
- 308
4437
+ 311
4368
4438
  ]
4369
4439
  },
4370
4440
  {
4371
4441
  "title": "Methods",
4372
4442
  "kind": 2048,
4373
4443
  "children": [
4374
- 312,
4375
- 314
4444
+ 315,
4445
+ 317
4376
4446
  ]
4377
4447
  }
4378
4448
  ],
4379
4449
  "sources": [
4380
4450
  {
4381
4451
  "fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
4382
- "line": 25,
4452
+ "line": 30,
4383
4453
  "character": 13
4384
4454
  }
4385
4455
  ],
@@ -4399,13 +4469,19 @@
4399
4469
  ]
4400
4470
  },
4401
4471
  {
4402
- "id": 316,
4472
+ "id": 319,
4403
4473
  "name": "SkyPageSummaryAlertComponent",
4404
4474
  "kind": 128,
4405
4475
  "kindString": "Class",
4406
4476
  "flags": {},
4407
4477
  "comment": {
4408
- "shortText": "Displays messages that require immediate attention as [alerts](https://developer.blackbaud.com/skyux/components/alert) within\nthe page summary."
4478
+ "shortText": "Displays messages that require immediate attention as [alerts](https://developer.blackbaud.com/skyux/components/alert) within\nthe page summary.",
4479
+ "tags": [
4480
+ {
4481
+ "tag": "deprecated",
4482
+ "text": "\n"
4483
+ }
4484
+ ]
4409
4485
  },
4410
4486
  "decorators": [
4411
4487
  {
@@ -4427,26 +4503,32 @@
4427
4503
  "title": "Constructors",
4428
4504
  "kind": 512,
4429
4505
  "children": [
4430
- 317
4506
+ 320
4431
4507
  ]
4432
4508
  }
4433
4509
  ],
4434
4510
  "sources": [
4435
4511
  {
4436
4512
  "fileName": "projects/layout/src/modules/page-summary/page-summary-alert.component.ts",
4437
- "line": 14,
4513
+ "line": 15,
4438
4514
  "character": 13
4439
4515
  }
4440
4516
  ]
4441
4517
  },
4442
4518
  {
4443
- "id": 319,
4519
+ "id": 322,
4444
4520
  "name": "SkyPageSummaryContentComponent",
4445
4521
  "kind": 128,
4446
4522
  "kindString": "Class",
4447
4523
  "flags": {},
4448
4524
  "comment": {
4449
- "shortText": "Displays content in the arbitrary section of the page summary."
4525
+ "shortText": "Displays content in the arbitrary section of the page summary.",
4526
+ "tags": [
4527
+ {
4528
+ "tag": "deprecated",
4529
+ "text": "\n"
4530
+ }
4531
+ ]
4450
4532
  },
4451
4533
  "decorators": [
4452
4534
  {
@@ -4468,14 +4550,14 @@
4468
4550
  "title": "Constructors",
4469
4551
  "kind": 512,
4470
4552
  "children": [
4471
- 320
4553
+ 323
4472
4554
  ]
4473
4555
  }
4474
4556
  ],
4475
4557
  "sources": [
4476
4558
  {
4477
4559
  "fileName": "projects/layout/src/modules/page-summary/page-summary-content.component.ts",
4478
- "line": 13,
4560
+ "line": 14,
4479
4561
  "character": 13
4480
4562
  }
4481
4563
  ]
@@ -4522,13 +4604,19 @@
4522
4604
  ]
4523
4605
  },
4524
4606
  {
4525
- "id": 322,
4607
+ "id": 325,
4526
4608
  "name": "SkyPageSummaryImageComponent",
4527
4609
  "kind": 128,
4528
4610
  "kindString": "Class",
4529
4611
  "flags": {},
4530
4612
  "comment": {
4531
- "shortText": "Displays an image in the page summary to identify a record\nor help users complete a core task."
4613
+ "shortText": "Displays an image in the page summary to identify a record\nor help users complete a core task.",
4614
+ "tags": [
4615
+ {
4616
+ "tag": "deprecated",
4617
+ "text": "\n"
4618
+ }
4619
+ ]
4532
4620
  },
4533
4621
  "decorators": [
4534
4622
  {
@@ -4550,26 +4638,32 @@
4550
4638
  "title": "Constructors",
4551
4639
  "kind": 512,
4552
4640
  "children": [
4553
- 323
4641
+ 326
4554
4642
  ]
4555
4643
  }
4556
4644
  ],
4557
4645
  "sources": [
4558
4646
  {
4559
4647
  "fileName": "projects/layout/src/modules/page-summary/page-summary-image.component.ts",
4560
- "line": 14,
4648
+ "line": 15,
4561
4649
  "character": 13
4562
4650
  }
4563
4651
  ]
4564
4652
  },
4565
4653
  {
4566
- "id": 325,
4654
+ "id": 328,
4567
4655
  "name": "SkyPageSummaryKeyInfoComponent",
4568
4656
  "kind": 128,
4569
4657
  "kindString": "Class",
4570
4658
  "flags": {},
4571
4659
  "comment": {
4572
- "shortText": "Highlights important information about a page in the key information section of the\npage summary."
4660
+ "shortText": "Highlights important information about a page in the key information section of the\npage summary.",
4661
+ "tags": [
4662
+ {
4663
+ "tag": "deprecated",
4664
+ "text": "\n"
4665
+ }
4666
+ ]
4573
4667
  },
4574
4668
  "decorators": [
4575
4669
  {
@@ -4591,26 +4685,32 @@
4591
4685
  "title": "Constructors",
4592
4686
  "kind": 512,
4593
4687
  "children": [
4594
- 326
4688
+ 329
4595
4689
  ]
4596
4690
  }
4597
4691
  ],
4598
4692
  "sources": [
4599
4693
  {
4600
4694
  "fileName": "projects/layout/src/modules/page-summary/page-summary-key-info.component.ts",
4601
- "line": 12,
4695
+ "line": 13,
4602
4696
  "character": 13
4603
4697
  }
4604
4698
  ]
4605
4699
  },
4606
4700
  {
4607
- "id": 328,
4701
+ "id": 331,
4608
4702
  "name": "SkyPageSummaryStatusComponent",
4609
4703
  "kind": 128,
4610
4704
  "kindString": "Class",
4611
4705
  "flags": {},
4612
4706
  "comment": {
4613
- "shortText": "Displays [labels](https://developer.blackbaud.com/skyux/components/label)\nto highlight important status information about a page's content."
4707
+ "shortText": "Displays [labels](https://developer.blackbaud.com/skyux/components/label)\nto highlight important status information about a page's content.",
4708
+ "tags": [
4709
+ {
4710
+ "tag": "deprecated",
4711
+ "text": "\n"
4712
+ }
4713
+ ]
4614
4714
  },
4615
4715
  "decorators": [
4616
4716
  {
@@ -4632,26 +4732,32 @@
4632
4732
  "title": "Constructors",
4633
4733
  "kind": 512,
4634
4734
  "children": [
4635
- 329
4735
+ 332
4636
4736
  ]
4637
4737
  }
4638
4738
  ],
4639
4739
  "sources": [
4640
4740
  {
4641
4741
  "fileName": "projects/layout/src/modules/page-summary/page-summary-status.component.ts",
4642
- "line": 14,
4742
+ "line": 15,
4643
4743
  "character": 13
4644
4744
  }
4645
4745
  ]
4646
4746
  },
4647
4747
  {
4648
- "id": 331,
4748
+ "id": 334,
4649
4749
  "name": "SkyPageSummarySubtitleComponent",
4650
4750
  "kind": 128,
4651
4751
  "kindString": "Class",
4652
4752
  "flags": {},
4653
4753
  "comment": {
4654
- "shortText": "Specifies a subtitle to identify the page content."
4754
+ "shortText": "Specifies a subtitle to identify the page content.",
4755
+ "tags": [
4756
+ {
4757
+ "tag": "deprecated",
4758
+ "text": "\n"
4759
+ }
4760
+ ]
4655
4761
  },
4656
4762
  "decorators": [
4657
4763
  {
@@ -4673,26 +4779,32 @@
4673
4779
  "title": "Constructors",
4674
4780
  "kind": 512,
4675
4781
  "children": [
4676
- 332
4782
+ 335
4677
4783
  ]
4678
4784
  }
4679
4785
  ],
4680
4786
  "sources": [
4681
4787
  {
4682
4788
  "fileName": "projects/layout/src/modules/page-summary/page-summary-subtitle.component.ts",
4683
- "line": 13,
4789
+ "line": 14,
4684
4790
  "character": 13
4685
4791
  }
4686
4792
  ]
4687
4793
  },
4688
4794
  {
4689
- "id": 334,
4795
+ "id": 337,
4690
4796
  "name": "SkyPageSummaryTitleComponent",
4691
4797
  "kind": 128,
4692
4798
  "kindString": "Class",
4693
4799
  "flags": {},
4694
4800
  "comment": {
4695
- "shortText": "Specifies a title to identify the page content."
4801
+ "shortText": "Specifies a title to identify the page content.",
4802
+ "tags": [
4803
+ {
4804
+ "tag": "deprecated",
4805
+ "text": "\n"
4806
+ }
4807
+ ]
4696
4808
  },
4697
4809
  "decorators": [
4698
4810
  {
@@ -4714,20 +4826,20 @@
4714
4826
  "title": "Constructors",
4715
4827
  "kind": 512,
4716
4828
  "children": [
4717
- 335
4829
+ 338
4718
4830
  ]
4719
4831
  }
4720
4832
  ],
4721
4833
  "sources": [
4722
4834
  {
4723
4835
  "fileName": "projects/layout/src/modules/page-summary/page-summary-title.component.ts",
4724
- "line": 13,
4836
+ "line": 14,
4725
4837
  "character": 13
4726
4838
  }
4727
4839
  ]
4728
4840
  },
4729
4841
  {
4730
- "id": 337,
4842
+ "id": 340,
4731
4843
  "name": "SkyTextExpandComponent",
4732
4844
  "kind": 128,
4733
4845
  "kindString": "Class",
@@ -4748,7 +4860,7 @@
4748
4860
  ],
4749
4861
  "children": [
4750
4862
  {
4751
- "id": 338,
4863
+ "id": 341,
4752
4864
  "name": "constructor",
4753
4865
  "kind": 512,
4754
4866
  "kindString": "Constructor",
@@ -4762,14 +4874,14 @@
4762
4874
  ],
4763
4875
  "signatures": [
4764
4876
  {
4765
- "id": 339,
4877
+ "id": 342,
4766
4878
  "name": "SkyTextExpandComponent",
4767
4879
  "kind": 16384,
4768
4880
  "kindString": "Constructor signature",
4769
4881
  "flags": {},
4770
4882
  "parameters": [
4771
4883
  {
4772
- "id": 340,
4884
+ "id": 343,
4773
4885
  "name": "resources",
4774
4886
  "kind": 32768,
4775
4887
  "kindString": "Parameter",
@@ -4780,7 +4892,7 @@
4780
4892
  }
4781
4893
  },
4782
4894
  {
4783
- "id": 341,
4895
+ "id": 344,
4784
4896
  "name": "modalService",
4785
4897
  "kind": 32768,
4786
4898
  "kindString": "Parameter",
@@ -4791,7 +4903,7 @@
4791
4903
  }
4792
4904
  },
4793
4905
  {
4794
- "id": 342,
4906
+ "id": 345,
4795
4907
  "name": "textExpandAdapter",
4796
4908
  "kind": 32768,
4797
4909
  "kindString": "Parameter",
@@ -4804,14 +4916,14 @@
4804
4916
  ],
4805
4917
  "type": {
4806
4918
  "type": "reference",
4807
- "id": 337,
4919
+ "id": 340,
4808
4920
  "name": "SkyTextExpandComponent"
4809
4921
  }
4810
4922
  }
4811
4923
  ]
4812
4924
  },
4813
4925
  {
4814
- "id": 354,
4926
+ "id": 357,
4815
4927
  "name": "buttonText",
4816
4928
  "kind": 1024,
4817
4929
  "kindString": "Property",
@@ -4831,7 +4943,7 @@
4831
4943
  }
4832
4944
  },
4833
4945
  {
4834
- "id": 355,
4946
+ "id": 358,
4835
4947
  "name": "contentSectionId",
4836
4948
  "kind": 1024,
4837
4949
  "kindString": "Property",
@@ -4852,7 +4964,7 @@
4852
4964
  "defaultValue": "..."
4853
4965
  },
4854
4966
  {
4855
- "id": 343,
4967
+ "id": 346,
4856
4968
  "name": "expandModalTitle",
4857
4969
  "kind": 1024,
4858
4970
  "kindString": "Property",
@@ -4893,7 +5005,7 @@
4893
5005
  }
4894
5006
  },
4895
5007
  {
4896
- "id": 356,
5008
+ "id": 359,
4897
5009
  "name": "expandable",
4898
5010
  "kind": 1024,
4899
5011
  "kindString": "Property",
@@ -4913,7 +5025,7 @@
4913
5025
  }
4914
5026
  },
4915
5027
  {
4916
- "id": 357,
5028
+ "id": 360,
4917
5029
  "name": "isExpanded",
4918
5030
  "kind": 1024,
4919
5031
  "kindString": "Property",
@@ -4934,7 +5046,7 @@
4934
5046
  "defaultValue": "false"
4935
5047
  },
4936
5048
  {
4937
- "id": 358,
5049
+ "id": 361,
4938
5050
  "name": "isModal",
4939
5051
  "kind": 1024,
4940
5052
  "kindString": "Property",
@@ -4954,7 +5066,7 @@
4954
5066
  }
4955
5067
  },
4956
5068
  {
4957
- "id": 344,
5069
+ "id": 347,
4958
5070
  "name": "maxExpandedLength",
4959
5071
  "kind": 1024,
4960
5072
  "kindString": "Property",
@@ -4990,7 +5102,7 @@
4990
5102
  "defaultValue": "600"
4991
5103
  },
4992
5104
  {
4993
- "id": 345,
5105
+ "id": 348,
4994
5106
  "name": "maxExpandedNewlines",
4995
5107
  "kind": 1024,
4996
5108
  "kindString": "Property",
@@ -5026,7 +5138,7 @@
5026
5138
  "defaultValue": "2"
5027
5139
  },
5028
5140
  {
5029
- "id": 353,
5141
+ "id": 356,
5030
5142
  "name": "truncateNewlines",
5031
5143
  "kind": 1024,
5032
5144
  "kindString": "Property",
@@ -5062,7 +5174,7 @@
5062
5174
  "defaultValue": "true"
5063
5175
  },
5064
5176
  {
5065
- "id": 346,
5177
+ "id": 349,
5066
5178
  "name": "maxLength",
5067
5179
  "kind": 262144,
5068
5180
  "kindString": "Accessor",
@@ -5090,7 +5202,7 @@
5090
5202
  ],
5091
5203
  "getSignature": [
5092
5204
  {
5093
- "id": 347,
5205
+ "id": 350,
5094
5206
  "name": "maxLength",
5095
5207
  "kind": 524288,
5096
5208
  "kindString": "Get signature",
@@ -5112,7 +5224,7 @@
5112
5224
  ],
5113
5225
  "setSignature": [
5114
5226
  {
5115
- "id": 348,
5227
+ "id": 351,
5116
5228
  "name": "maxLength",
5117
5229
  "kind": 1048576,
5118
5230
  "kindString": "Set signature",
@@ -5128,7 +5240,7 @@
5128
5240
  },
5129
5241
  "parameters": [
5130
5242
  {
5131
- "id": 349,
5243
+ "id": 352,
5132
5244
  "name": "value",
5133
5245
  "kind": 32768,
5134
5246
  "kindString": "Parameter",
@@ -5147,7 +5259,7 @@
5147
5259
  ]
5148
5260
  },
5149
5261
  {
5150
- "id": 350,
5262
+ "id": 353,
5151
5263
  "name": "text",
5152
5264
  "kind": 262144,
5153
5265
  "kindString": "Accessor",
@@ -5175,7 +5287,7 @@
5175
5287
  ],
5176
5288
  "setSignature": [
5177
5289
  {
5178
- "id": 351,
5290
+ "id": 354,
5179
5291
  "name": "text",
5180
5292
  "kind": 1048576,
5181
5293
  "kindString": "Set signature",
@@ -5185,7 +5297,7 @@
5185
5297
  },
5186
5298
  "parameters": [
5187
5299
  {
5188
- "id": 352,
5300
+ "id": 355,
5189
5301
  "name": "value",
5190
5302
  "kind": 32768,
5191
5303
  "kindString": "Parameter",
@@ -5204,7 +5316,7 @@
5204
5316
  ]
5205
5317
  },
5206
5318
  {
5207
- "id": 370,
5319
+ "id": 373,
5208
5320
  "name": "animationEnd",
5209
5321
  "kind": 2048,
5210
5322
  "kindString": "Method",
@@ -5220,7 +5332,7 @@
5220
5332
  ],
5221
5333
  "signatures": [
5222
5334
  {
5223
- "id": 371,
5335
+ "id": 374,
5224
5336
  "name": "animationEnd",
5225
5337
  "kind": 4096,
5226
5338
  "kindString": "Call signature",
@@ -5233,7 +5345,7 @@
5233
5345
  ]
5234
5346
  },
5235
5347
  {
5236
- "id": 372,
5348
+ "id": 375,
5237
5349
  "name": "ngAfterContentInit",
5238
5350
  "kind": 2048,
5239
5351
  "kindString": "Method",
@@ -5249,7 +5361,7 @@
5249
5361
  ],
5250
5362
  "signatures": [
5251
5363
  {
5252
- "id": 373,
5364
+ "id": 376,
5253
5365
  "name": "ngAfterContentInit",
5254
5366
  "kind": 4096,
5255
5367
  "kindString": "Call signature",
@@ -5270,7 +5382,7 @@
5270
5382
  }
5271
5383
  },
5272
5384
  {
5273
- "id": 368,
5385
+ "id": 371,
5274
5386
  "name": "textExpand",
5275
5387
  "kind": 2048,
5276
5388
  "kindString": "Method",
@@ -5286,7 +5398,7 @@
5286
5398
  ],
5287
5399
  "signatures": [
5288
5400
  {
5289
- "id": 369,
5401
+ "id": 372,
5290
5402
  "name": "textExpand",
5291
5403
  "kind": 4096,
5292
5404
  "kindString": "Call signature",
@@ -5304,39 +5416,39 @@
5304
5416
  "title": "Constructors",
5305
5417
  "kind": 512,
5306
5418
  "children": [
5307
- 338
5419
+ 341
5308
5420
  ]
5309
5421
  },
5310
5422
  {
5311
5423
  "title": "Properties",
5312
5424
  "kind": 1024,
5313
5425
  "children": [
5314
- 354,
5315
- 355,
5316
- 343,
5317
- 356,
5318
5426
  357,
5319
5427
  358,
5320
- 344,
5321
- 345,
5322
- 353
5428
+ 346,
5429
+ 359,
5430
+ 360,
5431
+ 361,
5432
+ 347,
5433
+ 348,
5434
+ 356
5323
5435
  ]
5324
5436
  },
5325
5437
  {
5326
5438
  "title": "Accessors",
5327
5439
  "kind": 262144,
5328
5440
  "children": [
5329
- 346,
5330
- 350
5441
+ 349,
5442
+ 353
5331
5443
  ]
5332
5444
  },
5333
5445
  {
5334
5446
  "title": "Methods",
5335
5447
  "kind": 2048,
5336
5448
  "children": [
5337
- 370,
5338
- 372,
5339
- 368
5449
+ 373,
5450
+ 375,
5451
+ 371
5340
5452
  ]
5341
5453
  }
5342
5454
  ],
@@ -5357,7 +5469,7 @@
5357
5469
  ]
5358
5470
  },
5359
5471
  {
5360
- "id": 391,
5472
+ "id": 394,
5361
5473
  "name": "SkyTextExpandRepeaterComponent",
5362
5474
  "kind": 128,
5363
5475
  "kindString": "Class",
@@ -5378,7 +5490,7 @@
5378
5490
  ],
5379
5491
  "children": [
5380
5492
  {
5381
- "id": 392,
5493
+ "id": 395,
5382
5494
  "name": "constructor",
5383
5495
  "kind": 512,
5384
5496
  "kindString": "Constructor",
@@ -5392,14 +5504,14 @@
5392
5504
  ],
5393
5505
  "signatures": [
5394
5506
  {
5395
- "id": 393,
5507
+ "id": 396,
5396
5508
  "name": "SkyTextExpandRepeaterComponent",
5397
5509
  "kind": 16384,
5398
5510
  "kindString": "Constructor signature",
5399
5511
  "flags": {},
5400
5512
  "parameters": [
5401
5513
  {
5402
- "id": 394,
5514
+ "id": 397,
5403
5515
  "name": "resources",
5404
5516
  "kind": 32768,
5405
5517
  "kindString": "Parameter",
@@ -5410,7 +5522,7 @@
5410
5522
  }
5411
5523
  },
5412
5524
  {
5413
- "id": 395,
5525
+ "id": 398,
5414
5526
  "name": "elRef",
5415
5527
  "kind": 32768,
5416
5528
  "kindString": "Parameter",
@@ -5429,7 +5541,7 @@
5429
5541
  }
5430
5542
  },
5431
5543
  {
5432
- "id": 396,
5544
+ "id": 399,
5433
5545
  "name": "textExpandRepeaterAdapter",
5434
5546
  "kind": 32768,
5435
5547
  "kindString": "Parameter",
@@ -5440,7 +5552,7 @@
5440
5552
  }
5441
5553
  },
5442
5554
  {
5443
- "id": 397,
5555
+ "id": 400,
5444
5556
  "name": "changeDetector",
5445
5557
  "kind": 32768,
5446
5558
  "kindString": "Parameter",
@@ -5455,14 +5567,14 @@
5455
5567
  ],
5456
5568
  "type": {
5457
5569
  "type": "reference",
5458
- "id": 391,
5570
+ "id": 394,
5459
5571
  "name": "SkyTextExpandRepeaterComponent"
5460
5572
  }
5461
5573
  }
5462
5574
  ]
5463
5575
  },
5464
5576
  {
5465
- "id": 402,
5577
+ "id": 405,
5466
5578
  "name": "buttonText",
5467
5579
  "kind": 1024,
5468
5580
  "kindString": "Property",
@@ -5482,7 +5594,7 @@
5482
5594
  }
5483
5595
  },
5484
5596
  {
5485
- "id": 403,
5597
+ "id": 406,
5486
5598
  "name": "contentItems",
5487
5599
  "kind": 1024,
5488
5600
  "kindString": "Property",
@@ -5505,7 +5617,7 @@
5505
5617
  }
5506
5618
  },
5507
5619
  {
5508
- "id": 405,
5620
+ "id": 408,
5509
5621
  "name": "contentSectionId",
5510
5622
  "kind": 1024,
5511
5623
  "kindString": "Property",
@@ -5526,7 +5638,7 @@
5526
5638
  "defaultValue": "..."
5527
5639
  },
5528
5640
  {
5529
- "id": 398,
5641
+ "id": 401,
5530
5642
  "name": "data",
5531
5643
  "kind": 1024,
5532
5644
  "kindString": "Property",
@@ -5564,7 +5676,7 @@
5564
5676
  }
5565
5677
  },
5566
5678
  {
5567
- "id": 404,
5679
+ "id": 407,
5568
5680
  "name": "expandable",
5569
5681
  "kind": 1024,
5570
5682
  "kindString": "Property",
@@ -5584,7 +5696,7 @@
5584
5696
  }
5585
5697
  },
5586
5698
  {
5587
- "id": 406,
5699
+ "id": 409,
5588
5700
  "name": "isExpanded",
5589
5701
  "kind": 1024,
5590
5702
  "kindString": "Property",
@@ -5605,7 +5717,7 @@
5605
5717
  "defaultValue": "false"
5606
5718
  },
5607
5719
  {
5608
- "id": 399,
5720
+ "id": 402,
5609
5721
  "name": "itemTemplate",
5610
5722
  "kind": 1024,
5611
5723
  "kindString": "Property",
@@ -5648,7 +5760,7 @@
5648
5760
  }
5649
5761
  },
5650
5762
  {
5651
- "id": 400,
5763
+ "id": 403,
5652
5764
  "name": "listStyle",
5653
5765
  "kind": 1024,
5654
5766
  "kindString": "Property",
@@ -5685,13 +5797,13 @@
5685
5797
  ],
5686
5798
  "type": {
5687
5799
  "type": "reference",
5688
- "id": 527,
5800
+ "id": 530,
5689
5801
  "name": "SkyTextExpandRepeaterListStyleType"
5690
5802
  },
5691
5803
  "defaultValue": "'unordered'"
5692
5804
  },
5693
5805
  {
5694
- "id": 401,
5806
+ "id": 404,
5695
5807
  "name": "maxItems",
5696
5808
  "kind": 1024,
5697
5809
  "kindString": "Property",
@@ -5726,7 +5838,7 @@
5726
5838
  }
5727
5839
  },
5728
5840
  {
5729
- "id": 416,
5841
+ "id": 419,
5730
5842
  "name": "animationEnd",
5731
5843
  "kind": 2048,
5732
5844
  "kindString": "Method",
@@ -5742,7 +5854,7 @@
5742
5854
  ],
5743
5855
  "signatures": [
5744
5856
  {
5745
- "id": 417,
5857
+ "id": 420,
5746
5858
  "name": "animationEnd",
5747
5859
  "kind": 4096,
5748
5860
  "kindString": "Call signature",
@@ -5755,7 +5867,7 @@
5755
5867
  ]
5756
5868
  },
5757
5869
  {
5758
- "id": 411,
5870
+ "id": 414,
5759
5871
  "name": "ngAfterViewInit",
5760
5872
  "kind": 2048,
5761
5873
  "kindString": "Method",
@@ -5771,7 +5883,7 @@
5771
5883
  ],
5772
5884
  "signatures": [
5773
5885
  {
5774
- "id": 412,
5886
+ "id": 415,
5775
5887
  "name": "ngAfterViewInit",
5776
5888
  "kind": 4096,
5777
5889
  "kindString": "Call signature",
@@ -5792,7 +5904,7 @@
5792
5904
  }
5793
5905
  },
5794
5906
  {
5795
- "id": 413,
5907
+ "id": 416,
5796
5908
  "name": "ngOnChanges",
5797
5909
  "kind": 2048,
5798
5910
  "kindString": "Method",
@@ -5808,14 +5920,14 @@
5808
5920
  ],
5809
5921
  "signatures": [
5810
5922
  {
5811
- "id": 414,
5923
+ "id": 417,
5812
5924
  "name": "ngOnChanges",
5813
5925
  "kind": 4096,
5814
5926
  "kindString": "Call signature",
5815
5927
  "flags": {},
5816
5928
  "parameters": [
5817
5929
  {
5818
- "id": 415,
5930
+ "id": 418,
5819
5931
  "name": "changes",
5820
5932
  "kind": 32768,
5821
5933
  "kindString": "Parameter",
@@ -5844,7 +5956,7 @@
5844
5956
  }
5845
5957
  },
5846
5958
  {
5847
- "id": 418,
5959
+ "id": 421,
5848
5960
  "name": "repeaterExpand",
5849
5961
  "kind": 2048,
5850
5962
  "kindString": "Method",
@@ -5860,7 +5972,7 @@
5860
5972
  ],
5861
5973
  "signatures": [
5862
5974
  {
5863
- "id": 419,
5975
+ "id": 422,
5864
5976
  "name": "repeaterExpand",
5865
5977
  "kind": 4096,
5866
5978
  "kindString": "Call signature",
@@ -5878,32 +5990,32 @@
5878
5990
  "title": "Constructors",
5879
5991
  "kind": 512,
5880
5992
  "children": [
5881
- 392
5993
+ 395
5882
5994
  ]
5883
5995
  },
5884
5996
  {
5885
5997
  "title": "Properties",
5886
5998
  "kind": 1024,
5887
5999
  "children": [
5888
- 402,
5889
- 403,
5890
6000
  405,
5891
- 398,
5892
- 404,
5893
6001
  406,
5894
- 399,
5895
- 400,
5896
- 401
6002
+ 408,
6003
+ 401,
6004
+ 407,
6005
+ 409,
6006
+ 402,
6007
+ 403,
6008
+ 404
5897
6009
  ]
5898
6010
  },
5899
6011
  {
5900
6012
  "title": "Methods",
5901
6013
  "kind": 2048,
5902
6014
  "children": [
6015
+ 419,
6016
+ 414,
5903
6017
  416,
5904
- 411,
5905
- 413,
5906
- 418
6018
+ 421
5907
6019
  ]
5908
6020
  }
5909
6021
  ],
@@ -5930,7 +6042,7 @@
5930
6042
  ]
5931
6043
  },
5932
6044
  {
5933
- "id": 428,
6045
+ "id": 431,
5934
6046
  "name": "SkyToolbarComponent",
5935
6047
  "kind": 128,
5936
6048
  "kindString": "Class",
@@ -5954,7 +6066,7 @@
5954
6066
  ],
5955
6067
  "children": [
5956
6068
  {
5957
- "id": 431,
6069
+ "id": 434,
5958
6070
  "name": "hasSections",
5959
6071
  "kind": 1024,
5960
6072
  "kindString": "Property",
@@ -5975,7 +6087,7 @@
5975
6087
  "defaultValue": "false"
5976
6088
  },
5977
6089
  {
5978
- "id": 433,
6090
+ "id": 436,
5979
6091
  "name": "ngAfterContentInit",
5980
6092
  "kind": 2048,
5981
6093
  "kindString": "Method",
@@ -5991,7 +6103,7 @@
5991
6103
  ],
5992
6104
  "signatures": [
5993
6105
  {
5994
- "id": 434,
6106
+ "id": 437,
5995
6107
  "name": "ngAfterContentInit",
5996
6108
  "kind": 4096,
5997
6109
  "kindString": "Call signature",
@@ -6017,21 +6129,21 @@
6017
6129
  "title": "Constructors",
6018
6130
  "kind": 512,
6019
6131
  "children": [
6020
- 429
6132
+ 432
6021
6133
  ]
6022
6134
  },
6023
6135
  {
6024
6136
  "title": "Properties",
6025
6137
  "kind": 1024,
6026
6138
  "children": [
6027
- 431
6139
+ 434
6028
6140
  ]
6029
6141
  },
6030
6142
  {
6031
6143
  "title": "Methods",
6032
6144
  "kind": 2048,
6033
6145
  "children": [
6034
- 433
6146
+ 436
6035
6147
  ]
6036
6148
  }
6037
6149
  ],
@@ -6052,7 +6164,7 @@
6052
6164
  ]
6053
6165
  },
6054
6166
  {
6055
- "id": 435,
6167
+ "id": 438,
6056
6168
  "name": "SkyToolbarSectionComponent",
6057
6169
  "kind": 128,
6058
6170
  "kindString": "Class",
@@ -6080,7 +6192,7 @@
6080
6192
  "title": "Constructors",
6081
6193
  "kind": 512,
6082
6194
  "children": [
6083
- 436
6195
+ 439
6084
6196
  ]
6085
6197
  }
6086
6198
  ],
@@ -6093,7 +6205,7 @@
6093
6205
  ]
6094
6206
  },
6095
6207
  {
6096
- "id": 438,
6208
+ "id": 441,
6097
6209
  "name": "SkyToolbarItemComponent",
6098
6210
  "kind": 128,
6099
6211
  "kindString": "Class",
@@ -6121,7 +6233,7 @@
6121
6233
  "title": "Constructors",
6122
6234
  "kind": 512,
6123
6235
  "children": [
6124
- 439
6236
+ 442
6125
6237
  ]
6126
6238
  }
6127
6239
  ],
@@ -6175,7 +6287,7 @@
6175
6287
  ]
6176
6288
  },
6177
6289
  {
6178
- "id": 441,
6290
+ "id": 444,
6179
6291
  "name": "SkyToolbarViewActionsComponent",
6180
6292
  "kind": 128,
6181
6293
  "kindString": "Class",
@@ -6203,7 +6315,7 @@
6203
6315
  "title": "Constructors",
6204
6316
  "kind": 512,
6205
6317
  "children": [
6206
- 442
6318
+ 445
6207
6319
  ]
6208
6320
  }
6209
6321
  ],
@@ -6216,7 +6328,7 @@
6216
6328
  ]
6217
6329
  },
6218
6330
  {
6219
- "id": 444,
6331
+ "id": 447,
6220
6332
  "name": "SkyBoxComponent",
6221
6333
  "kind": 128,
6222
6334
  "kindString": "Class",
@@ -6240,7 +6352,7 @@
6240
6352
  ],
6241
6353
  "children": [
6242
6354
  {
6243
- "id": 447,
6355
+ "id": 450,
6244
6356
  "name": "ariaLabel",
6245
6357
  "kind": 1024,
6246
6358
  "kindString": "Property",
@@ -6275,7 +6387,7 @@
6275
6387
  }
6276
6388
  },
6277
6389
  {
6278
- "id": 448,
6390
+ "id": 451,
6279
6391
  "name": "ariaLabelledBy",
6280
6392
  "kind": 1024,
6281
6393
  "kindString": "Property",
@@ -6310,7 +6422,7 @@
6310
6422
  }
6311
6423
  },
6312
6424
  {
6313
- "id": 449,
6425
+ "id": 452,
6314
6426
  "name": "ariaRole",
6315
6427
  "kind": 1024,
6316
6428
  "kindString": "Property",
@@ -6350,16 +6462,16 @@
6350
6462
  "title": "Constructors",
6351
6463
  "kind": 512,
6352
6464
  "children": [
6353
- 445
6465
+ 448
6354
6466
  ]
6355
6467
  },
6356
6468
  {
6357
6469
  "title": "Properties",
6358
6470
  "kind": 1024,
6359
6471
  "children": [
6360
- 447,
6361
- 448,
6362
- 449
6472
+ 450,
6473
+ 451,
6474
+ 452
6363
6475
  ]
6364
6476
  }
6365
6477
  ],
@@ -6372,7 +6484,7 @@
6372
6484
  ]
6373
6485
  },
6374
6486
  {
6375
- "id": 450,
6487
+ "id": 453,
6376
6488
  "name": "SkyBoxHeaderComponent",
6377
6489
  "kind": 128,
6378
6490
  "kindString": "Class",
@@ -6400,7 +6512,7 @@
6400
6512
  "title": "Constructors",
6401
6513
  "kind": 512,
6402
6514
  "children": [
6403
- 451
6515
+ 454
6404
6516
  ]
6405
6517
  }
6406
6518
  ],
@@ -6413,7 +6525,7 @@
6413
6525
  ]
6414
6526
  },
6415
6527
  {
6416
- "id": 453,
6528
+ "id": 456,
6417
6529
  "name": "SkyBoxContentComponent",
6418
6530
  "kind": 128,
6419
6531
  "kindString": "Class",
@@ -6441,7 +6553,7 @@
6441
6553
  "title": "Constructors",
6442
6554
  "kind": 512,
6443
6555
  "children": [
6444
- 454
6556
+ 457
6445
6557
  ]
6446
6558
  }
6447
6559
  ],
@@ -6454,7 +6566,7 @@
6454
6566
  ]
6455
6567
  },
6456
6568
  {
6457
- "id": 456,
6569
+ "id": 459,
6458
6570
  "name": "SkyBoxControlsComponent",
6459
6571
  "kind": 128,
6460
6572
  "kindString": "Class",
@@ -6482,7 +6594,7 @@
6482
6594
  "title": "Constructors",
6483
6595
  "kind": 512,
6484
6596
  "children": [
6485
- 457
6597
+ 460
6486
6598
  ]
6487
6599
  }
6488
6600
  ],
@@ -6834,7 +6946,7 @@
6834
6946
  "flags": {},
6835
6947
  "type": {
6836
6948
  "type": "reference",
6837
- "id": 479,
6949
+ "id": 482,
6838
6950
  "name": "SkyBackToTopOptions"
6839
6951
  }
6840
6952
  }
@@ -6895,7 +7007,7 @@
6895
7007
  "typeArguments": [
6896
7008
  {
6897
7009
  "type": "reference",
6898
- "id": 475,
7010
+ "id": 478,
6899
7011
  "name": "SkyBackToTopMessage"
6900
7012
  }
6901
7013
  ],
@@ -7372,7 +7484,13 @@
7372
7484
  "kindString": "Class",
7373
7485
  "flags": {},
7374
7486
  "comment": {
7375
- "shortText": "Creates a a small container to highlight important information."
7487
+ "shortText": "Creates a a small container to highlight important information.",
7488
+ "tags": [
7489
+ {
7490
+ "tag": "deprecated",
7491
+ "text": "`SkyCardComponent` is deprecated. For other SKY UX components that group and list content, see the content containers guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/content-containers.\n"
7492
+ }
7493
+ ]
7376
7494
  },
7377
7495
  "decorators": [
7378
7496
  {
@@ -7390,7 +7508,48 @@
7390
7508
  ],
7391
7509
  "children": [
7392
7510
  {
7393
- "id": 139,
7511
+ "id": 133,
7512
+ "name": "constructor",
7513
+ "kind": 512,
7514
+ "kindString": "Constructor",
7515
+ "flags": {},
7516
+ "sources": [
7517
+ {
7518
+ "fileName": "projects/layout/src/modules/card/card.component.ts",
7519
+ "line": 69,
7520
+ "character": 2
7521
+ }
7522
+ ],
7523
+ "signatures": [
7524
+ {
7525
+ "id": 134,
7526
+ "name": "SkyCardComponent",
7527
+ "kind": 16384,
7528
+ "kindString": "Constructor signature",
7529
+ "flags": {},
7530
+ "parameters": [
7531
+ {
7532
+ "id": 135,
7533
+ "name": "logger",
7534
+ "kind": 32768,
7535
+ "kindString": "Parameter",
7536
+ "flags": {},
7537
+ "type": {
7538
+ "type": "reference",
7539
+ "name": "SkyLogService"
7540
+ }
7541
+ }
7542
+ ],
7543
+ "type": {
7544
+ "type": "reference",
7545
+ "id": 132,
7546
+ "name": "SkyCardComponent"
7547
+ }
7548
+ }
7549
+ ]
7550
+ },
7551
+ {
7552
+ "id": 140,
7394
7553
  "name": "inlineDeleteComponent",
7395
7554
  "kind": 1024,
7396
7555
  "kindString": "Property",
@@ -7414,7 +7573,7 @@
7414
7573
  "sources": [
7415
7574
  {
7416
7575
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7417
- "line": 58,
7576
+ "line": 60,
7418
7577
  "character": 9
7419
7578
  }
7420
7579
  ],
@@ -7433,7 +7592,7 @@
7433
7592
  }
7434
7593
  },
7435
7594
  {
7436
- "id": 136,
7595
+ "id": 137,
7437
7596
  "name": "selectable",
7438
7597
  "kind": 1024,
7439
7598
  "kindString": "Property",
@@ -7464,7 +7623,7 @@
7464
7623
  "sources": [
7465
7624
  {
7466
7625
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7467
- "line": 41,
7626
+ "line": 43,
7468
7627
  "character": 9
7469
7628
  }
7470
7629
  ],
@@ -7474,7 +7633,7 @@
7474
7633
  }
7475
7634
  },
7476
7635
  {
7477
- "id": 137,
7636
+ "id": 138,
7478
7637
  "name": "selected",
7479
7638
  "kind": 1024,
7480
7639
  "kindString": "Property",
@@ -7505,7 +7664,7 @@
7505
7664
  "sources": [
7506
7665
  {
7507
7666
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7508
- "line": 49,
7667
+ "line": 51,
7509
7668
  "character": 9
7510
7669
  }
7511
7670
  ],
@@ -7515,7 +7674,7 @@
7515
7674
  }
7516
7675
  },
7517
7676
  {
7518
- "id": 138,
7677
+ "id": 139,
7519
7678
  "name": "selectedChange",
7520
7679
  "kind": 1024,
7521
7680
  "kindString": "Property",
@@ -7540,7 +7699,7 @@
7540
7699
  "sources": [
7541
7700
  {
7542
7701
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7543
- "line": 55,
7702
+ "line": 57,
7544
7703
  "character": 9
7545
7704
  }
7546
7705
  ],
@@ -7559,7 +7718,7 @@
7559
7718
  "defaultValue": "..."
7560
7719
  },
7561
7720
  {
7562
- "id": 141,
7721
+ "id": 142,
7563
7722
  "name": "showTitle",
7564
7723
  "kind": 1024,
7565
7724
  "kindString": "Property",
@@ -7569,7 +7728,7 @@
7569
7728
  "sources": [
7570
7729
  {
7571
7730
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7572
- "line": 63,
7731
+ "line": 65,
7573
7732
  "character": 9
7574
7733
  }
7575
7734
  ],
@@ -7580,7 +7739,7 @@
7580
7739
  "defaultValue": "true"
7581
7740
  },
7582
7741
  {
7583
- "id": 135,
7742
+ "id": 136,
7584
7743
  "name": "size",
7585
7744
  "kind": 1024,
7586
7745
  "kindString": "Property",
@@ -7611,7 +7770,7 @@
7611
7770
  "sources": [
7612
7771
  {
7613
7772
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7614
- "line": 33,
7773
+ "line": 35,
7615
7774
  "character": 9
7616
7775
  }
7617
7776
  ],
@@ -7621,7 +7780,7 @@
7621
7780
  }
7622
7781
  },
7623
7782
  {
7624
- "id": 140,
7783
+ "id": 141,
7625
7784
  "name": "titleComponent",
7626
7785
  "kind": 1024,
7627
7786
  "kindString": "Property",
@@ -7645,7 +7804,7 @@
7645
7804
  "sources": [
7646
7805
  {
7647
7806
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7648
- "line": 61,
7807
+ "line": 63,
7649
7808
  "character": 9
7650
7809
  }
7651
7810
  ],
@@ -7654,7 +7813,7 @@
7654
7813
  "typeArguments": [
7655
7814
  {
7656
7815
  "type": "reference",
7657
- "id": 158,
7816
+ "id": 159,
7658
7817
  "name": "SkyCardTitleComponent"
7659
7818
  }
7660
7819
  ],
@@ -7664,7 +7823,7 @@
7664
7823
  }
7665
7824
  },
7666
7825
  {
7667
- "id": 145,
7826
+ "id": 146,
7668
7827
  "name": "contentClick",
7669
7828
  "kind": 2048,
7670
7829
  "kindString": "Method",
@@ -7674,13 +7833,13 @@
7674
7833
  "sources": [
7675
7834
  {
7676
7835
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7677
- "line": 85,
7836
+ "line": 97,
7678
7837
  "character": 9
7679
7838
  }
7680
7839
  ],
7681
7840
  "signatures": [
7682
7841
  {
7683
- "id": 146,
7842
+ "id": 147,
7684
7843
  "name": "contentClick",
7685
7844
  "kind": 4096,
7686
7845
  "kindString": "Call signature",
@@ -7693,7 +7852,7 @@
7693
7852
  ]
7694
7853
  },
7695
7854
  {
7696
- "id": 143,
7855
+ "id": 144,
7697
7856
  "name": "ngAfterContentInit",
7698
7857
  "kind": 2048,
7699
7858
  "kindString": "Method",
@@ -7703,13 +7862,13 @@
7703
7862
  "sources": [
7704
7863
  {
7705
7864
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7706
- "line": 67,
7865
+ "line": 79,
7707
7866
  "character": 9
7708
7867
  }
7709
7868
  ],
7710
7869
  "signatures": [
7711
7870
  {
7712
- "id": 144,
7871
+ "id": 145,
7713
7872
  "name": "ngAfterContentInit",
7714
7873
  "kind": 4096,
7715
7874
  "kindString": "Call signature",
@@ -7730,7 +7889,7 @@
7730
7889
  }
7731
7890
  },
7732
7891
  {
7733
- "id": 150,
7892
+ "id": 151,
7734
7893
  "name": "ngOnDestroy",
7735
7894
  "kind": 2048,
7736
7895
  "kindString": "Method",
@@ -7740,13 +7899,13 @@
7740
7899
  "sources": [
7741
7900
  {
7742
7901
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7743
- "line": 99,
7902
+ "line": 111,
7744
7903
  "character": 9
7745
7904
  }
7746
7905
  ],
7747
7906
  "signatures": [
7748
7907
  {
7749
- "id": 151,
7908
+ "id": 152,
7750
7909
  "name": "ngOnDestroy",
7751
7910
  "kind": 4096,
7752
7911
  "kindString": "Call signature",
@@ -7767,7 +7926,7 @@
7767
7926
  }
7768
7927
  },
7769
7928
  {
7770
- "id": 147,
7929
+ "id": 148,
7771
7930
  "name": "onCheckboxChange",
7772
7931
  "kind": 2048,
7773
7932
  "kindString": "Method",
@@ -7777,20 +7936,20 @@
7777
7936
  "sources": [
7778
7937
  {
7779
7938
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7780
- "line": 92,
7939
+ "line": 104,
7781
7940
  "character": 9
7782
7941
  }
7783
7942
  ],
7784
7943
  "signatures": [
7785
7944
  {
7786
- "id": 148,
7945
+ "id": 149,
7787
7946
  "name": "onCheckboxChange",
7788
7947
  "kind": 4096,
7789
7948
  "kindString": "Call signature",
7790
7949
  "flags": {},
7791
7950
  "parameters": [
7792
7951
  {
7793
- "id": 149,
7952
+ "id": 150,
7794
7953
  "name": "newValue",
7795
7954
  "kind": 32768,
7796
7955
  "kindString": "Parameter",
@@ -7821,30 +7980,30 @@
7821
7980
  "title": "Properties",
7822
7981
  "kind": 1024,
7823
7982
  "children": [
7824
- 139,
7825
- 136,
7983
+ 140,
7826
7984
  137,
7827
7985
  138,
7828
- 141,
7829
- 135,
7830
- 140
7986
+ 139,
7987
+ 142,
7988
+ 136,
7989
+ 141
7831
7990
  ]
7832
7991
  },
7833
7992
  {
7834
7993
  "title": "Methods",
7835
7994
  "kind": 2048,
7836
7995
  "children": [
7837
- 145,
7838
- 143,
7839
- 150,
7840
- 147
7996
+ 146,
7997
+ 144,
7998
+ 151,
7999
+ 148
7841
8000
  ]
7842
8001
  }
7843
8002
  ],
7844
8003
  "sources": [
7845
8004
  {
7846
8005
  "fileName": "projects/layout/src/modules/card/card.component.ts",
7847
- "line": 27,
8006
+ "line": 29,
7848
8007
  "character": 13
7849
8008
  }
7850
8009
  ],
@@ -7864,7 +8023,7 @@
7864
8023
  ]
7865
8024
  },
7866
8025
  {
7867
- "id": 459,
8026
+ "id": 462,
7868
8027
  "name": "SkyActionButtonPermalink",
7869
8028
  "kind": 256,
7870
8029
  "kindString": "Interface",
@@ -7874,7 +8033,7 @@
7874
8033
  },
7875
8034
  "children": [
7876
8035
  {
7877
- "id": 460,
8036
+ "id": 463,
7878
8037
  "name": "route",
7879
8038
  "kind": 1024,
7880
8039
  "kindString": "Property",
@@ -7894,14 +8053,14 @@
7894
8053
  "type": {
7895
8054
  "type": "reflection",
7896
8055
  "declaration": {
7897
- "id": 461,
8056
+ "id": 464,
7898
8057
  "name": "__type",
7899
8058
  "kind": 65536,
7900
8059
  "kindString": "Type literal",
7901
8060
  "flags": {},
7902
8061
  "children": [
7903
8062
  {
7904
- "id": 462,
8063
+ "id": 465,
7905
8064
  "name": "commands",
7906
8065
  "kind": 1024,
7907
8066
  "kindString": "Property",
@@ -7922,7 +8081,7 @@
7922
8081
  }
7923
8082
  },
7924
8083
  {
7925
- "id": 463,
8084
+ "id": 466,
7926
8085
  "name": "extras",
7927
8086
  "kind": 1024,
7928
8087
  "kindString": "Property",
@@ -7949,8 +8108,8 @@
7949
8108
  "title": "Properties",
7950
8109
  "kind": 1024,
7951
8110
  "children": [
7952
- 462,
7953
- 463
8111
+ 465,
8112
+ 466
7954
8113
  ]
7955
8114
  }
7956
8115
  ]
@@ -7958,7 +8117,7 @@
7958
8117
  }
7959
8118
  },
7960
8119
  {
7961
- "id": 464,
8120
+ "id": 467,
7962
8121
  "name": "url",
7963
8122
  "kind": 1024,
7964
8123
  "kindString": "Property",
@@ -7986,8 +8145,8 @@
7986
8145
  "title": "Properties",
7987
8146
  "kind": 1024,
7988
8147
  "children": [
7989
- 460,
7990
- 464
8148
+ 463,
8149
+ 467
7991
8150
  ]
7992
8151
  }
7993
8152
  ],
@@ -8000,7 +8159,7 @@
8000
8159
  ]
8001
8160
  },
8002
8161
  {
8003
- "id": 475,
8162
+ "id": 478,
8004
8163
  "name": "SkyBackToTopMessage",
8005
8164
  "kind": 256,
8006
8165
  "kindString": "Interface",
@@ -8010,7 +8169,7 @@
8010
8169
  },
8011
8170
  "children": [
8012
8171
  {
8013
- "id": 476,
8172
+ "id": 479,
8014
8173
  "name": "type",
8015
8174
  "kind": 1024,
8016
8175
  "kindString": "Property",
@@ -8029,7 +8188,7 @@
8029
8188
  ],
8030
8189
  "type": {
8031
8190
  "type": "reference",
8032
- "id": 478,
8191
+ "id": 481,
8033
8192
  "name": "BackToTop"
8034
8193
  }
8035
8194
  }
@@ -8039,7 +8198,7 @@
8039
8198
  "title": "Properties",
8040
8199
  "kind": 1024,
8041
8200
  "children": [
8042
- 476
8201
+ 479
8043
8202
  ]
8044
8203
  }
8045
8204
  ],
@@ -8052,7 +8211,7 @@
8052
8211
  ]
8053
8212
  },
8054
8213
  {
8055
- "id": 479,
8214
+ "id": 482,
8056
8215
  "name": "SkyBackToTopOptions",
8057
8216
  "kind": 256,
8058
8217
  "kindString": "Interface",
@@ -8062,7 +8221,7 @@
8062
8221
  },
8063
8222
  "children": [
8064
8223
  {
8065
- "id": 480,
8224
+ "id": 483,
8066
8225
  "name": "buttonHidden",
8067
8226
  "kind": 1024,
8068
8227
  "kindString": "Property",
@@ -8096,7 +8255,7 @@
8096
8255
  "title": "Properties",
8097
8256
  "kind": 1024,
8098
8257
  "children": [
8099
- 480
8258
+ 483
8100
8259
  ]
8101
8260
  }
8102
8261
  ],
@@ -8109,7 +8268,7 @@
8109
8268
  ]
8110
8269
  },
8111
8270
  {
8112
- "id": 471,
8271
+ "id": 474,
8113
8272
  "name": "SkyActionButtonContainerAlignItemsType",
8114
8273
  "kind": 4194304,
8115
8274
  "kindString": "Type alias",
@@ -8136,7 +8295,7 @@
8136
8295
  }
8137
8296
  },
8138
8297
  {
8139
- "id": 497,
8298
+ "id": 500,
8140
8299
  "name": "SkyDescriptionListModeType",
8141
8300
  "kind": 4194304,
8142
8301
  "kindString": "Type alias",
@@ -8170,7 +8329,7 @@
8170
8329
  }
8171
8330
  },
8172
8331
  {
8173
- "id": 505,
8332
+ "id": 508,
8174
8333
  "name": "SkyFluidGridGutterSizeType",
8175
8334
  "kind": 4194304,
8176
8335
  "kindString": "Type alias",
@@ -8213,7 +8372,7 @@
8213
8372
  }
8214
8373
  },
8215
8374
  {
8216
- "id": 527,
8375
+ "id": 530,
8217
8376
  "name": "SkyTextExpandRepeaterListStyleType",
8218
8377
  "kind": 4194304,
8219
8378
  "kindString": "Type alias",
@@ -8249,66 +8408,66 @@
8249
8408
  "title": "Enumerations",
8250
8409
  "kind": 8,
8251
8410
  "children": [
8252
- 477
8411
+ 480
8253
8412
  ]
8254
8413
  },
8255
8414
  {
8256
8415
  "title": "Classes",
8257
8416
  "kind": 128,
8258
8417
  "children": [
8259
- 465,
8260
- 472,
8261
- 481,
8418
+ 468,
8419
+ 475,
8262
8420
  484,
8263
8421
  487,
8264
8422
  490,
8265
- 502,
8266
- 509,
8267
- 515,
8423
+ 493,
8424
+ 505,
8425
+ 512,
8268
8426
  518,
8269
8427
  521,
8270
8428
  524,
8271
- 528,
8429
+ 527,
8272
8430
  531,
8431
+ 534,
8273
8432
  1,
8274
- 152,
8275
- 155,
8276
- 158,
8277
- 161,
8278
- 172,
8279
- 175,
8280
- 178,
8281
- 184,
8282
- 190,
8283
- 220,
8433
+ 153,
8434
+ 156,
8435
+ 159,
8436
+ 162,
8437
+ 174,
8438
+ 177,
8439
+ 180,
8440
+ 186,
8441
+ 192,
8442
+ 222,
8284
8443
  10,
8285
- 224,
8286
- 239,
8287
- 244,
8288
- 259,
8289
- 263,
8290
- 278,
8291
- 294,
8292
- 302,
8293
- 316,
8444
+ 226,
8445
+ 241,
8446
+ 246,
8447
+ 261,
8448
+ 265,
8449
+ 280,
8450
+ 296,
8451
+ 304,
8294
8452
  319,
8295
- 49,
8296
8453
  322,
8454
+ 49,
8297
8455
  325,
8298
8456
  328,
8299
8457
  331,
8300
8458
  334,
8301
8459
  337,
8302
- 391,
8303
- 428,
8304
- 435,
8460
+ 340,
8461
+ 394,
8462
+ 431,
8305
8463
  438,
8306
- 52,
8307
8464
  441,
8465
+ 52,
8308
8466
  444,
8309
- 450,
8467
+ 447,
8310
8468
  453,
8311
8469
  456,
8470
+ 459,
8312
8471
  55,
8313
8472
  72,
8314
8473
  105,
@@ -8319,19 +8478,19 @@
8319
8478
  "title": "Interfaces",
8320
8479
  "kind": 256,
8321
8480
  "children": [
8322
- 459,
8323
- 475,
8324
- 479
8481
+ 462,
8482
+ 478,
8483
+ 482
8325
8484
  ]
8326
8485
  },
8327
8486
  {
8328
8487
  "title": "Type aliases",
8329
8488
  "kind": 4194304,
8330
8489
  "children": [
8331
- 471,
8332
- 497,
8333
- 505,
8334
- 527
8490
+ 474,
8491
+ 500,
8492
+ 508,
8493
+ 530
8335
8494
  ]
8336
8495
  }
8337
8496
  ],
@@ -8632,7 +8791,7 @@
8632
8791
  {
8633
8792
  "fileName": "text-expand-demo.component.ts",
8634
8793
  "filePath": "/projects/layout/documentation/code-examples/text-expand/inline/text-expand-demo.component.ts",
8635
- "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n // tslint:disable-next-line\n public longText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
8794
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n public longText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
8636
8795
  },
8637
8796
  {
8638
8797
  "fileName": "text-expand-demo.module.ts",
@@ -8647,7 +8806,7 @@
8647
8806
  {
8648
8807
  "fileName": "text-expand-demo.component.ts",
8649
8808
  "filePath": "/projects/layout/documentation/code-examples/text-expand/modal/text-expand-demo.component.ts",
8650
- "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n // tslint:disable-next-line\n public longText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
8809
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n public longText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
8651
8810
  },
8652
8811
  {
8653
8812
  "fileName": "text-expand-demo.module.ts",
@@ -8662,7 +8821,7 @@
8662
8821
  {
8663
8822
  "fileName": "text-expand-demo.component.ts",
8664
8823
  "filePath": "/projects/layout/documentation/code-examples/text-expand/newline/text-expand-demo.component.ts",
8665
- "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n // tslint:disable-next-line\n public newlinesText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text.\\nUsers select the link to expand the full text inline unless it exceeds limits on text characters or newline characters.\\nIf the text exceeds those limits, then it expands in a modal view instead.\\nThe component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
8824
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n public newlinesText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text.\\nUsers select the link to expand the full text inline unless it exceeds limits on text characters or newline characters.\\nIf the text exceeds those limits, then it expands in a modal view instead.\\nThe component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
8666
8825
  },
8667
8826
  {
8668
8827
  "fileName": "text-expand-demo.module.ts",