UNPKG

@gizwits/vantui

Version:

机智云组件库

41 lines 2.35 kB
import _defineProperty from "@babel/runtime/helpers/defineProperty"; import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties"; var _excluded = ["max", "value", "disabled", "direction", "onChange", "style", "className", "children"]; 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; } import { View } from '@tarojs/components'; import * as utils from '../wxs/utils'; import CheckboxGroupContext from './context'; import { jsx as _jsx } from "react/jsx-runtime"; export function CheckboxGroup(props) { var max = props.max, _props$value = props.value, value = _props$value === void 0 ? [] : _props$value, _props$disabled = props.disabled, disabled = _props$disabled === void 0 ? false : _props$disabled, _props$direction = props.direction, direction = _props$direction === void 0 ? 'vertical' : _props$direction, onChange = props.onChange, style = props.style, className = props.className, children = props.children, others = _objectWithoutProperties(props, _excluded); return /*#__PURE__*/_jsx(CheckboxGroupContext.Provider, { value: { value: value, max: max, disabled: disabled, direction: direction, onChange: onChange }, children: /*#__PURE__*/_jsx(View, _objectSpread(_objectSpread({ className: utils.bem('checkbox-group', [{ horizontal: direction === 'horizontal' }]) + " ".concat(className || ''), style: style }, others), {}, { children: children })) }); } export default CheckboxGroup;