@covalent/core 3.1.2-beta.6 → 4.0.0-beta.1

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 (829) hide show
  1. package/breadcrumbs/breadcrumb/breadcrumb.component.d.ts +3 -0
  2. package/breadcrumbs/breadcrumb/breadcrumb.component.scss +3 -0
  3. package/breadcrumbs/breadcrumbs.component.d.ts +3 -0
  4. package/breadcrumbs/breadcrumbs.component.scss +1 -0
  5. package/breadcrumbs/breadcrumbs.module.d.ts +8 -0
  6. package/breadcrumbs/covalent-core-breadcrumbs.d.ts +1 -0
  7. package/breadcrumbs/package.json +6 -7
  8. package/common/_common-theme.scss +2 -0
  9. package/common/common.module.d.ts +15 -0
  10. package/common/covalent-core-common.d.ts +1 -2
  11. package/common/directives/fullscreen/fullscreen.directive.d.ts +3 -0
  12. package/common/forms/auto-trim/auto-trim.directive.d.ts +3 -0
  13. package/common/material-icons.css +31 -18
  14. package/common/material-icons.css.map +1 -1
  15. package/common/package.json +6 -7
  16. package/common/pipes/bytes/bytes.pipe.d.ts +3 -0
  17. package/common/pipes/decimal-bytes/decimal-bytes.pipe.d.ts +3 -0
  18. package/common/pipes/digits/digits.pipe.d.ts +3 -0
  19. package/common/pipes/time-ago/time-ago.pipe.d.ts +3 -0
  20. package/common/pipes/time-difference/time-difference.pipe.d.ts +3 -0
  21. package/common/pipes/time-until/time-until.pipe.d.ts +3 -0
  22. package/common/pipes/truncate/truncate.pipe.d.ts +3 -0
  23. package/common/platform.css +11828 -10433
  24. package/common/platform.css.map +1 -1
  25. package/common/services/icon.service.d.ts +3 -0
  26. package/common/services/router-path.service.d.ts +3 -0
  27. package/common/styles/_layout.scss +12 -10
  28. package/common/styles/_palette-dark.scss +2 -2
  29. package/common/styles/_palette-light.scss +6 -6
  30. package/common/styles/_rtl.scss +3 -0
  31. package/common/styles/_variables.scss +5 -5
  32. package/common/styles/colors/_colors-dark.scss +327 -0
  33. package/common/styles/colors/_colors-light.scss +748 -0
  34. package/common/styles/core/_button.scss +2 -1
  35. package/common/styles/core/_card.scss +27 -7
  36. package/common/styles/core/_content.scss +2 -1
  37. package/common/styles/core/_divider.scss +1 -0
  38. package/common/styles/core/_icons.scss +2 -0
  39. package/common/styles/core/_sidenav.scss +2 -0
  40. package/common/styles/core/_structure.scss +6 -7
  41. package/common/styles/core/_toolbar.scss +7 -0
  42. package/common/styles/core/_whiteframe.scss +2 -2
  43. package/common/styles/font/_font.scss +10 -4
  44. package/common/styles/utilities/_general.scss +14 -0
  45. package/common/styles/utilities/_text.scss +21 -0
  46. package/covalent-core.d.ts +1 -0
  47. package/dialogs/_dialog-theme.scss +2 -0
  48. package/dialogs/alert-dialog/alert-dialog.component.d.ts +3 -0
  49. package/dialogs/confirm-dialog/confirm-dialog.component.d.ts +3 -0
  50. package/dialogs/covalent-core-dialogs.d.ts +1 -1
  51. package/dialogs/dialog.component.d.ts +9 -0
  52. package/dialogs/dialog.component.scss +5 -0
  53. package/dialogs/dialogs.module.d.ts +17 -0
  54. package/dialogs/package.json +6 -7
  55. package/dialogs/prompt-dialog/prompt-dialog.component.d.ts +3 -0
  56. package/dialogs/prompt-dialog/prompt-dialog.component.scss +1 -0
  57. package/dialogs/public-api.d.ts +1 -0
  58. package/dialogs/services/dialog.service.d.ts +3 -0
  59. package/dialogs/window-dialog/window-dialog.component.d.ts +3 -0
  60. package/dynamic-menu/covalent-core-dynamic-menu.d.ts +1 -1
  61. package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.d.ts +3 -0
  62. package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.scss +1 -0
  63. package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.d.ts +3 -0
  64. package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.scss +3 -1
  65. package/dynamic-menu/dynamic-menu.component.d.ts +3 -0
  66. package/dynamic-menu/dynamic-menu.module.d.ts +13 -0
  67. package/dynamic-menu/package.json +6 -7
  68. package/dynamic-menu/public_api.d.ts +1 -0
  69. package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +108 -0
  70. package/esm2020/breadcrumbs/breadcrumbs.component.mjs +139 -0
  71. package/esm2020/breadcrumbs/breadcrumbs.module.mjs +21 -0
  72. package/esm2020/breadcrumbs/covalent-core-breadcrumbs.mjs +5 -0
  73. package/esm2020/breadcrumbs/index.mjs +2 -0
  74. package/esm2020/breadcrumbs/public-api.mjs +4 -0
  75. package/esm2020/common/animations/bounce/bounce.animation.mjs +70 -0
  76. package/esm2020/common/animations/collapse/collapse.animation.mjs +51 -0
  77. package/esm2020/common/animations/common/interfaces.mjs +2 -0
  78. package/esm2020/common/animations/fade/fadeInOut.animation.mjs +37 -0
  79. package/esm2020/common/animations/flash/flash.animation.mjs +34 -0
  80. package/esm2020/common/animations/headshake/headshake.animation.mjs +35 -0
  81. package/esm2020/common/animations/jello/jello.animation.mjs +38 -0
  82. package/esm2020/common/animations/pulse/pulse.animation.mjs +32 -0
  83. package/esm2020/common/animations/rotate/rotate.animation.mjs +25 -0
  84. package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +39 -0
  85. package/esm2020/common/behaviors/disable-ripple.mixin.mjs +24 -0
  86. package/esm2020/common/behaviors/disabled.mixin.mjs +24 -0
  87. package/esm2020/common/common.module.mjs +64 -0
  88. package/esm2020/common/covalent-core-common.mjs +5 -0
  89. package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +85 -0
  90. package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +36 -0
  91. package/esm2020/common/forms/validators/validators.mjs +29 -0
  92. package/{esm2015/common/functions/clipboard.js → esm2020/common/functions/clipboard.mjs} +3 -10
  93. package/esm2020/common/functions/convert.mjs +84 -0
  94. package/esm2020/common/functions/download.mjs +75 -0
  95. package/esm2020/common/functions/file.mjs +16 -0
  96. package/esm2020/common/index.mjs +2 -0
  97. package/esm2020/common/pipes/bytes/bytes.pipe.mjs +32 -0
  98. package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +32 -0
  99. package/esm2020/common/pipes/digits/digits.pipe.mjs +39 -0
  100. package/esm2020/common/pipes/time-ago/time-ago.pipe.mjs +72 -0
  101. package/esm2020/common/pipes/time-difference/time-difference.pipe.mjs +51 -0
  102. package/esm2020/common/pipes/time-until/time-until.pipe.mjs +72 -0
  103. package/esm2020/common/pipes/truncate/truncate.pipe.mjs +27 -0
  104. package/esm2020/common/public-api.mjs +39 -0
  105. package/esm2020/common/services/icon.service.mjs +1089 -0
  106. package/esm2020/common/services/router-path.service.mjs +29 -0
  107. package/esm2020/covalent-core.mjs +5 -0
  108. package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +54 -0
  109. package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +68 -0
  110. package/esm2020/dialogs/covalent-core-dialogs.mjs +5 -0
  111. package/esm2020/dialogs/dialog.component.mjs +97 -0
  112. package/esm2020/dialogs/dialogs.module.mjs +86 -0
  113. package/esm2020/dialogs/index.mjs +2 -0
  114. package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +104 -0
  115. package/esm2020/dialogs/public-api.mjs +9 -0
  116. package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +199 -0
  117. package/esm2020/dialogs/services/dialog.service.mjs +168 -0
  118. package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +69 -0
  119. package/esm2020/dynamic-menu/covalent-core-dynamic-menu.mjs +5 -0
  120. package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +147 -0
  121. package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +113 -0
  122. package/esm2020/dynamic-menu/dynamic-menu.component.mjs +111 -0
  123. package/esm2020/dynamic-menu/dynamic-menu.module.mjs +32 -0
  124. package/esm2020/dynamic-menu/index.mjs +2 -0
  125. package/esm2020/dynamic-menu/public_api.mjs +5 -0
  126. package/esm2020/file/covalent-core-file.mjs +5 -0
  127. package/esm2020/file/directives/file-drop.directive.mjs +148 -0
  128. package/esm2020/file/directives/file-select.directive.mjs +76 -0
  129. package/esm2020/file/file-input/file-input.component.mjs +137 -0
  130. package/esm2020/file/file-upload/file-upload.component.mjs +210 -0
  131. package/esm2020/file/file.module.mjs +43 -0
  132. package/esm2020/file/index.mjs +2 -0
  133. package/esm2020/file/public-api.mjs +7 -0
  134. package/esm2020/file/services/file.service.mjs +62 -0
  135. package/esm2020/index.mjs +2 -0
  136. package/esm2020/json-formatter/covalent-core-json-formatter.mjs +5 -0
  137. package/esm2020/json-formatter/index.mjs +2 -0
  138. package/esm2020/json-formatter/json-formatter.component.mjs +302 -0
  139. package/esm2020/json-formatter/json-formatter.module.mjs +21 -0
  140. package/esm2020/json-formatter/public-api.mjs +3 -0
  141. package/esm2020/layout/covalent-core-layout.mjs +5 -0
  142. package/esm2020/layout/index.mjs +2 -0
  143. package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +87 -0
  144. package/esm2020/layout/layout-footer/layout-footer.component.mjs +38 -0
  145. package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +122 -0
  146. package/esm2020/layout/layout-manage-list/layout-manage-list.directives.mjs +90 -0
  147. package/esm2020/layout/layout-nav/layout-nav.component.mjs +112 -0
  148. package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +215 -0
  149. package/esm2020/layout/layout-nav-list/layout-nav-list.directives.mjs +90 -0
  150. package/esm2020/layout/layout-toggle.class.mjs +95 -0
  151. package/esm2020/layout/layout.component.mjs +113 -0
  152. package/esm2020/layout/layout.directives.mjs +87 -0
  153. package/esm2020/layout/layout.module.mjs +118 -0
  154. package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +306 -0
  155. package/esm2020/layout/public-api.mjs +13 -0
  156. package/esm2020/menu/covalent-core-menu.mjs +5 -0
  157. package/esm2020/menu/index.mjs +2 -0
  158. package/esm2020/menu/menu.component.mjs +23 -0
  159. package/esm2020/menu/menu.module.mjs +22 -0
  160. package/esm2020/menu/public-api.mjs +3 -0
  161. package/esm2020/message/covalent-core-message.mjs +5 -0
  162. package/esm2020/message/index.mjs +2 -0
  163. package/esm2020/message/message.component.mjs +261 -0
  164. package/esm2020/message/message.module.mjs +21 -0
  165. package/esm2020/message/public-api.mjs +3 -0
  166. package/esm2020/search/covalent-core-search.mjs +5 -0
  167. package/esm2020/search/index.mjs +2 -0
  168. package/esm2020/search/public-api.mjs +4 -0
  169. package/esm2020/search/search-box/search-box.component.mjs +220 -0
  170. package/esm2020/search/search-input/search-input.component.mjs +240 -0
  171. package/esm2020/search/search.module.mjs +24 -0
  172. package/esm2020/side-sheet/covalent-core-side-sheet.mjs +5 -0
  173. package/esm2020/side-sheet/index.mjs +2 -0
  174. package/esm2020/side-sheet/public-api.mjs +6 -0
  175. package/esm2020/side-sheet/side-sheet-container.mjs +242 -0
  176. package/esm2020/side-sheet/side-sheet-ref.mjs +21 -0
  177. package/esm2020/side-sheet/side-sheet.animation.mjs +12 -0
  178. package/esm2020/side-sheet/side-sheet.config.mjs +4 -0
  179. package/esm2020/side-sheet/side-sheet.content-directives.mjs +178 -0
  180. package/esm2020/side-sheet/side-sheet.mjs +208 -0
  181. package/esm2020/side-sheet/side-sheet.module.mjs +46 -0
  182. package/esm2020/user-profile/covalent-core-user-profile.mjs +5 -0
  183. package/esm2020/user-profile/index.mjs +2 -0
  184. package/esm2020/user-profile/public_api.mjs +4 -0
  185. package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +75 -0
  186. package/esm2020/user-profile/user-profile.component.mjs +41 -0
  187. package/esm2020/user-profile/user-profile.module.mjs +26 -0
  188. package/fesm2015/covalent-core-breadcrumbs.mjs +287 -0
  189. package/fesm2015/covalent-core-breadcrumbs.mjs.map +1 -0
  190. package/fesm2015/covalent-core-common.mjs +2251 -0
  191. package/fesm2015/covalent-core-common.mjs.map +1 -0
  192. package/fesm2015/covalent-core-dialogs.mjs +872 -0
  193. package/fesm2015/covalent-core-dialogs.mjs.map +1 -0
  194. package/fesm2015/covalent-core-dynamic-menu.mjs +480 -0
  195. package/fesm2015/covalent-core-dynamic-menu.mjs.map +1 -0
  196. package/fesm2015/covalent-core-file.mjs +698 -0
  197. package/fesm2015/covalent-core-file.mjs.map +1 -0
  198. package/fesm2015/covalent-core-json-formatter.mjs +353 -0
  199. package/fesm2015/covalent-core-json-formatter.mjs.map +1 -0
  200. package/fesm2015/covalent-core-layout.mjs +1577 -0
  201. package/fesm2015/covalent-core-layout.mjs.map +1 -0
  202. package/fesm2015/covalent-core-menu.mjs +55 -0
  203. package/fesm2015/covalent-core-menu.mjs.map +1 -0
  204. package/fesm2015/covalent-core-message.mjs +309 -0
  205. package/fesm2015/covalent-core-message.mjs.map +1 -0
  206. package/fesm2015/covalent-core-search.mjs +508 -0
  207. package/fesm2015/covalent-core-search.mjs.map +1 -0
  208. package/fesm2015/covalent-core-side-sheet.mjs +733 -0
  209. package/fesm2015/covalent-core-side-sheet.mjs.map +1 -0
  210. package/fesm2015/covalent-core-user-profile.mjs +162 -0
  211. package/fesm2015/covalent-core-user-profile.mjs.map +1 -0
  212. package/{data-table/covalent-core-data-table.d.ts → fesm2015/covalent-core.mjs} +1 -1
  213. package/fesm2015/covalent-core.mjs.map +1 -0
  214. package/fesm2020/covalent-core-breadcrumbs.mjs +268 -0
  215. package/{fesm2015/covalent-core-breadcrumbs.js.map → fesm2020/covalent-core-breadcrumbs.mjs.map} +1 -1
  216. package/{fesm2015/covalent-core-common.js → fesm2020/covalent-core-common.mjs} +213 -768
  217. package/fesm2020/covalent-core-common.mjs.map +1 -0
  218. package/fesm2020/covalent-core-dialogs.mjs +812 -0
  219. package/fesm2020/covalent-core-dialogs.mjs.map +1 -0
  220. package/fesm2020/covalent-core-dynamic-menu.mjs +393 -0
  221. package/fesm2020/covalent-core-dynamic-menu.mjs.map +1 -0
  222. package/fesm2020/covalent-core-file.mjs +651 -0
  223. package/fesm2020/covalent-core-file.mjs.map +1 -0
  224. package/fesm2020/covalent-core-json-formatter.mjs +326 -0
  225. package/fesm2020/covalent-core-json-formatter.mjs.map +1 -0
  226. package/fesm2020/covalent-core-layout.mjs +1414 -0
  227. package/fesm2020/covalent-core-layout.mjs.map +1 -0
  228. package/fesm2020/covalent-core-menu.mjs +49 -0
  229. package/fesm2020/covalent-core-menu.mjs.map +1 -0
  230. package/fesm2020/covalent-core-message.mjs +286 -0
  231. package/fesm2020/covalent-core-message.mjs.map +1 -0
  232. package/fesm2020/covalent-core-search.mjs +473 -0
  233. package/fesm2020/covalent-core-search.mjs.map +1 -0
  234. package/fesm2020/covalent-core-side-sheet.mjs +690 -0
  235. package/fesm2020/covalent-core-side-sheet.mjs.map +1 -0
  236. package/fesm2020/covalent-core-user-profile.mjs +141 -0
  237. package/fesm2020/covalent-core-user-profile.mjs.map +1 -0
  238. package/{expansion-panel/covalent-core-expansion-panel.d.ts → fesm2020/covalent-core.mjs} +1 -1
  239. package/fesm2020/covalent-core.mjs.map +1 -0
  240. package/file/_file-theme.scss +1 -0
  241. package/file/covalent-core-file.d.ts +1 -0
  242. package/file/directives/file-drop.directive.d.ts +3 -0
  243. package/file/directives/file-select.directive.d.ts +3 -0
  244. package/file/file-input/file-input.component.d.ts +5 -0
  245. package/file/file-input/file-input.component.scss +2 -0
  246. package/file/file-upload/file-upload.component.d.ts +3 -0
  247. package/file/file-upload/file-upload.component.scss +4 -0
  248. package/file/file.module.d.ts +13 -0
  249. package/file/package.json +6 -7
  250. package/file/services/file.service.d.ts +3 -0
  251. package/json-formatter/_json-formatter-theme.scss +10 -0
  252. package/json-formatter/covalent-core-json-formatter.d.ts +1 -0
  253. package/json-formatter/json-formatter.component.d.ts +3 -0
  254. package/json-formatter/json-formatter.component.scss +13 -0
  255. package/json-formatter/json-formatter.module.d.ts +8 -0
  256. package/json-formatter/package.json +6 -7
  257. package/layout/_layout-theme.scss +12 -0
  258. package/layout/covalent-core-layout.d.ts +1 -0
  259. package/layout/layout-card-over/layout-card-over.component.d.ts +3 -0
  260. package/layout/layout-card-over/layout-card-over.component.scss +3 -0
  261. package/layout/layout-footer/layout-footer.component.d.ts +3 -0
  262. package/layout/layout-manage-list/layout-manage-list.component.d.ts +3 -0
  263. package/layout/layout-manage-list/layout-manage-list.component.scss +9 -5
  264. package/layout/layout-manage-list/layout-manage-list.directives.d.ts +7 -0
  265. package/layout/layout-nav/layout-nav.component.d.ts +3 -0
  266. package/layout/layout-nav/layout-nav.component.scss +4 -0
  267. package/layout/layout-nav-list/layout-nav-list.component.d.ts +3 -0
  268. package/layout/layout-nav-list/layout-nav-list.component.scss +9 -4
  269. package/layout/layout-nav-list/layout-nav-list.directives.d.ts +7 -0
  270. package/layout/layout-toggle.class.d.ts +3 -0
  271. package/layout/layout.component.d.ts +3 -0
  272. package/layout/layout.component.scss +0 -4
  273. package/layout/layout.directives.d.ts +7 -0
  274. package/layout/layout.module.d.ts +23 -0
  275. package/layout/navigation-drawer/navigation-drawer.component.d.ts +7 -0
  276. package/layout/navigation-drawer/navigation-drawer.component.scss +8 -0
  277. package/layout/package.json +6 -7
  278. package/menu/covalent-core-menu.d.ts +1 -0
  279. package/menu/menu.component.d.ts +3 -0
  280. package/menu/menu.component.scss +9 -1
  281. package/menu/menu.module.d.ts +8 -0
  282. package/menu/package.json +6 -7
  283. package/message/_message-theme.scss +3 -0
  284. package/message/covalent-core-message.d.ts +1 -0
  285. package/message/message.component.d.ts +5 -0
  286. package/message/message.component.scss +3 -0
  287. package/message/message.module.d.ts +7 -0
  288. package/message/package.json +6 -7
  289. package/package.json +126 -15
  290. package/search/covalent-core-search.d.ts +1 -0
  291. package/search/package.json +6 -7
  292. package/search/search-box/search-box.component.d.ts +3 -0
  293. package/search/search-box/search-box.component.scss +5 -0
  294. package/search/search-input/search-input.component.d.ts +3 -0
  295. package/search/search-input/search-input.component.scss +12 -0
  296. package/search/search.module.d.ts +11 -0
  297. package/side-sheet/README.md +66 -0
  298. package/{chips/covalent-core-chips.d.ts → side-sheet/covalent-core-side-sheet.d.ts} +1 -0
  299. package/{chips → side-sheet}/index.d.ts +0 -0
  300. package/side-sheet/package.json +10 -0
  301. package/side-sheet/public-api.d.ts +5 -0
  302. package/side-sheet/side-sheet-container.d.ts +99 -0
  303. package/side-sheet/side-sheet-ref.d.ts +10 -0
  304. package/side-sheet/side-sheet.animation.d.ts +4 -0
  305. package/side-sheet/side-sheet.config.d.ts +3 -0
  306. package/side-sheet/side-sheet.content-directives.d.ts +61 -0
  307. package/side-sheet/side-sheet.d.ts +66 -0
  308. package/side-sheet/side-sheet.module.d.ts +11 -0
  309. package/side-sheet/side-sheet.scss +68 -0
  310. package/side-sheet/side-sheet.theme.scss +8 -0
  311. package/theming/_all-theme.scss +2 -14
  312. package/theming/prebuilt/blue-grey-deep-orange.css +1716 -1579
  313. package/theming/prebuilt/blue-grey-deep-orange.css.map +1 -1
  314. package/theming/prebuilt/blue-grey-deep-orange.scss +15 -8
  315. package/theming/prebuilt/blue-orange.css +1715 -1578
  316. package/theming/prebuilt/blue-orange.css.map +1 -1
  317. package/theming/prebuilt/blue-orange.scss +15 -8
  318. package/theming/prebuilt/indigo-pink.css +1716 -1579
  319. package/theming/prebuilt/indigo-pink.css.map +1 -1
  320. package/theming/prebuilt/indigo-pink.scss +15 -8
  321. package/theming/prebuilt/orange-light-blue.css +1715 -1578
  322. package/theming/prebuilt/orange-light-blue.css.map +1 -1
  323. package/theming/prebuilt/orange-light-blue.scss +15 -8
  324. package/theming/prebuilt/teal-orange.css +1715 -1578
  325. package/theming/prebuilt/teal-orange.css.map +1 -1
  326. package/theming/prebuilt/teal-orange.scss +15 -8
  327. package/typography/_all-typography.scss +0 -10
  328. package/user-profile/covalent-core-user-profile.d.ts +1 -0
  329. package/user-profile/package.json +6 -7
  330. package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +3 -0
  331. package/user-profile/user-profile-menu/user-profile-menu.component.scss +3 -0
  332. package/user-profile/user-profile.component.d.ts +3 -0
  333. package/user-profile/user-profile.module.d.ts +12 -0
  334. package/breadcrumbs/covalent-core-breadcrumbs.metadata.json +0 -1
  335. package/bundles/covalent-core-breadcrumbs.umd.js +0 -490
  336. package/bundles/covalent-core-breadcrumbs.umd.js.map +0 -1
  337. package/bundles/covalent-core-breadcrumbs.umd.min.js +0 -2
  338. package/bundles/covalent-core-breadcrumbs.umd.min.js.map +0 -1
  339. package/bundles/covalent-core-chips.umd.js +0 -1507
  340. package/bundles/covalent-core-chips.umd.js.map +0 -1
  341. package/bundles/covalent-core-chips.umd.min.js +0 -16
  342. package/bundles/covalent-core-chips.umd.min.js.map +0 -1
  343. package/bundles/covalent-core-common.umd.js +0 -3188
  344. package/bundles/covalent-core-common.umd.js.map +0 -1
  345. package/bundles/covalent-core-common.umd.min.js +0 -17
  346. package/bundles/covalent-core-common.umd.min.js.map +0 -1
  347. package/bundles/covalent-core-data-table.umd.js +0 -2756
  348. package/bundles/covalent-core-data-table.umd.js.map +0 -1
  349. package/bundles/covalent-core-data-table.umd.min.js +0 -16
  350. package/bundles/covalent-core-data-table.umd.min.js.map +0 -1
  351. package/bundles/covalent-core-dialogs.umd.js +0 -1318
  352. package/bundles/covalent-core-dialogs.umd.js.map +0 -1
  353. package/bundles/covalent-core-dialogs.umd.min.js +0 -2
  354. package/bundles/covalent-core-dialogs.umd.min.js.map +0 -1
  355. package/bundles/covalent-core-dynamic-menu.umd.js +0 -215
  356. package/bundles/covalent-core-dynamic-menu.umd.js.map +0 -1
  357. package/bundles/covalent-core-dynamic-menu.umd.min.js +0 -2
  358. package/bundles/covalent-core-dynamic-menu.umd.min.js.map +0 -1
  359. package/bundles/covalent-core-expansion-panel.umd.js +0 -853
  360. package/bundles/covalent-core-expansion-panel.umd.js.map +0 -1
  361. package/bundles/covalent-core-expansion-panel.umd.min.js +0 -16
  362. package/bundles/covalent-core-expansion-panel.umd.min.js.map +0 -1
  363. package/bundles/covalent-core-file.umd.js +0 -1211
  364. package/bundles/covalent-core-file.umd.js.map +0 -1
  365. package/bundles/covalent-core-file.umd.min.js +0 -17
  366. package/bundles/covalent-core-file.umd.min.js.map +0 -1
  367. package/bundles/covalent-core-json-formatter.umd.js +0 -408
  368. package/bundles/covalent-core-json-formatter.umd.js.map +0 -1
  369. package/bundles/covalent-core-json-formatter.umd.min.js +0 -2
  370. package/bundles/covalent-core-json-formatter.umd.min.js.map +0 -1
  371. package/bundles/covalent-core-layout.umd.js +0 -2084
  372. package/bundles/covalent-core-layout.umd.js.map +0 -1
  373. package/bundles/covalent-core-layout.umd.min.js +0 -17
  374. package/bundles/covalent-core-layout.umd.min.js.map +0 -1
  375. package/bundles/covalent-core-loading.umd.js +0 -1534
  376. package/bundles/covalent-core-loading.umd.js.map +0 -1
  377. package/bundles/covalent-core-loading.umd.min.js +0 -16
  378. package/bundles/covalent-core-loading.umd.min.js.map +0 -1
  379. package/bundles/covalent-core-media.umd.js +0 -749
  380. package/bundles/covalent-core-media.umd.js.map +0 -1
  381. package/bundles/covalent-core-media.umd.min.js +0 -16
  382. package/bundles/covalent-core-media.umd.min.js.map +0 -1
  383. package/bundles/covalent-core-menu.umd.js +0 -69
  384. package/bundles/covalent-core-menu.umd.js.map +0 -1
  385. package/bundles/covalent-core-menu.umd.min.js +0 -2
  386. package/bundles/covalent-core-menu.umd.min.js.map +0 -1
  387. package/bundles/covalent-core-message.umd.js +0 -375
  388. package/bundles/covalent-core-message.umd.js.map +0 -1
  389. package/bundles/covalent-core-message.umd.min.js +0 -2
  390. package/bundles/covalent-core-message.umd.min.js.map +0 -1
  391. package/bundles/covalent-core-nav-links.umd.js +0 -197
  392. package/bundles/covalent-core-nav-links.umd.js.map +0 -1
  393. package/bundles/covalent-core-nav-links.umd.min.js +0 -2
  394. package/bundles/covalent-core-nav-links.umd.min.js.map +0 -1
  395. package/bundles/covalent-core-notifications.umd.js +0 -275
  396. package/bundles/covalent-core-notifications.umd.js.map +0 -1
  397. package/bundles/covalent-core-notifications.umd.min.js +0 -2
  398. package/bundles/covalent-core-notifications.umd.min.js.map +0 -1
  399. package/bundles/covalent-core-paging.umd.js +0 -491
  400. package/bundles/covalent-core-paging.umd.js.map +0 -1
  401. package/bundles/covalent-core-paging.umd.min.js +0 -2
  402. package/bundles/covalent-core-paging.umd.min.js.map +0 -1
  403. package/bundles/covalent-core-search.umd.js +0 -877
  404. package/bundles/covalent-core-search.umd.js.map +0 -1
  405. package/bundles/covalent-core-search.umd.min.js +0 -16
  406. package/bundles/covalent-core-search.umd.min.js.map +0 -1
  407. package/bundles/covalent-core-sidesheet.umd.js +0 -145
  408. package/bundles/covalent-core-sidesheet.umd.js.map +0 -1
  409. package/bundles/covalent-core-sidesheet.umd.min.js +0 -2
  410. package/bundles/covalent-core-sidesheet.umd.min.js.map +0 -1
  411. package/bundles/covalent-core-steps.umd.js +0 -1756
  412. package/bundles/covalent-core-steps.umd.js.map +0 -1
  413. package/bundles/covalent-core-steps.umd.min.js +0 -16
  414. package/bundles/covalent-core-steps.umd.min.js.map +0 -1
  415. package/bundles/covalent-core-tab-select.umd.js +0 -732
  416. package/bundles/covalent-core-tab-select.umd.js.map +0 -1
  417. package/bundles/covalent-core-tab-select.umd.min.js +0 -16
  418. package/bundles/covalent-core-tab-select.umd.min.js.map +0 -1
  419. package/bundles/covalent-core-user-profile.umd.js +0 -124
  420. package/bundles/covalent-core-user-profile.umd.js.map +0 -1
  421. package/bundles/covalent-core-user-profile.umd.min.js +0 -2
  422. package/bundles/covalent-core-user-profile.umd.min.js.map +0 -1
  423. package/bundles/covalent-core-virtual-scroll.umd.js +0 -785
  424. package/bundles/covalent-core-virtual-scroll.umd.js.map +0 -1
  425. package/bundles/covalent-core-virtual-scroll.umd.min.js +0 -16
  426. package/bundles/covalent-core-virtual-scroll.umd.min.js.map +0 -1
  427. package/bundles/covalent-core.umd.js +0 -9
  428. package/bundles/covalent-core.umd.js.map +0 -1
  429. package/bundles/covalent-core.umd.min.js +0 -2
  430. package/bundles/covalent-core.umd.min.js.map +0 -1
  431. package/chips/README.md +0 -99
  432. package/chips/_chips-theme.scss +0 -87
  433. package/chips/chips.component.d.ts +0 -287
  434. package/chips/chips.component.scss +0 -147
  435. package/chips/chips.module.d.ts +0 -2
  436. package/chips/covalent-core-chips.metadata.json +0 -1
  437. package/chips/package.json +0 -11
  438. package/chips/public-api.d.ts +0 -2
  439. package/common/covalent-core-common.metadata.json +0 -1
  440. package/covalent-core.metadata.json +0 -1
  441. package/data-table/README.md +0 -134
  442. package/data-table/_data-table-theme.scss +0 -115
  443. package/data-table/covalent-core-data-table.metadata.json +0 -1
  444. package/data-table/data-table-cell/data-table-cell.component.d.ts +0 -22
  445. package/data-table/data-table-cell/data-table-cell.component.scss +0 -58
  446. package/data-table/data-table-column/data-table-column.component.d.ts +0 -63
  447. package/data-table/data-table-column/data-table-column.component.scss +0 -80
  448. package/data-table/data-table-row/data-table-row.component.d.ts +0 -20
  449. package/data-table/data-table-row/data-table-row.component.scss +0 -12
  450. package/data-table/data-table-table/data-table-table.component.d.ts +0 -6
  451. package/data-table/data-table-table/data-table-table.component.scss +0 -7
  452. package/data-table/data-table.component.d.ts +0 -356
  453. package/data-table/data-table.component.scss +0 -93
  454. package/data-table/data-table.module.d.ts +0 -2
  455. package/data-table/directives/data-table-template.directive.d.ts +0 -6
  456. package/data-table/index.d.ts +0 -1
  457. package/data-table/package.json +0 -11
  458. package/data-table/public-api.d.ts +0 -8
  459. package/data-table/services/data-table.service.d.ts +0 -31
  460. package/dialogs/covalent-core-dialogs.metadata.json +0 -1
  461. package/dynamic-menu/covalent-core-dynamic-menu.metadata.json +0 -1
  462. package/esm2015/breadcrumbs/breadcrumb/breadcrumb.component.js +0 -171
  463. package/esm2015/breadcrumbs/breadcrumbs.component.js +0 -241
  464. package/esm2015/breadcrumbs/breadcrumbs.module.js +0 -20
  465. package/esm2015/breadcrumbs/covalent-core-breadcrumbs.js +0 -10
  466. package/esm2015/breadcrumbs/index.js +0 -7
  467. package/esm2015/breadcrumbs/public-api.js +0 -9
  468. package/esm2015/chips/chips.component.js +0 -1115
  469. package/esm2015/chips/chips.module.js +0 -23
  470. package/esm2015/chips/covalent-core-chips.js +0 -10
  471. package/esm2015/chips/index.js +0 -7
  472. package/esm2015/chips/public-api.js +0 -8
  473. package/esm2015/common/animations/bounce/bounce.animation.js +0 -76
  474. package/esm2015/common/animations/collapse/collapse.animation.js +0 -67
  475. package/esm2015/common/animations/common/interfaces.js +0 -18
  476. package/esm2015/common/animations/fade/fadeInOut.animation.js +0 -53
  477. package/esm2015/common/animations/flash/flash.animation.js +0 -40
  478. package/esm2015/common/animations/headshake/headshake.animation.js +0 -41
  479. package/esm2015/common/animations/jello/jello.animation.js +0 -44
  480. package/esm2015/common/animations/pulse/pulse.animation.js +0 -38
  481. package/esm2015/common/animations/rotate/rotate.animation.js +0 -41
  482. package/esm2015/common/behaviors/control-value-accesor.mixin.js +0 -107
  483. package/esm2015/common/behaviors/disable-ripple.mixin.js +0 -63
  484. package/esm2015/common/behaviors/disabled.mixin.js +0 -63
  485. package/esm2015/common/common.module.js +0 -54
  486. package/esm2015/common/covalent-core-common.js +0 -12
  487. package/esm2015/common/directives/fullscreen/fullscreen.directive.js +0 -180
  488. package/esm2015/common/forms/auto-trim/auto-trim.directive.js +0 -46
  489. package/esm2015/common/forms/validators/validators.js +0 -58
  490. package/esm2015/common/functions/convert.js +0 -103
  491. package/esm2015/common/functions/download.js +0 -88
  492. package/esm2015/common/functions/file.js +0 -29
  493. package/esm2015/common/index.js +0 -7
  494. package/esm2015/common/pipes/bytes/bytes.pipe.js +0 -41
  495. package/esm2015/common/pipes/decimal-bytes/decimal-bytes.pipe.js +0 -41
  496. package/esm2015/common/pipes/digits/digits.pipe.js +0 -65
  497. package/esm2015/common/pipes/time-ago/time-ago.pipe.js +0 -81
  498. package/esm2015/common/pipes/time-difference/time-difference.pipe.js +0 -66
  499. package/esm2015/common/pipes/time-until/time-until.pipe.js +0 -81
  500. package/esm2015/common/pipes/truncate/truncate.pipe.js +0 -34
  501. package/esm2015/common/public-api.js +0 -44
  502. package/esm2015/common/services/icon.service.js +0 -1109
  503. package/esm2015/common/services/router-path.service.js +0 -60
  504. package/esm2015/covalent-core.js +0 -10
  505. package/esm2015/data-table/covalent-core-data-table.js +0 -10
  506. package/esm2015/data-table/data-table-cell/data-table-cell.component.js +0 -88
  507. package/esm2015/data-table/data-table-column/data-table-column.component.js +0 -218
  508. package/esm2015/data-table/data-table-row/data-table-row.component.js +0 -132
  509. package/esm2015/data-table/data-table-table/data-table-table.component.js +0 -43
  510. package/esm2015/data-table/data-table.component.js +0 -1640
  511. package/esm2015/data-table/data-table.module.js +0 -39
  512. package/esm2015/data-table/directives/data-table-template.directive.js +0 -32
  513. package/esm2015/data-table/index.js +0 -7
  514. package/esm2015/data-table/public-api.js +0 -14
  515. package/esm2015/data-table/services/data-table.service.js +0 -116
  516. package/esm2015/dialogs/alert-dialog/alert-dialog.component.js +0 -47
  517. package/esm2015/dialogs/confirm-dialog/confirm-dialog.component.js +0 -59
  518. package/esm2015/dialogs/covalent-core-dialogs.js +0 -11
  519. package/esm2015/dialogs/dialog.component.js +0 -58
  520. package/esm2015/dialogs/dialogs.module.js +0 -57
  521. package/esm2015/dialogs/index.js +0 -7
  522. package/esm2015/dialogs/prompt-dialog/prompt-dialog.component.js +0 -83
  523. package/esm2015/dialogs/public-api.js +0 -13
  524. package/esm2015/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.js +0 -325
  525. package/esm2015/dialogs/services/dialog.service.js +0 -316
  526. package/esm2015/dialogs/window-dialog/window-dialog.component.js +0 -56
  527. package/esm2015/dynamic-menu/covalent-core-dynamic-menu.js +0 -11
  528. package/esm2015/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.js +0 -40
  529. package/esm2015/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.js +0 -35
  530. package/esm2015/dynamic-menu/dynamic-menu.component.js +0 -89
  531. package/esm2015/dynamic-menu/dynamic-menu.module.js +0 -26
  532. package/esm2015/dynamic-menu/index.js +0 -7
  533. package/esm2015/dynamic-menu/public_api.js +0 -9
  534. package/esm2015/expansion-panel/covalent-core-expansion-panel.js +0 -10
  535. package/esm2015/expansion-panel/expansion-panel-group.component.js +0 -212
  536. package/esm2015/expansion-panel/expansion-panel.component.js +0 -272
  537. package/esm2015/expansion-panel/expansion-panel.module.js +0 -31
  538. package/esm2015/expansion-panel/index.js +0 -7
  539. package/esm2015/expansion-panel/public-api.js +0 -9
  540. package/esm2015/file/covalent-core-file.js +0 -10
  541. package/esm2015/file/directives/file-drop.directive.js +0 -191
  542. package/esm2015/file/directives/file-select.directive.js +0 -98
  543. package/esm2015/file/file-input/file-input.component.js +0 -186
  544. package/esm2015/file/file-upload/file-upload.component.js +0 -237
  545. package/esm2015/file/file.module.js +0 -35
  546. package/esm2015/file/index.js +0 -7
  547. package/esm2015/file/public-api.js +0 -12
  548. package/esm2015/file/services/file.service.js +0 -109
  549. package/esm2015/index.js +0 -7
  550. package/esm2015/json-formatter/covalent-core-json-formatter.js +0 -10
  551. package/esm2015/json-formatter/index.js +0 -7
  552. package/esm2015/json-formatter/json-formatter.component.js +0 -338
  553. package/esm2015/json-formatter/json-formatter.module.js +0 -20
  554. package/esm2015/json-formatter/public-api.js +0 -8
  555. package/esm2015/layout/covalent-core-layout.js +0 -10
  556. package/esm2015/layout/index.js +0 -7
  557. package/esm2015/layout/layout-card-over/layout-card-over.component.js +0 -71
  558. package/esm2015/layout/layout-footer/layout-footer.component.js +0 -71
  559. package/esm2015/layout/layout-manage-list/layout-manage-list.component.js +0 -145
  560. package/esm2015/layout/layout-manage-list/layout-manage-list.directives.js +0 -132
  561. package/esm2015/layout/layout-nav/layout-nav.component.js +0 -100
  562. package/esm2015/layout/layout-nav-list/layout-nav-list.component.js +0 -220
  563. package/esm2015/layout/layout-nav-list/layout-nav-list.directives.js +0 -132
  564. package/esm2015/layout/layout-toggle.class.js +0 -188
  565. package/esm2015/layout/layout.component.js +0 -145
  566. package/esm2015/layout/layout.directives.js +0 -129
  567. package/esm2015/layout/layout.module.js +0 -64
  568. package/esm2015/layout/navigation-drawer/navigation-drawer.component.js +0 -280
  569. package/esm2015/layout/public-api.js +0 -18
  570. package/esm2015/loading/covalent-core-loading.js +0 -10
  571. package/esm2015/loading/directives/loading.directive.js +0 -231
  572. package/esm2015/loading/index.js +0 -7
  573. package/esm2015/loading/loading.component.js +0 -302
  574. package/esm2015/loading/loading.module.js +0 -30
  575. package/esm2015/loading/public-api.js +0 -11
  576. package/esm2015/loading/services/loading.factory.js +0 -297
  577. package/esm2015/loading/services/loading.service.js +0 -319
  578. package/esm2015/media/covalent-core-media.js +0 -10
  579. package/esm2015/media/directives/media-toggle.directive.js +0 -207
  580. package/esm2015/media/index.js +0 -7
  581. package/esm2015/media/media.module.js +0 -20
  582. package/esm2015/media/public-api.js +0 -9
  583. package/esm2015/media/services/media.service.js +0 -169
  584. package/esm2015/menu/covalent-core-menu.js +0 -10
  585. package/esm2015/menu/index.js +0 -7
  586. package/esm2015/menu/menu.component.js +0 -16
  587. package/esm2015/menu/menu.module.js +0 -22
  588. package/esm2015/menu/public-api.js +0 -8
  589. package/esm2015/message/covalent-core-message.js +0 -10
  590. package/esm2015/message/index.js +0 -7
  591. package/esm2015/message/message.component.js +0 -307
  592. package/esm2015/message/message.module.js +0 -21
  593. package/esm2015/message/public-api.js +0 -8
  594. package/esm2015/nav-links/covalent-core-nav-links.js +0 -10
  595. package/esm2015/nav-links/index.js +0 -7
  596. package/esm2015/nav-links/nav-links.component.js +0 -138
  597. package/esm2015/nav-links/nav-links.module.js +0 -37
  598. package/esm2015/nav-links/public-api.js +0 -8
  599. package/esm2015/notifications/covalent-core-notifications.js +0 -10
  600. package/esm2015/notifications/index.js +0 -7
  601. package/esm2015/notifications/notification-count.component.js +0 -191
  602. package/esm2015/notifications/notifications.module.js +0 -20
  603. package/esm2015/notifications/public-api.js +0 -8
  604. package/esm2015/paging/covalent-core-paging.js +0 -10
  605. package/esm2015/paging/index.js +0 -7
  606. package/esm2015/paging/paging-bar.component.js +0 -412
  607. package/esm2015/paging/paging.module.js +0 -20
  608. package/esm2015/paging/public-api.js +0 -8
  609. package/esm2015/search/covalent-core-search.js +0 -10
  610. package/esm2015/search/index.js +0 -7
  611. package/esm2015/search/public-api.js +0 -9
  612. package/esm2015/search/search-box/search-box.component.js +0 -270
  613. package/esm2015/search/search-input/search-input.component.js +0 -260
  614. package/esm2015/search/search.module.js +0 -23
  615. package/esm2015/sidesheet/covalent-core-sidesheet.js +0 -10
  616. package/esm2015/sidesheet/index.js +0 -7
  617. package/esm2015/sidesheet/public-api.js +0 -8
  618. package/esm2015/sidesheet/sidesheet.component.js +0 -72
  619. package/esm2015/sidesheet/sidesheet.module.js +0 -27
  620. package/esm2015/steps/covalent-core-steps.js +0 -10
  621. package/esm2015/steps/index.js +0 -7
  622. package/esm2015/steps/nav/nav-step-link/nav-step-link.component.js +0 -144
  623. package/esm2015/steps/nav/nav-steps-horizontal/nav-steps-horizontal.component.js +0 -371
  624. package/esm2015/steps/nav/nav-steps-vertical/nav-steps-vertical.component.js +0 -130
  625. package/esm2015/steps/public-api.js +0 -14
  626. package/esm2015/steps/step-body/step-body.component.js +0 -83
  627. package/esm2015/steps/step-header/step-header.component.js +0 -79
  628. package/esm2015/steps/step.component.js +0 -312
  629. package/esm2015/steps/steps.component.js +0 -234
  630. package/esm2015/steps/steps.module.js +0 -44
  631. package/esm2015/tab-select/covalent-core-tab-select.js +0 -10
  632. package/esm2015/tab-select/index.js +0 -7
  633. package/esm2015/tab-select/public-api.js +0 -9
  634. package/esm2015/tab-select/tab-option.component.js +0 -82
  635. package/esm2015/tab-select/tab-select.component.js +0 -291
  636. package/esm2015/tab-select/tab-select.module.js +0 -31
  637. package/esm2015/user-profile/covalent-core-user-profile.js +0 -10
  638. package/esm2015/user-profile/index.js +0 -7
  639. package/esm2015/user-profile/public_api.js +0 -9
  640. package/esm2015/user-profile/user-profile-menu/user-profile-menu.component.js +0 -35
  641. package/esm2015/user-profile/user-profile.component.js +0 -26
  642. package/esm2015/user-profile/user-profile.module.js +0 -33
  643. package/esm2015/virtual-scroll/covalent-core-virtual-scroll.js +0 -10
  644. package/esm2015/virtual-scroll/index.js +0 -7
  645. package/esm2015/virtual-scroll/public-api.js +0 -9
  646. package/esm2015/virtual-scroll/virtual-scroll-container.component.js +0 -391
  647. package/esm2015/virtual-scroll/virtual-scroll-row.directive.js +0 -25
  648. package/esm2015/virtual-scroll/virtual-scroll.module.js +0 -21
  649. package/expansion-panel/README.md +0 -116
  650. package/expansion-panel/_expansion-panel-theme.scss +0 -80
  651. package/expansion-panel/covalent-core-expansion-panel.metadata.json +0 -1
  652. package/expansion-panel/expansion-panel-group.component.d.ts +0 -31
  653. package/expansion-panel/expansion-panel-group.component.scss +0 -0
  654. package/expansion-panel/expansion-panel.component.d.ts +0 -82
  655. package/expansion-panel/expansion-panel.component.scss +0 -50
  656. package/expansion-panel/expansion-panel.module.d.ts +0 -2
  657. package/expansion-panel/index.d.ts +0 -1
  658. package/expansion-panel/package.json +0 -11
  659. package/expansion-panel/public-api.d.ts +0 -3
  660. package/fesm2015/covalent-core-breadcrumbs.js +0 -448
  661. package/fesm2015/covalent-core-chips.js +0 -1151
  662. package/fesm2015/covalent-core-chips.js.map +0 -1
  663. package/fesm2015/covalent-core-common.js.map +0 -1
  664. package/fesm2015/covalent-core-data-table.js +0 -2309
  665. package/fesm2015/covalent-core-data-table.js.map +0 -1
  666. package/fesm2015/covalent-core-dialogs.js +0 -1001
  667. package/fesm2015/covalent-core-dialogs.js.map +0 -1
  668. package/fesm2015/covalent-core-dynamic-menu.js +0 -204
  669. package/fesm2015/covalent-core-dynamic-menu.js.map +0 -1
  670. package/fesm2015/covalent-core-expansion-panel.js +0 -528
  671. package/fesm2015/covalent-core-expansion-panel.js.map +0 -1
  672. package/fesm2015/covalent-core-file.js +0 -855
  673. package/fesm2015/covalent-core-file.js.map +0 -1
  674. package/fesm2015/covalent-core-json-formatter.js +0 -377
  675. package/fesm2015/covalent-core-json-formatter.js.map +0 -1
  676. package/fesm2015/covalent-core-layout.js +0 -1663
  677. package/fesm2015/covalent-core-layout.js.map +0 -1
  678. package/fesm2015/covalent-core-loading.js +0 -1179
  679. package/fesm2015/covalent-core-loading.js.map +0 -1
  680. package/fesm2015/covalent-core-media.js +0 -411
  681. package/fesm2015/covalent-core-media.js.map +0 -1
  682. package/fesm2015/covalent-core-menu.js +0 -57
  683. package/fesm2015/covalent-core-menu.js.map +0 -1
  684. package/fesm2015/covalent-core-message.js +0 -347
  685. package/fesm2015/covalent-core-message.js.map +0 -1
  686. package/fesm2015/covalent-core-nav-links.js +0 -193
  687. package/fesm2015/covalent-core-nav-links.js.map +0 -1
  688. package/fesm2015/covalent-core-notifications.js +0 -228
  689. package/fesm2015/covalent-core-notifications.js.map +0 -1
  690. package/fesm2015/covalent-core-paging.js +0 -451
  691. package/fesm2015/covalent-core-paging.js.map +0 -1
  692. package/fesm2015/covalent-core-search.js +0 -564
  693. package/fesm2015/covalent-core-search.js.map +0 -1
  694. package/fesm2015/covalent-core-sidesheet.js +0 -118
  695. package/fesm2015/covalent-core-sidesheet.js.map +0 -1
  696. package/fesm2015/covalent-core-steps.js +0 -1384
  697. package/fesm2015/covalent-core-steps.js.map +0 -1
  698. package/fesm2015/covalent-core-tab-select.js +0 -416
  699. package/fesm2015/covalent-core-tab-select.js.map +0 -1
  700. package/fesm2015/covalent-core-user-profile.js +0 -111
  701. package/fesm2015/covalent-core-user-profile.js.map +0 -1
  702. package/fesm2015/covalent-core-virtual-scroll.js +0 -453
  703. package/fesm2015/covalent-core-virtual-scroll.js.map +0 -1
  704. package/fesm2015/covalent-core.js +0 -12
  705. package/fesm2015/covalent-core.js.map +0 -1
  706. package/file/covalent-core-file.metadata.json +0 -1
  707. package/json-formatter/covalent-core-json-formatter.metadata.json +0 -1
  708. package/layout/covalent-core-layout.metadata.json +0 -1
  709. package/loading/README.md +0 -180
  710. package/loading/_loading-theme.scss +0 -10
  711. package/loading/covalent-core-loading.d.ts +0 -4
  712. package/loading/covalent-core-loading.metadata.json +0 -1
  713. package/loading/directives/loading.directive.d.ts +0 -71
  714. package/loading/index.d.ts +0 -1
  715. package/loading/loading.component.d.ts +0 -87
  716. package/loading/loading.component.scss +0 -42
  717. package/loading/loading.module.d.ts +0 -2
  718. package/loading/package.json +0 -11
  719. package/loading/public-api.d.ts +0 -5
  720. package/loading/services/loading.factory.d.ts +0 -66
  721. package/loading/services/loading.service.d.ts +0 -118
  722. package/media/covalent-core-media.d.ts +0 -4
  723. package/media/covalent-core-media.metadata.json +0 -1
  724. package/media/directives/media-toggle.directive.d.ts +0 -42
  725. package/media/index.d.ts +0 -1
  726. package/media/media.module.d.ts +0 -2
  727. package/media/package.json +0 -11
  728. package/media/public-api.d.ts +0 -3
  729. package/media/services/media.service.d.ts +0 -31
  730. package/menu/covalent-core-menu.metadata.json +0 -1
  731. package/message/covalent-core-message.metadata.json +0 -1
  732. package/nav-links/README.md +0 -1
  733. package/nav-links/covalent-core-nav-links.d.ts +0 -4
  734. package/nav-links/covalent-core-nav-links.metadata.json +0 -1
  735. package/nav-links/index.d.ts +0 -1
  736. package/nav-links/nav-links.component.d.ts +0 -51
  737. package/nav-links/nav-links.component.scss +0 -15
  738. package/nav-links/nav-links.module.d.ts +0 -2
  739. package/nav-links/package.json +0 -11
  740. package/nav-links/public-api.d.ts +0 -2
  741. package/notifications/README.md +0 -69
  742. package/notifications/_notification-count-theme.scss +0 -27
  743. package/notifications/covalent-core-notifications.d.ts +0 -4
  744. package/notifications/covalent-core-notifications.metadata.json +0 -1
  745. package/notifications/index.d.ts +0 -1
  746. package/notifications/notification-count.component.d.ts +0 -74
  747. package/notifications/notification-count.component.scss +0 -90
  748. package/notifications/notifications.module.d.ts +0 -2
  749. package/notifications/package.json +0 -11
  750. package/notifications/public-api.d.ts +0 -2
  751. package/paging/README.md +0 -141
  752. package/paging/_paging-bar-theme.scss +0 -26
  753. package/paging/covalent-core-paging.d.ts +0 -4
  754. package/paging/covalent-core-paging.metadata.json +0 -1
  755. package/paging/index.d.ts +0 -1
  756. package/paging/package.json +0 -11
  757. package/paging/paging-bar.component.d.ts +0 -115
  758. package/paging/paging-bar.component.scss +0 -23
  759. package/paging/paging.module.d.ts +0 -2
  760. package/paging/public-api.d.ts +0 -2
  761. package/schematics/collection.json +0 -11
  762. package/schematics/components.js +0 -124
  763. package/schematics/components.js.map +0 -1
  764. package/schematics/migration.json +0 -10
  765. package/schematics/ng-add/index.js +0 -58
  766. package/schematics/ng-add/index.js.map +0 -1
  767. package/schematics/ng-add/schema.js +0 -3
  768. package/schematics/ng-add/schema.js.map +0 -1
  769. package/schematics/ng-add/schema.json +0 -81
  770. package/schematics/ng-update/index.js +0 -52
  771. package/schematics/ng-update/index.js.map +0 -1
  772. package/schematics/ng-update/target-version.js +0 -8
  773. package/schematics/ng-update/target-version.js.map +0 -1
  774. package/schematics/version-names.js +0 -6
  775. package/schematics/version-names.js.map +0 -1
  776. package/search/covalent-core-search.metadata.json +0 -1
  777. package/sidesheet/README.md +0 -68
  778. package/sidesheet/covalent-core-sidesheet.d.ts +0 -4
  779. package/sidesheet/covalent-core-sidesheet.metadata.json +0 -1
  780. package/sidesheet/index.d.ts +0 -1
  781. package/sidesheet/package.json +0 -11
  782. package/sidesheet/public-api.d.ts +0 -2
  783. package/sidesheet/sidesheet.component.d.ts +0 -13
  784. package/sidesheet/sidesheet.component.scss +0 -101
  785. package/sidesheet/sidesheet.module.d.ts +0 -2
  786. package/steps/README.md +0 -159
  787. package/steps/_steps-theme.scss +0 -108
  788. package/steps/covalent-core-steps.d.ts +0 -4
  789. package/steps/covalent-core-steps.metadata.json +0 -1
  790. package/steps/index.d.ts +0 -1
  791. package/steps/nav/README.md +0 -90
  792. package/steps/nav/nav-step-link/nav-step-link.component.d.ts +0 -42
  793. package/steps/nav/nav-step-link/nav-step-link.component.scss +0 -17
  794. package/steps/nav/nav-steps-horizontal/nav-steps-horizontal.component.d.ts +0 -79
  795. package/steps/nav/nav-steps-horizontal/nav-steps-horizontal.component.scss +0 -83
  796. package/steps/nav/nav-steps-vertical/nav-steps-vertical.component.d.ts +0 -18
  797. package/steps/nav/nav-steps-vertical/nav-steps-vertical.component.scss +0 -18
  798. package/steps/package.json +0 -11
  799. package/steps/public-api.d.ts +0 -8
  800. package/steps/step-body/step-body.component.d.ts +0 -25
  801. package/steps/step-body/step-body.component.scss +0 -29
  802. package/steps/step-header/step-header.component.d.ts +0 -35
  803. package/steps/step-header/step-header.component.scss +0 -90
  804. package/steps/step.component.d.ts +0 -97
  805. package/steps/steps.component.d.ts +0 -60
  806. package/steps/steps.component.scss +0 -55
  807. package/steps/steps.module.d.ts +0 -2
  808. package/tab-select/README.md +0 -93
  809. package/tab-select/covalent-core-tab-select.d.ts +0 -4
  810. package/tab-select/covalent-core-tab-select.metadata.json +0 -1
  811. package/tab-select/index.d.ts +0 -1
  812. package/tab-select/package.json +0 -11
  813. package/tab-select/public-api.d.ts +0 -3
  814. package/tab-select/tab-option.component.d.ts +0 -20
  815. package/tab-select/tab-option.component.scss +0 -0
  816. package/tab-select/tab-select.component.d.ts +0 -62
  817. package/tab-select/tab-select.component.scss +0 -3
  818. package/tab-select/tab-select.module.d.ts +0 -2
  819. package/user-profile/covalent-core-user-profile.metadata.json +0 -1
  820. package/virtual-scroll/README.md +0 -68
  821. package/virtual-scroll/covalent-core-virtual-scroll.d.ts +0 -4
  822. package/virtual-scroll/covalent-core-virtual-scroll.metadata.json +0 -1
  823. package/virtual-scroll/index.d.ts +0 -1
  824. package/virtual-scroll/package.json +0 -11
  825. package/virtual-scroll/public-api.d.ts +0 -3
  826. package/virtual-scroll/virtual-scroll-container.component.d.ts +0 -73
  827. package/virtual-scroll/virtual-scroll-container.component.scss +0 -7
  828. package/virtual-scroll/virtual-scroll-row.directive.d.ts +0 -5
  829. package/virtual-scroll/virtual-scroll.module.d.ts +0 -2
@@ -1,60 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: services/router-path.service.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Injectable } from '@angular/core';
7
- import { Router, RoutesRecognized } from '@angular/router';
8
- import { filter, pairwise } from 'rxjs/operators';
9
- export class RouterPathService {
10
- /**
11
- * @param {?} _router
12
- */
13
- constructor(_router) {
14
- this._router = _router;
15
- this._router.events
16
- .pipe(filter((/**
17
- * @param {?} e
18
- * @return {?}
19
- */
20
- (e) => e instanceof RoutesRecognized)), pairwise())
21
- .subscribe((/**
22
- * @param {?} e
23
- * @return {?}
24
- */
25
- (e) => {
26
- RouterPathService._previousRoute = e[0].urlAfterRedirects;
27
- }));
28
- }
29
- /*
30
- * Utility function to get the route the user previously went to
31
- * good for use in a "back button"
32
- */
33
- /**
34
- * @return {?}
35
- */
36
- getPreviousRoute() {
37
- return RouterPathService._previousRoute;
38
- }
39
- }
40
- RouterPathService._previousRoute = '/';
41
- RouterPathService.decorators = [
42
- { type: Injectable }
43
- ];
44
- /** @nocollapse */
45
- RouterPathService.ctorParameters = () => [
46
- { type: Router }
47
- ];
48
- if (false) {
49
- /**
50
- * @type {?}
51
- * @private
52
- */
53
- RouterPathService._previousRoute;
54
- /**
55
- * @type {?}
56
- * @private
57
- */
58
- RouterPathService.prototype._router;
59
- }
60
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm91dGVyLXBhdGguc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9jb21tb24vIiwic291cmNlcyI6WyJzZXJ2aWNlcy9yb3V0ZXItcGF0aC5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsTUFBTSxFQUFFLGdCQUFnQixFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFM0QsT0FBTyxFQUFFLE1BQU0sRUFBRSxRQUFRLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUdsRCxNQUFNLE9BQU8saUJBQWlCOzs7O0lBRTVCLFlBQW9CLE9BQWU7UUFBZixZQUFPLEdBQVAsT0FBTyxDQUFRO1FBQ2pDLElBQUksQ0FBQyxPQUFPLENBQUMsTUFBTTthQUNoQixJQUFJLENBQ0gsTUFBTTs7OztRQUFDLENBQUMsQ0FBTSxFQUFFLEVBQUUsQ0FBQyxDQUFDLFlBQVksZ0JBQWdCLEVBQUMsRUFDakQsUUFBUSxFQUFFLENBQ1g7YUFDQSxTQUFTOzs7O1FBQUMsQ0FBQyxDQUFRLEVBQUUsRUFBRTtZQUN0QixpQkFBaUIsQ0FBQyxjQUFjLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLGlCQUFpQixDQUFDO1FBQzVELENBQUMsRUFBQyxDQUFDO0lBQ1AsQ0FBQzs7Ozs7Ozs7SUFNRCxnQkFBZ0I7UUFDZCxPQUFPLGlCQUFpQixDQUFDLGNBQWMsQ0FBQztJQUMxQyxDQUFDOztBQWxCYyxnQ0FBYyxHQUFXLEdBQUcsQ0FBQzs7WUFGN0MsVUFBVTs7OztZQUpGLE1BQU07Ozs7Ozs7SUFNYixpQ0FBNEM7Ozs7O0lBQ2hDLG9DQUF1QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFJvdXRlciwgUm91dGVzUmVjb2duaXplZCB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5cbmltcG9ydCB7IGZpbHRlciwgcGFpcndpc2UgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbkBJbmplY3RhYmxlKClcbmV4cG9ydCBjbGFzcyBSb3V0ZXJQYXRoU2VydmljZSB7XG4gIHByaXZhdGUgc3RhdGljIF9wcmV2aW91c1JvdXRlOiBzdHJpbmcgPSAnLyc7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX3JvdXRlcjogUm91dGVyKSB7XG4gICAgdGhpcy5fcm91dGVyLmV2ZW50c1xuICAgICAgLnBpcGUoXG4gICAgICAgIGZpbHRlcigoZTogYW55KSA9PiBlIGluc3RhbmNlb2YgUm91dGVzUmVjb2duaXplZCksXG4gICAgICAgIHBhaXJ3aXNlKCksXG4gICAgICApXG4gICAgICAuc3Vic2NyaWJlKChlOiBhbnlbXSkgPT4ge1xuICAgICAgICBSb3V0ZXJQYXRoU2VydmljZS5fcHJldmlvdXNSb3V0ZSA9IGVbMF0udXJsQWZ0ZXJSZWRpcmVjdHM7XG4gICAgICB9KTtcbiAgfVxuXG4gIC8qXG4gICAqIFV0aWxpdHkgZnVuY3Rpb24gdG8gZ2V0IHRoZSByb3V0ZSB0aGUgdXNlciBwcmV2aW91c2x5IHdlbnQgdG9cbiAgICogZ29vZCBmb3IgdXNlIGluIGEgXCJiYWNrIGJ1dHRvblwiXG4gICAqL1xuICBnZXRQcmV2aW91c1JvdXRlKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIFJvdXRlclBhdGhTZXJ2aWNlLl9wcmV2aW91c1JvdXRlO1xuICB9XG59XG4iXX0=
@@ -1,10 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: covalent-core.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- /**
7
- * Generated bundle index. Do not edit.
8
- */
9
- export {} from './index';
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY292YWxlbnQtY29yZS5qcyIsInNvdXJjZVJvb3QiOiIuLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS8iLCJzb3VyY2VzIjpbImNvdmFsZW50LWNvcmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7QUFJQSxlQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -1,10 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: covalent-core-data-table.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- /**
7
- * Generated bundle index. Do not edit.
8
- */
9
- export { CovalentDataTableModule, TdDataTableSortingOrder, TdDataTableBase, _TdDataTableMixinBase, TdDataTableComponent, TdDataTableCellComponent, TdDataTableColumnComponent, TdDataTableColumnRowComponent, TdDataTableRowComponent, TdDataTableTableComponent, TdDataTableTemplateDirective, TdDataTableService } from './index';
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY292YWxlbnQtY29yZS1kYXRhLXRhYmxlLmpzIiwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2RhdGEtdGFibGUvIiwic291cmNlcyI6WyJjb3ZhbGVudC1jb3JlLWRhdGEtdGFibGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7QUFJQSwwVEFBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
@@ -1,88 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: data-table-cell/data-table-cell.component.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Component, Input, Renderer2, ElementRef, HostBinding } from '@angular/core';
7
- export class TdDataTableCellComponent {
8
- /**
9
- * @param {?} _elementRef
10
- * @param {?} _renderer
11
- */
12
- constructor(_elementRef, _renderer) {
13
- this._elementRef = _elementRef;
14
- this._renderer = _renderer;
15
- /**
16
- * numeric?: boolean
17
- * Makes cell follow the numeric data-table specs.
18
- * Defaults to 'false'
19
- */
20
- this.numeric = false;
21
- this._renderer.addClass(this._elementRef.nativeElement, 'td-data-table-cell');
22
- }
23
- /**
24
- * align?: 'start' | 'center' | 'end'
25
- * Makes cell content align on demand
26
- * Defaults to 'left', overrides numeric
27
- * @param {?} align
28
- * @return {?}
29
- */
30
- set align(align) {
31
- this._align = align;
32
- }
33
- /**
34
- * @return {?}
35
- */
36
- get align() {
37
- return this._align;
38
- }
39
- /**
40
- * @return {?}
41
- */
42
- get bindNumeric() {
43
- return this.numeric;
44
- }
45
- }
46
- TdDataTableCellComponent.decorators = [
47
- { type: Component, args: [{
48
- /* tslint:disable-next-line */
49
- selector: 'td[td-data-table-cell]',
50
- template: "<div\n class=\"td-data-table-cell-content-wrapper\"\n [class.td-data-table-cell-numeric]=\"numeric\"\n [class.td-data-table-cell-align-center]=\"align === 'center'\"\n [class.td-data-table-cell-align-end]=\"align === 'end'\"\n [class.td-data-table-cell-align-start]=\"align === 'start'\"\n>\n <ng-content></ng-content>\n</div>\n",
51
- styles: [":host{padding:0;text-align:left;vertical-align:middle}html[dir=rtl] :host{text-align:right;unicode-bidi:embed}body[dir=rtl] :host{text-align:right;unicode-bidi:embed}[dir=rtl] :host{text-align:right;unicode-bidi:embed}:host bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}:host>.td-data-table-cell-content-wrapper{-ms-flex-align:center;-ms-flex-direction:row;-ms-flex-line-pack:center;-ms-flex-pack:start;align-content:center;align-items:center;box-sizing:border-box;display:-ms-flexbox;display:flex;flex-direction:row;justify-content:flex-start;max-width:100%;padding:0 28px}:host>.td-data-table-cell-content-wrapper.td-data-table-cell-numeric{-ms-flex-pack:end;justify-content:flex-end}:host>.td-data-table-cell-content-wrapper.td-data-table-cell-align-start{-ms-flex-pack:start;justify-content:flex-start}:host>.td-data-table-cell-content-wrapper.td-data-table-cell-align-end{-ms-flex-pack:end;justify-content:flex-end}:host>.td-data-table-cell-content-wrapper.td-data-table-cell-align-center{-ms-flex-pack:center;justify-content:center}:host:first-child>.td-data-table-cell-content-wrapper{padding-left:24px;padding-right:0}html[dir=rtl] :host:first-child>.td-data-table-cell-content-wrapper{padding-left:0}body[dir=rtl] :host:first-child>.td-data-table-cell-content-wrapper{padding-left:0}[dir=rtl] :host:first-child>.td-data-table-cell-content-wrapper{padding-left:0}html[dir=rtl] :host:first-child>.td-data-table-cell-content-wrapper{padding-right:24px;unicode-bidi:embed}body[dir=rtl] :host:first-child>.td-data-table-cell-content-wrapper{padding-right:24px;unicode-bidi:embed}[dir=rtl] :host:first-child>.td-data-table-cell-content-wrapper{padding-right:24px;unicode-bidi:embed}:host:first-child>.td-data-table-cell-content-wrapper bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host:first-child>.td-data-table-cell-content-wrapper bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}:host:last-child>.td-data-table-cell-content-wrapper{padding-left:28px;padding-right:24px}html[dir=rtl] :host:last-child>.td-data-table-cell-content-wrapper{padding-left:24px}body[dir=rtl] :host:last-child>.td-data-table-cell-content-wrapper{padding-left:24px}[dir=rtl] :host:last-child>.td-data-table-cell-content-wrapper{padding-left:24px}html[dir=rtl] :host:last-child>.td-data-table-cell-content-wrapper{padding-right:28px;unicode-bidi:embed}body[dir=rtl] :host:last-child>.td-data-table-cell-content-wrapper{padding-right:28px;unicode-bidi:embed}[dir=rtl] :host:last-child>.td-data-table-cell-content-wrapper{padding-right:28px;unicode-bidi:embed}:host:last-child>.td-data-table-cell-content-wrapper bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host:last-child>.td-data-table-cell-content-wrapper bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}:host>*{vertical-align:middle}:host.mat-clickable{cursor:pointer}:host.mat-clickable:focus{outline:none}:host.mat-numeric{text-align:right}html[dir=rtl] :host.mat-numeric{text-align:left;unicode-bidi:embed}body[dir=rtl] :host.mat-numeric{text-align:left;unicode-bidi:embed}[dir=rtl] :host.mat-numeric{text-align:left;unicode-bidi:embed}:host.mat-numeric bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host.mat-numeric bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}"]
52
- }] }
53
- ];
54
- /** @nocollapse */
55
- TdDataTableCellComponent.ctorParameters = () => [
56
- { type: ElementRef },
57
- { type: Renderer2 }
58
- ];
59
- TdDataTableCellComponent.propDecorators = {
60
- numeric: [{ type: Input }],
61
- align: [{ type: Input }],
62
- bindNumeric: [{ type: HostBinding, args: ['class.mat-numeric',] }]
63
- };
64
- if (false) {
65
- /**
66
- * @type {?}
67
- * @private
68
- */
69
- TdDataTableCellComponent.prototype._align;
70
- /**
71
- * numeric?: boolean
72
- * Makes cell follow the numeric data-table specs.
73
- * Defaults to 'false'
74
- * @type {?}
75
- */
76
- TdDataTableCellComponent.prototype.numeric;
77
- /**
78
- * @type {?}
79
- * @private
80
- */
81
- TdDataTableCellComponent.prototype._elementRef;
82
- /**
83
- * @type {?}
84
- * @private
85
- */
86
- TdDataTableCellComponent.prototype._renderer;
87
- }
88
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS10YWJsZS1jZWxsLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9kYXRhLXRhYmxlLyIsInNvdXJjZXMiOlsiZGF0YS10YWJsZS1jZWxsL2RhdGEtdGFibGUtY2VsbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQVVyRixNQUFNLE9BQU8sd0JBQXdCOzs7OztJQTRCbkMsWUFBb0IsV0FBdUIsRUFBVSxTQUFvQjtRQUFyRCxnQkFBVyxHQUFYLFdBQVcsQ0FBWTtRQUFVLGNBQVMsR0FBVCxTQUFTLENBQVc7Ozs7OztRQXBCaEUsWUFBTyxHQUFZLEtBQUssQ0FBQztRQXFCaEMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLEVBQUUsb0JBQW9CLENBQUMsQ0FBQztJQUNoRixDQUFDOzs7Ozs7OztJQWZELElBQ0ksS0FBSyxDQUFDLEtBQTJCO1FBQ25DLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDO0lBQ3RCLENBQUM7Ozs7SUFDRCxJQUFJLEtBQUs7UUFDUCxPQUFPLElBQUksQ0FBQyxNQUFNLENBQUM7SUFDckIsQ0FBQzs7OztJQUVELElBQ0ksV0FBVztRQUNiLE9BQU8sSUFBSSxDQUFDLE9BQU8sQ0FBQztJQUN0QixDQUFDOzs7WUFoQ0YsU0FBUyxTQUFDOztnQkFFVCxRQUFRLEVBQUUsd0JBQXdCO2dCQUVsQywwVkFBK0M7O2FBQ2hEOzs7O1lBVHFDLFVBQVU7WUFBckIsU0FBUzs7O3NCQWtCakMsS0FBSztvQkFPTCxLQUFLOzBCQVFMLFdBQVcsU0FBQyxtQkFBbUI7Ozs7Ozs7SUF0QmhDLDBDQUFxQzs7Ozs7OztJQU9yQywyQ0FBa0M7Ozs7O0lBb0J0QiwrQ0FBK0I7Ozs7O0lBQUUsNkNBQTRCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgUmVuZGVyZXIyLCBFbGVtZW50UmVmLCBIb3N0QmluZGluZyB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgdHlwZSBUZERhdGFUYWJsZUNlbGxBbGlnbiA9ICdzdGFydCcgfCAnY2VudGVyJyB8ICdlbmQnO1xuXG5AQ29tcG9uZW50KHtcbiAgLyogdHNsaW50OmRpc2FibGUtbmV4dC1saW5lICovXG4gIHNlbGVjdG9yOiAndGRbdGQtZGF0YS10YWJsZS1jZWxsXScsXG4gIHN0eWxlVXJsczogWycuL2RhdGEtdGFibGUtY2VsbC5jb21wb25lbnQuc2NzcyddLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0YS10YWJsZS1jZWxsLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgVGREYXRhVGFibGVDZWxsQ29tcG9uZW50IHtcbiAgcHJpdmF0ZSBfYWxpZ246IFRkRGF0YVRhYmxlQ2VsbEFsaWduO1xuXG4gIC8qKlxuICAgKiBudW1lcmljPzogYm9vbGVhblxuICAgKiBNYWtlcyBjZWxsIGZvbGxvdyB0aGUgbnVtZXJpYyBkYXRhLXRhYmxlIHNwZWNzLlxuICAgKiBEZWZhdWx0cyB0byAnZmFsc2UnXG4gICAqL1xuICBASW5wdXQoKSBudW1lcmljOiBib29sZWFuID0gZmFsc2U7XG5cbiAgLyoqXG4gICAqIGFsaWduPzogJ3N0YXJ0JyB8ICdjZW50ZXInIHwgJ2VuZCdcbiAgICogTWFrZXMgY2VsbCBjb250ZW50IGFsaWduIG9uIGRlbWFuZFxuICAgKiBEZWZhdWx0cyB0byAnbGVmdCcsIG92ZXJyaWRlcyBudW1lcmljXG4gICAqL1xuICBASW5wdXQoKVxuICBzZXQgYWxpZ24oYWxpZ246IFRkRGF0YVRhYmxlQ2VsbEFsaWduKSB7XG4gICAgdGhpcy5fYWxpZ24gPSBhbGlnbjtcbiAgfVxuICBnZXQgYWxpZ24oKTogVGREYXRhVGFibGVDZWxsQWxpZ24ge1xuICAgIHJldHVybiB0aGlzLl9hbGlnbjtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MubWF0LW51bWVyaWMnKVxuICBnZXQgYmluZE51bWVyaWMoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMubnVtZXJpYztcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYsIHByaXZhdGUgX3JlbmRlcmVyOiBSZW5kZXJlcjIpIHtcbiAgICB0aGlzLl9yZW5kZXJlci5hZGRDbGFzcyh0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQsICd0ZC1kYXRhLXRhYmxlLWNlbGwnKTtcbiAgfVxufVxuIl19
@@ -1,218 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: data-table-column/data-table-column.component.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Component, Input, Output, EventEmitter, Renderer2, ElementRef, HostBinding, HostListener, ViewChild, } from '@angular/core';
7
- import { TdDataTableSortingOrder } from '../data-table.component';
8
- /**
9
- * @record
10
- */
11
- export function ITdDataTableSortChangeEvent() { }
12
- if (false) {
13
- /** @type {?} */
14
- ITdDataTableSortChangeEvent.prototype.order;
15
- /** @type {?} */
16
- ITdDataTableSortChangeEvent.prototype.name;
17
- }
18
- export class TdDataTableColumnComponent {
19
- /**
20
- * @param {?} _elementRef
21
- * @param {?} _renderer
22
- */
23
- constructor(_elementRef, _renderer) {
24
- this._elementRef = _elementRef;
25
- this._renderer = _renderer;
26
- this._sortOrder = TdDataTableSortingOrder.Ascending;
27
- /**
28
- * name?: string
29
- * Sets unique column [name] for [sortable] events.
30
- */
31
- this.name = '';
32
- /**
33
- * sortable?: boolean
34
- * Enables sorting events, sort icons and active column states.
35
- * Defaults to 'false'
36
- */
37
- this.sortable = false;
38
- /**
39
- * active?: boolean
40
- * Sets column to active state when 'true'.
41
- * Defaults to 'false'
42
- */
43
- this.active = false;
44
- /**
45
- * numeric?: boolean
46
- * Makes column follow the numeric data-table specs and sort icon.
47
- * Defaults to 'false'
48
- */
49
- this.numeric = false;
50
- /**
51
- * if column sort order is present
52
- */
53
- this.isColumnSortOrder = false;
54
- /**
55
- * sortChange?: function
56
- * Event emitted when the column headers are clicked. [sortable] needs to be enabled.
57
- * Emits an [ITdDataTableSortChangeEvent] implemented object.
58
- */
59
- this.sortChange = new EventEmitter();
60
- this._renderer.addClass(this._elementRef.nativeElement, 'td-data-table-column');
61
- }
62
- /**
63
- * @return {?}
64
- */
65
- get projectedWidth() {
66
- if (this._columnContent && this._columnContent.nativeElement) {
67
- return ((/** @type {?} */ (this._columnContent.nativeElement))).getBoundingClientRect().width;
68
- }
69
- return 100;
70
- }
71
- /**
72
- * sortOrder?: ['ASC' | 'DESC'] or TdDataTableSortingOrder
73
- * Sets the sort order of column.
74
- * Defaults to 'ASC' or TdDataTableSortingOrder.Ascending
75
- * @param {?} order
76
- * @return {?}
77
- */
78
- set sortOrder(order) {
79
- /** @type {?} */
80
- const sortOrder = order ? order.toUpperCase() : 'ASC';
81
- if (sortOrder !== 'DESC' && sortOrder !== 'ASC') {
82
- throw new Error('[sortOrder] must be empty, ASC or DESC');
83
- }
84
- this._sortOrder = sortOrder === 'ASC' ? TdDataTableSortingOrder.Ascending : TdDataTableSortingOrder.Descending;
85
- }
86
- /**
87
- * @return {?}
88
- */
89
- get bindClickable() {
90
- return this.sortable;
91
- }
92
- /**
93
- * @return {?}
94
- */
95
- get bingSortable() {
96
- return this.sortable;
97
- }
98
- /**
99
- * @return {?}
100
- */
101
- get bindActive() {
102
- return this.active;
103
- }
104
- /**
105
- * @return {?}
106
- */
107
- get bindNumeric() {
108
- return this.numeric;
109
- }
110
- /**
111
- * Listening to click event on host to throw a sort event
112
- * @return {?}
113
- */
114
- handleClick() {
115
- if (this.sortable) {
116
- this.sortChange.emit({ name: this.name, order: this._sortOrder });
117
- }
118
- }
119
- /**
120
- * @return {?}
121
- */
122
- isAscending() {
123
- return this._sortOrder === TdDataTableSortingOrder.Ascending;
124
- }
125
- /**
126
- * @return {?}
127
- */
128
- isDescending() {
129
- return this._sortOrder === TdDataTableSortingOrder.Descending;
130
- }
131
- }
132
- TdDataTableColumnComponent.decorators = [
133
- { type: Component, args: [{
134
- /* tslint:disable-next-line */
135
- selector: 'th[td-data-table-column]',
136
- template: "<span #columnContent class=\"td-data-table-heading\">\n <mat-icon\n class=\"td-data-table-sort-icon\"\n *ngIf=\"sortable && numeric\"\n [class.mat-asc]=\"isAscending()\"\n [class.mat-desc]=\"isDescending()\"\n >\n arrow_upward\n </mat-icon>\n <span>\n <ng-content></ng-content>\n </span>\n <mat-icon\n class=\"td-data-table-sort-icon\"\n *ngIf=\"sortable && !numeric\"\n [class.mat-asc]=\"isAscending()\"\n [class.mat-desc]=\"isDescending()\"\n [class.display-numeric]=\"isColumnSortOrder\"\n >\n arrow_upward\n </mat-icon>\n</span>\n<ng-content select=\"[td-column-resizer]\"></ng-content>\n",
137
- styles: [":host{padding:0;position:relative;text-align:left;vertical-align:middle;white-space:nowrap}:host>.td-data-table-heading{padding:0 28px}:host:first-child>.td-data-table-heading{padding-left:24px;padding-right:0}html[dir=rtl] :host:first-child>.td-data-table-heading{padding-left:0}body[dir=rtl] :host:first-child>.td-data-table-heading{padding-left:0}[dir=rtl] :host:first-child>.td-data-table-heading{padding-left:0}html[dir=rtl] :host:first-child>.td-data-table-heading{padding-right:24px;unicode-bidi:embed}body[dir=rtl] :host:first-child>.td-data-table-heading{padding-right:24px;unicode-bidi:embed}[dir=rtl] :host:first-child>.td-data-table-heading{padding-right:24px;unicode-bidi:embed}:host:first-child>.td-data-table-heading bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host:first-child>.td-data-table-heading bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}:host:last-child>.td-data-table-heading{padding-left:28px;padding-right:24px}html[dir=rtl] :host:last-child>.td-data-table-heading{padding-left:24px}body[dir=rtl] :host:last-child>.td-data-table-heading{padding-left:24px}[dir=rtl] :host:last-child>.td-data-table-heading{padding-left:24px}html[dir=rtl] :host:last-child>.td-data-table-heading{padding-right:28px;unicode-bidi:embed}body[dir=rtl] :host:last-child>.td-data-table-heading{padding-right:28px;unicode-bidi:embed}[dir=rtl] :host:last-child>.td-data-table-heading{padding-right:28px;unicode-bidi:embed}:host:last-child>.td-data-table-heading bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host:last-child>.td-data-table-heading bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}:host mat-icon{font-size:16px!important;height:16px;line-height:16px!important;width:16px}:host mat-icon.td-data-table-sort-icon{opacity:0;position:absolute;top:0;transition:transform .25s}:host mat-icon.td-data-table-sort-icon.display-numeric{right:0}:host mat-icon.td-data-table-sort-icon.mat-asc{-ms-transform:rotate(0deg);transform:rotate(0deg)}:host mat-icon.td-data-table-sort-icon.mat-desc{-ms-transform:rotate(180deg);transform:rotate(180deg)}:host.mat-active.mat-sortable mat-icon.td-data-table-sort-icon,:host:hover.mat-sortable mat-icon.td-data-table-sort-icon{opacity:1}html[dir=rtl] :host{text-align:right;unicode-bidi:embed}body[dir=rtl] :host{text-align:right;unicode-bidi:embed}[dir=rtl] :host{text-align:right;unicode-bidi:embed}:host bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}:host>*{vertical-align:middle}:host.mat-clickable{cursor:pointer}:host.mat-clickable:focus{outline:none}:host .td-data-table-heading{display:inline-block;position:relative}:host.mat-numeric{text-align:right}html[dir=rtl] :host.mat-numeric{text-align:left;unicode-bidi:embed}body[dir=rtl] :host.mat-numeric{text-align:left;unicode-bidi:embed}[dir=rtl] :host.mat-numeric{text-align:left;unicode-bidi:embed}:host.mat-numeric bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host.mat-numeric bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}:host.mat-numeric mat-icon.td-data-table-sort-icon{margin-left:-22px;margin-right:0}html[dir=rtl] :host.mat-numeric mat-icon.td-data-table-sort-icon{margin-left:0}body[dir=rtl] :host.mat-numeric mat-icon.td-data-table-sort-icon{margin-left:0}[dir=rtl] :host.mat-numeric mat-icon.td-data-table-sort-icon{margin-left:0}html[dir=rtl] :host.mat-numeric mat-icon.td-data-table-sort-icon{margin-right:-22px;unicode-bidi:embed}body[dir=rtl] :host.mat-numeric mat-icon.td-data-table-sort-icon{margin-right:-22px;unicode-bidi:embed}[dir=rtl] :host.mat-numeric mat-icon.td-data-table-sort-icon{margin-right:-22px;unicode-bidi:embed}:host.mat-numeric mat-icon.td-data-table-sort-icon bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host.mat-numeric mat-icon.td-data-table-sort-icon bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}:host:not(.mat-numeric) mat-icon.td-data-table-sort-icon{margin-left:6px;margin-right:0}html[dir=rtl] :host:not(.mat-numeric) mat-icon.td-data-table-sort-icon{margin-left:0}body[dir=rtl] :host:not(.mat-numeric) mat-icon.td-data-table-sort-icon{margin-left:0}[dir=rtl] :host:not(.mat-numeric) mat-icon.td-data-table-sort-icon{margin-left:0}html[dir=rtl] :host:not(.mat-numeric) mat-icon.td-data-table-sort-icon{margin-right:6px;unicode-bidi:embed}body[dir=rtl] :host:not(.mat-numeric) mat-icon.td-data-table-sort-icon{margin-right:6px;unicode-bidi:embed}[dir=rtl] :host:not(.mat-numeric) mat-icon.td-data-table-sort-icon{margin-right:6px;unicode-bidi:embed}:host:not(.mat-numeric) mat-icon.td-data-table-sort-icon bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}:host:not(.mat-numeric) mat-icon.td-data-table-sort-icon bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}"]
138
- }] }
139
- ];
140
- /** @nocollapse */
141
- TdDataTableColumnComponent.ctorParameters = () => [
142
- { type: ElementRef },
143
- { type: Renderer2 }
144
- ];
145
- TdDataTableColumnComponent.propDecorators = {
146
- _columnContent: [{ type: ViewChild, args: ['columnContent', { read: ElementRef, static: true },] }],
147
- name: [{ type: Input }],
148
- sortable: [{ type: Input }],
149
- active: [{ type: Input }],
150
- numeric: [{ type: Input }],
151
- isColumnSortOrder: [{ type: Input }],
152
- sortOrder: [{ type: Input, args: ['sortOrder',] }],
153
- sortChange: [{ type: Output }],
154
- bindClickable: [{ type: HostBinding, args: ['class.mat-clickable',] }],
155
- bingSortable: [{ type: HostBinding, args: ['class.mat-sortable',] }],
156
- bindActive: [{ type: HostBinding, args: ['class.mat-active',] }],
157
- bindNumeric: [{ type: HostBinding, args: ['class.mat-numeric',] }],
158
- handleClick: [{ type: HostListener, args: ['click',] }]
159
- };
160
- if (false) {
161
- /**
162
- * @type {?}
163
- * @private
164
- */
165
- TdDataTableColumnComponent.prototype._sortOrder;
166
- /** @type {?} */
167
- TdDataTableColumnComponent.prototype._columnContent;
168
- /**
169
- * name?: string
170
- * Sets unique column [name] for [sortable] events.
171
- * @type {?}
172
- */
173
- TdDataTableColumnComponent.prototype.name;
174
- /**
175
- * sortable?: boolean
176
- * Enables sorting events, sort icons and active column states.
177
- * Defaults to 'false'
178
- * @type {?}
179
- */
180
- TdDataTableColumnComponent.prototype.sortable;
181
- /**
182
- * active?: boolean
183
- * Sets column to active state when 'true'.
184
- * Defaults to 'false'
185
- * @type {?}
186
- */
187
- TdDataTableColumnComponent.prototype.active;
188
- /**
189
- * numeric?: boolean
190
- * Makes column follow the numeric data-table specs and sort icon.
191
- * Defaults to 'false'
192
- * @type {?}
193
- */
194
- TdDataTableColumnComponent.prototype.numeric;
195
- /**
196
- * if column sort order is present
197
- * @type {?}
198
- */
199
- TdDataTableColumnComponent.prototype.isColumnSortOrder;
200
- /**
201
- * sortChange?: function
202
- * Event emitted when the column headers are clicked. [sortable] needs to be enabled.
203
- * Emits an [ITdDataTableSortChangeEvent] implemented object.
204
- * @type {?}
205
- */
206
- TdDataTableColumnComponent.prototype.sortChange;
207
- /**
208
- * @type {?}
209
- * @private
210
- */
211
- TdDataTableColumnComponent.prototype._elementRef;
212
- /**
213
- * @type {?}
214
- * @private
215
- */
216
- TdDataTableColumnComponent.prototype._renderer;
217
- }
218
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS10YWJsZS1jb2x1bW4uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2RhdGEtdGFibGUvIiwic291cmNlcyI6WyJkYXRhLXRhYmxlLWNvbHVtbi9kYXRhLXRhYmxlLWNvbHVtbi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUNULEtBQUssRUFDTCxNQUFNLEVBQ04sWUFBWSxFQUNaLFNBQVMsRUFDVCxVQUFVLEVBQ1YsV0FBVyxFQUNYLFlBQVksRUFDWixTQUFTLEdBQ1YsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0seUJBQXlCLENBQUM7Ozs7QUFFbEUsaURBR0M7OztJQUZDLDRDQUErQjs7SUFDL0IsMkNBQWE7O0FBU2YsTUFBTSxPQUFPLDBCQUEwQjs7Ozs7SUFzRnJDLFlBQW9CLFdBQXVCLEVBQVUsU0FBb0I7UUFBckQsZ0JBQVcsR0FBWCxXQUFXLENBQVk7UUFBVSxjQUFTLEdBQVQsU0FBUyxDQUFXO1FBckZqRSxlQUFVLEdBQTRCLHVCQUF1QixDQUFDLFNBQVMsQ0FBQzs7Ozs7UUFldkUsU0FBSSxHQUFXLEVBQUUsQ0FBQzs7Ozs7O1FBT2xCLGFBQVEsR0FBWSxLQUFLLENBQUM7Ozs7OztRQU8xQixXQUFNLEdBQVksS0FBSyxDQUFDOzs7Ozs7UUFPeEIsWUFBTyxHQUFZLEtBQUssQ0FBQzs7OztRQUt6QixzQkFBaUIsR0FBWSxLQUFLLENBQUM7Ozs7OztRQXNCbEMsZUFBVSxHQUE4QyxJQUFJLFlBQVksRUFBK0IsQ0FBQztRQXVCaEgsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLEVBQUUsc0JBQXNCLENBQUMsQ0FBQztJQUNsRixDQUFDOzs7O0lBbkZELElBQUksY0FBYztRQUNoQixJQUFJLElBQUksQ0FBQyxjQUFjLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxhQUFhLEVBQUU7WUFDNUQsT0FBTyxDQUFDLG1CQUFhLElBQUksQ0FBQyxjQUFjLENBQUMsYUFBYSxFQUFBLENBQUMsQ0FBQyxxQkFBcUIsRUFBRSxDQUFDLEtBQUssQ0FBQztTQUN2RjtRQUNELE9BQU8sR0FBRyxDQUFDO0lBQ2IsQ0FBQzs7Ozs7Ozs7SUF1Q0QsSUFDSSxTQUFTLENBQUMsS0FBcUI7O2NBQzNCLFNBQVMsR0FBVyxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDLENBQUMsS0FBSztRQUM3RCxJQUFJLFNBQVMsS0FBSyxNQUFNLElBQUksU0FBUyxLQUFLLEtBQUssRUFBRTtZQUMvQyxNQUFNLElBQUksS0FBSyxDQUFDLHdDQUF3QyxDQUFDLENBQUM7U0FDM0Q7UUFFRCxJQUFJLENBQUMsVUFBVSxHQUFHLFNBQVMsS0FBSyxLQUFLLENBQUMsQ0FBQyxDQUFDLHVCQUF1QixDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsdUJBQXVCLENBQUMsVUFBVSxDQUFDO0lBQ2pILENBQUM7Ozs7SUFTRCxJQUNJLGFBQWE7UUFDZixPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDdkIsQ0FBQzs7OztJQUVELElBQ0ksWUFBWTtRQUNkLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUN2QixDQUFDOzs7O0lBRUQsSUFDSSxVQUFVO1FBQ1osT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDO0lBQ3JCLENBQUM7Ozs7SUFFRCxJQUNJLFdBQVc7UUFDYixPQUFPLElBQUksQ0FBQyxPQUFPLENBQUM7SUFDdEIsQ0FBQzs7Ozs7SUFVRCxXQUFXO1FBQ1QsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2pCLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDO1NBQ25FO0lBQ0gsQ0FBQzs7OztJQUVELFdBQVc7UUFDVCxPQUFPLElBQUksQ0FBQyxVQUFVLEtBQUssdUJBQXVCLENBQUMsU0FBUyxDQUFDO0lBQy9ELENBQUM7Ozs7SUFFRCxZQUFZO1FBQ1YsT0FBTyxJQUFJLENBQUMsVUFBVSxLQUFLLHVCQUF1QixDQUFDLFVBQVUsQ0FBQztJQUNoRSxDQUFDOzs7WUFoSEYsU0FBUyxTQUFDOztnQkFFVCxRQUFRLEVBQUUsMEJBQTBCO2dCQUVwQyx3b0JBQWlEOzthQUNsRDs7OztZQWxCQyxVQUFVO1lBRFYsU0FBUzs7OzZCQXVCUixTQUFTLFNBQUMsZUFBZSxFQUFFLEVBQUUsSUFBSSxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFO21CQWE3RCxLQUFLO3VCQU9MLEtBQUs7cUJBT0wsS0FBSztzQkFPTCxLQUFLO2dDQUtMLEtBQUs7d0JBT0wsS0FBSyxTQUFDLFdBQVc7eUJBZWpCLE1BQU07NEJBRU4sV0FBVyxTQUFDLHFCQUFxQjsyQkFLakMsV0FBVyxTQUFDLG9CQUFvQjt5QkFLaEMsV0FBVyxTQUFDLGtCQUFrQjswQkFLOUIsV0FBVyxTQUFDLG1CQUFtQjswQkFZL0IsWUFBWSxTQUFDLE9BQU87Ozs7Ozs7SUE1RnJCLGdEQUFnRjs7SUFFaEYsb0RBQTJGOzs7Ozs7SUFhM0YsMENBQTJCOzs7Ozs7O0lBTzNCLDhDQUFtQzs7Ozs7OztJQU9uQyw0Q0FBaUM7Ozs7Ozs7SUFPakMsNkNBQWtDOzs7OztJQUtsQyx1REFBNEM7Ozs7Ozs7SUFzQjVDLGdEQUFrSDs7Ozs7SUFzQnRHLGlEQUErQjs7Ozs7SUFBRSwrQ0FBNEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb21wb25lbnQsXG4gIElucHV0LFxuICBPdXRwdXQsXG4gIEV2ZW50RW1pdHRlcixcbiAgUmVuZGVyZXIyLFxuICBFbGVtZW50UmVmLFxuICBIb3N0QmluZGluZyxcbiAgSG9zdExpc3RlbmVyLFxuICBWaWV3Q2hpbGQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBUZERhdGFUYWJsZVNvcnRpbmdPcmRlciB9IGZyb20gJy4uL2RhdGEtdGFibGUuY29tcG9uZW50JztcblxuZXhwb3J0IGludGVyZmFjZSBJVGREYXRhVGFibGVTb3J0Q2hhbmdlRXZlbnQge1xuICBvcmRlcjogVGREYXRhVGFibGVTb3J0aW5nT3JkZXI7XG4gIG5hbWU6IHN0cmluZztcbn1cblxuQENvbXBvbmVudCh7XG4gIC8qIHRzbGludDpkaXNhYmxlLW5leHQtbGluZSAqL1xuICBzZWxlY3RvcjogJ3RoW3RkLWRhdGEtdGFibGUtY29sdW1uXScsXG4gIHN0eWxlVXJsczogWycuL2RhdGEtdGFibGUtY29sdW1uLmNvbXBvbmVudC5zY3NzJ10sXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRhLXRhYmxlLWNvbHVtbi5jb21wb25lbnQuaHRtbCcsXG59KVxuZXhwb3J0IGNsYXNzIFRkRGF0YVRhYmxlQ29sdW1uQ29tcG9uZW50IHtcbiAgcHJpdmF0ZSBfc29ydE9yZGVyOiBUZERhdGFUYWJsZVNvcnRpbmdPcmRlciA9IFRkRGF0YVRhYmxlU29ydGluZ09yZGVyLkFzY2VuZGluZztcblxuICBAVmlld0NoaWxkKCdjb2x1bW5Db250ZW50JywgeyByZWFkOiBFbGVtZW50UmVmLCBzdGF0aWM6IHRydWUgfSkgX2NvbHVtbkNvbnRlbnQ6IEVsZW1lbnRSZWY7XG5cbiAgZ2V0IHByb2plY3RlZFdpZHRoKCk6IG51bWJlciB7XG4gICAgaWYgKHRoaXMuX2NvbHVtbkNvbnRlbnQgJiYgdGhpcy5fY29sdW1uQ29udGVudC5uYXRpdmVFbGVtZW50KSB7XG4gICAgICByZXR1cm4gKDxIVE1MRWxlbWVudD50aGlzLl9jb2x1bW5Db250ZW50Lm5hdGl2ZUVsZW1lbnQpLmdldEJvdW5kaW5nQ2xpZW50UmVjdCgpLndpZHRoO1xuICAgIH1cbiAgICByZXR1cm4gMTAwO1xuICB9XG5cbiAgLyoqXG4gICAqIG5hbWU/OiBzdHJpbmdcbiAgICogU2V0cyB1bmlxdWUgY29sdW1uIFtuYW1lXSBmb3IgW3NvcnRhYmxlXSBldmVudHMuXG4gICAqL1xuICBASW5wdXQoKSBuYW1lOiBzdHJpbmcgPSAnJztcblxuICAvKipcbiAgICogc29ydGFibGU/OiBib29sZWFuXG4gICAqIEVuYWJsZXMgc29ydGluZyBldmVudHMsIHNvcnQgaWNvbnMgYW5kIGFjdGl2ZSBjb2x1bW4gc3RhdGVzLlxuICAgKiBEZWZhdWx0cyB0byAnZmFsc2UnXG4gICAqL1xuICBASW5wdXQoKSBzb3J0YWJsZTogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8qKlxuICAgKiBhY3RpdmU/OiBib29sZWFuXG4gICAqIFNldHMgY29sdW1uIHRvIGFjdGl2ZSBzdGF0ZSB3aGVuICd0cnVlJy5cbiAgICogRGVmYXVsdHMgdG8gJ2ZhbHNlJ1xuICAgKi9cbiAgQElucHV0KCkgYWN0aXZlOiBib29sZWFuID0gZmFsc2U7XG5cbiAgLyoqXG4gICAqIG51bWVyaWM/OiBib29sZWFuXG4gICAqIE1ha2VzIGNvbHVtbiBmb2xsb3cgdGhlIG51bWVyaWMgZGF0YS10YWJsZSBzcGVjcyBhbmQgc29ydCBpY29uLlxuICAgKiBEZWZhdWx0cyB0byAnZmFsc2UnXG4gICAqL1xuICBASW5wdXQoKSBudW1lcmljOiBib29sZWFuID0gZmFsc2U7XG5cbiAgLyoqXG4gICAqIGlmIGNvbHVtbiBzb3J0IG9yZGVyIGlzIHByZXNlbnRcbiAgICovXG4gIEBJbnB1dCgpIGlzQ29sdW1uU29ydE9yZGVyOiBib29sZWFuID0gZmFsc2U7XG5cbiAgLyoqXG4gICAqIHNvcnRPcmRlcj86IFsnQVNDJyB8ICdERVNDJ10gb3IgVGREYXRhVGFibGVTb3J0aW5nT3JkZXJcbiAgICogU2V0cyB0aGUgc29ydCBvcmRlciBvZiBjb2x1bW4uXG4gICAqIERlZmF1bHRzIHRvICdBU0MnIG9yIFRkRGF0YVRhYmxlU29ydGluZ09yZGVyLkFzY2VuZGluZ1xuICAgKi9cbiAgQElucHV0KCdzb3J0T3JkZXInKVxuICBzZXQgc29ydE9yZGVyKG9yZGVyOiAnQVNDJyB8ICdERVNDJykge1xuICAgIGNvbnN0IHNvcnRPcmRlcjogc3RyaW5nID0gb3JkZXIgPyBvcmRlci50b1VwcGVyQ2FzZSgpIDogJ0FTQyc7XG4gICAgaWYgKHNvcnRPcmRlciAhPT0gJ0RFU0MnICYmIHNvcnRPcmRlciAhPT0gJ0FTQycpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcignW3NvcnRPcmRlcl0gbXVzdCBiZSBlbXB0eSwgQVNDIG9yIERFU0MnKTtcbiAgICB9XG5cbiAgICB0aGlzLl9zb3J0T3JkZXIgPSBzb3J0T3JkZXIgPT09ICdBU0MnID8gVGREYXRhVGFibGVTb3J0aW5nT3JkZXIuQXNjZW5kaW5nIDogVGREYXRhVGFibGVTb3J0aW5nT3JkZXIuRGVzY2VuZGluZztcbiAgfVxuXG4gIC8qKlxuICAgKiBzb3J0Q2hhbmdlPzogZnVuY3Rpb25cbiAgICogRXZlbnQgZW1pdHRlZCB3aGVuIHRoZSBjb2x1bW4gaGVhZGVycyBhcmUgY2xpY2tlZC4gW3NvcnRhYmxlXSBuZWVkcyB0byBiZSBlbmFibGVkLlxuICAgKiBFbWl0cyBhbiBbSVRkRGF0YVRhYmxlU29ydENoYW5nZUV2ZW50XSBpbXBsZW1lbnRlZCBvYmplY3QuXG4gICAqL1xuICBAT3V0cHV0KCkgc29ydENoYW5nZTogRXZlbnRFbWl0dGVyPElUZERhdGFUYWJsZVNvcnRDaGFuZ2VFdmVudD4gPSBuZXcgRXZlbnRFbWl0dGVyPElUZERhdGFUYWJsZVNvcnRDaGFuZ2VFdmVudD4oKTtcblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzLm1hdC1jbGlja2FibGUnKVxuICBnZXQgYmluZENsaWNrYWJsZSgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5zb3J0YWJsZTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MubWF0LXNvcnRhYmxlJylcbiAgZ2V0IGJpbmdTb3J0YWJsZSgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5zb3J0YWJsZTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MubWF0LWFjdGl2ZScpXG4gIGdldCBiaW5kQWN0aXZlKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLmFjdGl2ZTtcbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MubWF0LW51bWVyaWMnKVxuICBnZXQgYmluZE51bWVyaWMoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMubnVtZXJpYztcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYsIHByaXZhdGUgX3JlbmRlcmVyOiBSZW5kZXJlcjIpIHtcbiAgICB0aGlzLl9yZW5kZXJlci5hZGRDbGFzcyh0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQsICd0ZC1kYXRhLXRhYmxlLWNvbHVtbicpO1xuICB9XG5cbiAgLyoqXG4gICAqIExpc3RlbmluZyB0byBjbGljayBldmVudCBvbiBob3N0IHRvIHRocm93IGEgc29ydCBldmVudFxuICAgKi9cbiAgQEhvc3RMaXN0ZW5lcignY2xpY2snKVxuICBoYW5kbGVDbGljaygpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5zb3J0YWJsZSkge1xuICAgICAgdGhpcy5zb3J0Q2hhbmdlLmVtaXQoeyBuYW1lOiB0aGlzLm5hbWUsIG9yZGVyOiB0aGlzLl9zb3J0T3JkZXIgfSk7XG4gICAgfVxuICB9XG5cbiAgaXNBc2NlbmRpbmcoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX3NvcnRPcmRlciA9PT0gVGREYXRhVGFibGVTb3J0aW5nT3JkZXIuQXNjZW5kaW5nO1xuICB9XG5cbiAgaXNEZXNjZW5kaW5nKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLl9zb3J0T3JkZXIgPT09IFRkRGF0YVRhYmxlU29ydGluZ09yZGVyLkRlc2NlbmRpbmc7XG4gIH1cbn1cbiJdfQ==
@@ -1,132 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: data-table-row/data-table-row.component.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Component, Input, Renderer2, ElementRef, HostListener, } from '@angular/core';
7
- export class TdDataTableColumnRowComponent {
8
- /**
9
- * @param {?} _elementRef
10
- * @param {?} _renderer
11
- */
12
- constructor(_elementRef, _renderer) {
13
- this._elementRef = _elementRef;
14
- this._renderer = _renderer;
15
- this._renderer.addClass(this._elementRef.nativeElement, 'td-data-table-column-row');
16
- }
17
- }
18
- TdDataTableColumnRowComponent.decorators = [
19
- { type: Component, args: [{
20
- /* tslint:disable-next-line */
21
- selector: 'tr[td-data-table-column-row]',
22
- template: "<ng-content></ng-content>\n",
23
- styles: [":host{border-bottom-style:solid;border-bottom-width:1px}:host.td-data-table-row{height:48px}:host.td-data-table-column-row{height:56px}"]
24
- }] }
25
- ];
26
- /** @nocollapse */
27
- TdDataTableColumnRowComponent.ctorParameters = () => [
28
- { type: ElementRef },
29
- { type: Renderer2 }
30
- ];
31
- if (false) {
32
- /**
33
- * @type {?}
34
- * @protected
35
- */
36
- TdDataTableColumnRowComponent.prototype._elementRef;
37
- /**
38
- * @type {?}
39
- * @protected
40
- */
41
- TdDataTableColumnRowComponent.prototype._renderer;
42
- }
43
- export class TdDataTableRowComponent {
44
- /**
45
- * @param {?} _elementRef
46
- * @param {?} _renderer
47
- */
48
- constructor(_elementRef, _renderer) {
49
- this._elementRef = _elementRef;
50
- this._renderer = _renderer;
51
- this._selected = false;
52
- this._renderer.addClass(this._elementRef.nativeElement, 'td-data-table-row');
53
- }
54
- /**
55
- * @param {?} selected
56
- * @return {?}
57
- */
58
- set selected(selected) {
59
- if (selected) {
60
- this._renderer.addClass(this._elementRef.nativeElement, 'td-selected');
61
- }
62
- else {
63
- this._renderer.removeClass(this._elementRef.nativeElement, 'td-selected');
64
- }
65
- this._selected = selected;
66
- }
67
- /**
68
- * @return {?}
69
- */
70
- get selected() {
71
- return this._selected;
72
- }
73
- /**
74
- * @return {?}
75
- */
76
- get height() {
77
- /** @type {?} */
78
- let height = 48;
79
- if (this._elementRef.nativeElement) {
80
- height = ((/** @type {?} */ (this._elementRef.nativeElement))).getBoundingClientRect().height;
81
- }
82
- return height;
83
- }
84
- /**
85
- * Listening to click event to explicitly focus the row element.
86
- * @return {?}
87
- */
88
- clickListener() {
89
- this.focus();
90
- }
91
- /**
92
- * @return {?}
93
- */
94
- focus() {
95
- this._elementRef.nativeElement.focus();
96
- }
97
- }
98
- TdDataTableRowComponent.decorators = [
99
- { type: Component, args: [{
100
- /* tslint:disable-next-line */
101
- selector: 'tr[td-data-table-row]',
102
- template: "<ng-content></ng-content>\n",
103
- styles: [":host{border-bottom-style:solid;border-bottom-width:1px}:host.td-data-table-row{height:48px}:host.td-data-table-column-row{height:56px}"]
104
- }] }
105
- ];
106
- /** @nocollapse */
107
- TdDataTableRowComponent.ctorParameters = () => [
108
- { type: ElementRef },
109
- { type: Renderer2 }
110
- ];
111
- TdDataTableRowComponent.propDecorators = {
112
- selected: [{ type: Input, args: ['selected',] }],
113
- clickListener: [{ type: HostListener, args: ['click',] }]
114
- };
115
- if (false) {
116
- /**
117
- * @type {?}
118
- * @private
119
- */
120
- TdDataTableRowComponent.prototype._selected;
121
- /**
122
- * @type {?}
123
- * @private
124
- */
125
- TdDataTableRowComponent.prototype._elementRef;
126
- /**
127
- * @type {?}
128
- * @private
129
- */
130
- TdDataTableRowComponent.prototype._renderer;
131
- }
132
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS10YWJsZS1yb3cuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2RhdGEtdGFibGUvIiwic291cmNlcyI6WyJkYXRhLXRhYmxlLXJvdy9kYXRhLXRhYmxlLXJvdy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUNULEtBQUssRUFFTCxTQUFTLEVBQ1QsVUFBVSxFQUdWLFlBQVksR0FDYixNQUFNLGVBQWUsQ0FBQztBQVd2QixNQUFNLE9BQU8sNkJBQTZCOzs7OztJQUN4QyxZQUFzQixXQUF1QixFQUFZLFNBQW9CO1FBQXZELGdCQUFXLEdBQVgsV0FBVyxDQUFZO1FBQVksY0FBUyxHQUFULFNBQVMsQ0FBVztRQUMzRSxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLGFBQWEsRUFBRSwwQkFBMEIsQ0FBQyxDQUFDO0lBQ3RGLENBQUM7OztZQVRGLFNBQVMsU0FBQzs7Z0JBRVQsUUFBUSxFQUFFLDhCQUE4QjtnQkFFeEMsdUNBQThDOzthQUMvQzs7OztZQWRDLFVBQVU7WUFEVixTQUFTOzs7Ozs7O0lBaUJHLG9EQUFpQzs7Ozs7SUFBRSxrREFBOEI7O0FBVy9FLE1BQU0sT0FBTyx1QkFBdUI7Ozs7O0lBd0JsQyxZQUFvQixXQUF1QixFQUFVLFNBQW9CO1FBQXJELGdCQUFXLEdBQVgsV0FBVyxDQUFZO1FBQVUsY0FBUyxHQUFULFNBQVMsQ0FBVztRQXZCakUsY0FBUyxHQUFZLEtBQUssQ0FBQztRQXdCakMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLEVBQUUsbUJBQW1CLENBQUMsQ0FBQztJQUMvRSxDQUFDOzs7OztJQXZCRCxJQUNJLFFBQVEsQ0FBQyxRQUFpQjtRQUM1QixJQUFJLFFBQVEsRUFBRTtZQUNaLElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsYUFBYSxFQUFFLGFBQWEsQ0FBQyxDQUFDO1NBQ3hFO2FBQU07WUFDTCxJQUFJLENBQUMsU0FBUyxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLGFBQWEsRUFBRSxhQUFhLENBQUMsQ0FBQztTQUMzRTtRQUNELElBQUksQ0FBQyxTQUFTLEdBQUcsUUFBUSxDQUFDO0lBQzVCLENBQUM7Ozs7SUFDRCxJQUFJLFFBQVE7UUFDVixPQUFPLElBQUksQ0FBQyxTQUFTLENBQUM7SUFDeEIsQ0FBQzs7OztJQUVELElBQUksTUFBTTs7WUFDSixNQUFNLEdBQVcsRUFBRTtRQUN2QixJQUFJLElBQUksQ0FBQyxXQUFXLENBQUMsYUFBYSxFQUFFO1lBQ2xDLE1BQU0sR0FBRyxDQUFDLG1CQUFhLElBQUksQ0FBQyxXQUFXLENBQUMsYUFBYSxFQUFBLENBQUMsQ0FBQyxxQkFBcUIsRUFBRSxDQUFDLE1BQU0sQ0FBQztTQUN2RjtRQUNELE9BQU8sTUFBTSxDQUFDO0lBQ2hCLENBQUM7Ozs7O0lBVUQsYUFBYTtRQUNYLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNmLENBQUM7Ozs7SUFFRCxLQUFLO1FBQ0gsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDekMsQ0FBQzs7O1lBNUNGLFNBQVMsU0FBQzs7Z0JBRVQsUUFBUSxFQUFFLHVCQUF1QjtnQkFFakMsdUNBQThDOzthQUMvQzs7OztZQTFCQyxVQUFVO1lBRFYsU0FBUzs7O3VCQStCUixLQUFLLFNBQUMsVUFBVTs0QkE0QmhCLFlBQVksU0FBQyxPQUFPOzs7Ozs7O0lBOUJyQiw0Q0FBbUM7Ozs7O0lBdUJ2Qiw4Q0FBK0I7Ozs7O0lBQUUsNENBQTRCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ29tcG9uZW50LFxuICBJbnB1dCxcbiAgT3V0cHV0LFxuICBSZW5kZXJlcjIsXG4gIEVsZW1lbnRSZWYsXG4gIENvbnRlbnRDaGlsZHJlbixcbiAgUXVlcnlMaXN0LFxuICBIb3N0TGlzdGVuZXIsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBUZERhdGFUYWJsZUNlbGxDb21wb25lbnQgfSBmcm9tICcuLi9kYXRhLXRhYmxlLWNlbGwvZGF0YS10YWJsZS1jZWxsLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBUZERhdGFUYWJsZUNvbHVtbkNvbXBvbmVudCB9IGZyb20gJy4uL2RhdGEtdGFibGUtY29sdW1uL2RhdGEtdGFibGUtY29sdW1uLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICAvKiB0c2xpbnQ6ZGlzYWJsZS1uZXh0LWxpbmUgKi9cbiAgc2VsZWN0b3I6ICd0clt0ZC1kYXRhLXRhYmxlLWNvbHVtbi1yb3ddJyxcbiAgc3R5bGVVcmxzOiBbJy4vZGF0YS10YWJsZS1yb3cuY29tcG9uZW50LnNjc3MnXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2RhdGEtdGFibGUtcm93LmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgVGREYXRhVGFibGVDb2x1bW5Sb3dDb21wb25lbnQge1xuICBjb25zdHJ1Y3Rvcihwcm90ZWN0ZWQgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYsIHByb3RlY3RlZCBfcmVuZGVyZXI6IFJlbmRlcmVyMikge1xuICAgIHRoaXMuX3JlbmRlcmVyLmFkZENsYXNzKHRoaXMuX2VsZW1lbnRSZWYubmF0aXZlRWxlbWVudCwgJ3RkLWRhdGEtdGFibGUtY29sdW1uLXJvdycpO1xuICB9XG59XG5cbkBDb21wb25lbnQoe1xuICAvKiB0c2xpbnQ6ZGlzYWJsZS1uZXh0LWxpbmUgKi9cbiAgc2VsZWN0b3I6ICd0clt0ZC1kYXRhLXRhYmxlLXJvd10nLFxuICBzdHlsZVVybHM6IFsnLi9kYXRhLXRhYmxlLXJvdy5jb21wb25lbnQuc2NzcyddLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0YS10YWJsZS1yb3cuY29tcG9uZW50Lmh0bWwnLFxufSlcbmV4cG9ydCBjbGFzcyBUZERhdGFUYWJsZVJvd0NvbXBvbmVudCB7XG4gIHByaXZhdGUgX3NlbGVjdGVkOiBib29sZWFuID0gZmFsc2U7XG5cbiAgQElucHV0KCdzZWxlY3RlZCcpXG4gIHNldCBzZWxlY3RlZChzZWxlY3RlZDogYm9vbGVhbikge1xuICAgIGlmIChzZWxlY3RlZCkge1xuICAgICAgdGhpcy5fcmVuZGVyZXIuYWRkQ2xhc3ModGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LCAndGQtc2VsZWN0ZWQnKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5fcmVuZGVyZXIucmVtb3ZlQ2xhc3ModGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LCAndGQtc2VsZWN0ZWQnKTtcbiAgICB9XG4gICAgdGhpcy5fc2VsZWN0ZWQgPSBzZWxlY3RlZDtcbiAgfVxuICBnZXQgc2VsZWN0ZWQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX3NlbGVjdGVkO1xuICB9XG5cbiAgZ2V0IGhlaWdodCgpOiBudW1iZXIge1xuICAgIGxldCBoZWlnaHQ6IG51bWJlciA9IDQ4O1xuICAgIGlmICh0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQpIHtcbiAgICAgIGhlaWdodCA9ICg8SFRNTEVsZW1lbnQ+dGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50KS5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKS5oZWlnaHQ7XG4gICAgfVxuICAgIHJldHVybiBoZWlnaHQ7XG4gIH1cblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9lbGVtZW50UmVmOiBFbGVtZW50UmVmLCBwcml2YXRlIF9yZW5kZXJlcjogUmVuZGVyZXIyKSB7XG4gICAgdGhpcy5fcmVuZGVyZXIuYWRkQ2xhc3ModGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LCAndGQtZGF0YS10YWJsZS1yb3cnKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBMaXN0ZW5pbmcgdG8gY2xpY2sgZXZlbnQgdG8gZXhwbGljaXRseSBmb2N1cyB0aGUgcm93IGVsZW1lbnQuXG4gICAqL1xuICBASG9zdExpc3RlbmVyKCdjbGljaycpXG4gIGNsaWNrTGlzdGVuZXIoKTogdm9pZCB7XG4gICAgdGhpcy5mb2N1cygpO1xuICB9XG5cbiAgZm9jdXMoKTogdm9pZCB7XG4gICAgdGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmZvY3VzKCk7XG4gIH1cbn1cbiJdfQ==
@@ -1,43 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: data-table-table/data-table-table.component.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Component, Renderer2, ElementRef } from '@angular/core';
7
- export class TdDataTableTableComponent {
8
- /**
9
- * @param {?} _elementRef
10
- * @param {?} _renderer
11
- */
12
- constructor(_elementRef, _renderer) {
13
- this._elementRef = _elementRef;
14
- this._renderer = _renderer;
15
- this._renderer.addClass(this._elementRef.nativeElement, 'td-data-table');
16
- }
17
- }
18
- TdDataTableTableComponent.decorators = [
19
- { type: Component, args: [{
20
- /* tslint:disable-next-line */
21
- selector: 'table[td-data-table]',
22
- template: "<ng-content></ng-content>\n",
23
- styles: [":host{border-collapse:collapse;border-spacing:0;overflow:hidden;position:relative;width:100%}"]
24
- }] }
25
- ];
26
- /** @nocollapse */
27
- TdDataTableTableComponent.ctorParameters = () => [
28
- { type: ElementRef },
29
- { type: Renderer2 }
30
- ];
31
- if (false) {
32
- /**
33
- * @type {?}
34
- * @private
35
- */
36
- TdDataTableTableComponent.prototype._elementRef;
37
- /**
38
- * @type {?}
39
- * @private
40
- */
41
- TdDataTableTableComponent.prototype._renderer;
42
- }
43
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS10YWJsZS10YWJsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vc3JjL3BsYXRmb3JtL2NvcmUvZGF0YS10YWJsZS8iLCJzb3VyY2VzIjpbImRhdGEtdGFibGUtdGFibGUvZGF0YS10YWJsZS10YWJsZS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFRakUsTUFBTSxPQUFPLHlCQUF5Qjs7Ozs7SUFDcEMsWUFBb0IsV0FBdUIsRUFBVSxTQUFvQjtRQUFyRCxnQkFBVyxHQUFYLFdBQVcsQ0FBWTtRQUFVLGNBQVMsR0FBVCxTQUFTLENBQVc7UUFDdkUsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLEVBQUUsZUFBZSxDQUFDLENBQUM7SUFDM0UsQ0FBQzs7O1lBVEYsU0FBUyxTQUFDOztnQkFFVCxRQUFRLEVBQUUsc0JBQXNCO2dCQUVoQyx1Q0FBZ0Q7O2FBQ2pEOzs7O1lBUDhCLFVBQVU7WUFBckIsU0FBUzs7Ozs7OztJQVNmLGdEQUErQjs7Ozs7SUFBRSw4Q0FBNEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFJlbmRlcmVyMiwgRWxlbWVudFJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgLyogdHNsaW50OmRpc2FibGUtbmV4dC1saW5lICovXG4gIHNlbGVjdG9yOiAndGFibGVbdGQtZGF0YS10YWJsZV0nLFxuICBzdHlsZVVybHM6IFsnLi9kYXRhLXRhYmxlLXRhYmxlLmNvbXBvbmVudC5zY3NzJ10sXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRhLXRhYmxlLXRhYmxlLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgVGREYXRhVGFibGVUYWJsZUNvbXBvbmVudCB7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYsIHByaXZhdGUgX3JlbmRlcmVyOiBSZW5kZXJlcjIpIHtcbiAgICB0aGlzLl9yZW5kZXJlci5hZGRDbGFzcyh0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQsICd0ZC1kYXRhLXRhYmxlJyk7XG4gIH1cbn1cbiJdfQ==