457 lines
22 KiB
JavaScript
457 lines
22 KiB
JavaScript
"use strict";
|
|
|
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "DraggableCore", {
|
|
enumerable: true,
|
|
get: function get() {
|
|
return _DraggableCore.default;
|
|
}
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
|
var _reactDom = _interopRequireDefault(require("react-dom"));
|
|
|
|
var _clsx2 = _interopRequireDefault(require("clsx"));
|
|
|
|
var _domFns = require("./utils/domFns");
|
|
|
|
var _positionFns = require("./utils/positionFns");
|
|
|
|
var _shims = require("./utils/shims");
|
|
|
|
var _DraggableCore = _interopRequireDefault(require("./DraggableCore"));
|
|
|
|
var _log = _interopRequireDefault(require("./utils/log"));
|
|
|
|
var _excluded = ["axis", "bounds", "children", "defaultPosition", "defaultClassName", "defaultClassNameDragging", "defaultClassNameDragged", "position", "positionOffset", "scale"];
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
|
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
|
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
|
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
|
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
|
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
|
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
|
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
|
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
|
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
|
|
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
|
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
|
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
|
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
|
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
|
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
|
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
|
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
|
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
|
|
//
|
|
// Define <Draggable>
|
|
//
|
|
var Draggable = /*#__PURE__*/function (_React$Component) {
|
|
_inherits(Draggable, _React$Component);
|
|
|
|
var _super = _createSuper(Draggable);
|
|
|
|
function Draggable(props
|
|
/*: DraggableProps*/
|
|
) {
|
|
var _this;
|
|
|
|
_classCallCheck(this, Draggable);
|
|
|
|
_this = _super.call(this, props);
|
|
|
|
_defineProperty(_assertThisInitialized(_this), "onDragStart", function (e, coreData) {
|
|
(0, _log.default)('Draggable: onDragStart: %j', coreData); // Short-circuit if user's callback killed it.
|
|
|
|
var shouldStart = _this.props.onStart(e, (0, _positionFns.createDraggableData)(_assertThisInitialized(_this), coreData)); // Kills start event on core as well, so move handlers are never bound.
|
|
|
|
|
|
if (shouldStart === false) return false;
|
|
|
|
_this.setState({
|
|
dragging: true,
|
|
dragged: true
|
|
});
|
|
});
|
|
|
|
_defineProperty(_assertThisInitialized(_this), "onDrag", function (e, coreData) {
|
|
if (!_this.state.dragging) return false;
|
|
(0, _log.default)('Draggable: onDrag: %j', coreData);
|
|
var uiData = (0, _positionFns.createDraggableData)(_assertThisInitialized(_this), coreData);
|
|
var newState
|
|
/*: $Shape<DraggableState>*/
|
|
= {
|
|
x: uiData.x,
|
|
y: uiData.y
|
|
}; // Keep within bounds.
|
|
|
|
if (_this.props.bounds) {
|
|
// Save original x and y.
|
|
var x = newState.x,
|
|
y = newState.y; // Add slack to the values used to calculate bound position. This will ensure that if
|
|
// we start removing slack, the element won't react to it right away until it's been
|
|
// completely removed.
|
|
|
|
newState.x += _this.state.slackX;
|
|
newState.y += _this.state.slackY; // Get bound position. This will ceil/floor the x and y within the boundaries.
|
|
|
|
var _getBoundPosition = (0, _positionFns.getBoundPosition)(_assertThisInitialized(_this), newState.x, newState.y),
|
|
_getBoundPosition2 = _slicedToArray(_getBoundPosition, 2),
|
|
newStateX = _getBoundPosition2[0],
|
|
newStateY = _getBoundPosition2[1];
|
|
|
|
newState.x = newStateX;
|
|
newState.y = newStateY; // Recalculate slack by noting how much was shaved by the boundPosition handler.
|
|
|
|
newState.slackX = _this.state.slackX + (x - newState.x);
|
|
newState.slackY = _this.state.slackY + (y - newState.y); // Update the event we fire to reflect what really happened after bounds took effect.
|
|
|
|
uiData.x = newState.x;
|
|
uiData.y = newState.y;
|
|
uiData.deltaX = newState.x - _this.state.x;
|
|
uiData.deltaY = newState.y - _this.state.y;
|
|
} // Short-circuit if user's callback killed it.
|
|
|
|
|
|
var shouldUpdate = _this.props.onDrag(e, uiData);
|
|
|
|
if (shouldUpdate === false) return false;
|
|
|
|
_this.setState(newState);
|
|
});
|
|
|
|
_defineProperty(_assertThisInitialized(_this), "onDragStop", function (e, coreData) {
|
|
if (!_this.state.dragging) return false; // Short-circuit if user's callback killed it.
|
|
|
|
var shouldContinue = _this.props.onStop(e, (0, _positionFns.createDraggableData)(_assertThisInitialized(_this), coreData));
|
|
|
|
if (shouldContinue === false) return false;
|
|
(0, _log.default)('Draggable: onDragStop: %j', coreData);
|
|
var newState
|
|
/*: $Shape<DraggableState>*/
|
|
= {
|
|
dragging: false,
|
|
slackX: 0,
|
|
slackY: 0
|
|
}; // If this is a controlled component, the result of this operation will be to
|
|
// revert back to the old position. We expect a handler on `onDragStop`, at the least.
|
|
|
|
var controlled = Boolean(_this.props.position);
|
|
|
|
if (controlled) {
|
|
var _this$props$position = _this.props.position,
|
|
x = _this$props$position.x,
|
|
y = _this$props$position.y;
|
|
newState.x = x;
|
|
newState.y = y;
|
|
}
|
|
|
|
_this.setState(newState);
|
|
});
|
|
|
|
_this.state = {
|
|
// Whether or not we are currently dragging.
|
|
dragging: false,
|
|
// Whether or not we have been dragged before.
|
|
dragged: false,
|
|
// Current transform x and y.
|
|
x: props.position ? props.position.x : props.defaultPosition.x,
|
|
y: props.position ? props.position.y : props.defaultPosition.y,
|
|
prevPropsPosition: _objectSpread({}, props.position),
|
|
// Used for compensating for out-of-bounds drags
|
|
slackX: 0,
|
|
slackY: 0,
|
|
// Can only determine if SVG after mounting
|
|
isElementSVG: false
|
|
};
|
|
|
|
if (props.position && !(props.onDrag || props.onStop)) {
|
|
// eslint-disable-next-line no-console
|
|
console.warn('A `position` was applied to this <Draggable>, without drag handlers. This will make this ' + 'component effectively undraggable. Please attach `onDrag` or `onStop` handlers so you can adjust the ' + '`position` of this element.');
|
|
}
|
|
|
|
return _this;
|
|
}
|
|
|
|
_createClass(Draggable, [{
|
|
key: "componentDidMount",
|
|
value: function componentDidMount() {
|
|
// Check to see if the element passed is an instanceof SVGElement
|
|
if (typeof window.SVGElement !== 'undefined' && this.findDOMNode() instanceof window.SVGElement) {
|
|
this.setState({
|
|
isElementSVG: true
|
|
});
|
|
}
|
|
}
|
|
}, {
|
|
key: "componentWillUnmount",
|
|
value: function componentWillUnmount() {
|
|
this.setState({
|
|
dragging: false
|
|
}); // prevents invariant if unmounted while dragging
|
|
} // React Strict Mode compatibility: if `nodeRef` is passed, we will use it instead of trying to find
|
|
// the underlying DOM node ourselves. See the README for more information.
|
|
|
|
}, {
|
|
key: "findDOMNode",
|
|
value: function findDOMNode()
|
|
/*: ?HTMLElement*/
|
|
{
|
|
var _this$props$nodeRef$c, _this$props, _this$props$nodeRef;
|
|
|
|
return (_this$props$nodeRef$c = (_this$props = this.props) === null || _this$props === void 0 ? void 0 : (_this$props$nodeRef = _this$props.nodeRef) === null || _this$props$nodeRef === void 0 ? void 0 : _this$props$nodeRef.current) !== null && _this$props$nodeRef$c !== void 0 ? _this$props$nodeRef$c : _reactDom.default.findDOMNode(this);
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render()
|
|
/*: ReactElement<any>*/
|
|
{
|
|
var _clsx;
|
|
|
|
var _this$props2 = this.props,
|
|
axis = _this$props2.axis,
|
|
bounds = _this$props2.bounds,
|
|
children = _this$props2.children,
|
|
defaultPosition = _this$props2.defaultPosition,
|
|
defaultClassName = _this$props2.defaultClassName,
|
|
defaultClassNameDragging = _this$props2.defaultClassNameDragging,
|
|
defaultClassNameDragged = _this$props2.defaultClassNameDragged,
|
|
position = _this$props2.position,
|
|
positionOffset = _this$props2.positionOffset,
|
|
scale = _this$props2.scale,
|
|
draggableCoreProps = _objectWithoutProperties(_this$props2, _excluded);
|
|
|
|
var style = {};
|
|
var svgTransform = null; // If this is controlled, we don't want to move it - unless it's dragging.
|
|
|
|
var controlled = Boolean(position);
|
|
var draggable = !controlled || this.state.dragging;
|
|
var validPosition = position || defaultPosition;
|
|
var transformOpts = {
|
|
// Set left if horizontal drag is enabled
|
|
x: (0, _positionFns.canDragX)(this) && draggable ? this.state.x : validPosition.x,
|
|
// Set top if vertical drag is enabled
|
|
y: (0, _positionFns.canDragY)(this) && draggable ? this.state.y : validPosition.y
|
|
}; // If this element was SVG, we use the `transform` attribute.
|
|
|
|
if (this.state.isElementSVG) {
|
|
svgTransform = (0, _domFns.createSVGTransform)(transformOpts, positionOffset);
|
|
} else {
|
|
// Add a CSS transform to move the element around. This allows us to move the element around
|
|
// without worrying about whether or not it is relatively or absolutely positioned.
|
|
// If the item you are dragging already has a transform set, wrap it in a <span> so <Draggable>
|
|
// has a clean slate.
|
|
style = (0, _domFns.createCSSTransform)(transformOpts, positionOffset);
|
|
} // Mark with class while dragging
|
|
|
|
|
|
var className = (0, _clsx2.default)(children.props.className || '', defaultClassName, (_clsx = {}, _defineProperty(_clsx, defaultClassNameDragging, this.state.dragging), _defineProperty(_clsx, defaultClassNameDragged, this.state.dragged), _clsx)); // Reuse the child provided
|
|
// This makes it flexible to use whatever element is wanted (div, ul, etc)
|
|
|
|
return /*#__PURE__*/React.createElement(_DraggableCore.default, _extends({}, draggableCoreProps, {
|
|
onStart: this.onDragStart,
|
|
onDrag: this.onDrag,
|
|
onStop: this.onDragStop
|
|
}), /*#__PURE__*/React.cloneElement(React.Children.only(children), {
|
|
className: className,
|
|
style: _objectSpread(_objectSpread({}, children.props.style), style),
|
|
transform: svgTransform
|
|
}));
|
|
}
|
|
}], [{
|
|
key: "getDerivedStateFromProps",
|
|
value: // React 16.3+
|
|
// Arity (props, state)
|
|
function getDerivedStateFromProps(_ref, _ref2)
|
|
/*: ?$Shape<DraggableState>*/
|
|
{
|
|
var position = _ref.position;
|
|
var prevPropsPosition = _ref2.prevPropsPosition;
|
|
|
|
// Set x/y if a new position is provided in props that is different than the previous.
|
|
if (position && (!prevPropsPosition || position.x !== prevPropsPosition.x || position.y !== prevPropsPosition.y)) {
|
|
(0, _log.default)('Draggable: getDerivedStateFromProps %j', {
|
|
position: position,
|
|
prevPropsPosition: prevPropsPosition
|
|
});
|
|
return {
|
|
x: position.x,
|
|
y: position.y,
|
|
prevPropsPosition: _objectSpread({}, position)
|
|
};
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}]);
|
|
|
|
return Draggable;
|
|
}(React.Component);
|
|
|
|
exports.default = Draggable;
|
|
|
|
_defineProperty(Draggable, "displayName", 'Draggable');
|
|
|
|
_defineProperty(Draggable, "propTypes", _objectSpread(_objectSpread({}, _DraggableCore.default.propTypes), {}, {
|
|
/**
|
|
* `axis` determines which axis the draggable can move.
|
|
*
|
|
* Note that all callbacks will still return data as normal. This only
|
|
* controls flushing to the DOM.
|
|
*
|
|
* 'both' allows movement horizontally and vertically.
|
|
* 'x' limits movement to horizontal axis.
|
|
* 'y' limits movement to vertical axis.
|
|
* 'none' limits all movement.
|
|
*
|
|
* Defaults to 'both'.
|
|
*/
|
|
axis: _propTypes.default.oneOf(['both', 'x', 'y', 'none']),
|
|
|
|
/**
|
|
* `bounds` determines the range of movement available to the element.
|
|
* Available values are:
|
|
*
|
|
* 'parent' restricts movement within the Draggable's parent node.
|
|
*
|
|
* Alternatively, pass an object with the following properties, all of which are optional:
|
|
*
|
|
* {left: LEFT_BOUND, right: RIGHT_BOUND, bottom: BOTTOM_BOUND, top: TOP_BOUND}
|
|
*
|
|
* All values are in px.
|
|
*
|
|
* Example:
|
|
*
|
|
* ```jsx
|
|
* let App = React.createClass({
|
|
* render: function () {
|
|
* return (
|
|
* <Draggable bounds={{right: 300, bottom: 300}}>
|
|
* <div>Content</div>
|
|
* </Draggable>
|
|
* );
|
|
* }
|
|
* });
|
|
* ```
|
|
*/
|
|
bounds: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
left: _propTypes.default.number,
|
|
right: _propTypes.default.number,
|
|
top: _propTypes.default.number,
|
|
bottom: _propTypes.default.number
|
|
}), _propTypes.default.string, _propTypes.default.oneOf([false])]),
|
|
defaultClassName: _propTypes.default.string,
|
|
defaultClassNameDragging: _propTypes.default.string,
|
|
defaultClassNameDragged: _propTypes.default.string,
|
|
|
|
/**
|
|
* `defaultPosition` specifies the x and y that the dragged item should start at
|
|
*
|
|
* Example:
|
|
*
|
|
* ```jsx
|
|
* let App = React.createClass({
|
|
* render: function () {
|
|
* return (
|
|
* <Draggable defaultPosition={{x: 25, y: 25}}>
|
|
* <div>I start with transformX: 25px and transformY: 25px;</div>
|
|
* </Draggable>
|
|
* );
|
|
* }
|
|
* });
|
|
* ```
|
|
*/
|
|
defaultPosition: _propTypes.default.shape({
|
|
x: _propTypes.default.number,
|
|
y: _propTypes.default.number
|
|
}),
|
|
positionOffset: _propTypes.default.shape({
|
|
x: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
y: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string])
|
|
}),
|
|
|
|
/**
|
|
* `position`, if present, defines the current position of the element.
|
|
*
|
|
* This is similar to how form elements in React work - if no `position` is supplied, the component
|
|
* is uncontrolled.
|
|
*
|
|
* Example:
|
|
*
|
|
* ```jsx
|
|
* let App = React.createClass({
|
|
* render: function () {
|
|
* return (
|
|
* <Draggable position={{x: 25, y: 25}}>
|
|
* <div>I start with transformX: 25px and transformY: 25px;</div>
|
|
* </Draggable>
|
|
* );
|
|
* }
|
|
* });
|
|
* ```
|
|
*/
|
|
position: _propTypes.default.shape({
|
|
x: _propTypes.default.number,
|
|
y: _propTypes.default.number
|
|
}),
|
|
|
|
/**
|
|
* These properties should be defined on the child, not here.
|
|
*/
|
|
className: _shims.dontSetMe,
|
|
style: _shims.dontSetMe,
|
|
transform: _shims.dontSetMe
|
|
}));
|
|
|
|
_defineProperty(Draggable, "defaultProps", _objectSpread(_objectSpread({}, _DraggableCore.default.defaultProps), {}, {
|
|
axis: 'both',
|
|
bounds: false,
|
|
defaultClassName: 'react-draggable',
|
|
defaultClassNameDragging: 'react-draggable-dragging',
|
|
defaultClassNameDragged: 'react-draggable-dragged',
|
|
defaultPosition: {
|
|
x: 0,
|
|
y: 0
|
|
},
|
|
scale: 1
|
|
})); |