@map-colonies/react-components 3.12.0 → 3.12.2

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