Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ Available components:

- `form` - Dynamic form with validation
- `input-fields` - Text inputs
- `map` - Interactive Map

#### Data Visualization

Expand Down
22 changes: 22 additions & 0 deletions cli/src/registry/map/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "map",
"description": "Interactive map component with clustering and heatmap support.",
"componentName": "Map",
"dependencies": [
"class-variance-authority",
"react-leaflet",
"@react-leaflet/core",
"leaflet",
"leaflet.heat",
"leaflet.markercluster",
"@tambo-ai/react"
],
"devDependencies": [],
"requires": [],
"files": [
{
"name": "map.tsx",
"content": "src/registry/map/map.tsx"
}
]
}
1 change: 1 addition & 0 deletions cli/src/registry/map/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { Map, type MapProps } from "./map";
Loading
Loading