@igo2/core 17.0.0-next.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 (322) 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 -47
  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 -26
  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 +24 -1549
  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/language/public_api.d.ts +2 -0
  137. package/language/shared/language-mock.provider.d.ts +2 -0
  138. package/{lib/language → language}/shared/language.loader.d.ts +1 -1
  139. package/{lib/language → language}/shared/language.provider.d.ts +1 -1
  140. package/lib/core.module.d.ts +8 -11
  141. package/locale/en.core.json +28 -28
  142. package/locale/en.json +1 -1
  143. package/locale/fr.core.json +28 -28
  144. package/locale/fr.json +1 -1
  145. package/media/index.d.ts +5 -0
  146. package/message/index.d.ts +5 -0
  147. package/{lib/message → message}/message.module.d.ts +4 -3
  148. package/message/public_api.d.ts +2 -0
  149. package/{lib/message → message}/shared/index.d.ts +1 -0
  150. package/message/shared/message.provider.d.ts +2 -0
  151. package/{lib/message → message}/shared/message.service.d.ts +2 -2
  152. package/{src/lib/message → message/src}/message.theming.scss +26 -26
  153. package/monitoring/__mocks__/index.d.ts +1 -0
  154. package/monitoring/__mocks__/monitoring-mock.d.ts +4 -0
  155. package/monitoring/index.d.ts +5 -0
  156. package/{lib/monitoring/index.d.ts → monitoring/public_api.d.ts} +1 -0
  157. package/{lib/monitoring → monitoring}/sentry/sentry.utils.d.ts +1 -1
  158. package/network/index.d.ts +5 -0
  159. package/{lib/network → network}/network.service.d.ts +1 -1
  160. package/package.json +94 -2
  161. package/public_api.d.ts +1 -25
  162. package/regex/index.d.ts +5 -0
  163. package/{lib/regex → regex}/regex.service.d.ts +1 -1
  164. package/{lib/request → request}/error.interceptor.d.ts +1 -1
  165. package/request/index.d.ts +5 -0
  166. package/{lib/request/index.d.ts → request/public_api.d.ts} +2 -0
  167. package/route/index.d.ts +5 -0
  168. package/route/public_api.d.ts +2 -0
  169. package/src/core-theme.scss +5 -5
  170. package/src/index.scss +6 -6
  171. package/src/packages.import.scss +5 -5
  172. package/src/style/all-style.scss +3 -3
  173. package/src/style/layout.scss +163 -163
  174. package/src/style/partial/core-utils.scss +5 -5
  175. package/src/style/partial/core.variables.scss +5 -5
  176. package/src/style/partial/media.scss +80 -80
  177. package/src/style/style.scss +19 -19
  178. package/src/theming/all-theme.scss +15 -15
  179. package/src/theming/material-theme-override.scss +39 -39
  180. package/src/theming/prebuilt-themes/blue-theme.scss +27 -27
  181. package/src/theming/prebuilt-themes/bluedark-theme.scss +60 -60
  182. package/src/theming/prebuilt-themes/bluedq-theme.scss +60 -60
  183. package/src/theming/prebuilt-themes/bluegrey-theme.scss +26 -26
  184. package/src/theming/prebuilt-themes/dark-theme.scss +26 -26
  185. package/src/theming/prebuilt-themes/deeppurple-theme.scss +26 -26
  186. package/src/theming/prebuilt-themes/indigo-theme.scss +26 -26
  187. package/src/theming/prebuilt-themes/orange-theme.scss +26 -26
  188. package/src/theming/prebuilt-themes/teal-theme.scss +26 -26
  189. package/src/theming/typography.scss +28 -28
  190. package/src/theming/utils/_foreground.scss +22 -22
  191. package/storage/index.d.ts +5 -0
  192. package/{lib/storage → storage}/storage.d.ts +1 -1
  193. package/{lib/storage → storage}/storage.service.d.ts +1 -1
  194. package/style/all-style.css +2 -1
  195. package/theming/prebuilt-themes/blue-theme.css +71 -68
  196. package/theming/prebuilt-themes/bluedark-theme.css +71 -68
  197. package/theming/prebuilt-themes/bluedq-theme.css +75 -72
  198. package/theming/prebuilt-themes/bluegrey-theme.css +71 -68
  199. package/theming/prebuilt-themes/dark-theme.css +71 -68
  200. package/theming/prebuilt-themes/deeppurple-theme.css +71 -68
  201. package/theming/prebuilt-themes/indigo-theme.css +71 -68
  202. package/theming/prebuilt-themes/orange-theme.css +79 -76
  203. package/theming/prebuilt-themes/teal-theme.css +71 -68
  204. package/user/index.d.ts +5 -0
  205. package/esm2022/lib/activity/activity.interceptor.mjs +0 -32
  206. package/esm2022/lib/activity/activity.module.mjs +0 -30
  207. package/esm2022/lib/activity/activity.service.mjs +0 -32
  208. package/esm2022/lib/activity/index.mjs +0 -3
  209. package/esm2022/lib/analytics/index.mjs +0 -2
  210. package/esm2022/lib/analytics/shared/analytics.interface.mjs +0 -2
  211. package/esm2022/lib/analytics/shared/analytics.service.mjs +0 -87
  212. package/esm2022/lib/analytics/shared/index.mjs +0 -3
  213. package/esm2022/lib/compression/compressedData.interface.mjs +0 -2
  214. package/esm2022/lib/compression/compression.service.mjs +0 -142
  215. package/esm2022/lib/compression/index.mjs +0 -3
  216. package/esm2022/lib/config/config-deprecated.mjs +0 -27
  217. package/esm2022/lib/config/config.interface.mjs +0 -2
  218. package/esm2022/lib/config/config.module.mjs +0 -23
  219. package/esm2022/lib/config/config.provider.mjs +0 -21
  220. package/esm2022/lib/config/config.service.mjs +0 -97
  221. package/esm2022/lib/config/index.mjs +0 -4
  222. package/esm2022/lib/config/version.mjs +0 -5
  223. package/esm2022/lib/environment/environment.interface.mjs +0 -2
  224. package/esm2022/lib/environment/index.mjs +0 -2
  225. package/esm2022/lib/gesture/gesture.module.mjs +0 -29
  226. package/esm2022/lib/gesture/gesture.provider.mjs +0 -16
  227. package/esm2022/lib/language/index.mjs +0 -2
  228. package/esm2022/lib/language/language.module.mjs +0 -15
  229. package/esm2022/lib/language/shared/index.mjs +0 -7
  230. package/esm2022/lib/language/shared/language-mock.provider.mjs +0 -5
  231. package/esm2022/lib/language/shared/language.interface.mjs +0 -3
  232. package/esm2022/lib/language/shared/language.loader.mjs +0 -38
  233. package/esm2022/lib/language/shared/language.provider.mjs +0 -41
  234. package/esm2022/lib/language/shared/language.service.mjs +0 -38
  235. package/esm2022/lib/language/shared/missing-translation.guard.mjs +0 -16
  236. package/esm2022/lib/media/index.mjs +0 -3
  237. package/esm2022/lib/media/media.enum.mjs +0 -12
  238. package/esm2022/lib/media/media.service.mjs +0 -82
  239. package/esm2022/lib/message/index.mjs +0 -2
  240. package/esm2022/lib/message/message.module.mjs +0 -59
  241. package/esm2022/lib/message/shared/index.mjs +0 -4
  242. package/esm2022/lib/message/shared/message.enum.mjs +0 -10
  243. package/esm2022/lib/message/shared/message.interface.mjs +0 -2
  244. package/esm2022/lib/message/shared/message.service.mjs +0 -225
  245. package/esm2022/lib/monitoring/index.mjs +0 -4
  246. package/esm2022/lib/monitoring/monitoring.provider.mjs +0 -20
  247. package/esm2022/lib/monitoring/sentry/index.mjs +0 -4
  248. package/esm2022/lib/monitoring/sentry/sentry.interface.mjs +0 -2
  249. package/esm2022/lib/monitoring/sentry/sentry.mjs +0 -29
  250. package/esm2022/lib/monitoring/sentry/sentry.provider.mjs +0 -31
  251. package/esm2022/lib/monitoring/sentry/sentry.utils.mjs +0 -14
  252. package/esm2022/lib/monitoring/shared/any-monitoring.interface.mjs +0 -2
  253. package/esm2022/lib/monitoring/shared/index.mjs +0 -3
  254. package/esm2022/lib/monitoring/shared/monitoring.interface.mjs +0 -2
  255. package/esm2022/lib/network/index.mjs +0 -3
  256. package/esm2022/lib/network/network.interfaces.mjs +0 -2
  257. package/esm2022/lib/network/network.service.mjs +0 -66
  258. package/esm2022/lib/regex/index.mjs +0 -3
  259. package/esm2022/lib/regex/regex.interface.mjs +0 -2
  260. package/esm2022/lib/regex/regex.service.mjs +0 -30
  261. package/esm2022/lib/request/error.interceptor.mjs +0 -72
  262. package/esm2022/lib/request/error.module.mjs +0 -39
  263. package/esm2022/lib/request/index.mjs +0 -3
  264. package/esm2022/lib/request/logging.interceptor.mjs +0 -29
  265. package/esm2022/lib/request/logging.module.mjs +0 -30
  266. package/esm2022/lib/route/route.interface.mjs +0 -2
  267. package/esm2022/lib/route/route.service.mjs +0 -75
  268. package/esm2022/lib/storage/index.mjs +0 -4
  269. package/esm2022/lib/storage/storage.interface.mjs +0 -13
  270. package/esm2022/lib/storage/storage.mjs +0 -76
  271. package/esm2022/lib/storage/storage.service.mjs +0 -21
  272. package/esm2022/lib/user/index.mjs +0 -2
  273. package/esm2022/lib/user/user.interface.mjs +0 -2
  274. package/lib/analytics/index.d.ts +0 -1
  275. package/lib/compression/compressedData.interface.d.ts +0 -5
  276. package/lib/compression/compression.service.d.ts +0 -15
  277. package/lib/compression/index.d.ts +0 -2
  278. package/lib/config/config.provider.d.ts +0 -23
  279. package/lib/environment/environment.interface.d.ts +0 -18
  280. package/lib/language/index.d.ts +0 -1
  281. package/lib/language/shared/language-mock.provider.d.ts +0 -2
  282. package/lib/message/index.d.ts +0 -1
  283. package/{lib/activity → activity}/activity.interceptor.d.ts +0 -0
  284. package/{lib/activity → activity}/activity.module.d.ts +0 -0
  285. package/{lib/activity → activity}/activity.service.d.ts +0 -0
  286. package/{lib/analytics/shared/index.d.ts → analytics/public_api.d.ts} +1 -1
  287. /package/{lib/config → config}/config-deprecated.d.ts +0 -0
  288. /package/{lib/config → config}/version.d.ts +0 -0
  289. /package/{lib/environment/index.d.ts → environment/public_api.d.ts} +0 -0
  290. /package/{lib/gesture → gesture}/gesture.module.d.ts +0 -0
  291. /package/{lib/gesture → gesture}/gesture.provider.d.ts +0 -0
  292. /package/{lib/language → language}/language.module.d.ts +0 -0
  293. /package/{lib/language → language}/shared/index.d.ts +0 -0
  294. /package/{lib/language → language}/shared/language.interface.d.ts +0 -0
  295. /package/{lib/language → language}/shared/language.service.d.ts +0 -0
  296. /package/{lib/language → language}/shared/missing-translation.guard.d.ts +0 -0
  297. /package/{lib/media → media}/media.enum.d.ts +0 -0
  298. /package/{lib/media → media}/media.service.d.ts +0 -0
  299. /package/{lib/media/index.d.ts → media/public_api.d.ts} +0 -0
  300. /package/{lib/message → message}/shared/message.enum.d.ts +0 -0
  301. /package/{lib/message → message}/shared/message.interface.d.ts +0 -0
  302. /package/{lib/monitoring → monitoring}/monitoring.provider.d.ts +0 -0
  303. /package/{lib/monitoring → monitoring}/sentry/index.d.ts +0 -0
  304. /package/{lib/monitoring → monitoring}/sentry/sentry.d.ts +0 -0
  305. /package/{lib/monitoring → monitoring}/sentry/sentry.interface.d.ts +0 -0
  306. /package/{lib/monitoring → monitoring}/sentry/sentry.provider.d.ts +0 -0
  307. /package/{lib/monitoring → monitoring}/shared/any-monitoring.interface.d.ts +0 -0
  308. /package/{lib/monitoring → monitoring}/shared/index.d.ts +0 -0
  309. /package/{lib/monitoring → monitoring}/shared/monitoring.interface.d.ts +0 -0
  310. /package/{lib/network → network}/network.interfaces.d.ts +0 -0
  311. /package/{lib/network/index.d.ts → network/public_api.d.ts} +0 -0
  312. /package/{lib/regex/index.d.ts → regex/public_api.d.ts} +0 -0
  313. /package/{lib/regex → regex}/regex.interface.d.ts +0 -0
  314. /package/{lib/request → request}/error.module.d.ts +0 -0
  315. /package/{lib/request → request}/logging.interceptor.d.ts +0 -0
  316. /package/{lib/request → request}/logging.module.d.ts +0 -0
  317. /package/{lib/route → route}/route.interface.d.ts +0 -0
  318. /package/{lib/route → route}/route.service.d.ts +0 -0
  319. /package/{lib/storage/index.d.ts → storage/public_api.d.ts} +0 -0
  320. /package/{lib/storage → storage}/storage.interface.d.ts +0 -0
  321. /package/{lib/user/index.d.ts → user/public_api.d.ts} +0 -0
  322. /package/{lib/user → user}/user.interface.d.ts +0 -0
@@ -1,80 +1,80 @@
1
- $mobile-portrait: 'only screen and (orientation:portrait) and (max-width: 599px)';
2
- $tablet-portrait: 'only screen and (orientation:portrait) and (min-width: 600px) and (max-width: 839px)';
3
- $desktop-portrait: 'only screen and (orientation:portrait) and (min-width: 840px)';
4
-
5
- $mobile-landscape: 'only screen and (orientation:landscape) and (max-width: 959px)';
6
- $tablet-landscape: 'only screen and (orientation:landscape) and (min-width: 960px) and (max-width: 1279px)';
7
- $desktop-landscape: 'only screen and (orientation:landscape) and (min-width: 1280px)';
8
-
9
- $mobile: $mobile-portrait + ',' + $mobile-landscape;
10
- $tablet: $tablet-portrait + ',' + $tablet-landscape;
11
- $desktop: $desktop-portrait + ',' + $desktop-landscape;
12
-
13
- $portrait: 'only screen and (orientation:portrait)';
14
- $landscape: 'only screen and (orientation:landscape)';
15
-
16
- $xsmall-screen: 'only screen and (max-width: 599px)';
17
- $small-screen: 'only screen and (min-width: 600px) and (max-width: 959px)';
18
- $medium-screen: 'only screen and (min-width: 960px) and (max-width: 1280px)';
19
- $large-screen: 'only screen and (min-width: 1280px) and (max-width: 1919px)';
20
- $xlarge-screen: 'only screen and (min-width: 1920px)';
21
-
22
- @mixin mobile {
23
- @media #{$mobile} {
24
- @content;
25
- }
26
- }
27
-
28
- @mixin tablet {
29
- @media #{$tablet} {
30
- @content;
31
- }
32
- }
33
-
34
- @mixin desktop {
35
- @media #{$desktop} {
36
- @content;
37
- }
38
- }
39
-
40
- @mixin portrait {
41
- @media #{$portrait} {
42
- @content;
43
- }
44
- }
45
-
46
- @mixin landscape {
47
- @media #{$landscape} {
48
- @content;
49
- }
50
- }
51
-
52
- @mixin xsmall-screen {
53
- @media #{$xsmall-screen} {
54
- @content;
55
- }
56
- }
57
-
58
- @mixin small-screen {
59
- @media #{$small-screen} {
60
- @content;
61
- }
62
- }
63
-
64
- @mixin medium-screen {
65
- @media #{$medium-screen} {
66
- @content;
67
- }
68
- }
69
-
70
- @mixin large-screen {
71
- @media #{$large-screen} {
72
- @content;
73
- }
74
- }
75
-
76
- @mixin xlarge-screen {
77
- @media #{$xlarge-screen} {
78
- @content;
79
- }
80
- }
1
+ $mobile-portrait: 'only screen and (orientation:portrait) and (max-width: 599px)';
2
+ $tablet-portrait: 'only screen and (orientation:portrait) and (min-width: 600px) and (max-width: 839px)';
3
+ $desktop-portrait: 'only screen and (orientation:portrait) and (min-width: 840px)';
4
+
5
+ $mobile-landscape: 'only screen and (orientation:landscape) and (max-width: 959px)';
6
+ $tablet-landscape: 'only screen and (orientation:landscape) and (min-width: 960px) and (max-width: 1279px)';
7
+ $desktop-landscape: 'only screen and (orientation:landscape) and (min-width: 1280px)';
8
+
9
+ $mobile: $mobile-portrait + ',' + $mobile-landscape;
10
+ $tablet: $tablet-portrait + ',' + $tablet-landscape;
11
+ $desktop: $desktop-portrait + ',' + $desktop-landscape;
12
+
13
+ $portrait: 'only screen and (orientation:portrait)';
14
+ $landscape: 'only screen and (orientation:landscape)';
15
+
16
+ $xsmall-screen: 'only screen and (max-width: 599px)';
17
+ $small-screen: 'only screen and (min-width: 600px) and (max-width: 959px)';
18
+ $medium-screen: 'only screen and (min-width: 960px) and (max-width: 1280px)';
19
+ $large-screen: 'only screen and (min-width: 1280px) and (max-width: 1919px)';
20
+ $xlarge-screen: 'only screen and (min-width: 1920px)';
21
+
22
+ @mixin mobile {
23
+ @media #{$mobile} {
24
+ @content;
25
+ }
26
+ }
27
+
28
+ @mixin tablet {
29
+ @media #{$tablet} {
30
+ @content;
31
+ }
32
+ }
33
+
34
+ @mixin desktop {
35
+ @media #{$desktop} {
36
+ @content;
37
+ }
38
+ }
39
+
40
+ @mixin portrait {
41
+ @media #{$portrait} {
42
+ @content;
43
+ }
44
+ }
45
+
46
+ @mixin landscape {
47
+ @media #{$landscape} {
48
+ @content;
49
+ }
50
+ }
51
+
52
+ @mixin xsmall-screen {
53
+ @media #{$xsmall-screen} {
54
+ @content;
55
+ }
56
+ }
57
+
58
+ @mixin small-screen {
59
+ @media #{$small-screen} {
60
+ @content;
61
+ }
62
+ }
63
+
64
+ @mixin medium-screen {
65
+ @media #{$medium-screen} {
66
+ @content;
67
+ }
68
+ }
69
+
70
+ @mixin large-screen {
71
+ @media #{$large-screen} {
72
+ @content;
73
+ }
74
+ }
75
+
76
+ @mixin xlarge-screen {
77
+ @media #{$xlarge-screen} {
78
+ @content;
79
+ }
80
+ }
@@ -1,19 +1,19 @@
1
- @import 'ngx-toastr/toastr';
2
-
3
- button.mat-mdc-menu-item {
4
- line-height: 24px !important;
5
- }
6
-
7
- a.mat-mdc-menu-item > mat-icon {
8
- margin-bottom: 14px;
9
- }
10
-
11
- button.mat-mdc-icon-button.mat-mdc-button-base[disabled='true'] {
12
- color: rgba(0, 0, 0, 0.26);
13
- }
14
-
15
- .mat-mdc-menu-content {
16
- mat-list {
17
- padding: 0;
18
- }
19
- }
1
+ @import 'ngx-toastr/toastr';
2
+
3
+ button.mat-mdc-menu-item {
4
+ line-height: 24px !important;
5
+ }
6
+
7
+ a.mat-mdc-menu-item > mat-icon {
8
+ margin-bottom: 14px;
9
+ }
10
+
11
+ button.mat-mdc-icon-button.mat-mdc-button-base[disabled='true'] {
12
+ color: rgba(0, 0, 0, 0.26);
13
+ }
14
+
15
+ .mat-mdc-menu-content {
16
+ mat-list {
17
+ padding: 0;
18
+ }
19
+ }
@@ -1,15 +1,15 @@
1
- @use '@angular/material' as mat;
2
-
3
- @use '../packages.import' as igo;
4
- @use './material-theme-override';
5
- @use './typography' as typo;
6
-
7
- @mixin all-component-themes($config) {
8
- @include material-theme-override.material-override($config);
9
-
10
- @include igo.core-component-themes($config);
11
- @include igo.auth-component-themes($config);
12
- @include igo.common-component-themes($config);
13
- @include igo.context-component-themes($config);
14
- @include igo.geo-component-themes($config);
15
- }
1
+ @use '@angular/material' as mat;
2
+
3
+ @use '../packages.import' as igo;
4
+ @use './material-theme-override';
5
+ @use './typography' as typo;
6
+
7
+ @mixin all-component-themes($config) {
8
+ @include material-theme-override.material-override($config);
9
+
10
+ @include igo.core-component-themes($config);
11
+ @include igo.auth-component-themes($config);
12
+ @include igo.common-component-themes($config);
13
+ @include igo.context-component-themes($config);
14
+ @include igo.geo-component-themes($config);
15
+ }
@@ -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);