@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
@@ -1,3 +1,4 @@
1
+ import { SkyLogService } from '@skyux/core';
1
2
  import { SkyDefinitionListService } from './definition-list.service';
2
3
  import * as i0 from "@angular/core";
3
4
  /**
@@ -16,7 +17,7 @@ export declare class SkyDefinitionListComponent {
16
17
  * @default "None found"
17
18
  */
18
19
  set defaultValue(value: string);
19
- constructor(service: SkyDefinitionListService);
20
+ constructor(service: SkyDefinitionListService, logger: SkyLogService);
20
21
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyDefinitionListComponent, never>;
21
22
  static ɵcmp: i0.ɵɵComponentDeclaration<SkyDefinitionListComponent, "sky-definition-list", never, { "labelWidth": "labelWidth"; "defaultValue": "defaultValue"; }, {}, never, ["sky-definition-list-heading", "sky-definition-list-content"]>;
22
23
  }
@@ -7,6 +7,9 @@ import * as i5 from "./definition-list-value.component";
7
7
  import * as i6 from "@angular/common";
8
8
  import * as i7 from "@skyux/i18n";
9
9
  import * as i8 from "../shared/sky-layout-resources.module";
10
+ /**
11
+ * @deprecated Use `SkyDescriptionListModule` instead.
12
+ */
10
13
  export declare class SkyDefinitionListModule {
11
14
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyDefinitionListModule, never>;
12
15
  static ɵmod: i0.ɵɵNgModuleDeclaration<SkyDefinitionListModule, [typeof i1.SkyDefinitionListComponent, typeof i2.SkyDefinitionListContentComponent, typeof i3.SkyDefinitionListHeadingComponent, typeof i4.SkyDefinitionListLabelComponent, typeof i5.SkyDefinitionListValueComponent], [typeof i6.CommonModule, typeof i7.SkyI18nModule, typeof i8.SkyLayoutResourcesModule], [typeof i1.SkyDefinitionListComponent, typeof i2.SkyDefinitionListContentComponent, typeof i3.SkyDefinitionListHeadingComponent, typeof i4.SkyDefinitionListLabelComponent, typeof i5.SkyDefinitionListValueComponent]>;
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Displays messages that require immediate attention as [alerts](https://developer.blackbaud.com/skyux/components/alert) within
4
4
  * the page summary.
5
+ * @deprecated
5
6
  */
6
7
  export declare class SkyPageSummaryAlertComponent {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryAlertComponent, never>;
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Displays content in the arbitrary section of the page summary.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyPageSummaryContentComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryContentComponent, never>;
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Displays an image in the page summary to identify a record
4
4
  * or help users complete a core task.
5
+ * @deprecated
5
6
  */
6
7
  export declare class SkyPageSummaryImageComponent {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryImageComponent, never>;
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Highlights important information about a page in the key information section of the
4
4
  * page summary.
5
+ * @deprecated
5
6
  */
6
7
  export declare class SkyPageSummaryKeyInfoComponent {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryKeyInfoComponent, never>;
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Displays [labels](https://developer.blackbaud.com/skyux/components/label)
4
4
  * to highlight important status information about a page's content.
5
+ * @deprecated
5
6
  */
6
7
  export declare class SkyPageSummaryStatusComponent {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryStatusComponent, never>;
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Specifies a subtitle to identify the page content.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyPageSummarySubtitleComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummarySubtitleComponent, never>;
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Specifies a title to identify the page content.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyPageSummaryTitleComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryTitleComponent, never>;
@@ -1,9 +1,10 @@
1
1
  import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
2
- import { SkyMediaQueryService } from '@skyux/core';
2
+ import { SkyLogService, SkyMediaQueryService } from '@skyux/core';
3
3
  import { SkyPageSummaryAdapterService } from './page-summary-adapter.service';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Specifies the components to display in the page summary.
7
+ * @deprecated `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.
7
8
  */
8
9
  export declare class SkyPageSummaryComponent implements OnDestroy, AfterViewInit {
9
10
  private elRef;
@@ -12,7 +13,7 @@ export declare class SkyPageSummaryComponent implements OnDestroy, AfterViewInit
12
13
  get hasKeyInfo(): boolean;
13
14
  private keyInfoComponents;
14
15
  private breakpointSubscription;
15
- constructor(elRef: ElementRef, adapter: SkyPageSummaryAdapterService, mediaQueryService: SkyMediaQueryService);
16
+ constructor(elRef: ElementRef, adapter: SkyPageSummaryAdapterService, mediaQueryService: SkyMediaQueryService, logger: SkyLogService);
16
17
  ngAfterViewInit(): void;
17
18
  ngOnDestroy(): void;
18
19
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryComponent, never>;
@@ -8,6 +8,9 @@ import * as i6 from "./page-summary-status.component";
8
8
  import * as i7 from "./page-summary-subtitle.component";
9
9
  import * as i8 from "./page-summary-title.component";
10
10
  import * as i9 from "@angular/common";
11
+ /**
12
+ * @deprecated `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.
13
+ */
11
14
  export declare class SkyPageSummaryModule {
12
15
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryModule, never>;
13
16
  static ɵmod: i0.ɵɵNgModuleDeclaration<SkyPageSummaryModule, [typeof i1.SkyPageSummaryAlertComponent, typeof i2.SkyPageSummaryComponent, typeof i3.SkyPageSummaryContentComponent, typeof i4.SkyPageSummaryImageComponent, typeof i5.SkyPageSummaryKeyInfoComponent, typeof i6.SkyPageSummaryStatusComponent, typeof i7.SkyPageSummarySubtitleComponent, typeof i8.SkyPageSummaryTitleComponent], [typeof i9.CommonModule], [typeof i1.SkyPageSummaryAlertComponent, typeof i2.SkyPageSummaryComponent, typeof i3.SkyPageSummaryContentComponent, typeof i4.SkyPageSummaryImageComponent, typeof i5.SkyPageSummaryKeyInfoComponent, typeof i6.SkyPageSummaryStatusComponent, typeof i7.SkyPageSummarySubtitleComponent, typeof i8.SkyPageSummaryTitleComponent]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/layout",
3
- "version": "5.9.4",
3
+ "version": "6.0.0-beta.10",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -15,30 +15,54 @@
15
15
  "url": "https://github.com/blackbaud/skyux/issues"
16
16
  },
17
17
  "homepage": "https://github.com/blackbaud/skyux#readme",
18
+ "exports": {
19
+ "./package.json": {
20
+ "default": "./package.json"
21
+ },
22
+ ".": {
23
+ "types": "./skyux-layout.d.ts",
24
+ "esm2020": "./esm2020/skyux-layout.mjs",
25
+ "es2020": "./fesm2020/skyux-layout.mjs",
26
+ "es2015": "./fesm2015/skyux-layout.mjs",
27
+ "node": "./fesm2015/skyux-layout.mjs",
28
+ "default": "./fesm2020/skyux-layout.mjs"
29
+ },
30
+ "./testing": {
31
+ "types": "./testing/skyux-layout-testing.d.ts",
32
+ "esm2020": "./esm2020/testing/skyux-layout-testing.mjs",
33
+ "es2020": "./fesm2020/skyux-layout-testing.mjs",
34
+ "es2015": "./fesm2015/skyux-layout-testing.mjs",
35
+ "node": "./fesm2015/skyux-layout-testing.mjs",
36
+ "default": "./fesm2020/skyux-layout-testing.mjs"
37
+ },
38
+ "./documentation.json": {
39
+ "default": "./documentation.json"
40
+ }
41
+ },
18
42
  "peerDependencies": {
19
- "@angular/animations": "^12.2.16",
20
- "@angular/common": "^12.2.16",
21
- "@angular/core": "^12.2.16",
22
- "@angular/forms": "^12.2.16",
23
- "@angular/platform-browser": "^12.2.16",
24
- "@angular/router": "^12.2.16",
25
- "@skyux-sdk/testing": "5.9.4",
26
- "@skyux/core": "5.9.4",
27
- "@skyux/forms": "5.9.4",
28
- "@skyux/i18n": "5.9.4",
29
- "@skyux/indicators": "5.9.4",
30
- "@skyux/modals": "5.9.4",
31
- "@skyux/router": "5.9.4",
32
- "@skyux/theme": "5.9.4"
43
+ "@angular/animations": "^13.3.2",
44
+ "@angular/common": "^13.3.2",
45
+ "@angular/core": "^13.3.2",
46
+ "@angular/forms": "^13.3.2",
47
+ "@angular/platform-browser": "^13.3.2",
48
+ "@angular/router": "^13.3.2",
49
+ "@skyux-sdk/testing": "6.0.0-beta.10",
50
+ "@skyux/core": "6.0.0-beta.10",
51
+ "@skyux/forms": "6.0.0-beta.10",
52
+ "@skyux/i18n": "6.0.0-beta.10",
53
+ "@skyux/indicators": "6.0.0-beta.10",
54
+ "@skyux/modals": "6.0.0-beta.10",
55
+ "@skyux/router": "6.0.0-beta.10",
56
+ "@skyux/theme": "6.0.0-beta.10"
33
57
  },
34
58
  "dependencies": {
35
59
  "tslib": "^2.3.1"
36
60
  },
37
- "main": "bundles/skyux-layout.umd.js",
38
- "module": "fesm2015/skyux-layout.js",
39
- "es2015": "fesm2015/skyux-layout.js",
40
- "esm2015": "esm2015/skyux-layout.js",
41
- "fesm2015": "fesm2015/skyux-layout.js",
61
+ "module": "fesm2015/skyux-layout.mjs",
62
+ "es2020": "fesm2020/skyux-layout.mjs",
63
+ "esm2020": "esm2020/skyux-layout.mjs",
64
+ "fesm2020": "fesm2020/skyux-layout.mjs",
65
+ "fesm2015": "fesm2015/skyux-layout.mjs",
42
66
  "typings": "skyux-layout.d.ts",
43
67
  "sideEffects": false
44
68
  }
@@ -1,9 +1,9 @@
1
1
  {
2
- "main": "../bundles/skyux-layout-testing.umd.js",
3
- "module": "../fesm2015/skyux-layout-testing.js",
4
- "es2015": "../fesm2015/skyux-layout-testing.js",
5
- "esm2015": "../esm2015/testing/skyux-layout-testing.js",
6
- "fesm2015": "../fesm2015/skyux-layout-testing.js",
2
+ "module": "../fesm2015/skyux-layout-testing.mjs",
3
+ "es2020": "../fesm2020/skyux-layout-testing.mjs",
4
+ "esm2020": "../esm2020/testing/skyux-layout-testing.mjs",
5
+ "fesm2020": "../fesm2020/skyux-layout-testing.mjs",
6
+ "fesm2015": "../fesm2015/skyux-layout-testing.mjs",
7
7
  "typings": "skyux-layout-testing.d.ts",
8
8
  "sideEffects": false,
9
9
  "name": "@skyux/layout/testing"
@@ -1,191 +0,0 @@
1
- (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/platform-browser'), require('@skyux-sdk/testing')) :
3
- typeof define === 'function' && define.amd ? define('@skyux/layout/testing', ['exports', '@angular/platform-browser', '@skyux-sdk/testing'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.skyux = global.skyux || {}, global.skyux.layout = global.skyux.layout || {}, global.skyux.layout.testing = {}), global.ng.platformBrowser, global.testing));
5
- })(this, (function (exports, platformBrowser, testing) { 'use strict';
6
-
7
- /**
8
- * Allows interaction with a SKY UX action button component.
9
- */
10
- var SkyActionButtonFixture = /** @class */ (function () {
11
- function SkyActionButtonFixture(fixture, skyTestId) {
12
- this.debugEl = testing.SkyAppTestUtility.getDebugElementByTestId(fixture, skyTestId, 'sky-action-button');
13
- }
14
- Object.defineProperty(SkyActionButtonFixture.prototype, "headerText", {
15
- /**
16
- * The action button's current header text.
17
- */
18
- get: function () {
19
- return testing.SkyAppTestUtility.getText(this.debugEl.query(platformBrowser.By.css('.sky-action-button-header')));
20
- },
21
- enumerable: false,
22
- configurable: true
23
- });
24
- Object.defineProperty(SkyActionButtonFixture.prototype, "detailsText", {
25
- /**
26
- * The action button's current details text.
27
- */
28
- get: function () {
29
- return testing.SkyAppTestUtility.getText(this.debugEl.query(platformBrowser.By.css('sky-action-button-details')));
30
- },
31
- enumerable: false,
32
- configurable: true
33
- });
34
- Object.defineProperty(SkyActionButtonFixture.prototype, "iconType", {
35
- /**
36
- * The action button's current icon type.
37
- */
38
- get: function () {
39
- var classList = this.debugEl.query(platformBrowser.By.css('.fa.sky-icon')).nativeElement
40
- .classList;
41
- for (var i = 0, n = classList.length; i < n; i++) {
42
- var cls = classList.item(i);
43
- if (cls.indexOf('fa-') === 0) {
44
- return cls.substr(3);
45
- }
46
- }
47
- },
48
- enumerable: false,
49
- configurable: true
50
- });
51
- /**
52
- * Clicks the action button.
53
- */
54
- SkyActionButtonFixture.prototype.actionClick = function () {
55
- this.debugEl
56
- .query(platformBrowser.By.css('.sky-action-button'))
57
- .triggerEventHandler('click', {});
58
- };
59
- return SkyActionButtonFixture;
60
- }());
61
-
62
- /**
63
- * Allows interaction with a SKY UX avatar component.
64
- */
65
- var SkyCardFixture = /** @class */ (function () {
66
- function SkyCardFixture(fixture, skyTestId) {
67
- this.debugEl = testing.SkyAppTestUtility.getDebugElementByTestId(fixture, skyTestId, 'sky-card');
68
- }
69
- Object.defineProperty(SkyCardFixture.prototype, "titleText", {
70
- /**
71
- * The card's current title.
72
- */
73
- get: function () {
74
- return testing.SkyAppTestUtility.getText(this.debugEl.query(platformBrowser.By.css('sky-card-title')));
75
- },
76
- enumerable: false,
77
- configurable: true
78
- });
79
- Object.defineProperty(SkyCardFixture.prototype, "contentText", {
80
- /**
81
- * The card's current content text.
82
- */
83
- get: function () {
84
- return testing.SkyAppTestUtility.getText(this.debugEl.query(platformBrowser.By.css('sky-card-content')));
85
- },
86
- enumerable: false,
87
- configurable: true
88
- });
89
- Object.defineProperty(SkyCardFixture.prototype, "selectable", {
90
- /**
91
- * A flag indicating whether the user can select the card.
92
- */
93
- get: function () {
94
- return !!this.debugEl.query(platformBrowser.By.css('.sky-card-check'));
95
- },
96
- enumerable: false,
97
- configurable: true
98
- });
99
- Object.defineProperty(SkyCardFixture.prototype, "selected", {
100
- /**
101
- * A flag indicating whether the card is currently selected. If the card
102
- * is not selectable, an error is thrown.
103
- */
104
- get: function () {
105
- if (this.selectable) {
106
- return this.getCheckInputEl().nativeElement.checked;
107
- }
108
- throw new Error('The card is not selectable.');
109
- },
110
- enumerable: false,
111
- configurable: true
112
- });
113
- /**
114
- * Selects the card.
115
- */
116
- SkyCardFixture.prototype.select = function () {
117
- if (!this.selected) {
118
- this.clickCheckLabelEl();
119
- }
120
- };
121
- /**
122
- * Deselects the card.
123
- */
124
- SkyCardFixture.prototype.deselect = function () {
125
- if (this.selected) {
126
- this.clickCheckLabelEl();
127
- }
128
- };
129
- SkyCardFixture.prototype.clickCheckLabelEl = function () {
130
- this.debugEl
131
- .query(platformBrowser.By.css('.sky-card-check label.sky-checkbox-wrapper'))
132
- .nativeElement.click();
133
- };
134
- SkyCardFixture.prototype.getCheckInputEl = function () {
135
- return this.debugEl.query(platformBrowser.By.css('.sky-card-check .sky-checkbox-wrapper input'));
136
- };
137
- return SkyCardFixture;
138
- }());
139
-
140
- /**
141
- * Allows interaction with a SKY UX page summary component.
142
- */
143
- var SkyPageSummaryFixture = /** @class */ (function () {
144
- function SkyPageSummaryFixture(fixture, skyTestId) {
145
- this.debugEl = testing.SkyAppTestUtility.getDebugElementByTestId(fixture, skyTestId, 'sky-page-summary');
146
- }
147
- Object.defineProperty(SkyPageSummaryFixture.prototype, "titleText", {
148
- /**
149
- * The page summary's current title text.
150
- */
151
- get: function () {
152
- return testing.SkyAppTestUtility.getText(this.debugEl.query(platformBrowser.By.css('sky-page-summary-title .sky-page-summary-title')));
153
- },
154
- enumerable: false,
155
- configurable: true
156
- });
157
- Object.defineProperty(SkyPageSummaryFixture.prototype, "subtitleText", {
158
- /**
159
- * The page summary's current subtitle text.
160
- */
161
- get: function () {
162
- return testing.SkyAppTestUtility.getText(this.debugEl.query(platformBrowser.By.css('sky-page-summary-subtitle .sky-page-summary-subtitle')));
163
- },
164
- enumerable: false,
165
- configurable: true
166
- });
167
- Object.defineProperty(SkyPageSummaryFixture.prototype, "contentText", {
168
- /**
169
- * The page summary's current content text.
170
- */
171
- get: function () {
172
- return testing.SkyAppTestUtility.getText(this.debugEl.query(platformBrowser.By.css('sky-page-summary-content .sky-page-summary-content')));
173
- },
174
- enumerable: false,
175
- configurable: true
176
- });
177
- return SkyPageSummaryFixture;
178
- }());
179
-
180
- /**
181
- * Generated bundle index. Do not edit.
182
- */
183
-
184
- exports.SkyActionButtonFixture = SkyActionButtonFixture;
185
- exports.SkyCardFixture = SkyCardFixture;
186
- exports.SkyPageSummaryFixture = SkyPageSummaryFixture;
187
-
188
- Object.defineProperty(exports, '__esModule', { value: true });
189
-
190
- }));
191
- //# sourceMappingURL=skyux-layout-testing.umd.js.map