Registry / devops / reflex-components-core

reflex-components-core

JSON →
library0.9.4pypypiunverified

A collection of pre-built UI components for Reflex (formerly Pynecone). Version 0.9.4. Release cadence: frequent updates targeting Reflex compatibility. Used to extend Reflex applications with common UI patterns like dashboards, tables, and forms.

pip install reflex-components-core
INSTALL
IMPORT
SIG · REFLEX-COMPONENTS-
R
reflex-components-core
devopspythonv0.9.4
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Dashboard
✓ from reflex_components_core import Dashboard
✗ from reflex_components_core import Dashboard

Minimal Reflex app using a Dashboard component from reflex-components-core.

import reflex as rx from reflex_components_core import Dashboard class State(rx.State): pass def index() -> rx.Component: return rx.container( Dashboard( title="Analytics", data=[{"name": "A", "value": 10}], ) ) app = rx.App() app.add_page(index) app.compile()
Debug
Known issues
breakingMajor version 0.x indicates unstable API. Components may change without deprecation warnings. Pin dependency version in production.
fix
Use exact version pinning: reflex-components-core==0.9.4
affects: all 0.x
gotchaThe package name on PyPI uses hyphens (reflex-components-core), but the Python import uses underscores (reflex_components_core).
fix
Import with underscores: from reflex_components_core import ...
affects: all
deprecatedSome older component names (e.g., 'Grid', 'Card') have been renamed in 0.9.x. Check changelog for migration.
fix
Review the changelog on GitHub for component renames.
affects: >=0.9.0
Upgrade
Version history
0.9.4latest on PyPI · released Jun 4, 2026
Audit
Dependencies
reflexrequiredReflex Components Core is an extension of Reflex; requires Reflex (>=0.5.0) to be installed.
Agent activity
2 hits · last 30 days
node
2
Resources

No resource links recorded.

reflex-components-core — pip install reflex-components-core · libregistry