Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
metagrover committed May 18, 2017
1 parent 82f4a17 commit e652ec0
Show file tree
Hide file tree
Showing 16 changed files with 418 additions and 327 deletions.
52 changes: 26 additions & 26 deletions dist/CustomQuery.bundle.js

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions dist/direction.bundle.js

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions dist/earthquake.bundle.js

Large diffs are not rendered by default.

88 changes: 44 additions & 44 deletions dist/events.bundle.js

Large diffs are not rendered by default.

60 changes: 30 additions & 30 deletions dist/heatmap.bundle.js

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions dist/list.bundle.js

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions dist/main.bundle.js

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions dist/meetupblast.bundle.js

Large diffs are not rendered by default.

54 changes: 27 additions & 27 deletions dist/nearby.bundle.js

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions dist/now.bundle.js

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions dist/transport.bundle.js

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions dist/weather.bundle.js

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions lib/sensors/GeoDistanceDropdown.js
Expand Up @@ -462,4 +462,20 @@ GeoDistanceDropdown.defaultProps = {
GeoDistanceDropdown.contextTypes = {
appbaseRef: _react2.default.PropTypes.any.isRequired,
type: _react2.default.PropTypes.any.isRequired
};

GeoDistanceDropdown.types = {
componentId: _reactivebase.TYPES.STRING,
appbaseField: _reactivebase.TYPES.STRING,
appbaseFieldType: _reactivebase.TYPES.GEO_POINT,
title: _reactivebase.TYPES.STRING,
data: _reactivebase.TYPES.ARRAY,
unit: _reactivebase.TYPES.STRING,
autoLocation: _reactivebase.TYPES.BOOLEAN,
defaultSelected: _reactivebase.TYPES.OBJECT,
placeholder: _reactivebase.TYPES.STRING,
placeholderDropdown: _reactivebase.TYPES.STRING,
customQuery: _reactivebase.TYPES.FUNCTION,
componentStyle: _reactivebase.TYPES.OBJECT,
URLParams: _reactivebase.TYPES.BOOLEAN
};
17 changes: 17 additions & 0 deletions lib/sensors/GeoDistanceSlider.js
Expand Up @@ -483,4 +483,21 @@ GeoDistanceSlider.defaultProps = {
GeoDistanceSlider.contextTypes = {
appbaseRef: _react2.default.PropTypes.any.isRequired,
type: _react2.default.PropTypes.any.isRequired
};

GeoDistanceSlider.types = {
componentId: _reactivebase.TYPES.STRING,
appbaseField: _reactivebase.TYPES.STRING,
appbaseFieldType: _reactivebase.TYPES.GEO_POINT,
title: _reactivebase.TYPES.STRING,
range: _reactivebase.TYPES.OBJECT,
rangeLabels: _reactivebase.TYPES.OBJECT,
stepValue: _reactivebase.TYPES.NUMBER,
unit: _reactivebase.TYPES.STRING,
autoLocation: _reactivebase.TYPES.BOOLEAN,
defaultSelected: _reactivebase.TYPES.OBJECT,
placeholder: _reactivebase.TYPES.STRING,
customQuery: _reactivebase.TYPES.FUNCTION,
componentStyle: _reactivebase.TYPES.OBJECT,
URLParams: _reactivebase.TYPES.BOOLEAN
};
11 changes: 11 additions & 0 deletions lib/sensors/PlacesSearch.js
Expand Up @@ -356,4 +356,15 @@ PlacesSearch.defaultProps = {
PlacesSearch.contextTypes = {
appbaseRef: _react2.default.PropTypes.any.isRequired,
type: _react2.default.PropTypes.any.isRequired
};

PlacesSearch.types = {
componentId: _reactivebase.TYPES.STRING,
appbaseField: _reactivebase.TYPES.STRING,
title: _reactivebase.TYPES.STRING,
customQuery: _reactivebase.TYPES.FUNCTION,
placeholder: _reactivebase.TYPES.STRING,
autoLocation: _reactivebase.TYPES.BOOLEAN,
componentStyle: _reactivebase.TYPES.OBJECT,
unit: _reactivebase.TYPES.STRING
};
51 changes: 49 additions & 2 deletions umd/ReactiveMaps.js
Expand Up @@ -20432,8 +20432,9 @@ return /******/ (function(modules) { // webpackBootstrap
}, {
key: "applyURLUpdate",
value: function applyURLUpdate() {
if (history.pushState && this.params.toString()) {
var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + "?" + this.params.toString();
if (history.pushState) {
var paramsSting = this.params.toString() ? "?" + this.params.toString() : "";
var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + paramsSting;
window.history.pushState({ path: newurl }, '', newurl);
}
}
Expand Down Expand Up @@ -38492,6 +38493,8 @@ return /******/ (function(modules) { // webpackBootstrap
var ARRAY = exports.ARRAY = "array";
var OBJECT = exports.OBJECT = "object";
var FUNCTION = exports.FUNCTION = "function";
var GEO_POINT = exports.GEO_POINT = "geo_point";
var DATE = exports.DATE = "date";

/***/ }),
/* 83 */
Expand Down Expand Up @@ -97198,6 +97201,23 @@ return /******/ (function(modules) { // webpackBootstrap
type: _react2.default.PropTypes.any.isRequired
};

GeoDistanceSlider.types = {
componentId: _reactivebase.TYPES.STRING,
appbaseField: _reactivebase.TYPES.STRING,
appbaseFieldType: _reactivebase.TYPES.GEO_POINT,
title: _reactivebase.TYPES.STRING,
range: _reactivebase.TYPES.OBJECT,
rangeLabels: _reactivebase.TYPES.OBJECT,
stepValue: _reactivebase.TYPES.NUMBER,
unit: _reactivebase.TYPES.STRING,
autoLocation: _reactivebase.TYPES.BOOLEAN,
defaultSelected: _reactivebase.TYPES.OBJECT,
placeholder: _reactivebase.TYPES.STRING,
customQuery: _reactivebase.TYPES.FUNCTION,
componentStyle: _reactivebase.TYPES.OBJECT,
URLParams: _reactivebase.TYPES.BOOLEAN
};

/***/ }),
/* 550 */
/***/ (function(module, exports, __webpack_require__) {
Expand Down Expand Up @@ -99156,6 +99176,22 @@ return /******/ (function(modules) { // webpackBootstrap
type: _react2.default.PropTypes.any.isRequired
};

GeoDistanceDropdown.types = {
componentId: _reactivebase.TYPES.STRING,
appbaseField: _reactivebase.TYPES.STRING,
appbaseFieldType: _reactivebase.TYPES.GEO_POINT,
title: _reactivebase.TYPES.STRING,
data: _reactivebase.TYPES.ARRAY,
unit: _reactivebase.TYPES.STRING,
autoLocation: _reactivebase.TYPES.BOOLEAN,
defaultSelected: _reactivebase.TYPES.OBJECT,
placeholder: _reactivebase.TYPES.STRING,
placeholderDropdown: _reactivebase.TYPES.STRING,
customQuery: _reactivebase.TYPES.FUNCTION,
componentStyle: _reactivebase.TYPES.OBJECT,
URLParams: _reactivebase.TYPES.BOOLEAN
};

/***/ }),
/* 576 */
/***/ (function(module, exports, __webpack_require__) {
Expand Down Expand Up @@ -99520,6 +99556,17 @@ return /******/ (function(modules) { // webpackBootstrap
type: _react2.default.PropTypes.any.isRequired
};

PlacesSearch.types = {
componentId: _reactivebase.TYPES.STRING,
appbaseField: _reactivebase.TYPES.STRING,
title: _reactivebase.TYPES.STRING,
customQuery: _reactivebase.TYPES.FUNCTION,
placeholder: _reactivebase.TYPES.STRING,
autoLocation: _reactivebase.TYPES.BOOLEAN,
componentStyle: _reactivebase.TYPES.OBJECT,
unit: _reactivebase.TYPES.STRING
};

/***/ })
/******/ ])
});
Expand Down

0 comments on commit e652ec0

Please sign in to comment.