@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,138 @@
1
+ // Elements can have an "elevation" from 1 to 5, signified by shadows.
2
+ // See http://google.com/design/spec/what-is-material/objects-in-3d-space.html
3
+
4
+ $mat-shadow-bottom-z-1: 0 2px 5px 0 rgba(0, 0, 0, 26%);
5
+ $mat-shadow-bottom-z-2: 0 4px 8px 0 rgba(0, 0, 0, 40%);
6
+
7
+ // Whiteframes
8
+
9
+ $shadow-key-umbra-opacity: 0.2;
10
+ $shadow-key-penumbra-opacity: 0.14;
11
+ $shadow-ambient-shadow-opacity: 0.12;
12
+
13
+ // NOTE(shyndman): gulp-sass seems to be failing if I split the shadow defs across
14
+ // multiple lines. Ugly. Sorry.
15
+ $whiteframe-shadow-1dp: 0 1px 3px 0 rgba(0, 0, 0, $shadow-key-umbra-opacity),
16
+ 0 1px 1px 0 rgba(0, 0, 0, $shadow-key-penumbra-opacity),
17
+ 0 2px 1px -1px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
18
+ $whiteframe-shadow-2dp: 0 1px 5px 0 rgba(0, 0, 0, $shadow-key-umbra-opacity),
19
+ 0 2px 2px 0 rgba(0, 0, 0, $shadow-key-penumbra-opacity),
20
+ 0 3px 1px -2px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
21
+ $whiteframe-shadow-3dp: 0 1px 8px 0 rgba(0, 0, 0, $shadow-key-umbra-opacity),
22
+ 0 3px 4px 0 rgba(0, 0, 0, $shadow-key-penumbra-opacity),
23
+ 0 3px 3px -2px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
24
+ $whiteframe-shadow-4dp: 0 2px 4px -1px rgba(0, 0, 0, $shadow-key-umbra-opacity),
25
+ 0 4px 5px 0 rgba(0, 0, 0, $shadow-key-penumbra-opacity),
26
+ 0 1px 10 0 rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
27
+ $whiteframe-shadow-5dp: 0 3px 5px -1px rgba(0, 0, 0, $shadow-key-umbra-opacity),
28
+ 0 5px 8px 0 rgba(0, 0, 0, $shadow-key-penumbra-opacity),
29
+ 0 1px 14px 0 rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
30
+ $whiteframe-shadow-6dp: 0 3px 5px -1px rgba(0, 0, 0, $shadow-key-umbra-opacity),
31
+ 0 6px 10 0 rgba(0, 0, 0, $shadow-key-penumbra-opacity),
32
+ 0 1px 18px 0 rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
33
+ $whiteframe-shadow-7dp: 0 4px 5px -2px rgba(0, 0, 0, $shadow-key-umbra-opacity),
34
+ 0 7px 10 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity),
35
+ 0 2px 16px 1px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
36
+ $whiteframe-shadow-8dp: 0 5px 5px -3px rgba(0, 0, 0, $shadow-key-umbra-opacity),
37
+ 0 8px 10 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity),
38
+ 0 3px 14px 2px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
39
+ $whiteframe-shadow-9dp: 0 5px 6px -3px rgba(0, 0, 0, $shadow-key-umbra-opacity),
40
+ 0 9px 12px 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity),
41
+ 0 3px 16px 2px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
42
+ $whiteframe-shadow-10dp: 0 6px 6px -3px rgba(0, 0, 0, $shadow-key-umbra-opacity),
43
+ 0 10 14px 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity),
44
+ 0 4px 18px 3px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
45
+ $whiteframe-shadow-11dp: 0 6px 7px -4px rgba(0, 0, 0, $shadow-key-umbra-opacity),
46
+ 0 11px 15px 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity),
47
+ 0 4px 20 3px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
48
+ $whiteframe-shadow-12dp: 0 7px 8px -4px rgba(0, 0, 0, $shadow-key-umbra-opacity),
49
+ 0 12px 17px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity),
50
+ 0 5px 22px 4px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
51
+ $whiteframe-shadow-13dp: 0 7px 8px -4px rgba(0, 0, 0, $shadow-key-umbra-opacity),
52
+ 0 13px 19px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity),
53
+ 0 5px 24px 4px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
54
+ $whiteframe-shadow-14dp: 0 7px 9px -4px rgba(0, 0, 0, $shadow-key-umbra-opacity),
55
+ 0 14px 21px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity),
56
+ 0 5px 26px 4px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
57
+
58
+ @mixin td-whiteframe-utilities() {
59
+ .md-whiteframe-1dp,
60
+ .md-whiteframe-z1,
61
+ .mat-whiteframe-1dp,
62
+ .mat-whiteframe-z1 {
63
+ box-shadow: $whiteframe-shadow-1dp;
64
+ }
65
+
66
+ .md-whiteframe-2dp,
67
+ .mat-whiteframe-2dp {
68
+ box-shadow: $whiteframe-shadow-2dp;
69
+ }
70
+
71
+ .md-whiteframe-3dp,
72
+ .mat-whiteframe-3dp {
73
+ box-shadow: $whiteframe-shadow-3dp;
74
+ }
75
+
76
+ .md-whiteframe-4dp,
77
+ .md-whiteframe-z2,
78
+ .mat-whiteframe-4dp,
79
+ .mat-whiteframe-z2 {
80
+ box-shadow: $whiteframe-shadow-4dp;
81
+ }
82
+
83
+ .md-whiteframe-5dp,
84
+ .mat-whiteframe-5dp {
85
+ box-shadow: $whiteframe-shadow-5dp;
86
+ }
87
+
88
+ .md-whiteframe-6dp,
89
+ .mat-whiteframe-6dp {
90
+ box-shadow: $whiteframe-shadow-6dp;
91
+ }
92
+
93
+ .md-whiteframe-7dp,
94
+ .md-whiteframe-z3,
95
+ .mat-whiteframe-7dp,
96
+ .mat-whiteframe-z3 {
97
+ box-shadow: $whiteframe-shadow-7dp;
98
+ }
99
+
100
+ .md-whiteframe-8dp,
101
+ .mat-whiteframe-8dp {
102
+ box-shadow: $whiteframe-shadow-8dp;
103
+ }
104
+
105
+ .md-whiteframe-9dp,
106
+ .mat-whiteframe-9dp {
107
+ box-shadow: $whiteframe-shadow-9dp;
108
+ }
109
+
110
+ .md-whiteframe-10dp,
111
+ .md-whiteframe-z4,
112
+ .mat-whiteframe-10dp,
113
+ .mat-whiteframe-z4 {
114
+ box-shadow: $whiteframe-shadow-10dp;
115
+ }
116
+
117
+ .md-whiteframe-11dp,
118
+ .mat-whiteframe-11dp {
119
+ box-shadow: $whiteframe-shadow-11dp;
120
+ }
121
+
122
+ .md-whiteframe-12dp,
123
+ .mat-whiteframe-12dp {
124
+ box-shadow: $whiteframe-shadow-12dp;
125
+ }
126
+
127
+ .md-whiteframe-13dp,
128
+ .md-whiteframe-z5,
129
+ .mat-whiteframe-13dp,
130
+ .mat-whiteframe-z5 {
131
+ box-shadow: $whiteframe-shadow-13dp;
132
+ }
133
+
134
+ .md-whiteframe-14dp,
135
+ .mat-whiteframe-14dp {
136
+ box-shadow: $whiteframe-shadow-14dp;
137
+ }
138
+ }
@@ -0,0 +1,11 @@
1
+ The recommended way to use the Material Icons font is by linking to the web font hosted on Google Fonts:
2
+
3
+ ```html
4
+ <link
5
+ href="https://fonts.googleapis.com/icon?family=Material+Icons"
6
+ rel="stylesheet"
7
+ />
8
+ ```
9
+
10
+ Read more in our full usage guide:
11
+ http://google.github.io/material-design-icons/#icon-font-for-the-web
@@ -0,0 +1,99 @@
1
+ $mat-font-url: 'styles/font/' !default;
2
+
3
+ @mixin covalent-material-icons() {
4
+ @font-face {
5
+ font-family: 'Material Icons';
6
+ font-style: normal;
7
+ font-weight: 400;
8
+ src: url($mat-font-url + 'MaterialIcons-Regular-v48.woff2') format('woff2');
9
+ }
10
+
11
+ .material-icons {
12
+ /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
13
+ font-family: 'Material Icons';
14
+ font-weight: normal;
15
+ font-style: normal;
16
+ font-size: 24px; /* Preferred icon size */
17
+ display: inline-block;
18
+ width: 1em;
19
+ height: 1em;
20
+ line-height: 1;
21
+ text-transform: none;
22
+ letter-spacing: normal;
23
+ word-wrap: normal;
24
+ white-space: nowrap;
25
+ direction: ltr;
26
+
27
+ /* Support for all WebKit browsers. */
28
+ -webkit-font-smoothing: antialiased;
29
+
30
+ /* Support for Safari and Chrome. */
31
+ text-rendering: optimizeLegibility;
32
+
33
+ /* Support for Firefox. */
34
+ -moz-osx-font-smoothing: grayscale;
35
+
36
+ /* Support for IE. */
37
+ font-feature-settings: 'liga';
38
+ }
39
+
40
+ // Ensure our size prevails over material
41
+ mat-icon.material-icons {
42
+ &,
43
+ &.mat-icon {
44
+ width: 1em;
45
+ height: 1em;
46
+ }
47
+ }
48
+
49
+ // Rules for sizing the icon.
50
+ .material-icons.md-18,
51
+ .material-icons.mat-18 {
52
+ font-size: 18px;
53
+ height: 18px;
54
+ width: 18px;
55
+ }
56
+
57
+ .material-icons.md-24,
58
+ .material-icons.mat-24 {
59
+ font-size: 24px;
60
+ height: 24px;
61
+ width: 24px;
62
+ }
63
+
64
+ .material-icons.md-36,
65
+ .material-icons.mat-36 {
66
+ font-size: 36px;
67
+ height: 36px;
68
+ width: 36px;
69
+ }
70
+
71
+ .material-icons.md-48,
72
+ .material-icons.mat-48 {
73
+ font-size: 48px;
74
+ height: 48px;
75
+ width: 48px;
76
+ }
77
+
78
+ // Rules for using icons as black on a light background.
79
+ .material-icons.md-dark,
80
+ .material-icons.mat-dark {
81
+ color: rgba(0, 0, 0, 54%);
82
+ }
83
+
84
+ .material-icons.md-dark.md-inactive,
85
+ .material-icons.mat-dark.mat-inactive {
86
+ color: rgba(0, 0, 0, 26%);
87
+ }
88
+
89
+ // Rules for using icons as white on a dark background.
90
+ .material-icons.md-light,
91
+ .material-icons.mat-light {
92
+ color: rgba(255, 255, 255, 100%);
93
+ }
94
+
95
+ .material-icons.md-light.md-inactive,
96
+ .material-icons.mat-light.mat-inactive {
97
+ color: rgba(255, 255, 255, 30%);
98
+ }
99
+ }
@@ -0,0 +1,65 @@
1
+ @mixin td-general-utilities() {
2
+ body {
3
+ // Angular 4 added tabindex to everything, this style removes the outline:
4
+ [tabindex]:focus {
5
+ outline: none;
6
+ }
7
+
8
+ .radius-none {
9
+ border-radius: 0;
10
+ }
11
+
12
+ .overflow-hidden {
13
+ overflow: hidden;
14
+ }
15
+
16
+ .overflow-auto {
17
+ overflow: auto;
18
+ }
19
+
20
+ .overflow-visible {
21
+ overflow: visible;
22
+ }
23
+
24
+ .block {
25
+ display: block;
26
+ }
27
+
28
+ .inline-block {
29
+ display: inline-block;
30
+ }
31
+
32
+ .relative {
33
+ position: relative;
34
+ }
35
+
36
+ .fixed {
37
+ position: fixed;
38
+ }
39
+
40
+ .height-auto {
41
+ min-height: 0;
42
+ }
43
+
44
+ .z-3 {
45
+ z-index: 3;
46
+ }
47
+
48
+ .z-2 {
49
+ z-index: 2;
50
+ }
51
+
52
+ .z-1 {
53
+ z-index: 1;
54
+ }
55
+
56
+ .focus-weight:focus {
57
+ outline: 0;
58
+ font-weight: 700;
59
+ }
60
+
61
+ .cursor-pointer:hover {
62
+ cursor: pointer;
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,36 @@
1
+ @mixin pad($direction: '') {
2
+ .pad#{$direction} {
3
+ padding#{$direction}: 16px;
4
+ }
5
+ .pad#{$direction}-xxl {
6
+ padding#{$direction}: 56px;
7
+ }
8
+ .pad#{$direction}-xl {
9
+ padding#{$direction}: 48px;
10
+ }
11
+ .pad#{$direction}-lg {
12
+ padding#{$direction}: 32px;
13
+ }
14
+ .pad#{$direction}-md {
15
+ padding#{$direction}: 24px;
16
+ }
17
+ .pad#{$direction}-sm {
18
+ padding#{$direction}: 8px;
19
+ }
20
+ .pad#{$direction}-xs {
21
+ padding#{$direction}: 4px;
22
+ }
23
+ .pad#{$direction}-none {
24
+ padding#{$direction}: 0;
25
+ }
26
+ }
27
+
28
+ @mixin td-padding-utilities() {
29
+ body {
30
+ @include pad();
31
+ @include pad(-bottom);
32
+ @include pad(-top);
33
+ @include pad(-left);
34
+ @include pad(-right);
35
+ }
36
+ }
@@ -0,0 +1,36 @@
1
+ @mixin pull($direction: '') {
2
+ .pull#{$direction}-xxl {
3
+ margin#{$direction}: -56px;
4
+ }
5
+ .pull#{$direction}-xl {
6
+ margin#{$direction}: -48px;
7
+ }
8
+ .pull#{$direction}-lg {
9
+ margin#{$direction}: -32px;
10
+ }
11
+ .pull#{$direction}-md {
12
+ margin#{$direction}: -24px;
13
+ }
14
+ .pull#{$direction} {
15
+ margin#{$direction}: -16px;
16
+ }
17
+ .pull#{$direction}-sm {
18
+ margin#{$direction}: -8px;
19
+ }
20
+ .pull#{$direction}-xs {
21
+ margin#{$direction}: -4px;
22
+ }
23
+ .pull#{$direction}-none {
24
+ margin#{$direction}: 0;
25
+ }
26
+ }
27
+
28
+ @mixin td-pulling-utilities() {
29
+ body {
30
+ @include pull();
31
+ @include pull(-bottom);
32
+ @include pull(-top);
33
+ @include pull(-left);
34
+ @include pull(-right);
35
+ }
36
+ }
@@ -0,0 +1,36 @@
1
+ @mixin push($direction: '') {
2
+ .push#{$direction} {
3
+ margin#{$direction}: 16px;
4
+ }
5
+ .push#{$direction}-xxl {
6
+ margin#{$direction}: 56px;
7
+ }
8
+ .push#{$direction}-xl {
9
+ margin#{$direction}: 48px;
10
+ }
11
+ .push#{$direction}-lg {
12
+ margin#{$direction}: 32px;
13
+ }
14
+ .push#{$direction}-md {
15
+ margin#{$direction}: 24px;
16
+ }
17
+ .push#{$direction}-sm {
18
+ margin#{$direction}: 8px;
19
+ }
20
+ .push#{$direction}-xs {
21
+ margin#{$direction}: 4px;
22
+ }
23
+ .push#{$direction}-none {
24
+ margin#{$direction}: 0;
25
+ }
26
+ }
27
+
28
+ @mixin td-pushing-utilities() {
29
+ body {
30
+ @include push();
31
+ @include push(-bottom);
32
+ @include push(-top);
33
+ @include push(-left);
34
+ @include push(-right);
35
+ }
36
+ }
@@ -0,0 +1,24 @@
1
+ @mixin td-size-utilities() {
2
+ $size-list: 12 16 24 32 50 64 72 100 128 256;
3
+ @each $current-size in $size-list {
4
+ $i: index($size-list, $current-size);
5
+ .size-#{$current-size} {
6
+ height: #{$current-size}px;
7
+ width: #{$current-size}px;
8
+ }
9
+ }
10
+ @each $current-size in $size-list {
11
+ $i: index($size-list, $current-size);
12
+ .size-height-#{$current-size} {
13
+ height: #{$current-size}px;
14
+ width: auto;
15
+ }
16
+ }
17
+ @each $current-size in $size-list {
18
+ $i: index($size-list, $current-size);
19
+ .size-width-#{$current-size} {
20
+ width: #{$current-size}px;
21
+ height: auto;
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,105 @@
1
+ @mixin td-text-utilities() {
2
+ body {
3
+ h1,
4
+ h2,
5
+ h3,
6
+ h4,
7
+ h5,
8
+ h6 {
9
+ & > small {
10
+ font-size: 60%;
11
+ }
12
+ }
13
+
14
+ .text-normal {
15
+ font-style: normal;
16
+ }
17
+
18
+ .text-center {
19
+ text-align: center;
20
+ }
21
+
22
+ .text-left {
23
+ text-align: left;
24
+ }
25
+
26
+ .text-right {
27
+ text-align: right;
28
+ }
29
+
30
+ .text-xs,
31
+ .text-sm,
32
+ .text-md,
33
+ .text-lg {
34
+ text-rendering: optimizeLegibility;
35
+ }
36
+
37
+ .text-micro {
38
+ font-size: 10px;
39
+ font-weight: normal;
40
+ letter-spacing: 1px;
41
+ }
42
+
43
+ .text-xs {
44
+ font-size: 50%;
45
+ }
46
+
47
+ .text-sm {
48
+ font-size: 70%;
49
+ }
50
+
51
+ .text-md {
52
+ font-size: 80%;
53
+ }
54
+
55
+ .text-lg {
56
+ font-size: 110%;
57
+ }
58
+
59
+ .text-xl {
60
+ font-size: 120%;
61
+ }
62
+
63
+ .text-xxl {
64
+ font-size: 130%;
65
+ }
66
+
67
+ .text-30 {
68
+ font-size: 30px;
69
+ }
70
+
71
+ .text-super {
72
+ font-size: 60px;
73
+ }
74
+
75
+ .text-wrap {
76
+ white-space: normal;
77
+ }
78
+
79
+ .text-break {
80
+ word-break: break-word;
81
+ }
82
+
83
+ .text-upper {
84
+ text-transform: uppercase;
85
+ }
86
+
87
+ .text-lower {
88
+ text-transform: lowercase;
89
+ }
90
+
91
+ .text-caps {
92
+ text-transform: capitalize;
93
+ }
94
+
95
+ .text-truncate {
96
+ white-space: nowrap;
97
+ overflow: hidden;
98
+ text-overflow: ellipsis;
99
+ }
100
+
101
+ .text-nodecoration {
102
+ text-decoration: none;
103
+ }
104
+ }
105
+ }
@@ -0,0 +1,15 @@
1
+ @import 'general';
2
+ @import 'pad';
3
+ @import 'pull';
4
+ @import 'push';
5
+ @import 'size';
6
+ @import 'text';
7
+
8
+ @mixin covalent-utilities() {
9
+ @include td-general-utilities();
10
+ @include td-padding-utilities();
11
+ @include td-pulling-utilities();
12
+ @include td-pushing-utilities();
13
+ @include td-size-utilities();
14
+ @include td-text-utilities();
15
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@covalent/core" />
5
+ export * from './public_api';