@map-colonies/react-components 3.12.2 → 3.12.3

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