UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

25 lines 1.47 kB
import { __rest } from "tslib"; import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Drawer/drawer'; import { css } from '@patternfly/react-styles'; export var DrawerColorVariant; (function (DrawerColorVariant) { DrawerColorVariant["default"] = "default"; DrawerColorVariant["light200"] = "light-200"; })(DrawerColorVariant || (DrawerColorVariant = {})); export const DrawerContext = React.createContext({ isExpanded: false, isStatic: false, onExpand: () => { }, position: 'right', drawerRef: null, isInline: false }); export const Drawer = (_a) => { var { className = '', children, isExpanded = false, isInline = false, isStatic = false, position = 'right', onExpand = () => { } } = _a, props = __rest(_a, ["className", "children", "isExpanded", "isInline", "isStatic", "position", "onExpand"]); const drawerRef = React.useRef(); return (React.createElement(DrawerContext.Provider, { value: { isExpanded, isStatic, onExpand, position, drawerRef, isInline } }, React.createElement("div", Object.assign({ className: css(styles.drawer, isExpanded && styles.modifiers.expanded, isInline && styles.modifiers.inline, isStatic && styles.modifiers.static, position === 'left' && styles.modifiers.panelLeft, position === 'bottom' && styles.modifiers.panelBottom, className), ref: drawerRef }, props), children))); }; Drawer.displayName = 'Drawer'; //# sourceMappingURL=Drawer.js.map