@woosmap/ui 3.161.0 → 3.163.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "3.161.0",
3
+ "version": "3.163.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -168,11 +168,14 @@ class Aside extends Component {
168
168
  }
169
169
 
170
170
  Aside.propTypes = {
171
- children: PropTypes.node.isRequired,
171
+ children: PropTypes.node,
172
172
  product: PropTypes.object.isRequired,
173
173
  mode: PropTypes.oneOf(['pluggedTo', 'addon', 'worksWith']).isRequired,
174
174
  };
175
175
 
176
+ Aside.defaultProps = {
177
+ children: null,
178
+ };
176
179
  class Card extends Component {
177
180
  render() {
178
181
  const {
@@ -50,6 +50,9 @@ Tooltip.propTypes = {
50
50
  'mapping',
51
51
  'distance',
52
52
  'traffic',
53
+ 'indoor_map',
54
+ 'indoor_distance',
55
+ 'indoor_search',
53
56
  undefined,
54
57
  ]),
55
58
  text: PropTypes.string,