Overview
- Getting Started
- Loading States
- Forms
- Feature Flags
- Portal
- Show
- For
- Text
- Toggle
- Local Storage
Actions
- Button
- Icon Button
Communication
- Admonition
- Accordion
- Avatar
- Notifications
- Progress Indicators
- Tag
- Tooltip
Containment
- Confirm Modal
- Prompt Modal
- CTA Modal
- Modaldeprecated
- Dialog
- Table
Navigation
- Menu
- Tabs
Selection
- Drag & Drop
- Checkbox
- Date Picker
- Radio
- Rating
- Select
- Combobox
- Switch
Inputs
- Field
- Input
- Textarea
- Labeldeprecated
- Fieldset
- Field Messagedeprecated
- File Uploader
Hooks & Helpers
- split-props
- trap-focusdeprecated
- use-root-colors
- use-theme
- use-theme-context
- use-toggledeprecated
Portal
Portal displays content in outside of the DOM hierarchy.
1import { Portal } from '@cerberus/react'
Usage
API
export interface PortalProps { container?: RefObject<HTMLElement>; disabled?: boolean;}
define function Portal(props: PropsWithChildren<PortalProps>): ReactPortal | null
Props
The Portal
component accepts the following props:
Name | Default | Description |
---|---|---|
container | document.body | The mounted element to place the children contents within. |
disabled | false | Disables the portal from rendering. Perfect for when you need to disabled a child Portal that is rendered within another Portal. |
1import { Portal } from '@cerberus/react'
Usage
API
export interface PortalProps { container?: RefObject<HTMLElement>; disabled?: boolean;}
define function Portal(props: PropsWithChildren<PortalProps>): ReactPortal | null
Props
The Portal
component accepts the following props:
Name | Default | Description |
---|---|---|
container | document.body | The mounted element to place the children contents within. |
disabled | false | Disables the portal from rendering. Perfect for when you need to disabled a child Portal that is rendered within another Portal. |