Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for displaying pandas DataFrame as an interactive table #1373

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Commits on Sep 23, 2024

  1. Add Dataframe class

    desertproject committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    82e8e42 View commit details
    Browse the repository at this point in the history
  2. Add Dataframe component

    desertproject committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    f23a140 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f8ae18b View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2024

  1. Refactor Dataframe element to handle DataFrame serialization internally

    - Updated Dataframe class to accept pandas DataFrame directly.
    - Automatically serialize DataFrame to JSON with orient="split" in __post_init__.
    - Simplified interface, removing the need for users to manually serialize data.
    desertproject committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    a1d51b7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    16ea811 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Implement loading state in Dataframe component

    - Added loading state to DataGrid using the loading prop.
    - Refactored data parsing logic to handle loading more cleanly.
    desertproject committed Sep 26, 2024
    Configuration menu
    Copy the full SHA
    b2684f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    60079fa View commit details
    Browse the repository at this point in the history