@igo2/core 1.15.4 → 16.0.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (245) hide show
  1. package/_index.scss +8 -0
  2. package/assets/icons/mdi.svg +1 -1
  3. package/core-theme.scss +5 -0
  4. package/{esm2020 → esm2022}/igo2-core.mjs +4 -4
  5. package/{esm2020 → esm2022}/lib/activity/activity.interceptor.mjs +32 -30
  6. package/{esm2020 → esm2022}/lib/activity/activity.module.mjs +30 -30
  7. package/esm2022/lib/activity/activity.service.mjs +32 -0
  8. package/{esm2020 → esm2022}/lib/activity/index.mjs +3 -3
  9. package/{esm2020 → esm2022}/lib/analytics/index.mjs +2 -2
  10. package/{esm2020 → esm2022}/lib/analytics/shared/analytics.interface.mjs +2 -2
  11. package/esm2022/lib/analytics/shared/analytics.service.mjs +84 -0
  12. package/{esm2020 → esm2022}/lib/analytics/shared/index.mjs +3 -3
  13. package/{esm2020 → esm2022}/lib/compression/compressedData.interface.mjs +2 -2
  14. package/esm2022/lib/compression/compression.service.mjs +142 -0
  15. package/{esm2020 → esm2022}/lib/compression/index.mjs +3 -3
  16. package/esm2022/lib/config/config-deprecated.mjs +19 -0
  17. package/{esm2020 → esm2022}/lib/config/config.interface.mjs +2 -2
  18. package/{esm2020 → esm2022}/lib/config/config.module.mjs +23 -23
  19. package/{esm2020 → esm2022}/lib/config/config.provider.mjs +21 -21
  20. package/esm2022/lib/config/config.service.mjs +81 -0
  21. package/{esm2020 → esm2022}/lib/config/index.mjs +4 -4
  22. package/esm2022/lib/config/version.mjs +5 -0
  23. package/esm2022/lib/core.module.mjs +104 -0
  24. package/{esm2020 → esm2022}/lib/gesture/gesture.module.mjs +30 -30
  25. package/{esm2020 → esm2022}/lib/gesture/gesture.provider.mjs +16 -16
  26. package/{esm2020 → esm2022}/lib/language/index.mjs +2 -2
  27. package/esm2022/lib/language/language.module.mjs +39 -0
  28. package/{esm2020 → esm2022}/lib/language/shared/index.mjs +5 -5
  29. package/{esm2020 → esm2022}/lib/language/shared/language.interface.mjs +2 -2
  30. package/esm2022/lib/language/shared/language.loader.mjs +31 -0
  31. package/esm2022/lib/language/shared/language.provider.mjs +22 -0
  32. package/esm2022/lib/language/shared/language.service.mjs +38 -0
  33. package/{esm2020 → esm2022}/lib/language/shared/missing-translation.guard.mjs +16 -16
  34. package/{esm2020 → esm2022}/lib/media/index.mjs +3 -3
  35. package/{esm2020 → esm2022}/lib/media/media.enum.mjs +12 -12
  36. package/esm2022/lib/media/media.service.mjs +82 -0
  37. package/{esm2020 → esm2022}/lib/message/index.mjs +2 -2
  38. package/esm2022/lib/message/message.module.mjs +60 -0
  39. package/{esm2020 → esm2022}/lib/message/shared/index.mjs +4 -4
  40. package/{esm2020 → esm2022}/lib/message/shared/message.enum.mjs +10 -10
  41. package/esm2022/lib/message/shared/message.interface.mjs +2 -0
  42. package/esm2022/lib/message/shared/message.service.mjs +218 -0
  43. package/{esm2020 → esm2022}/lib/network/index.mjs +3 -3
  44. package/{esm2020 → esm2022}/lib/network/network.interfaces.mjs +2 -2
  45. package/esm2022/lib/network/network.service.mjs +66 -0
  46. package/{esm2020 → esm2022}/lib/regex/index.mjs +3 -3
  47. package/{esm2020 → esm2022}/lib/regex/regex.interface.mjs +2 -2
  48. package/esm2022/lib/regex/regex.service.mjs +30 -0
  49. package/esm2022/lib/request/error.interceptor.mjs +67 -0
  50. package/esm2022/lib/request/error.module.mjs +39 -0
  51. package/{esm2020 → esm2022}/lib/request/index.mjs +3 -3
  52. package/esm2022/lib/request/logging.interceptor.mjs +29 -0
  53. package/{esm2020 → esm2022}/lib/request/logging.module.mjs +30 -30
  54. package/esm2022/lib/route/route.interface.mjs +2 -0
  55. package/esm2022/lib/route/route.service.mjs +75 -0
  56. package/esm2022/lib/storage/index.mjs +4 -0
  57. package/{esm2020 → esm2022}/lib/storage/storage.interface.mjs +13 -13
  58. package/esm2022/lib/storage/storage.mjs +76 -0
  59. package/esm2022/lib/storage/storage.service.mjs +21 -0
  60. package/{esm2020 → esm2022}/public_api.mjs +28 -28
  61. package/{fesm2020 → fesm2022}/igo2-core.mjs +1411 -1289
  62. package/fesm2022/igo2-core.mjs.map +1 -0
  63. package/index.d.ts +5 -5
  64. package/lib/activity/activity.interceptor.d.ts +11 -11
  65. package/lib/activity/activity.module.d.ts +8 -8
  66. package/lib/activity/activity.service.d.ts +11 -11
  67. package/lib/activity/index.d.ts +2 -2
  68. package/lib/analytics/index.d.ts +1 -1
  69. package/lib/analytics/shared/analytics.interface.d.ts +6 -6
  70. package/lib/analytics/shared/analytics.service.d.ts +23 -23
  71. package/lib/analytics/shared/index.d.ts +2 -2
  72. package/lib/compression/compressedData.interface.d.ts +5 -5
  73. package/lib/compression/compression.service.d.ts +15 -15
  74. package/lib/compression/index.d.ts +2 -2
  75. package/lib/config/config-deprecated.d.ts +5 -0
  76. package/lib/config/config.interface.d.ts +13 -6
  77. package/lib/config/config.module.d.ts +8 -8
  78. package/lib/config/config.provider.d.ts +15 -15
  79. package/lib/config/config.service.d.ts +21 -18
  80. package/lib/config/index.d.ts +3 -3
  81. package/lib/config/version.d.ts +5 -5
  82. package/lib/core.module.d.ts +19 -19
  83. package/lib/gesture/gesture.module.d.ts +9 -9
  84. package/lib/gesture/gesture.provider.d.ts +7 -7
  85. package/lib/language/index.d.ts +1 -1
  86. package/lib/language/language.module.d.ts +9 -9
  87. package/lib/language/shared/index.d.ts +4 -4
  88. package/lib/language/shared/language.interface.d.ts +3 -3
  89. package/lib/language/shared/language.loader.d.ts +11 -11
  90. package/lib/language/shared/language.provider.d.ts +15 -15
  91. package/lib/language/shared/language.service.d.ts +13 -13
  92. package/lib/language/shared/missing-translation.guard.d.ts +4 -4
  93. package/lib/media/index.d.ts +2 -2
  94. package/lib/media/media.enum.d.ts +9 -9
  95. package/lib/media/media.service.d.ts +16 -16
  96. package/lib/message/index.d.ts +1 -1
  97. package/lib/message/message.module.d.ts +10 -10
  98. package/lib/message/message.theming.scss +26 -0
  99. package/lib/message/shared/index.d.ts +4 -4
  100. package/lib/message/shared/message.enum.d.ts +8 -8
  101. package/lib/message/shared/message.interface.d.ts +21 -21
  102. package/lib/message/shared/message.service.d.ts +31 -31
  103. package/lib/network/index.d.ts +2 -2
  104. package/lib/network/network.interfaces.d.ts +3 -3
  105. package/lib/network/network.service.d.ts +21 -21
  106. package/lib/regex/index.d.ts +2 -2
  107. package/lib/regex/regex.interface.d.ts +3 -3
  108. package/lib/regex/regex.service.d.ts +12 -12
  109. package/lib/request/error.interceptor.d.ts +14 -14
  110. package/lib/request/error.module.d.ts +9 -9
  111. package/lib/request/index.d.ts +2 -2
  112. package/lib/request/logging.interceptor.d.ts +8 -8
  113. package/lib/request/logging.module.d.ts +8 -8
  114. package/lib/route/route.interface.d.ts +23 -23
  115. package/lib/route/route.service.d.ts +19 -19
  116. package/lib/storage/index.d.ts +3 -2
  117. package/lib/storage/storage.d.ts +15 -0
  118. package/lib/storage/storage.interface.d.ts +20 -20
  119. package/lib/storage/storage.service.d.ts +10 -19
  120. package/locale/en.core.json +28 -29
  121. package/locale/en.json +1 -1205
  122. package/locale/fr.core.json +28 -29
  123. package/locale/fr.json +1 -1210
  124. package/package.json +40 -30
  125. package/packages.import.scss +4 -0
  126. package/public_api.d.ts +24 -24
  127. package/style/all-style.css +793 -0
  128. package/style/all-style.scss +3 -0
  129. package/style/layout.scss +163 -0
  130. package/style/partial/core-utils.scss +5 -0
  131. package/style/partial/core.variables.scss +5 -5
  132. package/style/partial/media.scss +80 -80
  133. package/style/style.css +237 -0
  134. package/style/style.scss +19 -0
  135. package/theming/all-theme.scss +14 -0
  136. package/theming/material-theme-override.scss +39 -0
  137. package/theming/prebuilt-themes/blue-theme.css +2982 -0
  138. package/theming/prebuilt-themes/blue-theme.scss +34 -0
  139. package/theming/prebuilt-themes/bluedark-theme.css +2982 -0
  140. package/theming/prebuilt-themes/bluedark-theme.scss +67 -0
  141. package/theming/prebuilt-themes/bluedq-theme.css +2982 -0
  142. package/theming/prebuilt-themes/bluedq-theme.scss +66 -0
  143. package/theming/prebuilt-themes/bluegrey-theme.css +2982 -0
  144. package/theming/prebuilt-themes/bluegrey-theme.scss +25 -0
  145. package/theming/prebuilt-themes/dark-theme.css +2989 -0
  146. package/theming/prebuilt-themes/dark-theme.scss +25 -0
  147. package/theming/prebuilt-themes/deeppurple-theme.css +2982 -0
  148. package/theming/prebuilt-themes/deeppurple-theme.scss +25 -0
  149. package/theming/prebuilt-themes/indigo-theme.css +2982 -0
  150. package/theming/prebuilt-themes/indigo-theme.scss +25 -0
  151. package/theming/prebuilt-themes/orange-theme.css +2982 -0
  152. package/theming/prebuilt-themes/orange-theme.scss +25 -0
  153. package/theming/prebuilt-themes/qcca/_index.scss +2 -0
  154. package/theming/prebuilt-themes/qcca/base/_index.scss +4 -0
  155. package/theming/prebuilt-themes/qcca/base/breakpoints.scss +57 -0
  156. package/theming/prebuilt-themes/qcca/base/colors.scss +40 -0
  157. package/theming/prebuilt-themes/qcca/base/palette.scss +50 -0
  158. package/theming/prebuilt-themes/qcca/base/typography/_index.scss +2 -0
  159. package/theming/prebuilt-themes/qcca/base/typography/typography.scss +138 -0
  160. package/theming/prebuilt-themes/qcca/base/typography/typography.utils.scss +18 -0
  161. package/theming/prebuilt-themes/qcca/components/_index.scss +10 -0
  162. package/theming/prebuilt-themes/qcca/components/_index.theme.scss +5 -0
  163. package/theming/prebuilt-themes/qcca/components/button.scss +24 -0
  164. package/theming/prebuilt-themes/qcca/components/dialog.scss +36 -0
  165. package/theming/prebuilt-themes/qcca/components/form-field.scss +5 -0
  166. package/theming/prebuilt-themes/qcca/components/input.scss +6 -0
  167. package/theming/prebuilt-themes/qcca/components/list.scss +24 -0
  168. package/theming/prebuilt-themes/qcca/components/panel.scss +8 -0
  169. package/theming/prebuilt-themes/qcca/components/scrollbar.scss +15 -0
  170. package/theming/prebuilt-themes/qcca/components/search-bar.scss +41 -0
  171. package/theming/prebuilt-themes/qcca/components/search-bar.theme.scss +29 -0
  172. package/theming/prebuilt-themes/qcca-theme.css +3383 -0
  173. package/theming/prebuilt-themes/qcca-theme.scss +47 -0
  174. package/theming/prebuilt-themes/teal-theme.css +2982 -0
  175. package/theming/prebuilt-themes/teal-theme.scss +25 -0
  176. package/theming/typography.scss +28 -0
  177. package/theming/utils/_foreground.scss +22 -0
  178. package/__ivy_ngcc__/locale/en.auth.json +0 -29
  179. package/__ivy_ngcc__/locale/en.common.json +0 -43
  180. package/__ivy_ngcc__/locale/en.context.json +0 -199
  181. package/__ivy_ngcc__/locale/en.core.json +0 -29
  182. package/__ivy_ngcc__/locale/en.geo.json +0 -805
  183. package/__ivy_ngcc__/locale/en.integration.json +0 -124
  184. package/__ivy_ngcc__/locale/en.json +0 -1205
  185. package/__ivy_ngcc__/locale/fr.auth.json +0 -32
  186. package/__ivy_ngcc__/locale/fr.common.json +0 -43
  187. package/__ivy_ngcc__/locale/fr.context.json +0 -199
  188. package/__ivy_ngcc__/locale/fr.core.json +0 -29
  189. package/__ivy_ngcc__/locale/fr.geo.json +0 -805
  190. package/__ivy_ngcc__/locale/fr.integration.json +0 -125
  191. package/__ivy_ngcc__/locale/fr.json +0 -1210
  192. package/esm2020/lib/activity/activity.service.mjs +0 -33
  193. package/esm2020/lib/analytics/shared/analytics.service.mjs +0 -81
  194. package/esm2020/lib/compression/compression.service.mjs +0 -140
  195. package/esm2020/lib/config/config.service.mjs +0 -52
  196. package/esm2020/lib/config/version.mjs +0 -5
  197. package/esm2020/lib/core.module.mjs +0 -92
  198. package/esm2020/lib/language/language.module.mjs +0 -39
  199. package/esm2020/lib/language/shared/language.loader.mjs +0 -26
  200. package/esm2020/lib/language/shared/language.provider.mjs +0 -22
  201. package/esm2020/lib/language/shared/language.service.mjs +0 -32
  202. package/esm2020/lib/media/media.service.mjs +0 -76
  203. package/esm2020/lib/message/message.module.mjs +0 -56
  204. package/esm2020/lib/message/shared/message.interface.mjs +0 -2
  205. package/esm2020/lib/message/shared/message.service.mjs +0 -201
  206. package/esm2020/lib/network/network.service.mjs +0 -60
  207. package/esm2020/lib/regex/regex.service.mjs +0 -27
  208. package/esm2020/lib/request/error.interceptor.mjs +0 -66
  209. package/esm2020/lib/request/error.module.mjs +0 -39
  210. package/esm2020/lib/request/logging.interceptor.mjs +0 -29
  211. package/esm2020/lib/route/route.interface.mjs +0 -2
  212. package/esm2020/lib/route/route.service.mjs +0 -71
  213. package/esm2020/lib/storage/index.mjs +0 -3
  214. package/esm2020/lib/storage/storage.service.mjs +0 -79
  215. package/fesm2015/igo2-core.mjs +0 -1418
  216. package/fesm2015/igo2-core.mjs.map +0 -1
  217. package/fesm2020/igo2-core.mjs.map +0 -1
  218. package/locale/en.auth.json +0 -29
  219. package/locale/en.common.json +0 -43
  220. package/locale/en.context.json +0 -199
  221. package/locale/en.geo.json +0 -805
  222. package/locale/en.integration.json +0 -124
  223. package/locale/fr.auth.json +0 -32
  224. package/locale/fr.common.json +0 -43
  225. package/locale/fr.context.json +0 -199
  226. package/locale/fr.geo.json +0 -805
  227. package/locale/fr.integration.json +0 -125
  228. package/style/all.theming.scss +0 -5
  229. package/style/core.theming.scss +0 -9
  230. package/style/foreground.scss +0 -20
  231. package/style/index.theming.scss +0 -1465
  232. package/style/material.font.scss +0 -10
  233. package/style/setup.scss +0 -2
  234. package/style/themes/blue.theme.scss +0 -19
  235. package/style/themes/bluedark.theme.scss +0 -52
  236. package/style/themes/bluedq.theme.scss +0 -52
  237. package/style/themes/bluegrey.theme.scss +0 -16
  238. package/style/themes/dark.theme.scss +0 -16
  239. package/style/themes/deeppurple.theme.scss +0 -16
  240. package/style/themes/indigo.theme.scss +0 -16
  241. package/style/themes/orange.theme.scss +0 -16
  242. package/style/themes/qcca.theme.scss +0 -98
  243. package/style/themes/teal.theme.scss +0 -16
  244. package/style/theming.scss +0 -5
  245. package/style/typography.scss +0 -17
@@ -0,0 +1,793 @@
1
+ /* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */
2
+ /* position */
3
+ .toast-center-center {
4
+ top: 50%;
5
+ left: 50%;
6
+ transform: translate(-50%, -50%);
7
+ }
8
+
9
+ .toast-top-center {
10
+ top: 0;
11
+ right: 0;
12
+ width: 100%;
13
+ }
14
+
15
+ .toast-bottom-center {
16
+ bottom: 0;
17
+ right: 0;
18
+ width: 100%;
19
+ }
20
+
21
+ .toast-top-full-width {
22
+ top: 0;
23
+ right: 0;
24
+ width: 100%;
25
+ }
26
+
27
+ .toast-bottom-full-width {
28
+ bottom: 0;
29
+ right: 0;
30
+ width: 100%;
31
+ }
32
+
33
+ .toast-top-left {
34
+ top: 12px;
35
+ left: 12px;
36
+ }
37
+
38
+ .toast-top-right {
39
+ top: 12px;
40
+ right: 12px;
41
+ }
42
+
43
+ .toast-bottom-right {
44
+ right: 12px;
45
+ bottom: 12px;
46
+ }
47
+
48
+ .toast-bottom-left {
49
+ bottom: 12px;
50
+ left: 12px;
51
+ }
52
+
53
+ /* toast styles */
54
+ .toast-title {
55
+ font-weight: bold;
56
+ }
57
+
58
+ .toast-message {
59
+ word-wrap: break-word;
60
+ }
61
+
62
+ .toast-message a,
63
+ .toast-message label {
64
+ color: #FFFFFF;
65
+ }
66
+
67
+ .toast-message a:hover {
68
+ color: #CCCCCC;
69
+ text-decoration: none;
70
+ }
71
+
72
+ .toast-close-button {
73
+ position: relative;
74
+ right: -0.3em;
75
+ top: -0.3em;
76
+ float: right;
77
+ font-size: 20px;
78
+ font-weight: bold;
79
+ color: #FFFFFF;
80
+ text-shadow: 0 1px 0 #ffffff;
81
+ /* opacity: 0.8; */
82
+ }
83
+
84
+ .toast-close-button:hover,
85
+ .toast-close-button:focus {
86
+ color: #000000;
87
+ text-decoration: none;
88
+ cursor: pointer;
89
+ opacity: 0.4;
90
+ }
91
+
92
+ /*Additional properties for button version
93
+ iOS requires the button element instead of an anchor tag.
94
+ If you want the anchor version, it requires `href="#"`.*/
95
+ button.toast-close-button {
96
+ padding: 0;
97
+ cursor: pointer;
98
+ background: transparent;
99
+ border: 0;
100
+ }
101
+
102
+ .toast-container {
103
+ pointer-events: none;
104
+ position: fixed;
105
+ z-index: 999999;
106
+ }
107
+
108
+ .toast-container * {
109
+ box-sizing: border-box;
110
+ }
111
+
112
+ .toast-container .ngx-toastr {
113
+ position: relative;
114
+ overflow: hidden;
115
+ margin: 0 0 6px;
116
+ padding: 15px 15px 15px 50px;
117
+ width: 300px;
118
+ border-radius: 3px 3px 3px 3px;
119
+ background-position: 15px center;
120
+ background-repeat: no-repeat;
121
+ background-size: 24px;
122
+ box-shadow: 0 0 12px #999999;
123
+ color: #FFFFFF;
124
+ }
125
+
126
+ .toast-container .ngx-toastr:hover {
127
+ box-shadow: 0 0 12px #000000;
128
+ opacity: 1;
129
+ cursor: pointer;
130
+ }
131
+
132
+ /* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */
133
+ .toast-info {
134
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+");
135
+ }
136
+
137
+ /* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */
138
+ .toast-error {
139
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+");
140
+ }
141
+
142
+ /* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */
143
+ .toast-success {
144
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==");
145
+ }
146
+
147
+ /* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */
148
+ .toast-warning {
149
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==");
150
+ }
151
+
152
+ .toast-container.toast-top-center .ngx-toastr,
153
+ .toast-container.toast-bottom-center .ngx-toastr {
154
+ width: 300px;
155
+ margin-left: auto;
156
+ margin-right: auto;
157
+ }
158
+
159
+ .toast-container.toast-top-full-width .ngx-toastr,
160
+ .toast-container.toast-bottom-full-width .ngx-toastr {
161
+ width: 96%;
162
+ margin-left: auto;
163
+ margin-right: auto;
164
+ }
165
+
166
+ .ngx-toastr {
167
+ background-color: #030303;
168
+ pointer-events: auto;
169
+ }
170
+
171
+ .toast-success {
172
+ background-color: #51A351;
173
+ }
174
+
175
+ .toast-error {
176
+ background-color: #BD362F;
177
+ }
178
+
179
+ .toast-info {
180
+ background-color: #2F96B4;
181
+ }
182
+
183
+ .toast-warning {
184
+ background-color: #F89406;
185
+ }
186
+
187
+ .toast-progress {
188
+ position: absolute;
189
+ left: 0;
190
+ bottom: 0;
191
+ height: 4px;
192
+ background-color: #000000;
193
+ opacity: 0.4;
194
+ }
195
+
196
+ /* Responsive Design */
197
+ @media all and (max-width: 240px) {
198
+ .toast-container .ngx-toastr.div {
199
+ padding: 8px 8px 8px 50px;
200
+ width: 11em;
201
+ }
202
+ .toast-container .toast-close-button {
203
+ right: -0.2em;
204
+ top: -0.2em;
205
+ }
206
+ }
207
+ @media all and (min-width: 241px) and (max-width: 480px) {
208
+ .toast-container .ngx-toastr.div {
209
+ padding: 8px 8px 8px 50px;
210
+ width: 18em;
211
+ }
212
+ .toast-container .toast-close-button {
213
+ right: -0.2em;
214
+ top: -0.2em;
215
+ }
216
+ }
217
+ @media all and (min-width: 481px) and (max-width: 768px) {
218
+ .toast-container .ngx-toastr.div {
219
+ padding: 15px 15px 15px 50px;
220
+ width: 25em;
221
+ }
222
+ }
223
+ button.mat-mdc-menu-item {
224
+ line-height: 24px !important;
225
+ }
226
+
227
+ a.mat-mdc-menu-item > mat-icon {
228
+ margin-bottom: 14px;
229
+ }
230
+
231
+ button.mat-mdc-icon-button.mat-mdc-button-base[disabled=true] {
232
+ color: rgba(0, 0, 0, 0.26);
233
+ }
234
+
235
+ .mat-mdc-menu-content mat-list {
236
+ padding: 0;
237
+ }
238
+
239
+ .shepherd-button {
240
+ background: #3288e6;
241
+ border: 0;
242
+ border-radius: 3px;
243
+ color: hsla(0, 0%, 100%, 0.75);
244
+ cursor: pointer;
245
+ margin-right: 0.5rem;
246
+ padding: 0.5rem 1.5rem;
247
+ transition: all 0.5s ease;
248
+ }
249
+
250
+ .shepherd-button:not(:disabled):hover {
251
+ background: #196fcc;
252
+ color: hsla(0, 0%, 100%, 0.75);
253
+ }
254
+
255
+ .shepherd-button.shepherd-button-secondary {
256
+ background: #f1f2f3;
257
+ color: rgba(0, 0, 0, 0.75);
258
+ }
259
+
260
+ .shepherd-button.shepherd-button-secondary:not(:disabled):hover {
261
+ background: #d6d9db;
262
+ color: rgba(0, 0, 0, 0.75);
263
+ }
264
+
265
+ .shepherd-button:disabled {
266
+ cursor: not-allowed;
267
+ }
268
+
269
+ .shepherd-footer {
270
+ border-bottom-left-radius: 5px;
271
+ border-bottom-right-radius: 5px;
272
+ display: flex;
273
+ justify-content: flex-end;
274
+ padding: 0 0.75rem 0.75rem;
275
+ }
276
+
277
+ .shepherd-footer .shepherd-button:last-child {
278
+ margin-right: 0;
279
+ }
280
+
281
+ .shepherd-cancel-icon {
282
+ background: transparent;
283
+ border: none;
284
+ color: hsla(0, 0%, 50%, 0.75);
285
+ cursor: pointer;
286
+ font-size: 2em;
287
+ font-weight: 400;
288
+ margin: 0;
289
+ padding: 0;
290
+ transition: color 0.5s ease;
291
+ }
292
+
293
+ .shepherd-cancel-icon:hover {
294
+ color: rgba(0, 0, 0, 0.75);
295
+ }
296
+
297
+ .shepherd-has-title .shepherd-content .shepherd-cancel-icon {
298
+ color: hsla(0, 0%, 50%, 0.75);
299
+ }
300
+
301
+ .shepherd-has-title .shepherd-content .shepherd-cancel-icon:hover {
302
+ color: rgba(0, 0, 0, 0.75);
303
+ }
304
+
305
+ .shepherd-title {
306
+ color: rgba(0, 0, 0, 0.75);
307
+ display: flex;
308
+ flex: 1 0 auto;
309
+ font-size: 1rem;
310
+ font-weight: 400;
311
+ margin: 0;
312
+ padding: 0;
313
+ }
314
+
315
+ .shepherd-header {
316
+ align-items: center;
317
+ border-top-left-radius: 5px;
318
+ border-top-right-radius: 5px;
319
+ display: flex;
320
+ justify-content: flex-end;
321
+ line-height: 2em;
322
+ padding: 0.75rem 0.75rem 0;
323
+ }
324
+
325
+ .shepherd-has-title .shepherd-content .shepherd-header {
326
+ background: #e6e6e6;
327
+ padding: 1em;
328
+ }
329
+
330
+ .shepherd-text {
331
+ color: rgba(0, 0, 0, 0.75);
332
+ font-size: 1rem;
333
+ line-height: 1.3em;
334
+ padding: 0.75em;
335
+ }
336
+
337
+ .shepherd-text p {
338
+ margin-top: 0;
339
+ }
340
+
341
+ .shepherd-text p:last-child {
342
+ margin-bottom: 0;
343
+ }
344
+
345
+ .shepherd-content {
346
+ border-radius: 5px;
347
+ outline: none;
348
+ padding: 0;
349
+ }
350
+
351
+ .shepherd-element {
352
+ background: #fff;
353
+ border-radius: 5px;
354
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
355
+ max-width: 400px;
356
+ opacity: 0;
357
+ outline: none;
358
+ transition: opacity 0.3s, visibility 0.3s;
359
+ visibility: hidden;
360
+ width: 100%;
361
+ z-index: 9999;
362
+ }
363
+
364
+ .shepherd-enabled.shepherd-element {
365
+ opacity: 1;
366
+ visibility: visible;
367
+ }
368
+
369
+ .shepherd-element[data-popper-reference-hidden]:not(.shepherd-centered) {
370
+ opacity: 0;
371
+ pointer-events: none;
372
+ visibility: hidden;
373
+ }
374
+
375
+ .shepherd-element, .shepherd-element *, .shepherd-element :after, .shepherd-element :before {
376
+ box-sizing: border-box;
377
+ }
378
+
379
+ .shepherd-arrow, .shepherd-arrow:before {
380
+ height: 16px;
381
+ position: absolute;
382
+ width: 16px;
383
+ z-index: -1;
384
+ }
385
+
386
+ .shepherd-arrow:before {
387
+ background: #fff;
388
+ content: "";
389
+ transform: rotate(45deg);
390
+ }
391
+
392
+ .shepherd-element[data-popper-placement^=top] > .shepherd-arrow {
393
+ bottom: -8px;
394
+ }
395
+
396
+ .shepherd-element[data-popper-placement^=bottom] > .shepherd-arrow {
397
+ top: -8px;
398
+ }
399
+
400
+ .shepherd-element[data-popper-placement^=left] > .shepherd-arrow {
401
+ right: -8px;
402
+ }
403
+
404
+ .shepherd-element[data-popper-placement^=right] > .shepherd-arrow {
405
+ left: -8px;
406
+ }
407
+
408
+ .shepherd-element.shepherd-centered > .shepherd-arrow {
409
+ opacity: 0;
410
+ }
411
+
412
+ .shepherd-element.shepherd-has-title[data-popper-placement^=bottom] > .shepherd-arrow:before {
413
+ background-color: #e6e6e6;
414
+ }
415
+
416
+ .shepherd-target-click-disabled.shepherd-enabled.shepherd-target, .shepherd-target-click-disabled.shepherd-enabled.shepherd-target * {
417
+ pointer-events: none;
418
+ }
419
+
420
+ .shepherd-modal-overlay-container {
421
+ height: 0;
422
+ left: 0;
423
+ opacity: 0;
424
+ overflow: hidden;
425
+ pointer-events: none;
426
+ position: fixed;
427
+ top: 0;
428
+ transition: all 0.3s ease-out, height 0ms 0.3s, opacity 0.3s 0ms;
429
+ width: 100vw;
430
+ z-index: 9997;
431
+ }
432
+
433
+ .shepherd-modal-overlay-container.shepherd-modal-is-visible {
434
+ height: 100vh;
435
+ opacity: 0.5;
436
+ transform: translateZ(0);
437
+ transition: all 0.3s ease-out, height 0s 0s, opacity 0.3s 0s;
438
+ }
439
+
440
+ .shepherd-modal-overlay-container.shepherd-modal-is-visible path {
441
+ pointer-events: all;
442
+ }
443
+
444
+ :root,
445
+ :host {
446
+ --ol-background-color: white;
447
+ --ol-accent-background-color: #F5F5F5;
448
+ --ol-subtle-background-color: rgba(128, 128, 128, 0.25);
449
+ --ol-partial-background-color: rgba(255, 255, 255, 0.75);
450
+ --ol-foreground-color: #333333;
451
+ --ol-subtle-foreground-color: #666666;
452
+ --ol-brand-color: #00AAFF;
453
+ }
454
+
455
+ .ol-box {
456
+ box-sizing: border-box;
457
+ border-radius: 2px;
458
+ border: 1.5px solid var(--ol-background-color);
459
+ background-color: var(--ol-partial-background-color);
460
+ }
461
+
462
+ .ol-mouse-position {
463
+ top: 8px;
464
+ right: 8px;
465
+ position: absolute;
466
+ }
467
+
468
+ .ol-scale-line {
469
+ background: var(--ol-partial-background-color);
470
+ border-radius: 4px;
471
+ bottom: 8px;
472
+ left: 8px;
473
+ padding: 2px;
474
+ position: absolute;
475
+ }
476
+
477
+ .ol-scale-line-inner {
478
+ border: 1px solid var(--ol-subtle-foreground-color);
479
+ border-top: none;
480
+ color: var(--ol-foreground-color);
481
+ font-size: 10px;
482
+ text-align: center;
483
+ margin: 1px;
484
+ will-change: contents, width;
485
+ transition: all 0.25s;
486
+ }
487
+
488
+ .ol-scale-bar {
489
+ position: absolute;
490
+ bottom: 8px;
491
+ left: 8px;
492
+ }
493
+
494
+ .ol-scale-bar-inner {
495
+ display: flex;
496
+ }
497
+
498
+ .ol-scale-step-marker {
499
+ width: 1px;
500
+ height: 15px;
501
+ background-color: var(--ol-foreground-color);
502
+ float: right;
503
+ z-index: 10;
504
+ }
505
+
506
+ .ol-scale-step-text {
507
+ position: absolute;
508
+ bottom: -5px;
509
+ font-size: 10px;
510
+ z-index: 11;
511
+ color: var(--ol-foreground-color);
512
+ text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
513
+ }
514
+
515
+ .ol-scale-text {
516
+ position: absolute;
517
+ font-size: 12px;
518
+ text-align: center;
519
+ bottom: 25px;
520
+ color: var(--ol-foreground-color);
521
+ text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
522
+ }
523
+
524
+ .ol-scale-singlebar {
525
+ position: relative;
526
+ height: 10px;
527
+ z-index: 9;
528
+ box-sizing: border-box;
529
+ border: 1px solid var(--ol-foreground-color);
530
+ }
531
+
532
+ .ol-scale-singlebar-even {
533
+ background-color: var(--ol-subtle-foreground-color);
534
+ }
535
+
536
+ .ol-scale-singlebar-odd {
537
+ background-color: var(--ol-background-color);
538
+ }
539
+
540
+ .ol-unsupported {
541
+ display: none;
542
+ }
543
+
544
+ .ol-viewport,
545
+ .ol-unselectable {
546
+ -webkit-touch-callout: none;
547
+ -webkit-user-select: none;
548
+ -moz-user-select: none;
549
+ user-select: none;
550
+ -webkit-tap-highlight-color: transparent;
551
+ }
552
+
553
+ .ol-viewport canvas {
554
+ all: unset;
555
+ overflow: hidden;
556
+ }
557
+
558
+ .ol-viewport {
559
+ touch-action: none;
560
+ }
561
+
562
+ .ol-selectable {
563
+ -webkit-touch-callout: default;
564
+ -webkit-user-select: text;
565
+ -moz-user-select: text;
566
+ user-select: text;
567
+ }
568
+
569
+ .ol-grabbing {
570
+ cursor: -webkit-grabbing;
571
+ cursor: -moz-grabbing;
572
+ cursor: grabbing;
573
+ }
574
+
575
+ .ol-grab {
576
+ cursor: move;
577
+ cursor: -webkit-grab;
578
+ cursor: -moz-grab;
579
+ cursor: grab;
580
+ }
581
+
582
+ .ol-control {
583
+ position: absolute;
584
+ background-color: var(--ol-subtle-background-color);
585
+ border-radius: 4px;
586
+ }
587
+
588
+ .ol-zoom {
589
+ top: 0.5em;
590
+ left: 0.5em;
591
+ }
592
+
593
+ .ol-rotate {
594
+ top: 0.5em;
595
+ right: 0.5em;
596
+ transition: opacity 0.25s linear, visibility 0s linear;
597
+ }
598
+
599
+ .ol-rotate.ol-hidden {
600
+ opacity: 0;
601
+ visibility: hidden;
602
+ transition: opacity 0.25s linear, visibility 0s linear 0.25s;
603
+ }
604
+
605
+ .ol-zoom-extent {
606
+ top: 4.643em;
607
+ left: 0.5em;
608
+ }
609
+
610
+ .ol-full-screen {
611
+ right: 0.5em;
612
+ top: 0.5em;
613
+ }
614
+
615
+ .ol-control button {
616
+ display: block;
617
+ margin: 1px;
618
+ padding: 0;
619
+ color: var(--ol-subtle-foreground-color);
620
+ font-weight: bold;
621
+ text-decoration: none;
622
+ font-size: inherit;
623
+ text-align: center;
624
+ height: 1.375em;
625
+ width: 1.375em;
626
+ line-height: 0.4em;
627
+ background-color: var(--ol-background-color);
628
+ border: none;
629
+ border-radius: 2px;
630
+ }
631
+
632
+ .ol-control button::-moz-focus-inner {
633
+ border: none;
634
+ padding: 0;
635
+ }
636
+
637
+ .ol-zoom-extent button {
638
+ line-height: 1.4em;
639
+ }
640
+
641
+ .ol-compass {
642
+ display: block;
643
+ font-weight: normal;
644
+ will-change: transform;
645
+ }
646
+
647
+ .ol-touch .ol-control button {
648
+ font-size: 1.5em;
649
+ }
650
+
651
+ .ol-touch .ol-zoom-extent {
652
+ top: 5.5em;
653
+ }
654
+
655
+ .ol-control button:hover,
656
+ .ol-control button:focus {
657
+ text-decoration: none;
658
+ outline: 1px solid var(--ol-subtle-foreground-color);
659
+ color: var(--ol-foreground-color);
660
+ }
661
+
662
+ .ol-zoom .ol-zoom-in {
663
+ border-radius: 2px 2px 0 0;
664
+ }
665
+
666
+ .ol-zoom .ol-zoom-out {
667
+ border-radius: 0 0 2px 2px;
668
+ }
669
+
670
+ .ol-attribution {
671
+ text-align: right;
672
+ bottom: 0.5em;
673
+ right: 0.5em;
674
+ max-width: calc(100% - 1.3em);
675
+ display: flex;
676
+ flex-flow: row-reverse;
677
+ align-items: center;
678
+ }
679
+
680
+ .ol-attribution a {
681
+ color: var(--ol-subtle-foreground-color);
682
+ text-decoration: none;
683
+ }
684
+
685
+ .ol-attribution ul {
686
+ margin: 0;
687
+ padding: 1px 0.5em;
688
+ color: var(--ol-foreground-color);
689
+ text-shadow: 0 0 2px var(--ol-background-color);
690
+ font-size: 12px;
691
+ }
692
+
693
+ .ol-attribution li {
694
+ display: inline;
695
+ list-style: none;
696
+ }
697
+
698
+ .ol-attribution li:not(:last-child):after {
699
+ content: " ";
700
+ }
701
+
702
+ .ol-attribution img {
703
+ max-height: 2em;
704
+ max-width: inherit;
705
+ vertical-align: middle;
706
+ }
707
+
708
+ .ol-attribution button {
709
+ flex-shrink: 0;
710
+ }
711
+
712
+ .ol-attribution.ol-collapsed ul {
713
+ display: none;
714
+ }
715
+
716
+ .ol-attribution:not(.ol-collapsed) {
717
+ background: var(--ol-partial-background-color);
718
+ }
719
+
720
+ .ol-attribution.ol-uncollapsible {
721
+ bottom: 0;
722
+ right: 0;
723
+ border-radius: 4px 0 0;
724
+ }
725
+
726
+ .ol-attribution.ol-uncollapsible img {
727
+ margin-top: -0.2em;
728
+ max-height: 1.6em;
729
+ }
730
+
731
+ .ol-attribution.ol-uncollapsible button {
732
+ display: none;
733
+ }
734
+
735
+ .ol-zoomslider {
736
+ top: 4.5em;
737
+ left: 0.5em;
738
+ height: 200px;
739
+ }
740
+
741
+ .ol-zoomslider button {
742
+ position: relative;
743
+ height: 10px;
744
+ }
745
+
746
+ .ol-touch .ol-zoomslider {
747
+ top: 5.5em;
748
+ }
749
+
750
+ .ol-overviewmap {
751
+ left: 0.5em;
752
+ bottom: 0.5em;
753
+ }
754
+
755
+ .ol-overviewmap.ol-uncollapsible {
756
+ bottom: 0;
757
+ left: 0;
758
+ border-radius: 0 4px 0 0;
759
+ }
760
+
761
+ .ol-overviewmap .ol-overviewmap-map,
762
+ .ol-overviewmap button {
763
+ display: block;
764
+ }
765
+
766
+ .ol-overviewmap .ol-overviewmap-map {
767
+ border: 1px solid var(--ol-subtle-foreground-color);
768
+ height: 150px;
769
+ width: 150px;
770
+ }
771
+
772
+ .ol-overviewmap:not(.ol-collapsed) button {
773
+ bottom: 0;
774
+ left: 0;
775
+ position: absolute;
776
+ }
777
+
778
+ .ol-overviewmap.ol-collapsed .ol-overviewmap-map,
779
+ .ol-overviewmap.ol-uncollapsible button {
780
+ display: none;
781
+ }
782
+
783
+ .ol-overviewmap:not(.ol-collapsed) {
784
+ background: var(--ol-subtle-background-color);
785
+ }
786
+
787
+ .ol-overviewmap-box {
788
+ border: 1.5px dotted var(--ol-subtle-foreground-color);
789
+ }
790
+
791
+ .ol-overviewmap .ol-overviewmap-box:hover {
792
+ cursor: move;
793
+ }