@igo2/core 16.3.0 → 17.0.0-next.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (323) hide show
  1. package/activity/index.d.ts +5 -0
  2. package/{lib/activity/index.d.ts → activity/public_api.d.ts} +1 -0
  3. package/{lib/analytics/shared → analytics}/analytics.interface.d.ts +1 -1
  4. package/{lib/analytics/shared → analytics}/analytics.service.d.ts +1 -1
  5. package/analytics/index.d.ts +5 -0
  6. package/{lib/config → config}/config.interface.d.ts +2 -3
  7. package/{lib/config → config}/config.module.d.ts +3 -0
  8. package/config/config.provider.d.ts +6 -0
  9. package/{lib/config → config}/config.service.d.ts +1 -1
  10. package/config/index.d.ts +5 -0
  11. package/{lib/config/index.d.ts → config/public_api.d.ts} +2 -0
  12. package/environment/environment.interface.d.ts +16 -0
  13. package/environment/index.d.ts +5 -0
  14. package/esm2022/activity/activity.interceptor.mjs +32 -0
  15. package/esm2022/activity/activity.module.mjs +30 -0
  16. package/esm2022/activity/activity.service.mjs +32 -0
  17. package/esm2022/activity/igo2-core-activity.mjs +5 -0
  18. package/esm2022/activity/public_api.mjs +4 -0
  19. package/esm2022/analytics/analytics.interface.mjs +2 -0
  20. package/esm2022/analytics/analytics.service.mjs +87 -0
  21. package/esm2022/analytics/igo2-core-analytics.mjs +5 -0
  22. package/esm2022/analytics/public_api.mjs +3 -0
  23. package/esm2022/config/config-deprecated.mjs +27 -0
  24. package/esm2022/config/config.interface.mjs +2 -0
  25. package/esm2022/config/config.module.mjs +26 -0
  26. package/esm2022/config/config.provider.mjs +21 -0
  27. package/esm2022/config/config.service.mjs +98 -0
  28. package/esm2022/config/igo2-core-config.mjs +5 -0
  29. package/esm2022/config/public_api.mjs +6 -0
  30. package/esm2022/config/version.mjs +5 -0
  31. package/esm2022/environment/environment.interface.mjs +2 -0
  32. package/esm2022/environment/igo2-core-environment.mjs +5 -0
  33. package/esm2022/environment/public_api.mjs +2 -0
  34. package/esm2022/gesture/gesture.module.mjs +29 -0
  35. package/esm2022/gesture/gesture.provider.mjs +16 -0
  36. package/esm2022/gesture/igo2-core-gesture.mjs +5 -0
  37. package/esm2022/gesture/public_api.mjs +3 -0
  38. package/esm2022/language/igo2-core-language.mjs +5 -0
  39. package/esm2022/language/language.module.mjs +15 -0
  40. package/esm2022/language/public_api.mjs +3 -0
  41. package/esm2022/language/shared/index.mjs +7 -0
  42. package/esm2022/language/shared/language-mock.provider.mjs +13 -0
  43. package/esm2022/language/shared/language.interface.mjs +3 -0
  44. package/esm2022/language/shared/language.loader.mjs +38 -0
  45. package/esm2022/language/shared/language.provider.mjs +47 -0
  46. package/esm2022/language/shared/language.service.mjs +38 -0
  47. package/esm2022/language/shared/missing-translation.guard.mjs +16 -0
  48. package/esm2022/lib/core.module.mjs +21 -49
  49. package/esm2022/media/igo2-core-media.mjs +5 -0
  50. package/esm2022/media/media.enum.mjs +12 -0
  51. package/esm2022/media/media.service.mjs +82 -0
  52. package/esm2022/media/public_api.mjs +3 -0
  53. package/esm2022/message/igo2-core-message.mjs +5 -0
  54. package/esm2022/message/message.module.mjs +26 -0
  55. package/esm2022/message/public_api.mjs +3 -0
  56. package/esm2022/message/shared/index.mjs +5 -0
  57. package/esm2022/message/shared/message.enum.mjs +10 -0
  58. package/esm2022/message/shared/message.interface.mjs +2 -0
  59. package/esm2022/message/shared/message.provider.mjs +22 -0
  60. package/esm2022/message/shared/message.service.mjs +225 -0
  61. package/esm2022/monitoring/__mocks__/index.mjs +2 -0
  62. package/esm2022/monitoring/__mocks__/monitoring-mock.mjs +7 -0
  63. package/esm2022/monitoring/igo2-core-monitoring.mjs +5 -0
  64. package/esm2022/monitoring/monitoring.provider.mjs +20 -0
  65. package/esm2022/monitoring/public_api.mjs +5 -0
  66. package/esm2022/monitoring/sentry/index.mjs +4 -0
  67. package/esm2022/monitoring/sentry/sentry.interface.mjs +2 -0
  68. package/esm2022/monitoring/sentry/sentry.mjs +29 -0
  69. package/esm2022/monitoring/sentry/sentry.provider.mjs +31 -0
  70. package/esm2022/monitoring/sentry/sentry.utils.mjs +14 -0
  71. package/esm2022/monitoring/shared/any-monitoring.interface.mjs +2 -0
  72. package/esm2022/monitoring/shared/index.mjs +3 -0
  73. package/esm2022/monitoring/shared/monitoring.interface.mjs +2 -0
  74. package/esm2022/network/igo2-core-network.mjs +5 -0
  75. package/esm2022/network/network.interfaces.mjs +2 -0
  76. package/esm2022/network/network.service.mjs +66 -0
  77. package/esm2022/network/public_api.mjs +3 -0
  78. package/esm2022/public_api.mjs +3 -27
  79. package/esm2022/regex/igo2-core-regex.mjs +5 -0
  80. package/esm2022/regex/public_api.mjs +3 -0
  81. package/esm2022/regex/regex.interface.mjs +2 -0
  82. package/esm2022/regex/regex.service.mjs +30 -0
  83. package/esm2022/request/error.interceptor.mjs +72 -0
  84. package/esm2022/request/error.module.mjs +39 -0
  85. package/esm2022/request/igo2-core-request.mjs +5 -0
  86. package/esm2022/request/logging.interceptor.mjs +29 -0
  87. package/esm2022/request/logging.module.mjs +30 -0
  88. package/esm2022/request/public_api.mjs +5 -0
  89. package/esm2022/route/igo2-core-route.mjs +5 -0
  90. package/esm2022/route/public_api.mjs +3 -0
  91. package/esm2022/route/route.interface.mjs +2 -0
  92. package/esm2022/route/route.service.mjs +75 -0
  93. package/esm2022/storage/igo2-core-storage.mjs +5 -0
  94. package/esm2022/storage/public_api.mjs +4 -0
  95. package/esm2022/storage/storage.interface.mjs +13 -0
  96. package/esm2022/storage/storage.mjs +76 -0
  97. package/esm2022/storage/storage.service.mjs +21 -0
  98. package/esm2022/user/igo2-core-user.mjs +5 -0
  99. package/esm2022/user/public_api.mjs +2 -0
  100. package/esm2022/user/user.interface.mjs +2 -0
  101. package/fesm2022/igo2-core-activity.mjs +94 -0
  102. package/fesm2022/igo2-core-activity.mjs.map +1 -0
  103. package/fesm2022/igo2-core-analytics.mjs +93 -0
  104. package/fesm2022/igo2-core-analytics.mjs.map +1 -0
  105. package/fesm2022/igo2-core-config.mjs +177 -0
  106. package/fesm2022/igo2-core-config.mjs.map +1 -0
  107. package/fesm2022/igo2-core-environment.mjs +4 -0
  108. package/fesm2022/igo2-core-environment.mjs.map +1 -0
  109. package/fesm2022/igo2-core-gesture.mjs +48 -0
  110. package/fesm2022/igo2-core-gesture.mjs.map +1 -0
  111. package/fesm2022/igo2-core-language.mjs +164 -0
  112. package/fesm2022/igo2-core-language.mjs.map +1 -0
  113. package/fesm2022/igo2-core-media.mjs +100 -0
  114. package/fesm2022/igo2-core-media.mjs.map +1 -0
  115. package/fesm2022/igo2-core-message.mjs +282 -0
  116. package/fesm2022/igo2-core-message.mjs.map +1 -0
  117. package/fesm2022/igo2-core-monitoring.mjs +101 -0
  118. package/fesm2022/igo2-core-monitoring.mjs.map +1 -0
  119. package/fesm2022/igo2-core-network.mjs +72 -0
  120. package/fesm2022/igo2-core-network.mjs.map +1 -0
  121. package/fesm2022/igo2-core-regex.mjs +36 -0
  122. package/fesm2022/igo2-core-regex.mjs.map +1 -0
  123. package/fesm2022/igo2-core-request.mjs +164 -0
  124. package/fesm2022/igo2-core-request.mjs.map +1 -0
  125. package/fesm2022/igo2-core-route.mjs +81 -0
  126. package/fesm2022/igo2-core-route.mjs.map +1 -0
  127. package/fesm2022/igo2-core-storage.mjs +114 -0
  128. package/fesm2022/igo2-core-storage.mjs.map +1 -0
  129. package/fesm2022/igo2-core-user.mjs +4 -0
  130. package/fesm2022/igo2-core-user.mjs.map +1 -0
  131. package/fesm2022/igo2-core.mjs +25 -1539
  132. package/fesm2022/igo2-core.mjs.map +1 -1
  133. package/gesture/index.d.ts +5 -0
  134. package/gesture/public_api.d.ts +2 -0
  135. package/language/index.d.ts +5 -0
  136. package/{lib/language → language}/language.module.d.ts +1 -3
  137. package/language/public_api.d.ts +2 -0
  138. package/{lib/language → language}/shared/index.d.ts +2 -0
  139. package/language/shared/language-mock.provider.d.ts +2 -0
  140. package/language/shared/language.interface.d.ts +9 -0
  141. package/language/shared/language.loader.d.ts +13 -0
  142. package/language/shared/language.provider.d.ts +8 -0
  143. package/lib/core.module.d.ts +8 -11
  144. package/locale/en.core.json +28 -28
  145. package/locale/en.json +1 -1
  146. package/locale/fr.core.json +28 -28
  147. package/locale/fr.json +1 -1
  148. package/media/index.d.ts +5 -0
  149. package/message/index.d.ts +5 -0
  150. package/{lib/message → message}/message.module.d.ts +4 -3
  151. package/message/public_api.d.ts +2 -0
  152. package/{lib/message → message}/shared/index.d.ts +1 -0
  153. package/{lib/message → message}/shared/message.enum.d.ts +1 -1
  154. package/message/shared/message.provider.d.ts +2 -0
  155. package/{lib/message → message}/shared/message.service.d.ts +2 -2
  156. package/{src/lib/message → message/src}/message.theming.scss +26 -26
  157. package/monitoring/__mocks__/index.d.ts +1 -0
  158. package/monitoring/__mocks__/monitoring-mock.d.ts +4 -0
  159. package/monitoring/index.d.ts +5 -0
  160. package/{lib/monitoring/index.d.ts → monitoring/public_api.d.ts} +1 -0
  161. package/{lib/monitoring → monitoring}/sentry/sentry.utils.d.ts +1 -1
  162. package/monitoring/shared/any-monitoring.interface.d.ts +2 -0
  163. package/network/index.d.ts +5 -0
  164. package/{lib/network → network}/network.service.d.ts +1 -1
  165. package/package.json +101 -9
  166. package/public_api.d.ts +1 -26
  167. package/regex/index.d.ts +5 -0
  168. package/{lib/regex → regex}/regex.service.d.ts +1 -1
  169. package/{lib/request → request}/error.interceptor.d.ts +1 -1
  170. package/request/index.d.ts +5 -0
  171. package/{lib/request/index.d.ts → request/public_api.d.ts} +2 -0
  172. package/route/index.d.ts +5 -0
  173. package/route/public_api.d.ts +2 -0
  174. package/src/core-theme.scss +5 -5
  175. package/src/index.scss +6 -6
  176. package/src/packages.import.scss +5 -4
  177. package/src/style/all-style.scss +3 -3
  178. package/src/style/layout.scss +163 -163
  179. package/src/style/partial/core-utils.scss +5 -5
  180. package/src/style/partial/core.variables.scss +5 -5
  181. package/src/style/style.scss +19 -19
  182. package/src/theming/all-theme.scss +15 -14
  183. package/src/theming/material-theme-override.scss +39 -39
  184. package/src/theming/prebuilt-themes/blue-theme.scss +27 -27
  185. package/src/theming/prebuilt-themes/bluedark-theme.scss +60 -60
  186. package/src/theming/prebuilt-themes/bluedq-theme.scss +60 -60
  187. package/src/theming/prebuilt-themes/bluegrey-theme.scss +26 -26
  188. package/src/theming/prebuilt-themes/dark-theme.scss +26 -26
  189. package/src/theming/prebuilt-themes/deeppurple-theme.scss +26 -26
  190. package/src/theming/prebuilt-themes/indigo-theme.scss +26 -26
  191. package/src/theming/prebuilt-themes/orange-theme.scss +26 -26
  192. package/src/theming/prebuilt-themes/teal-theme.scss +26 -26
  193. package/src/theming/typography.scss +28 -28
  194. package/src/theming/utils/_foreground.scss +22 -22
  195. package/storage/index.d.ts +5 -0
  196. package/{lib/storage → storage}/storage.d.ts +1 -1
  197. package/{lib/storage → storage}/storage.service.d.ts +1 -1
  198. package/style/all-style.css +2 -1
  199. package/theming/prebuilt-themes/blue-theme.css +857 -994
  200. package/theming/prebuilt-themes/bluedark-theme.css +857 -994
  201. package/theming/prebuilt-themes/bluedq-theme.css +857 -994
  202. package/theming/prebuilt-themes/bluegrey-theme.css +857 -994
  203. package/theming/prebuilt-themes/dark-theme.css +857 -1001
  204. package/theming/prebuilt-themes/deeppurple-theme.css +857 -994
  205. package/theming/prebuilt-themes/indigo-theme.css +857 -994
  206. package/theming/prebuilt-themes/orange-theme.css +857 -994
  207. package/theming/prebuilt-themes/teal-theme.css +857 -994
  208. package/user/index.d.ts +5 -0
  209. package/esm2022/lib/activity/activity.interceptor.mjs +0 -32
  210. package/esm2022/lib/activity/activity.module.mjs +0 -30
  211. package/esm2022/lib/activity/activity.service.mjs +0 -32
  212. package/esm2022/lib/activity/index.mjs +0 -3
  213. package/esm2022/lib/analytics/index.mjs +0 -2
  214. package/esm2022/lib/analytics/shared/analytics.interface.mjs +0 -2
  215. package/esm2022/lib/analytics/shared/analytics.service.mjs +0 -87
  216. package/esm2022/lib/analytics/shared/index.mjs +0 -3
  217. package/esm2022/lib/compression/compressedData.interface.mjs +0 -2
  218. package/esm2022/lib/compression/compression.service.mjs +0 -142
  219. package/esm2022/lib/compression/index.mjs +0 -3
  220. package/esm2022/lib/config/config-deprecated.mjs +0 -27
  221. package/esm2022/lib/config/config.interface.mjs +0 -2
  222. package/esm2022/lib/config/config.module.mjs +0 -23
  223. package/esm2022/lib/config/config.provider.mjs +0 -21
  224. package/esm2022/lib/config/config.service.mjs +0 -97
  225. package/esm2022/lib/config/index.mjs +0 -4
  226. package/esm2022/lib/config/version.mjs +0 -5
  227. package/esm2022/lib/environment/environment.interface.mjs +0 -2
  228. package/esm2022/lib/environment/index.mjs +0 -2
  229. package/esm2022/lib/gesture/gesture.module.mjs +0 -29
  230. package/esm2022/lib/gesture/gesture.provider.mjs +0 -16
  231. package/esm2022/lib/language/index.mjs +0 -2
  232. package/esm2022/lib/language/language.module.mjs +0 -38
  233. package/esm2022/lib/language/shared/index.mjs +0 -5
  234. package/esm2022/lib/language/shared/language.interface.mjs +0 -2
  235. package/esm2022/lib/language/shared/language.loader.mjs +0 -31
  236. package/esm2022/lib/language/shared/language.provider.mjs +0 -22
  237. package/esm2022/lib/language/shared/language.service.mjs +0 -38
  238. package/esm2022/lib/language/shared/missing-translation.guard.mjs +0 -16
  239. package/esm2022/lib/media/index.mjs +0 -3
  240. package/esm2022/lib/media/media.enum.mjs +0 -12
  241. package/esm2022/lib/media/media.service.mjs +0 -82
  242. package/esm2022/lib/message/index.mjs +0 -2
  243. package/esm2022/lib/message/message.module.mjs +0 -59
  244. package/esm2022/lib/message/shared/index.mjs +0 -4
  245. package/esm2022/lib/message/shared/message.enum.mjs +0 -10
  246. package/esm2022/lib/message/shared/message.interface.mjs +0 -2
  247. package/esm2022/lib/message/shared/message.service.mjs +0 -224
  248. package/esm2022/lib/monitoring/index.mjs +0 -4
  249. package/esm2022/lib/monitoring/monitoring.provider.mjs +0 -20
  250. package/esm2022/lib/monitoring/sentry/index.mjs +0 -4
  251. package/esm2022/lib/monitoring/sentry/sentry.interface.mjs +0 -2
  252. package/esm2022/lib/monitoring/sentry/sentry.mjs +0 -29
  253. package/esm2022/lib/monitoring/sentry/sentry.provider.mjs +0 -31
  254. package/esm2022/lib/monitoring/sentry/sentry.utils.mjs +0 -12
  255. package/esm2022/lib/monitoring/shared/any-monitoring.interface.mjs +0 -2
  256. package/esm2022/lib/monitoring/shared/index.mjs +0 -3
  257. package/esm2022/lib/monitoring/shared/monitoring.interface.mjs +0 -2
  258. package/esm2022/lib/network/index.mjs +0 -3
  259. package/esm2022/lib/network/network.interfaces.mjs +0 -2
  260. package/esm2022/lib/network/network.service.mjs +0 -66
  261. package/esm2022/lib/regex/index.mjs +0 -3
  262. package/esm2022/lib/regex/regex.interface.mjs +0 -2
  263. package/esm2022/lib/regex/regex.service.mjs +0 -30
  264. package/esm2022/lib/request/error.interceptor.mjs +0 -72
  265. package/esm2022/lib/request/error.module.mjs +0 -39
  266. package/esm2022/lib/request/index.mjs +0 -3
  267. package/esm2022/lib/request/logging.interceptor.mjs +0 -29
  268. package/esm2022/lib/request/logging.module.mjs +0 -30
  269. package/esm2022/lib/route/route.interface.mjs +0 -2
  270. package/esm2022/lib/route/route.service.mjs +0 -75
  271. package/esm2022/lib/storage/index.mjs +0 -4
  272. package/esm2022/lib/storage/storage.interface.mjs +0 -13
  273. package/esm2022/lib/storage/storage.mjs +0 -76
  274. package/esm2022/lib/storage/storage.service.mjs +0 -21
  275. package/esm2022/lib/user/index.mjs +0 -2
  276. package/esm2022/lib/user/user.interface.mjs +0 -2
  277. package/lib/analytics/index.d.ts +0 -1
  278. package/lib/compression/compressedData.interface.d.ts +0 -5
  279. package/lib/compression/compression.service.d.ts +0 -15
  280. package/lib/compression/index.d.ts +0 -2
  281. package/lib/config/config.provider.d.ts +0 -23
  282. package/lib/environment/environment.interface.d.ts +0 -18
  283. package/lib/language/index.d.ts +0 -1
  284. package/lib/language/shared/language.interface.d.ts +0 -3
  285. package/lib/language/shared/language.loader.d.ts +0 -11
  286. package/lib/language/shared/language.provider.d.ts +0 -15
  287. package/lib/message/index.d.ts +0 -1
  288. package/lib/monitoring/shared/any-monitoring.interface.d.ts +0 -2
  289. package/{lib/activity → activity}/activity.interceptor.d.ts +0 -0
  290. package/{lib/activity → activity}/activity.module.d.ts +0 -0
  291. package/{lib/activity → activity}/activity.service.d.ts +0 -0
  292. package/{lib/analytics/shared/index.d.ts → analytics/public_api.d.ts} +1 -1
  293. /package/{lib/config → config}/config-deprecated.d.ts +0 -0
  294. /package/{lib/config → config}/version.d.ts +0 -0
  295. /package/{lib/environment/index.d.ts → environment/public_api.d.ts} +0 -0
  296. /package/{lib/gesture → gesture}/gesture.module.d.ts +0 -0
  297. /package/{lib/gesture → gesture}/gesture.provider.d.ts +0 -0
  298. /package/{lib/language → language}/shared/language.service.d.ts +0 -0
  299. /package/{lib/language → language}/shared/missing-translation.guard.d.ts +0 -0
  300. /package/{lib/media → media}/media.enum.d.ts +0 -0
  301. /package/{lib/media → media}/media.service.d.ts +0 -0
  302. /package/{lib/media/index.d.ts → media/public_api.d.ts} +0 -0
  303. /package/{lib/message → message}/shared/message.interface.d.ts +0 -0
  304. /package/{lib/monitoring → monitoring}/monitoring.provider.d.ts +0 -0
  305. /package/{lib/monitoring → monitoring}/sentry/index.d.ts +0 -0
  306. /package/{lib/monitoring → monitoring}/sentry/sentry.d.ts +0 -0
  307. /package/{lib/monitoring → monitoring}/sentry/sentry.interface.d.ts +0 -0
  308. /package/{lib/monitoring → monitoring}/sentry/sentry.provider.d.ts +0 -0
  309. /package/{lib/monitoring → monitoring}/shared/index.d.ts +0 -0
  310. /package/{lib/monitoring → monitoring}/shared/monitoring.interface.d.ts +0 -0
  311. /package/{lib/network → network}/network.interfaces.d.ts +0 -0
  312. /package/{lib/network/index.d.ts → network/public_api.d.ts} +0 -0
  313. /package/{lib/regex/index.d.ts → regex/public_api.d.ts} +0 -0
  314. /package/{lib/regex → regex}/regex.interface.d.ts +0 -0
  315. /package/{lib/request → request}/error.module.d.ts +0 -0
  316. /package/{lib/request → request}/logging.interceptor.d.ts +0 -0
  317. /package/{lib/request → request}/logging.module.d.ts +0 -0
  318. /package/{lib/route → route}/route.interface.d.ts +0 -0
  319. /package/{lib/route → route}/route.service.d.ts +0 -0
  320. /package/{lib/storage/index.d.ts → storage/public_api.d.ts} +0 -0
  321. /package/{lib/storage → storage}/storage.interface.d.ts +0 -0
  322. /package/{lib/user/index.d.ts → user/public_api.d.ts} +0 -0
  323. /package/{lib/user → user}/user.interface.d.ts +0 -0
@@ -1,39 +1,39 @@
1
- @use 'sass:map';
2
- @use '@angular/material' as mat;
3
-
4
- @mixin material-override($theme) {
5
- @include mat-button-toggle($theme);
6
- @include mat-tab-group($theme);
7
- }
8
-
9
- @mixin mat-tab-group($theme) {
10
- mat-tab-group,
11
- mat-tab-group ::ng-deep .mat-mdc-tab-body-wrapper {
12
- height: 100%;
13
- overflow: hidden;
14
- }
15
- }
16
-
17
- @mixin mat-button-toggle($theme) {
18
- $accent: map.get($theme, accent);
19
- $dark: mat.define-palette(mat.$grey-palette, 800, 700, 900);
20
- $density: mat.get-density-config($theme);
21
-
22
- $theme: map.merge(
23
- $theme,
24
- (
25
- density: $density - 3
26
- )
27
- );
28
-
29
- @include mat.button-toggle-density($theme);
30
-
31
- mat-button-toggle {
32
- color: black !important;
33
-
34
- &.mat-button-toggle-checked {
35
- background-color: mat.get-color-from-palette($accent);
36
- color: mat.get-color-from-palette($dark);
37
- }
38
- }
39
- }
1
+ @use 'sass:map';
2
+ @use '@angular/material' as mat;
3
+
4
+ @mixin material-override($theme) {
5
+ @include mat-button-toggle($theme);
6
+ @include mat-tab-group($theme);
7
+ }
8
+
9
+ @mixin mat-tab-group($theme) {
10
+ mat-tab-group,
11
+ mat-tab-group ::ng-deep .mat-mdc-tab-body-wrapper {
12
+ height: 100%;
13
+ overflow: hidden;
14
+ }
15
+ }
16
+
17
+ @mixin mat-button-toggle($theme) {
18
+ $accent: map.get($theme, accent);
19
+ $dark: mat.define-palette(mat.$grey-palette, 800, 700, 900);
20
+ $density: mat.get-density-config($theme);
21
+
22
+ $theme: map.merge(
23
+ $theme,
24
+ (
25
+ density: $density - 3
26
+ )
27
+ );
28
+
29
+ @include mat.button-toggle-density($theme);
30
+
31
+ mat-button-toggle {
32
+ color: black !important;
33
+
34
+ &.mat-button-toggle-checked {
35
+ background-color: mat.get-color-from-palette($accent);
36
+ color: mat.get-color-from-palette($dark);
37
+ }
38
+ }
39
+ }
@@ -1,27 +1,27 @@
1
- @use 'sass:map';
2
- @use '@angular/material' as mat;
3
- @use '../all-theme';
4
- @use '../typography';
5
-
6
- $primary: mat.define-palette(mat.$blue-palette, 700, 400, 900);
7
- $accent: mat.define-palette(mat.$blue-palette, 200);
8
- $warn: mat.define-palette(mat.$red-palette);
9
- $typography: typography.$igo-typography;
10
-
11
- $theme: mat.define-light-theme(
12
- (
13
- color: (
14
- primary: $primary,
15
- accent: $accent,
16
- warn: $warn
17
- ),
18
- typography: $typography,
19
- density: 0
20
- )
21
- );
22
-
23
- @include mat.core();
24
- @include mat.typography-hierarchy($typography);
25
- @include mat.all-component-themes($theme);
26
-
27
- @include all-theme.all-component-themes($theme);
1
+ @use 'sass:map';
2
+ @use '@angular/material' as mat;
3
+ @use '../all-theme';
4
+ @use '../typography';
5
+
6
+ $primary: mat.define-palette(mat.$blue-palette, 700, 400, 900);
7
+ $accent: mat.define-palette(mat.$blue-palette, 200);
8
+ $warn: mat.define-palette(mat.$red-palette);
9
+ $typography: typography.$igo-typography;
10
+
11
+ $theme: mat.define-light-theme(
12
+ (
13
+ color: (
14
+ primary: $primary,
15
+ accent: $accent,
16
+ warn: $warn
17
+ ),
18
+ typography: $typography,
19
+ density: 0
20
+ )
21
+ );
22
+
23
+ @include mat.core();
24
+ @include mat.typography-hierarchy($typography);
25
+ @include mat.all-component-themes($theme);
26
+
27
+ @include all-theme.all-component-themes($theme);
@@ -1,60 +1,60 @@
1
- @use 'sass:map';
2
- @use '@angular/material' as mat;
3
- @use '../all-theme';
4
- @use '../typography';
5
-
6
- $bluedark-palette: (
7
- 50: #e3eaec,
8
- 100: #b9cad0,
9
- 200: #8ba7b1,
10
- 300: #5c8391,
11
- 400: #39697a,
12
- 500: #164e62,
13
- 600: #13475a,
14
- 700: #103d50,
15
- 800: #0c3546,
16
- 900: #062534,
17
- A100: #6dc6ff,
18
- A200: #3ab2ff,
19
- A400: #079eff,
20
- A700: #0090ec,
21
- contrast: (
22
- 50: #000000,
23
- 100: #000000,
24
- 200: #000000,
25
- 300: #ffffff,
26
- 400: #ffffff,
27
- 500: #ffffff,
28
- 600: #ffffff,
29
- 700: #ffffff,
30
- 800: #ffffff,
31
- 900: #ffffff,
32
- A100: #000000,
33
- A200: #000000,
34
- A400: #ffffff,
35
- A700: #ffffff
36
- )
37
- );
38
-
39
- $primary: mat.define-palette($bluedark-palette, 500);
40
- $accent: mat.define-palette($bluedark-palette, 200);
41
- $warn: mat.define-palette(mat.$red-palette);
42
- $typography: typography.$igo-typography;
43
-
44
- $theme: mat.define-light-theme(
45
- (
46
- color: (
47
- primary: $primary,
48
- accent: $accent,
49
- warn: $warn
50
- ),
51
- typography: $typography,
52
- density: 0
53
- )
54
- );
55
-
56
- @include mat.core();
57
- @include mat.typography-hierarchy($typography);
58
- @include mat.all-component-themes($theme);
59
-
60
- @include all-theme.all-component-themes($theme);
1
+ @use 'sass:map';
2
+ @use '@angular/material' as mat;
3
+ @use '../all-theme';
4
+ @use '../typography';
5
+
6
+ $bluedark-palette: (
7
+ 50: #e3eaec,
8
+ 100: #b9cad0,
9
+ 200: #8ba7b1,
10
+ 300: #5c8391,
11
+ 400: #39697a,
12
+ 500: #164e62,
13
+ 600: #13475a,
14
+ 700: #103d50,
15
+ 800: #0c3546,
16
+ 900: #062534,
17
+ A100: #6dc6ff,
18
+ A200: #3ab2ff,
19
+ A400: #079eff,
20
+ A700: #0090ec,
21
+ contrast: (
22
+ 50: #000000,
23
+ 100: #000000,
24
+ 200: #000000,
25
+ 300: #ffffff,
26
+ 400: #ffffff,
27
+ 500: #ffffff,
28
+ 600: #ffffff,
29
+ 700: #ffffff,
30
+ 800: #ffffff,
31
+ 900: #ffffff,
32
+ A100: #000000,
33
+ A200: #000000,
34
+ A400: #ffffff,
35
+ A700: #ffffff
36
+ )
37
+ );
38
+
39
+ $primary: mat.define-palette($bluedark-palette, 500);
40
+ $accent: mat.define-palette($bluedark-palette, 200);
41
+ $warn: mat.define-palette(mat.$red-palette);
42
+ $typography: typography.$igo-typography;
43
+
44
+ $theme: mat.define-light-theme(
45
+ (
46
+ color: (
47
+ primary: $primary,
48
+ accent: $accent,
49
+ warn: $warn
50
+ ),
51
+ typography: $typography,
52
+ density: 0
53
+ )
54
+ );
55
+
56
+ @include mat.core();
57
+ @include mat.typography-hierarchy($typography);
58
+ @include mat.all-component-themes($theme);
59
+
60
+ @include all-theme.all-component-themes($theme);
@@ -1,60 +1,60 @@
1
- @use 'sass:map';
2
- @use '@angular/material' as mat;
3
- @use '../all-theme';
4
- @use '../typography';
5
-
6
- $dq-palette: (
7
- 50: #e1f5fd,
8
- 100: #b4e5fb,
9
- 200: #82d4f8,
10
- 300: #53c3f4,
11
- 400: #31b6f2,
12
- 500: #0d81df,
13
- 600: #149be1,
14
- 700: #1088cd,
15
- 800: #0f77b9,
16
- 900: #095797,
17
- A100: #6dc6ff,
18
- A200: #3ab2ff,
19
- A400: #079eff,
20
- A700: #0090ec,
21
- contrast: (
22
- 50: #000000,
23
- 100: #000000,
24
- 200: #000000,
25
- 300: #000000,
26
- 400: #000000,
27
- 500: #000000,
28
- 600: #ffffff,
29
- 700: #ffffff,
30
- 800: #ffffff,
31
- 900: #ffffff,
32
- A100: #000000,
33
- A200: #000000,
34
- A400: #ffffff,
35
- A700: #ffffff
36
- )
37
- );
38
-
39
- $primary: mat.define-palette($dq-palette, 900);
40
- $accent: mat.define-palette($dq-palette, 500);
41
- $warn: mat.define-palette(mat.$red-palette);
42
- $typography: typography.$igo-typography;
43
-
44
- $theme: mat.define-light-theme(
45
- (
46
- color: (
47
- primary: $primary,
48
- accent: $accent,
49
- warn: $warn
50
- ),
51
- typography: $typography,
52
- density: 0
53
- )
54
- );
55
-
56
- @include mat.core();
57
- @include mat.typography-hierarchy($typography);
58
- @include mat.all-component-themes($theme);
59
-
60
- @include all-theme.all-component-themes($theme);
1
+ @use 'sass:map';
2
+ @use '@angular/material' as mat;
3
+ @use '../all-theme';
4
+ @use '../typography';
5
+
6
+ $dq-palette: (
7
+ 50: #e1f5fd,
8
+ 100: #b4e5fb,
9
+ 200: #82d4f8,
10
+ 300: #53c3f4,
11
+ 400: #31b6f2,
12
+ 500: #0d81df,
13
+ 600: #149be1,
14
+ 700: #1088cd,
15
+ 800: #0f77b9,
16
+ 900: #095797,
17
+ A100: #6dc6ff,
18
+ A200: #3ab2ff,
19
+ A400: #079eff,
20
+ A700: #0090ec,
21
+ contrast: (
22
+ 50: #000000,
23
+ 100: #000000,
24
+ 200: #000000,
25
+ 300: #000000,
26
+ 400: #000000,
27
+ 500: #000000,
28
+ 600: #ffffff,
29
+ 700: #ffffff,
30
+ 800: #ffffff,
31
+ 900: #ffffff,
32
+ A100: #000000,
33
+ A200: #000000,
34
+ A400: #ffffff,
35
+ A700: #ffffff
36
+ )
37
+ );
38
+
39
+ $primary: mat.define-palette($dq-palette, 900);
40
+ $accent: mat.define-palette($dq-palette, 500);
41
+ $warn: mat.define-palette(mat.$red-palette);
42
+ $typography: typography.$igo-typography;
43
+
44
+ $theme: mat.define-light-theme(
45
+ (
46
+ color: (
47
+ primary: $primary,
48
+ accent: $accent,
49
+ warn: $warn
50
+ ),
51
+ typography: $typography,
52
+ density: 0
53
+ )
54
+ );
55
+
56
+ @include mat.core();
57
+ @include mat.typography-hierarchy($typography);
58
+ @include mat.all-component-themes($theme);
59
+
60
+ @include all-theme.all-component-themes($theme);
@@ -1,26 +1,26 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.define-palette(mat.$blue-grey-palette);
6
- $accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
7
- $warn: mat.define-palette(mat.$deep-orange-palette);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.define-light-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.core();
23
- @include mat.typography-hierarchy($typography);
24
- @include mat.all-component-themes($theme);
25
-
26
- @include all-theme.all-component-themes($theme);
1
+ @use '@angular/material' as mat;
2
+ @use '../all-theme';
3
+ @use '../typography';
4
+
5
+ $primary: mat.define-palette(mat.$blue-grey-palette);
6
+ $accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
7
+ $warn: mat.define-palette(mat.$deep-orange-palette);
8
+ $typography: typography.$igo-typography;
9
+
10
+ $theme: mat.define-light-theme(
11
+ (
12
+ color: (
13
+ primary: $primary,
14
+ accent: $accent,
15
+ warn: $warn
16
+ ),
17
+ typography: $typography,
18
+ density: 0
19
+ )
20
+ );
21
+
22
+ @include mat.core();
23
+ @include mat.typography-hierarchy($typography);
24
+ @include mat.all-component-themes($theme);
25
+
26
+ @include all-theme.all-component-themes($theme);
@@ -1,26 +1,26 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.define-palette(mat.$blue-grey-palette);
6
- $accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
7
- $warn: mat.define-palette(mat.$deep-orange-palette);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.define-dark-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.core();
23
- @include mat.typography-hierarchy($typography);
24
- @include mat.all-component-themes($theme);
25
-
26
- @include all-theme.all-component-themes($theme);
1
+ @use '@angular/material' as mat;
2
+ @use '../all-theme';
3
+ @use '../typography';
4
+
5
+ $primary: mat.define-palette(mat.$blue-grey-palette);
6
+ $accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
7
+ $warn: mat.define-palette(mat.$deep-orange-palette);
8
+ $typography: typography.$igo-typography;
9
+
10
+ $theme: mat.define-dark-theme(
11
+ (
12
+ color: (
13
+ primary: $primary,
14
+ accent: $accent,
15
+ warn: $warn
16
+ ),
17
+ typography: $typography,
18
+ density: 0
19
+ )
20
+ );
21
+
22
+ @include mat.core();
23
+ @include mat.typography-hierarchy($typography);
24
+ @include mat.all-component-themes($theme);
25
+
26
+ @include all-theme.all-component-themes($theme);
@@ -1,26 +1,26 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.define-palette(mat.$deep-purple-palette);
6
- $accent: mat.define-palette(mat.$amber-palette, A200, A100, A400);
7
- $warn: mat.define-palette(mat.$red-palette);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.define-light-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.core();
23
- @include mat.typography-hierarchy($typography);
24
- @include mat.all-component-themes($theme);
25
-
26
- @include all-theme.all-component-themes($theme);
1
+ @use '@angular/material' as mat;
2
+ @use '../all-theme';
3
+ @use '../typography';
4
+
5
+ $primary: mat.define-palette(mat.$deep-purple-palette);
6
+ $accent: mat.define-palette(mat.$amber-palette, A200, A100, A400);
7
+ $warn: mat.define-palette(mat.$red-palette);
8
+ $typography: typography.$igo-typography;
9
+
10
+ $theme: mat.define-light-theme(
11
+ (
12
+ color: (
13
+ primary: $primary,
14
+ accent: $accent,
15
+ warn: $warn
16
+ ),
17
+ typography: $typography,
18
+ density: 0
19
+ )
20
+ );
21
+
22
+ @include mat.core();
23
+ @include mat.typography-hierarchy($typography);
24
+ @include mat.all-component-themes($theme);
25
+
26
+ @include all-theme.all-component-themes($theme);
@@ -1,26 +1,26 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.define-palette(mat.$indigo-palette);
6
- $accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
7
- $warn: mat.define-palette(mat.$red-palette);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.define-light-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.core();
23
- @include mat.typography-hierarchy($typography);
24
- @include mat.all-component-themes($theme);
25
-
26
- @include all-theme.all-component-themes($theme);
1
+ @use '@angular/material' as mat;
2
+ @use '../all-theme';
3
+ @use '../typography';
4
+
5
+ $primary: mat.define-palette(mat.$indigo-palette);
6
+ $accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
7
+ $warn: mat.define-palette(mat.$red-palette);
8
+ $typography: typography.$igo-typography;
9
+
10
+ $theme: mat.define-light-theme(
11
+ (
12
+ color: (
13
+ primary: $primary,
14
+ accent: $accent,
15
+ warn: $warn
16
+ ),
17
+ typography: $typography,
18
+ density: 0
19
+ )
20
+ );
21
+
22
+ @include mat.core();
23
+ @include mat.typography-hierarchy($typography);
24
+ @include mat.all-component-themes($theme);
25
+
26
+ @include all-theme.all-component-themes($theme);
@@ -1,26 +1,26 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.define-palette(mat.$orange-palette, 800);
6
- $accent: mat.define-palette(mat.$light-blue-palette, 600, 100, 800);
7
- $warn: mat.define-palette(mat.$red-palette, 600);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.define-light-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.core();
23
- @include mat.typography-hierarchy($typography);
24
- @include mat.all-component-themes($theme);
25
-
26
- @include all-theme.all-component-themes($theme);
1
+ @use '@angular/material' as mat;
2
+ @use '../all-theme';
3
+ @use '../typography';
4
+
5
+ $primary: mat.define-palette(mat.$orange-palette, 800);
6
+ $accent: mat.define-palette(mat.$light-blue-palette, 600, 100, 800);
7
+ $warn: mat.define-palette(mat.$red-palette, 600);
8
+ $typography: typography.$igo-typography;
9
+
10
+ $theme: mat.define-light-theme(
11
+ (
12
+ color: (
13
+ primary: $primary,
14
+ accent: $accent,
15
+ warn: $warn
16
+ ),
17
+ typography: $typography,
18
+ density: 0
19
+ )
20
+ );
21
+
22
+ @include mat.core();
23
+ @include mat.typography-hierarchy($typography);
24
+ @include mat.all-component-themes($theme);
25
+
26
+ @include all-theme.all-component-themes($theme);