@covalent/core 0.0.0-COVALENT

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 (350) hide show
  1. package/README.md +42 -0
  2. package/breadcrumbs/README.md +93 -0
  3. package/breadcrumbs/_breadcrumbs-theme.scss +10 -0
  4. package/breadcrumbs/breadcrumb/breadcrumb.component.d.ts +37 -0
  5. package/breadcrumbs/breadcrumbs.component.d.ts +37 -0
  6. package/breadcrumbs/breadcrumbs.module.d.ts +10 -0
  7. package/breadcrumbs/covalent-core-breadcrumbs.d.ts +5 -0
  8. package/breadcrumbs/package.json +10 -0
  9. package/breadcrumbs/public_api.d.ts +3 -0
  10. package/common/README.md +3 -0
  11. package/common/_common-theme.scss +35 -0
  12. package/common/animations/bounce/bounce.animation.d.ts +14 -0
  13. package/common/animations/collapse/collapse.animation.d.ts +20 -0
  14. package/common/animations/common/interfaces.d.ts +5 -0
  15. package/common/animations/fade/fadeInOut.animation.d.ts +20 -0
  16. package/common/animations/flash/flash.animation.d.ts +14 -0
  17. package/common/animations/headshake/headshake.animation.d.ts +14 -0
  18. package/common/animations/jello/jello.animation.d.ts +14 -0
  19. package/common/animations/pulse/pulse.animation.d.ts +14 -0
  20. package/common/animations/rotate/rotate.animation.d.ts +21 -0
  21. package/common/behaviors/control-value-accesor.mixin.d.ts +16 -0
  22. package/common/behaviors/disable-ripple.mixin.d.ts +9 -0
  23. package/common/behaviors/disabled.mixin.d.ts +9 -0
  24. package/common/common.module.d.ts +17 -0
  25. package/common/covalent-core-common.d.ts +5 -0
  26. package/common/directives/fullscreen/fullscreen.directive.d.ts +25 -0
  27. package/common/forms/auto-trim/auto-trim.directive.d.ts +12 -0
  28. package/common/forms/validators/validators.d.ts +8 -0
  29. package/common/functions/clipboard.d.ts +9 -0
  30. package/common/functions/convert.d.ts +31 -0
  31. package/common/functions/download.d.ts +48 -0
  32. package/common/functions/file.d.ts +7 -0
  33. package/common/package.json +10 -0
  34. package/common/pipes/bytes/bytes.pipe.d.ts +7 -0
  35. package/common/pipes/decimal-bytes/decimal-bytes.pipe.d.ts +7 -0
  36. package/common/pipes/digits/digits.pipe.d.ts +10 -0
  37. package/common/pipes/time-ago/time-ago.pipe.d.ts +7 -0
  38. package/common/pipes/time-difference/time-difference.pipe.d.ts +7 -0
  39. package/common/pipes/time-until/time-until.pipe.d.ts +7 -0
  40. package/common/pipes/truncate/truncate.pipe.d.ts +7 -0
  41. package/common/public_api.d.ts +35 -0
  42. package/common/services/icon.service.d.ts +8 -0
  43. package/common/services/router-path.service.d.ts +10 -0
  44. package/common/styles/_elevation.scss +285 -0
  45. package/common/styles/_layout.scss +605 -0
  46. package/common/styles/_palette-dark.scss +326 -0
  47. package/common/styles/_palette-light.scss +637 -0
  48. package/common/styles/_rtl.scss +31 -0
  49. package/common/styles/_styles.scss +10 -0
  50. package/common/styles/_theme-functions.scss +25 -0
  51. package/common/styles/_typography-functions.scss +43 -0
  52. package/common/styles/_variables.scss +99 -0
  53. package/common/styles/colors/_colors-dark.scss +1399 -0
  54. package/common/styles/colors/_colors-light.scss +3235 -0
  55. package/common/styles/colors/_colors.scss +7 -0
  56. package/common/styles/core/_button.scss +90 -0
  57. package/common/styles/core/_card.scss +189 -0
  58. package/common/styles/core/_content.scss +43 -0
  59. package/common/styles/core/_core.scss +23 -0
  60. package/common/styles/core/_divider.scss +16 -0
  61. package/common/styles/core/_icons.scss +22 -0
  62. package/common/styles/core/_list.scss +8 -0
  63. package/common/styles/core/_sidenav.scss +22 -0
  64. package/common/styles/core/_structure.scss +127 -0
  65. package/common/styles/core/_toolbar.scss +53 -0
  66. package/common/styles/core/_whiteframe.scss +138 -0
  67. package/common/styles/font/MaterialIcons-Regular-v48.woff2 +0 -0
  68. package/common/styles/font/README.md +11 -0
  69. package/common/styles/font/_font.scss +99 -0
  70. package/common/styles/utilities/_general.scss +65 -0
  71. package/common/styles/utilities/_pad.scss +36 -0
  72. package/common/styles/utilities/_pull.scss +36 -0
  73. package/common/styles/utilities/_push.scss +36 -0
  74. package/common/styles/utilities/_size.scss +24 -0
  75. package/common/styles/utilities/_text.scss +105 -0
  76. package/common/styles/utilities/_utilities.scss +15 -0
  77. package/covalent-core.d.ts +5 -0
  78. package/dialogs/README.md +223 -0
  79. package/dialogs/_dialog-theme.scss +39 -0
  80. package/dialogs/alert-dialog/alert-dialog.component.d.ts +12 -0
  81. package/dialogs/confirm-dialog/confirm-dialog.component.d.ts +15 -0
  82. package/dialogs/covalent-core-dialogs.d.ts +5 -0
  83. package/dialogs/dialog.component.d.ts +22 -0
  84. package/dialogs/dialogs.module.d.ts +19 -0
  85. package/dialogs/package.json +10 -0
  86. package/dialogs/prompt-dialog/prompt-dialog.component.d.ts +23 -0
  87. package/dialogs/public_api.d.ts +8 -0
  88. package/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.d.ts +21 -0
  89. package/dialogs/services/dialog.service.d.ts +105 -0
  90. package/dialogs/src/README.md +223 -0
  91. package/dialogs/window-dialog/window-dialog.component.d.ts +16 -0
  92. package/dynamic-menu/README.md +152 -0
  93. package/dynamic-menu/_dynamic-menu-theme.scss +0 -0
  94. package/dynamic-menu/covalent-core-dynamic-menu.d.ts +5 -0
  95. package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.d.ts +12 -0
  96. package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.d.ts +10 -0
  97. package/dynamic-menu/dynamic-menu.component.d.ts +11 -0
  98. package/dynamic-menu/dynamic-menu.menu.d.ts +22 -0
  99. package/dynamic-menu/dynamic-menu.module.d.ts +15 -0
  100. package/dynamic-menu/package.json +10 -0
  101. package/dynamic-menu/public_api.d.ts +5 -0
  102. package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +92 -0
  103. package/esm2020/breadcrumbs/breadcrumbs.component.mjs +134 -0
  104. package/esm2020/breadcrumbs/breadcrumbs.module.mjs +20 -0
  105. package/esm2020/breadcrumbs/covalent-core-breadcrumbs.mjs +5 -0
  106. package/esm2020/breadcrumbs/public_api.mjs +4 -0
  107. package/esm2020/common/animations/bounce/bounce.animation.mjs +70 -0
  108. package/esm2020/common/animations/collapse/collapse.animation.mjs +51 -0
  109. package/esm2020/common/animations/common/interfaces.mjs +2 -0
  110. package/esm2020/common/animations/fade/fadeInOut.animation.mjs +37 -0
  111. package/esm2020/common/animations/flash/flash.animation.mjs +34 -0
  112. package/esm2020/common/animations/headshake/headshake.animation.mjs +47 -0
  113. package/esm2020/common/animations/jello/jello.animation.mjs +59 -0
  114. package/esm2020/common/animations/pulse/pulse.animation.mjs +32 -0
  115. package/esm2020/common/animations/rotate/rotate.animation.mjs +30 -0
  116. package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +41 -0
  117. package/esm2020/common/behaviors/disable-ripple.mixin.mjs +24 -0
  118. package/esm2020/common/behaviors/disabled.mixin.mjs +24 -0
  119. package/esm2020/common/common.module.mjs +63 -0
  120. package/esm2020/common/covalent-core-common.mjs +5 -0
  121. package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +85 -0
  122. package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +36 -0
  123. package/esm2020/common/forms/validators/validators.mjs +29 -0
  124. package/esm2020/common/functions/clipboard.mjs +23 -0
  125. package/esm2020/common/functions/convert.mjs +84 -0
  126. package/esm2020/common/functions/download.mjs +75 -0
  127. package/esm2020/common/functions/file.mjs +16 -0
  128. package/esm2020/common/pipes/bytes/bytes.pipe.mjs +42 -0
  129. package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +42 -0
  130. package/esm2020/common/pipes/digits/digits.pipe.mjs +39 -0
  131. package/esm2020/common/pipes/time-ago/time-ago.pipe.mjs +72 -0
  132. package/esm2020/common/pipes/time-difference/time-difference.pipe.mjs +51 -0
  133. package/esm2020/common/pipes/time-until/time-until.pipe.mjs +72 -0
  134. package/esm2020/common/pipes/truncate/truncate.pipe.mjs +27 -0
  135. package/esm2020/common/public_api.mjs +39 -0
  136. package/esm2020/common/services/icon.service.mjs +1089 -0
  137. package/esm2020/common/services/router-path.service.mjs +29 -0
  138. package/esm2020/covalent-core.mjs +5 -0
  139. package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +23 -0
  140. package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +28 -0
  141. package/esm2020/dialogs/covalent-core-dialogs.mjs +5 -0
  142. package/esm2020/dialogs/dialog.component.mjs +56 -0
  143. package/esm2020/dialogs/dialogs.module.mjs +89 -0
  144. package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +46 -0
  145. package/esm2020/dialogs/public_api.mjs +9 -0
  146. package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +216 -0
  147. package/esm2020/dialogs/services/dialog.service.mjs +171 -0
  148. package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +38 -0
  149. package/esm2020/dynamic-menu/covalent-core-dynamic-menu.mjs +5 -0
  150. package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +30 -0
  151. package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +24 -0
  152. package/esm2020/dynamic-menu/dynamic-menu.component.mjs +28 -0
  153. package/esm2020/dynamic-menu/dynamic-menu.menu.mjs +2 -0
  154. package/esm2020/dynamic-menu/dynamic-menu.module.mjs +57 -0
  155. package/esm2020/dynamic-menu/public_api.mjs +6 -0
  156. package/esm2020/file/covalent-core-file.mjs +5 -0
  157. package/esm2020/file/directives/file-drop.directive.mjs +147 -0
  158. package/esm2020/file/directives/file-select.directive.mjs +77 -0
  159. package/esm2020/file/file-input/file-input.component.mjs +110 -0
  160. package/esm2020/file/file-upload/file-upload.component.mjs +174 -0
  161. package/esm2020/file/file.module.mjs +58 -0
  162. package/esm2020/file/public_api.mjs +7 -0
  163. package/esm2020/file/services/file.service.mjs +64 -0
  164. package/esm2020/json-formatter/collapse.animation.mjs +51 -0
  165. package/esm2020/json-formatter/covalent-core-json-formatter.mjs +5 -0
  166. package/esm2020/json-formatter/json-formatter.component.mjs +217 -0
  167. package/esm2020/json-formatter/json-formatter.module.mjs +20 -0
  168. package/esm2020/json-formatter/public_api.mjs +3 -0
  169. package/esm2020/layout/covalent-core-layout.mjs +5 -0
  170. package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +40 -0
  171. package/esm2020/layout/layout-footer/layout-footer.component.mjs +33 -0
  172. package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +93 -0
  173. package/esm2020/layout/layout-manage-list/layout-manage-list.directives.mjs +84 -0
  174. package/esm2020/layout/layout-nav/layout-nav.component.mjs +50 -0
  175. package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +128 -0
  176. package/esm2020/layout/layout-nav-list/layout-nav-list.directives.mjs +84 -0
  177. package/esm2020/layout/layout-toggle.class.mjs +92 -0
  178. package/esm2020/layout/layout.component.mjs +92 -0
  179. package/esm2020/layout/layout.directives.mjs +85 -0
  180. package/esm2020/layout/layout.module.mjs +117 -0
  181. package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +161 -0
  182. package/esm2020/layout/public_api.mjs +13 -0
  183. package/esm2020/menu/covalent-core-menu.mjs +5 -0
  184. package/esm2020/menu/menu.component.mjs +12 -0
  185. package/esm2020/menu/menu.module.mjs +21 -0
  186. package/esm2020/menu/public_api.mjs +3 -0
  187. package/esm2020/message/collapse.animation.mjs +51 -0
  188. package/esm2020/message/covalent-core-message.mjs +5 -0
  189. package/esm2020/message/message.component.mjs +203 -0
  190. package/esm2020/message/message.module.mjs +25 -0
  191. package/esm2020/message/public_api.mjs +3 -0
  192. package/esm2020/public_api.mjs +2 -0
  193. package/esm2020/search/covalent-core-search.mjs +5 -0
  194. package/esm2020/search/public_api.mjs +4 -0
  195. package/esm2020/search/search-box/search-box.component.mjs +194 -0
  196. package/esm2020/search/search-input/search-input.component.mjs +203 -0
  197. package/esm2020/search/search.module.mjs +39 -0
  198. package/esm2020/side-sheet/covalent-core-side-sheet.mjs +5 -0
  199. package/esm2020/side-sheet/public_api.mjs +6 -0
  200. package/esm2020/side-sheet/side-sheet-container.mjs +274 -0
  201. package/esm2020/side-sheet/side-sheet-ref.mjs +21 -0
  202. package/esm2020/side-sheet/side-sheet.animation.mjs +12 -0
  203. package/esm2020/side-sheet/side-sheet.config.mjs +4 -0
  204. package/esm2020/side-sheet/side-sheet.content-directives.mjs +201 -0
  205. package/esm2020/side-sheet/side-sheet.mjs +221 -0
  206. package/esm2020/side-sheet/side-sheet.module.mjs +45 -0
  207. package/esm2020/user-profile/covalent-core-user-profile.mjs +5 -0
  208. package/esm2020/user-profile/public_api.mjs +4 -0
  209. package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +24 -0
  210. package/esm2020/user-profile/user-profile.component.mjs +19 -0
  211. package/esm2020/user-profile/user-profile.module.mjs +44 -0
  212. package/fesm2015/covalent-core-breadcrumbs.mjs +246 -0
  213. package/fesm2015/covalent-core-breadcrumbs.mjs.map +1 -0
  214. package/fesm2015/covalent-core-common.mjs +2281 -0
  215. package/fesm2015/covalent-core-common.mjs.map +1 -0
  216. package/fesm2015/covalent-core-dialogs.mjs +639 -0
  217. package/fesm2015/covalent-core-dialogs.mjs.map +1 -0
  218. package/fesm2015/covalent-core-dynamic-menu.mjs +128 -0
  219. package/fesm2015/covalent-core-dynamic-menu.mjs.map +1 -0
  220. package/fesm2015/covalent-core-file.mjs +613 -0
  221. package/fesm2015/covalent-core-file.mjs.map +1 -0
  222. package/fesm2015/covalent-core-json-formatter.mjs +298 -0
  223. package/fesm2015/covalent-core-json-formatter.mjs.map +1 -0
  224. package/fesm2015/covalent-core-layout.mjs +1024 -0
  225. package/fesm2015/covalent-core-layout.mjs.map +1 -0
  226. package/fesm2015/covalent-core-menu.mjs +37 -0
  227. package/fesm2015/covalent-core-menu.mjs.map +1 -0
  228. package/fesm2015/covalent-core-message.mjs +284 -0
  229. package/fesm2015/covalent-core-message.mjs.map +1 -0
  230. package/fesm2015/covalent-core-search.mjs +428 -0
  231. package/fesm2015/covalent-core-search.mjs.map +1 -0
  232. package/fesm2015/covalent-core-side-sheet.mjs +762 -0
  233. package/fesm2015/covalent-core-side-sheet.mjs.map +1 -0
  234. package/fesm2015/covalent-core-user-profile.mjs +86 -0
  235. package/fesm2015/covalent-core-user-profile.mjs.map +1 -0
  236. package/fesm2015/covalent-core.mjs +4 -0
  237. package/fesm2015/covalent-core.mjs.map +1 -0
  238. package/fesm2020/covalent-core-breadcrumbs.mjs +246 -0
  239. package/fesm2020/covalent-core-breadcrumbs.mjs.map +1 -0
  240. package/fesm2020/covalent-core-common.mjs +2274 -0
  241. package/fesm2020/covalent-core-common.mjs.map +1 -0
  242. package/fesm2020/covalent-core-dialogs.mjs +634 -0
  243. package/fesm2020/covalent-core-dialogs.mjs.map +1 -0
  244. package/fesm2020/covalent-core-dynamic-menu.mjs +128 -0
  245. package/fesm2020/covalent-core-dynamic-menu.mjs.map +1 -0
  246. package/fesm2020/covalent-core-file.mjs +607 -0
  247. package/fesm2020/covalent-core-file.mjs.map +1 -0
  248. package/fesm2020/covalent-core-json-formatter.mjs +290 -0
  249. package/fesm2020/covalent-core-json-formatter.mjs.map +1 -0
  250. package/fesm2020/covalent-core-layout.mjs +1000 -0
  251. package/fesm2020/covalent-core-layout.mjs.map +1 -0
  252. package/fesm2020/covalent-core-menu.mjs +37 -0
  253. package/fesm2020/covalent-core-menu.mjs.map +1 -0
  254. package/fesm2020/covalent-core-message.mjs +282 -0
  255. package/fesm2020/covalent-core-message.mjs.map +1 -0
  256. package/fesm2020/covalent-core-search.mjs +425 -0
  257. package/fesm2020/covalent-core-search.mjs.map +1 -0
  258. package/fesm2020/covalent-core-side-sheet.mjs +757 -0
  259. package/fesm2020/covalent-core-side-sheet.mjs.map +1 -0
  260. package/fesm2020/covalent-core-user-profile.mjs +86 -0
  261. package/fesm2020/covalent-core-user-profile.mjs.map +1 -0
  262. package/fesm2020/covalent-core.mjs +4 -0
  263. package/fesm2020/covalent-core.mjs.map +1 -0
  264. package/file/_file-theme.scss +27 -0
  265. package/file/covalent-core-file.d.ts +5 -0
  266. package/file/directives/file-drop.directive.d.ts +61 -0
  267. package/file/directives/file-select.directive.d.ts +33 -0
  268. package/file/file-input/file-input.component.d.ts +61 -0
  269. package/file/file-upload/file-upload.component.d.ts +91 -0
  270. package/file/file.module.d.ts +15 -0
  271. package/file/package.json +10 -0
  272. package/file/public_api.d.ts +6 -0
  273. package/file/services/file.service.d.ts +34 -0
  274. package/file/src/file-input/README.md +147 -0
  275. package/file/src/file-upload/README.md +136 -0
  276. package/json-formatter/README.md +50 -0
  277. package/json-formatter/_json-formatter-theme.scss +72 -0
  278. package/json-formatter/collapse.animation.d.ts +24 -0
  279. package/json-formatter/covalent-core-json-formatter.d.ts +5 -0
  280. package/json-formatter/json-formatter.component.d.ts +78 -0
  281. package/json-formatter/json-formatter.module.d.ts +10 -0
  282. package/json-formatter/package.json +10 -0
  283. package/json-formatter/public_api.d.ts +2 -0
  284. package/layout/README.md +138 -0
  285. package/layout/_layout-theme.scss +128 -0
  286. package/layout/covalent-core-layout.d.ts +5 -0
  287. package/layout/layout-card-over/layout-card-over.component.d.ts +31 -0
  288. package/layout/layout-footer/layout-footer.component.d.ts +17 -0
  289. package/layout/layout-manage-list/layout-manage-list.component.d.ts +66 -0
  290. package/layout/layout-manage-list/layout-manage-list.directives.d.ts +25 -0
  291. package/layout/layout-nav/layout-nav.component.d.ts +45 -0
  292. package/layout/layout-nav-list/layout-nav-list.component.d.ts +104 -0
  293. package/layout/layout-nav-list/layout-nav-list.directives.d.ts +25 -0
  294. package/layout/layout-toggle.class.d.ts +40 -0
  295. package/layout/layout.component.d.ts +66 -0
  296. package/layout/layout.directives.d.ts +25 -0
  297. package/layout/layout.module.d.ts +25 -0
  298. package/layout/navigation-drawer/navigation-drawer.component.d.ts +120 -0
  299. package/layout/package.json +10 -0
  300. package/layout/public_api.d.ts +12 -0
  301. package/layout/src/layout-card-over/README.md +43 -0
  302. package/layout/src/layout-manage-list/README.md +80 -0
  303. package/layout/src/layout-nav/README.md +50 -0
  304. package/layout/src/layout-nav-list/README.md +105 -0
  305. package/menu/covalent-core-menu.d.ts +5 -0
  306. package/menu/menu.component.d.ts +5 -0
  307. package/menu/menu.module.d.ts +10 -0
  308. package/menu/package.json +10 -0
  309. package/menu/public_api.d.ts +2 -0
  310. package/message/README.md +67 -0
  311. package/message/_message-theme.scss +44 -0
  312. package/message/collapse.animation.d.ts +24 -0
  313. package/message/covalent-core-message.d.ts +5 -0
  314. package/message/message.component.d.ts +101 -0
  315. package/message/message.module.d.ts +9 -0
  316. package/message/package.json +10 -0
  317. package/message/public_api.d.ts +2 -0
  318. package/package.json +146 -0
  319. package/public_api.d.ts +1 -0
  320. package/search/README.md +132 -0
  321. package/search/covalent-core-search.d.ts +5 -0
  322. package/search/package.json +10 -0
  323. package/search/public_api.d.ts +3 -0
  324. package/search/search-box/search-box.component.d.ts +88 -0
  325. package/search/search-input/search-input.component.d.ts +82 -0
  326. package/search/search.module.d.ts +13 -0
  327. package/search/src/search-box/README.md +73 -0
  328. package/search/src/search-input/README.md +74 -0
  329. package/side-sheet/README.md +64 -0
  330. package/side-sheet/_side-sheet.theme.scss +8 -0
  331. package/side-sheet/covalent-core-side-sheet.d.ts +5 -0
  332. package/side-sheet/package.json +10 -0
  333. package/side-sheet/public_api.d.ts +5 -0
  334. package/side-sheet/side-sheet-container.d.ts +110 -0
  335. package/side-sheet/side-sheet-ref.d.ts +10 -0
  336. package/side-sheet/side-sheet.animation.d.ts +4 -0
  337. package/side-sheet/side-sheet.config.d.ts +3 -0
  338. package/side-sheet/side-sheet.content-directives.d.ts +67 -0
  339. package/side-sheet/side-sheet.d.ts +66 -0
  340. package/side-sheet/side-sheet.module.d.ts +11 -0
  341. package/theming/_all-theme.scss +24 -0
  342. package/typography/_all-typography.scss +39 -0
  343. package/user-profile/README.md +60 -0
  344. package/user-profile/_user-profile-theme.scss +27 -0
  345. package/user-profile/covalent-core-user-profile.d.ts +5 -0
  346. package/user-profile/package.json +10 -0
  347. package/user-profile/public_api.d.ts +3 -0
  348. package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +8 -0
  349. package/user-profile/user-profile.component.d.ts +7 -0
  350. package/user-profile/user-profile.module.d.ts +14 -0
@@ -0,0 +1,607 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Directive, Optional, Host, Input, Output, HostBinding, HostListener, forwardRef, Component, ChangeDetectionStrategy, ViewChild, ContentChild, Injectable, NgModule } from '@angular/core';
3
+ import * as i4 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+ import * as i1 from '@angular/forms';
6
+ import { NG_VALUE_ACCESSOR, FormsModule } from '@angular/forms';
7
+ import * as i6 from '@angular/cdk/portal';
8
+ import { TemplatePortalDirective, PortalModule } from '@angular/cdk/portal';
9
+ import * as i3 from '@angular/material/icon';
10
+ import { MatIconModule } from '@angular/material/icon';
11
+ import * as i1$1 from '@angular/material/button';
12
+ import { MatButtonModule } from '@angular/material/button';
13
+ import { coerceBooleanProperty } from '@angular/cdk/coercion';
14
+ import { mixinControlValueAccessor, mixinDisabled } from '@covalent/core/common';
15
+ import * as i1$2 from '@angular/common/http';
16
+ import { HttpRequest, HttpHeaders, HttpParams, HttpEventType } from '@angular/common/http';
17
+ import { Subject } from 'rxjs';
18
+ import { tap } from 'rxjs/operators';
19
+
20
+ class TdFileSelectDirective {
21
+ constructor(model) {
22
+ this.model = model;
23
+ this._multiple = false;
24
+ /**
25
+ * fileSelect?: function
26
+ * Event emitted when a file or files are selected in host [HTMLInputElement].
27
+ * Emits a [FileList | File] object.
28
+ * Alternative to not use [(ngModel)].
29
+ */
30
+ this.fileSelect = new EventEmitter();
31
+ }
32
+ /**
33
+ * multiple?: boolean
34
+ * Sets whether multiple files can be selected at once in host element, or just a single file.
35
+ * Can also be 'multiple' native attribute.
36
+ */
37
+ set multiple(multiple) {
38
+ this._multiple = coerceBooleanProperty(multiple);
39
+ }
40
+ /**
41
+ * Binds native 'multiple' attribute if [multiple] property is 'true'.
42
+ */
43
+ get multipleBinding() {
44
+ return this._multiple ? '' : undefined;
45
+ }
46
+ /**
47
+ * Listens to 'change' host event to get [HTMLInputElement] files.
48
+ * Emits the 'fileSelect' event with a [FileList] or [File] depending if 'multiple' attr exists in host.
49
+ * Uses [(ngModel)] if declared, instead of emitting 'fileSelect' event.
50
+ */
51
+ onChange(event) {
52
+ if (event.target instanceof HTMLInputElement) {
53
+ const fileInputEl = event.target;
54
+ const files = fileInputEl.files || new FileList();
55
+ if (files.length) {
56
+ const value = this._multiple
57
+ ? files.length > 1
58
+ ? files
59
+ : files[0]
60
+ : files[0];
61
+ this.model
62
+ ? this.model.update.emit(value)
63
+ : this.fileSelect.emit(value);
64
+ }
65
+ }
66
+ }
67
+ }
68
+ TdFileSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileSelectDirective, deps: [{ token: i1.NgModel, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
69
+ TdFileSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TdFileSelectDirective, selector: "[tdFileSelect]", inputs: { multiple: "multiple" }, outputs: { fileSelect: "fileSelect" }, host: { listeners: { "change": "onChange($event)" }, properties: { "attr.multiple": "this.multipleBinding" } }, ngImport: i0 });
70
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileSelectDirective, decorators: [{
71
+ type: Directive,
72
+ args: [{
73
+ selector: '[tdFileSelect]',
74
+ }]
75
+ }], ctorParameters: function () { return [{ type: i1.NgModel, decorators: [{
76
+ type: Optional
77
+ }, {
78
+ type: Host
79
+ }] }]; }, propDecorators: { multiple: [{
80
+ type: Input
81
+ }], fileSelect: [{
82
+ type: Output
83
+ }], multipleBinding: [{
84
+ type: HostBinding,
85
+ args: ['attr.multiple']
86
+ }], onChange: [{
87
+ type: HostListener,
88
+ args: ['change', ['$event']]
89
+ }] } });
90
+
91
+ class TdFileDropBase {
92
+ }
93
+ class TdFileDropDirective {
94
+ constructor(_renderer, _element) {
95
+ this._renderer = _renderer;
96
+ this._element = _element;
97
+ this._multiple = false;
98
+ this.disabled = false;
99
+ /**
100
+ * fileDrop?: function
101
+ * Event emitted when a file or files are dropped in host element after being validated.
102
+ * Emits a [FileList | File] object.
103
+ */
104
+ this.fileDrop = new EventEmitter();
105
+ }
106
+ /**
107
+ * multiple?: boolean
108
+ * Sets whether multiple files can be dropped at once in host element, or just a single file.
109
+ * Can also be 'multiple' native attribute.
110
+ */
111
+ set multiple(multiple) {
112
+ this._multiple = coerceBooleanProperty(multiple);
113
+ }
114
+ /**
115
+ * Binds native 'multiple' attribute if [multiple] property is 'true'.
116
+ */
117
+ get multipleBinding() {
118
+ return this._multiple ? '' : undefined;
119
+ }
120
+ /**
121
+ * Binds native 'disabled' attribute if [disabled] property is 'true'.
122
+ */
123
+ get disabledBinding() {
124
+ return this.disabled ? '' : undefined;
125
+ }
126
+ /**
127
+ * Listens to 'drop' host event to get validated transfer items.
128
+ * Emits the 'fileDrop' event with a [FileList] or [File] depending if 'multiple' attr exists in host.
129
+ * Stops event propagation and default action from browser for 'drop' event.
130
+ */
131
+ onDrop(event) {
132
+ if (!this.disabled) {
133
+ const transfer = event.dataTransfer ?? new DataTransfer();
134
+ const files = transfer.files;
135
+ if (files.length) {
136
+ const value = this._multiple
137
+ ? files.length > 1
138
+ ? files
139
+ : files[0]
140
+ : files[0];
141
+ this.fileDrop.emit(value);
142
+ }
143
+ }
144
+ this._renderer.removeClass(this._element.nativeElement, 'drop-zone');
145
+ this._stopEvent(event);
146
+ }
147
+ /**
148
+ * Listens to 'dragover' host event to validate transfer items.
149
+ * Checks if 'multiple' attr exists in host to allow multiple file drops.
150
+ * Stops event propagation and default action from browser for 'dragover' event.
151
+ */
152
+ onDragOver(event) {
153
+ const transfer = event.dataTransfer || new DataTransfer();
154
+ transfer.dropEffect = this._typeCheck(transfer.types);
155
+ if (this.disabled ||
156
+ (!this._multiple &&
157
+ ((transfer.items && transfer.items.length > 1) ||
158
+ transfer.mozItemCount > 1))) {
159
+ transfer.dropEffect = 'none';
160
+ }
161
+ else {
162
+ transfer.dropEffect = 'copy';
163
+ }
164
+ this._stopEvent(event);
165
+ }
166
+ /**
167
+ * Listens to 'dragenter' host event to add animation class 'drop-zone' which can be overriden in host.
168
+ * Stops event propagation and default action from browser for 'dragenter' event.
169
+ */
170
+ onDragEnter(event) {
171
+ if (!this.disabled) {
172
+ this._renderer.addClass(this._element.nativeElement, 'drop-zone');
173
+ }
174
+ this._stopEvent(event);
175
+ }
176
+ /**
177
+ * Listens to 'dragleave' host event to remove animation class 'drop-zone'.
178
+ * Stops event propagation and default action from browser for 'dragleave' event.
179
+ */
180
+ onDragLeave(event) {
181
+ this._renderer.removeClass(this._element.nativeElement, 'drop-zone');
182
+ this._stopEvent(event);
183
+ }
184
+ /**
185
+ * Validates if the transfer item types are 'Files'.
186
+ */
187
+ _typeCheck(types) {
188
+ let dropEffect = 'none';
189
+ if (types &&
190
+ ((types.contains && types.contains('Files')) ||
191
+ (types.indexOf && types.indexOf('Files') !== -1))) {
192
+ dropEffect = 'copy';
193
+ }
194
+ return dropEffect;
195
+ }
196
+ _stopEvent(event) {
197
+ event.preventDefault();
198
+ event.stopPropagation();
199
+ }
200
+ }
201
+ TdFileDropDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileDropDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
202
+ TdFileDropDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TdFileDropDirective, selector: "[tdFileDrop]", inputs: { multiple: "multiple", disabled: "disabled" }, outputs: { fileDrop: "fileDrop" }, host: { listeners: { "drop": "onDrop($event)", "dragover": "onDragOver($event)", "dragenter": "onDragEnter($event)", "dragleave": "onDragLeave($event)" }, properties: { "attr.multiple": "this.multipleBinding", "attr.disabled": "this.disabledBinding" } }, ngImport: i0 });
203
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileDropDirective, decorators: [{
204
+ type: Directive,
205
+ args: [{
206
+ selector: '[tdFileDrop]',
207
+ }]
208
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { multiple: [{
209
+ type: Input
210
+ }], disabled: [{
211
+ type: Input
212
+ }], fileDrop: [{
213
+ type: Output
214
+ }], multipleBinding: [{
215
+ type: HostBinding,
216
+ args: ['attr.multiple']
217
+ }], disabledBinding: [{
218
+ type: HostBinding,
219
+ args: ['attr.disabled']
220
+ }], onDrop: [{
221
+ type: HostListener,
222
+ args: ['drop', ['$event']]
223
+ }], onDragOver: [{
224
+ type: HostListener,
225
+ args: ['dragover', ['$event']]
226
+ }], onDragEnter: [{
227
+ type: HostListener,
228
+ args: ['dragenter', ['$event']]
229
+ }], onDragLeave: [{
230
+ type: HostListener,
231
+ args: ['dragleave', ['$event']]
232
+ }] } });
233
+
234
+ class TdFileInputLabelDirective extends TemplatePortalDirective {
235
+ constructor(templateRef, viewContainerRef) {
236
+ super(templateRef, viewContainerRef);
237
+ }
238
+ }
239
+ TdFileInputLabelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileInputLabelDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
240
+ TdFileInputLabelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TdFileInputLabelDirective, selector: "[tdFileInputLabel]ng-template", usesInheritance: true, ngImport: i0 });
241
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileInputLabelDirective, decorators: [{
242
+ type: Directive,
243
+ args: [{
244
+ selector: '[tdFileInputLabel]ng-template',
245
+ }]
246
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }]; } });
247
+ class TdFileInputBase {
248
+ constructor(_changeDetectorRef) {
249
+ this._changeDetectorRef = _changeDetectorRef;
250
+ }
251
+ }
252
+ const _TdFileInputMixinBase = mixinControlValueAccessor(mixinDisabled(TdFileInputBase));
253
+ class TdFileInputComponent extends _TdFileInputMixinBase {
254
+ constructor(_renderer, _changeDetectorRef) {
255
+ super(_changeDetectorRef);
256
+ this._renderer = _renderer;
257
+ this._multiple = false;
258
+ /**
259
+ * select?: function
260
+ * Event emitted a file is selected
261
+ * Emits a [File | FileList] object.
262
+ */
263
+ this.selectFile = new EventEmitter();
264
+ }
265
+ get inputElement() {
266
+ return this._inputElement.nativeElement;
267
+ }
268
+ /**
269
+ * multiple?: boolean
270
+ * Sets if multiple files can be dropped/selected at once in [TdFileInputComponent].
271
+ */
272
+ set multiple(multiple) {
273
+ this._multiple = coerceBooleanProperty(multiple);
274
+ }
275
+ get multiple() {
276
+ return this._multiple;
277
+ }
278
+ /**
279
+ * Method executed when a file is selected.
280
+ */
281
+ handleSelect(files) {
282
+ this.writeValue(files);
283
+ this.selectFile.emit(files);
284
+ }
285
+ /**
286
+ * Used to clear the selected files from the [TdFileInputComponent].
287
+ */
288
+ clear() {
289
+ this.writeValue(undefined);
290
+ this._renderer.setProperty(this.inputElement, 'value', '');
291
+ }
292
+ /** Method executed when the disabled value changes */
293
+ onDisabledChange(v) {
294
+ if (v) {
295
+ this.clear();
296
+ }
297
+ }
298
+ /**
299
+ * Sets disable to the component. Implemented as part of ControlValueAccessor.
300
+ */
301
+ setDisabledState(isDisabled) {
302
+ this.disabled = isDisabled;
303
+ }
304
+ }
305
+ TdFileInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileInputComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
306
+ TdFileInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdFileInputComponent, selector: "td-file-input", inputs: { disabled: "disabled", value: "value", color: "color", multiple: "multiple", accept: "accept" }, outputs: { selectFile: "selectFile" }, providers: [
307
+ {
308
+ provide: NG_VALUE_ACCESSOR,
309
+ useExisting: forwardRef(() => TdFileInputComponent),
310
+ multi: true,
311
+ },
312
+ ], viewQueries: [{ propertyName: "_inputElement", first: true, predicate: ["fileInput"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<button\n mat-raised-button\n class=\"td-file-input\"\n type=\"button\"\n [color]=\"color\"\n [multiple]=\"multiple\"\n [disabled]=\"disabled\"\n (keyup.enter)=\"fileInput.click()\"\n (click)=\"fileInput.click()\"\n (fileDrop)=\"handleSelect($event)\"\n tdFileDrop\n>\n <ng-content></ng-content>\n</button>\n<input\n #fileInput\n class=\"td-file-input-hidden\"\n type=\"file\"\n [attr.accept]=\"accept\"\n (fileSelect)=\"handleSelect($event)\"\n [multiple]=\"multiple\"\n [disabled]=\"disabled\"\n tdFileSelect\n/>\n", styles: [":host .td-file-input{padding-left:8px;padding-right:8px}:host input.td-file-input-hidden{display:none}:host .drop-zone{border-radius:3px}:host .drop-zone *{pointer-events:none}\n"], components: [{ type: i1$1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: TdFileDropDirective, selector: "[tdFileDrop]", inputs: ["multiple", "disabled"], outputs: ["fileDrop"] }, { type: TdFileSelectDirective, selector: "[tdFileSelect]", inputs: ["multiple"], outputs: ["fileSelect"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
313
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileInputComponent, decorators: [{
314
+ type: Component,
315
+ args: [{ changeDetection: ChangeDetectionStrategy.OnPush, providers: [
316
+ {
317
+ provide: NG_VALUE_ACCESSOR,
318
+ useExisting: forwardRef(() => TdFileInputComponent),
319
+ multi: true,
320
+ },
321
+ ], selector: 'td-file-input', inputs: ['disabled', 'value'], template: "<button\n mat-raised-button\n class=\"td-file-input\"\n type=\"button\"\n [color]=\"color\"\n [multiple]=\"multiple\"\n [disabled]=\"disabled\"\n (keyup.enter)=\"fileInput.click()\"\n (click)=\"fileInput.click()\"\n (fileDrop)=\"handleSelect($event)\"\n tdFileDrop\n>\n <ng-content></ng-content>\n</button>\n<input\n #fileInput\n class=\"td-file-input-hidden\"\n type=\"file\"\n [attr.accept]=\"accept\"\n (fileSelect)=\"handleSelect($event)\"\n [multiple]=\"multiple\"\n [disabled]=\"disabled\"\n tdFileSelect\n/>\n", styles: [":host .td-file-input{padding-left:8px;padding-right:8px}:host input.td-file-input-hidden{display:none}:host .drop-zone{border-radius:3px}:host .drop-zone *{pointer-events:none}\n"] }]
322
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { _inputElement: [{
323
+ type: ViewChild,
324
+ args: ['fileInput', { static: true }]
325
+ }], color: [{
326
+ type: Input
327
+ }], multiple: [{
328
+ type: Input
329
+ }], accept: [{
330
+ type: Input
331
+ }], selectFile: [{
332
+ type: Output
333
+ }] } });
334
+
335
+ class TdFileUploadBase {
336
+ constructor(_changeDetectorRef) {
337
+ this._changeDetectorRef = _changeDetectorRef;
338
+ }
339
+ }
340
+ class TdFileUploadComponent {
341
+ constructor(_changeDetectorRef) {
342
+ this._changeDetectorRef = _changeDetectorRef;
343
+ this._multiple = false;
344
+ this._required = false;
345
+ this._disabled = false;
346
+ /**
347
+ * defaultColor?: 'accent' | 'primary' | 'warn'
348
+ * Sets browse button color. Uses same color palette accepted as [MatButton] and defaults to 'primary'.
349
+ */
350
+ this.defaultColor = 'primary';
351
+ /**
352
+ * activeColor?: 'accent' | 'primary' | 'warn'
353
+ * Sets upload button color. Uses same color palette accepted as [MatButton] and defaults to 'accent'.
354
+ */
355
+ this.activeColor = 'accent';
356
+ /**
357
+ * cancelColor?: 'accent' | 'primary' | 'warn'
358
+ * Sets cancel button color. Uses same color palette accepted as [MatButton] and defaults to 'warn'.
359
+ */
360
+ this.cancelColor = 'warn';
361
+ /**
362
+ * select?: function
363
+ * Event emitted when a file is selected.
364
+ * Emits a [File | FileList] object.
365
+ */
366
+ this.selectFile = new EventEmitter();
367
+ /**
368
+ * upload?: function
369
+ * Event emitted when upload button is clicked.
370
+ * Emits a [File | FileList] object.
371
+ */
372
+ this.upload = new EventEmitter();
373
+ /**
374
+ * cancel?: function
375
+ * Event emitted when cancel button is clicked.
376
+ */
377
+ this.cancel = new EventEmitter();
378
+ }
379
+ /**
380
+ * multiple?: boolean
381
+ * Sets if multiple files can be dropped/selected at once in [TdFileUploadComponent].
382
+ */
383
+ set multiple(multiple) {
384
+ this._multiple = coerceBooleanProperty(multiple);
385
+ }
386
+ get multiple() {
387
+ return this._multiple;
388
+ }
389
+ /**
390
+ * required?: boolean
391
+ * Forces at least one file upload.
392
+ * Defaults to 'false'
393
+ */
394
+ set required(required) {
395
+ this._required = coerceBooleanProperty(required);
396
+ }
397
+ get required() {
398
+ return this._required;
399
+ }
400
+ set disabled(disabled) {
401
+ this._disabled = disabled;
402
+ this.onDisabledChange(disabled);
403
+ }
404
+ get disabled() {
405
+ return this._disabled;
406
+ }
407
+ writeValue(value) {
408
+ this.value = value;
409
+ this._changeDetectorRef.markForCheck();
410
+ }
411
+ registerOnChange() {
412
+ //
413
+ }
414
+ registerOnTouched() {
415
+ //
416
+ }
417
+ /**
418
+ * Method executed when upload button is clicked.
419
+ */
420
+ uploadPressed() {
421
+ if (this.value) {
422
+ this.upload.emit(this.value);
423
+ }
424
+ }
425
+ /**
426
+ * Method executed when a file is selected.
427
+ */
428
+ handleSelect(value) {
429
+ this.value = value;
430
+ this.selectFile.emit(value);
431
+ }
432
+ /**
433
+ * Methods executed when cancel button is clicked.
434
+ * Clears files.
435
+ */
436
+ _cancel() {
437
+ this.value = undefined;
438
+ this.cancel.emit();
439
+ // check if the file input is rendered before clearing it
440
+ if (this.fileInput) {
441
+ this.fileInput.clear();
442
+ }
443
+ }
444
+ /** Method executed when the disabled value changes */
445
+ onDisabledChange(v) {
446
+ if (v) {
447
+ this._cancel();
448
+ }
449
+ }
450
+ }
451
+ TdFileUploadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileUploadComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
452
+ TdFileUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdFileUploadComponent, selector: "td-file-upload", inputs: { defaultColor: "defaultColor", activeColor: "activeColor", cancelColor: "cancelColor", multiple: "multiple", required: "required", accept: "accept", disabled: "disabled", value: "value" }, outputs: { selectFile: "selectFile", upload: "upload", cancel: "cancel" }, providers: [
453
+ {
454
+ provide: NG_VALUE_ACCESSOR,
455
+ useExisting: forwardRef(() => TdFileUploadComponent),
456
+ multi: true,
457
+ },
458
+ ], queries: [{ propertyName: "inputLabel", first: true, predicate: TdFileInputLabelDirective, descendants: true }], viewQueries: [{ propertyName: "fileInput", first: true, predicate: TdFileInputComponent, descendants: true }], ngImport: i0, template: "<td-file-input\n *ngIf=\"!value\"\n [(ngModel)]=\"value\"\n [multiple]=\"multiple\"\n [disabled]=\"disabled\"\n [accept]=\"accept\"\n [color]=\"defaultColor\"\n (selectFile)=\"(handleSelect)\"\n>\n <ng-template [cdkPortalOutlet]=\"inputLabel\" [ngIf]=\"true\"></ng-template>\n</td-file-input>\n<div *ngIf=\"value\">\n <button\n #fileUpload\n class=\"td-file-upload\"\n mat-raised-button\n type=\"button\"\n [color]=\"activeColor\"\n (keyup.delete)=\"_cancel()\"\n (keyup.backspace)=\"_cancel()\"\n (keyup.escape)=\"_cancel()\"\n (click)=\"uploadPressed()\"\n >\n <ng-content></ng-content>\n </button>\n <button\n mat-icon-button\n type=\"button\"\n class=\"td-file-upload-cancel\"\n [color]=\"cancelColor\"\n (click)=\"_cancel()\"\n >\n <mat-icon>cancel</mat-icon>\n </button>\n</div>\n", styles: [".td-file-upload{padding-left:8px;padding-right:8px}.td-file-upload-cancel{height:24px;width:24px;position:relative;top:24px;left:-12px}::ng-deep [dir=rtl] .td-file-upload-cancel{right:-12px;left:0}.td-file-upload-cancel mat-icon{border-radius:12px;vertical-align:baseline}.drop-zone{border-radius:3px}.drop-zone *{pointer-events:none}\n"], components: [{ type: TdFileInputComponent, selector: "td-file-input", inputs: ["disabled", "value", "color", "multiple", "accept"], outputs: ["selectFile"] }, { type: i1$1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i6.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
459
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileUploadComponent, decorators: [{
460
+ type: Component,
461
+ args: [{ changeDetection: ChangeDetectionStrategy.OnPush, providers: [
462
+ {
463
+ provide: NG_VALUE_ACCESSOR,
464
+ useExisting: forwardRef(() => TdFileUploadComponent),
465
+ multi: true,
466
+ },
467
+ ], selector: 'td-file-upload', template: "<td-file-input\n *ngIf=\"!value\"\n [(ngModel)]=\"value\"\n [multiple]=\"multiple\"\n [disabled]=\"disabled\"\n [accept]=\"accept\"\n [color]=\"defaultColor\"\n (selectFile)=\"(handleSelect)\"\n>\n <ng-template [cdkPortalOutlet]=\"inputLabel\" [ngIf]=\"true\"></ng-template>\n</td-file-input>\n<div *ngIf=\"value\">\n <button\n #fileUpload\n class=\"td-file-upload\"\n mat-raised-button\n type=\"button\"\n [color]=\"activeColor\"\n (keyup.delete)=\"_cancel()\"\n (keyup.backspace)=\"_cancel()\"\n (keyup.escape)=\"_cancel()\"\n (click)=\"uploadPressed()\"\n >\n <ng-content></ng-content>\n </button>\n <button\n mat-icon-button\n type=\"button\"\n class=\"td-file-upload-cancel\"\n [color]=\"cancelColor\"\n (click)=\"_cancel()\"\n >\n <mat-icon>cancel</mat-icon>\n </button>\n</div>\n", styles: [".td-file-upload{padding-left:8px;padding-right:8px}.td-file-upload-cancel{height:24px;width:24px;position:relative;top:24px;left:-12px}::ng-deep [dir=rtl] .td-file-upload-cancel{right:-12px;left:0}.td-file-upload-cancel mat-icon{border-radius:12px;vertical-align:baseline}.drop-zone{border-radius:3px}.drop-zone *{pointer-events:none}\n"] }]
468
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { fileInput: [{
469
+ type: ViewChild,
470
+ args: [TdFileInputComponent]
471
+ }], inputLabel: [{
472
+ type: ContentChild,
473
+ args: [TdFileInputLabelDirective]
474
+ }], defaultColor: [{
475
+ type: Input
476
+ }], activeColor: [{
477
+ type: Input
478
+ }], cancelColor: [{
479
+ type: Input
480
+ }], multiple: [{
481
+ type: Input
482
+ }], required: [{
483
+ type: Input
484
+ }], accept: [{
485
+ type: Input
486
+ }], disabled: [{
487
+ type: Input
488
+ }], value: [{
489
+ type: Input
490
+ }], selectFile: [{
491
+ type: Output
492
+ }], upload: [{
493
+ type: Output
494
+ }], cancel: [{
495
+ type: Output
496
+ }] } });
497
+
498
+ class TdFileService {
499
+ /**
500
+ * Creates a new instance
501
+ * @param _http the http client instance
502
+ * @breaking-change 3.0.0 remove 'Optional' decorator once the legay upload method is removed
503
+ */
504
+ constructor(_http) {
505
+ this._http = _http;
506
+ this._progressSubject = new Subject();
507
+ this._progressObservable = this._progressSubject.asObservable();
508
+ }
509
+ /**
510
+ * Gets progress observable to keep track of the files being uploaded.
511
+ * Needs to be supported by backend.
512
+ */
513
+ get progress() {
514
+ return this._progressObservable;
515
+ }
516
+ /**
517
+ * Uploads a file to a URL.
518
+ */
519
+ send(url, method, body, { headers, params } = {}) {
520
+ if (!this._http) {
521
+ throw new Error('The HttpClient module needs to be imported at root module level');
522
+ }
523
+ const req = new HttpRequest(method.toUpperCase(), url, body, {
524
+ reportProgress: true,
525
+ headers: new HttpHeaders(headers || {}),
526
+ params: new HttpParams({ fromObject: params || {} }),
527
+ });
528
+ return this._http
529
+ .request(req)
530
+ .pipe(tap((event) => this.handleEvent(event)));
531
+ }
532
+ handleEvent(event) {
533
+ switch (event.type) {
534
+ case HttpEventType.Sent:
535
+ this._progressSubject.next(0);
536
+ break;
537
+ case HttpEventType.UploadProgress:
538
+ this._progressSubject.next(Math.round((100 * event.loaded) / (event.total ?? 0)));
539
+ break;
540
+ case HttpEventType.Response:
541
+ this._progressSubject.next(100);
542
+ break;
543
+ default:
544
+ break;
545
+ }
546
+ }
547
+ }
548
+ TdFileService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileService, deps: [{ token: i1$2.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
549
+ TdFileService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileService });
550
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdFileService, decorators: [{
551
+ type: Injectable
552
+ }], ctorParameters: function () { return [{ type: i1$2.HttpClient, decorators: [{
553
+ type: Optional
554
+ }] }]; } });
555
+
556
+ const TD_FILE = [
557
+ TdFileSelectDirective,
558
+ TdFileDropDirective,
559
+ TdFileUploadComponent,
560
+ TdFileInputComponent,
561
+ TdFileInputLabelDirective,
562
+ ];
563
+ class CovalentFileModule {
564
+ }
565
+ CovalentFileModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentFileModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
566
+ CovalentFileModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentFileModule, declarations: [TdFileSelectDirective,
567
+ TdFileDropDirective,
568
+ TdFileUploadComponent,
569
+ TdFileInputComponent,
570
+ TdFileInputLabelDirective], imports: [FormsModule,
571
+ CommonModule,
572
+ MatIconModule,
573
+ MatButtonModule,
574
+ PortalModule], exports: [TdFileSelectDirective,
575
+ TdFileDropDirective,
576
+ TdFileUploadComponent,
577
+ TdFileInputComponent,
578
+ TdFileInputLabelDirective] });
579
+ CovalentFileModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentFileModule, providers: [TdFileService], imports: [[
580
+ FormsModule,
581
+ CommonModule,
582
+ MatIconModule,
583
+ MatButtonModule,
584
+ PortalModule,
585
+ ]] });
586
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentFileModule, decorators: [{
587
+ type: NgModule,
588
+ args: [{
589
+ imports: [
590
+ FormsModule,
591
+ CommonModule,
592
+ MatIconModule,
593
+ MatButtonModule,
594
+ PortalModule,
595
+ ],
596
+ declarations: [TD_FILE],
597
+ exports: [TD_FILE],
598
+ providers: [TdFileService],
599
+ }]
600
+ }] });
601
+
602
+ /**
603
+ * Generated bundle index. Do not edit.
604
+ */
605
+
606
+ export { CovalentFileModule, TdFileDropBase, TdFileDropDirective, TdFileInputBase, TdFileInputComponent, TdFileInputLabelDirective, TdFileSelectDirective, TdFileService, TdFileUploadBase, TdFileUploadComponent, _TdFileInputMixinBase };
607
+ //# sourceMappingURL=covalent-core-file.mjs.map