@map-colonies/react-components 3.12.2 → 3.13.0

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