Carbon React Components wrapped for Dash
Project description
Carbon Dash
Carbon Dash is a Dash component library wrapping IBM's Carbon Design System React components for Python. Build Dash applications with Carbon's enterprise-grade UI components including buttons, forms, navigation, data tables, and charts.
Installation
pip install carbon-dash-components
Quick Start
from dash import Dash, html, Input, Output
import carbon_dash_components as cd
app = Dash(__name__)
app.layout = html.Div([
cd.Button(id="btn", children="Click me", kind="primary"),
html.Div(id="output"),
])
@app.callback(
Output("output", "children"),
Input("btn", "n_clicks")
)
def update_output(n_clicks):
return f"Button clicked {n_clicks} times"
if __name__ == "__main__":
app.run_server(debug=True)
Available Components
Layout & Structure
- Grid, Row, Column - CSS Grid-based layout system
- Stack - Vertical/horizontal stacking utility
- Layer - Layering utility for z-index management
Navigation
- Breadcrumb, BreadcrumbItem - Hierarchical navigation
- Tabs, Tab, TabList, TabPanel, TabPanels - Tabbed content
- SideNav, SideNavLink, SideNavMenu, SideNavMenuItem - Side navigation
- Header, HeaderName, HeaderNavigation, HeaderMenu - Application header
- Pagination - Data pagination controls
- SkipToContent - Accessibility skip link
Forms & Inputs
- Button, ButtonSet, IconButton, ComboButton - Action buttons
- TextInput, TextArea, NumberInput - Text inputs
- Select, SelectItem, MultiSelect - Selection inputs
- Dropdown, ComboBox - Dropdown/select components
- DatePicker, DatePickerInput, TimePicker - Date/time pickers
- Checkbox, CheckboxGroup, RadioButton, RadioButtonGroup - Selection controls
- Switch, Toggle - Toggle switches
- Search - Search input
- Slider - Range slider
Fluid Components
- FluidTextInput, FluidTextArea, FluidNumberInput
- FluidSelect, FluidMultiSelect, FluidComboBox
- FluidDatePicker, FluidDatePickerInput
- FluidSearch, FluidDropdown, FluidPasswordInput
Data Display
- DataTable - Interactive data tables
- CodeSnippet - Code display with copy
- Tag - Label/tags display
- Text - Text component
- Heading - Heading text
Feedback & Overlays
- Modal - Dialog overlays
- Loading - Loading indicators
- ProgressIndicator, ProgressBar - Progress displays
- Toast, InlineNotification - Notifications
Tiles & Media
- Tile, ClickableTile, SelectableTile, ExpandableTile - Content tiles
- TileAboveTheFoldContent, TileBelowTheFoldContent - Tile content sections
Charts
- AreaChart, LineChart, BarChart, GroupedBarChart, StackedBarChart
- PieChart, DonutChart - Pie/donut charts
- GaugeChart, MeterChart - Gauge/meter charts
- HistogramChart, BoxplotChart, ScatterChart
- BubbleChart, LollipopChart, RadarChart, HeatmapChart
- ChoroplethChart, TreemapChart, CirclePackChart, TreeChart
- AlluvialChart, WordCloudChart
Utility Components
- Form, FormGroup, FormItem, FormLabel - Form structure
- Content, ContentSwitcher - Content containers
- OverflowMenu, OverflowMenuItem - Overflow menus
- Tooltip, Link - Helper components
Development
Prerequisites
- Python 3.8+
- Node.js 14+
- npm
Setup
# Clone the repository
git clone https://github.com/your-org/carbon_dash.git
cd carbon_dash
# Install npm dependencies
npm install
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install Python dependencies
pip install -r requirements.txt
Build
# Build JavaScript and generate Python backends
npm run build
# Or run separately:
npm run build:js # Webpack bundle
npm run build:backends # Generate Python components
Testing
# Run all tests
pytest tests/ -v
# Run specific test file
pytest tests/test_button.py -v
# Run tests in parallel
pytest tests/ -n auto
Component Pattern
Each component follows the standard Dash pattern:
import carbon_dash_components as cd
# Basic usage
cd.Button(id="primary-btn", children="Submit", kind="primary")
# With icon
cd.Button(
id="icon-btn",
children="Launch",
renderIcon={"icon": "launch"},
hasIconOnly=True
)
# Loading state
cd.Button(id="loading-btn", children="Saving...", loading_state={"is_loading": True})
# Click callback
@app.callback(
Output("output", "children"),
Input("primary-btn", "n_clicks")
)
def handle_click(n_clicks):
return f"Clicked {n_clicks} times"
AI Label Support
Components that support AI labeling expose an aiLabel prop:
cd.Button(id="ai-btn", children="AI Action", aiLabel=True)
Icon Support
Icons can be rendered using dash_iconify or Carbon icon names:
import dash_iconify
cd.Button(
id="icon-btn",
children="Add item",
renderIcon=dash_iconify.DashIconify(icon="carbon:add")
)
Publishing
To publish a new version to PyPI:
- Bump the version in
package.json(and optionallycarbon_dash_components/__init__.pyif needed). - Commit and push to GitHub.
- Create a GitHub Release with a tag
vX.Y.Zmatching the version. The release will automatically trigger thePublish to PyPIworkflow. - The workflow builds the JavaScript bundles, generates Python backends, and publishes the package to PyPI using trusted publishing.
License
MIT License
Copyright (c) 2024 Laxman Bablani
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file carbon_dash_components-0.0.1.tar.gz.
File metadata
- Download URL: carbon_dash_components-0.0.1.tar.gz
- Upload date:
- Size: 4.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
308357db4c2488ee9c090973eacf618eb51eb2ccfc7cf8964a1b733211d1f74d
|
|
| MD5 |
d19a13b03ad3b2cdc6a8ac3dd22620cc
|
|
| BLAKE2b-256 |
a42b33d25cfe5e2a4a9fc6c0f9f22993c35c0263e76c8059e85092ce208c1ddc
|
Provenance
The following attestation bundles were made for carbon_dash_components-0.0.1.tar.gz:
Publisher:
publish_pypi.yml on laxmanbablani/carbon_dash
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
carbon_dash_components-0.0.1.tar.gz -
Subject digest:
308357db4c2488ee9c090973eacf618eb51eb2ccfc7cf8964a1b733211d1f74d - Sigstore transparency entry: 1921601635
- Sigstore integration time:
-
Permalink:
laxmanbablani/carbon_dash@0ed646a0679651685309233714e0e16c553b7958 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/laxmanbablani
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish_pypi.yml@0ed646a0679651685309233714e0e16c553b7958 -
Trigger Event:
push
-
Statement type:
File details
Details for the file carbon_dash_components-0.0.1-py3-none-any.whl.
File metadata
- Download URL: carbon_dash_components-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d7df90c65ce1d8991b74bfdbe0c36b2611b9b75d24694a723e7a46833c8ccd7
|
|
| MD5 |
a9dbabce30fa3401d20cb5a3dde1afe2
|
|
| BLAKE2b-256 |
579b42b5c5e129b0f3a224c7d627cefcb144a36217ffa91468daad4b64a6821e
|
Provenance
The following attestation bundles were made for carbon_dash_components-0.0.1-py3-none-any.whl:
Publisher:
publish_pypi.yml on laxmanbablani/carbon_dash
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
carbon_dash_components-0.0.1-py3-none-any.whl -
Subject digest:
5d7df90c65ce1d8991b74bfdbe0c36b2611b9b75d24694a723e7a46833c8ccd7 - Sigstore transparency entry: 1921601788
- Sigstore integration time:
-
Permalink:
laxmanbablani/carbon_dash@0ed646a0679651685309233714e0e16c553b7958 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/laxmanbablani
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish_pypi.yml@0ed646a0679651685309233714e0e16c553b7958 -
Trigger Event:
push
-
Statement type: