@kalisio/kdk 2.1.5 → 2.1.7

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 (799) hide show
  1. package/.codeclimate.yml +34 -34
  2. package/.nycrc +5 -5
  3. package/.travis.doc.sh +8 -8
  4. package/.travis.test.sh +40 -40
  5. package/CHANGELOG.md +727 -727
  6. package/LICENSE +21 -21
  7. package/README.md +32 -32
  8. package/core/api/application.js +591 -591
  9. package/core/api/authentication.js +203 -203
  10. package/core/api/db.js +226 -226
  11. package/core/api/hooks/hooks.authentication.js +73 -73
  12. package/core/api/hooks/hooks.authorisations.js +376 -376
  13. package/core/api/hooks/hooks.groups.js +48 -48
  14. package/core/api/hooks/hooks.logger.js +26 -26
  15. package/core/api/hooks/hooks.model.js +290 -290
  16. package/core/api/hooks/hooks.organisations.js +156 -156
  17. package/core/api/hooks/hooks.push.js +56 -56
  18. package/core/api/hooks/hooks.query.js +246 -246
  19. package/core/api/hooks/hooks.schemas.js +73 -73
  20. package/core/api/hooks/hooks.service.js +78 -78
  21. package/core/api/hooks/hooks.storage.js +36 -36
  22. package/core/api/hooks/hooks.users.js +261 -261
  23. package/core/api/hooks/index.js +12 -12
  24. package/core/api/index.js +21 -21
  25. package/core/api/marshall.js +90 -90
  26. package/core/api/models/groups.model.mongodb.js +8 -8
  27. package/core/api/models/organisations.model.mongodb.js +3 -3
  28. package/core/api/models/tags.model.mongodb.js +10 -10
  29. package/core/api/models/users.model.mongodb.js +10 -10
  30. package/core/api/services/account/account.hooks.js +37 -37
  31. package/core/api/services/account/account.service.js +117 -117
  32. package/core/api/services/authorisations/authorisations.hooks.js +33 -33
  33. package/core/api/services/authorisations/authorisations.service.js +139 -139
  34. package/core/api/services/databases/databases.hooks.js +36 -36
  35. package/core/api/services/databases/databases.service.js +5 -5
  36. package/core/api/services/groups/groups.hooks.js +31 -31
  37. package/core/api/services/index.js +126 -126
  38. package/core/api/services/mailer/mailer.hooks.js +35 -35
  39. package/core/api/services/mailer/mailer.service.js +11 -11
  40. package/core/api/services/organisations/organisations.hooks.js +31 -31
  41. package/core/api/services/organisations/organisations.service.js +86 -86
  42. package/core/api/services/push/push.hooks.js +35 -35
  43. package/core/api/services/push/push.service.js +12 -12
  44. package/core/api/services/storage/storage.hooks.js +35 -35
  45. package/core/api/services/storage/storage.service.js +29 -29
  46. package/core/api/services/tags/tags.hooks.js +31 -31
  47. package/core/api/services/users/users.hooks.js +75 -75
  48. package/core/api/utils.js +11 -11
  49. package/core/client/api.js +293 -293
  50. package/core/client/capabilities.js +22 -22
  51. package/core/client/components/KAction.vue +393 -393
  52. package/core/client/components/KAvatar.vue +129 -129
  53. package/core/client/components/KBlock.vue +67 -67
  54. package/core/client/components/KChip.vue +68 -68
  55. package/core/client/components/KChipsPane.vue +103 -103
  56. package/core/client/components/KContent.vue +105 -105
  57. package/core/client/components/KDialog.vue +160 -160
  58. package/core/client/components/KExpandable.vue +49 -49
  59. package/core/client/components/KLogo.vue +32 -32
  60. package/core/client/components/KModal.vue +173 -173
  61. package/core/client/components/KPanel.vue +64 -64
  62. package/core/client/components/KScrollArea.vue +88 -88
  63. package/core/client/components/KSponsor.vue +40 -40
  64. package/core/client/components/KStamp.vue +65 -65
  65. package/core/client/components/KStore.vue +102 -102
  66. package/core/client/components/KTextArea.vue +143 -143
  67. package/core/client/components/KTree.vue +31 -31
  68. package/core/client/components/KVersion.vue +19 -19
  69. package/core/client/components/account/KAccount.vue +68 -68
  70. package/core/client/components/account/KDeleteAccountManager.vue +62 -62
  71. package/core/client/components/account/KEmailManager.vue +128 -128
  72. package/core/client/components/account/KPasswordManager.vue +90 -90
  73. package/core/client/components/account/KProfile.vue +109 -109
  74. package/core/client/components/account/KResetPassword.vue +120 -120
  75. package/core/client/components/account/KSendResetPassword.vue +97 -97
  76. package/core/client/components/account/KSubscription.vue +71 -71
  77. package/core/client/components/account/KSubscriptionsManager.vue +46 -46
  78. package/core/client/components/account/KVerifyEmailManager.vue +105 -105
  79. package/core/client/components/account/index.js +7 -7
  80. package/core/client/components/app/KAbout.vue +98 -98
  81. package/core/client/components/app/KHome.vue +12 -12
  82. package/core/client/components/app/KPlatform.vue +55 -55
  83. package/core/client/components/app/KSettings.vue +42 -42
  84. package/core/client/components/app/KTerms.vue +41 -41
  85. package/core/client/components/app/KTour.vue +448 -448
  86. package/core/client/components/app/KWelcome.vue +133 -133
  87. package/core/client/components/app/index.js +11 -11
  88. package/core/client/components/chart/KChart.vue +197 -197
  89. package/core/client/components/chart/KDataTable.vue +183 -183
  90. package/core/client/components/chart/KStatisticsChart.vue +94 -94
  91. package/core/client/components/chart/KTimeSeriesChart.vue +431 -431
  92. package/core/client/components/chart/index.js +9 -9
  93. package/core/client/components/collection/KBoard.vue +65 -65
  94. package/core/client/components/collection/KCard.vue +196 -196
  95. package/core/client/components/collection/KCardSection.vue +52 -52
  96. package/core/client/components/collection/KColumn.vue +229 -225
  97. package/core/client/components/collection/KFilter.vue +158 -158
  98. package/core/client/components/collection/KGrid.vue +121 -121
  99. package/core/client/components/collection/KHistory.vue +118 -112
  100. package/core/client/components/collection/KHistoryEntry.vue +111 -111
  101. package/core/client/components/collection/KItem.vue +128 -128
  102. package/core/client/components/collection/KList.vue +135 -135
  103. package/core/client/components/collection/KSorter.vue +46 -46
  104. package/core/client/components/collection/KTable.vue +238 -238
  105. package/core/client/components/collection/index.js +19 -19
  106. package/core/client/components/editor/KEditor.vue +52 -52
  107. package/core/client/components/editor/KModalEditor.vue +96 -96
  108. package/core/client/components/editor/index.js +7 -7
  109. package/core/client/components/form/KChipsField.vue +162 -162
  110. package/core/client/components/form/KColorField.vue +69 -69
  111. package/core/client/components/form/KColorScaleField.vue +86 -86
  112. package/core/client/components/form/KDateTimeRangeField.vue +65 -65
  113. package/core/client/components/form/KDatetimeField.vue +70 -70
  114. package/core/client/components/form/KEmailField.vue +33 -33
  115. package/core/client/components/form/KFileField.vue +161 -161
  116. package/core/client/components/form/KForm.vue +247 -247
  117. package/core/client/components/form/KIconField.vue +101 -101
  118. package/core/client/components/form/KItemField.vue +123 -123
  119. package/core/client/components/form/KNumberField.vue +33 -33
  120. package/core/client/components/form/KOptionsField.vue +63 -63
  121. package/core/client/components/form/KPasswordField.vue +57 -57
  122. package/core/client/components/form/KPhoneField.vue +32 -32
  123. package/core/client/components/form/KPropertyItemField.vue +119 -119
  124. package/core/client/components/form/KRoleField.vue +60 -60
  125. package/core/client/components/form/KSelectField.vue +143 -143
  126. package/core/client/components/form/KTextField.vue +48 -48
  127. package/core/client/components/form/KTextareaField.vue +88 -88
  128. package/core/client/components/form/KToggleField.vue +46 -46
  129. package/core/client/components/form/KTokenField.vue +80 -80
  130. package/core/client/components/form/KUnitField.vue +57 -57
  131. package/core/client/components/form/KUrlField.vue +32 -32
  132. package/core/client/components/form/KView.vue +118 -118
  133. package/core/client/components/form/index.js +7 -7
  134. package/core/client/components/index.js +48 -48
  135. package/core/client/components/input/KColorChooser.vue +63 -63
  136. package/core/client/components/input/KIconChooser.vue +308 -308
  137. package/core/client/components/input/KOptionsChooser.vue +122 -122
  138. package/core/client/components/input/KPalette.vue +40 -40
  139. package/core/client/components/input/index.js +11 -11
  140. package/core/client/components/layout/KFab.vue +113 -113
  141. package/core/client/components/layout/KLayout.vue +64 -64
  142. package/core/client/components/layout/KOpener.vue +140 -140
  143. package/core/client/components/layout/KPage.vue +320 -320
  144. package/core/client/components/layout/KPageSticky.vue +53 -53
  145. package/core/client/components/layout/KWindow.vue +443 -443
  146. package/core/client/components/layout/index.js +13 -13
  147. package/core/client/components/media/KColorScale.vue +254 -254
  148. package/core/client/components/media/KImageViewer.vue +44 -44
  149. package/core/client/components/media/KMarkdownViewer.vue +55 -55
  150. package/core/client/components/media/KMediaBrowser.vue +340 -340
  151. package/core/client/components/media/KShape.vue +120 -120
  152. package/core/client/components/media/index.js +13 -13
  153. package/core/client/components/menu/KMenu.vue +147 -147
  154. package/core/client/components/menu/KRadialFab.vue +122 -122
  155. package/core/client/components/menu/KRadialFabItem.vue +73 -73
  156. package/core/client/components/menu/index.js +9 -9
  157. package/core/client/components/screen/KEndpointScreen.vue +80 -80
  158. package/core/client/components/screen/KErrorScreen.vue +24 -24
  159. package/core/client/components/screen/KLoginScreen.vue +84 -85
  160. package/core/client/components/screen/KLogoutScreen.vue +20 -20
  161. package/core/client/components/screen/KRegisterScreen.vue +114 -114
  162. package/core/client/components/screen/KScreen.vue +106 -106
  163. package/core/client/components/screen/KScreenFooter.vue +32 -32
  164. package/core/client/components/screen/KScreenHeader.vue +17 -17
  165. package/core/client/components/screen/index.js +5 -5
  166. package/core/client/components/team/KAddMember.vue +375 -375
  167. package/core/client/components/team/KAddTag.vue +121 -121
  168. package/core/client/components/team/KChangeRole.vue +118 -118
  169. package/core/client/components/team/KGroupCard.vue +110 -110
  170. package/core/client/components/team/KGroupsActivity.vue +66 -66
  171. package/core/client/components/team/KJoinGroup.vue +132 -132
  172. package/core/client/components/team/KMemberCard.vue +328 -328
  173. package/core/client/components/team/KMemberFilter.vue +49 -49
  174. package/core/client/components/team/KMembersActivity.vue +126 -126
  175. package/core/client/components/team/KOrganisationsActivity.vue +53 -53
  176. package/core/client/components/team/KTagCard.vue +72 -72
  177. package/core/client/components/team/KTagsActivity.vue +61 -61
  178. package/core/client/components/team/index.js +9 -9
  179. package/core/client/components/time/KAbsoluteTimeRange.vue +183 -183
  180. package/core/client/components/time/KDate.vue +75 -75
  181. package/core/client/components/time/KDateTime.vue +172 -172
  182. package/core/client/components/time/KDateTimeRange.vue +118 -118
  183. package/core/client/components/time/KRelativeTimeRanges.vue +193 -193
  184. package/core/client/components/time/KTime.vue +74 -74
  185. package/core/client/components/time/index.js +7 -7
  186. package/core/client/components/viewer/KModalViewer.vue +47 -47
  187. package/core/client/components/viewer/KViewer.vue +30 -30
  188. package/core/client/composables/activity.js +67 -67
  189. package/core/client/composables/collection.js +181 -181
  190. package/core/client/composables/index.js +8 -8
  191. package/core/client/composables/pwa.js +71 -71
  192. package/core/client/composables/schema.js +64 -64
  193. package/core/client/composables/selection.js +88 -88
  194. package/core/client/composables/session.js +172 -172
  195. package/core/client/composables/store.js +49 -49
  196. package/core/client/composables/version.js +47 -47
  197. package/core/client/events.js +3 -3
  198. package/core/client/filter.js +60 -60
  199. package/core/client/guards.js +101 -101
  200. package/core/client/hooks/hooks.events.js +7 -7
  201. package/core/client/hooks/hooks.logger.js +24 -24
  202. package/core/client/hooks/hooks.users.js +22 -22
  203. package/core/client/hooks/index.js +3 -3
  204. package/core/client/i18n/core_en.json +845 -845
  205. package/core/client/i18n/core_fr.json +843 -843
  206. package/core/client/i18n.js +88 -88
  207. package/core/client/index.js +84 -84
  208. package/core/client/layout.js +323 -323
  209. package/core/client/local-storage.js +28 -28
  210. package/core/client/mixins/index.js +12 -12
  211. package/core/client/mixins/mixin.account.js +61 -61
  212. package/core/client/mixins/mixin.base-activity.js +232 -232
  213. package/core/client/mixins/mixin.base-collection.js +162 -162
  214. package/core/client/mixins/mixin.base-context.js +54 -54
  215. package/core/client/mixins/mixin.base-editor.js +194 -194
  216. package/core/client/mixins/mixin.base-field.js +105 -105
  217. package/core/client/mixins/mixin.base-item.js +166 -166
  218. package/core/client/mixins/mixin.base-modal.js +36 -36
  219. package/core/client/mixins/mixin.base-viewer.js +43 -43
  220. package/core/client/mixins/mixin.object-proxy.js +46 -46
  221. package/core/client/mixins/mixin.schema-proxy.js +97 -97
  222. package/core/client/mixins/mixin.service.js +22 -22
  223. package/core/client/reader.js +65 -65
  224. package/core/client/readers/index.js +3 -3
  225. package/core/client/readers/reader.blob.js +39 -39
  226. package/core/client/readers/reader.csv.js +36 -36
  227. package/core/client/readers/reader.json.js +34 -34
  228. package/core/client/search.js +47 -47
  229. package/core/client/services/index.js +49 -49
  230. package/core/client/services/local-settings.service.js +67 -67
  231. package/core/client/sorter.js +31 -31
  232. package/core/client/storage.js +102 -102
  233. package/core/client/store.js +39 -39
  234. package/core/client/theme.js +40 -40
  235. package/core/client/time.js +167 -167
  236. package/core/client/units.js +218 -218
  237. package/core/client/utils/index.js +203 -203
  238. package/core/client/utils/utils.account.js +52 -52
  239. package/core/client/utils/utils.colors.js +36 -36
  240. package/core/client/utils/utils.content.js +185 -185
  241. package/core/client/utils/utils.locale.js +28 -28
  242. package/core/client/utils/utils.platform.js +11 -11
  243. package/core/client/utils/utils.push.js +53 -53
  244. package/core/client/utils/utils.pwa.js +62 -62
  245. package/core/client/utils/utils.session.js +89 -89
  246. package/core/common/errors.js +1 -1
  247. package/core/common/index.js +10 -10
  248. package/core/common/permissions.js +318 -318
  249. package/core/common/schema.js +35 -35
  250. package/core/common/schemas/groups.create.json +28 -28
  251. package/core/common/schemas/groups.update.json +28 -28
  252. package/core/common/schemas/organisations.create.json +28 -28
  253. package/core/common/schemas/organisations.update.json +49 -49
  254. package/core/common/schemas/settings.update.json +234 -234
  255. package/core/common/schemas/tags.create.json +35 -35
  256. package/core/common/schemas/tags.update.json +35 -35
  257. package/core/common/schemas/users.update-profile.json +33 -33
  258. package/core/common/utils.js +45 -45
  259. package/core.api.js +5 -5
  260. package/core.client.js +5 -5
  261. package/core.common.js +1 -1
  262. package/coverage/core/api/application.js.html +272 -332
  263. package/coverage/core/api/authentication.js.html +56 -56
  264. package/coverage/core/api/db.js.html +132 -144
  265. package/coverage/core/api/hooks/hooks.account.js.html +1 -1
  266. package/coverage/core/api/hooks/hooks.authentication.js.html +12 -12
  267. package/coverage/core/api/hooks/hooks.authorisations.js.html +187 -199
  268. package/coverage/core/api/hooks/{hooks.push.js.html → hooks.devices.js.html} +56 -77
  269. package/coverage/core/api/hooks/hooks.groups.js.html +7 -7
  270. package/coverage/core/api/hooks/hooks.logger.js.html +18 -18
  271. package/coverage/core/api/hooks/hooks.model.js.html +160 -166
  272. package/coverage/core/api/hooks/hooks.organisations.js.html +406 -136
  273. package/coverage/core/api/hooks/hooks.pusher.js.html +730 -0
  274. package/coverage/core/api/hooks/hooks.query.js.html +129 -129
  275. package/coverage/core/api/hooks/hooks.schemas.js.html +22 -82
  276. package/coverage/core/api/hooks/hooks.service.js.html +13 -13
  277. package/coverage/core/api/hooks/hooks.storage.js.html +7 -7
  278. package/coverage/core/api/hooks/hooks.tags.js.html +1 -1
  279. package/coverage/core/api/hooks/hooks.users.js.html +126 -63
  280. package/coverage/core/api/hooks/index.html +119 -74
  281. package/coverage/core/api/hooks/index.js.html +26 -17
  282. package/coverage/core/api/index.html +26 -41
  283. package/coverage/core/api/index.js.html +17 -17
  284. package/coverage/core/api/marshall.js.html +21 -21
  285. package/coverage/core/api/models/groups.model.mongodb.js.html +8 -8
  286. package/coverage/core/api/models/index.html +1 -1
  287. package/coverage/core/api/models/organisations.model.mongodb.js.html +1 -1
  288. package/coverage/core/api/models/tags.model.mongodb.js.html +10 -10
  289. package/coverage/core/api/models/users.model.mongodb.js.html +1 -1
  290. package/coverage/core/api/oauth2-handler.js.html +202 -0
  291. package/coverage/core/api/oauth2-verifier.js.html +355 -0
  292. package/coverage/core/api/services/account/account.hooks.js.html +4 -4
  293. package/coverage/core/api/services/account/account.service.js.html +15 -12
  294. package/coverage/core/api/services/account/index.html +10 -10
  295. package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
  296. package/coverage/core/api/services/authorisations/authorisations.service.js.html +77 -77
  297. package/coverage/core/api/services/authorisations/index.html +1 -1
  298. package/coverage/core/api/services/databases/databases.hooks.js.html +1 -1
  299. package/coverage/core/api/services/databases/databases.service.js.html +1 -1
  300. package/coverage/core/api/services/databases/index.html +1 -1
  301. package/coverage/core/api/services/devices/devices.hooks.js.html +190 -0
  302. package/coverage/core/api/services/devices/devices.service.js.html +382 -0
  303. package/coverage/core/api/services/devices/index.html +131 -0
  304. package/coverage/core/api/services/groups/groups.hooks.js.html +13 -7
  305. package/coverage/core/api/services/groups/index.html +5 -5
  306. package/coverage/core/api/services/index.html +19 -19
  307. package/coverage/core/api/services/index.js.html +80 -83
  308. package/coverage/core/api/services/mailer/index.html +1 -1
  309. package/coverage/core/api/services/mailer/mailer.hooks.js.html +1 -1
  310. package/coverage/core/api/services/mailer/mailer.service.js.html +1 -1
  311. package/coverage/core/api/services/organisations/index.html +11 -11
  312. package/coverage/core/api/services/organisations/organisations.hooks.js.html +1 -1
  313. package/coverage/core/api/services/organisations/organisations.service.js.html +32 -56
  314. package/coverage/{lcov-report/core/api/services/push → core/api/services/pusher}/index.html +36 -21
  315. package/coverage/{lcov-report/core/api/services/push/push.service.js.html → core/api/services/pusher/pusher.channels.js.html} +11 -38
  316. package/coverage/{lcov-report/core/api/services/push/push.hooks.js.html → core/api/services/pusher/pusher.hooks.js.html} +8 -8
  317. package/coverage/core/api/services/pusher/pusher.service.js.html +1420 -0
  318. package/coverage/core/api/services/storage/index.html +1 -1
  319. package/coverage/core/api/services/storage/storage.hooks.js.html +1 -1
  320. package/coverage/core/api/services/storage/storage.service.js.html +22 -22
  321. package/coverage/core/api/services/tags/index.html +7 -7
  322. package/coverage/core/api/services/tags/tags.hooks.js.html +54 -12
  323. package/coverage/core/api/services/users/index.html +1 -1
  324. package/coverage/core/api/services/users/users.hooks.js.html +3 -3
  325. package/coverage/core/common/errors.js.html +2 -2
  326. package/coverage/core/common/index.html +19 -19
  327. package/coverage/core/common/index.js.html +11 -11
  328. package/coverage/core/common/permissions.js.html +249 -273
  329. package/coverage/core/common/schema.js.html +23 -23
  330. package/coverage/core/common/utils.js.html +14 -14
  331. package/coverage/index.html +131 -116
  332. package/coverage/lcov-report/core/api/application.js.html +272 -332
  333. package/coverage/lcov-report/core/api/authentication.js.html +56 -56
  334. package/coverage/lcov-report/core/api/db.js.html +132 -144
  335. package/coverage/lcov-report/core/api/hooks/hooks.account.js.html +1 -1
  336. package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +12 -12
  337. package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +187 -199
  338. package/coverage/lcov-report/core/api/hooks/{hooks.push.js.html → hooks.devices.js.html} +56 -77
  339. package/coverage/lcov-report/core/api/hooks/hooks.groups.js.html +7 -7
  340. package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +18 -18
  341. package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +160 -166
  342. package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +406 -136
  343. package/coverage/lcov-report/core/api/hooks/hooks.pusher.js.html +730 -0
  344. package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +129 -129
  345. package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +22 -82
  346. package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +13 -13
  347. package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +7 -7
  348. package/coverage/lcov-report/core/api/hooks/hooks.tags.js.html +1 -1
  349. package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +126 -63
  350. package/coverage/lcov-report/core/api/hooks/index.html +119 -74
  351. package/coverage/lcov-report/core/api/hooks/index.js.html +26 -17
  352. package/coverage/lcov-report/core/api/index.html +26 -41
  353. package/coverage/lcov-report/core/api/index.js.html +17 -17
  354. package/coverage/lcov-report/core/api/marshall.js.html +21 -21
  355. package/coverage/lcov-report/core/api/models/groups.model.mongodb.js.html +8 -8
  356. package/coverage/lcov-report/core/api/models/index.html +1 -1
  357. package/coverage/lcov-report/core/api/models/organisations.model.mongodb.js.html +1 -1
  358. package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +10 -10
  359. package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +1 -1
  360. package/coverage/lcov-report/core/api/oauth2-handler.js.html +202 -0
  361. package/coverage/lcov-report/core/api/oauth2-verifier.js.html +355 -0
  362. package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +4 -4
  363. package/coverage/lcov-report/core/api/services/account/account.service.js.html +15 -12
  364. package/coverage/lcov-report/core/api/services/account/index.html +10 -10
  365. package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
  366. package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +77 -77
  367. package/coverage/lcov-report/core/api/services/authorisations/index.html +1 -1
  368. package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +1 -1
  369. package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +1 -1
  370. package/coverage/lcov-report/core/api/services/databases/index.html +1 -1
  371. package/coverage/lcov-report/core/api/services/devices/devices.hooks.js.html +190 -0
  372. package/coverage/lcov-report/core/api/services/devices/devices.service.js.html +382 -0
  373. package/coverage/lcov-report/core/api/services/devices/index.html +131 -0
  374. package/coverage/lcov-report/core/api/services/groups/groups.hooks.js.html +13 -7
  375. package/coverage/lcov-report/core/api/services/groups/index.html +5 -5
  376. package/coverage/lcov-report/core/api/services/index.html +19 -19
  377. package/coverage/lcov-report/core/api/services/index.js.html +80 -83
  378. package/coverage/lcov-report/core/api/services/mailer/index.html +1 -1
  379. package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +1 -1
  380. package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +1 -1
  381. package/coverage/lcov-report/core/api/services/organisations/index.html +11 -11
  382. package/coverage/lcov-report/core/api/services/organisations/organisations.hooks.js.html +1 -1
  383. package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +32 -56
  384. package/coverage/{core/api/services/push → lcov-report/core/api/services/pusher}/index.html +36 -21
  385. package/coverage/{core/api/services/push/push.service.js.html → lcov-report/core/api/services/pusher/pusher.channels.js.html} +11 -38
  386. package/coverage/{core/api/services/push/push.hooks.js.html → lcov-report/core/api/services/pusher/pusher.hooks.js.html} +8 -8
  387. package/coverage/lcov-report/core/api/services/pusher/pusher.service.js.html +1420 -0
  388. package/coverage/lcov-report/core/api/services/storage/index.html +1 -1
  389. package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +1 -1
  390. package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +22 -22
  391. package/coverage/lcov-report/core/api/services/tags/index.html +7 -7
  392. package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +54 -12
  393. package/coverage/lcov-report/core/api/services/users/index.html +1 -1
  394. package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +3 -3
  395. package/coverage/lcov-report/core/common/errors.js.html +2 -2
  396. package/coverage/lcov-report/core/common/index.html +19 -19
  397. package/coverage/lcov-report/core/common/index.js.html +11 -11
  398. package/coverage/lcov-report/core/common/permissions.js.html +249 -273
  399. package/coverage/lcov-report/core/common/schema.js.html +23 -23
  400. package/coverage/lcov-report/core/common/utils.js.html +14 -14
  401. package/coverage/lcov-report/index.html +131 -116
  402. package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +48 -48
  403. package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +51 -51
  404. package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +40 -46
  405. package/coverage/lcov-report/map/api/hooks/index.html +49 -49
  406. package/coverage/lcov-report/map/api/hooks/index.js.html +16 -16
  407. package/coverage/lcov-report/map/api/index.html +26 -26
  408. package/coverage/lcov-report/map/api/index.js.html +38 -38
  409. package/coverage/lcov-report/map/api/marshall.js.html +17 -17
  410. package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +1 -1
  411. package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +1 -1
  412. package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +11 -5
  413. package/coverage/lcov-report/map/api/models/index.html +5 -5
  414. package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +1 -1
  415. package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +1 -1
  416. package/coverage/lcov-report/map/api/services/alerts/index.html +1 -1
  417. package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +1 -1
  418. package/coverage/lcov-report/map/api/services/catalog/index.html +1 -1
  419. package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1 -1
  420. package/coverage/lcov-report/map/api/services/daptiles/index.html +1 -1
  421. package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +1 -1
  422. package/coverage/lcov-report/map/api/services/features/features.service.js.html +1 -1
  423. package/coverage/lcov-report/map/api/services/features/index.html +1 -1
  424. package/coverage/lcov-report/map/api/services/geocoder/geocoder.hooks.js.html +1 -1
  425. package/coverage/lcov-report/map/api/services/geocoder/geocoder.service.js.html +1 -1
  426. package/coverage/lcov-report/map/api/services/geocoder/index.html +1 -1
  427. package/coverage/lcov-report/map/api/services/index.html +17 -17
  428. package/coverage/lcov-report/map/api/services/index.js.html +81 -90
  429. package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +68 -68
  430. package/coverage/lcov-report/map/common/errors.js.html +16 -16
  431. package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +53 -53
  432. package/coverage/lcov-report/map/common/grid.js.html +298 -298
  433. package/coverage/lcov-report/map/common/index.html +148 -148
  434. package/coverage/lcov-report/map/common/index.js.html +67 -67
  435. package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +68 -68
  436. package/coverage/lcov-report/map/common/moment-utils.js.html +18 -18
  437. package/coverage/lcov-report/map/common/opendap-grid-source.js.html +60 -60
  438. package/coverage/lcov-report/map/common/opendap-utils.js.html +113 -113
  439. package/coverage/lcov-report/map/common/permissions.js.html +11 -11
  440. package/coverage/lcov-report/map/common/time-based-grid-source.js.html +54 -54
  441. package/coverage/lcov-report/map/common/tms-utils.js.html +1 -1
  442. package/coverage/lcov-report/map/common/wcs-grid-source.js.html +42 -42
  443. package/coverage/lcov-report/map/common/wcs-utils.js.html +211 -211
  444. package/coverage/lcov-report/map/common/weacast-grid-source.js.html +72 -72
  445. package/coverage/lcov-report/map/common/wfs-utils.js.html +1 -1
  446. package/coverage/lcov-report/map/common/wms-utils.js.html +1 -1
  447. package/coverage/lcov-report/map/common/wmts-utils.js.html +1 -1
  448. package/coverage/lcov.info +5502 -3743
  449. package/coverage/map/api/hooks/hooks.catalog.js.html +48 -48
  450. package/coverage/map/api/hooks/hooks.features.js.html +51 -51
  451. package/coverage/map/api/hooks/hooks.query.js.html +40 -46
  452. package/coverage/map/api/hooks/index.html +49 -49
  453. package/coverage/map/api/hooks/index.js.html +16 -16
  454. package/coverage/map/api/index.html +26 -26
  455. package/coverage/map/api/index.js.html +38 -38
  456. package/coverage/map/api/marshall.js.html +17 -17
  457. package/coverage/map/api/models/alerts.model.mongodb.js.html +1 -1
  458. package/coverage/map/api/models/catalog.model.mongodb.js.html +1 -1
  459. package/coverage/map/api/models/features.model.mongodb.js.html +11 -5
  460. package/coverage/map/api/models/index.html +5 -5
  461. package/coverage/map/api/services/alerts/alerts.hooks.js.html +1 -1
  462. package/coverage/map/api/services/alerts/alerts.service.js.html +1 -1
  463. package/coverage/map/api/services/alerts/index.html +1 -1
  464. package/coverage/map/api/services/catalog/catalog.hooks.js.html +1 -1
  465. package/coverage/map/api/services/catalog/index.html +1 -1
  466. package/coverage/map/api/services/daptiles/daptiles.service.js.html +1 -1
  467. package/coverage/map/api/services/daptiles/index.html +1 -1
  468. package/coverage/map/api/services/features/features.hooks.js.html +1 -1
  469. package/coverage/map/api/services/features/features.service.js.html +1 -1
  470. package/coverage/map/api/services/features/index.html +1 -1
  471. package/coverage/map/api/services/geocoder/geocoder.hooks.js.html +1 -1
  472. package/coverage/map/api/services/geocoder/geocoder.service.js.html +1 -1
  473. package/coverage/map/api/services/geocoder/index.html +1 -1
  474. package/coverage/map/api/services/index.html +17 -17
  475. package/coverage/map/api/services/index.js.html +81 -90
  476. package/coverage/map/common/dynamic-grid-source.js.html +68 -68
  477. package/coverage/map/common/errors.js.html +16 -16
  478. package/coverage/map/common/geotiff-grid-source.js.html +53 -53
  479. package/coverage/map/common/grid.js.html +298 -298
  480. package/coverage/map/common/index.html +148 -148
  481. package/coverage/map/common/index.js.html +67 -67
  482. package/coverage/map/common/meteo-model-grid-source.js.html +68 -68
  483. package/coverage/map/common/moment-utils.js.html +18 -18
  484. package/coverage/map/common/opendap-grid-source.js.html +60 -60
  485. package/coverage/map/common/opendap-utils.js.html +113 -113
  486. package/coverage/map/common/permissions.js.html +11 -11
  487. package/coverage/map/common/time-based-grid-source.js.html +54 -54
  488. package/coverage/map/common/tms-utils.js.html +1 -1
  489. package/coverage/map/common/wcs-grid-source.js.html +42 -42
  490. package/coverage/map/common/wcs-utils.js.html +211 -211
  491. package/coverage/map/common/weacast-grid-source.js.html +72 -72
  492. package/coverage/map/common/wfs-utils.js.html +1 -1
  493. package/coverage/map/common/wms-utils.js.html +1 -1
  494. package/coverage/map/common/wmts-utils.js.html +1 -1
  495. package/coverage/tmp/coverage-19264-1684834146599-0.json +1 -0
  496. package/coverage/tmp/coverage-2508-1684834182408-0.json +1 -0
  497. package/coverage/tmp/coverage-25908-1684834189369-0.json +1 -0
  498. package/coverage/tmp/coverage-32364-1684834189420-0.json +1 -0
  499. package/coverage/tmp/coverage-36604-1684834189485-0.json +1 -0
  500. package/coverage/tmp/coverage-40652-1684834182272-0.json +1 -0
  501. package/coverage/tmp/coverage-48484-1684834182342-0.json +1 -0
  502. package/coverage/tmp/coverage-51652-1684834189584-0.json +1 -0
  503. package/coverage/tmp/coverage-9776-1684834189519-0.json +1 -0
  504. package/extras/css/core.variables.scss +38 -38
  505. package/extras/icons/center-on-feature.svg +315 -315
  506. package/extras/icons/json.svg +83 -83
  507. package/extras/icons/map-legend.svg +251 -251
  508. package/extras/icons/target.svg +37 -37
  509. package/extras/tours/core/account-profile.js +32 -32
  510. package/extras/tours/core/account.js +143 -143
  511. package/extras/tours/core/add-member.js +74 -74
  512. package/extras/tours/core/add-tag.js +12 -12
  513. package/extras/tours/core/create-group.js +19 -19
  514. package/extras/tours/core/create-organisation.js +19 -19
  515. package/extras/tours/core/create-tag.js +26 -26
  516. package/extras/tours/core/edit-member-role.js +13 -13
  517. package/extras/tours/core/groups.js +65 -65
  518. package/extras/tours/core/join-group.js +13 -13
  519. package/extras/tours/core/login.js +41 -41
  520. package/extras/tours/core/members.js +108 -108
  521. package/extras/tours/core/register.js +61 -61
  522. package/extras/tours/core/send-reset-password.js +14 -14
  523. package/extras/tours/core/tags.js +65 -65
  524. package/extras/tours/map/add-layer.js +28 -28
  525. package/extras/tours/map/catalog-categories.js +59 -59
  526. package/extras/tours/map/catalog-panel.js +112 -112
  527. package/extras/tours/map/connect-layer.js +39 -39
  528. package/extras/tours/map/create-layer.js +33 -33
  529. package/extras/tours/map/create-view.js +25 -25
  530. package/extras/tours/map/fab.js +26 -26
  531. package/extras/tours/map/import-layer.js +33 -33
  532. package/extras/tours/map/navigation-bar.js +185 -185
  533. package/extras/tours/map/side-nav.js +35 -35
  534. package/extras/tours/map/timeline.js +77 -77
  535. package/map/api/config/categories.cjs +42 -42
  536. package/map/api/config/layers.cjs +43 -43
  537. package/map/api/config/sublegends.cjs +42 -42
  538. package/map/api/hooks/hooks.catalog.js +85 -85
  539. package/map/api/hooks/hooks.features.js +84 -84
  540. package/map/api/hooks/hooks.query.js +361 -361
  541. package/map/api/hooks/index.js +3 -3
  542. package/map/api/index.js +18 -18
  543. package/map/api/marshall.js +31 -31
  544. package/map/api/models/alerts.model.mongodb.js +7 -7
  545. package/map/api/models/catalog.model.mongodb.js +14 -14
  546. package/map/api/models/features.model.mongodb.js +37 -37
  547. package/map/api/services/alerts/alerts.hooks.js +63 -63
  548. package/map/api/services/alerts/alerts.service.js +175 -175
  549. package/map/api/services/catalog/catalog.hooks.js +76 -76
  550. package/map/api/services/daptiles/daptiles.service.js +475 -475
  551. package/map/api/services/features/features.hooks.js +40 -40
  552. package/map/api/services/features/features.service.js +52 -52
  553. package/map/api/services/geocoder/geocoder.hooks.js +31 -31
  554. package/map/api/services/geocoder/geocoder.service.js +79 -79
  555. package/map/api/services/index.js +228 -228
  556. package/map/client/canvas-draw-context.js +16 -16
  557. package/map/client/cesium/utils.js +133 -133
  558. package/map/client/components/KCaptureToolbar.vue +155 -155
  559. package/map/client/components/KColorLegend.vue +349 -349
  560. package/map/client/components/KCompass.vue +143 -143
  561. package/map/client/components/KEditLayerData.vue +85 -85
  562. package/map/client/components/KFeatureActionButton.vue +119 -119
  563. package/map/client/components/KFeatureEditor.vue +92 -92
  564. package/map/client/components/KFeaturesChart.vue +285 -285
  565. package/map/client/components/KFeaturesFilter.vue +259 -259
  566. package/map/client/components/KFeaturesTable.vue +99 -99
  567. package/map/client/components/KLayerEditionToolbar.vue +54 -54
  568. package/map/client/components/KLayerEditor.vue +48 -48
  569. package/map/client/components/KLayerStyleEditor.vue +118 -118
  570. package/map/client/components/KLayerStyleForm.vue +906 -906
  571. package/map/client/components/KLevelSlider.vue +100 -100
  572. package/map/client/components/KMeasureTool.vue +568 -568
  573. package/map/client/components/KPositionIndicator.vue +90 -90
  574. package/map/client/components/KTimeline.vue +293 -293
  575. package/map/client/components/KTimezoneMap.vue +158 -158
  576. package/map/client/components/KUrlLegend.vue +122 -122
  577. package/map/client/components/catalog/KAddLayer.vue +66 -66
  578. package/map/client/components/catalog/KBaseLayersSelector.vue +114 -114
  579. package/map/client/components/catalog/KConnectLayer.vue +323 -323
  580. package/map/client/components/catalog/KCreateLayer.vue +184 -184
  581. package/map/client/components/catalog/KCreateView.vue +108 -108
  582. package/map/client/components/catalog/KFilteredLayerItem.vue +53 -53
  583. package/map/client/components/catalog/KImportLayer.vue +168 -168
  584. package/map/client/components/catalog/KLayerCategories.vue +274 -274
  585. package/map/client/components/catalog/KLayerItem.vue +70 -70
  586. package/map/client/components/catalog/KLayersPanel.vue +137 -137
  587. package/map/client/components/catalog/KLayersSelector.vue +78 -78
  588. package/map/client/components/catalog/KViewSelector.vue +46 -46
  589. package/map/client/components/catalog/KViewsPanel.vue +123 -123
  590. package/map/client/components/catalog/KWeatherLayersSelector.vue +129 -129
  591. package/map/client/components/form/KDirectionField.vue +113 -113
  592. package/map/client/components/form/KLayerCategoryField.vue +46 -46
  593. package/map/client/components/form/KLocationField.vue +189 -189
  594. package/map/client/components/form/KOwsLayerField.vue +130 -130
  595. package/map/client/components/form/KOwsServiceField.vue +238 -238
  596. package/map/client/components/form/KTimezoneField.vue +142 -142
  597. package/map/client/components/index.js +1 -1
  598. package/map/client/components/legend/KColorScaleLegend.vue +31 -31
  599. package/map/client/components/legend/KImageLegend.vue +52 -52
  600. package/map/client/components/legend/KLegend.vue +191 -191
  601. package/map/client/components/legend/KLegendRenderer.vue +20 -20
  602. package/map/client/components/legend/KSymbolsLegend.vue +101 -101
  603. package/map/client/components/location/KGeocodersFilter.vue +44 -44
  604. package/map/client/components/location/KLocationCardSection.vue +61 -61
  605. package/map/client/components/location/KLocationMap.vue +280 -280
  606. package/map/client/components/location/KLocationSearch.vue +144 -144
  607. package/map/client/components/location/KLocationTip.vue +29 -29
  608. package/map/client/components/tools/KGeolocateTool.vue +46 -46
  609. package/map/client/components/tools/KSearchTool.vue +93 -93
  610. package/map/client/components/widget/KElevationProfile.vue +454 -454
  611. package/map/client/components/widget/KInformationBox.vue +145 -145
  612. package/map/client/components/widget/KMapillaryViewer.vue +178 -178
  613. package/map/client/components/widget/KStackableTimeSeries.vue +214 -214
  614. package/map/client/components/widget/KTimeSeries.vue +500 -500
  615. package/map/client/composables/activity.js +88 -88
  616. package/map/client/composables/highlight.js +214 -214
  617. package/map/client/composables/index.js +7 -7
  618. package/map/client/composables/location.js +53 -53
  619. package/map/client/composables/measure.js +42 -42
  620. package/map/client/composables/probe.js +133 -133
  621. package/map/client/composables/selection.js +300 -300
  622. package/map/client/composables/weather.js +213 -213
  623. package/map/client/elevation-utils.js +258 -258
  624. package/map/client/geolocation.js +119 -119
  625. package/map/client/globe.js +13 -13
  626. package/map/client/i18n/map_en.json +645 -645
  627. package/map/client/i18n/map_fr.json +646 -646
  628. package/map/client/index.js +18 -18
  629. package/map/client/init.js +80 -80
  630. package/map/client/leaflet/GSMaPLayer.js +55 -55
  631. package/map/client/leaflet/GradientPath.js +180 -180
  632. package/map/client/leaflet/MaskLayer.js +57 -57
  633. package/map/client/leaflet/TiledFeatureLayer.js +572 -572
  634. package/map/client/leaflet/TiledMeshLayer.js +486 -486
  635. package/map/client/leaflet/TiledWindLayer.js +384 -384
  636. package/map/client/leaflet/utils.js +246 -246
  637. package/map/client/map.js +15 -15
  638. package/map/client/mixins/globe/index.js +8 -8
  639. package/map/client/mixins/globe/mixin.base-globe.js +462 -462
  640. package/map/client/mixins/globe/mixin.file-layers.js +40 -40
  641. package/map/client/mixins/globe/mixin.geojson-layers.js +314 -314
  642. package/map/client/mixins/globe/mixin.globe-activity.js +52 -52
  643. package/map/client/mixins/globe/mixin.opendap-layers.js +51 -51
  644. package/map/client/mixins/globe/mixin.popup.js +82 -82
  645. package/map/client/mixins/globe/mixin.style.js +110 -110
  646. package/map/client/mixins/globe/mixin.tooltip.js +101 -101
  647. package/map/client/mixins/index.js +9 -9
  648. package/map/client/mixins/map/index.js +16 -16
  649. package/map/client/mixins/map/mixin.base-map.js +592 -592
  650. package/map/client/mixins/map/mixin.canvas-layers.js +529 -529
  651. package/map/client/mixins/map/mixin.edit-layers.js +474 -474
  652. package/map/client/mixins/map/mixin.file-layers.js +49 -49
  653. package/map/client/mixins/map/mixin.forecast-layers.js +79 -79
  654. package/map/client/mixins/map/mixin.geojson-layers.js +557 -557
  655. package/map/client/mixins/map/mixin.georaster-layers.js +114 -114
  656. package/map/client/mixins/map/mixin.gsmap-layers.js +27 -27
  657. package/map/client/mixins/map/mixin.heatmap-layers.js +116 -116
  658. package/map/client/mixins/map/mixin.map-activity.js +38 -38
  659. package/map/client/mixins/map/mixin.mapillary-layers.js +45 -45
  660. package/map/client/mixins/map/mixin.popup.js +53 -53
  661. package/map/client/mixins/map/mixin.style.js +73 -73
  662. package/map/client/mixins/map/mixin.tiled-mesh-layers.js +120 -120
  663. package/map/client/mixins/map/mixin.tiled-wind-layers.js +126 -126
  664. package/map/client/mixins/map/mixin.tooltip.js +47 -47
  665. package/map/client/mixins/mixin.activity.js +477 -477
  666. package/map/client/mixins/mixin.catalog-panel.js +26 -26
  667. package/map/client/mixins/mixin.context.js +262 -262
  668. package/map/client/mixins/mixin.feature-selection.js +28 -28
  669. package/map/client/mixins/mixin.feature-service.js +403 -403
  670. package/map/client/mixins/mixin.infobox.js +29 -29
  671. package/map/client/mixins/mixin.levels.js +66 -66
  672. package/map/client/mixins/mixin.style.js +29 -29
  673. package/map/client/mixins/mixin.weacast.js +212 -212
  674. package/map/client/pixi-utils.js +256 -256
  675. package/map/client/readers/index.js +4 -4
  676. package/map/client/readers/reader.geojson.js +64 -64
  677. package/map/client/readers/reader.gpx.js +36 -36
  678. package/map/client/readers/reader.kml.js +36 -36
  679. package/map/client/readers/reader.shp.js +82 -82
  680. package/map/client/utils/index.js +3 -0
  681. package/map/client/utils/utils.js +228 -0
  682. package/map/client/utils/utils.location.js +45 -45
  683. package/map/client/utils/utils.schema.js +75 -0
  684. package/map/client/utils.all.js +3 -0
  685. package/map/client/utils.globe.js +2 -0
  686. package/map/client/utils.js +4 -303
  687. package/map/client/utils.map.js +2 -0
  688. package/map/common/dynamic-grid-source.js +127 -127
  689. package/map/common/errors.js +3 -3
  690. package/map/common/geotiff-grid-source.js +150 -150
  691. package/map/common/grid.js +509 -509
  692. package/map/common/index.js +29 -29
  693. package/map/common/meteo-model-grid-source.js +157 -157
  694. package/map/common/moment-utils.js +24 -24
  695. package/map/common/opendap-grid-source.js +261 -261
  696. package/map/common/opendap-utils.js +247 -247
  697. package/map/common/permissions.js +11 -11
  698. package/map/common/schemas/catalog.update.json +28 -28
  699. package/map/common/time-based-grid-source.js +111 -111
  700. package/map/common/tms-utils.js +63 -63
  701. package/map/common/wcs-grid-source.js +93 -93
  702. package/map/common/wcs-utils.js +167 -167
  703. package/map/common/weacast-grid-source.js +316 -316
  704. package/map/common/wfs-utils.js +163 -163
  705. package/map/common/wms-utils.js +117 -117
  706. package/map/common/wmts-utils.js +154 -154
  707. package/map.api.js +5 -5
  708. package/map.client.globe.js +5 -5
  709. package/map.client.js +5 -5
  710. package/map.client.map.js +5 -5
  711. package/map.common.js +1 -1
  712. package/map.config.cjs +9 -9
  713. package/package.json +161 -161
  714. package/test/api/core/account.test.js +485 -485
  715. package/test/api/core/client.test.js.skip +37 -37
  716. package/test/api/core/config/default.cjs +118 -118
  717. package/test/api/core/config/email-templates/confirmInvitation/html.ejs +18 -18
  718. package/test/api/core/config/email-templates/identityChange/html.ejs +14 -14
  719. package/test/api/core/config/email-templates/newDevice/html.ejs +7 -7
  720. package/test/api/core/config/email-templates/newSubscription/html.ejs +7 -7
  721. package/test/api/core/config/email-templates/passwordChange/html.ejs +5 -5
  722. package/test/api/core/config/email-templates/resendVerifySignup/html.ejs +12 -12
  723. package/test/api/core/config/email-templates/resetPwd/html.ejs +5 -5
  724. package/test/api/core/config/email-templates/sendResetPwd/html.ejs +12 -12
  725. package/test/api/core/config/email-templates/verifySignup/html.ejs +3 -3
  726. package/test/api/core/data/invalid-objects.json +59 -59
  727. package/test/api/core/data/schema.json +57 -57
  728. package/test/api/core/data/valid-objects.json +37 -37
  729. package/test/api/core/hooks.test.js +330 -330
  730. package/test/api/core/index.js +1 -1
  731. package/test/api/core/index.test.js +478 -478
  732. package/test/api/core/push.test.js +197 -197
  733. package/test/api/core/schemas.test.js +82 -82
  734. package/test/api/core/storage.test.js +153 -153
  735. package/test/api/core/team.test.js +670 -670
  736. package/test/api/core/utils.js +92 -92
  737. package/test/api/index.js +3 -3
  738. package/test/api/map/alerts.test.js +560 -560
  739. package/test/api/map/config/default.cjs +125 -125
  740. package/test/api/map/config/layers.json +38 -38
  741. package/test/api/map/data/DescribeCoverage.xml +54 -54
  742. package/test/api/map/data/adsb.observations.json +131 -131
  743. package/test/api/map/data/dataset.grb.das +55 -55
  744. package/test/api/map/data/dataset.grb.dds +17 -17
  745. package/test/api/map/data/vigicrues.observations.json +47041 -47041
  746. package/test/api/map/data/vigicrues.stations.json +15421 -15421
  747. package/test/api/map/data/zones.json +1227 -1227
  748. package/test/api/map/grid-sources.test.js +313 -313
  749. package/test/api/map/hooks.test.js +98 -98
  750. package/test/api/map/index.test.js +563 -563
  751. package/test/api/map/test-log-2022-12-01.log +19 -0
  752. package/test/api/map/test-log-2023-01-05.log +4 -0
  753. package/test/api/map/test-log-2023-01-09.log +3 -0
  754. package/test/api/map/{test-log-2023-09-21.log → test-log-2023-02-05.log} +11 -12
  755. package/test/api/map/test-log-2023-02-14.log +82 -0
  756. package/test/api/map/test-log-2023-02-28.log +28 -0
  757. package/test/api/map/{test-log-2023-07-19.log → test-log-2023-03-02.log} +11 -13
  758. package/test/api/map/test-log-2023-03-06.log +11 -0
  759. package/test/api/map/test-log-2023-03-07.log +61 -0
  760. package/test/api/map/test-log-2023-03-31.log +11 -0
  761. package/test/api/map/test-log-2023-05-23.log +11 -0
  762. package/test/api/map/test-log-2023-05-24.log +11 -0
  763. package/test/client/core/account.js +36 -36
  764. package/test/client/core/api.js +361 -361
  765. package/test/client/core/collection.js +64 -64
  766. package/test/client/core/index.js +8 -8
  767. package/test/client/core/layout.js +116 -116
  768. package/test/client/core/runner.js +224 -224
  769. package/test/client/core/screens.js +35 -35
  770. package/test/client/core/time.js +10 -10
  771. package/test/client/core/utils.js +260 -260
  772. package/test/client/index.js +3 -3
  773. package/test/client/map/catalog.js +193 -175
  774. package/test/client/map/controls.js +41 -41
  775. package/test/client/map/index.js +4 -4
  776. package/test/client/map/time.js +24 -24
  777. package/test/client/map/utils.js +27 -27
  778. package/coverage/core/api/utils.js.html +0 -118
  779. package/coverage/lcov-report/core/api/utils.js.html +0 -118
  780. package/coverage/tmp/coverage-59096-1692631696256-0.json +0 -1
  781. package/coverage/tmp/coverage-59108-1692631696233-0.json +0 -1
  782. package/coverage/tmp/coverage-59119-1692631696222-0.json +0 -1
  783. package/coverage/tmp/coverage-59131-1692631696200-0.json +0 -1
  784. package/coverage/tmp/coverage-59138-1692631696175-0.json +0 -1
  785. package/test/api/core/test-log-2023-07-10.log +0 -2
  786. package/test/api/core/test-log-2023-07-12.log +0 -0
  787. package/test/api/core/test-log-2023-07-18.log +0 -78
  788. package/test/api/core/test-log-2023-07-19.log +0 -44
  789. package/test/api/core/test-log-2023-08-01.log +0 -162
  790. package/test/api/core/test-log-2023-08-21.log +0 -66
  791. package/test/api/core/test-log-2023-08-22.log +0 -96
  792. package/test/api/core/test-log-2023-08-23.log +0 -22
  793. package/test/api/core/test-log-2023-09-20.log +0 -22
  794. package/test/api/core/test-log-2023-09-21.log +0 -105
  795. package/test/api/core/test-log-2023-10-04.log +0 -22
  796. package/test/api/map/test-log-2023-07-18.log +0 -62
  797. package/test/api/map/test-log-2023-08-21.log +0 -65
  798. package/test/api/map/test-log-2023-09-20.log +0 -60
  799. /package/test/api/core/{test-log-2023-07-04.log → test-log-2023-06-05.log} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,727 +1,727 @@
1
- Please refer to GitHub issues for changelog starting from v2.0: https://github.com/kalisio/kdk/issues.
2
-
3
- # Changelog
4
-
5
- ## [v1.7.0](https://github.com/kalisio/kdk/tree/v1.7.0) (2022-08-30)
6
-
7
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.6.0...v1.7.0)
8
-
9
- **Implemented enhancements:**
10
-
11
- - Support level-varying GeoJson layers [\#601](https://github.com/kalisio/kdk/issues/601)
12
- - Support time-varying layers with changing geometry [\#600](https://github.com/kalisio/kdk/issues/600)
13
- - Add a default healthcheck endpoint for applications [\#598](https://github.com/kalisio/kdk/issues/598)
14
- - It should be possible to remove the current home view [\#593](https://github.com/kalisio/kdk/issues/593)
15
- - Inject zoom level in layer property templates [\#572](https://github.com/kalisio/kdk/issues/572)
16
- - Move built-in catalog categories to backend configuration [\#568](https://github.com/kalisio/kdk/issues/568)
17
- - Allow the user to set a time range for timeseries chart [\#565](https://github.com/kalisio/kdk/issues/565)
18
- - Allow to zoom in/out within the timeseries chart [\#564](https://github.com/kalisio/kdk/issues/564)
19
- - Allow to move/resize the Window [\#563](https://github.com/kalisio/kdk/issues/563)
20
- - Migrate to Chart.js 3.x [\#562](https://github.com/kalisio/kdk/issues/562)
21
- - Allow to only request probes at a given zoom level on TiledFeatureLayer [\#545](https://github.com/kalisio/kdk/issues/545)
22
- - Add time zone to time format [\#544](https://github.com/kalisio/kdk/issues/544)
23
- - Provide an elevation profile widget [\#527](https://github.com/kalisio/kdk/issues/527)
24
- - Allow to get the area/perimeter of a feature [\#604](https://github.com/kalisio/kdk/issues/604)
25
- - Update TiledFeatureLayer to share features across zoom levels [\#322](https://github.com/kalisio/kdk/issues/322)
26
- - Layer edition performance overhead in map [\#128](https://github.com/kalisio/kdk/issues/128)
27
- - Improve user-defined feature layers performances by creating appropriate indices [\#111](https://github.com/kalisio/kdk/issues/111)
28
-
29
- **Fixed bugs:**
30
-
31
- - Selecting manager role in KJoinGroup does not work [\#608](https://github.com/kalisio/kdk/issues/608)
32
- - Editing the style of a web service layer \(eg WMTS\) makes it disappear [\#592](https://github.com/kalisio/kdk/issues/592)
33
- - Memory leak in GradientPath [\#591](https://github.com/kalisio/kdk/issues/591)
34
- - Popup active by default in layer style editor [\#585](https://github.com/kalisio/kdk/issues/585)
35
- - Wrong time formatting of ISO date/time without timezone designator [\#582](https://github.com/kalisio/kdk/issues/582)
36
- - Constrain the KWindow when moving or resizing to avoir poping out of the screen [\#581](https://github.com/kalisio/kdk/issues/581)
37
- - Json scheme based feature awaits a serial ID but gets by default a string ID [\#579](https://github.com/kalisio/kdk/issues/579)
38
- - Real-time GeoJson layers not correctly updated when changing time [\#569](https://github.com/kalisio/kdk/issues/569)
39
- - Widget height is wrong when switching window to full screen [\#567](https://github.com/kalisio/kdk/issues/567)
40
- - Append mode in collections break case insensitive sort [\#559](https://github.com/kalisio/kdk/issues/559)
41
- - Custom validator error when editing a style [\#522](https://github.com/kalisio/kdk/issues/522)
42
-
43
- **Merged pull requests:**
44
-
45
- - chore\(deps\): bump moment from 2.29.2 to 2.29.4 in /docs [\#603](https://github.com/kalisio/kdk/pull/603) ([dependabot[bot]](https://github.com/apps/dependabot))
46
- - chore\(deps\): bump terser from 4.7.0 to 4.8.1 in /docs [\#602](https://github.com/kalisio/kdk/pull/602) ([dependabot[bot]](https://github.com/apps/dependabot))
47
- - chore\(deps\): bump shell-quote from 1.7.2 to 1.7.3 [\#588](https://github.com/kalisio/kdk/pull/588) ([dependabot[bot]](https://github.com/apps/dependabot))
48
- - chore\(deps\): bump eventsource from 1.0.7 to 1.1.1 in /docs [\#584](https://github.com/kalisio/kdk/pull/584) ([dependabot[bot]](https://github.com/apps/dependabot))
49
- - chore\(deps\): bump async from 2.6.3 to 2.6.4 in /docs [\#575](https://github.com/kalisio/kdk/pull/575) ([dependabot[bot]](https://github.com/apps/dependabot))
50
- - chore\(deps\): bump moment from 2.29.1 to 2.29.2 in /docs [\#571](https://github.com/kalisio/kdk/pull/571) ([dependabot[bot]](https://github.com/apps/dependabot))
51
- - chore\(deps\): bump minimist from 1.2.5 to 1.2.6 in /docs [\#566](https://github.com/kalisio/kdk/pull/566) ([dependabot[bot]](https://github.com/apps/dependabot))
52
- - chore\(deps\): bump url-parse from 1.5.7 to 1.5.10 in /docs [\#561](https://github.com/kalisio/kdk/pull/561) ([dependabot[bot]](https://github.com/apps/dependabot))
53
- - chore\(deps\): bump prismjs from 1.25.0 to 1.27.0 in /docs [\#560](https://github.com/kalisio/kdk/pull/560) ([dependabot[bot]](https://github.com/apps/dependabot))
54
- - chore\(deps\): bump url-parse from 1.5.3 to 1.5.7 in /docs [\#552](https://github.com/kalisio/kdk/pull/552) ([dependabot[bot]](https://github.com/apps/dependabot))
55
-
56
- ## [v1.6.0](https://github.com/kalisio/kdk/tree/v1.6.0) (2022-02-23)
57
-
58
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.5.1...v1.6.0)
59
-
60
- **Implemented enhancements:**
61
-
62
- - Provide a Tab style action [\#554](https://github.com/kalisio/kdk/issues/554)
63
- - Allow to customize the catalog using panels [\#553](https://github.com/kalisio/kdk/issues/553)
64
- - Migrate from Stylus to SCSS [\#550](https://github.com/kalisio/kdk/issues/550)
65
- - Organisation managers should be able to manage all groups [\#548](https://github.com/kalisio/kdk/issues/548)
66
- - Make timeline update interval configurable [\#543](https://github.com/kalisio/kdk/issues/543)
67
- - Units management system [\#542](https://github.com/kalisio/kdk/issues/542)
68
- - Allow to define TTL for service collection [\#539](https://github.com/kalisio/kdk/issues/539)
69
- - Add shapefile support [\#538](https://github.com/kalisio/kdk/issues/538)
70
- - Enhance timeseries widget to manage multiple forecasts [\#490](https://github.com/kalisio/kdk/issues/490)
71
-
72
- **Fixed bugs:**
73
-
74
- - KActionPopup should handle the propagate prop of the KAction [\#558](https://github.com/kalisio/kdk/issues/558)
75
- - filter is not refreshed when the focus is lost [\#551](https://github.com/kalisio/kdk/issues/551)
76
- - Realtime layers with update interval not correctly updated when time changes [\#540](https://github.com/kalisio/kdk/issues/540)
77
- - FeatureId generation does not handle any types of GeoJson [\#536](https://github.com/kalisio/kdk/issues/536)
78
- - User notified multiple times on iOS [\#557](https://github.com/kalisio/kdk/issues/557)
79
-
80
- **Closed issues:**
81
-
82
- - Improve webhook with bearer token and processing functions [\#523](https://github.com/kalisio/kdk/issues/523)
83
-
84
- **Merged pull requests:**
85
-
86
- - chore\(deps\): bump follow-redirects from 1.14.7 to 1.14.8 in /docs [\#549](https://github.com/kalisio/kdk/pull/549) ([dependabot[bot]](https://github.com/apps/dependabot))
87
- - chore\(deps\): bump ajv from 6.11.0 to 6.12.6 in /docs [\#547](https://github.com/kalisio/kdk/pull/547) ([dependabot[bot]](https://github.com/apps/dependabot))
88
- - chore\(deps\): bump pathval from 1.1.0 to 1.1.1 [\#546](https://github.com/kalisio/kdk/pull/546) ([dependabot[bot]](https://github.com/apps/dependabot))
89
- - chore\(deps\): bump node-fetch from 2.6.1 to 2.6.7 [\#537](https://github.com/kalisio/kdk/pull/537) ([dependabot[bot]](https://github.com/apps/dependabot))
90
- - chore\(deps\): bump shelljs from 0.8.3 to 0.8.5 [\#517](https://github.com/kalisio/kdk/pull/517) ([dependabot[bot]](https://github.com/apps/dependabot))
91
- - chore\(deps\): bump follow-redirects from 1.11.0 to 1.14.7 in /docs [\#514](https://github.com/kalisio/kdk/pull/514) ([dependabot[bot]](https://github.com/apps/dependabot))
92
-
93
- ## [v1.5.1](https://github.com/kalisio/kdk/tree/v1.5.1) (2022-01-27)
94
-
95
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.5.0...v1.5.1)
96
-
97
- **Implemented enhancements:**
98
-
99
- - Provide a common ScrollArea component [\#526](https://github.com/kalisio/kdk/issues/526)
100
- - Display a spinner when reading file [\#525](https://github.com/kalisio/kdk/issues/525)
101
- - Allow to open the url of a text field [\#519](https://github.com/kalisio/kdk/issues/519)
102
- - Allow authorisations to be set by name [\#516](https://github.com/kalisio/kdk/issues/516)
103
-
104
- **Fixed bugs:**
105
-
106
- - dropFileInput element is not removed when switching to another activity [\#535](https://github.com/kalisio/kdk/issues/535)
107
- - Missing default background layer when capturing the screen [\#534](https://github.com/kalisio/kdk/issues/534)
108
- - The computed url to access the Kapture service is incorrect [\#532](https://github.com/kalisio/kdk/issues/532)
109
- - Impossible to remove min/max zoom levels once edited in the style [\#531](https://github.com/kalisio/kdk/issues/531)
110
- - min/max zoom level does not work on internal feature layers [\#529](https://github.com/kalisio/kdk/issues/529)
111
- - Authorise hook does not throw a forbidden error on find/patch/update/remove multiple items [\#528](https://github.com/kalisio/kdk/issues/528)
112
- - Unable to install latest geoman version \(2.11.4\) [\#521](https://github.com/kalisio/kdk/issues/521)
113
- - Mapillary widget is not resized when switching to fullscreen [\#520](https://github.com/kalisio/kdk/issues/520)
114
- - Geojson import is failing if the linter found an old-style crs [\#518](https://github.com/kalisio/kdk/issues/518)
115
- - Scale-dependent visibility can't be reset + spelling mistake [\#398](https://github.com/kalisio/kdk/issues/398)
116
-
117
- **Closed issues:**
118
-
119
- - Improve webhook with bearer token and processing functions [\#524](https://github.com/kalisio/kdk/issues/524)
120
-
121
- ## [v1.5.0](https://github.com/kalisio/kdk/tree/v1.5.0) (2022-01-07)
122
-
123
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.4.2...v1.5.0)
124
-
125
- **Implemented enhancements:**
126
-
127
- - The capture action should take into account the current activity \(map or globe\) [\#507](https://github.com/kalisio/kdk/issues/507)
128
- - Handle the current time within the map context [\#503](https://github.com/kalisio/kdk/issues/503)
129
- - Features filter should sort the list of values alphabetically to ease selection [\#405](https://github.com/kalisio/kdk/issues/405)
130
- - Provide measurements capabilities [\#359](https://github.com/kalisio/kdk/issues/359)
131
-
132
- **Fixed bugs:**
133
-
134
- - Content filter does not work on items in an array [\#512](https://github.com/kalisio/kdk/issues/512)
135
- - Layer selector should not be wrapped [\#509](https://github.com/kalisio/kdk/issues/509)
136
- - User context not correctly restored from URL for a single layer [\#506](https://github.com/kalisio/kdk/issues/506)
137
- - Built-in layers should not be part of user context [\#505](https://github.com/kalisio/kdk/issues/505)
138
- - The capture action should take into account the current time [\#504](https://github.com/kalisio/kdk/issues/504)
139
- - Editing layer style : Marker color selector won't preselect the current color [\#502](https://github.com/kalisio/kdk/issues/502)
140
- - Edit layer style : Adding space in Tooltip between text and drop menu [\#501](https://github.com/kalisio/kdk/issues/501)
141
- - None of Popup, Tooltip and Information box display option working in style editor [\#499](https://github.com/kalisio/kdk/issues/499)
142
- - Station properties lost when a measure is available [\#510](https://github.com/kalisio/kdk/issues/510)
143
-
144
- **Merged pull requests:**
145
-
146
- - chore\(deps\): bump mermaid from 8.13.5 to 8.13.8 in /docs [\#513](https://github.com/kalisio/kdk/pull/513) ([dependabot[bot]](https://github.com/apps/dependabot))
147
- - chore\(deps\): bump mermaid from 8.8.4 to 8.13.5 in /docs [\#498](https://github.com/kalisio/kdk/pull/498) ([dependabot[bot]](https://github.com/apps/dependabot))
148
-
149
- ## [v1.4.2](https://github.com/kalisio/kdk/tree/v1.4.2) (2021-12-09)
150
-
151
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.4.1...v1.4.2)
152
-
153
- **Fixed bugs:**
154
-
155
- - Impossible to load some GPX files [\#497](https://github.com/kalisio/kdk/issues/497)
156
- - The import dialog should not allow to import layers with unsupported mime types [\#496](https://github.com/kalisio/kdk/issues/496)
157
- - Closing the mapillary widget does not stop playing [\#495](https://github.com/kalisio/kdk/issues/495)
158
-
159
- ## [v1.4.1](https://github.com/kalisio/kdk/tree/v1.4.1) (2021-11-24)
160
-
161
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.4.0...v1.4.1)
162
-
163
- **Implemented enhancements:**
164
-
165
- - Add export data action in timeseries widget [\#491](https://github.com/kalisio/kdk/issues/491)
166
- - Enhance feature aggregation to manage forecast data [\#488](https://github.com/kalisio/kdk/issues/488)
167
- - Provide a map capture component [\#487](https://github.com/kalisio/kdk/issues/487)
168
- - The import component does not allow to import GPX [\#484](https://github.com/kalisio/kdk/issues/484)
169
- - Homogenize client side file reading [\#483](https://github.com/kalisio/kdk/issues/483)
170
- - When dropping/importing a GeoJSON file we should zoom to the given bbox if defined [\#475](https://github.com/kalisio/kdk/issues/475)
171
- - Improve online help [\#33](https://github.com/kalisio/kdk/issues/33)
172
- - Feature aggregation is slow [\#81](https://github.com/kalisio/kdk/issues/81)
173
-
174
- **Fixed bugs:**
175
-
176
- - Draw mode in location input exhibits a location marker [\#494](https://github.com/kalisio/kdk/issues/494)
177
- - asGeoJson hook does not handle geometry collection [\#493](https://github.com/kalisio/kdk/issues/493)
178
- - getContextParameters in mixin.context should filter system layers and temporary layers [\#492](https://github.com/kalisio/kdk/issues/492)
179
- - asGeoJson hook does not return geometry if longitude/latitude properties are also available [\#486](https://github.com/kalisio/kdk/issues/486)
180
- - Impossible to import map layer with self-intersecting lines [\#485](https://github.com/kalisio/kdk/issues/485)
181
- - KColumn does not handle pagination correctly [\#482](https://github.com/kalisio/kdk/issues/482)
182
- - mixin base collection should take into account the sort base query to sort the items [\#481](https://github.com/kalisio/kdk/issues/481)
183
- - KHistory should take into account a date field [\#480](https://github.com/kalisio/kdk/issues/480)
184
- - Time range query should take into account a given field [\#479](https://github.com/kalisio/kdk/issues/479)
185
- - Time range query is not initialized in Time.js [\#478](https://github.com/kalisio/kdk/issues/478)
186
- - Saved user settings are erased by default values [\#477](https://github.com/kalisio/kdk/issues/477)
187
- - Mapillary viewer not synchronized correctly with coverage layer [\#133](https://github.com/kalisio/kdk/issues/133)
188
- - PDF files cannot be selected in KUploader on a mobile application [\#101](https://github.com/kalisio/kdk/issues/101)
189
- - OAuth2 does not work in mobile apps [\#85](https://github.com/kalisio/kdk/issues/85)
190
-
191
- ## [v1.4.0](https://github.com/kalisio/kdk/tree/v1.4.0) (2021-10-22)
192
-
193
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.6...v1.4.0)
194
-
195
- **Implemented enhancements:**
196
-
197
- - Allow to draw a mask using a given GeoJSON polygon [\#476](https://github.com/kalisio/kdk/issues/476)
198
- - Use Control.fileLayerLoad instead of FileLoader in mixin.file-layers.js [\#472](https://github.com/kalisio/kdk/issues/472)
199
- - Enhance layer selector UI [\#471](https://github.com/kalisio/kdk/issues/471)
200
- - Allow to specify a color map on layers without variables [\#469](https://github.com/kalisio/kdk/issues/469)
201
- - Update role field in AddMember UI [\#468](https://github.com/kalisio/kdk/issues/468)
202
- - Allow to set whether a KSelectField is clearable or not [\#467](https://github.com/kalisio/kdk/issues/467)
203
- - Provide helper functions to get senior roles or junior roles according a given role [\#463](https://github.com/kalisio/kdk/issues/463)
204
- - Provide helper functions to check whether a role is senior or junior [\#461](https://github.com/kalisio/kdk/issues/461)
205
- - Provide a role field [\#460](https://github.com/kalisio/kdk/issues/460)
206
- - Allow to unselect a base layer [\#459](https://github.com/kalisio/kdk/issues/459)
207
- - KHistory must be provide month and year infomation [\#457](https://github.com/kalisio/kdk/issues/457)
208
- - Improve permissions system to manage authorizations based on linked resources [\#437](https://github.com/kalisio/kdk/issues/437)
209
- - Multiple collection refreshs when using sorter/filter in activity [\#432](https://github.com/kalisio/kdk/issues/432)
210
- - Add ability to toggle items in list [\#431](https://github.com/kalisio/kdk/issues/431)
211
- - KHistory should use collection based renderer [\#430](https://github.com/kalisio/kdk/issues/430)
212
- - Close or cancel modal actions should be rendered using a form button [\#427](https://github.com/kalisio/kdk/issues/427)
213
- - Support GetTile requests for WMTS layers [\#423](https://github.com/kalisio/kdk/issues/423)
214
- - Homogenize team cards [\#417](https://github.com/kalisio/kdk/issues/417)
215
- - Enhance time management [\#410](https://github.com/kalisio/kdk/issues/410)
216
- - Use geoman instead of leaflet-draw in edit layer mixin [\#378](https://github.com/kalisio/kdk/issues/378)
217
- - Mapillary v3 API has been retired, update mapillary widget/layer to use v4 API [\#300](https://github.com/kalisio/kdk/issues/300)
218
- - Provide a kanban component [\#296](https://github.com/kalisio/kdk/issues/296)
219
- - Avoid fetching collection data twice on route changes [\#255](https://github.com/kalisio/kdk/issues/255)
220
- - The navigator mixin should be able to display an icon for each available app [\#208](https://github.com/kalisio/kdk/issues/208)
221
-
222
- **Fixed bugs:**
223
-
224
- - Items are not correctly ordered in collections when using append mode [\#465](https://github.com/kalisio/kdk/issues/465)
225
- - Cannot run pixi in headless chrome due to WebGL support [\#464](https://github.com/kalisio/kdk/issues/464)
226
- - Authorise hook function does not merge correctly a single $or query [\#462](https://github.com/kalisio/kdk/issues/462)
227
- - KStamp does not handle the textSize prop [\#456](https://github.com/kalisio/kdk/issues/456)
228
- - KItem should format the description using html [\#454](https://github.com/kalisio/kdk/issues/454)
229
- - Legend displaying 2 times when saving layer [\#436](https://github.com/kalisio/kdk/issues/436)
230
- - It is not possible to cancel when editing an icon [\#435](https://github.com/kalisio/kdk/issues/435)
231
- - ChipsPane should allow multiple valuePath to handle various type of objects [\#434](https://github.com/kalisio/kdk/issues/434)
232
- - Chips label should be truncated when length is too long [\#433](https://github.com/kalisio/kdk/issues/433)
233
- - Destroying the map if a GeoJson layer is visible raises an error [\#328](https://github.com/kalisio/kdk/issues/328)
234
-
235
- **Closed issues:**
236
-
237
- - When deleting tag or group : not deleted in event model [\#455](https://github.com/kalisio/kdk/issues/455)
238
- - Organisation owner should see all groups [\#450](https://github.com/kalisio/kdk/issues/450)
239
- - Event participants : allow to call members in a specific group AND tag ? [\#446](https://github.com/kalisio/kdk/issues/446)
240
- - Option to see members not within a group [\#445](https://github.com/kalisio/kdk/issues/445)
241
- - Add a hook to manage standard MongoDB aggregation [\#438](https://github.com/kalisio/kdk/issues/438)
242
-
243
- **Merged pull requests:**
244
-
245
- - chore\(deps\): bump prismjs from 1.24.0 to 1.25.0 in /docs [\#466](https://github.com/kalisio/kdk/pull/466) ([dependabot[bot]](https://github.com/apps/dependabot))
246
- - chore\(deps\): bump url-parse from 1.5.1 to 1.5.3 in /docs [\#441](https://github.com/kalisio/kdk/pull/441) ([dependabot[bot]](https://github.com/apps/dependabot))
247
- - chore\(deps\): bump path-parse from 1.0.6 to 1.0.7 in /docs [\#440](https://github.com/kalisio/kdk/pull/440) ([dependabot[bot]](https://github.com/apps/dependabot))
248
- - chore\(deps\): bump path-parse from 1.0.6 to 1.0.7 [\#439](https://github.com/kalisio/kdk/pull/439) ([dependabot[bot]](https://github.com/apps/dependabot))
249
- - chore\(deps\): bump sanitize-html from 1.27.1 to 2.3.2 [\#353](https://github.com/kalisio/kdk/pull/353) ([dependabot[bot]](https://github.com/apps/dependabot))
250
-
251
- ## [v1.3.6](https://github.com/kalisio/kdk/tree/v1.3.6) (2021-07-15)
252
-
253
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.5...v1.3.6)
254
-
255
- **Implemented enhancements:**
256
-
257
- - Style editor should allow to control layer visibility in globe [\#429](https://github.com/kalisio/kdk/issues/429)
258
- - Add filtering capabilities in OWS layer field [\#428](https://github.com/kalisio/kdk/issues/428)
259
-
260
- ## [v1.3.5](https://github.com/kalisio/kdk/tree/v1.3.5) (2021-07-02)
261
-
262
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.4...v1.3.5)
263
-
264
- **Implemented enhancements:**
265
-
266
- - Provide helper function to check view/edit/remove ability on an item [\#422](https://github.com/kalisio/kdk/issues/422)
267
- - Allow to define a path to the value in KChipsPane [\#416](https://github.com/kalisio/kdk/issues/416)
268
- - Allow to filter a schema according a list of fields when building a form [\#415](https://github.com/kalisio/kdk/issues/415)
269
- - Card rendering should support a dense mode [\#414](https://github.com/kalisio/kdk/issues/414)
270
- - Make possible to use a template string for storage service name in uploader [\#413](https://github.com/kalisio/kdk/issues/413)
271
- - Refactor KHistory to rely on KColumn [\#412](https://github.com/kalisio/kdk/issues/412)
272
- - Provide a generic time range component [\#411](https://github.com/kalisio/kdk/issues/411)
273
- - Provide a way to observe the page content size [\#400](https://github.com/kalisio/kdk/issues/400)
274
- - Make location field more user-friendly [\#399](https://github.com/kalisio/kdk/issues/399)
275
- - Enhance the location field/map to manage any geometry type [\#397](https://github.com/kalisio/kdk/issues/397)
276
- - Add ability to emit click events from canvas layer. [\#388](https://github.com/kalisio/kdk/issues/388)
277
- - Provide a generic setttings component [\#317](https://github.com/kalisio/kdk/issues/317)
278
- - Allow in-memory GeoJson be passed on GeoJson layer addition [\#94](https://github.com/kalisio/kdk/issues/94)
279
-
280
- **Fixed bugs:**
281
-
282
- - Gradient path width changes with min/max map zoom [\#424](https://github.com/kalisio/kdk/issues/424)
283
- - KItemField clears the input pattern when an item is found [\#421](https://github.com/kalisio/kdk/issues/421)
284
- - When filtering a collection the pattern is cleared if a filter item is found [\#420](https://github.com/kalisio/kdk/issues/420)
285
- - Changing the geometry type in realtime GeoJson layer does not work [\#406](https://github.com/kalisio/kdk/issues/406)
286
- - Minimize and maximize actions seem mixed up on KWindow [\#402](https://github.com/kalisio/kdk/issues/402)
287
- - List of values is incomplete when editing the features filter [\#404](https://github.com/kalisio/kdk/issues/404)
288
- - FR version : data export generates .cvs instead of .csv [\#403](https://github.com/kalisio/kdk/issues/403)
289
- - HistoryEntry card is not correclty aligned on the left side [\#401](https://github.com/kalisio/kdk/issues/401)
290
- - Exclusive option not taken into account in user-defined categories [\#395](https://github.com/kalisio/kdk/issues/395)
291
-
292
- ## [v1.3.4](https://github.com/kalisio/kdk/tree/v1.3.4) (2021-06-08)
293
-
294
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.3...v1.3.4)
295
-
296
- **Implemented enhancements:**
297
-
298
- - Allow KChipsField to be used without icon edition [\#390](https://github.com/kalisio/kdk/issues/390)
299
- - Enhance KMenu rendering with a dropdown icon [\#386](https://github.com/kalisio/kdk/issues/386)
300
- - Allow to specify a schema name to an editor [\#381](https://github.com/kalisio/kdk/issues/381)
301
- - Collections empty section should not be defined using an absolute position [\#377](https://github.com/kalisio/kdk/issues/377)
302
- - Allow location map to be embedded in a card [\#373](https://github.com/kalisio/kdk/issues/373)
303
- - Provide an helper component to display a color [\#371](https://github.com/kalisio/kdk/issues/371)
304
- - Provide an helper component to create card sections [\#369](https://github.com/kalisio/kdk/issues/369)
305
- - Enhance card rendering [\#368](https://github.com/kalisio/kdk/issues/368)
306
- - Disable hiding action button label when screen gets too small [\#367](https://github.com/kalisio/kdk/issues/367)
307
- - Add ability to configure the opacity of a WMS layer in style editor [\#366](https://github.com/kalisio/kdk/issues/366)
308
- - Support temporal requests for WMS layers [\#363](https://github.com/kalisio/kdk/issues/363)
309
- - Provide a basic chart container [\#362](https://github.com/kalisio/kdk/issues/362)
310
-
311
- **Fixed bugs:**
312
-
313
- - Editing toast appear when removing a layer [\#394](https://github.com/kalisio/kdk/issues/394)
314
- - KChangeRole no longer handle multiple resources [\#389](https://github.com/kalisio/kdk/issues/389)
315
- - Select field must be clearable [\#387](https://github.com/kalisio/kdk/issues/387)
316
- - General abilities are lost in query for find operations [\#385](https://github.com/kalisio/kdk/issues/385)
317
- - User abilities modified in place [\#384](https://github.com/kalisio/kdk/issues/384)
318
- - KLocationMap is not refreshed when updating the location [\#383](https://github.com/kalisio/kdk/issues/383)
319
- - Cannot unselect the icon in the KIconChooser [\#382](https://github.com/kalisio/kdk/issues/382)
320
- - Default edit action in based-item mixin does not handle query params [\#380](https://github.com/kalisio/kdk/issues/380)
321
- - Wrong date on probe tooltip [\#370](https://github.com/kalisio/kdk/issues/370)
322
- - WMS legend not shown when switching between multiple WMS layers [\#365](https://github.com/kalisio/kdk/issues/365)
323
- - WMS legend not shown when the layer is active by default [\#364](https://github.com/kalisio/kdk/issues/364)
324
- - Dragging while editing a polyline/polygon adds a new point [\#361](https://github.com/kalisio/kdk/issues/361)
325
- - Tiled mesh/wind layers based on a weacast grid source do not work with levels [\#346](https://github.com/kalisio/kdk/issues/346)
326
- - Deleting the layer while being edited leaves activity in edit mode [\#376](https://github.com/kalisio/kdk/issues/376)
327
-
328
- ## [v1.3.3](https://github.com/kalisio/kdk/tree/v1.3.3) (2021-05-13)
329
-
330
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.2...v1.3.3)
331
-
332
- **Implemented enhancements:**
333
-
334
- - Provide a specified base layers selector [\#358](https://github.com/kalisio/kdk/issues/358)
335
- - Enhance collection filtering [\#348](https://github.com/kalisio/kdk/issues/348)
336
-
337
- **Fixed bugs:**
338
-
339
- - Cannot connect to WFS service supporting geojson output [\#354](https://github.com/kalisio/kdk/issues/354)
340
- - Cordova apps don't respect Apple app privacy guideline [\#352](https://github.com/kalisio/kdk/issues/352)
341
- - Wrong Y axis in timeseries widget [\#351](https://github.com/kalisio/kdk/issues/351)
342
- - Empty category in catalog [\#350](https://github.com/kalisio/kdk/issues/350)
343
- - Tiled features layer not correctly updated when panning [\#273](https://github.com/kalisio/kdk/issues/273)
344
- - Cannot add two layers with different translation keys but the same label [\#147](https://github.com/kalisio/kdk/issues/147)
345
- - Adding/removing a member does not trigger real-time update for user GUI [\#102](https://github.com/kalisio/kdk/issues/102)
346
-
347
- ## [v1.3.2](https://github.com/kalisio/kdk/tree/v1.3.2) (2021-05-04)
348
-
349
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.1...v1.3.2)
350
-
351
- ## [v1.3.1](https://github.com/kalisio/kdk/tree/v1.3.1) (2021-05-04)
352
-
353
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.0...v1.3.1)
354
-
355
- **Fixed bugs:**
356
-
357
- - Incorrect path in position indicator component [\#349](https://github.com/kalisio/kdk/issues/349)
358
-
359
- ## [v1.3.0](https://github.com/kalisio/kdk/tree/v1.3.0) (2021-05-04)
360
-
361
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.2.1...v1.3.0)
362
-
363
- **Implemented enhancements:**
364
-
365
- - KFileField should support CSV files [\#343](https://github.com/kalisio/kdk/issues/343)
366
- - Provide a color field [\#342](https://github.com/kalisio/kdk/issues/342)
367
- - Allow to apply a theme [\#341](https://github.com/kalisio/kdk/issues/341)
368
- - KTextareaField should allow to include hyperlinks [\#340](https://github.com/kalisio/kdk/issues/340)
369
- - Enhance the way to prompt the user when removing an item [\#339](https://github.com/kalisio/kdk/issues/339)
370
- - Allow to stop event propagation in KAction [\#338](https://github.com/kalisio/kdk/issues/338)
371
- - Make team activities sortable [\#337](https://github.com/kalisio/kdk/issues/337)
372
- - Allow to filter the members according the role and the invitation status [\#335](https://github.com/kalisio/kdk/issues/335)
373
- - Allow to assign an avatar to an organisation [\#333](https://github.com/kalisio/kdk/issues/333)
374
- - Provide an helper component to display an avatar [\#332](https://github.com/kalisio/kdk/issues/332)
375
- - Inject the service within the items [\#329](https://github.com/kalisio/kdk/issues/329)
376
- - Factorize code to display geographic coordinates and allow support of additional formats [\#326](https://github.com/kalisio/kdk/issues/326)
377
- - Add a message indicating why a layer is disabled [\#323](https://github.com/kalisio/kdk/issues/323)
378
- - Support to only select an icon without a color in icon chooser [\#321](https://github.com/kalisio/kdk/issues/321)
379
- - Support line awesome in icon chooser [\#320](https://github.com/kalisio/kdk/issues/320)
380
- - Add a feature to manage layer categories in catalog [\#319](https://github.com/kalisio/kdk/issues/319)
381
- - Enhance form fields label display [\#315](https://github.com/kalisio/kdk/issues/315)
382
- - Enhance location search with automatic zoom and map marker [\#313](https://github.com/kalisio/kdk/issues/313)
383
- - Provide a unique action to add a layer into the catalog [\#311](https://github.com/kalisio/kdk/issues/311)
384
- - KModal should provide a default close action if no toolbar is specified [\#310](https://github.com/kalisio/kdk/issues/310)
385
- - Add a hook to check for object unicity [\#307](https://github.com/kalisio/kdk/issues/307)
386
- - Enhance place chooser ui [\#306](https://github.com/kalisio/kdk/issues/306)
387
- - Provide an icon library used by the components [\#304](https://github.com/kalisio/kdk/issues/304)
388
- - Modularize TiledFeatureLayer to fetch data from arbitrary geojson sources [\#301](https://github.com/kalisio/kdk/issues/301)
389
- - Add a feature to manage favorite views in 2D/3D maps [\#299](https://github.com/kalisio/kdk/issues/299)
390
- - Add a spatial query shortcut for geometries including a given location [\#297](https://github.com/kalisio/kdk/issues/297)
391
- - The status of an alert should reflect if the last check has failed [\#293](https://github.com/kalisio/kdk/issues/293)
392
- - Enhance feature layer filter [\#290](https://github.com/kalisio/kdk/issues/290)
393
- - Refactor and homogenize the layout [\#285](https://github.com/kalisio/kdk/issues/285)
394
- - Support realtime update in catalog [\#269](https://github.com/kalisio/kdk/issues/269)
395
- - Default role not set when editing member role in group [\#229](https://github.com/kalisio/kdk/issues/229)
396
- - Use QFilePicker instead of KFileInput [\#186](https://github.com/kalisio/kdk/issues/186)
397
- - Enhance layer style form [\#182](https://github.com/kalisio/kdk/issues/182)
398
- - Allow to create layers based on external web service URL [\#92](https://github.com/kalisio/kdk/issues/92)
399
-
400
- **Fixed bugs:**
401
-
402
- - Features chart settings not displayed correctly [\#347](https://github.com/kalisio/kdk/issues/347)
403
- - $geoNear, $near, and $nearSphere are not allowed in this context [\#345](https://github.com/kalisio/kdk/issues/345)
404
- - Sorter should apply the default option [\#336](https://github.com/kalisio/kdk/issues/336)
405
- - Disable browser autocomplete on customized q-select based fields [\#334](https://github.com/kalisio/kdk/issues/334)
406
- - Layers with per meteo model min/maxZoom don't update their isDisabled state accordingly [\#331](https://github.com/kalisio/kdk/issues/331)
407
- - Changing min/max zoom when editing style does not work correctly [\#330](https://github.com/kalisio/kdk/issues/330)
408
- - preventRemoveUser hook prevents removing others users than the target one [\#318](https://github.com/kalisio/kdk/issues/318)
409
- - Resend invitation does not encrypt password [\#316](https://github.com/kalisio/kdk/issues/316)
410
- - populatePreviousObject hook does not work when used on remove operation [\#314](https://github.com/kalisio/kdk/issues/314)
411
- - Context associated to resources is not always of the same type [\#312](https://github.com/kalisio/kdk/issues/312)
412
- - Fastlane cannot be installed anymore on travis [\#308](https://github.com/kalisio/kdk/issues/308)
413
- - Improve timeseries widget readability [\#305](https://github.com/kalisio/kdk/issues/305)
414
- - Search by item does not take service context into account [\#294](https://github.com/kalisio/kdk/issues/294)
415
- - Probe tooltip displayed when a feature has a weather property [\#280](https://github.com/kalisio/kdk/issues/280)
416
- - Complex service requests do not work in HTTP mode [\#138](https://github.com/kalisio/kdk/issues/138)
417
- - Location indicator not updated when navigating with keyboard [\#124](https://github.com/kalisio/kdk/issues/124)
418
- - asGeoJson hook breaks reactivity [\#79](https://github.com/kalisio/kdk/issues/79)
419
-
420
- **Merged pull requests:**
421
-
422
- - chore\(deps\): bump y18n from 4.0.0 to 4.0.1 in /docs [\#325](https://github.com/kalisio/kdk/pull/325) ([dependabot[bot]](https://github.com/apps/dependabot))
423
- - chore\(deps\): bump y18n from 4.0.0 to 4.0.1 [\#324](https://github.com/kalisio/kdk/pull/324) ([dependabot[bot]](https://github.com/apps/dependabot))
424
-
425
- ## [v1.2.1](https://github.com/kalisio/kdk/tree/v1.2.1) (2021-01-26)
426
-
427
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.2.0...v1.2.1)
428
-
429
- **Implemented enhancements:**
430
-
431
- - Provide a dense prop to the KAutocomplete component [\#284](https://github.com/kalisio/kdk/issues/284)
432
- - Provide a filter component to use for filtering collections [\#283](https://github.com/kalisio/kdk/issues/283)
433
- - Provide an activity bar [\#282](https://github.com/kalisio/kdk/issues/282)
434
- - Keep track of currently activated layers [\#268](https://github.com/kalisio/kdk/issues/268)
435
- - Cannot fetch data for archived weather layer [\#259](https://github.com/kalisio/kdk/issues/259)
436
- - Cannot save GeoJson with invalid geometries [\#251](https://github.com/kalisio/kdk/issues/251)
437
- - Allow tiled layers with multiple grid sources to have multiple min/max zoom values. [\#250](https://github.com/kalisio/kdk/issues/250)
438
- - Simplify meteo model configuration in tiled layers [\#241](https://github.com/kalisio/kdk/issues/241)
439
- - Feature tooltip/popup must be translatable [\#216](https://github.com/kalisio/kdk/issues/216)
440
-
441
- **Fixed bugs:**
442
-
443
- - Logging hook causes high CPU usage [\#287](https://github.com/kalisio/kdk/issues/287)
444
- - Removing a group causes all members of an organisation to be updated [\#286](https://github.com/kalisio/kdk/issues/286)
445
- - Hint error when performing aggregation [\#279](https://github.com/kalisio/kdk/issues/279)
446
- - getFeaturesFromLayer does not work on non-service layers [\#278](https://github.com/kalisio/kdk/issues/278)
447
- - Next hour button does not work when the time line is rendered in mini mode [\#274](https://github.com/kalisio/kdk/issues/274)
448
- - KHistory duplicates items on route change [\#256](https://github.com/kalisio/kdk/issues/256)
449
- - Less secured apps deprecation notice [\#100](https://github.com/kalisio/kdk/issues/100)
450
-
451
- **Closed issues:**
452
-
453
- - Provide a more generic Bar component [\#281](https://github.com/kalisio/kdk/issues/281)
454
- - The timeseries widget should have a title \(the name of the layer/sensor\) [\#288](https://github.com/kalisio/kdk/issues/288)
455
-
456
- ## [v1.2.0](https://github.com/kalisio/kdk/tree/v1.2.0) (2020-11-10)
457
-
458
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.1.1...v1.2.0)
459
-
460
- **Implemented enhancements:**
461
-
462
- - Handle checking an alert without available data [\#265](https://github.com/kalisio/kdk/issues/265)
463
- - Location field display of location without a name is incorrect [\#264](https://github.com/kalisio/kdk/issues/264)
464
- - User should be able to disable geolocation using the navigation bar [\#258](https://github.com/kalisio/kdk/issues/258)
465
- - Member activity should not allow to update tag icon/color once created [\#254](https://github.com/kalisio/kdk/issues/254)
466
- - Unify min/max zoom on tiled and non-tiled layers [\#249](https://github.com/kalisio/kdk/issues/249)
467
- - Multiple variables using the same color in timeseries widget [\#244](https://github.com/kalisio/kdk/issues/244)
468
- - Filter members from tags/groups activity [\#228](https://github.com/kalisio/kdk/issues/228)
469
- - Allow layer variable definition to customise axis options in timeseries [\#224](https://github.com/kalisio/kdk/issues/224)
470
- - Allow to disable geometry update in realtime layer [\#220](https://github.com/kalisio/kdk/issues/220)
471
- - Provide basic tours for generic components [\#218](https://github.com/kalisio/kdk/issues/218)
472
- - If any, use the color of the icons to render the actions in the fab [\#206](https://github.com/kalisio/kdk/issues/206)
473
- - Create a welcome component [\#203](https://github.com/kalisio/kdk/issues/203)
474
- - Allow KTextArea to support ellipsis CSS classes [\#200](https://github.com/kalisio/kdk/issues/200)
475
- - Provide a utility function to create a thumbnail from a data uri [\#194](https://github.com/kalisio/kdk/issues/194)
476
- - Create a tour component [\#193](https://github.com/kalisio/kdk/issues/193)
477
- - KChipsField and KTagField should be displayed using outline [\#190](https://github.com/kalisio/kdk/issues/190)
478
- - Migrate to line awesome icons [\#189](https://github.com/kalisio/kdk/issues/189)
479
- - Allow to reissue an invitation from a guest card [\#188](https://github.com/kalisio/kdk/issues/188)
480
- - Integrate page models to ease end-to-end testing [\#187](https://github.com/kalisio/kdk/issues/187)
481
- - Allow to display an icon within a badge assigned to an action of KFeatureActionButton [\#185](https://github.com/kalisio/kdk/issues/185)
482
- - Create a tags activity [\#184](https://github.com/kalisio/kdk/issues/184)
483
- - Allow to zoom on an image when browsing the medias [\#183](https://github.com/kalisio/kdk/issues/183)
484
- - Allow to display an icon within a badge assigned to an action of KOverflowMenu [\#181](https://github.com/kalisio/kdk/issues/181)
485
- - Allow to display an icon within a badge assigned to an action of KFab [\#180](https://github.com/kalisio/kdk/issues/180)
486
- - Allow emit hook to skip event emission [\#179](https://github.com/kalisio/kdk/issues/179)
487
- - Improve layer selector display [\#178](https://github.com/kalisio/kdk/issues/178)
488
- - Allow to display an icon within a badge assigned to an action of KToolBar [\#176](https://github.com/kalisio/kdk/issues/176)
489
- - Check unique hook should raise a specific error message [\#175](https://github.com/kalisio/kdk/issues/175)
490
- - Tiled mesh/wind layers should support min zoom level [\#160](https://github.com/kalisio/kdk/issues/160)
491
- - Zoom to layer action does not work on tiled layers in map [\#123](https://github.com/kalisio/kdk/issues/123)
492
- - iOS build should rely on iOS SDK 13 [\#67](https://github.com/kalisio/kdk/issues/67)
493
- - History component should provide infinite scroll [\#90](https://github.com/kalisio/kdk/issues/90)
494
- - UIWebView API deprecation notice [\#47](https://github.com/kalisio/kdk/issues/47)
495
- - Upgrade Mongo DB driver to v3 [\#44](https://github.com/kalisio/kdk/issues/44)
496
- - Allow to directly take a picture when uploading a file [\#99](https://github.com/kalisio/kdk/issues/99)
497
- - Extend pusher protocols for SMS/Emails [\#91](https://github.com/kalisio/kdk/issues/91)
498
-
499
- **Fixed bugs:**
500
-
501
- - AbortController interface not available under Safari - iOS 10.3 [\#261](https://github.com/kalisio/kdk/issues/261)
502
- - No data fetched for archived weather layer [\#260](https://github.com/kalisio/kdk/issues/260)
503
- - Converting a property from string to number fails with spaces [\#253](https://github.com/kalisio/kdk/issues/253)
504
- - Infobox not displayed in globe when selecting linear or polygon geometries [\#252](https://github.com/kalisio/kdk/issues/252)
505
- - Editing a tag properties from the member card changes all the tags properties [\#257](https://github.com/kalisio/kdk/issues/257)
506
- - Error when displaying vigicrues sections without available measures [\#248](https://github.com/kalisio/kdk/issues/248)
507
- - It should not be possible to hide the last visible variable in time-series widget chart [\#247](https://github.com/kalisio/kdk/issues/247)
508
- - Special characters displayed as HTML codes in editor title [\#246](https://github.com/kalisio/kdk/issues/246)
509
- - Time-series widget chart flickering when hiding some variables [\#245](https://github.com/kalisio/kdk/issues/245)
510
- - Various issues with icon field [\#242](https://github.com/kalisio/kdk/issues/242)
511
- - Vigicrues tooltip not displayed [\#240](https://github.com/kalisio/kdk/issues/240)
512
- - Feature updated in tiled real-time GeoJson layer when a measure without associated probe is found [\#239](https://github.com/kalisio/kdk/issues/239)
513
- - Impossible to edit features when imported from a filename containing whitespaces [\#238](https://github.com/kalisio/kdk/issues/238)
514
- - Error raised when hiding a layer in selector [\#237](https://github.com/kalisio/kdk/issues/237)
515
- - Editing layer style resets the default visibility [\#235](https://github.com/kalisio/kdk/issues/235)
516
- - Creating a layer without a schema causes different issues [\#234](https://github.com/kalisio/kdk/issues/234)
517
- - Business layer style should not be editable by default [\#232](https://github.com/kalisio/kdk/issues/232)
518
- - Time-series widget chart flickering when changing sensor or time [\#230](https://github.com/kalisio/kdk/issues/230)
519
- - Probed location variables not correctly computed when data contains a single time [\#223](https://github.com/kalisio/kdk/issues/223)
520
- - KMediaBrowser fullscreen mode must be unset when closed [\#222](https://github.com/kalisio/kdk/issues/222)
521
- - KTextArea editor should be rendered using the dense mode on small size screens [\#221](https://github.com/kalisio/kdk/issues/221)
522
- - Remove the source property from layer options when building the leaflet layer [\#219](https://github.com/kalisio/kdk/issues/219)
523
- - KTextArea containing multilines or HTML is not displayed correctly anymore [\#217](https://github.com/kalisio/kdk/issues/217)
524
- - Edit layer style action appears on measure layers [\#212](https://github.com/kalisio/kdk/issues/212)
525
- - Enable edit style layer action on user-defined layers only [\#213](https://github.com/kalisio/kdk/issues/213)
526
- - The Location Map cannot request the tiles through the API Gateway [\#211](https://github.com/kalisio/kdk/issues/211)
527
- - Updating the value of an existing tag makes updateTags hook detect it as a new one [\#210](https://github.com/kalisio/kdk/issues/210)
528
- - The location map does not truncate the location info when it is too long [\#209](https://github.com/kalisio/kdk/issues/209)
529
- - The navigation app selector does not work anymore \(cordova\) [\#207](https://github.com/kalisio/kdk/issues/207)
530
- - KUploader tries to create thumbnails on already stored files [\#204](https://github.com/kalisio/kdk/issues/204)
531
- - KIconChooser is not well initialized [\#202](https://github.com/kalisio/kdk/issues/202)
532
- - Ellipsis is not working in KCard [\#201](https://github.com/kalisio/kdk/issues/201)
533
- - TimeSeries widget is not well resized [\#199](https://github.com/kalisio/kdk/issues/199)
534
- - KTagField raises an error when the tag does not have any icon [\#198](https://github.com/kalisio/kdk/issues/198)
535
- - Quasar native messages are not translated [\#197](https://github.com/kalisio/kdk/issues/197)
536
- - Device not correctly update [\#196](https://github.com/kalisio/kdk/issues/196)
537
- - Impossible to edit feature properties [\#195](https://github.com/kalisio/kdk/issues/195)
538
- - Prevent a media from being uploaded multiple times [\#192](https://github.com/kalisio/kdk/issues/192)
539
- - Sporadic error appears with openers [\#191](https://github.com/kalisio/kdk/issues/191)
540
- - Background color in KSearchBar doest not allow to see anything [\#177](https://github.com/kalisio/kdk/issues/177)
541
- - Selecting a line/polygon feature with timeseries widget raises an error [\#174](https://github.com/kalisio/kdk/issues/174)
542
- - Incorrect types for layer style after edition [\#173](https://github.com/kalisio/kdk/issues/173)
543
- - The type property appears in the default layer schema [\#171](https://github.com/kalisio/kdk/issues/171)
544
- - Layer style form not updated when configuring [\#170](https://github.com/kalisio/kdk/issues/170)
545
- - Tiled features layer are slow on large datasets \(eg archive\) [\#157](https://github.com/kalisio/kdk/issues/157)
546
- - Login form autocomplete does not work on first load in firefox [\#106](https://github.com/kalisio/kdk/issues/106)
547
- - Status bar hides app bar on mobiles [\#87](https://github.com/kalisio/kdk/issues/87)
548
-
549
- **Closed issues:**
550
-
551
- - Fine-grained global rate limiting control [\#236](https://github.com/kalisio/kdk/issues/236)
552
-
553
- ## [v1.1.1](https://github.com/kalisio/kdk/tree/v1.1.1) (2020-06-02)
554
-
555
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.1.0...v1.1.1)
556
-
557
- **Implemented enhancements:**
558
-
559
- - Provide a code input component [\#169](https://github.com/kalisio/kdk/issues/169)
560
-
561
- ## [v1.1.0](https://github.com/kalisio/kdk/tree/v1.1.0) (2020-05-28)
562
-
563
- [Full Changelog](https://github.com/kalisio/kdk/compare/v1.0.0...v1.1.0)
564
-
565
- **Implemented enhancements:**
566
-
567
- - Allow to specify the Browsers list to be used when building the testcafe image [\#159](https://github.com/kalisio/kdk/issues/159)
568
- - Improve timeseries widget with timerange actions [\#152](https://github.com/kalisio/kdk/issues/152)
569
- - Manage i18n in layer definitions [\#146](https://github.com/kalisio/kdk/issues/146)
570
- - Standardize the behavior of all widgets [\#143](https://github.com/kalisio/kdk/issues/143)
571
- - The position of the LocationIndicator should be updated when opening/closing the NavBar [\#137](https://github.com/kalisio/kdk/issues/137)
572
- - Improve feature selection [\#134](https://github.com/kalisio/kdk/issues/134)
573
- - It should be able to customize the leading action in the AppBar [\#132](https://github.com/kalisio/kdk/issues/132)
574
- - Provide a KOpener proxy that allows to simplify the use of the KOpener [\#130](https://github.com/kalisio/kdk/issues/130)
575
- - Improve Mapillary layer performances [\#129](https://github.com/kalisio/kdk/issues/129)
576
- - Make the feature selection work in globe [\#127](https://github.com/kalisio/kdk/issues/127)
577
- - Refactor KLocationTimeSeries using the new widget design [\#121](https://github.com/kalisio/kdk/issues/121)
578
- - KView should allow values as props [\#120](https://github.com/kalisio/kdk/issues/120)
579
- - Refactor KFeatureInfoBox using the new widget design [\#119](https://github.com/kalisio/kdk/issues/119)
580
- - Enhance feature selection [\#118](https://github.com/kalisio/kdk/issues/118)
581
- - Allow the KToolBar to be vertical [\#117](https://github.com/kalisio/kdk/issues/117)
582
- - Enhance KWidget design [\#116](https://github.com/kalisio/kdk/issues/116)
583
- - Provide basic components to enable Mapillary integration [\#115](https://github.com/kalisio/kdk/issues/115)
584
- - Make activity refresh when changing route more customisable [\#114](https://github.com/kalisio/kdk/issues/114)
585
- - Improve openers design on mobile [\#113](https://github.com/kalisio/kdk/issues/113)
586
- - Enhance customization of KToolBar [\#112](https://github.com/kalisio/kdk/issues/112)
587
- - Enhance KTimeline design to be more responsive [\#109](https://github.com/kalisio/kdk/issues/109)
588
- - Archived weather layers should be handled within the forecast layers selector [\#75](https://github.com/kalisio/kdk/issues/75)
589
- - Refactor the CatalogPanel [\#74](https://github.com/kalisio/kdk/issues/74)
590
- - Merge KTimeline and KTimelineControl in a unique component [\#73](https://github.com/kalisio/kdk/issues/73)
591
- - NavigationBar should be closable [\#72](https://github.com/kalisio/kdk/issues/72)
592
- - Layout should be able to manage a generic footer [\#71](https://github.com/kalisio/kdk/issues/71)
593
- - Enhance Drawers management [\#70](https://github.com/kalisio/kdk/issues/70)
594
- - Merge kdk modules into a single module [\#65](https://github.com/kalisio/kdk/issues/65)
595
- - Allow to run e2e on the targeted deployment platform [\#62](https://github.com/kalisio/kdk/issues/62)
596
- - Allow to apply the CI process when working on a branch [\#61](https://github.com/kalisio/kdk/issues/61)
597
- - Support tiling for feature layers in map [\#82](https://github.com/kalisio/kdk/issues/82)
598
- - Improve application webhook security [\#84](https://github.com/kalisio/kdk/issues/84)
599
- - Upgrade to latest Node.js LTS [\#48](https://github.com/kalisio/kdk/issues/48)
600
- - Allow to filter feature layers [\#89](https://github.com/kalisio/kdk/issues/89)
601
- - Enhance e2e tests across the modules/apps [\#38](https://github.com/kalisio/kdk/issues/38)
602
- - Optimize measure update for time-stamped features in globe [\#96](https://github.com/kalisio/kdk/issues/96)
603
- - Create a component to provide styling options for feature layers in map [\#110](https://github.com/kalisio/kdk/issues/110)
604
- - Manage real-time and archive/forecast mode [\#108](https://github.com/kalisio/kdk/issues/108)
605
- - Code coverage not correctly pushed to Code Climate in travis application builds [\#51](https://github.com/kalisio/kdk/issues/51)
606
-
607
- **Fixed bugs:**
608
-
609
- - Tiled wind layer doesn't work with old arpege-world resolution \(0.5\) [\#168](https://github.com/kalisio/kdk/issues/168)
610
- - "e.arrayBuffer is not a function" error with WcsGridSource [\#167](https://github.com/kalisio/kdk/issues/167)
611
- - Level selection doesn't work anymore on tiled mesh layers. [\#166](https://github.com/kalisio/kdk/issues/166)
612
- - Probe location name not updated in timeseries widget [\#158](https://github.com/kalisio/kdk/issues/158)
613
- - Tiled feature layers missing some values when changing time [\#156](https://github.com/kalisio/kdk/issues/156)
614
- - Displayed time in timeseries widget does not show minutes [\#155](https://github.com/kalisio/kdk/issues/155)
615
- - Visual lag on tiled mesh layer with geotiff grid source [\#153](https://github.com/kalisio/kdk/issues/153)
616
- - BBox not defined in tiled layers relying on OpenDAP grid source [\#151](https://github.com/kalisio/kdk/issues/151)
617
- - Tiled mesh layers not correctly unloaded when data is not available [\#150](https://github.com/kalisio/kdk/issues/150)
618
- - Tile layers not correctly unloaded after navigating in time [\#149](https://github.com/kalisio/kdk/issues/149)
619
- - Location indicator performs probing on selection [\#148](https://github.com/kalisio/kdk/issues/148)
620
- - Saving a layer in http mode generates an error with http code 500 [\#145](https://github.com/kalisio/kdk/issues/145)
621
- - Allow to select a feature even if the schema is not defined [\#144](https://github.com/kalisio/kdk/issues/144)
622
- - On HTTP mode, timeseries data for a feature are not correct [\#142](https://github.com/kalisio/kdk/issues/142)
623
- - Missing zero values in tooltip display [\#141](https://github.com/kalisio/kdk/issues/141)
624
- - Error raised on clustered tile layers [\#140](https://github.com/kalisio/kdk/issues/140)
625
- - Timeseries do not update correctly when changing time [\#139](https://github.com/kalisio/kdk/issues/139)
626
- - Timeseries widget not synchronized when disabling/removing a layer [\#135](https://github.com/kalisio/kdk/issues/135)
627
- - Openers shoud be displayed only a component is assgined to the drawers or footer [\#131](https://github.com/kalisio/kdk/issues/131)
628
- - min zoom level not correctly handled in tiled map layers [\#126](https://github.com/kalisio/kdk/issues/126)
629
- - If a geocoder does not respond the geocoder service does not respond [\#125](https://github.com/kalisio/kdk/issues/125)
630
- - Weacast grid source is missing some data when requesting a tile [\#77](https://github.com/kalisio/kdk/issues/77)
631
- - KFab should be instanciated within a QPage [\#69](https://github.com/kalisio/kdk/issues/69)
632
-
633
- **Closed issues:**
634
-
635
- - Provide an helper component to display a text with an icon [\#76](https://github.com/kalisio/kdk/issues/76)
636
-
637
- ## [v1.0.0](https://github.com/kalisio/kdk/tree/v1.0.0) (2020-01-20)
638
-
639
- [Full Changelog](https://github.com/kalisio/kdk/compare/v0.3.0...v1.0.0)
640
-
641
- **Implemented enhancements:**
642
-
643
- - Allow to run the client test either with firefox or chrome [\#58](https://github.com/kalisio/kdk/issues/58)
644
- - Enhance branch management in CLI [\#57](https://github.com/kalisio/kdk/issues/57)
645
- - Migrate to Testcafe 1.7.x [\#56](https://github.com/kalisio/kdk/issues/56)
646
- - Simplify organisation services management [\#55](https://github.com/kalisio/kdk/issues/55)
647
- - Provide a default testcafe image including testcafe-vue-selectors [\#54](https://github.com/kalisio/kdk/issues/54)
648
- - Take advantage of new conditional builds feature of Travis [\#53](https://github.com/kalisio/kdk/issues/53)
649
- - Add a command to manage releases with CLI [\#50](https://github.com/kalisio/kdk/issues/50)
650
- - Android build must target API level 28+ [\#49](https://github.com/kalisio/kdk/issues/49)
651
- - Enable Greenkeeper to ease dependency upgrades [\#45](https://github.com/kalisio/kdk/issues/45)
652
- - Add pull command to CLI [\#41](https://github.com/kalisio/kdk/issues/41)
653
- - Update dependencies across modules/apps [\#39](https://github.com/kalisio/kdk/issues/39)
654
- - Make Travis pipeline more reliable [\#37](https://github.com/kalisio/kdk/issues/37)
655
- - Add a regex to only publish on tags of the form 'vX.X.X' [\#59](https://github.com/kalisio/kdk/issues/59)
656
- - Migrate to Quasar 1.0 across modules [\#31](https://github.com/kalisio/kdk/issues/31)
657
-
658
- **Fixed bugs:**
659
-
660
- - Unlink CLI command does not unlink global modules \(only local ones\) [\#42](https://github.com/kalisio/kdk/issues/42)
661
-
662
- **Closed issues:**
663
-
664
- - Publishing apk to Google is no more working [\#52](https://github.com/kalisio/kdk/issues/52)
665
-
666
- ## [v0.3.0](https://github.com/kalisio/kdk/tree/v0.3.0) (2019-07-22)
667
-
668
- [Full Changelog](https://github.com/kalisio/kdk/compare/v0.2.2...v0.3.0)
669
-
670
- **Implemented enhancements:**
671
-
672
- - Allow CLI to select modules from the workspace to apply command on [\#36](https://github.com/kalisio/kdk/issues/36)
673
- - Allow CLI to manage repositories in different organizations [\#34](https://github.com/kalisio/kdk/issues/34)
674
- - Integrate the cli within kdk project [\#32](https://github.com/kalisio/kdk/issues/32)
675
- - Favor service inheritance over hooks for low-level internal operations [\#29](https://github.com/kalisio/kdk/issues/29)
676
- - Define a solution to deploy our apps as microservices [\#7](https://github.com/kalisio/kdk/issues/7)
677
-
678
- **Security fixes:**
679
-
680
- - Upgrade out-of-date dependencies across modules [\#10](https://github.com/kalisio/kdk/issues/10)
681
-
682
- ## [v0.2.2](https://github.com/kalisio/kdk/tree/v0.2.2) (2019-02-11)
683
-
684
- [Full Changelog](https://github.com/kalisio/kdk/compare/v0.2.1...v0.2.2)
685
-
686
- ## [v0.2.1](https://github.com/kalisio/kdk/tree/v0.2.1) (2019-02-11)
687
-
688
- [Full Changelog](https://github.com/kalisio/kdk/compare/v0.2.0...v0.2.1)
689
-
690
- ## [v0.2.0](https://github.com/kalisio/kdk/tree/v0.2.0) (2019-02-11)
691
-
692
- [Full Changelog](https://github.com/kalisio/kdk/compare/9494e1f254fd9e44c3a5994fd15e1e62b31196c7...v0.2.0)
693
-
694
- **Implemented enhancements:**
695
-
696
- - Migrate the documentation to VuePress [\#30](https://github.com/kalisio/kdk/issues/30)
697
- - Change props 'id' by 'objectId' [\#27](https://github.com/kalisio/kdk/issues/27)
698
- - Add slack notifications from Travis CI [\#24](https://github.com/kalisio/kdk/issues/24)
699
- - Unify lodash imports [\#21](https://github.com/kalisio/kdk/issues/21)
700
- - Billing module [\#19](https://github.com/kalisio/kdk/issues/19)
701
- - Sanatize user inputs [\#18](https://github.com/kalisio/kdk/issues/18)
702
- - Coverage for end-to-end testing [\#16](https://github.com/kalisio/kdk/issues/16)
703
- - Filter real-time events [\#15](https://github.com/kalisio/kdk/issues/15)
704
- - Secure removal of "important" objects [\#13](https://github.com/kalisio/kdk/issues/13)
705
- - Migrate to Feathers v3 across modules [\#12](https://github.com/kalisio/kdk/issues/12)
706
- - Setup frontend testing [\#11](https://github.com/kalisio/kdk/issues/11)
707
- - i18n [\#6](https://github.com/kalisio/kdk/issues/6)
708
-
709
- **Fixed bugs:**
710
-
711
- - Code from external modules not correctly transpiled [\#28](https://github.com/kalisio/kdk/issues/28)
712
- - Unify the use of icons [\#23](https://github.com/kalisio/kdk/issues/23)
713
- - Optimize data refresh in activities [\#17](https://github.com/kalisio/kdk/issues/17)
714
-
715
- **Closed issues:**
716
-
717
- - Refactor the activities using KNavBar to use KTabBar [\#14](https://github.com/kalisio/kdk/issues/14)
718
- - Manage authorizations [\#9](https://github.com/kalisio/kdk/issues/9)
719
- - \[kClient\] Initiate the module [\#5](https://github.com/kalisio/kdk/issues/5)
720
- - Migrate kComponents to other modules \(kCore, kTeam, ...\) [\#4](https://github.com/kalisio/kdk/issues/4)
721
- - Find a solution to manage deployment access keys \(AWS, Google, etc.\) [\#3](https://github.com/kalisio/kdk/issues/3)
722
- - Add $off\(\) whenever we use $on\(\) [\#2](https://github.com/kalisio/kdk/issues/2)
723
- - Handle activity routing correctly [\#1](https://github.com/kalisio/kdk/issues/1)
724
-
725
-
726
-
727
- \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
1
+ Please refer to GitHub issues for changelog starting from v2.0: https://github.com/kalisio/kdk/issues.
2
+
3
+ # Changelog
4
+
5
+ ## [v1.7.0](https://github.com/kalisio/kdk/tree/v1.7.0) (2022-08-30)
6
+
7
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.6.0...v1.7.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Support level-varying GeoJson layers [\#601](https://github.com/kalisio/kdk/issues/601)
12
+ - Support time-varying layers with changing geometry [\#600](https://github.com/kalisio/kdk/issues/600)
13
+ - Add a default healthcheck endpoint for applications [\#598](https://github.com/kalisio/kdk/issues/598)
14
+ - It should be possible to remove the current home view [\#593](https://github.com/kalisio/kdk/issues/593)
15
+ - Inject zoom level in layer property templates [\#572](https://github.com/kalisio/kdk/issues/572)
16
+ - Move built-in catalog categories to backend configuration [\#568](https://github.com/kalisio/kdk/issues/568)
17
+ - Allow the user to set a time range for timeseries chart [\#565](https://github.com/kalisio/kdk/issues/565)
18
+ - Allow to zoom in/out within the timeseries chart [\#564](https://github.com/kalisio/kdk/issues/564)
19
+ - Allow to move/resize the Window [\#563](https://github.com/kalisio/kdk/issues/563)
20
+ - Migrate to Chart.js 3.x [\#562](https://github.com/kalisio/kdk/issues/562)
21
+ - Allow to only request probes at a given zoom level on TiledFeatureLayer [\#545](https://github.com/kalisio/kdk/issues/545)
22
+ - Add time zone to time format [\#544](https://github.com/kalisio/kdk/issues/544)
23
+ - Provide an elevation profile widget [\#527](https://github.com/kalisio/kdk/issues/527)
24
+ - Allow to get the area/perimeter of a feature [\#604](https://github.com/kalisio/kdk/issues/604)
25
+ - Update TiledFeatureLayer to share features across zoom levels [\#322](https://github.com/kalisio/kdk/issues/322)
26
+ - Layer edition performance overhead in map [\#128](https://github.com/kalisio/kdk/issues/128)
27
+ - Improve user-defined feature layers performances by creating appropriate indices [\#111](https://github.com/kalisio/kdk/issues/111)
28
+
29
+ **Fixed bugs:**
30
+
31
+ - Selecting manager role in KJoinGroup does not work [\#608](https://github.com/kalisio/kdk/issues/608)
32
+ - Editing the style of a web service layer \(eg WMTS\) makes it disappear [\#592](https://github.com/kalisio/kdk/issues/592)
33
+ - Memory leak in GradientPath [\#591](https://github.com/kalisio/kdk/issues/591)
34
+ - Popup active by default in layer style editor [\#585](https://github.com/kalisio/kdk/issues/585)
35
+ - Wrong time formatting of ISO date/time without timezone designator [\#582](https://github.com/kalisio/kdk/issues/582)
36
+ - Constrain the KWindow when moving or resizing to avoir poping out of the screen [\#581](https://github.com/kalisio/kdk/issues/581)
37
+ - Json scheme based feature awaits a serial ID but gets by default a string ID [\#579](https://github.com/kalisio/kdk/issues/579)
38
+ - Real-time GeoJson layers not correctly updated when changing time [\#569](https://github.com/kalisio/kdk/issues/569)
39
+ - Widget height is wrong when switching window to full screen [\#567](https://github.com/kalisio/kdk/issues/567)
40
+ - Append mode in collections break case insensitive sort [\#559](https://github.com/kalisio/kdk/issues/559)
41
+ - Custom validator error when editing a style [\#522](https://github.com/kalisio/kdk/issues/522)
42
+
43
+ **Merged pull requests:**
44
+
45
+ - chore\(deps\): bump moment from 2.29.2 to 2.29.4 in /docs [\#603](https://github.com/kalisio/kdk/pull/603) ([dependabot[bot]](https://github.com/apps/dependabot))
46
+ - chore\(deps\): bump terser from 4.7.0 to 4.8.1 in /docs [\#602](https://github.com/kalisio/kdk/pull/602) ([dependabot[bot]](https://github.com/apps/dependabot))
47
+ - chore\(deps\): bump shell-quote from 1.7.2 to 1.7.3 [\#588](https://github.com/kalisio/kdk/pull/588) ([dependabot[bot]](https://github.com/apps/dependabot))
48
+ - chore\(deps\): bump eventsource from 1.0.7 to 1.1.1 in /docs [\#584](https://github.com/kalisio/kdk/pull/584) ([dependabot[bot]](https://github.com/apps/dependabot))
49
+ - chore\(deps\): bump async from 2.6.3 to 2.6.4 in /docs [\#575](https://github.com/kalisio/kdk/pull/575) ([dependabot[bot]](https://github.com/apps/dependabot))
50
+ - chore\(deps\): bump moment from 2.29.1 to 2.29.2 in /docs [\#571](https://github.com/kalisio/kdk/pull/571) ([dependabot[bot]](https://github.com/apps/dependabot))
51
+ - chore\(deps\): bump minimist from 1.2.5 to 1.2.6 in /docs [\#566](https://github.com/kalisio/kdk/pull/566) ([dependabot[bot]](https://github.com/apps/dependabot))
52
+ - chore\(deps\): bump url-parse from 1.5.7 to 1.5.10 in /docs [\#561](https://github.com/kalisio/kdk/pull/561) ([dependabot[bot]](https://github.com/apps/dependabot))
53
+ - chore\(deps\): bump prismjs from 1.25.0 to 1.27.0 in /docs [\#560](https://github.com/kalisio/kdk/pull/560) ([dependabot[bot]](https://github.com/apps/dependabot))
54
+ - chore\(deps\): bump url-parse from 1.5.3 to 1.5.7 in /docs [\#552](https://github.com/kalisio/kdk/pull/552) ([dependabot[bot]](https://github.com/apps/dependabot))
55
+
56
+ ## [v1.6.0](https://github.com/kalisio/kdk/tree/v1.6.0) (2022-02-23)
57
+
58
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.5.1...v1.6.0)
59
+
60
+ **Implemented enhancements:**
61
+
62
+ - Provide a Tab style action [\#554](https://github.com/kalisio/kdk/issues/554)
63
+ - Allow to customize the catalog using panels [\#553](https://github.com/kalisio/kdk/issues/553)
64
+ - Migrate from Stylus to SCSS [\#550](https://github.com/kalisio/kdk/issues/550)
65
+ - Organisation managers should be able to manage all groups [\#548](https://github.com/kalisio/kdk/issues/548)
66
+ - Make timeline update interval configurable [\#543](https://github.com/kalisio/kdk/issues/543)
67
+ - Units management system [\#542](https://github.com/kalisio/kdk/issues/542)
68
+ - Allow to define TTL for service collection [\#539](https://github.com/kalisio/kdk/issues/539)
69
+ - Add shapefile support [\#538](https://github.com/kalisio/kdk/issues/538)
70
+ - Enhance timeseries widget to manage multiple forecasts [\#490](https://github.com/kalisio/kdk/issues/490)
71
+
72
+ **Fixed bugs:**
73
+
74
+ - KActionPopup should handle the propagate prop of the KAction [\#558](https://github.com/kalisio/kdk/issues/558)
75
+ - filter is not refreshed when the focus is lost [\#551](https://github.com/kalisio/kdk/issues/551)
76
+ - Realtime layers with update interval not correctly updated when time changes [\#540](https://github.com/kalisio/kdk/issues/540)
77
+ - FeatureId generation does not handle any types of GeoJson [\#536](https://github.com/kalisio/kdk/issues/536)
78
+ - User notified multiple times on iOS [\#557](https://github.com/kalisio/kdk/issues/557)
79
+
80
+ **Closed issues:**
81
+
82
+ - Improve webhook with bearer token and processing functions [\#523](https://github.com/kalisio/kdk/issues/523)
83
+
84
+ **Merged pull requests:**
85
+
86
+ - chore\(deps\): bump follow-redirects from 1.14.7 to 1.14.8 in /docs [\#549](https://github.com/kalisio/kdk/pull/549) ([dependabot[bot]](https://github.com/apps/dependabot))
87
+ - chore\(deps\): bump ajv from 6.11.0 to 6.12.6 in /docs [\#547](https://github.com/kalisio/kdk/pull/547) ([dependabot[bot]](https://github.com/apps/dependabot))
88
+ - chore\(deps\): bump pathval from 1.1.0 to 1.1.1 [\#546](https://github.com/kalisio/kdk/pull/546) ([dependabot[bot]](https://github.com/apps/dependabot))
89
+ - chore\(deps\): bump node-fetch from 2.6.1 to 2.6.7 [\#537](https://github.com/kalisio/kdk/pull/537) ([dependabot[bot]](https://github.com/apps/dependabot))
90
+ - chore\(deps\): bump shelljs from 0.8.3 to 0.8.5 [\#517](https://github.com/kalisio/kdk/pull/517) ([dependabot[bot]](https://github.com/apps/dependabot))
91
+ - chore\(deps\): bump follow-redirects from 1.11.0 to 1.14.7 in /docs [\#514](https://github.com/kalisio/kdk/pull/514) ([dependabot[bot]](https://github.com/apps/dependabot))
92
+
93
+ ## [v1.5.1](https://github.com/kalisio/kdk/tree/v1.5.1) (2022-01-27)
94
+
95
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.5.0...v1.5.1)
96
+
97
+ **Implemented enhancements:**
98
+
99
+ - Provide a common ScrollArea component [\#526](https://github.com/kalisio/kdk/issues/526)
100
+ - Display a spinner when reading file [\#525](https://github.com/kalisio/kdk/issues/525)
101
+ - Allow to open the url of a text field [\#519](https://github.com/kalisio/kdk/issues/519)
102
+ - Allow authorisations to be set by name [\#516](https://github.com/kalisio/kdk/issues/516)
103
+
104
+ **Fixed bugs:**
105
+
106
+ - dropFileInput element is not removed when switching to another activity [\#535](https://github.com/kalisio/kdk/issues/535)
107
+ - Missing default background layer when capturing the screen [\#534](https://github.com/kalisio/kdk/issues/534)
108
+ - The computed url to access the Kapture service is incorrect [\#532](https://github.com/kalisio/kdk/issues/532)
109
+ - Impossible to remove min/max zoom levels once edited in the style [\#531](https://github.com/kalisio/kdk/issues/531)
110
+ - min/max zoom level does not work on internal feature layers [\#529](https://github.com/kalisio/kdk/issues/529)
111
+ - Authorise hook does not throw a forbidden error on find/patch/update/remove multiple items [\#528](https://github.com/kalisio/kdk/issues/528)
112
+ - Unable to install latest geoman version \(2.11.4\) [\#521](https://github.com/kalisio/kdk/issues/521)
113
+ - Mapillary widget is not resized when switching to fullscreen [\#520](https://github.com/kalisio/kdk/issues/520)
114
+ - Geojson import is failing if the linter found an old-style crs [\#518](https://github.com/kalisio/kdk/issues/518)
115
+ - Scale-dependent visibility can't be reset + spelling mistake [\#398](https://github.com/kalisio/kdk/issues/398)
116
+
117
+ **Closed issues:**
118
+
119
+ - Improve webhook with bearer token and processing functions [\#524](https://github.com/kalisio/kdk/issues/524)
120
+
121
+ ## [v1.5.0](https://github.com/kalisio/kdk/tree/v1.5.0) (2022-01-07)
122
+
123
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.4.2...v1.5.0)
124
+
125
+ **Implemented enhancements:**
126
+
127
+ - The capture action should take into account the current activity \(map or globe\) [\#507](https://github.com/kalisio/kdk/issues/507)
128
+ - Handle the current time within the map context [\#503](https://github.com/kalisio/kdk/issues/503)
129
+ - Features filter should sort the list of values alphabetically to ease selection [\#405](https://github.com/kalisio/kdk/issues/405)
130
+ - Provide measurements capabilities [\#359](https://github.com/kalisio/kdk/issues/359)
131
+
132
+ **Fixed bugs:**
133
+
134
+ - Content filter does not work on items in an array [\#512](https://github.com/kalisio/kdk/issues/512)
135
+ - Layer selector should not be wrapped [\#509](https://github.com/kalisio/kdk/issues/509)
136
+ - User context not correctly restored from URL for a single layer [\#506](https://github.com/kalisio/kdk/issues/506)
137
+ - Built-in layers should not be part of user context [\#505](https://github.com/kalisio/kdk/issues/505)
138
+ - The capture action should take into account the current time [\#504](https://github.com/kalisio/kdk/issues/504)
139
+ - Editing layer style : Marker color selector won't preselect the current color [\#502](https://github.com/kalisio/kdk/issues/502)
140
+ - Edit layer style : Adding space in Tooltip between text and drop menu [\#501](https://github.com/kalisio/kdk/issues/501)
141
+ - None of Popup, Tooltip and Information box display option working in style editor [\#499](https://github.com/kalisio/kdk/issues/499)
142
+ - Station properties lost when a measure is available [\#510](https://github.com/kalisio/kdk/issues/510)
143
+
144
+ **Merged pull requests:**
145
+
146
+ - chore\(deps\): bump mermaid from 8.13.5 to 8.13.8 in /docs [\#513](https://github.com/kalisio/kdk/pull/513) ([dependabot[bot]](https://github.com/apps/dependabot))
147
+ - chore\(deps\): bump mermaid from 8.8.4 to 8.13.5 in /docs [\#498](https://github.com/kalisio/kdk/pull/498) ([dependabot[bot]](https://github.com/apps/dependabot))
148
+
149
+ ## [v1.4.2](https://github.com/kalisio/kdk/tree/v1.4.2) (2021-12-09)
150
+
151
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.4.1...v1.4.2)
152
+
153
+ **Fixed bugs:**
154
+
155
+ - Impossible to load some GPX files [\#497](https://github.com/kalisio/kdk/issues/497)
156
+ - The import dialog should not allow to import layers with unsupported mime types [\#496](https://github.com/kalisio/kdk/issues/496)
157
+ - Closing the mapillary widget does not stop playing [\#495](https://github.com/kalisio/kdk/issues/495)
158
+
159
+ ## [v1.4.1](https://github.com/kalisio/kdk/tree/v1.4.1) (2021-11-24)
160
+
161
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.4.0...v1.4.1)
162
+
163
+ **Implemented enhancements:**
164
+
165
+ - Add export data action in timeseries widget [\#491](https://github.com/kalisio/kdk/issues/491)
166
+ - Enhance feature aggregation to manage forecast data [\#488](https://github.com/kalisio/kdk/issues/488)
167
+ - Provide a map capture component [\#487](https://github.com/kalisio/kdk/issues/487)
168
+ - The import component does not allow to import GPX [\#484](https://github.com/kalisio/kdk/issues/484)
169
+ - Homogenize client side file reading [\#483](https://github.com/kalisio/kdk/issues/483)
170
+ - When dropping/importing a GeoJSON file we should zoom to the given bbox if defined [\#475](https://github.com/kalisio/kdk/issues/475)
171
+ - Improve online help [\#33](https://github.com/kalisio/kdk/issues/33)
172
+ - Feature aggregation is slow [\#81](https://github.com/kalisio/kdk/issues/81)
173
+
174
+ **Fixed bugs:**
175
+
176
+ - Draw mode in location input exhibits a location marker [\#494](https://github.com/kalisio/kdk/issues/494)
177
+ - asGeoJson hook does not handle geometry collection [\#493](https://github.com/kalisio/kdk/issues/493)
178
+ - getContextParameters in mixin.context should filter system layers and temporary layers [\#492](https://github.com/kalisio/kdk/issues/492)
179
+ - asGeoJson hook does not return geometry if longitude/latitude properties are also available [\#486](https://github.com/kalisio/kdk/issues/486)
180
+ - Impossible to import map layer with self-intersecting lines [\#485](https://github.com/kalisio/kdk/issues/485)
181
+ - KColumn does not handle pagination correctly [\#482](https://github.com/kalisio/kdk/issues/482)
182
+ - mixin base collection should take into account the sort base query to sort the items [\#481](https://github.com/kalisio/kdk/issues/481)
183
+ - KHistory should take into account a date field [\#480](https://github.com/kalisio/kdk/issues/480)
184
+ - Time range query should take into account a given field [\#479](https://github.com/kalisio/kdk/issues/479)
185
+ - Time range query is not initialized in Time.js [\#478](https://github.com/kalisio/kdk/issues/478)
186
+ - Saved user settings are erased by default values [\#477](https://github.com/kalisio/kdk/issues/477)
187
+ - Mapillary viewer not synchronized correctly with coverage layer [\#133](https://github.com/kalisio/kdk/issues/133)
188
+ - PDF files cannot be selected in KUploader on a mobile application [\#101](https://github.com/kalisio/kdk/issues/101)
189
+ - OAuth2 does not work in mobile apps [\#85](https://github.com/kalisio/kdk/issues/85)
190
+
191
+ ## [v1.4.0](https://github.com/kalisio/kdk/tree/v1.4.0) (2021-10-22)
192
+
193
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.6...v1.4.0)
194
+
195
+ **Implemented enhancements:**
196
+
197
+ - Allow to draw a mask using a given GeoJSON polygon [\#476](https://github.com/kalisio/kdk/issues/476)
198
+ - Use Control.fileLayerLoad instead of FileLoader in mixin.file-layers.js [\#472](https://github.com/kalisio/kdk/issues/472)
199
+ - Enhance layer selector UI [\#471](https://github.com/kalisio/kdk/issues/471)
200
+ - Allow to specify a color map on layers without variables [\#469](https://github.com/kalisio/kdk/issues/469)
201
+ - Update role field in AddMember UI [\#468](https://github.com/kalisio/kdk/issues/468)
202
+ - Allow to set whether a KSelectField is clearable or not [\#467](https://github.com/kalisio/kdk/issues/467)
203
+ - Provide helper functions to get senior roles or junior roles according a given role [\#463](https://github.com/kalisio/kdk/issues/463)
204
+ - Provide helper functions to check whether a role is senior or junior [\#461](https://github.com/kalisio/kdk/issues/461)
205
+ - Provide a role field [\#460](https://github.com/kalisio/kdk/issues/460)
206
+ - Allow to unselect a base layer [\#459](https://github.com/kalisio/kdk/issues/459)
207
+ - KHistory must be provide month and year infomation [\#457](https://github.com/kalisio/kdk/issues/457)
208
+ - Improve permissions system to manage authorizations based on linked resources [\#437](https://github.com/kalisio/kdk/issues/437)
209
+ - Multiple collection refreshs when using sorter/filter in activity [\#432](https://github.com/kalisio/kdk/issues/432)
210
+ - Add ability to toggle items in list [\#431](https://github.com/kalisio/kdk/issues/431)
211
+ - KHistory should use collection based renderer [\#430](https://github.com/kalisio/kdk/issues/430)
212
+ - Close or cancel modal actions should be rendered using a form button [\#427](https://github.com/kalisio/kdk/issues/427)
213
+ - Support GetTile requests for WMTS layers [\#423](https://github.com/kalisio/kdk/issues/423)
214
+ - Homogenize team cards [\#417](https://github.com/kalisio/kdk/issues/417)
215
+ - Enhance time management [\#410](https://github.com/kalisio/kdk/issues/410)
216
+ - Use geoman instead of leaflet-draw in edit layer mixin [\#378](https://github.com/kalisio/kdk/issues/378)
217
+ - Mapillary v3 API has been retired, update mapillary widget/layer to use v4 API [\#300](https://github.com/kalisio/kdk/issues/300)
218
+ - Provide a kanban component [\#296](https://github.com/kalisio/kdk/issues/296)
219
+ - Avoid fetching collection data twice on route changes [\#255](https://github.com/kalisio/kdk/issues/255)
220
+ - The navigator mixin should be able to display an icon for each available app [\#208](https://github.com/kalisio/kdk/issues/208)
221
+
222
+ **Fixed bugs:**
223
+
224
+ - Items are not correctly ordered in collections when using append mode [\#465](https://github.com/kalisio/kdk/issues/465)
225
+ - Cannot run pixi in headless chrome due to WebGL support [\#464](https://github.com/kalisio/kdk/issues/464)
226
+ - Authorise hook function does not merge correctly a single $or query [\#462](https://github.com/kalisio/kdk/issues/462)
227
+ - KStamp does not handle the textSize prop [\#456](https://github.com/kalisio/kdk/issues/456)
228
+ - KItem should format the description using html [\#454](https://github.com/kalisio/kdk/issues/454)
229
+ - Legend displaying 2 times when saving layer [\#436](https://github.com/kalisio/kdk/issues/436)
230
+ - It is not possible to cancel when editing an icon [\#435](https://github.com/kalisio/kdk/issues/435)
231
+ - ChipsPane should allow multiple valuePath to handle various type of objects [\#434](https://github.com/kalisio/kdk/issues/434)
232
+ - Chips label should be truncated when length is too long [\#433](https://github.com/kalisio/kdk/issues/433)
233
+ - Destroying the map if a GeoJson layer is visible raises an error [\#328](https://github.com/kalisio/kdk/issues/328)
234
+
235
+ **Closed issues:**
236
+
237
+ - When deleting tag or group : not deleted in event model [\#455](https://github.com/kalisio/kdk/issues/455)
238
+ - Organisation owner should see all groups [\#450](https://github.com/kalisio/kdk/issues/450)
239
+ - Event participants : allow to call members in a specific group AND tag ? [\#446](https://github.com/kalisio/kdk/issues/446)
240
+ - Option to see members not within a group [\#445](https://github.com/kalisio/kdk/issues/445)
241
+ - Add a hook to manage standard MongoDB aggregation [\#438](https://github.com/kalisio/kdk/issues/438)
242
+
243
+ **Merged pull requests:**
244
+
245
+ - chore\(deps\): bump prismjs from 1.24.0 to 1.25.0 in /docs [\#466](https://github.com/kalisio/kdk/pull/466) ([dependabot[bot]](https://github.com/apps/dependabot))
246
+ - chore\(deps\): bump url-parse from 1.5.1 to 1.5.3 in /docs [\#441](https://github.com/kalisio/kdk/pull/441) ([dependabot[bot]](https://github.com/apps/dependabot))
247
+ - chore\(deps\): bump path-parse from 1.0.6 to 1.0.7 in /docs [\#440](https://github.com/kalisio/kdk/pull/440) ([dependabot[bot]](https://github.com/apps/dependabot))
248
+ - chore\(deps\): bump path-parse from 1.0.6 to 1.0.7 [\#439](https://github.com/kalisio/kdk/pull/439) ([dependabot[bot]](https://github.com/apps/dependabot))
249
+ - chore\(deps\): bump sanitize-html from 1.27.1 to 2.3.2 [\#353](https://github.com/kalisio/kdk/pull/353) ([dependabot[bot]](https://github.com/apps/dependabot))
250
+
251
+ ## [v1.3.6](https://github.com/kalisio/kdk/tree/v1.3.6) (2021-07-15)
252
+
253
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.5...v1.3.6)
254
+
255
+ **Implemented enhancements:**
256
+
257
+ - Style editor should allow to control layer visibility in globe [\#429](https://github.com/kalisio/kdk/issues/429)
258
+ - Add filtering capabilities in OWS layer field [\#428](https://github.com/kalisio/kdk/issues/428)
259
+
260
+ ## [v1.3.5](https://github.com/kalisio/kdk/tree/v1.3.5) (2021-07-02)
261
+
262
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.4...v1.3.5)
263
+
264
+ **Implemented enhancements:**
265
+
266
+ - Provide helper function to check view/edit/remove ability on an item [\#422](https://github.com/kalisio/kdk/issues/422)
267
+ - Allow to define a path to the value in KChipsPane [\#416](https://github.com/kalisio/kdk/issues/416)
268
+ - Allow to filter a schema according a list of fields when building a form [\#415](https://github.com/kalisio/kdk/issues/415)
269
+ - Card rendering should support a dense mode [\#414](https://github.com/kalisio/kdk/issues/414)
270
+ - Make possible to use a template string for storage service name in uploader [\#413](https://github.com/kalisio/kdk/issues/413)
271
+ - Refactor KHistory to rely on KColumn [\#412](https://github.com/kalisio/kdk/issues/412)
272
+ - Provide a generic time range component [\#411](https://github.com/kalisio/kdk/issues/411)
273
+ - Provide a way to observe the page content size [\#400](https://github.com/kalisio/kdk/issues/400)
274
+ - Make location field more user-friendly [\#399](https://github.com/kalisio/kdk/issues/399)
275
+ - Enhance the location field/map to manage any geometry type [\#397](https://github.com/kalisio/kdk/issues/397)
276
+ - Add ability to emit click events from canvas layer. [\#388](https://github.com/kalisio/kdk/issues/388)
277
+ - Provide a generic setttings component [\#317](https://github.com/kalisio/kdk/issues/317)
278
+ - Allow in-memory GeoJson be passed on GeoJson layer addition [\#94](https://github.com/kalisio/kdk/issues/94)
279
+
280
+ **Fixed bugs:**
281
+
282
+ - Gradient path width changes with min/max map zoom [\#424](https://github.com/kalisio/kdk/issues/424)
283
+ - KItemField clears the input pattern when an item is found [\#421](https://github.com/kalisio/kdk/issues/421)
284
+ - When filtering a collection the pattern is cleared if a filter item is found [\#420](https://github.com/kalisio/kdk/issues/420)
285
+ - Changing the geometry type in realtime GeoJson layer does not work [\#406](https://github.com/kalisio/kdk/issues/406)
286
+ - Minimize and maximize actions seem mixed up on KWindow [\#402](https://github.com/kalisio/kdk/issues/402)
287
+ - List of values is incomplete when editing the features filter [\#404](https://github.com/kalisio/kdk/issues/404)
288
+ - FR version : data export generates .cvs instead of .csv [\#403](https://github.com/kalisio/kdk/issues/403)
289
+ - HistoryEntry card is not correclty aligned on the left side [\#401](https://github.com/kalisio/kdk/issues/401)
290
+ - Exclusive option not taken into account in user-defined categories [\#395](https://github.com/kalisio/kdk/issues/395)
291
+
292
+ ## [v1.3.4](https://github.com/kalisio/kdk/tree/v1.3.4) (2021-06-08)
293
+
294
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.3...v1.3.4)
295
+
296
+ **Implemented enhancements:**
297
+
298
+ - Allow KChipsField to be used without icon edition [\#390](https://github.com/kalisio/kdk/issues/390)
299
+ - Enhance KMenu rendering with a dropdown icon [\#386](https://github.com/kalisio/kdk/issues/386)
300
+ - Allow to specify a schema name to an editor [\#381](https://github.com/kalisio/kdk/issues/381)
301
+ - Collections empty section should not be defined using an absolute position [\#377](https://github.com/kalisio/kdk/issues/377)
302
+ - Allow location map to be embedded in a card [\#373](https://github.com/kalisio/kdk/issues/373)
303
+ - Provide an helper component to display a color [\#371](https://github.com/kalisio/kdk/issues/371)
304
+ - Provide an helper component to create card sections [\#369](https://github.com/kalisio/kdk/issues/369)
305
+ - Enhance card rendering [\#368](https://github.com/kalisio/kdk/issues/368)
306
+ - Disable hiding action button label when screen gets too small [\#367](https://github.com/kalisio/kdk/issues/367)
307
+ - Add ability to configure the opacity of a WMS layer in style editor [\#366](https://github.com/kalisio/kdk/issues/366)
308
+ - Support temporal requests for WMS layers [\#363](https://github.com/kalisio/kdk/issues/363)
309
+ - Provide a basic chart container [\#362](https://github.com/kalisio/kdk/issues/362)
310
+
311
+ **Fixed bugs:**
312
+
313
+ - Editing toast appear when removing a layer [\#394](https://github.com/kalisio/kdk/issues/394)
314
+ - KChangeRole no longer handle multiple resources [\#389](https://github.com/kalisio/kdk/issues/389)
315
+ - Select field must be clearable [\#387](https://github.com/kalisio/kdk/issues/387)
316
+ - General abilities are lost in query for find operations [\#385](https://github.com/kalisio/kdk/issues/385)
317
+ - User abilities modified in place [\#384](https://github.com/kalisio/kdk/issues/384)
318
+ - KLocationMap is not refreshed when updating the location [\#383](https://github.com/kalisio/kdk/issues/383)
319
+ - Cannot unselect the icon in the KIconChooser [\#382](https://github.com/kalisio/kdk/issues/382)
320
+ - Default edit action in based-item mixin does not handle query params [\#380](https://github.com/kalisio/kdk/issues/380)
321
+ - Wrong date on probe tooltip [\#370](https://github.com/kalisio/kdk/issues/370)
322
+ - WMS legend not shown when switching between multiple WMS layers [\#365](https://github.com/kalisio/kdk/issues/365)
323
+ - WMS legend not shown when the layer is active by default [\#364](https://github.com/kalisio/kdk/issues/364)
324
+ - Dragging while editing a polyline/polygon adds a new point [\#361](https://github.com/kalisio/kdk/issues/361)
325
+ - Tiled mesh/wind layers based on a weacast grid source do not work with levels [\#346](https://github.com/kalisio/kdk/issues/346)
326
+ - Deleting the layer while being edited leaves activity in edit mode [\#376](https://github.com/kalisio/kdk/issues/376)
327
+
328
+ ## [v1.3.3](https://github.com/kalisio/kdk/tree/v1.3.3) (2021-05-13)
329
+
330
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.2...v1.3.3)
331
+
332
+ **Implemented enhancements:**
333
+
334
+ - Provide a specified base layers selector [\#358](https://github.com/kalisio/kdk/issues/358)
335
+ - Enhance collection filtering [\#348](https://github.com/kalisio/kdk/issues/348)
336
+
337
+ **Fixed bugs:**
338
+
339
+ - Cannot connect to WFS service supporting geojson output [\#354](https://github.com/kalisio/kdk/issues/354)
340
+ - Cordova apps don't respect Apple app privacy guideline [\#352](https://github.com/kalisio/kdk/issues/352)
341
+ - Wrong Y axis in timeseries widget [\#351](https://github.com/kalisio/kdk/issues/351)
342
+ - Empty category in catalog [\#350](https://github.com/kalisio/kdk/issues/350)
343
+ - Tiled features layer not correctly updated when panning [\#273](https://github.com/kalisio/kdk/issues/273)
344
+ - Cannot add two layers with different translation keys but the same label [\#147](https://github.com/kalisio/kdk/issues/147)
345
+ - Adding/removing a member does not trigger real-time update for user GUI [\#102](https://github.com/kalisio/kdk/issues/102)
346
+
347
+ ## [v1.3.2](https://github.com/kalisio/kdk/tree/v1.3.2) (2021-05-04)
348
+
349
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.1...v1.3.2)
350
+
351
+ ## [v1.3.1](https://github.com/kalisio/kdk/tree/v1.3.1) (2021-05-04)
352
+
353
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.3.0...v1.3.1)
354
+
355
+ **Fixed bugs:**
356
+
357
+ - Incorrect path in position indicator component [\#349](https://github.com/kalisio/kdk/issues/349)
358
+
359
+ ## [v1.3.0](https://github.com/kalisio/kdk/tree/v1.3.0) (2021-05-04)
360
+
361
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.2.1...v1.3.0)
362
+
363
+ **Implemented enhancements:**
364
+
365
+ - KFileField should support CSV files [\#343](https://github.com/kalisio/kdk/issues/343)
366
+ - Provide a color field [\#342](https://github.com/kalisio/kdk/issues/342)
367
+ - Allow to apply a theme [\#341](https://github.com/kalisio/kdk/issues/341)
368
+ - KTextareaField should allow to include hyperlinks [\#340](https://github.com/kalisio/kdk/issues/340)
369
+ - Enhance the way to prompt the user when removing an item [\#339](https://github.com/kalisio/kdk/issues/339)
370
+ - Allow to stop event propagation in KAction [\#338](https://github.com/kalisio/kdk/issues/338)
371
+ - Make team activities sortable [\#337](https://github.com/kalisio/kdk/issues/337)
372
+ - Allow to filter the members according the role and the invitation status [\#335](https://github.com/kalisio/kdk/issues/335)
373
+ - Allow to assign an avatar to an organisation [\#333](https://github.com/kalisio/kdk/issues/333)
374
+ - Provide an helper component to display an avatar [\#332](https://github.com/kalisio/kdk/issues/332)
375
+ - Inject the service within the items [\#329](https://github.com/kalisio/kdk/issues/329)
376
+ - Factorize code to display geographic coordinates and allow support of additional formats [\#326](https://github.com/kalisio/kdk/issues/326)
377
+ - Add a message indicating why a layer is disabled [\#323](https://github.com/kalisio/kdk/issues/323)
378
+ - Support to only select an icon without a color in icon chooser [\#321](https://github.com/kalisio/kdk/issues/321)
379
+ - Support line awesome in icon chooser [\#320](https://github.com/kalisio/kdk/issues/320)
380
+ - Add a feature to manage layer categories in catalog [\#319](https://github.com/kalisio/kdk/issues/319)
381
+ - Enhance form fields label display [\#315](https://github.com/kalisio/kdk/issues/315)
382
+ - Enhance location search with automatic zoom and map marker [\#313](https://github.com/kalisio/kdk/issues/313)
383
+ - Provide a unique action to add a layer into the catalog [\#311](https://github.com/kalisio/kdk/issues/311)
384
+ - KModal should provide a default close action if no toolbar is specified [\#310](https://github.com/kalisio/kdk/issues/310)
385
+ - Add a hook to check for object unicity [\#307](https://github.com/kalisio/kdk/issues/307)
386
+ - Enhance place chooser ui [\#306](https://github.com/kalisio/kdk/issues/306)
387
+ - Provide an icon library used by the components [\#304](https://github.com/kalisio/kdk/issues/304)
388
+ - Modularize TiledFeatureLayer to fetch data from arbitrary geojson sources [\#301](https://github.com/kalisio/kdk/issues/301)
389
+ - Add a feature to manage favorite views in 2D/3D maps [\#299](https://github.com/kalisio/kdk/issues/299)
390
+ - Add a spatial query shortcut for geometries including a given location [\#297](https://github.com/kalisio/kdk/issues/297)
391
+ - The status of an alert should reflect if the last check has failed [\#293](https://github.com/kalisio/kdk/issues/293)
392
+ - Enhance feature layer filter [\#290](https://github.com/kalisio/kdk/issues/290)
393
+ - Refactor and homogenize the layout [\#285](https://github.com/kalisio/kdk/issues/285)
394
+ - Support realtime update in catalog [\#269](https://github.com/kalisio/kdk/issues/269)
395
+ - Default role not set when editing member role in group [\#229](https://github.com/kalisio/kdk/issues/229)
396
+ - Use QFilePicker instead of KFileInput [\#186](https://github.com/kalisio/kdk/issues/186)
397
+ - Enhance layer style form [\#182](https://github.com/kalisio/kdk/issues/182)
398
+ - Allow to create layers based on external web service URL [\#92](https://github.com/kalisio/kdk/issues/92)
399
+
400
+ **Fixed bugs:**
401
+
402
+ - Features chart settings not displayed correctly [\#347](https://github.com/kalisio/kdk/issues/347)
403
+ - $geoNear, $near, and $nearSphere are not allowed in this context [\#345](https://github.com/kalisio/kdk/issues/345)
404
+ - Sorter should apply the default option [\#336](https://github.com/kalisio/kdk/issues/336)
405
+ - Disable browser autocomplete on customized q-select based fields [\#334](https://github.com/kalisio/kdk/issues/334)
406
+ - Layers with per meteo model min/maxZoom don't update their isDisabled state accordingly [\#331](https://github.com/kalisio/kdk/issues/331)
407
+ - Changing min/max zoom when editing style does not work correctly [\#330](https://github.com/kalisio/kdk/issues/330)
408
+ - preventRemoveUser hook prevents removing others users than the target one [\#318](https://github.com/kalisio/kdk/issues/318)
409
+ - Resend invitation does not encrypt password [\#316](https://github.com/kalisio/kdk/issues/316)
410
+ - populatePreviousObject hook does not work when used on remove operation [\#314](https://github.com/kalisio/kdk/issues/314)
411
+ - Context associated to resources is not always of the same type [\#312](https://github.com/kalisio/kdk/issues/312)
412
+ - Fastlane cannot be installed anymore on travis [\#308](https://github.com/kalisio/kdk/issues/308)
413
+ - Improve timeseries widget readability [\#305](https://github.com/kalisio/kdk/issues/305)
414
+ - Search by item does not take service context into account [\#294](https://github.com/kalisio/kdk/issues/294)
415
+ - Probe tooltip displayed when a feature has a weather property [\#280](https://github.com/kalisio/kdk/issues/280)
416
+ - Complex service requests do not work in HTTP mode [\#138](https://github.com/kalisio/kdk/issues/138)
417
+ - Location indicator not updated when navigating with keyboard [\#124](https://github.com/kalisio/kdk/issues/124)
418
+ - asGeoJson hook breaks reactivity [\#79](https://github.com/kalisio/kdk/issues/79)
419
+
420
+ **Merged pull requests:**
421
+
422
+ - chore\(deps\): bump y18n from 4.0.0 to 4.0.1 in /docs [\#325](https://github.com/kalisio/kdk/pull/325) ([dependabot[bot]](https://github.com/apps/dependabot))
423
+ - chore\(deps\): bump y18n from 4.0.0 to 4.0.1 [\#324](https://github.com/kalisio/kdk/pull/324) ([dependabot[bot]](https://github.com/apps/dependabot))
424
+
425
+ ## [v1.2.1](https://github.com/kalisio/kdk/tree/v1.2.1) (2021-01-26)
426
+
427
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.2.0...v1.2.1)
428
+
429
+ **Implemented enhancements:**
430
+
431
+ - Provide a dense prop to the KAutocomplete component [\#284](https://github.com/kalisio/kdk/issues/284)
432
+ - Provide a filter component to use for filtering collections [\#283](https://github.com/kalisio/kdk/issues/283)
433
+ - Provide an activity bar [\#282](https://github.com/kalisio/kdk/issues/282)
434
+ - Keep track of currently activated layers [\#268](https://github.com/kalisio/kdk/issues/268)
435
+ - Cannot fetch data for archived weather layer [\#259](https://github.com/kalisio/kdk/issues/259)
436
+ - Cannot save GeoJson with invalid geometries [\#251](https://github.com/kalisio/kdk/issues/251)
437
+ - Allow tiled layers with multiple grid sources to have multiple min/max zoom values. [\#250](https://github.com/kalisio/kdk/issues/250)
438
+ - Simplify meteo model configuration in tiled layers [\#241](https://github.com/kalisio/kdk/issues/241)
439
+ - Feature tooltip/popup must be translatable [\#216](https://github.com/kalisio/kdk/issues/216)
440
+
441
+ **Fixed bugs:**
442
+
443
+ - Logging hook causes high CPU usage [\#287](https://github.com/kalisio/kdk/issues/287)
444
+ - Removing a group causes all members of an organisation to be updated [\#286](https://github.com/kalisio/kdk/issues/286)
445
+ - Hint error when performing aggregation [\#279](https://github.com/kalisio/kdk/issues/279)
446
+ - getFeaturesFromLayer does not work on non-service layers [\#278](https://github.com/kalisio/kdk/issues/278)
447
+ - Next hour button does not work when the time line is rendered in mini mode [\#274](https://github.com/kalisio/kdk/issues/274)
448
+ - KHistory duplicates items on route change [\#256](https://github.com/kalisio/kdk/issues/256)
449
+ - Less secured apps deprecation notice [\#100](https://github.com/kalisio/kdk/issues/100)
450
+
451
+ **Closed issues:**
452
+
453
+ - Provide a more generic Bar component [\#281](https://github.com/kalisio/kdk/issues/281)
454
+ - The timeseries widget should have a title \(the name of the layer/sensor\) [\#288](https://github.com/kalisio/kdk/issues/288)
455
+
456
+ ## [v1.2.0](https://github.com/kalisio/kdk/tree/v1.2.0) (2020-11-10)
457
+
458
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.1.1...v1.2.0)
459
+
460
+ **Implemented enhancements:**
461
+
462
+ - Handle checking an alert without available data [\#265](https://github.com/kalisio/kdk/issues/265)
463
+ - Location field display of location without a name is incorrect [\#264](https://github.com/kalisio/kdk/issues/264)
464
+ - User should be able to disable geolocation using the navigation bar [\#258](https://github.com/kalisio/kdk/issues/258)
465
+ - Member activity should not allow to update tag icon/color once created [\#254](https://github.com/kalisio/kdk/issues/254)
466
+ - Unify min/max zoom on tiled and non-tiled layers [\#249](https://github.com/kalisio/kdk/issues/249)
467
+ - Multiple variables using the same color in timeseries widget [\#244](https://github.com/kalisio/kdk/issues/244)
468
+ - Filter members from tags/groups activity [\#228](https://github.com/kalisio/kdk/issues/228)
469
+ - Allow layer variable definition to customise axis options in timeseries [\#224](https://github.com/kalisio/kdk/issues/224)
470
+ - Allow to disable geometry update in realtime layer [\#220](https://github.com/kalisio/kdk/issues/220)
471
+ - Provide basic tours for generic components [\#218](https://github.com/kalisio/kdk/issues/218)
472
+ - If any, use the color of the icons to render the actions in the fab [\#206](https://github.com/kalisio/kdk/issues/206)
473
+ - Create a welcome component [\#203](https://github.com/kalisio/kdk/issues/203)
474
+ - Allow KTextArea to support ellipsis CSS classes [\#200](https://github.com/kalisio/kdk/issues/200)
475
+ - Provide a utility function to create a thumbnail from a data uri [\#194](https://github.com/kalisio/kdk/issues/194)
476
+ - Create a tour component [\#193](https://github.com/kalisio/kdk/issues/193)
477
+ - KChipsField and KTagField should be displayed using outline [\#190](https://github.com/kalisio/kdk/issues/190)
478
+ - Migrate to line awesome icons [\#189](https://github.com/kalisio/kdk/issues/189)
479
+ - Allow to reissue an invitation from a guest card [\#188](https://github.com/kalisio/kdk/issues/188)
480
+ - Integrate page models to ease end-to-end testing [\#187](https://github.com/kalisio/kdk/issues/187)
481
+ - Allow to display an icon within a badge assigned to an action of KFeatureActionButton [\#185](https://github.com/kalisio/kdk/issues/185)
482
+ - Create a tags activity [\#184](https://github.com/kalisio/kdk/issues/184)
483
+ - Allow to zoom on an image when browsing the medias [\#183](https://github.com/kalisio/kdk/issues/183)
484
+ - Allow to display an icon within a badge assigned to an action of KOverflowMenu [\#181](https://github.com/kalisio/kdk/issues/181)
485
+ - Allow to display an icon within a badge assigned to an action of KFab [\#180](https://github.com/kalisio/kdk/issues/180)
486
+ - Allow emit hook to skip event emission [\#179](https://github.com/kalisio/kdk/issues/179)
487
+ - Improve layer selector display [\#178](https://github.com/kalisio/kdk/issues/178)
488
+ - Allow to display an icon within a badge assigned to an action of KToolBar [\#176](https://github.com/kalisio/kdk/issues/176)
489
+ - Check unique hook should raise a specific error message [\#175](https://github.com/kalisio/kdk/issues/175)
490
+ - Tiled mesh/wind layers should support min zoom level [\#160](https://github.com/kalisio/kdk/issues/160)
491
+ - Zoom to layer action does not work on tiled layers in map [\#123](https://github.com/kalisio/kdk/issues/123)
492
+ - iOS build should rely on iOS SDK 13 [\#67](https://github.com/kalisio/kdk/issues/67)
493
+ - History component should provide infinite scroll [\#90](https://github.com/kalisio/kdk/issues/90)
494
+ - UIWebView API deprecation notice [\#47](https://github.com/kalisio/kdk/issues/47)
495
+ - Upgrade Mongo DB driver to v3 [\#44](https://github.com/kalisio/kdk/issues/44)
496
+ - Allow to directly take a picture when uploading a file [\#99](https://github.com/kalisio/kdk/issues/99)
497
+ - Extend pusher protocols for SMS/Emails [\#91](https://github.com/kalisio/kdk/issues/91)
498
+
499
+ **Fixed bugs:**
500
+
501
+ - AbortController interface not available under Safari - iOS 10.3 [\#261](https://github.com/kalisio/kdk/issues/261)
502
+ - No data fetched for archived weather layer [\#260](https://github.com/kalisio/kdk/issues/260)
503
+ - Converting a property from string to number fails with spaces [\#253](https://github.com/kalisio/kdk/issues/253)
504
+ - Infobox not displayed in globe when selecting linear or polygon geometries [\#252](https://github.com/kalisio/kdk/issues/252)
505
+ - Editing a tag properties from the member card changes all the tags properties [\#257](https://github.com/kalisio/kdk/issues/257)
506
+ - Error when displaying vigicrues sections without available measures [\#248](https://github.com/kalisio/kdk/issues/248)
507
+ - It should not be possible to hide the last visible variable in time-series widget chart [\#247](https://github.com/kalisio/kdk/issues/247)
508
+ - Special characters displayed as HTML codes in editor title [\#246](https://github.com/kalisio/kdk/issues/246)
509
+ - Time-series widget chart flickering when hiding some variables [\#245](https://github.com/kalisio/kdk/issues/245)
510
+ - Various issues with icon field [\#242](https://github.com/kalisio/kdk/issues/242)
511
+ - Vigicrues tooltip not displayed [\#240](https://github.com/kalisio/kdk/issues/240)
512
+ - Feature updated in tiled real-time GeoJson layer when a measure without associated probe is found [\#239](https://github.com/kalisio/kdk/issues/239)
513
+ - Impossible to edit features when imported from a filename containing whitespaces [\#238](https://github.com/kalisio/kdk/issues/238)
514
+ - Error raised when hiding a layer in selector [\#237](https://github.com/kalisio/kdk/issues/237)
515
+ - Editing layer style resets the default visibility [\#235](https://github.com/kalisio/kdk/issues/235)
516
+ - Creating a layer without a schema causes different issues [\#234](https://github.com/kalisio/kdk/issues/234)
517
+ - Business layer style should not be editable by default [\#232](https://github.com/kalisio/kdk/issues/232)
518
+ - Time-series widget chart flickering when changing sensor or time [\#230](https://github.com/kalisio/kdk/issues/230)
519
+ - Probed location variables not correctly computed when data contains a single time [\#223](https://github.com/kalisio/kdk/issues/223)
520
+ - KMediaBrowser fullscreen mode must be unset when closed [\#222](https://github.com/kalisio/kdk/issues/222)
521
+ - KTextArea editor should be rendered using the dense mode on small size screens [\#221](https://github.com/kalisio/kdk/issues/221)
522
+ - Remove the source property from layer options when building the leaflet layer [\#219](https://github.com/kalisio/kdk/issues/219)
523
+ - KTextArea containing multilines or HTML is not displayed correctly anymore [\#217](https://github.com/kalisio/kdk/issues/217)
524
+ - Edit layer style action appears on measure layers [\#212](https://github.com/kalisio/kdk/issues/212)
525
+ - Enable edit style layer action on user-defined layers only [\#213](https://github.com/kalisio/kdk/issues/213)
526
+ - The Location Map cannot request the tiles through the API Gateway [\#211](https://github.com/kalisio/kdk/issues/211)
527
+ - Updating the value of an existing tag makes updateTags hook detect it as a new one [\#210](https://github.com/kalisio/kdk/issues/210)
528
+ - The location map does not truncate the location info when it is too long [\#209](https://github.com/kalisio/kdk/issues/209)
529
+ - The navigation app selector does not work anymore \(cordova\) [\#207](https://github.com/kalisio/kdk/issues/207)
530
+ - KUploader tries to create thumbnails on already stored files [\#204](https://github.com/kalisio/kdk/issues/204)
531
+ - KIconChooser is not well initialized [\#202](https://github.com/kalisio/kdk/issues/202)
532
+ - Ellipsis is not working in KCard [\#201](https://github.com/kalisio/kdk/issues/201)
533
+ - TimeSeries widget is not well resized [\#199](https://github.com/kalisio/kdk/issues/199)
534
+ - KTagField raises an error when the tag does not have any icon [\#198](https://github.com/kalisio/kdk/issues/198)
535
+ - Quasar native messages are not translated [\#197](https://github.com/kalisio/kdk/issues/197)
536
+ - Device not correctly update [\#196](https://github.com/kalisio/kdk/issues/196)
537
+ - Impossible to edit feature properties [\#195](https://github.com/kalisio/kdk/issues/195)
538
+ - Prevent a media from being uploaded multiple times [\#192](https://github.com/kalisio/kdk/issues/192)
539
+ - Sporadic error appears with openers [\#191](https://github.com/kalisio/kdk/issues/191)
540
+ - Background color in KSearchBar doest not allow to see anything [\#177](https://github.com/kalisio/kdk/issues/177)
541
+ - Selecting a line/polygon feature with timeseries widget raises an error [\#174](https://github.com/kalisio/kdk/issues/174)
542
+ - Incorrect types for layer style after edition [\#173](https://github.com/kalisio/kdk/issues/173)
543
+ - The type property appears in the default layer schema [\#171](https://github.com/kalisio/kdk/issues/171)
544
+ - Layer style form not updated when configuring [\#170](https://github.com/kalisio/kdk/issues/170)
545
+ - Tiled features layer are slow on large datasets \(eg archive\) [\#157](https://github.com/kalisio/kdk/issues/157)
546
+ - Login form autocomplete does not work on first load in firefox [\#106](https://github.com/kalisio/kdk/issues/106)
547
+ - Status bar hides app bar on mobiles [\#87](https://github.com/kalisio/kdk/issues/87)
548
+
549
+ **Closed issues:**
550
+
551
+ - Fine-grained global rate limiting control [\#236](https://github.com/kalisio/kdk/issues/236)
552
+
553
+ ## [v1.1.1](https://github.com/kalisio/kdk/tree/v1.1.1) (2020-06-02)
554
+
555
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.1.0...v1.1.1)
556
+
557
+ **Implemented enhancements:**
558
+
559
+ - Provide a code input component [\#169](https://github.com/kalisio/kdk/issues/169)
560
+
561
+ ## [v1.1.0](https://github.com/kalisio/kdk/tree/v1.1.0) (2020-05-28)
562
+
563
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v1.0.0...v1.1.0)
564
+
565
+ **Implemented enhancements:**
566
+
567
+ - Allow to specify the Browsers list to be used when building the testcafe image [\#159](https://github.com/kalisio/kdk/issues/159)
568
+ - Improve timeseries widget with timerange actions [\#152](https://github.com/kalisio/kdk/issues/152)
569
+ - Manage i18n in layer definitions [\#146](https://github.com/kalisio/kdk/issues/146)
570
+ - Standardize the behavior of all widgets [\#143](https://github.com/kalisio/kdk/issues/143)
571
+ - The position of the LocationIndicator should be updated when opening/closing the NavBar [\#137](https://github.com/kalisio/kdk/issues/137)
572
+ - Improve feature selection [\#134](https://github.com/kalisio/kdk/issues/134)
573
+ - It should be able to customize the leading action in the AppBar [\#132](https://github.com/kalisio/kdk/issues/132)
574
+ - Provide a KOpener proxy that allows to simplify the use of the KOpener [\#130](https://github.com/kalisio/kdk/issues/130)
575
+ - Improve Mapillary layer performances [\#129](https://github.com/kalisio/kdk/issues/129)
576
+ - Make the feature selection work in globe [\#127](https://github.com/kalisio/kdk/issues/127)
577
+ - Refactor KLocationTimeSeries using the new widget design [\#121](https://github.com/kalisio/kdk/issues/121)
578
+ - KView should allow values as props [\#120](https://github.com/kalisio/kdk/issues/120)
579
+ - Refactor KFeatureInfoBox using the new widget design [\#119](https://github.com/kalisio/kdk/issues/119)
580
+ - Enhance feature selection [\#118](https://github.com/kalisio/kdk/issues/118)
581
+ - Allow the KToolBar to be vertical [\#117](https://github.com/kalisio/kdk/issues/117)
582
+ - Enhance KWidget design [\#116](https://github.com/kalisio/kdk/issues/116)
583
+ - Provide basic components to enable Mapillary integration [\#115](https://github.com/kalisio/kdk/issues/115)
584
+ - Make activity refresh when changing route more customisable [\#114](https://github.com/kalisio/kdk/issues/114)
585
+ - Improve openers design on mobile [\#113](https://github.com/kalisio/kdk/issues/113)
586
+ - Enhance customization of KToolBar [\#112](https://github.com/kalisio/kdk/issues/112)
587
+ - Enhance KTimeline design to be more responsive [\#109](https://github.com/kalisio/kdk/issues/109)
588
+ - Archived weather layers should be handled within the forecast layers selector [\#75](https://github.com/kalisio/kdk/issues/75)
589
+ - Refactor the CatalogPanel [\#74](https://github.com/kalisio/kdk/issues/74)
590
+ - Merge KTimeline and KTimelineControl in a unique component [\#73](https://github.com/kalisio/kdk/issues/73)
591
+ - NavigationBar should be closable [\#72](https://github.com/kalisio/kdk/issues/72)
592
+ - Layout should be able to manage a generic footer [\#71](https://github.com/kalisio/kdk/issues/71)
593
+ - Enhance Drawers management [\#70](https://github.com/kalisio/kdk/issues/70)
594
+ - Merge kdk modules into a single module [\#65](https://github.com/kalisio/kdk/issues/65)
595
+ - Allow to run e2e on the targeted deployment platform [\#62](https://github.com/kalisio/kdk/issues/62)
596
+ - Allow to apply the CI process when working on a branch [\#61](https://github.com/kalisio/kdk/issues/61)
597
+ - Support tiling for feature layers in map [\#82](https://github.com/kalisio/kdk/issues/82)
598
+ - Improve application webhook security [\#84](https://github.com/kalisio/kdk/issues/84)
599
+ - Upgrade to latest Node.js LTS [\#48](https://github.com/kalisio/kdk/issues/48)
600
+ - Allow to filter feature layers [\#89](https://github.com/kalisio/kdk/issues/89)
601
+ - Enhance e2e tests across the modules/apps [\#38](https://github.com/kalisio/kdk/issues/38)
602
+ - Optimize measure update for time-stamped features in globe [\#96](https://github.com/kalisio/kdk/issues/96)
603
+ - Create a component to provide styling options for feature layers in map [\#110](https://github.com/kalisio/kdk/issues/110)
604
+ - Manage real-time and archive/forecast mode [\#108](https://github.com/kalisio/kdk/issues/108)
605
+ - Code coverage not correctly pushed to Code Climate in travis application builds [\#51](https://github.com/kalisio/kdk/issues/51)
606
+
607
+ **Fixed bugs:**
608
+
609
+ - Tiled wind layer doesn't work with old arpege-world resolution \(0.5\) [\#168](https://github.com/kalisio/kdk/issues/168)
610
+ - "e.arrayBuffer is not a function" error with WcsGridSource [\#167](https://github.com/kalisio/kdk/issues/167)
611
+ - Level selection doesn't work anymore on tiled mesh layers. [\#166](https://github.com/kalisio/kdk/issues/166)
612
+ - Probe location name not updated in timeseries widget [\#158](https://github.com/kalisio/kdk/issues/158)
613
+ - Tiled feature layers missing some values when changing time [\#156](https://github.com/kalisio/kdk/issues/156)
614
+ - Displayed time in timeseries widget does not show minutes [\#155](https://github.com/kalisio/kdk/issues/155)
615
+ - Visual lag on tiled mesh layer with geotiff grid source [\#153](https://github.com/kalisio/kdk/issues/153)
616
+ - BBox not defined in tiled layers relying on OpenDAP grid source [\#151](https://github.com/kalisio/kdk/issues/151)
617
+ - Tiled mesh layers not correctly unloaded when data is not available [\#150](https://github.com/kalisio/kdk/issues/150)
618
+ - Tile layers not correctly unloaded after navigating in time [\#149](https://github.com/kalisio/kdk/issues/149)
619
+ - Location indicator performs probing on selection [\#148](https://github.com/kalisio/kdk/issues/148)
620
+ - Saving a layer in http mode generates an error with http code 500 [\#145](https://github.com/kalisio/kdk/issues/145)
621
+ - Allow to select a feature even if the schema is not defined [\#144](https://github.com/kalisio/kdk/issues/144)
622
+ - On HTTP mode, timeseries data for a feature are not correct [\#142](https://github.com/kalisio/kdk/issues/142)
623
+ - Missing zero values in tooltip display [\#141](https://github.com/kalisio/kdk/issues/141)
624
+ - Error raised on clustered tile layers [\#140](https://github.com/kalisio/kdk/issues/140)
625
+ - Timeseries do not update correctly when changing time [\#139](https://github.com/kalisio/kdk/issues/139)
626
+ - Timeseries widget not synchronized when disabling/removing a layer [\#135](https://github.com/kalisio/kdk/issues/135)
627
+ - Openers shoud be displayed only a component is assgined to the drawers or footer [\#131](https://github.com/kalisio/kdk/issues/131)
628
+ - min zoom level not correctly handled in tiled map layers [\#126](https://github.com/kalisio/kdk/issues/126)
629
+ - If a geocoder does not respond the geocoder service does not respond [\#125](https://github.com/kalisio/kdk/issues/125)
630
+ - Weacast grid source is missing some data when requesting a tile [\#77](https://github.com/kalisio/kdk/issues/77)
631
+ - KFab should be instanciated within a QPage [\#69](https://github.com/kalisio/kdk/issues/69)
632
+
633
+ **Closed issues:**
634
+
635
+ - Provide an helper component to display a text with an icon [\#76](https://github.com/kalisio/kdk/issues/76)
636
+
637
+ ## [v1.0.0](https://github.com/kalisio/kdk/tree/v1.0.0) (2020-01-20)
638
+
639
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v0.3.0...v1.0.0)
640
+
641
+ **Implemented enhancements:**
642
+
643
+ - Allow to run the client test either with firefox or chrome [\#58](https://github.com/kalisio/kdk/issues/58)
644
+ - Enhance branch management in CLI [\#57](https://github.com/kalisio/kdk/issues/57)
645
+ - Migrate to Testcafe 1.7.x [\#56](https://github.com/kalisio/kdk/issues/56)
646
+ - Simplify organisation services management [\#55](https://github.com/kalisio/kdk/issues/55)
647
+ - Provide a default testcafe image including testcafe-vue-selectors [\#54](https://github.com/kalisio/kdk/issues/54)
648
+ - Take advantage of new conditional builds feature of Travis [\#53](https://github.com/kalisio/kdk/issues/53)
649
+ - Add a command to manage releases with CLI [\#50](https://github.com/kalisio/kdk/issues/50)
650
+ - Android build must target API level 28+ [\#49](https://github.com/kalisio/kdk/issues/49)
651
+ - Enable Greenkeeper to ease dependency upgrades [\#45](https://github.com/kalisio/kdk/issues/45)
652
+ - Add pull command to CLI [\#41](https://github.com/kalisio/kdk/issues/41)
653
+ - Update dependencies across modules/apps [\#39](https://github.com/kalisio/kdk/issues/39)
654
+ - Make Travis pipeline more reliable [\#37](https://github.com/kalisio/kdk/issues/37)
655
+ - Add a regex to only publish on tags of the form 'vX.X.X' [\#59](https://github.com/kalisio/kdk/issues/59)
656
+ - Migrate to Quasar 1.0 across modules [\#31](https://github.com/kalisio/kdk/issues/31)
657
+
658
+ **Fixed bugs:**
659
+
660
+ - Unlink CLI command does not unlink global modules \(only local ones\) [\#42](https://github.com/kalisio/kdk/issues/42)
661
+
662
+ **Closed issues:**
663
+
664
+ - Publishing apk to Google is no more working [\#52](https://github.com/kalisio/kdk/issues/52)
665
+
666
+ ## [v0.3.0](https://github.com/kalisio/kdk/tree/v0.3.0) (2019-07-22)
667
+
668
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v0.2.2...v0.3.0)
669
+
670
+ **Implemented enhancements:**
671
+
672
+ - Allow CLI to select modules from the workspace to apply command on [\#36](https://github.com/kalisio/kdk/issues/36)
673
+ - Allow CLI to manage repositories in different organizations [\#34](https://github.com/kalisio/kdk/issues/34)
674
+ - Integrate the cli within kdk project [\#32](https://github.com/kalisio/kdk/issues/32)
675
+ - Favor service inheritance over hooks for low-level internal operations [\#29](https://github.com/kalisio/kdk/issues/29)
676
+ - Define a solution to deploy our apps as microservices [\#7](https://github.com/kalisio/kdk/issues/7)
677
+
678
+ **Security fixes:**
679
+
680
+ - Upgrade out-of-date dependencies across modules [\#10](https://github.com/kalisio/kdk/issues/10)
681
+
682
+ ## [v0.2.2](https://github.com/kalisio/kdk/tree/v0.2.2) (2019-02-11)
683
+
684
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v0.2.1...v0.2.2)
685
+
686
+ ## [v0.2.1](https://github.com/kalisio/kdk/tree/v0.2.1) (2019-02-11)
687
+
688
+ [Full Changelog](https://github.com/kalisio/kdk/compare/v0.2.0...v0.2.1)
689
+
690
+ ## [v0.2.0](https://github.com/kalisio/kdk/tree/v0.2.0) (2019-02-11)
691
+
692
+ [Full Changelog](https://github.com/kalisio/kdk/compare/9494e1f254fd9e44c3a5994fd15e1e62b31196c7...v0.2.0)
693
+
694
+ **Implemented enhancements:**
695
+
696
+ - Migrate the documentation to VuePress [\#30](https://github.com/kalisio/kdk/issues/30)
697
+ - Change props 'id' by 'objectId' [\#27](https://github.com/kalisio/kdk/issues/27)
698
+ - Add slack notifications from Travis CI [\#24](https://github.com/kalisio/kdk/issues/24)
699
+ - Unify lodash imports [\#21](https://github.com/kalisio/kdk/issues/21)
700
+ - Billing module [\#19](https://github.com/kalisio/kdk/issues/19)
701
+ - Sanatize user inputs [\#18](https://github.com/kalisio/kdk/issues/18)
702
+ - Coverage for end-to-end testing [\#16](https://github.com/kalisio/kdk/issues/16)
703
+ - Filter real-time events [\#15](https://github.com/kalisio/kdk/issues/15)
704
+ - Secure removal of "important" objects [\#13](https://github.com/kalisio/kdk/issues/13)
705
+ - Migrate to Feathers v3 across modules [\#12](https://github.com/kalisio/kdk/issues/12)
706
+ - Setup frontend testing [\#11](https://github.com/kalisio/kdk/issues/11)
707
+ - i18n [\#6](https://github.com/kalisio/kdk/issues/6)
708
+
709
+ **Fixed bugs:**
710
+
711
+ - Code from external modules not correctly transpiled [\#28](https://github.com/kalisio/kdk/issues/28)
712
+ - Unify the use of icons [\#23](https://github.com/kalisio/kdk/issues/23)
713
+ - Optimize data refresh in activities [\#17](https://github.com/kalisio/kdk/issues/17)
714
+
715
+ **Closed issues:**
716
+
717
+ - Refactor the activities using KNavBar to use KTabBar [\#14](https://github.com/kalisio/kdk/issues/14)
718
+ - Manage authorizations [\#9](https://github.com/kalisio/kdk/issues/9)
719
+ - \[kClient\] Initiate the module [\#5](https://github.com/kalisio/kdk/issues/5)
720
+ - Migrate kComponents to other modules \(kCore, kTeam, ...\) [\#4](https://github.com/kalisio/kdk/issues/4)
721
+ - Find a solution to manage deployment access keys \(AWS, Google, etc.\) [\#3](https://github.com/kalisio/kdk/issues/3)
722
+ - Add $off\(\) whenever we use $on\(\) [\#2](https://github.com/kalisio/kdk/issues/2)
723
+ - Handle activity routing correctly [\#1](https://github.com/kalisio/kdk/issues/1)
724
+
725
+
726
+
727
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*