{"id":51589022,"url":"https://github.com/panel-extensions/panel-tiles","last_synced_at":"2026-07-11T13:01:29.003Z","repository":{"id":356273919,"uuid":"1231800585","full_name":"panel-extensions/panel-tiles","owner":"panel-extensions","description":"Provides a draggable and resizable grid of tiles for Panel.","archived":false,"fork":false,"pushed_at":"2026-07-07T13:30:02.000Z","size":284,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-07T15:10:15.195Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://panel-extensions.github.io/panel-tiles/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/panel-extensions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-07T09:50:22.000Z","updated_at":"2026-07-07T13:31:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/panel-extensions/panel-tiles","commit_stats":null,"previous_names":["panel-extensions/panel-tiles"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/panel-extensions/panel-tiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-tiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-tiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-tiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-tiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/panel-extensions","download_url":"https://codeload.github.com/panel-extensions/panel-tiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-tiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35362871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-11T02:00:05.354Z","response_time":104,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-07-11T13:01:28.310Z","updated_at":"2026-07-11T13:01:28.966Z","avatar_url":"https://github.com/panel-extensions.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# panel-tiles\n\n[![CI](https://img.shields.io/github/actions/workflow/status/panel-extensions/panel-tiles/test.yml?style=flat-square\u0026branch=main)](https://github.com/panel-extensions/panel-tiles/actions/workflows/test.yml)\n[![pypi-version](https://img.shields.io/pypi/v/panel-tiles.svg?logo=pypi\u0026logoColor=white\u0026style=flat-square)](https://pypi.org/project/panel-tiles)\n[![python-version](https://img.shields.io/pypi/pyversions/panel-tiles?logoColor=white\u0026logo=python\u0026style=flat-square)](https://pypi.org/project/panel-tiles)\n\nA draggable, resizable grid layout for [Panel](https://panel.holoviz.org) applications (Muuri + interact.js).\n\n![Dashboard example](https://github.com/panel-extensions/panel-tiles/raw/main/docs/screenshots/hero.png)\n\n## Installation\n\n```bash\npip install panel-tiles\n```\n\n## Quick Start\n\n```python\nfrom panel_tiles import TileGrid\n\n...\n\ngrid = TileGrid(\n    objects=[\n        revenue_ind,\n        growth_ind,\n        users_ind,\n        retention_ind,\n        pn.pane.Bokeh(line_fig),\n        pn.pane.Bokeh(bar_fig),\n        table,\n    ],\n    layout=[\n        {\"width\": 25, \"height\": 100, \"visible\": True},\n        {\"width\": 25, \"height\": 100, \"visible\": True},\n        {\"width\": 25, \"height\": 100, \"visible\": True},\n        {\"width\": 25, \"height\": 100, \"visible\": True},\n        {\"width\": 50, \"height\": 300, \"visible\": True},\n        {\"width\": 50, \"height\": 300, \"visible\": True},\n        {\"width\": 100, \"height\": 250, \"visible\": True},\n    ],\n    sizing_mode=\"stretch_width\",\n    height=750,\n)\n\npmui.Page(main=[grid], title=\"panel-tiles\").servable()\n```\n\n## Features\n\n- Drag-and-drop tile reordering\n- Resize tiles from the corner handle\n- Configurable layout with percentage widths and pixel heights\n- Responsive breakpoints with per-breakpoint layouts\n- Close buttons with hide or remove behavior\n- Persist user layouts to localStorage\n- Read-only mode for fixed dashboards\n- Dynamic add/remove of tiles at runtime\n\n## Development\n\nManaged with [pixi](https://pixi.sh).\n\n```bash\ngit clone https://github.com/panel-extensions/panel-tiles.git\ncd panel-tiles\n\npixi run postinstall\npixi run compile\npixi run test\n```\n\nUI tests:\n\n```bash\npixi run -e test-ui test-ui\n```\n\n## License\n\nSee LICENSE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanel-extensions%2Fpanel-tiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpanel-extensions%2Fpanel-tiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanel-extensions%2Fpanel-tiles/lists"}