Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
var ListGroupItem = function (_React$Component) {
_inherits(ListGroupItem, _React$Component);
function ListGroupItem() {
_classCallCheck(this, ListGroupItem);
return _possibleConstructorReturn(this, _React$Component.apply(this, arguments));
}
ListGroupItem.prototype.renderHeader = function renderHeader(header, headingClassName) {
if (React.isValidElement(header)) {
return cloneElement(header, {
className: classNames(header.props.className, headingClassName)
});
}
return React.createElement(
'h4',
var Cascader = function (_React$Component) {
_inherits(Cascader, _React$Component);
function Cascader(props) {
_classCallCheck(this, Cascader);
var _this = _possibleConstructorReturn(this, (Cascader.__proto__ || Object.getPrototypeOf(Cascader)).call(this, props));
_this.handleChange = function (value, selectedOptions) {
_this.setState({ inputValue: '' });
if (selectedOptions[0].__IS_FILTERED_OPTION) {
var unwrappedValue = value[0];
var unwrappedSelectedOptions = selectedOptions[0].path;
_this.setValue(unwrappedValue, unwrappedSelectedOptions);
return;
}
_this.setValue(value, selectedOptions);
};
var Spin = function (_React$Component) {
_inherits(Spin, _React$Component);
function Spin(props) {
_classCallCheck(this, Spin);
var _this = _possibleConstructorReturn(this, (Spin.__proto__ || Object.getPrototypeOf(Spin)).call(this, props));
var spinning = props.spinning;
_this.state = {
spinning: spinning
};
return _this;
}
_createClass(Spin, [{
key: 'isNestedPattern',
value: function isNestedPattern() {
var AXAHeaderLanguages = function (_BaseComponentGlobal) {
_inherits(AXAHeaderLanguages, _BaseComponentGlobal);
_createClass(AXAHeaderLanguages, null, [{
key: 'observedAttributes',
get: function get() {
return ['items'];
}
}]);
function AXAHeaderLanguages() {
_classCallCheck(this, AXAHeaderLanguages);
return _possibleConstructorReturn(this, (AXAHeaderLanguages.__proto__ || _Object$getPrototypeOf(AXAHeaderLanguages)).call(this, { styles: styles, template: template }));
}
_createClass(AXAHeaderLanguages, [{
key: 'connectedCallback',
var TimelineItem = function (_React$Component) {
_inherits(TimelineItem, _React$Component);
function TimelineItem() {
_classCallCheck(this, TimelineItem);
return _possibleConstructorReturn(this, (TimelineItem.__proto__ || Object.getPrototypeOf(TimelineItem)).apply(this, arguments));
}
_createClass(TimelineItem, [{
key: 'render',
value: function render() {
var _classNames, _classNames2;
var _a = this.props,
prefixCls = _a.prefixCls,
className = _a.className,
_a$color = _a.color,
var MiniSelect = function (_React$Component) {
_inherits(MiniSelect, _React$Component);
function MiniSelect() {
_classCallCheck(this, MiniSelect);
return _possibleConstructorReturn(this, (MiniSelect.__proto__ || Object.getPrototypeOf(MiniSelect)).apply(this, arguments));
}
_createClass(MiniSelect, [{
key: 'render',
value: function render() {
return React.createElement(Select, _extends({ size: 'small' }, this.props));
}
}]);
return MiniSelect;
}(React.Component);
var LiftModalAnimator = function (_ModalAnimator) {
_inherits(LiftModalAnimator, _ModalAnimator);
function LiftModalAnimator() {
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
_ref$timing = _ref.timing,
timing = _ref$timing === undefined ? 'cubic-bezier( .1, .7, .1, 1)' : _ref$timing,
_ref$delay = _ref.delay,
delay = _ref$delay === undefined ? 0 : _ref$delay,
_ref$duration = _ref.duration,
duration = _ref$duration === undefined ? 0.4 : _ref$duration;
_classCallCheck(this, LiftModalAnimator);
return _possibleConstructorReturn(this, (LiftModalAnimator.__proto__ || _Object$getPrototypeOf(LiftModalAnimator)).call(this, { timing: timing, delay: delay, duration: duration }));
}
/**
return _a = function (_React$Component) {
_inherits(PickerWrapper, _React$Component);
function PickerWrapper() {
_classCallCheck(this, PickerWrapper);
var _this = _possibleConstructorReturn(this, (PickerWrapper.__proto__ || Object.getPrototypeOf(PickerWrapper)).apply(this, arguments));
_this.handleOpenChange = function (open) {
var _this$props = _this.props,
onOpenChange = _this$props.onOpenChange,
toggleOpen = _this$props.toggleOpen;
onOpenChange(open);
if (toggleOpen) {
warning(false, '`toggleOpen` is deprecated and will be removed in the future, ' + 'please use `onOpenChange` instead, see: https://u.ant.design/date-picker-on-open-change');
toggleOpen({ open: open });
}
var IOSSwipeNavigatorAnimator = function (_NavigatorAnimator) {
_inherits(IOSSwipeNavigatorAnimator, _NavigatorAnimator);
_createClass(IOSSwipeNavigatorAnimator, null, [{
key: 'swipeable',
get: function get() {
return true;
}
}]);
function IOSSwipeNavigatorAnimator() {
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var _ref$durationRestore = _ref.durationRestore,
durationRestore = _ref$durationRestore === undefined ? 0.1 : _ref$durationRestore,
_ref$durationSwipe = _ref.durationSwipe,
durationSwipe = _ref$durationSwipe === undefined ? 0.15 : _ref$durationSwipe,
_ref$timingSwipe = _ref.timingSwipe,
var SegmentElement = function (_BaseElement) {
_inherits(SegmentElement, _BaseElement);
/**
* @event postchange
* @description
* [en]Fires after the active button is changed.[/en]
* [ja][/ja]
* @param {Object} event
* [en]Event object.[/en]
* [ja][/ja]
* @param {Number} event.index
* [en]Tapped button index.[/en]
* [ja][/ja]
* @param {Object} event.segmentItem
* [en]Segment item object.[/en]
* [ja][/ja]
*/