// templates/registry/charts/bubble-chart.ts // Registry configuration for bubble-chart component and demos export const bubbleChartRegistry = { // Main bubble-chart component 'bubble-chart': { name: 'bubble-chart', description: 'A customizable bubble chart component with animations, size mapping, and interactive features.', type: 'registry:ui', dependencies: [ 'react-native-svg', 'react-native-reanimated', 'react-native-gesture-handler', ], registryDependencies: [], hooks: ['useColor'], theme: ['globals'], files: [ { type: 'registry:ui', path: 'templates/components/charts/bubble-chart.tsx', target: 'components/charts/bubble-chart.tsx', }, ], preview: { light: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-40-44_1.mov', dark: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-40-44_1.mov', }, }, // Basic bubble chart demo 'bubble-chart-demo': { name: 'bubble-chart-demo', description: 'A basic bubble chart with animated bubbles and grid lines', type: 'registry:example', registryDependencies: ['bubble-chart', 'chart-container'], hooks: [], theme: [], files: [ { type: 'registry:example', path: 'templates/demo/charts/bubble-chart/bubble-chart-demo.tsx', target: 'components/demo/charts/bubble-chart/bubble-chart-demo.tsx', }, ], preview: { light: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-40-44_1.mov', dark: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-40-44_1.mov', }, }, // Interactive bubble chart demo 'bubble-chart-sample': { name: 'bubble-chart-sample', description: 'A sample bubble chart', type: 'registry:example', registryDependencies: ['bubble-chart', 'chart-container'], hooks: [], theme: [], files: [ { type: 'registry:example', path: 'templates/demo/charts/bubble-chart/bubble-chart-sample.tsx', target: 'components/demo/charts/bubble-chart/bubble-chart-sample.tsx', }, ], preview: { light: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-41-01_1.mov', dark: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-41-01_1.mov', }, }, // Styled bubble chart demo 'bubble-chart-styled': { name: 'bubble-chart-styled', description: 'A customized bubble chart with custom styling', type: 'registry:example', registryDependencies: ['bubble-chart', 'chart-container'], hooks: ['useColor'], theme: [], files: [ { type: 'registry:example', path: 'templates/demo/charts/bubble-chart/bubble-chart-styled.tsx', target: 'components/demo/charts/bubble-chart/bubble-chart-styled.tsx', }, ], preview: { light: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-41-57_1.mov', dark: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-41-57_1.mov', }, }, // Minimal bubble chart demo 'bubble-chart-minimal': { name: 'bubble-chart-minimal', description: 'A minimal bubble chart without labels or grid', type: 'registry:example', registryDependencies: ['bubble-chart'], hooks: [], theme: [], files: [ { type: 'registry:example', path: 'templates/demo/charts/bubble-chart/bubble-chart-minimal.tsx', target: 'components/demo/charts/bubble-chart/bubble-chart-minimal.tsx', }, ], preview: { light: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-42-15_1.MP4', dark: 'https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/ScreenRecording_07-12-2025 15-42-15_1.MP4', }, }, };