UNPKG

@salesforce/design-system-react

Version:

Salesforce Lightning Design System for React

80 lines (62 loc) 4.04 kB
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } 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); return Constructor; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } 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 _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, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ // # Panel - Filter variant // Implements the [Panel design pattern](https://www.lightningdesignsystem.com/components/panels) in React. // Based on SLDS v2.2.0-rc.1 // ## Dependencies // ### React import React from 'react'; import PropTypes from 'prop-types'; // ### classNames import classNames from 'classnames'; // This component's `checkProps` which issues warnings to developers about properties when in development mode (similar to React's built in development tools) import checkProps from './check-props'; import componentDoc from './docs.json'; // ## Constants import { PANEL } from '../../utilities/constants'; /** * A panel provides detailed contextual information or contextual filtering options. [Filter](/components/filters/) component should be used as children. Menus within a Filter Popover will need to not have "portal mounts" and be inline. */ var Panel = /*#__PURE__*/ function (_React$Component) { _inherits(Panel, _React$Component); function Panel() { _classCallCheck(this, Panel); return _possibleConstructorReturn(this, (Panel.__proto__ || Object.getPrototypeOf(Panel)).apply(this, arguments)); } _createClass(Panel, [{ key: "componentWillMount", value: function componentWillMount() { checkProps(PANEL, componentDoc); } }, { key: "render", value: function render() { return React.createElement("div", { className: classNames('slds-panel', 'slds-grid', 'slds-grid--vertical', 'slds-nowrap', { 'slds-panel--filters': this.props.variant === 'filters' }) }, React.createElement("div", { className: "slds-form--stacked slds-grow slds-scrollable--y slds-grid slds-grid--vertical" }, this.props.children)); } }]); return Panel; }(React.Component); Panel.displayName = PANEL; Panel.propTypes = { /** * The contents of the panel */ children: PropTypes.node, /** * The type of panel */ variant: PropTypes.oneOf(['filters']) }; export default Panel; //# sourceMappingURL=index.js.map