@map-colonies/react-components 3.10.5 → 3.12.2

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 (384) hide show
  1. package/.eslintignore +1 -1
  2. package/.storybook/main.js +13 -13
  3. package/.storybook/manager.js +6 -6
  4. package/.storybook/preview-head.html +21 -21
  5. package/.storybook/preview.js +18 -18
  6. package/.storybook/theme.js +9 -9
  7. package/CHANGELOG.md +619 -538
  8. package/README.md +53 -53
  9. package/dist/autocomplete/autocomplete.css +25 -25
  10. package/dist/autocomplete/autocomplete.d.ts +33 -33
  11. package/dist/autocomplete/autocomplete.js +478 -478
  12. package/dist/autocomplete/index.d.ts +1 -1
  13. package/dist/autocomplete/index.js +5 -5
  14. package/dist/box/box.d.ts +3 -3
  15. package/dist/box/box.js +35 -35
  16. package/dist/box/index.d.ts +1 -1
  17. package/dist/box/index.js +5 -5
  18. package/dist/cesium-map/data-sources/custom.data-source.d.ts +5 -5
  19. package/dist/cesium-map/data-sources/custom.data-source.js +23 -23
  20. package/dist/cesium-map/data-sources/drawings.data-source.d.ts +34 -34
  21. package/dist/cesium-map/data-sources/drawings.data-source.js +187 -187
  22. package/dist/cesium-map/data-sources/index.d.ts +2 -2
  23. package/dist/cesium-map/data-sources/index.js +14 -14
  24. package/dist/cesium-map/entities/entity.d.ts +5 -5
  25. package/dist/cesium-map/entities/entity.description.d.ts +6 -6
  26. package/dist/cesium-map/entities/entity.description.js +27 -27
  27. package/dist/cesium-map/entities/entity.js +23 -23
  28. package/dist/cesium-map/entities/graphics/polygon.graphics.d.ts +5 -5
  29. package/dist/cesium-map/entities/graphics/polygon.graphics.js +23 -23
  30. package/dist/cesium-map/entities/graphics/polyline.graphics.d.ts +5 -5
  31. package/dist/cesium-map/entities/graphics/polyline.graphics.js +23 -23
  32. package/dist/cesium-map/entities/graphics/rectangle.graphics.d.ts +5 -5
  33. package/dist/cesium-map/entities/graphics/rectangle.graphics.js +23 -23
  34. package/dist/cesium-map/entities/index.d.ts +4 -4
  35. package/dist/cesium-map/entities/index.js +16 -16
  36. package/dist/cesium-map/index.d.ts +8 -7
  37. package/dist/cesium-map/index.js +20 -19
  38. package/dist/cesium-map/layers/3d.tileset.d.ts +7 -7
  39. package/dist/cesium-map/layers/3d.tileset.js +43 -39
  40. package/dist/cesium-map/layers/3d.tileset.with.update.d.ts +6 -0
  41. package/dist/cesium-map/layers/3d.tileset.with.update.js +115 -0
  42. package/dist/cesium-map/layers/geojson.layer.d.ts +5 -5
  43. package/dist/cesium-map/layers/geojson.layer.js +23 -23
  44. package/dist/cesium-map/layers/imagery.layer.d.ts +6 -6
  45. package/dist/cesium-map/layers/imagery.layer.js +68 -64
  46. package/dist/cesium-map/layers/index.d.ts +7 -7
  47. package/dist/cesium-map/layers/index.js +19 -19
  48. package/dist/cesium-map/layers/osm.layer.d.ts +9 -9
  49. package/dist/cesium-map/layers/osm.layer.js +36 -36
  50. package/dist/cesium-map/layers/wms.layer.d.ts +9 -9
  51. package/dist/cesium-map/layers/wms.layer.js +36 -36
  52. package/dist/cesium-map/layers/wmts.layer.d.ts +9 -9
  53. package/dist/cesium-map/layers/wmts.layer.js +36 -36
  54. package/dist/cesium-map/layers/xyz.layer.d.ts +9 -9
  55. package/dist/cesium-map/layers/xyz.layer.js +36 -36
  56. package/dist/cesium-map/layers-manager.d.ts +55 -47
  57. package/dist/cesium-map/layers-manager.js +246 -228
  58. package/dist/cesium-map/map-legend/MapLegend.css +135 -0
  59. package/dist/cesium-map/map-legend/MapLegend.d.ts +15 -0
  60. package/dist/cesium-map/map-legend/MapLegend.js +57 -0
  61. package/dist/cesium-map/map-legend/MapLegendList.d.ts +13 -0
  62. package/dist/cesium-map/map-legend/MapLegendList.js +43 -0
  63. package/dist/cesium-map/map-legend/MapLegendSidebar.d.ts +16 -0
  64. package/dist/cesium-map/map-legend/MapLegendSidebar.js +20 -0
  65. package/dist/cesium-map/map-legend/MapLegendToggle.d.ts +7 -0
  66. package/dist/cesium-map/map-legend/MapLegendToggle.js +20 -0
  67. package/dist/cesium-map/map-legend/index.d.ts +3 -0
  68. package/dist/cesium-map/map-legend/index.js +14 -0
  69. package/dist/cesium-map/map.css +59 -54
  70. package/dist/cesium-map/map.d.ts +59 -46
  71. package/dist/cesium-map/map.js +305 -273
  72. package/dist/cesium-map/map.types.d.ts +8 -8
  73. package/dist/cesium-map/map.types.js +12 -12
  74. package/dist/cesium-map/proxied.types.d.ts +30 -22
  75. package/dist/cesium-map/proxied.types.js +132 -100
  76. package/dist/cesium-map/settings/base-maps.css +37 -37
  77. package/dist/cesium-map/settings/base-maps.d.ts +7 -7
  78. package/dist/cesium-map/settings/base-maps.js +78 -78
  79. package/dist/cesium-map/settings/scene-modes.css +19 -19
  80. package/dist/cesium-map/settings/scene-modes.d.ts +7 -7
  81. package/dist/cesium-map/settings/scene-modes.js +65 -65
  82. package/dist/cesium-map/settings/settings.css +52 -49
  83. package/dist/cesium-map/settings/settings.d.ts +23 -23
  84. package/dist/cesium-map/settings/settings.js +79 -79
  85. package/dist/cesium-map/terrain-providers/custom/dummy-quantized-mesh-tile.d.ts +3 -3
  86. package/dist/cesium-map/terrain-providers/custom/dummy-quantized-mesh-tile.js +245 -245
  87. package/dist/cesium-map/terrain-providers/custom/quantized-mesh-decoder.d.ts +9 -9
  88. package/dist/cesium-map/terrain-providers/custom/quantized-mesh-decoder.js +202 -202
  89. package/dist/cesium-map/terrain-providers/custom/quantized-mesh-terrain-provider.d.ts +50 -50
  90. package/dist/cesium-map/terrain-providers/custom/quantized-mesh-terrain-provider.js +136 -136
  91. package/dist/cesium-map/tools/cesium/primitives-conversions.cesium.d.ts +2 -2
  92. package/dist/cesium-map/tools/cesium/primitives-conversions.cesium.js +38 -38
  93. package/dist/cesium-map/tools/coordinates-tracker.tool.css +11 -11
  94. package/dist/cesium-map/tools/coordinates-tracker.tool.d.ts +7 -7
  95. package/dist/cesium-map/tools/coordinates-tracker.tool.js +78 -78
  96. package/dist/cesium-map/tools/draw/drawHelper.css +101 -101
  97. package/dist/cesium-map/tools/draw/drawHelper.d.ts +28 -28
  98. package/dist/cesium-map/tools/draw/drawHelper.js +1694 -1694
  99. package/dist/cesium-map/tools/geojson/geojson-to-primitive.d.ts +4 -4
  100. package/dist/cesium-map/tools/geojson/geojson-to-primitive.js +41 -41
  101. package/dist/cesium-map/tools/geojson/index.d.ts +2 -2
  102. package/dist/cesium-map/tools/geojson/index.js +14 -14
  103. package/dist/cesium-map/tools/geojson/point.geojson.d.ts +3 -3
  104. package/dist/cesium-map/tools/geojson/point.geojson.js +21 -21
  105. package/dist/cesium-map/tools/geojson/polygon.geojson.d.ts +3 -3
  106. package/dist/cesium-map/tools/geojson/polygon.geojson.js +24 -24
  107. package/dist/cesium-map/tools/geojson/rectangle.geojson.d.ts +3 -3
  108. package/dist/cesium-map/tools/geojson/rectangle.geojson.js +44 -44
  109. package/dist/cesium-map/tools/inspector.tool.d.ts +4 -4
  110. package/dist/cesium-map/tools/inspector.tool.js +33 -33
  111. package/dist/cesium-map/tools/scale-tracker.tool.css +16 -16
  112. package/dist/cesium-map/tools/scale-tracker.tool.d.ts +8 -8
  113. package/dist/cesium-map/tools/scale-tracker.tool.js +158 -158
  114. package/dist/cesium-map/tools/terranian-height.tool.d.ts +4 -4
  115. package/dist/cesium-map/tools/terranian-height.tool.js +114 -113
  116. package/dist/cssbaseline/cssbaseline.d.ts +5 -5
  117. package/dist/cssbaseline/cssbaseline.js +41 -41
  118. package/dist/cssbaseline/index.d.ts +1 -1
  119. package/dist/cssbaseline/index.js +6 -6
  120. package/dist/date-picker/date-picker.css +9 -9
  121. package/dist/date-picker/date-picker.d.ts +14 -14
  122. package/dist/date-picker/date-picker.js +78 -78
  123. package/dist/date-picker/index.d.ts +1 -1
  124. package/dist/date-picker/index.js +13 -13
  125. package/dist/date-range-picker/date-range-picker.css +9 -9
  126. package/dist/date-range-picker/date-range-picker.d.ts +26 -26
  127. package/dist/date-range-picker/date-range-picker.form-control.css +3 -3
  128. package/dist/date-range-picker/date-range-picker.form-control.d.ts +28 -28
  129. package/dist/date-range-picker/date-range-picker.form-control.js +95 -95
  130. package/dist/date-range-picker/date-range-picker.js +104 -104
  131. package/dist/date-range-picker/index.d.ts +2 -2
  132. package/dist/date-range-picker/index.js +14 -14
  133. package/dist/file-picker/file-picker.css +63 -63
  134. package/dist/file-picker/file-picker.d.ts +276 -276
  135. package/dist/file-picker/file-picker.js +151 -151
  136. package/dist/file-picker/fs-map.json +1556 -1556
  137. package/dist/file-picker/index.d.ts +2 -2
  138. package/dist/file-picker/index.js +14 -14
  139. package/dist/file-picker/localization.d.ts +11 -11
  140. package/dist/file-picker/localization.js +124 -124
  141. package/dist/index.d.ts +13 -13
  142. package/dist/index.js +25 -25
  143. package/dist/map-filter-container/container-map.css +5 -5
  144. package/dist/map-filter-container/container-map.d.ts +11 -11
  145. package/dist/map-filter-container/container-map.js +31 -31
  146. package/dist/map-filter-container/index.d.ts +1 -1
  147. package/dist/map-filter-container/index.js +13 -13
  148. package/dist/map-filter-container/map-filter-container.d.ts +9 -9
  149. package/dist/map-filter-container/map-filter-container.js +78 -78
  150. package/dist/map-filter-container/polygon-selection-ui.d.ts +12 -12
  151. package/dist/map-filter-container/polygon-selection-ui.js +62 -62
  152. package/dist/models/defaults.d.ts +28 -28
  153. package/dist/models/defaults.js +32 -32
  154. package/dist/models/enums.d.ts +14 -14
  155. package/dist/models/enums.js +20 -20
  156. package/dist/models/index.d.ts +1 -1
  157. package/dist/models/index.js +13 -13
  158. package/dist/ol-map/feature.d.ts +6 -6
  159. package/dist/ol-map/feature.js +20 -20
  160. package/dist/ol-map/index.d.ts +6 -6
  161. package/dist/ol-map/index.js +18 -18
  162. package/dist/ol-map/interactions/draw.d.ts +8 -8
  163. package/dist/ol-map/interactions/draw.js +44 -44
  164. package/dist/ol-map/interactions/index.d.ts +1 -1
  165. package/dist/ol-map/interactions/index.js +13 -13
  166. package/dist/ol-map/layers/index.d.ts +3 -3
  167. package/dist/ol-map/layers/index.js +15 -15
  168. package/dist/ol-map/layers/tile-layer.d.ts +9 -9
  169. package/dist/ol-map/layers/tile-layer.js +48 -48
  170. package/dist/ol-map/layers/vector-layer.d.ts +4 -4
  171. package/dist/ol-map/layers/vector-layer.js +48 -48
  172. package/dist/ol-map/layers/vector-tile-layer.d.ts +10 -10
  173. package/dist/ol-map/layers/vector-tile-layer.js +66 -66
  174. package/dist/ol-map/map.css +17 -17
  175. package/dist/ol-map/map.d.ts +14 -14
  176. package/dist/ol-map/map.js +117 -117
  177. package/dist/ol-map/source/index.d.ts +6 -6
  178. package/dist/ol-map/source/index.js +18 -18
  179. package/dist/ol-map/source/mvt.d.ts +11 -11
  180. package/dist/ol-map/source/mvt.js +37 -37
  181. package/dist/ol-map/source/osm.d.ts +2 -2
  182. package/dist/ol-map/source/osm.js +14 -14
  183. package/dist/ol-map/source/vector-source.d.ts +4 -4
  184. package/dist/ol-map/source/vector-source.js +45 -45
  185. package/dist/ol-map/source/wms.d.ts +17 -17
  186. package/dist/ol-map/source/wms.js +30 -30
  187. package/dist/ol-map/source/wmts.d.ts +21 -21
  188. package/dist/ol-map/source/wmts.js +59 -59
  189. package/dist/ol-map/source/xyz.d.ts +12 -12
  190. package/dist/ol-map/source/xyz.js +27 -27
  191. package/dist/ol-map/style.d.ts +4 -4
  192. package/dist/ol-map/style.js +22 -22
  193. package/dist/popover/index.d.ts +1 -1
  194. package/dist/popover/index.js +5 -5
  195. package/dist/popover/popover.d.ts +3 -3
  196. package/dist/popover/popover.js +35 -35
  197. package/dist/smart-table/__mock-data__/smartTableMocks.d.ts +7 -7
  198. package/dist/smart-table/__mock-data__/smartTableMocks.js +17 -17
  199. package/dist/smart-table/index.d.ts +2 -2
  200. package/dist/smart-table/index.js +14 -14
  201. package/dist/smart-table/smart-table-head.d.ts +11 -11
  202. package/dist/smart-table/smart-table-head.js +22 -22
  203. package/dist/smart-table/smart-table-row.d.ts +12 -12
  204. package/dist/smart-table/smart-table-row.js +46 -46
  205. package/dist/smart-table/smart-table-types.d.ts +9 -9
  206. package/dist/smart-table/smart-table-types.js +2 -2
  207. package/dist/smart-table/smart-table.d.ts +17 -17
  208. package/dist/smart-table/smart-table.js +51 -51
  209. package/dist/theme/index.d.ts +1 -1
  210. package/dist/theme/index.js +13 -13
  211. package/dist/theme/theme.d.ts +8 -8
  212. package/dist/theme/theme.js +124 -124
  213. package/dist/utils/map.d.ts +3 -3
  214. package/dist/utils/map.js +21 -21
  215. package/dist/utils/projections.d.ts +6 -6
  216. package/dist/utils/projections.js +10 -10
  217. package/dist/utils/story.d.ts +12 -12
  218. package/dist/utils/story.js +2 -2
  219. package/package.json +3 -3
  220. package/public/index.html +43 -43
  221. package/public/manifest.json +25 -25
  222. package/public/robots.txt +3 -3
  223. package/src/index.tsx +9 -9
  224. package/src/lib/autocomplete/autocomplete.css +25 -25
  225. package/src/lib/autocomplete/autocomplete.stories.tsx +101 -101
  226. package/src/lib/autocomplete/autocomplete.tsx +681 -681
  227. package/src/lib/autocomplete/index.ts +1 -1
  228. package/src/lib/box/box.tsx +7 -7
  229. package/src/lib/box/index.ts +1 -1
  230. package/src/lib/cesium-map/context-menu.stories.tsx +444 -444
  231. package/src/lib/cesium-map/data-sources/custom.data-source.tsx +12 -12
  232. package/src/lib/cesium-map/data-sources/drawings.data-source.stories.tsx +161 -161
  233. package/src/lib/cesium-map/data-sources/drawings.data-source.tsx +204 -205
  234. package/src/lib/cesium-map/data-sources/index.ts +2 -2
  235. package/src/lib/cesium-map/entities/entity.description.tsx +19 -19
  236. package/src/lib/cesium-map/entities/entity.graphics.stories.tsx +48 -48
  237. package/src/lib/cesium-map/entities/entity.stories.tsx +146 -146
  238. package/src/lib/cesium-map/entities/entity.tsx +10 -10
  239. package/src/lib/cesium-map/entities/graphics/polygon.graphics.tsx +12 -12
  240. package/src/lib/cesium-map/entities/graphics/polyline.graphics.tsx +12 -12
  241. package/src/lib/cesium-map/entities/graphics/rectangle.graphics.tsx +12 -12
  242. package/src/lib/cesium-map/entities/index.ts +4 -4
  243. package/src/lib/cesium-map/index.ts +8 -7
  244. package/src/lib/cesium-map/layers/3d.tileset.stories.tsx +164 -110
  245. package/src/lib/cesium-map/layers/3d.tileset.tsx +51 -47
  246. package/src/lib/cesium-map/layers/3d.tileset.with.update.tsx +120 -0
  247. package/src/lib/cesium-map/layers/geojson.layer.stories.tsx +119 -119
  248. package/src/lib/cesium-map/layers/geojson.layer.tsx +12 -12
  249. package/src/lib/cesium-map/layers/imagery.layer.stories.tsx +39 -39
  250. package/src/lib/cesium-map/layers/imagery.layer.tsx +37 -32
  251. package/src/lib/cesium-map/layers/index.ts +7 -7
  252. package/src/lib/cesium-map/layers/layers.rect.stories.tsx +171 -171
  253. package/src/lib/cesium-map/layers/osm.layer.stories.tsx +40 -40
  254. package/src/lib/cesium-map/layers/osm.layer.tsx +22 -22
  255. package/src/lib/cesium-map/layers/wms.layer.stories.tsx +38 -38
  256. package/src/lib/cesium-map/layers/wms.layer.tsx +22 -22
  257. package/src/lib/cesium-map/layers/wmts.layer.stories.tsx +53 -53
  258. package/src/lib/cesium-map/layers/wmts.layer.tsx +22 -22
  259. package/src/lib/cesium-map/layers/xyz.layer.stories.tsx +37 -37
  260. package/src/lib/cesium-map/layers/xyz.layer.tsx +22 -22
  261. package/src/lib/cesium-map/layers-manager.stories.tsx +286 -286
  262. package/src/lib/cesium-map/layers-manager.ts +354 -325
  263. package/src/lib/cesium-map/map-legend/MapLegend.css +135 -0
  264. package/src/lib/cesium-map/map-legend/MapLegend.tsx +92 -0
  265. package/src/lib/cesium-map/map-legend/MapLegendList.tsx +47 -0
  266. package/src/lib/cesium-map/map-legend/MapLegendSidebar.tsx +55 -0
  267. package/src/lib/cesium-map/map-legend/MapLegendToggle.tsx +31 -0
  268. package/src/lib/cesium-map/map-legend/index.tsx +3 -0
  269. package/src/lib/cesium-map/map-legend/legends-sidebar.stories.tsx +201 -0
  270. package/src/lib/cesium-map/map.css +59 -54
  271. package/src/lib/cesium-map/map.stories.tsx +143 -143
  272. package/src/lib/cesium-map/map.tsx +446 -381
  273. package/src/lib/cesium-map/map.types.ts +11 -11
  274. package/src/lib/cesium-map/proxied.types.ts +54 -42
  275. package/src/lib/cesium-map/settings/base-maps.css +37 -37
  276. package/src/lib/cesium-map/settings/base-maps.tsx +94 -94
  277. package/src/lib/cesium-map/settings/scene-modes.css +19 -19
  278. package/src/lib/cesium-map/settings/scene-modes.tsx +100 -100
  279. package/src/lib/cesium-map/settings/settings.css +52 -49
  280. package/src/lib/cesium-map/settings/settings.stories.tsx +182 -182
  281. package/src/lib/cesium-map/settings/settings.tsx +141 -141
  282. package/src/lib/cesium-map/terrain-providers/custom/dummy-quantized-mesh-tile.ts +243 -243
  283. package/src/lib/cesium-map/terrain-providers/custom/quantized-mesh-decoder.ts +321 -321
  284. package/src/lib/cesium-map/terrain-providers/custom/quantized-mesh-terrain-provider.ts +237 -237
  285. package/src/lib/cesium-map/terrain-providers/terrain-provider-heights-tool.stories.tsx +170 -155
  286. package/src/lib/cesium-map/terrain-providers/terrain-provider.stories.tsx +187 -185
  287. package/src/lib/cesium-map/tools/cesium/primitives-conversions.cesium.ts +15 -15
  288. package/src/lib/cesium-map/tools/coordinates-tracker.tool.css +11 -11
  289. package/src/lib/cesium-map/tools/coordinates-tracker.tool.tsx +79 -79
  290. package/src/lib/cesium-map/tools/draw/drawHelper.css +101 -101
  291. package/src/lib/cesium-map/tools/draw/drawHelper.ts +2116 -2116
  292. package/src/lib/cesium-map/tools/geojson/geojson-to-primitive.ts +54 -54
  293. package/src/lib/cesium-map/tools/geojson/index.ts +2 -2
  294. package/src/lib/cesium-map/tools/geojson/point.geojson.ts +29 -29
  295. package/src/lib/cesium-map/tools/geojson/polygon.geojson.ts +24 -24
  296. package/src/lib/cesium-map/tools/geojson/rectangle.geojson.ts +21 -21
  297. package/src/lib/cesium-map/tools/inspector.tool.tsx +15 -15
  298. package/src/lib/cesium-map/tools/scale-tracker.tool.css +16 -16
  299. package/src/lib/cesium-map/tools/scale-tracker.tool.tsx +192 -192
  300. package/src/lib/cesium-map/tools/terranian-height.tool.tsx +171 -167
  301. package/src/lib/cssbaseline/cssbaseline.tsx +19 -19
  302. package/src/lib/cssbaseline/index.ts +4 -4
  303. package/src/lib/date-picker/date-picker.css +9 -9
  304. package/src/lib/date-picker/date-picker.stories.tsx +130 -130
  305. package/src/lib/date-picker/date-picker.tsx +90 -90
  306. package/src/lib/date-picker/index.ts +1 -1
  307. package/src/lib/date-range-picker/date-range-picker.css +9 -9
  308. package/src/lib/date-range-picker/date-range-picker.form-control.css +3 -3
  309. package/src/lib/date-range-picker/date-range-picker.form-control.spec.tsx +58 -58
  310. package/src/lib/date-range-picker/date-range-picker.form-control.tsx +150 -150
  311. package/src/lib/date-range-picker/date-range-picker.stories.tsx +207 -207
  312. package/src/lib/date-range-picker/date-range-picker.tsx +156 -156
  313. package/src/lib/date-range-picker/index.ts +2 -2
  314. package/src/lib/file-picker/file-picker.css +63 -63
  315. package/src/lib/file-picker/file-picker.stories.tsx +447 -447
  316. package/src/lib/file-picker/file-picker.tsx +180 -180
  317. package/src/lib/file-picker/fs-map.json +1556 -1556
  318. package/src/lib/file-picker/index.ts +2 -2
  319. package/src/lib/file-picker/localization.ts +164 -164
  320. package/src/lib/index.ts +13 -13
  321. package/src/lib/map-filter-container/container-map.css +5 -5
  322. package/src/lib/map-filter-container/container-map.tsx +48 -48
  323. package/src/lib/map-filter-container/index.ts +1 -1
  324. package/src/lib/map-filter-container/map-filter-container.tsx +91 -91
  325. package/src/lib/map-filter-container/polygon-selection-ui.spec.tsx +119 -119
  326. package/src/lib/map-filter-container/polygon-selection-ui.tsx +111 -111
  327. package/src/lib/map-filter-container/stories/Map.stories.tsx +76 -76
  328. package/src/lib/models/defaults.ts +32 -32
  329. package/src/lib/models/enums.ts +16 -16
  330. package/src/lib/models/index.ts +1 -1
  331. package/src/lib/ol-map/feature.tsx +23 -23
  332. package/src/lib/ol-map/index.ts +6 -6
  333. package/src/lib/ol-map/interactions/draw.tsx +56 -56
  334. package/src/lib/ol-map/interactions/index.ts +1 -1
  335. package/src/lib/ol-map/layers/index.ts +3 -3
  336. package/src/lib/ol-map/layers/tile-layer.tsx +36 -36
  337. package/src/lib/ol-map/layers/vector-layer.tsx +32 -32
  338. package/src/lib/ol-map/layers/vector-tile-layer.tsx +56 -56
  339. package/src/lib/ol-map/map.css +17 -17
  340. package/src/lib/ol-map/map.tsx +137 -137
  341. package/src/lib/ol-map/source/index.ts +6 -6
  342. package/src/lib/ol-map/source/mvt.tsx +46 -46
  343. package/src/lib/ol-map/source/osm.tsx +13 -13
  344. package/src/lib/ol-map/source/stories/mvt.stories.tsx +68 -68
  345. package/src/lib/ol-map/source/stories/vector-source.stories.tsx +78 -78
  346. package/src/lib/ol-map/source/stories/wms.stories.tsx +51 -51
  347. package/src/lib/ol-map/source/stories/wmts.stories.tsx +72 -72
  348. package/src/lib/ol-map/source/stories/xyz.stories.tsx +53 -53
  349. package/src/lib/ol-map/source/vector-source.tsx +30 -30
  350. package/src/lib/ol-map/source/wms.tsx +40 -40
  351. package/src/lib/ol-map/source/wmts.tsx +82 -82
  352. package/src/lib/ol-map/source/xyz.tsx +33 -33
  353. package/src/lib/ol-map/stories/map.stories.tsx +60 -60
  354. package/src/lib/ol-map/style.ts +24 -24
  355. package/src/lib/popover/index.ts +1 -1
  356. package/src/lib/popover/popover.tsx +7 -7
  357. package/src/lib/smart-table/__mock-data__/smartTableMocks.ts +22 -22
  358. package/src/lib/smart-table/index.ts +2 -2
  359. package/src/lib/smart-table/smart-table-head.spec.tsx +116 -116
  360. package/src/lib/smart-table/smart-table-head.tsx +47 -47
  361. package/src/lib/smart-table/smart-table-row.spec.tsx +109 -109
  362. package/src/lib/smart-table/smart-table-row.tsx +78 -78
  363. package/src/lib/smart-table/smart-table-types.ts +10 -10
  364. package/src/lib/smart-table/smart-table.spec.tsx +116 -116
  365. package/src/lib/smart-table/smart-table.tsx +115 -115
  366. package/src/lib/smart-table/stories/SmartTable.stories.tsx +114 -114
  367. package/src/lib/theme/index.ts +1 -1
  368. package/src/lib/theme/theme.ts +123 -123
  369. package/src/lib/utils/map.ts +19 -19
  370. package/src/lib/utils/projections.ts +7 -7
  371. package/src/lib/utils/story.ts +11 -11
  372. package/src/react-app-env.d.ts +1 -1
  373. package/src/setupTests.ts +14 -14
  374. package/tsbuildconfig.json +37 -37
  375. package/tsconfig.json +26 -26
  376. package/dist/cesium-map/layers/3d.tileset.update.d.ts +0 -1
  377. package/dist/cesium-map/layers/3d.tileset.update.js +0 -5
  378. package/src/lib/cesium-map/layers/3d.tileset.update.ts +0 -72
  379. package/storybook-static/mock/tileset_1/ll.b3dm +0 -0
  380. package/storybook-static/mock/tileset_1/lr.b3dm +0 -0
  381. package/storybook-static/mock/tileset_1/parent.b3dm +0 -0
  382. package/storybook-static/mock/tileset_1/tileset.json +0 -124
  383. package/storybook-static/mock/tileset_1/ul.b3dm +0 -0
  384. package/storybook-static/mock/tileset_1/ur.b3dm +0 -0
package/CHANGELOG.md CHANGED
@@ -3,6 +3,87 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.12.2](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.12.1...@map-colonies/react-components@3.12.2) (2022-08-14)
7
+
8
+ **Note:** Version bump only for package @map-colonies/react-components
9
+
10
+
11
+
12
+
13
+
14
+ ## [3.12.1](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.12.0...@map-colonies/react-components@3.12.1) (2022-08-14)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * cesium abstraction ([0c24ed0](https://github.com/MapColonies/shared-components/commit/0c24ed044ce21a323789d90124efc59112d2e3a2))
20
+ * fix ([27b85b2](https://github.com/MapColonies/shared-components/commit/27b85b249e50d443f4808c8c21f1805f18d48518))
21
+ * prettier ([5c0ceb7](https://github.com/MapColonies/shared-components/commit/5c0ceb71a096bd78d7cd99a8efb8e3efa1da745c))
22
+
23
+
24
+
25
+
26
+
27
+ # [3.12.0](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.11.0...@map-colonies/react-components@3.12.0) (2022-08-04)
28
+
29
+
30
+ ### Bug Fixes
31
+
32
+ * legend sidebar ([cdca0cc](https://github.com/MapColonies/shared-components/commit/cdca0ccd1f8ee21a575557cc6c13903beaed8ca2))
33
+ * legends style tweaks ([eec1f08](https://github.com/MapColonies/shared-components/commit/eec1f083fa22c818cb55ab3e4d947b61e428f215))
34
+ * lint and prettier ([68bf8f6](https://github.com/MapColonies/shared-components/commit/68bf8f64321043ee1d00d46c08f834698bf18276))
35
+ * map legends final tweaks ([9b00733](https://github.com/MapColonies/shared-components/commit/9b00733594716a0d19eff17249cd2280ca8704a3))
36
+ * map legends fine tuning ([de59b02](https://github.com/MapColonies/shared-components/commit/de59b02a657000e24f962dfc0c405a73f8d4ba11))
37
+ * map legends props to single prop ([5fafca0](https://github.com/MapColonies/shared-components/commit/5fafca0705d1bbee29e80121c09c19fd9c2a959f))
38
+ * map legends styles ([1355962](https://github.com/MapColonies/shared-components/commit/135596209224f52c11d28a2b85f2b470c1980936))
39
+ * pr rejects and prettier ([2fbeb20](https://github.com/MapColonies/shared-components/commit/2fbeb206e2f86589128d21e2ac14e5a57090d7f2))
40
+ * prettier ([f12096a](https://github.com/MapColonies/shared-components/commit/f12096a9839beddad1553ade17c338a07414d882))
41
+ * X btn wrong place ([9ff0ca0](https://github.com/MapColonies/shared-components/commit/9ff0ca0ef928db12d47b1bd428967feadb411d10))
42
+
43
+
44
+ ### Features
45
+
46
+ * add sidebar for the cesium viewer ([81dfe0b](https://github.com/MapColonies/shared-components/commit/81dfe0bdd38d7dcaa131e7b5e24000767b794d81))
47
+ * implement legends sidebar and create story ([60e9b58](https://github.com/MapColonies/shared-components/commit/60e9b587aadb866a9ce14d6508c39239fdfd03fb))
48
+
49
+
50
+
51
+
52
+
53
+ # [3.11.0](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.10.5...@map-colonies/react-components@3.11.0) (2022-05-02)
54
+
55
+
56
+ ### Bug Fixes
57
+
58
+ * 3d story ([ee59db0](https://github.com/MapColonies/shared-components/commit/ee59db00f627b709368f830a3c7cf30dc2cf0525))
59
+ * 3d with update ([86fd98b](https://github.com/MapColonies/shared-components/commit/86fd98b59d137f3bfddc351a98cefcef7b6fc19a))
60
+ * 3d with update ([c554c57](https://github.com/MapColonies/shared-components/commit/c554c57ba85c68e3a5e53c128714d86733db10d0))
61
+ * bounding volume minimum height ([87e0e81](https://github.com/MapColonies/shared-components/commit/87e0e8114f088a4997723f91760f80250e67f629))
62
+ * build errors ([57bc0fa](https://github.com/MapColonies/shared-components/commit/57bc0fac22aebf865112d3c26d1bf46ee57d4dad))
63
+ * fix ([6999626](https://github.com/MapColonies/shared-components/commit/69996260b96379813b051104204568b190d46eaa))
64
+ * fix ([d958564](https://github.com/MapColonies/shared-components/commit/d958564cf178e7258fcdf2c21a1915b0e442c52c))
65
+ * fix ([db76412](https://github.com/MapColonies/shared-components/commit/db7641201cde062e360131a73081867b4db854ba))
66
+ * fix ([16c4499](https://github.com/MapColonies/shared-components/commit/16c4499a33c1c5d0bd34cd33958d5381e05ac3b6))
67
+ * linting ([ca5f578](https://github.com/MapColonies/shared-components/commit/ca5f578f0e2f3422213e4f7e4cfa1abdd05576b8))
68
+ * prettier ([f516da2](https://github.com/MapColonies/shared-components/commit/f516da2ce8f1b59d18ace5cafe6e12642046e19a))
69
+ * prettier ([226ca71](https://github.com/MapColonies/shared-components/commit/226ca71c110abf50c89a36125c33f3e66cf195dc))
70
+ * prettier ([6b1c751](https://github.com/MapColonies/shared-components/commit/6b1c7511355e35b199a5b127668df93e9c393c3b))
71
+ * prettier ([c4e6c13](https://github.com/MapColonies/shared-components/commit/c4e6c13ebc77774b8764f582f710777e316b586b))
72
+ * prettier ([a6613d7](https://github.com/MapColonies/shared-components/commit/a6613d7292aa8eb0b00f83d0885e61dfa4860ca0))
73
+ * revert ([44c6a9b](https://github.com/MapColonies/shared-components/commit/44c6a9b6a34f2f8a6281f26c90ddfe3583832100))
74
+ * story ([c348df4](https://github.com/MapColonies/shared-components/commit/c348df4cdf771483e5e5ade78bac3e734dd4965d))
75
+ * unused ([bf696fe](https://github.com/MapColonies/shared-components/commit/bf696fe20b7e20223ef9f05962d9eecbb2760d06))
76
+ * zoom to ([e78def4](https://github.com/MapColonies/shared-components/commit/e78def47940ab569691677ee71f6ac41a4c3f1bd))
77
+
78
+
79
+ ### Features
80
+
81
+ * update tileset ([17ed73c](https://github.com/MapColonies/shared-components/commit/17ed73c43ba41ad54e70e6c17d152eeb38887009))
82
+
83
+
84
+
85
+
86
+
6
87
  ## [3.10.5](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.10.4...@map-colonies/react-components@3.10.5) (2022-03-29)
7
88
 
8
89
 
@@ -210,542 +291,542 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
210
291
 
211
292
 
212
293
 
213
-
214
- ## [3.3.6](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.5...@map-colonies/react-components@3.3.6) (2021-01-11)
215
-
216
-
217
- ### Bug Fixes
218
-
219
- * **gitignore:** updated ([78fc970](https://github.com/MapColonies/shared-components/commit/78fc9707d8f1201ac2ec5703ed1f00093f1fbc49))
220
-
221
-
222
- ### Features
223
-
224
- * **3d-geo-mock-tiles:** added 3d mock tiles ([77b485a](https://github.com/MapColonies/shared-components/commit/77b485a454ad44e15e96ecbd153ca4b87fc0dec6))
225
- * **camea-position:** preserve position and 3d tiles props ([#93](https://github.com/MapColonies/shared-components/issues/93)) ([e2f5a84](https://github.com/MapColonies/shared-components/commit/e2f5a84ea9929bd3174c668a7c0c8bb887ed7fa6))
226
-
227
-
228
-
229
-
230
-
231
- ## [3.3.5](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.4...@map-colonies/react-components@3.3.5) (2020-12-30)
232
-
233
-
234
- ### Bug Fixes
235
-
236
- * **drawing:** drawing polygon geojson and colors ([#89](https://github.com/MapColonies/shared-components/issues/89)) ([311f998](https://github.com/MapColonies/shared-components/commit/311f998726eba094473465e77eeef8d98e28e2a8))
237
-
238
-
239
-
240
-
241
-
242
- ## [3.3.4](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.3...@map-colonies/react-components@3.3.4) (2020-12-24)
243
-
244
-
245
- ### Bug Fixes
246
-
247
- * **wmts-layer-config:** proper configs are passed + story ([#86](https://github.com/MapColonies/shared-components/issues/86)) ([e6697b0](https://github.com/MapColonies/shared-components/commit/e6697b0e95405e07c2e6fc34107f8d21bb0cab18))
248
-
249
-
250
-
251
-
252
-
253
-
254
- ## [3.3.3](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.2...@map-colonies/react-components@3.3.3) (2020-12-22)
255
-
256
-
257
- ### Features
258
-
259
- * **osm-layer:** cesium additions ([#83](https://github.com/MapColonies/shared-components/issues/83)) ([7fe0749](https://github.com/MapColonies/shared-components/commit/7fe074951d85ee22339679e16a3c5b206c595574))
260
-
261
-
262
-
263
-
264
-
265
-
266
- ## [3.3.2](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.1...@map-colonies/react-components@3.3.2) (2020-12-13)
267
-
268
-
269
- ### Bug Fixes
270
-
271
- * **drawhelper:** inspire ([#82](https://github.com/MapColonies/shared-components/issues/82)) ([bbb5639](https://github.com/MapColonies/shared-components/commit/bbb563974bd6fb89274d6383d7ae72df4267a7b7))
272
-
273
-
274
-
275
-
276
-
277
- ## [3.3.1](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.0...@map-colonies/react-components@3.3.1) (2020-12-13)
278
-
279
-
280
- ### Bug Fixes
281
-
282
- * **cesium-draw:** draw by primitive or geojson ([#80](https://github.com/MapColonies/shared-components/issues/80)) ([d85c123](https://github.com/MapColonies/shared-components/commit/d85c1234d7ed28d28d3dfa0453bf6fb0c6e9d0d3))
283
-
284
-
285
-
286
-
287
-
288
-
289
- # [3.3.0](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.2.0...@map-colonies/react-components@3.3.0) (2020-12-07)
290
-
291
-
292
- ### Bug Fixes
293
-
294
- * **cesium-viewer:** props extendet + types + story ([35bfe9d](https://github.com/MapColonies/shared-components/commit/35bfe9d7fc457bfee787dc546d8cd96322fdd1fb))
295
- * **components:** assets hadling doc, cesium proper exposure ([ce1604c](https://github.com/MapColonies/shared-components/commit/ce1604c4539b2a6cd6507cfa57a0fa87c7ecf8c1))
296
- * **components-assets:** copy components assets to dist ([f4f9a7f](https://github.com/MapColonies/shared-components/commit/f4f9a7fc6af958cebc41a7d82f1cd71924493f37))
297
- * **draw-datasource:** cleanup, refactor, eslint ([dedf861](https://github.com/MapColonies/shared-components/commit/dedf8618ec940f1600f97a0748b5b171fa5bdeba))
298
- * **eslint:** fix ([76fa4a5](https://github.com/MapColonies/shared-components/commit/76fa4a5a97d1f90637117a16c9258639a961f548))
299
- * **eslint:** imports order ([f6db3af](https://github.com/MapColonies/shared-components/commit/f6db3af49192a5c05ae742b2008667ef2bb9f2bf))
300
- * **eslint:** lint error fix ([e0df166](https://github.com/MapColonies/shared-components/commit/e0df166c0ef342ce65b01461f7b6a601e17278d9))
301
- * **lint:** fix ([f53e4a7](https://github.com/MapColonies/shared-components/commit/f53e4a7147425a3a9ac47a385229ddd3566d68cf))
302
- * **mouse-position:** prevent displaying both projections ([debb25d](https://github.com/MapColonies/shared-components/commit/debb25d69c85f5596d9732f2d67dedb1bc667a37))
303
- * **mouse-position:** prevent displaying both projections in map component ([#69](https://github.com/MapColonies/shared-components/issues/69)) ([bc9c488](https://github.com/MapColonies/shared-components/commit/bc9c488eb76b5c4d39d093522fc2dabdc805f8b0))
304
- * **mouse-tracker:** css ([8834ea1](https://github.com/MapColonies/shared-components/commit/8834ea13891b6e71ff79d4458ec4d7b817d1f9e6))
305
- * **pr-comments:** requested changes performed ([1a9444a](https://github.com/MapColonies/shared-components/commit/1a9444a90a053f4e092cbdae49fa20c52991344d))
306
- * **prettier:** applied prettier ([495362c](https://github.com/MapColonies/shared-components/commit/495362c281b238a782c9e4410966b2544e204b85))
307
- * **prettier:** fix ([564e45f](https://github.com/MapColonies/shared-components/commit/564e45fcedeee9434d4df3264bc429457cc2c4e3))
308
- * **prettier:** fix ([1165b8d](https://github.com/MapColonies/shared-components/commit/1165b8d8d887560da79552d4feb31452fe0f126c))
309
- * **prettier:** fixed ([804cc4c](https://github.com/MapColonies/shared-components/commit/804cc4c089f486134a5c6127750ffd16fe161f12))
310
- * **prettier:** run ([68bceef](https://github.com/MapColonies/shared-components/commit/68bceef409ca510c85360f44a2939ba777f1e726))
311
- * **storybook:** default story by order in manager.js ([c88d490](https://github.com/MapColonies/shared-components/commit/c88d490d08e2e9581478fade759bc2e87d1e2e5d))
312
- * **ts:** drawhelper out of ts rules ([639f30d](https://github.com/MapColonies/shared-components/commit/639f30d40475c6de8fcd27e67e3c8ef1ef839386))
313
- * prettier ([aa9c46c](https://github.com/MapColonies/shared-components/commit/aa9c46c362d9cdf5e6e3a4e5e41de0f842d6a209))
314
-
315
-
316
- ### Features
317
-
318
- * **cesium:** layers ([793bd7f](https://github.com/MapColonies/shared-components/commit/793bd7f784e4aeae272ff1867072244ce5af0884))
319
- * **cesium:** map, 3dtiles, imagery + stories ([9c59f97](https://github.com/MapColonies/shared-components/commit/9c59f97ce42be65f3c9ed2acaadaccbbf412bad6))
320
- * **cesium-draw:** implementation by drawHelper, start ([5bba094](https://github.com/MapColonies/shared-components/commit/5bba0947965f11e80011056678a08fd4e0b51ec8))
321
- * **cesium-entity:** component added ([5614754](https://github.com/MapColonies/shared-components/commit/56147540403d00cf2b59fdfc72f81bbe91d30708))
322
- * **cesium-layers:** wms, wmts, xyz layers + stories ([bcd39f8](https://github.com/MapColonies/shared-components/commit/bcd39f85e813b93979823e5fad173731fac8d040))
323
- * **cesium-map:** start ([b93199f](https://github.com/MapColonies/shared-components/commit/b93199fcf6f27d130372f64aac3aa3f472a58b74))
324
- * **coordinates-mouse-tracker:** added ([f8bb8bb](https://github.com/MapColonies/shared-components/commit/f8bb8bb4728081a9fb45bc3787d489e9d4422075))
325
- * **draw:** cont ([628063e](https://github.com/MapColonies/shared-components/commit/628063ea63271977407acb109c870802e5fa10aa))
326
- * **draw:** draw layer + rectangle start ([3eb7860](https://github.com/MapColonies/shared-components/commit/3eb7860f1efa0c146fdea2290832169690f1c84a))
327
- * **draw-rectangle:** implementation, drawHelper cleanup ([30028ae](https://github.com/MapColonies/shared-components/commit/30028ae0e79f8175737e043b3f00f2b3c063428b))
328
- * **scale-mousetarck:** rtl/ltr layout + localization ([d6676d9](https://github.com/MapColonies/shared-components/commit/d6676d9e8f876fb962a3f1ca54f03a430f4b6d1c))
329
- * **scale-tool:** code cleanup start ([9ef1465](https://github.com/MapColonies/shared-components/commit/9ef14650fc3ba55cb50523b9c399e7d8f54d6b96))
330
- * **scale-tool:** start ([501e562](https://github.com/MapColonies/shared-components/commit/501e5626aeb18f687b2dbcc8ce4b5859e65ad2c6))
331
-
332
-
333
-
334
-
335
-
336
-
337
- # [3.2.0](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.1.2...@map-colonies/react-components@3.2.0) (2020-11-15)
338
-
339
-
340
- ### Features
341
-
342
- * make mouse position indicator background white ([05dc827](https://github.com/MapColonies/shared-components/commit/05dc8277f85b9a1468f20156cdc20807812d2f25))
343
-
344
-
345
-
346
-
347
-
348
- ## [3.1.2](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.1.1...@map-colonies/react-components@3.1.2) (2020-11-02)
349
-
350
-
351
- ### Bug Fixes
352
-
353
- * **code:** cleanup ([d68b327](https://github.com/MapColonies/shared-components/commit/d68b3273a011f5e8c34b58f54ba502fbc20760d0))
354
- * **prcomment:** delta in days added ([fc452b6](https://github.com/MapColonies/shared-components/commit/fc452b6fdc4bede432673c7bad493f93923ecc98))
355
- * **prcomments:** pr comments fix ([b64bfaa](https://github.com/MapColonies/shared-components/commit/b64bfaaa5d83a3067f28905f8f231fb33592fb01))
356
- * **prettier:** fix ([73fe162](https://github.com/MapColonies/shared-components/commit/73fe162e323130f1438a18fa4a3c24ed1ed56a6e))
357
- * **prettier:** fix ([e0eb8ef](https://github.com/MapColonies/shared-components/commit/e0eb8ef0e79f96dd568979b10e4ba9f26a21b3b1))
358
- * **prettier:** fix ([9e8f123](https://github.com/MapColonies/shared-components/commit/9e8f1235a6b80529aa259947450edea6a750066e))
359
- * **prettier:** fix ([2b0c845](https://github.com/MapColonies/shared-components/commit/2b0c8451b66056687a3f37b5454c4f77f7bc688b))
360
-
361
-
362
- ### Features
363
-
364
- * **daterangepicker:** new props added ([0d3d0b6](https://github.com/MapColonies/shared-components/commit/0d3d0b699b896bc0a0816f65323698806d33f17c))
365
- * **daterangepicker:** rtl layout + lint ([905e3b9](https://github.com/MapColonies/shared-components/commit/905e3b976b174ad8dd67c8bb7c5f7ccb24eba6b2))
366
- * **datetimerange:** calendar localization param ([08ec3be](https://github.com/MapColonies/shared-components/commit/08ec3beabef09535b915a7cdba79af4ff827eca5))
367
- * **datetimerangepicker:** form control ([455b5c2](https://github.com/MapColonies/shared-components/commit/455b5c26a55e0c23eb23947ee50e0060bf433436))
368
-
369
-
370
-
371
-
372
-
373
-
374
- ## [3.1.1](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.1.0...@map-colonies/react-components@3.1.1) (2020-09-17)
375
-
376
-
377
- ### Bug Fixes
378
-
379
- * **ol-map:** added missing exports ([323e84b](https://github.com/MapColonies/shared-components/commit/323e84bba47d83b8c6ef0a9aa07aa1701ca47508))
380
-
381
-
382
- ### Features
383
-
384
- * **map:** zoom and center properties ([#57](https://github.com/MapColonies/shared-components/issues/57)) ([8e4d419](https://github.com/MapColonies/shared-components/commit/8e4d4193b2ea0209fea8f7c721573b3a2fb0e252))
385
-
386
-
387
-
388
-
389
-
390
- # 3.1.0 (2020-09-07)
391
-
392
-
393
- ### Bug Fixes
394
-
395
- * **code:** functional component typescript ([3ead66e](https://github.com/MapColonies/shared-components/commit/3ead66e0b944dd21241c0e8283f6a23c2cecc907))
396
- * **doc:** layers stories ([0a31a32](https://github.com/MapColonies/shared-components/commit/0a31a3250686bafaa561f8838483732d9d35c20e))
397
- * **eslint:** fixing PR lint hook triggering ([30491de](https://github.com/MapColonies/shared-components/commit/30491de0f63e1668361be0447881193aca2c6404))
398
- * **linting:** storybook linting ([a04e6e9](https://github.com/MapColonies/shared-components/commit/a04e6e9738fef44e1c9d305b03ce253e2651189a))
399
- * **mousetracker:** format changed ([87da349](https://github.com/MapColonies/shared-components/commit/87da3493d0db10989fccd02e093b222625a35283))
400
- * **ol-map:** configured default projection ([535776f](https://github.com/MapColonies/shared-components/commit/535776fc3bdd776d08e8627210f957808baf0726))
401
- * **ol-map:** mouse position projection matches maps ([82f71d0](https://github.com/MapColonies/shared-components/commit/82f71d087b9a74d5e7c970a8e4474476f8ed0f28))
402
- * **prcomments:** pr comments fix ([dfac39b](https://github.com/MapColonies/shared-components/commit/dfac39befbe7d322f2ecdba51a164a8464eedbc2))
403
- * **prettier:** git PR hook triggered ([6a4419c](https://github.com/MapColonies/shared-components/commit/6a4419c009c30e1b2dd3a8f586928722a7e043c7))
404
- * **prettier:** prettier run ([b87a7e6](https://github.com/MapColonies/shared-components/commit/b87a7e6cb7892aabbf684b14a0a1947fe4f9e93b))
405
- * **projections:** fixed WGS84 name ([df17f31](https://github.com/MapColonies/shared-components/commit/df17f31ac78df58157a401f7535cd5742c39f66e))
406
- * **refactor:** utils dir moved under lib ([8c8ef5b](https://github.com/MapColonies/shared-components/commit/8c8ef5bff8d43174850d2d92192b2ba070a73d80))
407
- * **wmtstile:** attribution param not mandatory ([2692cb4](https://github.com/MapColonies/shared-components/commit/2692cb4ea5b41ecc53de4681ebd7bb25f7f23af6))
408
-
409
-
410
- ### Code Refactoring
411
-
412
- * **catalog:** storybook for each package & composed storybook ([#25](https://github.com/MapColonies/shared-components/issues/25)) ([96f7d2d](https://github.com/MapColonies/shared-components/commit/96f7d2d8563aac316d8b808101628b2a227b8cbc))
413
-
414
-
415
- ### Features
416
-
417
- * **core:** map mouse tracking control ([f2ad16f](https://github.com/MapColonies/shared-components/commit/f2ad16f46f921b411305c6ba1d8263be9522a241))
418
- * **maplayers:** added WMS and XYZ layers ([5353825](https://github.com/MapColonies/shared-components/commit/535382590cb0f93d85c1fa9d6095da0468d2791b))
419
- * **ol-map:** added support for projection selection ([47daac4](https://github.com/MapColonies/shared-components/commit/47daac4a86abd9b7e8e0ab13756a42bdac3c4207))
420
- * **vector-tiles:** added vector tiles to map ([5b0a125](https://github.com/MapColonies/shared-components/commit/5b0a1250433107a8ebcdd90cd4b22af4139e168c))
421
- * **wmtstilelayer:** implementation + lint errors ([a5e7189](https://github.com/MapColonies/shared-components/commit/a5e718992157d97b1470556e7c57299d8f049f97))
422
-
423
-
424
- ### Performance Improvements
425
-
426
- * **map:** map control props sensetive to changes ([76ccc8e](https://github.com/MapColonies/shared-components/commit/76ccc8e78ee8acb4cd7d6030a371002aa5d04e6a))
427
-
428
-
429
- * refactor!(monorepo): moved from yarn workspaces to lerna (#26) ([675815a](https://github.com/MapColonies/shared-components/commit/675815a2e23167b47a9e420bbd1c703cb783ff23)), closes [#26](https://github.com/MapColonies/shared-components/issues/26)
430
-
431
-
432
- ### BREAKING CHANGES
433
-
434
- * **catalog:** lerna, core comps
435
-
436
- * fix(storybook): unneeded files
437
-
438
- * fix(rename): demoapps
439
-
440
- * fix(cleanup): unneeded storybooks remains
441
-
442
- * fix(pkg): script added
443
-
444
- * chore(release): version bumped 1.0.0
445
-
446
- - demoapp-react@1.0.0
447
- - demoapp-stencil@1.0.0
448
- - @map-colonies/react-components@1.0.0
449
- - @map-colonies/react-core@1.0.0
450
- - @map-colonies/ui-components@1.0.0
451
- - @map-colonies/ui-components-react@1.0.0
452
-
453
- * fix(readme): updated
454
-
455
- * chore(publish): publish [by user]
456
-
457
- - demoapp-react@1.0.1
458
- - demoapp-stencil@1.0.1
459
- - @map-colonies/react-components@1.0.1
460
- - @map-colonies/react-core@1.0.1
461
-
462
- * fix(prettier): all code is prettified
463
-
464
- * fix(prcomments): fixed
465
-
466
- * fix(tests): added tests infrastructure
467
-
468
- * fix(composed storybook): updated storybook
469
-
470
- * feat(react-core): added stories
471
-
472
- * fix(catalog): fixed react-core docs
473
-
474
- Co-authored-by: alebinson <newdarkvirus@gmail.com>
475
- Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
476
- * lerna, core comps
477
-
478
- * fix(storybook): unneeded files
479
-
480
- * fix(rename): demoapps
481
-
482
- * fix(cleanup): unneeded storybooks remains
483
-
484
- * fix(pkg): script added
485
-
486
- * chore(release): version bumped 1.0.0
487
-
488
- - demoapp-react@1.0.0
489
- - demoapp-stencil@1.0.0
490
- - @map-colonies/react-components@1.0.0
491
- - @map-colonies/react-core@1.0.0
492
- - @map-colonies/ui-components@1.0.0
493
- - @map-colonies/ui-components-react@1.0.0
494
-
495
- * fix(readme): updated
496
-
497
- * chore(publish): publish [by user]
498
-
499
- - demoapp-react@1.0.1
500
- - demoapp-stencil@1.0.1
501
- - @map-colonies/react-components@1.0.1
502
- - @map-colonies/react-core@1.0.1
503
-
504
- * fix(prettier): all code is prettified
505
-
506
- * fix(prcomments): fixed
507
-
508
- * fix(tests): added tests infrastructure
509
-
510
- Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
511
- Co-authored-by: Ran Elishayev <rannygmx@gmail.com>
512
- Co-authored-by: Ran Elishayev <42379604+rannyeli@users.noreply.github.com>
513
-
514
-
515
-
516
-
517
-
518
- # 3.0.0 (2020-09-03)
519
-
520
-
521
- ### Bug Fixes
522
-
523
- * **code:** functional component typescript ([3ead66e](https://github.com/MapColonies/shared-components/commit/3ead66e0b944dd21241c0e8283f6a23c2cecc907))
524
- * **eslint:** fixing PR lint hook triggering ([30491de](https://github.com/MapColonies/shared-components/commit/30491de0f63e1668361be0447881193aca2c6404))
525
- * **mousetracker:** format changed ([87da349](https://github.com/MapColonies/shared-components/commit/87da3493d0db10989fccd02e093b222625a35283))
526
- * **prcomments:** pr comments fix ([dfac39b](https://github.com/MapColonies/shared-components/commit/dfac39befbe7d322f2ecdba51a164a8464eedbc2))
527
- * **prettier:** git PR hook triggered ([6a4419c](https://github.com/MapColonies/shared-components/commit/6a4419c009c30e1b2dd3a8f586928722a7e043c7))
528
- * **wmtstile:** attribution param not mandatory ([2692cb4](https://github.com/MapColonies/shared-components/commit/2692cb4ea5b41ecc53de4681ebd7bb25f7f23af6))
529
-
530
-
531
- ### Code Refactoring
532
-
533
- * **catalog:** storybook for each package & composed storybook ([#25](https://github.com/MapColonies/shared-components/issues/25)) ([96f7d2d](https://github.com/MapColonies/shared-components/commit/96f7d2d8563aac316d8b808101628b2a227b8cbc))
534
-
535
-
536
- ### Features
537
-
538
- * **core:** map mouse tracking control ([f2ad16f](https://github.com/MapColonies/shared-components/commit/f2ad16f46f921b411305c6ba1d8263be9522a241))
539
- * **maplayers:** added WMS and XYZ layers ([5353825](https://github.com/MapColonies/shared-components/commit/535382590cb0f93d85c1fa9d6095da0468d2791b))
540
- * **wmtstilelayer:** implementation + lint errors ([a5e7189](https://github.com/MapColonies/shared-components/commit/a5e718992157d97b1470556e7c57299d8f049f97))
541
-
542
-
543
- ### Performance Improvements
544
-
545
- * **map:** map control props sensetive to changes ([76ccc8e](https://github.com/MapColonies/shared-components/commit/76ccc8e78ee8acb4cd7d6030a371002aa5d04e6a))
546
-
547
-
548
- * refactor!(monorepo): moved from yarn workspaces to lerna (#26) ([675815a](https://github.com/MapColonies/shared-components/commit/675815a2e23167b47a9e420bbd1c703cb783ff23)), closes [#26](https://github.com/MapColonies/shared-components/issues/26)
549
-
550
-
551
- ### BREAKING CHANGES
552
-
553
- * **catalog:** lerna, core comps
554
-
555
- * fix(storybook): unneeded files
556
-
557
- * fix(rename): demoapps
558
-
559
- * fix(cleanup): unneeded storybooks remains
560
-
561
- * fix(pkg): script added
562
-
563
- * chore(release): version bumped 1.0.0
564
-
565
- - demoapp-react@1.0.0
566
- - demoapp-stencil@1.0.0
567
- - @map-colonies/react-components@1.0.0
568
- - @map-colonies/react-core@1.0.0
569
- - @map-colonies/ui-components@1.0.0
570
- - @map-colonies/ui-components-react@1.0.0
571
-
572
- * fix(readme): updated
573
-
574
- * chore(publish): publish [by user]
575
-
576
- - demoapp-react@1.0.1
577
- - demoapp-stencil@1.0.1
578
- - @map-colonies/react-components@1.0.1
579
- - @map-colonies/react-core@1.0.1
580
-
581
- * fix(prettier): all code is prettified
582
-
583
- * fix(prcomments): fixed
584
-
585
- * fix(tests): added tests infrastructure
586
-
587
- * fix(composed storybook): updated storybook
588
-
589
- * feat(react-core): added stories
590
-
591
- * fix(catalog): fixed react-core docs
592
-
593
- Co-authored-by: alebinson <newdarkvirus@gmail.com>
594
- Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
595
- * lerna, core comps
596
-
597
- * fix(storybook): unneeded files
598
-
599
- * fix(rename): demoapps
600
-
601
- * fix(cleanup): unneeded storybooks remains
602
-
603
- * fix(pkg): script added
604
-
605
- * chore(release): version bumped 1.0.0
606
-
607
- - demoapp-react@1.0.0
608
- - demoapp-stencil@1.0.0
609
- - @map-colonies/react-components@1.0.0
610
- - @map-colonies/react-core@1.0.0
611
- - @map-colonies/ui-components@1.0.0
612
- - @map-colonies/ui-components-react@1.0.0
613
-
614
- * fix(readme): updated
615
-
616
- * chore(publish): publish [by user]
617
-
618
- - demoapp-react@1.0.1
619
- - demoapp-stencil@1.0.1
620
- - @map-colonies/react-components@1.0.1
621
- - @map-colonies/react-core@1.0.1
622
-
623
- * fix(prettier): all code is prettified
624
-
625
- * fix(prcomments): fixed
626
-
627
- * fix(tests): added tests infrastructure
628
-
629
- Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
630
- Co-authored-by: Ran Elishayev <rannygmx@gmail.com>
631
- Co-authored-by: Ran Elishayev <42379604+rannyeli@users.noreply.github.com>
632
-
633
-
634
-
635
-
636
- # 2.0.0 (2020-08-26)
637
-
638
-
639
- ### Bug Fixes
640
-
641
- * **mousetracker:** format changed ([87da349](https://github.com/MapColonies/shared-components/commit/87da3493d0db10989fccd02e093b222625a35283))
642
- * **prcomments:** pr comments fix ([dfac39b](https://github.com/MapColonies/shared-components/commit/dfac39befbe7d322f2ecdba51a164a8464eedbc2))
643
- * **wmtstile:** attribution param not mandatory ([2692cb4](https://github.com/MapColonies/shared-components/commit/2692cb4ea5b41ecc53de4681ebd7bb25f7f23af6))
644
-
645
-
646
- ### Features
647
-
648
- * **core:** map mouse tracking control ([f2ad16f](https://github.com/MapColonies/shared-components/commit/f2ad16f46f921b411305c6ba1d8263be9522a241))
649
- * **wmtstilelayer:** implementation + lint errors ([a5e7189](https://github.com/MapColonies/shared-components/commit/a5e718992157d97b1470556e7c57299d8f049f97))
650
-
651
-
652
- ### Performance Improvements
653
-
654
- * **map:** map control props sensetive to changes ([76ccc8e](https://github.com/MapColonies/shared-components/commit/76ccc8e78ee8acb4cd7d6030a371002aa5d04e6a))
655
-
656
-
657
- * refactor!(monorepo): moved from yarn workspaces to lerna (#26) ([675815a](https://github.com/MapColonies/shared-components/commit/675815a2e23167b47a9e420bbd1c703cb783ff23)), closes [#26](https://github.com/MapColonies/shared-components/issues/26)
658
-
659
-
660
- ### BREAKING CHANGES
661
-
662
- * lerna, core comps
663
-
664
- * fix(storybook): unneeded files
665
-
666
- * fix(rename): demoapps
667
-
668
- * fix(cleanup): unneeded storybooks remains
669
-
670
- * fix(pkg): script added
671
-
672
- * chore(release): version bumped 1.0.0
673
-
674
- - demoapp-react@1.0.0
675
- - demoapp-stencil@1.0.0
676
- - @map-colonies/react-components@1.0.0
677
- - @map-colonies/react-core@1.0.0
678
- - @map-colonies/ui-components@1.0.0
679
- - @map-colonies/ui-components-react@1.0.0
680
-
681
- * fix(readme): updated
682
-
683
- * chore(publish): publish [by user]
684
-
685
- - demoapp-react@1.0.1
686
- - demoapp-stencil@1.0.1
687
- - @map-colonies/react-components@1.0.1
688
- - @map-colonies/react-core@1.0.1
689
-
690
- * fix(prettier): all code is prettified
691
-
692
- * fix(prcomments): fixed
693
-
694
- * fix(tests): added tests infrastructure
695
-
696
- Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
697
- Co-authored-by: Ran Elishayev <rannygmx@gmail.com>
698
- Co-authored-by: Ran Elishayev <42379604+rannyeli@users.noreply.github.com>
699
-
700
-
701
-
702
-
703
-
704
-
705
- ## [1.0.1](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@1.0.0...@map-colonies/react-components@1.0.1) (2020-08-17)
706
-
707
-
708
- ### Bug Fixes
709
-
710
- * **readme:** updated ([bf51776](https://github.com/MapColonies/shared-components/commit/bf5177627a7b61c3ee1b1b5f30106e1996da7924))
711
-
712
-
713
-
714
-
715
-
716
- # [1.0.0](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@0.1.2...@map-colonies/react-components@1.0.0) (2020-08-17)
717
-
718
-
719
- ### Bug Fixes
720
-
721
- * **cleanup:** unneeded storybooks remains ([6113a9b](https://github.com/MapColonies/shared-components/commit/6113a9b3589a43effe38fb5795cc90bed564f6e6))
722
- * **rename:** mc prefix removed ([2b8c936](https://github.com/MapColonies/shared-components/commit/2b8c9363313c9958c800951ef25a319f21427d00))
723
- * **storybook:** unneeded files ([aab448f](https://github.com/MapColonies/shared-components/commit/aab448fec67aa971108e05e14eb109242b89c8f5))
724
-
725
-
726
-
727
-
728
-
729
-
730
- ## [0.1.2](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@0.1.1...@map-colonies/react-components@0.1.2) (2020-08-16)
731
-
732
-
733
- ### Bug Fixes
734
-
735
- * **lerna:** index ([f445ee2](https://github.com/MapColonies/shared-components/commit/f445ee235b012a45e57eed5064a32e622f246d8b))
736
-
737
-
738
-
739
-
740
-
741
-
742
- ## 0.1.1 (2020-08-16)
743
-
744
-
745
- ### Bug Fixes
746
-
747
- * **lerna:** package.json ([fd40bdd](https://github.com/MapColonies/shared-components/commit/fd40bdd5ecdac1ec5b31be1a534ca3ed1de6b43f))
748
- * **lerna:** tasks ([09cdbfc](https://github.com/MapColonies/shared-components/commit/09cdbfc5e76c35af973715b60f29d25e36e8cf3c))
749
- * **lint:** linting integrated ([3536f31](https://github.com/MapColonies/shared-components/commit/3536f3162765a63e3baf595b350251d58e3c04f6))
750
- * **linting:** react components ([b6e4b1f](https://github.com/MapColonies/shared-components/commit/b6e4b1f3649a14dd68b13f84ad6a40676d894d0b))
294
+
295
+ ## [3.3.6](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.5...@map-colonies/react-components@3.3.6) (2021-01-11)
296
+
297
+
298
+ ### Bug Fixes
299
+
300
+ * **gitignore:** updated ([78fc970](https://github.com/MapColonies/shared-components/commit/78fc9707d8f1201ac2ec5703ed1f00093f1fbc49))
301
+
302
+
303
+ ### Features
304
+
305
+ * **3d-geo-mock-tiles:** added 3d mock tiles ([77b485a](https://github.com/MapColonies/shared-components/commit/77b485a454ad44e15e96ecbd153ca4b87fc0dec6))
306
+ * **camea-position:** preserve position and 3d tiles props ([#93](https://github.com/MapColonies/shared-components/issues/93)) ([e2f5a84](https://github.com/MapColonies/shared-components/commit/e2f5a84ea9929bd3174c668a7c0c8bb887ed7fa6))
307
+
308
+
309
+
310
+
311
+
312
+ ## [3.3.5](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.4...@map-colonies/react-components@3.3.5) (2020-12-30)
313
+
314
+
315
+ ### Bug Fixes
316
+
317
+ * **drawing:** drawing polygon geojson and colors ([#89](https://github.com/MapColonies/shared-components/issues/89)) ([311f998](https://github.com/MapColonies/shared-components/commit/311f998726eba094473465e77eeef8d98e28e2a8))
318
+
319
+
320
+
321
+
322
+
323
+ ## [3.3.4](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.3...@map-colonies/react-components@3.3.4) (2020-12-24)
324
+
325
+
326
+ ### Bug Fixes
327
+
328
+ * **wmts-layer-config:** proper configs are passed + story ([#86](https://github.com/MapColonies/shared-components/issues/86)) ([e6697b0](https://github.com/MapColonies/shared-components/commit/e6697b0e95405e07c2e6fc34107f8d21bb0cab18))
329
+
330
+
331
+
332
+
333
+
334
+
335
+ ## [3.3.3](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.2...@map-colonies/react-components@3.3.3) (2020-12-22)
336
+
337
+
338
+ ### Features
339
+
340
+ * **osm-layer:** cesium additions ([#83](https://github.com/MapColonies/shared-components/issues/83)) ([7fe0749](https://github.com/MapColonies/shared-components/commit/7fe074951d85ee22339679e16a3c5b206c595574))
341
+
342
+
343
+
344
+
345
+
346
+
347
+ ## [3.3.2](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.1...@map-colonies/react-components@3.3.2) (2020-12-13)
348
+
349
+
350
+ ### Bug Fixes
351
+
352
+ * **drawhelper:** inspire ([#82](https://github.com/MapColonies/shared-components/issues/82)) ([bbb5639](https://github.com/MapColonies/shared-components/commit/bbb563974bd6fb89274d6383d7ae72df4267a7b7))
353
+
354
+
355
+
356
+
357
+
358
+ ## [3.3.1](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.3.0...@map-colonies/react-components@3.3.1) (2020-12-13)
359
+
360
+
361
+ ### Bug Fixes
362
+
363
+ * **cesium-draw:** draw by primitive or geojson ([#80](https://github.com/MapColonies/shared-components/issues/80)) ([d85c123](https://github.com/MapColonies/shared-components/commit/d85c1234d7ed28d28d3dfa0453bf6fb0c6e9d0d3))
364
+
365
+
366
+
367
+
368
+
369
+
370
+ # [3.3.0](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.2.0...@map-colonies/react-components@3.3.0) (2020-12-07)
371
+
372
+
373
+ ### Bug Fixes
374
+
375
+ * **cesium-viewer:** props extendet + types + story ([35bfe9d](https://github.com/MapColonies/shared-components/commit/35bfe9d7fc457bfee787dc546d8cd96322fdd1fb))
376
+ * **components:** assets hadling doc, cesium proper exposure ([ce1604c](https://github.com/MapColonies/shared-components/commit/ce1604c4539b2a6cd6507cfa57a0fa87c7ecf8c1))
377
+ * **components-assets:** copy components assets to dist ([f4f9a7f](https://github.com/MapColonies/shared-components/commit/f4f9a7fc6af958cebc41a7d82f1cd71924493f37))
378
+ * **draw-datasource:** cleanup, refactor, eslint ([dedf861](https://github.com/MapColonies/shared-components/commit/dedf8618ec940f1600f97a0748b5b171fa5bdeba))
379
+ * **eslint:** fix ([76fa4a5](https://github.com/MapColonies/shared-components/commit/76fa4a5a97d1f90637117a16c9258639a961f548))
380
+ * **eslint:** imports order ([f6db3af](https://github.com/MapColonies/shared-components/commit/f6db3af49192a5c05ae742b2008667ef2bb9f2bf))
381
+ * **eslint:** lint error fix ([e0df166](https://github.com/MapColonies/shared-components/commit/e0df166c0ef342ce65b01461f7b6a601e17278d9))
382
+ * **lint:** fix ([f53e4a7](https://github.com/MapColonies/shared-components/commit/f53e4a7147425a3a9ac47a385229ddd3566d68cf))
383
+ * **mouse-position:** prevent displaying both projections ([debb25d](https://github.com/MapColonies/shared-components/commit/debb25d69c85f5596d9732f2d67dedb1bc667a37))
384
+ * **mouse-position:** prevent displaying both projections in map component ([#69](https://github.com/MapColonies/shared-components/issues/69)) ([bc9c488](https://github.com/MapColonies/shared-components/commit/bc9c488eb76b5c4d39d093522fc2dabdc805f8b0))
385
+ * **mouse-tracker:** css ([8834ea1](https://github.com/MapColonies/shared-components/commit/8834ea13891b6e71ff79d4458ec4d7b817d1f9e6))
386
+ * **pr-comments:** requested changes performed ([1a9444a](https://github.com/MapColonies/shared-components/commit/1a9444a90a053f4e092cbdae49fa20c52991344d))
387
+ * **prettier:** applied prettier ([495362c](https://github.com/MapColonies/shared-components/commit/495362c281b238a782c9e4410966b2544e204b85))
388
+ * **prettier:** fix ([564e45f](https://github.com/MapColonies/shared-components/commit/564e45fcedeee9434d4df3264bc429457cc2c4e3))
389
+ * **prettier:** fix ([1165b8d](https://github.com/MapColonies/shared-components/commit/1165b8d8d887560da79552d4feb31452fe0f126c))
390
+ * **prettier:** fixed ([804cc4c](https://github.com/MapColonies/shared-components/commit/804cc4c089f486134a5c6127750ffd16fe161f12))
391
+ * **prettier:** run ([68bceef](https://github.com/MapColonies/shared-components/commit/68bceef409ca510c85360f44a2939ba777f1e726))
392
+ * **storybook:** default story by order in manager.js ([c88d490](https://github.com/MapColonies/shared-components/commit/c88d490d08e2e9581478fade759bc2e87d1e2e5d))
393
+ * **ts:** drawhelper out of ts rules ([639f30d](https://github.com/MapColonies/shared-components/commit/639f30d40475c6de8fcd27e67e3c8ef1ef839386))
394
+ * prettier ([aa9c46c](https://github.com/MapColonies/shared-components/commit/aa9c46c362d9cdf5e6e3a4e5e41de0f842d6a209))
395
+
396
+
397
+ ### Features
398
+
399
+ * **cesium:** layers ([793bd7f](https://github.com/MapColonies/shared-components/commit/793bd7f784e4aeae272ff1867072244ce5af0884))
400
+ * **cesium:** map, 3dtiles, imagery + stories ([9c59f97](https://github.com/MapColonies/shared-components/commit/9c59f97ce42be65f3c9ed2acaadaccbbf412bad6))
401
+ * **cesium-draw:** implementation by drawHelper, start ([5bba094](https://github.com/MapColonies/shared-components/commit/5bba0947965f11e80011056678a08fd4e0b51ec8))
402
+ * **cesium-entity:** component added ([5614754](https://github.com/MapColonies/shared-components/commit/56147540403d00cf2b59fdfc72f81bbe91d30708))
403
+ * **cesium-layers:** wms, wmts, xyz layers + stories ([bcd39f8](https://github.com/MapColonies/shared-components/commit/bcd39f85e813b93979823e5fad173731fac8d040))
404
+ * **cesium-map:** start ([b93199f](https://github.com/MapColonies/shared-components/commit/b93199fcf6f27d130372f64aac3aa3f472a58b74))
405
+ * **coordinates-mouse-tracker:** added ([f8bb8bb](https://github.com/MapColonies/shared-components/commit/f8bb8bb4728081a9fb45bc3787d489e9d4422075))
406
+ * **draw:** cont ([628063e](https://github.com/MapColonies/shared-components/commit/628063ea63271977407acb109c870802e5fa10aa))
407
+ * **draw:** draw layer + rectangle start ([3eb7860](https://github.com/MapColonies/shared-components/commit/3eb7860f1efa0c146fdea2290832169690f1c84a))
408
+ * **draw-rectangle:** implementation, drawHelper cleanup ([30028ae](https://github.com/MapColonies/shared-components/commit/30028ae0e79f8175737e043b3f00f2b3c063428b))
409
+ * **scale-mousetarck:** rtl/ltr layout + localization ([d6676d9](https://github.com/MapColonies/shared-components/commit/d6676d9e8f876fb962a3f1ca54f03a430f4b6d1c))
410
+ * **scale-tool:** code cleanup start ([9ef1465](https://github.com/MapColonies/shared-components/commit/9ef14650fc3ba55cb50523b9c399e7d8f54d6b96))
411
+ * **scale-tool:** start ([501e562](https://github.com/MapColonies/shared-components/commit/501e5626aeb18f687b2dbcc8ce4b5859e65ad2c6))
412
+
413
+
414
+
415
+
416
+
417
+
418
+ # [3.2.0](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.1.2...@map-colonies/react-components@3.2.0) (2020-11-15)
419
+
420
+
421
+ ### Features
422
+
423
+ * make mouse position indicator background white ([05dc827](https://github.com/MapColonies/shared-components/commit/05dc8277f85b9a1468f20156cdc20807812d2f25))
424
+
425
+
426
+
427
+
428
+
429
+ ## [3.1.2](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.1.1...@map-colonies/react-components@3.1.2) (2020-11-02)
430
+
431
+
432
+ ### Bug Fixes
433
+
434
+ * **code:** cleanup ([d68b327](https://github.com/MapColonies/shared-components/commit/d68b3273a011f5e8c34b58f54ba502fbc20760d0))
435
+ * **prcomment:** delta in days added ([fc452b6](https://github.com/MapColonies/shared-components/commit/fc452b6fdc4bede432673c7bad493f93923ecc98))
436
+ * **prcomments:** pr comments fix ([b64bfaa](https://github.com/MapColonies/shared-components/commit/b64bfaaa5d83a3067f28905f8f231fb33592fb01))
437
+ * **prettier:** fix ([73fe162](https://github.com/MapColonies/shared-components/commit/73fe162e323130f1438a18fa4a3c24ed1ed56a6e))
438
+ * **prettier:** fix ([e0eb8ef](https://github.com/MapColonies/shared-components/commit/e0eb8ef0e79f96dd568979b10e4ba9f26a21b3b1))
439
+ * **prettier:** fix ([9e8f123](https://github.com/MapColonies/shared-components/commit/9e8f1235a6b80529aa259947450edea6a750066e))
440
+ * **prettier:** fix ([2b0c845](https://github.com/MapColonies/shared-components/commit/2b0c8451b66056687a3f37b5454c4f77f7bc688b))
441
+
442
+
443
+ ### Features
444
+
445
+ * **daterangepicker:** new props added ([0d3d0b6](https://github.com/MapColonies/shared-components/commit/0d3d0b699b896bc0a0816f65323698806d33f17c))
446
+ * **daterangepicker:** rtl layout + lint ([905e3b9](https://github.com/MapColonies/shared-components/commit/905e3b976b174ad8dd67c8bb7c5f7ccb24eba6b2))
447
+ * **datetimerange:** calendar localization param ([08ec3be](https://github.com/MapColonies/shared-components/commit/08ec3beabef09535b915a7cdba79af4ff827eca5))
448
+ * **datetimerangepicker:** form control ([455b5c2](https://github.com/MapColonies/shared-components/commit/455b5c26a55e0c23eb23947ee50e0060bf433436))
449
+
450
+
451
+
452
+
453
+
454
+
455
+ ## [3.1.1](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.1.0...@map-colonies/react-components@3.1.1) (2020-09-17)
456
+
457
+
458
+ ### Bug Fixes
459
+
460
+ * **ol-map:** added missing exports ([323e84b](https://github.com/MapColonies/shared-components/commit/323e84bba47d83b8c6ef0a9aa07aa1701ca47508))
461
+
462
+
463
+ ### Features
464
+
465
+ * **map:** zoom and center properties ([#57](https://github.com/MapColonies/shared-components/issues/57)) ([8e4d419](https://github.com/MapColonies/shared-components/commit/8e4d4193b2ea0209fea8f7c721573b3a2fb0e252))
466
+
467
+
468
+
469
+
470
+
471
+ # 3.1.0 (2020-09-07)
472
+
473
+
474
+ ### Bug Fixes
475
+
476
+ * **code:** functional component typescript ([3ead66e](https://github.com/MapColonies/shared-components/commit/3ead66e0b944dd21241c0e8283f6a23c2cecc907))
477
+ * **doc:** layers stories ([0a31a32](https://github.com/MapColonies/shared-components/commit/0a31a3250686bafaa561f8838483732d9d35c20e))
478
+ * **eslint:** fixing PR lint hook triggering ([30491de](https://github.com/MapColonies/shared-components/commit/30491de0f63e1668361be0447881193aca2c6404))
479
+ * **linting:** storybook linting ([a04e6e9](https://github.com/MapColonies/shared-components/commit/a04e6e9738fef44e1c9d305b03ce253e2651189a))
480
+ * **mousetracker:** format changed ([87da349](https://github.com/MapColonies/shared-components/commit/87da3493d0db10989fccd02e093b222625a35283))
481
+ * **ol-map:** configured default projection ([535776f](https://github.com/MapColonies/shared-components/commit/535776fc3bdd776d08e8627210f957808baf0726))
482
+ * **ol-map:** mouse position projection matches maps ([82f71d0](https://github.com/MapColonies/shared-components/commit/82f71d087b9a74d5e7c970a8e4474476f8ed0f28))
483
+ * **prcomments:** pr comments fix ([dfac39b](https://github.com/MapColonies/shared-components/commit/dfac39befbe7d322f2ecdba51a164a8464eedbc2))
484
+ * **prettier:** git PR hook triggered ([6a4419c](https://github.com/MapColonies/shared-components/commit/6a4419c009c30e1b2dd3a8f586928722a7e043c7))
485
+ * **prettier:** prettier run ([b87a7e6](https://github.com/MapColonies/shared-components/commit/b87a7e6cb7892aabbf684b14a0a1947fe4f9e93b))
486
+ * **projections:** fixed WGS84 name ([df17f31](https://github.com/MapColonies/shared-components/commit/df17f31ac78df58157a401f7535cd5742c39f66e))
487
+ * **refactor:** utils dir moved under lib ([8c8ef5b](https://github.com/MapColonies/shared-components/commit/8c8ef5bff8d43174850d2d92192b2ba070a73d80))
488
+ * **wmtstile:** attribution param not mandatory ([2692cb4](https://github.com/MapColonies/shared-components/commit/2692cb4ea5b41ecc53de4681ebd7bb25f7f23af6))
489
+
490
+
491
+ ### Code Refactoring
492
+
493
+ * **catalog:** storybook for each package & composed storybook ([#25](https://github.com/MapColonies/shared-components/issues/25)) ([96f7d2d](https://github.com/MapColonies/shared-components/commit/96f7d2d8563aac316d8b808101628b2a227b8cbc))
494
+
495
+
496
+ ### Features
497
+
498
+ * **core:** map mouse tracking control ([f2ad16f](https://github.com/MapColonies/shared-components/commit/f2ad16f46f921b411305c6ba1d8263be9522a241))
499
+ * **maplayers:** added WMS and XYZ layers ([5353825](https://github.com/MapColonies/shared-components/commit/535382590cb0f93d85c1fa9d6095da0468d2791b))
500
+ * **ol-map:** added support for projection selection ([47daac4](https://github.com/MapColonies/shared-components/commit/47daac4a86abd9b7e8e0ab13756a42bdac3c4207))
501
+ * **vector-tiles:** added vector tiles to map ([5b0a125](https://github.com/MapColonies/shared-components/commit/5b0a1250433107a8ebcdd90cd4b22af4139e168c))
502
+ * **wmtstilelayer:** implementation + lint errors ([a5e7189](https://github.com/MapColonies/shared-components/commit/a5e718992157d97b1470556e7c57299d8f049f97))
503
+
504
+
505
+ ### Performance Improvements
506
+
507
+ * **map:** map control props sensetive to changes ([76ccc8e](https://github.com/MapColonies/shared-components/commit/76ccc8e78ee8acb4cd7d6030a371002aa5d04e6a))
508
+
509
+
510
+ * refactor!(monorepo): moved from yarn workspaces to lerna (#26) ([675815a](https://github.com/MapColonies/shared-components/commit/675815a2e23167b47a9e420bbd1c703cb783ff23)), closes [#26](https://github.com/MapColonies/shared-components/issues/26)
511
+
512
+
513
+ ### BREAKING CHANGES
514
+
515
+ * **catalog:** lerna, core comps
516
+
517
+ * fix(storybook): unneeded files
518
+
519
+ * fix(rename): demoapps
520
+
521
+ * fix(cleanup): unneeded storybooks remains
522
+
523
+ * fix(pkg): script added
524
+
525
+ * chore(release): version bumped 1.0.0
526
+
527
+ - demoapp-react@1.0.0
528
+ - demoapp-stencil@1.0.0
529
+ - @map-colonies/react-components@1.0.0
530
+ - @map-colonies/react-core@1.0.0
531
+ - @map-colonies/ui-components@1.0.0
532
+ - @map-colonies/ui-components-react@1.0.0
533
+
534
+ * fix(readme): updated
535
+
536
+ * chore(publish): publish [by user]
537
+
538
+ - demoapp-react@1.0.1
539
+ - demoapp-stencil@1.0.1
540
+ - @map-colonies/react-components@1.0.1
541
+ - @map-colonies/react-core@1.0.1
542
+
543
+ * fix(prettier): all code is prettified
544
+
545
+ * fix(prcomments): fixed
546
+
547
+ * fix(tests): added tests infrastructure
548
+
549
+ * fix(composed storybook): updated storybook
550
+
551
+ * feat(react-core): added stories
552
+
553
+ * fix(catalog): fixed react-core docs
554
+
555
+ Co-authored-by: alebinson <newdarkvirus@gmail.com>
556
+ Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
557
+ * lerna, core comps
558
+
559
+ * fix(storybook): unneeded files
560
+
561
+ * fix(rename): demoapps
562
+
563
+ * fix(cleanup): unneeded storybooks remains
564
+
565
+ * fix(pkg): script added
566
+
567
+ * chore(release): version bumped 1.0.0
568
+
569
+ - demoapp-react@1.0.0
570
+ - demoapp-stencil@1.0.0
571
+ - @map-colonies/react-components@1.0.0
572
+ - @map-colonies/react-core@1.0.0
573
+ - @map-colonies/ui-components@1.0.0
574
+ - @map-colonies/ui-components-react@1.0.0
575
+
576
+ * fix(readme): updated
577
+
578
+ * chore(publish): publish [by user]
579
+
580
+ - demoapp-react@1.0.1
581
+ - demoapp-stencil@1.0.1
582
+ - @map-colonies/react-components@1.0.1
583
+ - @map-colonies/react-core@1.0.1
584
+
585
+ * fix(prettier): all code is prettified
586
+
587
+ * fix(prcomments): fixed
588
+
589
+ * fix(tests): added tests infrastructure
590
+
591
+ Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
592
+ Co-authored-by: Ran Elishayev <rannygmx@gmail.com>
593
+ Co-authored-by: Ran Elishayev <42379604+rannyeli@users.noreply.github.com>
594
+
595
+
596
+
597
+
598
+
599
+ # 3.0.0 (2020-09-03)
600
+
601
+
602
+ ### Bug Fixes
603
+
604
+ * **code:** functional component typescript ([3ead66e](https://github.com/MapColonies/shared-components/commit/3ead66e0b944dd21241c0e8283f6a23c2cecc907))
605
+ * **eslint:** fixing PR lint hook triggering ([30491de](https://github.com/MapColonies/shared-components/commit/30491de0f63e1668361be0447881193aca2c6404))
606
+ * **mousetracker:** format changed ([87da349](https://github.com/MapColonies/shared-components/commit/87da3493d0db10989fccd02e093b222625a35283))
607
+ * **prcomments:** pr comments fix ([dfac39b](https://github.com/MapColonies/shared-components/commit/dfac39befbe7d322f2ecdba51a164a8464eedbc2))
608
+ * **prettier:** git PR hook triggered ([6a4419c](https://github.com/MapColonies/shared-components/commit/6a4419c009c30e1b2dd3a8f586928722a7e043c7))
609
+ * **wmtstile:** attribution param not mandatory ([2692cb4](https://github.com/MapColonies/shared-components/commit/2692cb4ea5b41ecc53de4681ebd7bb25f7f23af6))
610
+
611
+
612
+ ### Code Refactoring
613
+
614
+ * **catalog:** storybook for each package & composed storybook ([#25](https://github.com/MapColonies/shared-components/issues/25)) ([96f7d2d](https://github.com/MapColonies/shared-components/commit/96f7d2d8563aac316d8b808101628b2a227b8cbc))
615
+
616
+
617
+ ### Features
618
+
619
+ * **core:** map mouse tracking control ([f2ad16f](https://github.com/MapColonies/shared-components/commit/f2ad16f46f921b411305c6ba1d8263be9522a241))
620
+ * **maplayers:** added WMS and XYZ layers ([5353825](https://github.com/MapColonies/shared-components/commit/535382590cb0f93d85c1fa9d6095da0468d2791b))
621
+ * **wmtstilelayer:** implementation + lint errors ([a5e7189](https://github.com/MapColonies/shared-components/commit/a5e718992157d97b1470556e7c57299d8f049f97))
622
+
623
+
624
+ ### Performance Improvements
625
+
626
+ * **map:** map control props sensetive to changes ([76ccc8e](https://github.com/MapColonies/shared-components/commit/76ccc8e78ee8acb4cd7d6030a371002aa5d04e6a))
627
+
628
+
629
+ * refactor!(monorepo): moved from yarn workspaces to lerna (#26) ([675815a](https://github.com/MapColonies/shared-components/commit/675815a2e23167b47a9e420bbd1c703cb783ff23)), closes [#26](https://github.com/MapColonies/shared-components/issues/26)
630
+
631
+
632
+ ### BREAKING CHANGES
633
+
634
+ * **catalog:** lerna, core comps
635
+
636
+ * fix(storybook): unneeded files
637
+
638
+ * fix(rename): demoapps
639
+
640
+ * fix(cleanup): unneeded storybooks remains
641
+
642
+ * fix(pkg): script added
643
+
644
+ * chore(release): version bumped 1.0.0
645
+
646
+ - demoapp-react@1.0.0
647
+ - demoapp-stencil@1.0.0
648
+ - @map-colonies/react-components@1.0.0
649
+ - @map-colonies/react-core@1.0.0
650
+ - @map-colonies/ui-components@1.0.0
651
+ - @map-colonies/ui-components-react@1.0.0
652
+
653
+ * fix(readme): updated
654
+
655
+ * chore(publish): publish [by user]
656
+
657
+ - demoapp-react@1.0.1
658
+ - demoapp-stencil@1.0.1
659
+ - @map-colonies/react-components@1.0.1
660
+ - @map-colonies/react-core@1.0.1
661
+
662
+ * fix(prettier): all code is prettified
663
+
664
+ * fix(prcomments): fixed
665
+
666
+ * fix(tests): added tests infrastructure
667
+
668
+ * fix(composed storybook): updated storybook
669
+
670
+ * feat(react-core): added stories
671
+
672
+ * fix(catalog): fixed react-core docs
673
+
674
+ Co-authored-by: alebinson <newdarkvirus@gmail.com>
675
+ Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
676
+ * lerna, core comps
677
+
678
+ * fix(storybook): unneeded files
679
+
680
+ * fix(rename): demoapps
681
+
682
+ * fix(cleanup): unneeded storybooks remains
683
+
684
+ * fix(pkg): script added
685
+
686
+ * chore(release): version bumped 1.0.0
687
+
688
+ - demoapp-react@1.0.0
689
+ - demoapp-stencil@1.0.0
690
+ - @map-colonies/react-components@1.0.0
691
+ - @map-colonies/react-core@1.0.0
692
+ - @map-colonies/ui-components@1.0.0
693
+ - @map-colonies/ui-components-react@1.0.0
694
+
695
+ * fix(readme): updated
696
+
697
+ * chore(publish): publish [by user]
698
+
699
+ - demoapp-react@1.0.1
700
+ - demoapp-stencil@1.0.1
701
+ - @map-colonies/react-components@1.0.1
702
+ - @map-colonies/react-core@1.0.1
703
+
704
+ * fix(prettier): all code is prettified
705
+
706
+ * fix(prcomments): fixed
707
+
708
+ * fix(tests): added tests infrastructure
709
+
710
+ Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
711
+ Co-authored-by: Ran Elishayev <rannygmx@gmail.com>
712
+ Co-authored-by: Ran Elishayev <42379604+rannyeli@users.noreply.github.com>
713
+
714
+
715
+
716
+
717
+ # 2.0.0 (2020-08-26)
718
+
719
+
720
+ ### Bug Fixes
721
+
722
+ * **mousetracker:** format changed ([87da349](https://github.com/MapColonies/shared-components/commit/87da3493d0db10989fccd02e093b222625a35283))
723
+ * **prcomments:** pr comments fix ([dfac39b](https://github.com/MapColonies/shared-components/commit/dfac39befbe7d322f2ecdba51a164a8464eedbc2))
724
+ * **wmtstile:** attribution param not mandatory ([2692cb4](https://github.com/MapColonies/shared-components/commit/2692cb4ea5b41ecc53de4681ebd7bb25f7f23af6))
725
+
726
+
727
+ ### Features
728
+
729
+ * **core:** map mouse tracking control ([f2ad16f](https://github.com/MapColonies/shared-components/commit/f2ad16f46f921b411305c6ba1d8263be9522a241))
730
+ * **wmtstilelayer:** implementation + lint errors ([a5e7189](https://github.com/MapColonies/shared-components/commit/a5e718992157d97b1470556e7c57299d8f049f97))
731
+
732
+
733
+ ### Performance Improvements
734
+
735
+ * **map:** map control props sensetive to changes ([76ccc8e](https://github.com/MapColonies/shared-components/commit/76ccc8e78ee8acb4cd7d6030a371002aa5d04e6a))
736
+
737
+
738
+ * refactor!(monorepo): moved from yarn workspaces to lerna (#26) ([675815a](https://github.com/MapColonies/shared-components/commit/675815a2e23167b47a9e420bbd1c703cb783ff23)), closes [#26](https://github.com/MapColonies/shared-components/issues/26)
739
+
740
+
741
+ ### BREAKING CHANGES
742
+
743
+ * lerna, core comps
744
+
745
+ * fix(storybook): unneeded files
746
+
747
+ * fix(rename): demoapps
748
+
749
+ * fix(cleanup): unneeded storybooks remains
750
+
751
+ * fix(pkg): script added
752
+
753
+ * chore(release): version bumped 1.0.0
754
+
755
+ - demoapp-react@1.0.0
756
+ - demoapp-stencil@1.0.0
757
+ - @map-colonies/react-components@1.0.0
758
+ - @map-colonies/react-core@1.0.0
759
+ - @map-colonies/ui-components@1.0.0
760
+ - @map-colonies/ui-components-react@1.0.0
761
+
762
+ * fix(readme): updated
763
+
764
+ * chore(publish): publish [by user]
765
+
766
+ - demoapp-react@1.0.1
767
+ - demoapp-stencil@1.0.1
768
+ - @map-colonies/react-components@1.0.1
769
+ - @map-colonies/react-core@1.0.1
770
+
771
+ * fix(prettier): all code is prettified
772
+
773
+ * fix(prcomments): fixed
774
+
775
+ * fix(tests): added tests infrastructure
776
+
777
+ Co-authored-by: LEBINSON ALEX <ALEXLEB@rf.local>
778
+ Co-authored-by: Ran Elishayev <rannygmx@gmail.com>
779
+ Co-authored-by: Ran Elishayev <42379604+rannyeli@users.noreply.github.com>
780
+
781
+
782
+
783
+
784
+
785
+
786
+ ## [1.0.1](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@1.0.0...@map-colonies/react-components@1.0.1) (2020-08-17)
787
+
788
+
789
+ ### Bug Fixes
790
+
791
+ * **readme:** updated ([bf51776](https://github.com/MapColonies/shared-components/commit/bf5177627a7b61c3ee1b1b5f30106e1996da7924))
792
+
793
+
794
+
795
+
796
+
797
+ # [1.0.0](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@0.1.2...@map-colonies/react-components@1.0.0) (2020-08-17)
798
+
799
+
800
+ ### Bug Fixes
801
+
802
+ * **cleanup:** unneeded storybooks remains ([6113a9b](https://github.com/MapColonies/shared-components/commit/6113a9b3589a43effe38fb5795cc90bed564f6e6))
803
+ * **rename:** mc prefix removed ([2b8c936](https://github.com/MapColonies/shared-components/commit/2b8c9363313c9958c800951ef25a319f21427d00))
804
+ * **storybook:** unneeded files ([aab448f](https://github.com/MapColonies/shared-components/commit/aab448fec67aa971108e05e14eb109242b89c8f5))
805
+
806
+
807
+
808
+
809
+
810
+
811
+ ## [0.1.2](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@0.1.1...@map-colonies/react-components@0.1.2) (2020-08-16)
812
+
813
+
814
+ ### Bug Fixes
815
+
816
+ * **lerna:** index ([f445ee2](https://github.com/MapColonies/shared-components/commit/f445ee235b012a45e57eed5064a32e622f246d8b))
817
+
818
+
819
+
820
+
821
+
822
+
823
+ ## 0.1.1 (2020-08-16)
824
+
825
+
826
+ ### Bug Fixes
827
+
828
+ * **lerna:** package.json ([fd40bdd](https://github.com/MapColonies/shared-components/commit/fd40bdd5ecdac1ec5b31be1a534ca3ed1de6b43f))
829
+ * **lerna:** tasks ([09cdbfc](https://github.com/MapColonies/shared-components/commit/09cdbfc5e76c35af973715b60f29d25e36e8cf3c))
830
+ * **lint:** linting integrated ([3536f31](https://github.com/MapColonies/shared-components/commit/3536f3162765a63e3baf595b350251d58e3c04f6))
831
+ * **linting:** react components ([b6e4b1f](https://github.com/MapColonies/shared-components/commit/b6e4b1f3649a14dd68b13f84ad6a40676d894d0b))
751
832
  * **publish:** task added ([4aa8c2d](https://github.com/MapColonies/shared-components/commit/4aa8c2d4d2101ee7b7065f826dd536ff47c0eef1))