UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

55 lines (54 loc) 1.62 kB
/** * DevExtreme (esm/renovation/ui/scheduler/workspaces/base/header_cell.js) * Version: 21.1.4 * Build date: Mon Jun 21 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; var _excluded = ["children", "className", "colSpan", "styles"]; import { createVNode } from "inferno"; import { BaseInfernoComponent, normalizeStyles } from "@devextreme/vdom"; import { CellProps } from "./ordinary_cell"; export var viewFunction = _ref => { var { props: { children: children, className: className, colSpan: colSpan, styles: styles } } = _ref; return createVNode(1, "th", className, children, 0, { style: normalizeStyles(styles), colSpan: colSpan }) }; export class HeaderCell extends BaseInfernoComponent { constructor(props) { super(props); this.state = {} } get restAttributes() { var _this$props = this.props, restProps = _objectWithoutPropertiesLoose(_this$props, _excluded); return restProps } render() { var props = this.props; return viewFunction({ props: _extends({}, props), restAttributes: this.restAttributes }) } } HeaderCell.defaultProps = _extends({}, CellProps);