@cronus-ui/ui 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +262 -0
- package/dist/charts/animation.d.ts +11 -0
- package/dist/charts/animation.js +29 -0
- package/dist/charts/area-chart-loading.d.ts +34 -0
- package/dist/charts/area-chart-loading.js +22 -0
- package/dist/charts/area-chart.d.ts +48 -0
- package/dist/charts/area-chart.js +57 -0
- package/dist/charts/area-gradient-defs.d.ts +20 -0
- package/dist/charts/area-gradient-defs.js +15 -0
- package/dist/charts/area.d.ts +76 -0
- package/dist/charts/area.js +104 -0
- package/dist/charts/background.d.ts +27 -0
- package/dist/charts/background.js +68 -0
- package/dist/charts/bar-chart-loading.d.ts +17 -0
- package/dist/charts/bar-chart-loading.js +14 -0
- package/dist/charts/bar-chart.d.ts +55 -0
- package/dist/charts/bar-chart.js +432 -0
- package/dist/charts/bar-depth-geometry.d.ts +33 -0
- package/dist/charts/bar-depth-geometry.js +38 -0
- package/dist/charts/bar-depth.d.ts +157 -0
- package/dist/charts/bar-depth.js +586 -0
- package/dist/charts/bar-squares-layout.d.ts +28 -0
- package/dist/charts/bar-squares-layout.js +47 -0
- package/dist/charts/bar-squares.d.ts +49 -0
- package/dist/charts/bar-squares.js +207 -0
- package/dist/charts/bar-x-axis.d.ts +14 -0
- package/dist/charts/bar-x-axis.js +73 -0
- package/dist/charts/bar-y-axis.d.ts +12 -0
- package/dist/charts/bar-y-axis.js +64 -0
- package/dist/charts/bar.d.ts +41 -0
- package/dist/charts/bar.js +208 -0
- package/dist/charts/candlestick-chart.d.ts +46 -0
- package/dist/charts/candlestick-chart.js +203 -0
- package/dist/charts/candlestick.d.ts +24 -0
- package/dist/charts/candlestick.js +139 -0
- package/dist/charts/chart-brush-handle.d.ts +15 -0
- package/dist/charts/chart-brush-handle.js +47 -0
- package/dist/charts/chart-brush-layout.d.ts +27 -0
- package/dist/charts/chart-brush-layout.js +42 -0
- package/dist/charts/chart-brush-selection-overlay.d.ts +19 -0
- package/dist/charts/chart-brush-selection-overlay.js +44 -0
- package/dist/charts/chart-brush-track-overlay.d.ts +23 -0
- package/dist/charts/chart-brush-track-overlay.js +65 -0
- package/dist/charts/chart-brush.d.ts +32 -0
- package/dist/charts/chart-brush.js +116 -0
- package/dist/charts/chart-center-typography.d.ts +12 -0
- package/dist/charts/chart-center-typography.js +12 -0
- package/dist/charts/chart-child-passthrough.d.ts +17 -0
- package/dist/charts/chart-child-passthrough.js +74 -0
- package/dist/charts/chart-config-context.d.ts +26 -0
- package/dist/charts/chart-config-context.js +47 -0
- package/dist/charts/chart-context.d.ts +199 -0
- package/dist/charts/chart-context.js +201 -0
- package/dist/charts/chart-defs.d.ts +13 -0
- package/dist/charts/chart-defs.js +49 -0
- package/dist/charts/chart-formatters.d.ts +10 -0
- package/dist/charts/chart-formatters.js +28 -0
- package/dist/charts/chart-legend-hover.d.ts +13 -0
- package/dist/charts/chart-legend-hover.js +18 -0
- package/dist/charts/chart-legend.d.ts +55 -0
- package/dist/charts/chart-legend.js +30 -0
- package/dist/charts/chart-loading-label.d.ts +10 -0
- package/dist/charts/chart-loading-label.js +21 -0
- package/dist/charts/chart-phase.d.ts +31 -0
- package/dist/charts/chart-phase.js +21 -0
- package/dist/charts/chart-reveal-clip.d.ts +24 -0
- package/dist/charts/chart-reveal-clip.js +24 -0
- package/dist/charts/chart-scale.d.ts +12 -0
- package/dist/charts/chart-scale.js +17 -0
- package/dist/charts/chart-stat-flow.d.ts +36 -0
- package/dist/charts/chart-stat-flow.js +23 -0
- package/dist/charts/choropleth/choropleth-chart.d.ts +43 -0
- package/dist/charts/choropleth/choropleth-chart.js +218 -0
- package/dist/charts/choropleth/choropleth-context.d.ts +86 -0
- package/dist/charts/choropleth/choropleth-context.js +106 -0
- package/dist/charts/choropleth/choropleth-feature.d.ts +13 -0
- package/dist/charts/choropleth/choropleth-feature.js +125 -0
- package/dist/charts/choropleth/choropleth-graticule.d.ts +11 -0
- package/dist/charts/choropleth/choropleth-graticule.js +12 -0
- package/dist/charts/choropleth/choropleth-tooltip.d.ts +31 -0
- package/dist/charts/choropleth/choropleth-tooltip.js +50 -0
- package/dist/charts/choropleth/index.d.ts +7 -0
- package/dist/charts/choropleth/index.js +6 -0
- package/dist/charts/composed-chart.d.ts +36 -0
- package/dist/charts/composed-chart.js +152 -0
- package/dist/charts/dash-tail-stroke.d.ts +18 -0
- package/dist/charts/dash-tail-stroke.js +13 -0
- package/dist/charts/decimate-time-series.d.ts +10 -0
- package/dist/charts/decimate-time-series.js +112 -0
- package/dist/charts/fade-edges.d.ts +34 -0
- package/dist/charts/fade-edges.js +35 -0
- package/dist/charts/filter-data-by-x-domain.d.ts +5 -0
- package/dist/charts/filter-data-by-x-domain.js +42 -0
- package/dist/charts/funnel-chart.d.ts +91 -0
- package/dist/charts/funnel-chart.js +302 -0
- package/dist/charts/gauge-label-layout.d.ts +22 -0
- package/dist/charts/gauge-label-layout.js +44 -0
- package/dist/charts/gauge.d.ts +56 -0
- package/dist/charts/gauge.js +307 -0
- package/dist/charts/generate-chart-skeleton-data.d.ts +16 -0
- package/dist/charts/generate-chart-skeleton-data.js +25 -0
- package/dist/charts/grid.d.ts +58 -0
- package/dist/charts/grid.js +80 -0
- package/dist/charts/heatmap/generate-heatmap-skeleton-data.d.ts +4 -0
- package/dist/charts/heatmap/generate-heatmap-skeleton-data.js +12 -0
- package/dist/charts/heatmap/heatmap-animation.d.ts +41 -0
- package/dist/charts/heatmap/heatmap-animation.js +85 -0
- package/dist/charts/heatmap/heatmap-cells.d.ts +21 -0
- package/dist/charts/heatmap/heatmap-cells.js +265 -0
- package/dist/charts/heatmap/heatmap-chart-loading.d.ts +21 -0
- package/dist/charts/heatmap/heatmap-chart-loading.js +14 -0
- package/dist/charts/heatmap/heatmap-chart.d.ts +80 -0
- package/dist/charts/heatmap/heatmap-chart.js +275 -0
- package/dist/charts/heatmap/heatmap-colors.d.ts +70 -0
- package/dist/charts/heatmap/heatmap-colors.js +113 -0
- package/dist/charts/heatmap/heatmap-context.d.ts +109 -0
- package/dist/charts/heatmap/heatmap-context.js +69 -0
- package/dist/charts/heatmap/heatmap-legend-gradient.d.ts +20 -0
- package/dist/charts/heatmap/heatmap-legend-gradient.js +44 -0
- package/dist/charts/heatmap/heatmap-legend-swatch.d.ts +8 -0
- package/dist/charts/heatmap/heatmap-legend-swatch.js +26 -0
- package/dist/charts/heatmap/heatmap-legend.d.ts +41 -0
- package/dist/charts/heatmap/heatmap-legend.js +68 -0
- package/dist/charts/heatmap/heatmap-pattern-defs.d.ts +5 -0
- package/dist/charts/heatmap/heatmap-pattern-defs.js +25 -0
- package/dist/charts/heatmap/heatmap-resolve-separator.d.ts +8 -0
- package/dist/charts/heatmap/heatmap-resolve-separator.js +82 -0
- package/dist/charts/heatmap/heatmap-separator.d.ts +63 -0
- package/dist/charts/heatmap/heatmap-separator.js +71 -0
- package/dist/charts/heatmap/heatmap-tooltip.d.ts +30 -0
- package/dist/charts/heatmap/heatmap-tooltip.js +20 -0
- package/dist/charts/heatmap/heatmap-utils.d.ts +175 -0
- package/dist/charts/heatmap/heatmap-utils.js +595 -0
- package/dist/charts/heatmap/heatmap-x-axis.d.ts +7 -0
- package/dist/charts/heatmap/heatmap-x-axis.js +54 -0
- package/dist/charts/heatmap/heatmap-y-axis.d.ts +14 -0
- package/dist/charts/heatmap/heatmap-y-axis.js +37 -0
- package/dist/charts/heatmap/index.d.ts +15 -0
- package/dist/charts/heatmap/index.js +15 -0
- package/dist/charts/heatmap/use-delayed-tooltip-data.d.ts +3 -0
- package/dist/charts/heatmap/use-delayed-tooltip-data.js +53 -0
- package/dist/charts/highlight-segment-bounds.d.ts +18 -0
- package/dist/charts/highlight-segment-bounds.js +36 -0
- package/dist/charts/highlight-segment.d.ts +22 -0
- package/dist/charts/highlight-segment.js +14 -0
- package/dist/charts/index.d.ts +106 -0
- package/dist/charts/index.js +133 -0
- package/dist/charts/indicator-fade.d.ts +15 -0
- package/dist/charts/indicator-fade.js +42 -0
- package/dist/charts/legend/index.d.ts +8 -0
- package/dist/charts/legend/index.js +10 -0
- package/dist/charts/legend/legend-context.d.ts +48 -0
- package/dist/charts/legend/legend-context.js +34 -0
- package/dist/charts/legend/legend-item.d.ts +12 -0
- package/dist/charts/legend/legend-item.js +11 -0
- package/dist/charts/legend/legend-label.d.ts +9 -0
- package/dist/charts/legend/legend-label.js +10 -0
- package/dist/charts/legend/legend-marker.d.ts +9 -0
- package/dist/charts/legend/legend-marker.js +11 -0
- package/dist/charts/legend/legend-progress.d.ts +13 -0
- package/dist/charts/legend/legend-progress.js +15 -0
- package/dist/charts/legend/legend-value.d.ts +17 -0
- package/dist/charts/legend/legend-value.js +11 -0
- package/dist/charts/legend/legend.d.ts +23 -0
- package/dist/charts/legend/legend.js +43 -0
- package/dist/charts/line-chart-loading.d.ts +34 -0
- package/dist/charts/line-chart-loading.js +22 -0
- package/dist/charts/line-chart.d.ts +46 -0
- package/dist/charts/line-chart.js +91 -0
- package/dist/charts/line-loading-pulse.d.ts +20 -0
- package/dist/charts/line-loading-pulse.js +124 -0
- package/dist/charts/line-loading-timing.d.ts +10 -0
- package/dist/charts/line-loading-timing.js +10 -0
- package/dist/charts/line-series-terminal-marker.d.ts +16 -0
- package/dist/charts/line-series-terminal-marker.js +46 -0
- package/dist/charts/line.d.ts +64 -0
- package/dist/charts/line.js +96 -0
- package/dist/charts/live-line-chart.d.ts +35 -0
- package/dist/charts/live-line-chart.js +374 -0
- package/dist/charts/live-line.d.ts +39 -0
- package/dist/charts/live-line.js +78 -0
- package/dist/charts/live-x-axis.d.ts +12 -0
- package/dist/charts/live-x-axis.js +85 -0
- package/dist/charts/live-y-axis.d.ts +16 -0
- package/dist/charts/live-y-axis.js +137 -0
- package/dist/charts/loading-sweep.d.ts +66 -0
- package/dist/charts/loading-sweep.js +174 -0
- package/dist/charts/markers/chart-markers.d.ts +25 -0
- package/dist/charts/markers/chart-markers.js +87 -0
- package/dist/charts/markers/index.d.ts +3 -0
- package/dist/charts/markers/index.js +3 -0
- package/dist/charts/markers/marker-group.d.ts +88 -0
- package/dist/charts/markers/marker-group.js +171 -0
- package/dist/charts/motion-utils.d.ts +9 -0
- package/dist/charts/motion-utils.js +28 -0
- package/dist/charts/notch-gauge-shared.d.ts +49 -0
- package/dist/charts/notch-gauge-shared.js +103 -0
- package/dist/charts/path-stroke-utils.d.ts +20 -0
- package/dist/charts/path-stroke-utils.js +55 -0
- package/dist/charts/pattern-area.d.ts +21 -0
- package/dist/charts/pattern-area.js +19 -0
- package/dist/charts/pattern-preset.d.ts +26 -0
- package/dist/charts/pattern-preset.js +83 -0
- package/dist/charts/pie-center-shell.d.ts +24 -0
- package/dist/charts/pie-center-shell.js +109 -0
- package/dist/charts/pie-center.d.ts +46 -0
- package/dist/charts/pie-center.js +46 -0
- package/dist/charts/pie-chart.d.ts +50 -0
- package/dist/charts/pie-chart.js +248 -0
- package/dist/charts/pie-context.d.ts +74 -0
- package/dist/charts/pie-context.js +95 -0
- package/dist/charts/pie-slice.d.ts +28 -0
- package/dist/charts/pie-slice.js +180 -0
- package/dist/charts/profit-loss-legend-hover.d.ts +11 -0
- package/dist/charts/profit-loss-legend-hover.js +12 -0
- package/dist/charts/profit-loss-legend.d.ts +17 -0
- package/dist/charts/profit-loss-legend.js +18 -0
- package/dist/charts/profit-loss-line.d.ts +27 -0
- package/dist/charts/profit-loss-line.js +77 -0
- package/dist/charts/profit-loss-segments.d.ts +12 -0
- package/dist/charts/profit-loss-segments.js +86 -0
- package/dist/charts/projection-config.d.ts +11 -0
- package/dist/charts/projection-config.js +80 -0
- package/dist/charts/projection-line-end-marker.d.ts +15 -0
- package/dist/charts/projection-line-end-marker.js +27 -0
- package/dist/charts/projection-line.d.ts +40 -0
- package/dist/charts/projection-line.js +79 -0
- package/dist/charts/projection-utils.d.ts +46 -0
- package/dist/charts/projection-utils.js +253 -0
- package/dist/charts/radar-area.d.ts +17 -0
- package/dist/charts/radar-area.js +84 -0
- package/dist/charts/radar-axis.d.ts +14 -0
- package/dist/charts/radar-axis.js +24 -0
- package/dist/charts/radar-chart.d.ts +36 -0
- package/dist/charts/radar-chart.js +89 -0
- package/dist/charts/radar-context.d.ts +68 -0
- package/dist/charts/radar-context.js +87 -0
- package/dist/charts/radar-grid.d.ts +16 -0
- package/dist/charts/radar-grid.js +40 -0
- package/dist/charts/radar-labels.d.ts +16 -0
- package/dist/charts/radar-labels.js +29 -0
- package/dist/charts/reference-area-config.d.ts +10 -0
- package/dist/charts/reference-area-config.js +39 -0
- package/dist/charts/reference-area-geometry.d.ts +23 -0
- package/dist/charts/reference-area-geometry.js +68 -0
- package/dist/charts/reference-area-registration-context.d.ts +8 -0
- package/dist/charts/reference-area-registration-context.js +7 -0
- package/dist/charts/reference-area.d.ts +52 -0
- package/dist/charts/reference-area.js +101 -0
- package/dist/charts/ring-center.d.ts +46 -0
- package/dist/charts/ring-center.js +41 -0
- package/dist/charts/ring-chart.d.ts +41 -0
- package/dist/charts/ring-chart.js +212 -0
- package/dist/charts/ring-context.d.ts +66 -0
- package/dist/charts/ring-context.js +92 -0
- package/dist/charts/ring.d.ts +11 -0
- package/dist/charts/ring.js +104 -0
- package/dist/charts/sankey/index.d.ts +6 -0
- package/dist/charts/sankey/index.js +6 -0
- package/dist/charts/sankey/sankey-chart.d.ts +39 -0
- package/dist/charts/sankey/sankey-chart.js +117 -0
- package/dist/charts/sankey/sankey-context.d.ts +69 -0
- package/dist/charts/sankey/sankey-context.js +23 -0
- package/dist/charts/sankey/sankey-link.d.ts +26 -0
- package/dist/charts/sankey/sankey-link.js +155 -0
- package/dist/charts/sankey/sankey-node.d.ts +29 -0
- package/dist/charts/sankey/sankey-node.js +200 -0
- package/dist/charts/sankey/sankey-tooltip.d.ts +24 -0
- package/dist/charts/sankey/sankey-tooltip.js +70 -0
- package/dist/charts/scatter-chart-shell.d.ts +21 -0
- package/dist/charts/scatter-chart-shell.js +152 -0
- package/dist/charts/scatter-chart.d.ts +32 -0
- package/dist/charts/scatter-chart.js +56 -0
- package/dist/charts/scatter-svg.d.ts +6 -0
- package/dist/charts/scatter-svg.js +16 -0
- package/dist/charts/scatter.d.ts +21 -0
- package/dist/charts/scatter.js +30 -0
- package/dist/charts/segment.d.ts +26 -0
- package/dist/charts/segment.js +42 -0
- package/dist/charts/series-bar-layout.d.ts +18 -0
- package/dist/charts/series-bar-layout.js +31 -0
- package/dist/charts/series-bar.d.ts +20 -0
- package/dist/charts/series-bar.js +120 -0
- package/dist/charts/series-dash-tail-overlay.d.ts +17 -0
- package/dist/charts/series-dash-tail-overlay.js +39 -0
- package/dist/charts/series-highlight-layer.d.ts +23 -0
- package/dist/charts/series-highlight-layer.js +21 -0
- package/dist/charts/series-hover-dim.d.ts +29 -0
- package/dist/charts/series-hover-dim.js +26 -0
- package/dist/charts/series-markers.d.ts +14 -0
- package/dist/charts/series-markers.js +98 -0
- package/dist/charts/series-path-utils.d.ts +19 -0
- package/dist/charts/series-path-utils.js +60 -0
- package/dist/charts/series-point-marker.d.ts +48 -0
- package/dist/charts/series-point-marker.js +48 -0
- package/dist/charts/shimmering-text.d.ts +23 -0
- package/dist/charts/shimmering-text.js +31 -0
- package/dist/charts/static-chart-preview-context.d.ts +7 -0
- package/dist/charts/static-chart-preview-context.js +12 -0
- package/dist/charts/sunburst-breadcrumb.d.ts +16 -0
- package/dist/charts/sunburst-breadcrumb.js +26 -0
- package/dist/charts/sunburst-center.d.ts +5 -0
- package/dist/charts/sunburst-center.js +17 -0
- package/dist/charts/sunburst-chart.d.ts +30 -0
- package/dist/charts/sunburst-chart.js +263 -0
- package/dist/charts/sunburst-context.d.ts +61 -0
- package/dist/charts/sunburst-context.js +112 -0
- package/dist/charts/sunburst-data.d.ts +9 -0
- package/dist/charts/sunburst-data.js +2 -0
- package/dist/charts/sunburst-hint.d.ts +13 -0
- package/dist/charts/sunburst-hint.js +31 -0
- package/dist/charts/sunburst-labels.d.ts +9 -0
- package/dist/charts/sunburst-labels.js +63 -0
- package/dist/charts/sunburst-segment.d.ts +11 -0
- package/dist/charts/sunburst-segment.js +78 -0
- package/dist/charts/sunburst.d.ts +101 -0
- package/dist/charts/sunburst.js +396 -0
- package/dist/charts/time-series-chart-shell.d.ts +47 -0
- package/dist/charts/time-series-chart-shell.js +390 -0
- package/dist/charts/tooltip/chart-tooltip.d.ts +76 -0
- package/dist/charts/tooltip/chart-tooltip.js +150 -0
- package/dist/charts/tooltip/date-ticker.d.ts +11 -0
- package/dist/charts/tooltip/date-ticker.js +77 -0
- package/dist/charts/tooltip/index.d.ts +7 -0
- package/dist/charts/tooltip/index.js +7 -0
- package/dist/charts/tooltip/tooltip-box.d.ts +48 -0
- package/dist/charts/tooltip/tooltip-box.js +114 -0
- package/dist/charts/tooltip/tooltip-content.d.ts +18 -0
- package/dist/charts/tooltip/tooltip-content.js +9 -0
- package/dist/charts/tooltip/tooltip-dot.d.ts +28 -0
- package/dist/charts/tooltip/tooltip-dot.js +54 -0
- package/dist/charts/tooltip/tooltip-indicator.d.ts +45 -0
- package/dist/charts/tooltip/tooltip-indicator.js +65 -0
- package/dist/charts/use-animated-series-path.d.ts +19 -0
- package/dist/charts/use-animated-series-path.js +93 -0
- package/dist/charts/use-animated-y-domains.d.ts +14 -0
- package/dist/charts/use-animated-y-domains.js +150 -0
- package/dist/charts/use-chart-interaction.d.ts +41 -0
- package/dist/charts/use-chart-interaction.js +244 -0
- package/dist/charts/use-chart-phase-orchestrator.d.ts +23 -0
- package/dist/charts/use-chart-phase-orchestrator.js +139 -0
- package/dist/charts/use-enter-complete.d.ts +8 -0
- package/dist/charts/use-enter-complete.js +23 -0
- package/dist/charts/use-grid-shimmer.d.ts +16 -0
- package/dist/charts/use-grid-shimmer.js +63 -0
- package/dist/charts/use-highlight-segment.d.ts +14 -0
- package/dist/charts/use-highlight-segment.js +34 -0
- package/dist/charts/use-mount-progress.d.ts +4 -0
- package/dist/charts/use-mount-progress.js +22 -0
- package/dist/charts/use-scatter-chart-interaction.d.ts +35 -0
- package/dist/charts/use-scatter-chart-interaction.js +228 -0
- package/dist/charts/use-scheduled-tooltip.d.ts +9 -0
- package/dist/charts/use-scheduled-tooltip.js +76 -0
- package/dist/charts/visx-pattern.d.ts +19 -0
- package/dist/charts/visx-pattern.js +20 -0
- package/dist/charts/x-axis.d.ts +27 -0
- package/dist/charts/x-axis.js +415 -0
- package/dist/charts/y-axis-scales.d.ts +26 -0
- package/dist/charts/y-axis-scales.js +72 -0
- package/dist/charts/y-axis-ticks.d.ts +12 -0
- package/dist/charts/y-axis-ticks.js +24 -0
- package/dist/charts/y-axis.d.ts +22 -0
- package/dist/charts/y-axis.js +80 -0
- package/dist/charts/y-domain-utils.d.ts +27 -0
- package/dist/charts/y-domain-utils.js +88 -0
- package/dist/components/accordion.d.ts +6 -0
- package/dist/components/accordion.js +20 -0
- package/dist/components/alert-dialog.d.ts +18 -0
- package/dist/components/alert-dialog.js +41 -0
- package/dist/components/alert.d.ts +24 -0
- package/dist/components/alert.js +46 -0
- package/dist/components/animated-button.d.ts +5 -0
- package/dist/components/animated-button.js +16 -0
- package/dist/components/animated-list.d.ts +26 -0
- package/dist/components/animated-list.js +25 -0
- package/dist/components/animated-number.d.ts +67 -0
- package/dist/components/animated-number.js +131 -0
- package/dist/components/app-shell.d.ts +27 -0
- package/dist/components/app-shell.js +18 -0
- package/dist/components/area-chart.d.ts +11 -0
- package/dist/components/area-chart.js +12 -0
- package/dist/components/aspect-ratio.d.ts +16 -0
- package/dist/components/aspect-ratio.js +14 -0
- package/dist/components/aurora-background.d.ts +3 -0
- package/dist/components/aurora-background.js +8 -0
- package/dist/components/autocomplete.d.ts +55 -0
- package/dist/components/autocomplete.js +279 -0
- package/dist/components/avatar-group.d.ts +39 -0
- package/dist/components/avatar-group.js +50 -0
- package/dist/components/avatar.d.ts +5 -0
- package/dist/components/avatar.js +17 -0
- package/dist/components/badge.d.ts +10 -0
- package/dist/components/badge.js +35 -0
- package/dist/components/banner.d.ts +45 -0
- package/dist/components/banner.js +80 -0
- package/dist/components/bar-chart.d.ts +11 -0
- package/dist/components/bar-chart.js +9 -0
- package/dist/components/border-beam.d.ts +45 -0
- package/dist/components/border-beam.js +48 -0
- package/dist/components/breadcrumb.d.ts +12 -0
- package/dist/components/breadcrumb.js +35 -0
- package/dist/components/button-group.d.ts +7 -0
- package/dist/components/button-group.js +10 -0
- package/dist/components/button.d.ts +12 -0
- package/dist/components/button.js +39 -0
- package/dist/components/calendar.d.ts +7 -0
- package/dist/components/calendar.js +71 -0
- package/dist/components/candlestick-chart.d.ts +13 -0
- package/dist/components/candlestick-chart.js +66 -0
- package/dist/components/card-stack.d.ts +28 -0
- package/dist/components/card-stack.js +47 -0
- package/dist/components/card.d.ts +9 -0
- package/dist/components/card.js +32 -0
- package/dist/components/carousel.d.ts +82 -0
- package/dist/components/carousel.js +310 -0
- package/dist/components/chart.d.ts +100 -0
- package/dist/components/chart.js +210 -0
- package/dist/components/checkbox.d.ts +3 -0
- package/dist/components/checkbox.js +11 -0
- package/dist/components/chip.d.ts +80 -0
- package/dist/components/chip.js +186 -0
- package/dist/components/choropleth-chart.d.ts +12 -0
- package/dist/components/choropleth-chart.js +31 -0
- package/dist/components/click-spark.d.ts +19 -0
- package/dist/components/click-spark.js +51 -0
- package/dist/components/code-block.d.ts +13 -0
- package/dist/components/code-block.js +20 -0
- package/dist/components/code-tabs.d.ts +51 -0
- package/dist/components/code-tabs.js +150 -0
- package/dist/components/collapsible.d.ts +5 -0
- package/dist/components/collapsible.js +12 -0
- package/dist/components/color-picker.d.ts +30 -0
- package/dist/components/color-picker.js +300 -0
- package/dist/components/combobox.d.ts +33 -0
- package/dist/components/combobox.js +32 -0
- package/dist/components/command.d.ts +87 -0
- package/dist/components/command.js +44 -0
- package/dist/components/comparison-slider.d.ts +17 -0
- package/dist/components/comparison-slider.js +81 -0
- package/dist/components/composed-chart.d.ts +13 -0
- package/dist/components/composed-chart.js +22 -0
- package/dist/components/confetti.d.ts +21 -0
- package/dist/components/confetti.js +111 -0
- package/dist/components/confirmation-dialog.d.ts +46 -0
- package/dist/components/confirmation-dialog.js +102 -0
- package/dist/components/context-menu.d.ts +28 -0
- package/dist/components/context-menu.js +52 -0
- package/dist/components/copy-button.d.ts +13 -0
- package/dist/components/copy-button.js +72 -0
- package/dist/components/countdown.d.ts +58 -0
- package/dist/components/countdown.js +106 -0
- package/dist/components/credit-card-input.d.ts +62 -0
- package/dist/components/credit-card-input.js +211 -0
- package/dist/components/currency-input.d.ts +86 -0
- package/dist/components/currency-input.js +215 -0
- package/dist/components/data-table.d.ts +232 -0
- package/dist/components/data-table.js +359 -0
- package/dist/components/date-picker.d.ts +66 -0
- package/dist/components/date-picker.js +55 -0
- package/dist/components/date-range-picker.d.ts +59 -0
- package/dist/components/date-range-picker.js +59 -0
- package/dist/components/description-list.d.ts +84 -0
- package/dist/components/description-list.js +138 -0
- package/dist/components/dialog.d.ts +26 -0
- package/dist/components/dialog.js +35 -0
- package/dist/components/dock.d.ts +34 -0
- package/dist/components/dock.js +61 -0
- package/dist/components/dot-pattern.d.ts +24 -0
- package/dist/components/dot-pattern.js +19 -0
- package/dist/components/drawer.d.ts +22 -0
- package/dist/components/drawer.js +37 -0
- package/dist/components/dropdown-menu.d.ts +32 -0
- package/dist/components/dropdown-menu.js +56 -0
- package/dist/components/dynamic-island.d.ts +26 -0
- package/dist/components/dynamic-island.js +31 -0
- package/dist/components/empty.d.ts +7 -0
- package/dist/components/empty.js +24 -0
- package/dist/components/expandable-tabs.d.ts +24 -0
- package/dist/components/expandable-tabs.js +30 -0
- package/dist/components/fab.d.ts +35 -0
- package/dist/components/fab.js +36 -0
- package/dist/components/field.d.ts +6 -0
- package/dist/components/field.js +22 -0
- package/dist/components/file-dropzone.d.ts +28 -0
- package/dist/components/file-dropzone.js +59 -0
- package/dist/components/flickering-grid.d.ts +25 -0
- package/dist/components/flickering-grid.js +30 -0
- package/dist/components/flip-card.d.ts +70 -0
- package/dist/components/flip-card.js +117 -0
- package/dist/components/floating-label-input.d.ts +34 -0
- package/dist/components/floating-label-input.js +25 -0
- package/dist/components/form.d.ts +25 -0
- package/dist/components/form.js +68 -0
- package/dist/components/frame.d.ts +12 -0
- package/dist/components/frame.js +10 -0
- package/dist/components/funnel-chart.d.ts +11 -0
- package/dist/components/funnel-chart.js +16 -0
- package/dist/components/gauge-chart.d.ts +8 -0
- package/dist/components/gauge-chart.js +10 -0
- package/dist/components/glare-hover.d.ts +15 -0
- package/dist/components/glare-hover.js +64 -0
- package/dist/components/glass-card.d.ts +3 -0
- package/dist/components/glass-card.js +8 -0
- package/dist/components/gradient-border.d.ts +7 -0
- package/dist/components/gradient-border.js +8 -0
- package/dist/components/gradient-text.d.ts +6 -0
- package/dist/components/gradient-text.js +10 -0
- package/dist/components/grid-pattern.d.ts +23 -0
- package/dist/components/grid-pattern.js +18 -0
- package/dist/components/heatmap-chart.d.ts +6 -0
- package/dist/components/heatmap-chart.js +8 -0
- package/dist/components/heatmap.d.ts +28 -0
- package/dist/components/heatmap.js +41 -0
- package/dist/components/highlighter.d.ts +20 -0
- package/dist/components/highlighter.js +19 -0
- package/dist/components/hover-card.d.ts +5 -0
- package/dist/components/hover-card.js +12 -0
- package/dist/components/image-zoom.d.ts +47 -0
- package/dist/components/image-zoom.js +125 -0
- package/dist/components/input-group.d.ts +10 -0
- package/dist/components/input-group.js +12 -0
- package/dist/components/input-otp.d.ts +18 -0
- package/dist/components/input-otp.js +38 -0
- package/dist/components/input.d.ts +6 -0
- package/dist/components/input.js +8 -0
- package/dist/components/json-viewer.d.ts +43 -0
- package/dist/components/json-viewer.js +313 -0
- package/dist/components/kanban.d.ts +31 -0
- package/dist/components/kanban.js +143 -0
- package/dist/components/kbd.d.ts +3 -0
- package/dist/components/kbd.js +8 -0
- package/dist/components/label.d.ts +3 -0
- package/dist/components/label.js +9 -0
- package/dist/components/light-rays.d.ts +19 -0
- package/dist/components/light-rays.js +20 -0
- package/dist/components/lightbox.d.ts +24 -0
- package/dist/components/lightbox.js +68 -0
- package/dist/components/line-chart.d.ts +10 -0
- package/dist/components/line-chart.js +9 -0
- package/dist/components/live-line-chart.d.ts +12 -0
- package/dist/components/live-line-chart.js +42 -0
- package/dist/components/logo-carousel.d.ts +27 -0
- package/dist/components/logo-carousel.js +101 -0
- package/dist/components/magnetic.d.ts +44 -0
- package/dist/components/magnetic.js +172 -0
- package/dist/components/marquee.d.ts +71 -0
- package/dist/components/marquee.js +141 -0
- package/dist/components/masonry.d.ts +16 -0
- package/dist/components/masonry.js +84 -0
- package/dist/components/menubar.d.ts +33 -0
- package/dist/components/menubar.js +56 -0
- package/dist/components/meteors.d.ts +20 -0
- package/dist/components/meteors.js +39 -0
- package/dist/components/metric.d.ts +9 -0
- package/dist/components/metric.js +35 -0
- package/dist/components/mode-toggle.d.ts +32 -0
- package/dist/components/mode-toggle.js +40 -0
- package/dist/components/morphing-popover.d.ts +91 -0
- package/dist/components/morphing-popover.js +194 -0
- package/dist/components/motion-presets.d.ts +9 -0
- package/dist/components/motion-presets.js +20 -0
- package/dist/components/multi-select.d.ts +54 -0
- package/dist/components/multi-select.js +0 -0
- package/dist/components/navigation-menu.d.ts +12 -0
- package/dist/components/navigation-menu.js +42 -0
- package/dist/components/noise.d.ts +19 -0
- package/dist/components/noise.js +18 -0
- package/dist/components/notification-center.d.ts +68 -0
- package/dist/components/notification-center.js +57 -0
- package/dist/components/number-input.d.ts +45 -0
- package/dist/components/number-input.js +148 -0
- package/dist/components/orbit.d.ts +77 -0
- package/dist/components/orbit.js +100 -0
- package/dist/components/pagination.d.ts +16 -0
- package/dist/components/pagination.js +34 -0
- package/dist/components/particles.d.ts +18 -0
- package/dist/components/particles.js +92 -0
- package/dist/components/password-input.d.ts +16 -0
- package/dist/components/password-input.js +49 -0
- package/dist/components/phone-input.d.ts +67 -0
- package/dist/components/phone-input.js +225 -0
- package/dist/components/pie-chart.d.ts +12 -0
- package/dist/components/pie-chart.js +13 -0
- package/dist/components/pill-nav.d.ts +25 -0
- package/dist/components/pill-nav.js +66 -0
- package/dist/components/popover.d.ts +7 -0
- package/dist/components/popover.js +15 -0
- package/dist/components/profit-loss-chart.d.ts +10 -0
- package/dist/components/profit-loss-chart.js +8 -0
- package/dist/components/progress.d.ts +10 -0
- package/dist/components/progress.js +17 -0
- package/dist/components/progressive-blur.d.ts +24 -0
- package/dist/components/progressive-blur.js +43 -0
- package/dist/components/radar-chart.d.ts +9 -0
- package/dist/components/radar-chart.js +9 -0
- package/dist/components/radio-group.d.ts +4 -0
- package/dist/components/radio-group.js +15 -0
- package/dist/components/rating.d.ts +29 -0
- package/dist/components/rating.js +94 -0
- package/dist/components/resizable.d.ts +57 -0
- package/dist/components/resizable.js +73 -0
- package/dist/components/retro-grid.d.ts +25 -0
- package/dist/components/retro-grid.js +26 -0
- package/dist/components/reveal.d.ts +9 -0
- package/dist/components/reveal.js +14 -0
- package/dist/components/rich-text-editor.d.ts +28 -0
- package/dist/components/rich-text-editor.js +83 -0
- package/dist/components/ring-chart.d.ts +13 -0
- package/dist/components/ring-chart.js +16 -0
- package/dist/components/ripple.d.ts +25 -0
- package/dist/components/ripple.js +26 -0
- package/dist/components/sankey-chart.d.ts +16 -0
- package/dist/components/sankey-chart.js +8 -0
- package/dist/components/scatter-chart.d.ts +12 -0
- package/dist/components/scatter-chart.js +9 -0
- package/dist/components/scheduler.d.ts +50 -0
- package/dist/components/scheduler.js +93 -0
- package/dist/components/scramble-text.d.ts +39 -0
- package/dist/components/scramble-text.js +78 -0
- package/dist/components/scroll-area.d.ts +13 -0
- package/dist/components/scroll-area.js +14 -0
- package/dist/components/scroll-progress.d.ts +19 -0
- package/dist/components/scroll-progress.js +67 -0
- package/dist/components/segmented-control.d.ts +48 -0
- package/dist/components/segmented-control.js +222 -0
- package/dist/components/select.d.ts +12 -0
- package/dist/components/select.js +43 -0
- package/dist/components/separator.d.ts +3 -0
- package/dist/components/separator.js +9 -0
- package/dist/components/sheet.d.ts +25 -0
- package/dist/components/sheet.js +47 -0
- package/dist/components/shimmer.d.ts +3 -0
- package/dist/components/shimmer.js +8 -0
- package/dist/components/shiny-text.d.ts +20 -0
- package/dist/components/shiny-text.js +24 -0
- package/dist/components/sidebar.d.ts +92 -0
- package/dist/components/sidebar.js +290 -0
- package/dist/components/signature-pad.d.ts +44 -0
- package/dist/components/signature-pad.js +317 -0
- package/dist/components/skeleton.d.ts +3 -0
- package/dist/components/skeleton.js +8 -0
- package/dist/components/slider.d.ts +10 -0
- package/dist/components/slider.js +27 -0
- package/dist/components/sonner.d.ts +9 -0
- package/dist/components/sonner.js +17 -0
- package/dist/components/sparkles-text.d.ts +19 -0
- package/dist/components/sparkles-text.js +36 -0
- package/dist/components/sparkline.d.ts +22 -0
- package/dist/components/sparkline.js +100 -0
- package/dist/components/spinner.d.ts +10 -0
- package/dist/components/spinner.js +20 -0
- package/dist/components/spinning-text.d.ts +29 -0
- package/dist/components/spinning-text.js +40 -0
- package/dist/components/split-button.d.ts +71 -0
- package/dist/components/split-button.js +30 -0
- package/dist/components/spotlight-card.d.ts +11 -0
- package/dist/components/spotlight-card.js +63 -0
- package/dist/components/star-border.d.ts +19 -0
- package/dist/components/star-border.js +18 -0
- package/dist/components/status-dot.d.ts +60 -0
- package/dist/components/status-dot.js +76 -0
- package/dist/components/stepper.d.ts +98 -0
- package/dist/components/stepper.js +164 -0
- package/dist/components/sunburst-chart.d.ts +11 -0
- package/dist/components/sunburst-chart.js +45 -0
- package/dist/components/switch.d.ts +3 -0
- package/dist/components/switch.js +10 -0
- package/dist/components/table-of-contents.d.ts +64 -0
- package/dist/components/table-of-contents.js +0 -0
- package/dist/components/table.d.ts +10 -0
- package/dist/components/table.js +38 -0
- package/dist/components/tabs.d.ts +6 -0
- package/dist/components/tabs.js +22 -0
- package/dist/components/tags-input.d.ts +39 -0
- package/dist/components/tags-input.js +86 -0
- package/dist/components/terminal.d.ts +86 -0
- package/dist/components/terminal.js +182 -0
- package/dist/components/text-effect.d.ts +71 -0
- package/dist/components/text-effect.js +166 -0
- package/dist/components/textarea.d.ts +6 -0
- package/dist/components/textarea.js +8 -0
- package/dist/components/tilt-card.d.ts +30 -0
- package/dist/components/tilt-card.js +84 -0
- package/dist/components/time-picker.d.ts +58 -0
- package/dist/components/time-picker.js +245 -0
- package/dist/components/timeline.d.ts +81 -0
- package/dist/components/timeline.js +165 -0
- package/dist/components/toggle-group.d.ts +12 -0
- package/dist/components/toggle-group.js +23 -0
- package/dist/components/toggle.d.ts +12 -0
- package/dist/components/toggle.js +25 -0
- package/dist/components/toolbar.d.ts +14 -0
- package/dist/components/toolbar.js +89 -0
- package/dist/components/tooltip.d.ts +29 -0
- package/dist/components/tooltip.js +48 -0
- package/dist/components/tree-view.d.ts +45 -0
- package/dist/components/tree-view.js +197 -0
- package/dist/components/typing-text.d.ts +49 -0
- package/dist/components/typing-text.js +90 -0
- package/dist/components/usage-meter.d.ts +30 -0
- package/dist/components/usage-meter.js +90 -0
- package/dist/components/video-player.d.ts +48 -0
- package/dist/components/video-player.js +216 -0
- package/dist/components/word-rotate.d.ts +40 -0
- package/dist/components/word-rotate.js +34 -0
- package/dist/index.d.ts +306 -0
- package/dist/index.js +179 -0
- package/dist/lib/cn.d.ts +7 -0
- package/dist/lib/cn.js +10 -0
- package/dist/lib/demo-saas.d.ts +171 -0
- package/dist/lib/demo-saas.js +210 -0
- package/dist/lib/demo-store.d.ts +157 -0
- package/dist/lib/demo-store.js +353 -0
- package/dist/testing/index.d.ts +76 -0
- package/dist/testing/index.js +116 -0
- package/package.json +941 -0
package/package.json
ADDED
|
@@ -0,0 +1,941 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cronus-ui/ui",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "Cronus UI — themeable, accessible React components (Radix + CVA + Tailwind v4).",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"import": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./cn": {
|
|
12
|
+
"types": "./dist/lib/cn.d.ts",
|
|
13
|
+
"import": "./dist/lib/cn.js"
|
|
14
|
+
},
|
|
15
|
+
"./demo-store": {
|
|
16
|
+
"types": "./dist/lib/demo-store.d.ts",
|
|
17
|
+
"import": "./dist/lib/demo-store.js"
|
|
18
|
+
},
|
|
19
|
+
"./demo-saas": {
|
|
20
|
+
"types": "./dist/lib/demo-saas.d.ts",
|
|
21
|
+
"import": "./dist/lib/demo-saas.js"
|
|
22
|
+
},
|
|
23
|
+
"./testing": {
|
|
24
|
+
"types": "./dist/testing/index.d.ts",
|
|
25
|
+
"import": "./dist/testing/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./accordion": {
|
|
28
|
+
"types": "./dist/components/accordion.d.ts",
|
|
29
|
+
"import": "./dist/components/accordion.js"
|
|
30
|
+
},
|
|
31
|
+
"./alert": {
|
|
32
|
+
"types": "./dist/components/alert.d.ts",
|
|
33
|
+
"import": "./dist/components/alert.js"
|
|
34
|
+
},
|
|
35
|
+
"./alert-dialog": {
|
|
36
|
+
"types": "./dist/components/alert-dialog.d.ts",
|
|
37
|
+
"import": "./dist/components/alert-dialog.js"
|
|
38
|
+
},
|
|
39
|
+
"./animated-button": {
|
|
40
|
+
"types": "./dist/components/animated-button.d.ts",
|
|
41
|
+
"import": "./dist/components/animated-button.js"
|
|
42
|
+
},
|
|
43
|
+
"./animated-number": {
|
|
44
|
+
"types": "./dist/components/animated-number.d.ts",
|
|
45
|
+
"import": "./dist/components/animated-number.js"
|
|
46
|
+
},
|
|
47
|
+
"./app-shell": {
|
|
48
|
+
"types": "./dist/components/app-shell.d.ts",
|
|
49
|
+
"import": "./dist/components/app-shell.js"
|
|
50
|
+
},
|
|
51
|
+
"./aspect-ratio": {
|
|
52
|
+
"types": "./dist/components/aspect-ratio.d.ts",
|
|
53
|
+
"import": "./dist/components/aspect-ratio.js"
|
|
54
|
+
},
|
|
55
|
+
"./aurora-background": {
|
|
56
|
+
"types": "./dist/components/aurora-background.d.ts",
|
|
57
|
+
"import": "./dist/components/aurora-background.js"
|
|
58
|
+
},
|
|
59
|
+
"./autocomplete": {
|
|
60
|
+
"types": "./dist/components/autocomplete.d.ts",
|
|
61
|
+
"import": "./dist/components/autocomplete.js"
|
|
62
|
+
},
|
|
63
|
+
"./avatar": {
|
|
64
|
+
"types": "./dist/components/avatar.d.ts",
|
|
65
|
+
"import": "./dist/components/avatar.js"
|
|
66
|
+
},
|
|
67
|
+
"./avatar-group": {
|
|
68
|
+
"types": "./dist/components/avatar-group.d.ts",
|
|
69
|
+
"import": "./dist/components/avatar-group.js"
|
|
70
|
+
},
|
|
71
|
+
"./badge": {
|
|
72
|
+
"types": "./dist/components/badge.d.ts",
|
|
73
|
+
"import": "./dist/components/badge.js"
|
|
74
|
+
},
|
|
75
|
+
"./banner": {
|
|
76
|
+
"types": "./dist/components/banner.d.ts",
|
|
77
|
+
"import": "./dist/components/banner.js"
|
|
78
|
+
},
|
|
79
|
+
"./breadcrumb": {
|
|
80
|
+
"types": "./dist/components/breadcrumb.d.ts",
|
|
81
|
+
"import": "./dist/components/breadcrumb.js"
|
|
82
|
+
},
|
|
83
|
+
"./button": {
|
|
84
|
+
"types": "./dist/components/button.d.ts",
|
|
85
|
+
"import": "./dist/components/button.js"
|
|
86
|
+
},
|
|
87
|
+
"./button-group": {
|
|
88
|
+
"types": "./dist/components/button-group.d.ts",
|
|
89
|
+
"import": "./dist/components/button-group.js"
|
|
90
|
+
},
|
|
91
|
+
"./calendar": {
|
|
92
|
+
"types": "./dist/components/calendar.d.ts",
|
|
93
|
+
"import": "./dist/components/calendar.js"
|
|
94
|
+
},
|
|
95
|
+
"./carousel": {
|
|
96
|
+
"types": "./dist/components/carousel.d.ts",
|
|
97
|
+
"import": "./dist/components/carousel.js"
|
|
98
|
+
},
|
|
99
|
+
"./card": {
|
|
100
|
+
"types": "./dist/components/card.d.ts",
|
|
101
|
+
"import": "./dist/components/card.js"
|
|
102
|
+
},
|
|
103
|
+
"./chart": {
|
|
104
|
+
"types": "./dist/components/chart.d.ts",
|
|
105
|
+
"import": "./dist/components/chart.js"
|
|
106
|
+
},
|
|
107
|
+
"./charts": {
|
|
108
|
+
"types": "./dist/charts/index.d.ts",
|
|
109
|
+
"import": "./dist/charts/index.js"
|
|
110
|
+
},
|
|
111
|
+
"./area-chart": {
|
|
112
|
+
"types": "./dist/components/area-chart.d.ts",
|
|
113
|
+
"import": "./dist/components/area-chart.js"
|
|
114
|
+
},
|
|
115
|
+
"./bar-chart": {
|
|
116
|
+
"types": "./dist/components/bar-chart.d.ts",
|
|
117
|
+
"import": "./dist/components/bar-chart.js"
|
|
118
|
+
},
|
|
119
|
+
"./line-chart": {
|
|
120
|
+
"types": "./dist/components/line-chart.d.ts",
|
|
121
|
+
"import": "./dist/components/line-chart.js"
|
|
122
|
+
},
|
|
123
|
+
"./live-line-chart": {
|
|
124
|
+
"types": "./dist/components/live-line-chart.d.ts",
|
|
125
|
+
"import": "./dist/components/live-line-chart.js"
|
|
126
|
+
},
|
|
127
|
+
"./composed-chart": {
|
|
128
|
+
"types": "./dist/components/composed-chart.d.ts",
|
|
129
|
+
"import": "./dist/components/composed-chart.js"
|
|
130
|
+
},
|
|
131
|
+
"./candlestick-chart": {
|
|
132
|
+
"types": "./dist/components/candlestick-chart.d.ts",
|
|
133
|
+
"import": "./dist/components/candlestick-chart.js"
|
|
134
|
+
},
|
|
135
|
+
"./funnel-chart": {
|
|
136
|
+
"types": "./dist/components/funnel-chart.d.ts",
|
|
137
|
+
"import": "./dist/components/funnel-chart.js"
|
|
138
|
+
},
|
|
139
|
+
"./gauge-chart": {
|
|
140
|
+
"types": "./dist/components/gauge-chart.d.ts",
|
|
141
|
+
"import": "./dist/components/gauge-chart.js"
|
|
142
|
+
},
|
|
143
|
+
"./pie-chart": {
|
|
144
|
+
"types": "./dist/components/pie-chart.d.ts",
|
|
145
|
+
"import": "./dist/components/pie-chart.js"
|
|
146
|
+
},
|
|
147
|
+
"./ring-chart": {
|
|
148
|
+
"types": "./dist/components/ring-chart.d.ts",
|
|
149
|
+
"import": "./dist/components/ring-chart.js"
|
|
150
|
+
},
|
|
151
|
+
"./radar-chart": {
|
|
152
|
+
"types": "./dist/components/radar-chart.d.ts",
|
|
153
|
+
"import": "./dist/components/radar-chart.js"
|
|
154
|
+
},
|
|
155
|
+
"./scatter-chart": {
|
|
156
|
+
"types": "./dist/components/scatter-chart.d.ts",
|
|
157
|
+
"import": "./dist/components/scatter-chart.js"
|
|
158
|
+
},
|
|
159
|
+
"./sankey-chart": {
|
|
160
|
+
"types": "./dist/components/sankey-chart.d.ts",
|
|
161
|
+
"import": "./dist/components/sankey-chart.js"
|
|
162
|
+
},
|
|
163
|
+
"./profit-loss-chart": {
|
|
164
|
+
"types": "./dist/components/profit-loss-chart.d.ts",
|
|
165
|
+
"import": "./dist/components/profit-loss-chart.js"
|
|
166
|
+
},
|
|
167
|
+
"./choropleth-chart": {
|
|
168
|
+
"types": "./dist/components/choropleth-chart.d.ts",
|
|
169
|
+
"import": "./dist/components/choropleth-chart.js"
|
|
170
|
+
},
|
|
171
|
+
"./sunburst-chart": {
|
|
172
|
+
"types": "./dist/components/sunburst-chart.d.ts",
|
|
173
|
+
"import": "./dist/components/sunburst-chart.js"
|
|
174
|
+
},
|
|
175
|
+
"./heatmap-chart": {
|
|
176
|
+
"types": "./dist/components/heatmap-chart.d.ts",
|
|
177
|
+
"import": "./dist/components/heatmap-chart.js"
|
|
178
|
+
},
|
|
179
|
+
"./checkbox": {
|
|
180
|
+
"types": "./dist/components/checkbox.d.ts",
|
|
181
|
+
"import": "./dist/components/checkbox.js"
|
|
182
|
+
},
|
|
183
|
+
"./chip": {
|
|
184
|
+
"types": "./dist/components/chip.d.ts",
|
|
185
|
+
"import": "./dist/components/chip.js"
|
|
186
|
+
},
|
|
187
|
+
"./code-block": {
|
|
188
|
+
"types": "./dist/components/code-block.d.ts",
|
|
189
|
+
"import": "./dist/components/code-block.js"
|
|
190
|
+
},
|
|
191
|
+
"./code-tabs": {
|
|
192
|
+
"types": "./dist/components/code-tabs.d.ts",
|
|
193
|
+
"import": "./dist/components/code-tabs.js"
|
|
194
|
+
},
|
|
195
|
+
"./collapsible": {
|
|
196
|
+
"types": "./dist/components/collapsible.d.ts",
|
|
197
|
+
"import": "./dist/components/collapsible.js"
|
|
198
|
+
},
|
|
199
|
+
"./color-picker": {
|
|
200
|
+
"types": "./dist/components/color-picker.d.ts",
|
|
201
|
+
"import": "./dist/components/color-picker.js"
|
|
202
|
+
},
|
|
203
|
+
"./combobox": {
|
|
204
|
+
"types": "./dist/components/combobox.d.ts",
|
|
205
|
+
"import": "./dist/components/combobox.js"
|
|
206
|
+
},
|
|
207
|
+
"./command": {
|
|
208
|
+
"types": "./dist/components/command.d.ts",
|
|
209
|
+
"import": "./dist/components/command.js"
|
|
210
|
+
},
|
|
211
|
+
"./comparison-slider": {
|
|
212
|
+
"types": "./dist/components/comparison-slider.d.ts",
|
|
213
|
+
"import": "./dist/components/comparison-slider.js"
|
|
214
|
+
},
|
|
215
|
+
"./context-menu": {
|
|
216
|
+
"types": "./dist/components/context-menu.d.ts",
|
|
217
|
+
"import": "./dist/components/context-menu.js"
|
|
218
|
+
},
|
|
219
|
+
"./copy-button": {
|
|
220
|
+
"types": "./dist/components/copy-button.d.ts",
|
|
221
|
+
"import": "./dist/components/copy-button.js"
|
|
222
|
+
},
|
|
223
|
+
"./countdown": {
|
|
224
|
+
"types": "./dist/components/countdown.d.ts",
|
|
225
|
+
"import": "./dist/components/countdown.js"
|
|
226
|
+
},
|
|
227
|
+
"./data-table": {
|
|
228
|
+
"types": "./dist/components/data-table.d.ts",
|
|
229
|
+
"import": "./dist/components/data-table.js"
|
|
230
|
+
},
|
|
231
|
+
"./date-picker": {
|
|
232
|
+
"types": "./dist/components/date-picker.d.ts",
|
|
233
|
+
"import": "./dist/components/date-picker.js"
|
|
234
|
+
},
|
|
235
|
+
"./date-range-picker": {
|
|
236
|
+
"types": "./dist/components/date-range-picker.d.ts",
|
|
237
|
+
"import": "./dist/components/date-range-picker.js"
|
|
238
|
+
},
|
|
239
|
+
"./description-list": {
|
|
240
|
+
"types": "./dist/components/description-list.d.ts",
|
|
241
|
+
"import": "./dist/components/description-list.js"
|
|
242
|
+
},
|
|
243
|
+
"./dialog": {
|
|
244
|
+
"types": "./dist/components/dialog.d.ts",
|
|
245
|
+
"import": "./dist/components/dialog.js"
|
|
246
|
+
},
|
|
247
|
+
"./dock": {
|
|
248
|
+
"types": "./dist/components/dock.d.ts",
|
|
249
|
+
"import": "./dist/components/dock.js"
|
|
250
|
+
},
|
|
251
|
+
"./drawer": {
|
|
252
|
+
"types": "./dist/components/drawer.d.ts",
|
|
253
|
+
"import": "./dist/components/drawer.js"
|
|
254
|
+
},
|
|
255
|
+
"./dropdown-menu": {
|
|
256
|
+
"types": "./dist/components/dropdown-menu.d.ts",
|
|
257
|
+
"import": "./dist/components/dropdown-menu.js"
|
|
258
|
+
},
|
|
259
|
+
"./empty": {
|
|
260
|
+
"types": "./dist/components/empty.d.ts",
|
|
261
|
+
"import": "./dist/components/empty.js"
|
|
262
|
+
},
|
|
263
|
+
"./fab": {
|
|
264
|
+
"types": "./dist/components/fab.d.ts",
|
|
265
|
+
"import": "./dist/components/fab.js"
|
|
266
|
+
},
|
|
267
|
+
"./field": {
|
|
268
|
+
"types": "./dist/components/field.d.ts",
|
|
269
|
+
"import": "./dist/components/field.js"
|
|
270
|
+
},
|
|
271
|
+
"./file-dropzone": {
|
|
272
|
+
"types": "./dist/components/file-dropzone.d.ts",
|
|
273
|
+
"import": "./dist/components/file-dropzone.js"
|
|
274
|
+
},
|
|
275
|
+
"./form": {
|
|
276
|
+
"types": "./dist/components/form.d.ts",
|
|
277
|
+
"import": "./dist/components/form.js"
|
|
278
|
+
},
|
|
279
|
+
"./frame": {
|
|
280
|
+
"types": "./dist/components/frame.d.ts",
|
|
281
|
+
"import": "./dist/components/frame.js"
|
|
282
|
+
},
|
|
283
|
+
"./glass-card": {
|
|
284
|
+
"types": "./dist/components/glass-card.d.ts",
|
|
285
|
+
"import": "./dist/components/glass-card.js"
|
|
286
|
+
},
|
|
287
|
+
"./gradient-border": {
|
|
288
|
+
"types": "./dist/components/gradient-border.d.ts",
|
|
289
|
+
"import": "./dist/components/gradient-border.js"
|
|
290
|
+
},
|
|
291
|
+
"./gradient-text": {
|
|
292
|
+
"types": "./dist/components/gradient-text.d.ts",
|
|
293
|
+
"import": "./dist/components/gradient-text.js"
|
|
294
|
+
},
|
|
295
|
+
"./heatmap": {
|
|
296
|
+
"types": "./dist/components/heatmap.d.ts",
|
|
297
|
+
"import": "./dist/components/heatmap.js"
|
|
298
|
+
},
|
|
299
|
+
"./hover-card": {
|
|
300
|
+
"types": "./dist/components/hover-card.d.ts",
|
|
301
|
+
"import": "./dist/components/hover-card.js"
|
|
302
|
+
},
|
|
303
|
+
"./image-zoom": {
|
|
304
|
+
"types": "./dist/components/image-zoom.d.ts",
|
|
305
|
+
"import": "./dist/components/image-zoom.js"
|
|
306
|
+
},
|
|
307
|
+
"./input": {
|
|
308
|
+
"types": "./dist/components/input.d.ts",
|
|
309
|
+
"import": "./dist/components/input.js"
|
|
310
|
+
},
|
|
311
|
+
"./input-group": {
|
|
312
|
+
"types": "./dist/components/input-group.d.ts",
|
|
313
|
+
"import": "./dist/components/input-group.js"
|
|
314
|
+
},
|
|
315
|
+
"./input-otp": {
|
|
316
|
+
"types": "./dist/components/input-otp.d.ts",
|
|
317
|
+
"import": "./dist/components/input-otp.js"
|
|
318
|
+
},
|
|
319
|
+
"./json-viewer": {
|
|
320
|
+
"types": "./dist/components/json-viewer.d.ts",
|
|
321
|
+
"import": "./dist/components/json-viewer.js"
|
|
322
|
+
},
|
|
323
|
+
"./kanban": {
|
|
324
|
+
"types": "./dist/components/kanban.d.ts",
|
|
325
|
+
"import": "./dist/components/kanban.js"
|
|
326
|
+
},
|
|
327
|
+
"./kbd": {
|
|
328
|
+
"types": "./dist/components/kbd.d.ts",
|
|
329
|
+
"import": "./dist/components/kbd.js"
|
|
330
|
+
},
|
|
331
|
+
"./label": {
|
|
332
|
+
"types": "./dist/components/label.d.ts",
|
|
333
|
+
"import": "./dist/components/label.js"
|
|
334
|
+
},
|
|
335
|
+
"./lightbox": {
|
|
336
|
+
"types": "./dist/components/lightbox.d.ts",
|
|
337
|
+
"import": "./dist/components/lightbox.js"
|
|
338
|
+
},
|
|
339
|
+
"./logo-carousel": {
|
|
340
|
+
"types": "./dist/components/logo-carousel.d.ts",
|
|
341
|
+
"import": "./dist/components/logo-carousel.js"
|
|
342
|
+
},
|
|
343
|
+
"./magnetic": {
|
|
344
|
+
"types": "./dist/components/magnetic.d.ts",
|
|
345
|
+
"import": "./dist/components/magnetic.js"
|
|
346
|
+
},
|
|
347
|
+
"./marquee": {
|
|
348
|
+
"types": "./dist/components/marquee.d.ts",
|
|
349
|
+
"import": "./dist/components/marquee.js"
|
|
350
|
+
},
|
|
351
|
+
"./masonry": {
|
|
352
|
+
"types": "./dist/components/masonry.d.ts",
|
|
353
|
+
"import": "./dist/components/masonry.js"
|
|
354
|
+
},
|
|
355
|
+
"./menubar": {
|
|
356
|
+
"types": "./dist/components/menubar.d.ts",
|
|
357
|
+
"import": "./dist/components/menubar.js"
|
|
358
|
+
},
|
|
359
|
+
"./metric": {
|
|
360
|
+
"types": "./dist/components/metric.d.ts",
|
|
361
|
+
"import": "./dist/components/metric.js"
|
|
362
|
+
},
|
|
363
|
+
"./mode-toggle": {
|
|
364
|
+
"types": "./dist/components/mode-toggle.d.ts",
|
|
365
|
+
"import": "./dist/components/mode-toggle.js"
|
|
366
|
+
},
|
|
367
|
+
"./motion-presets": {
|
|
368
|
+
"types": "./dist/components/motion-presets.d.ts",
|
|
369
|
+
"import": "./dist/components/motion-presets.js"
|
|
370
|
+
},
|
|
371
|
+
"./multi-select": {
|
|
372
|
+
"types": "./dist/components/multi-select.d.ts",
|
|
373
|
+
"import": "./dist/components/multi-select.js"
|
|
374
|
+
},
|
|
375
|
+
"./navigation-menu": {
|
|
376
|
+
"types": "./dist/components/navigation-menu.d.ts",
|
|
377
|
+
"import": "./dist/components/navigation-menu.js"
|
|
378
|
+
},
|
|
379
|
+
"./notification-center": {
|
|
380
|
+
"types": "./dist/components/notification-center.d.ts",
|
|
381
|
+
"import": "./dist/components/notification-center.js"
|
|
382
|
+
},
|
|
383
|
+
"./number-input": {
|
|
384
|
+
"types": "./dist/components/number-input.d.ts",
|
|
385
|
+
"import": "./dist/components/number-input.js"
|
|
386
|
+
},
|
|
387
|
+
"./orbit": {
|
|
388
|
+
"types": "./dist/components/orbit.d.ts",
|
|
389
|
+
"import": "./dist/components/orbit.js"
|
|
390
|
+
},
|
|
391
|
+
"./pagination": {
|
|
392
|
+
"types": "./dist/components/pagination.d.ts",
|
|
393
|
+
"import": "./dist/components/pagination.js"
|
|
394
|
+
},
|
|
395
|
+
"./password-input": {
|
|
396
|
+
"types": "./dist/components/password-input.d.ts",
|
|
397
|
+
"import": "./dist/components/password-input.js"
|
|
398
|
+
},
|
|
399
|
+
"./popover": {
|
|
400
|
+
"types": "./dist/components/popover.d.ts",
|
|
401
|
+
"import": "./dist/components/popover.js"
|
|
402
|
+
},
|
|
403
|
+
"./morphing-popover": {
|
|
404
|
+
"types": "./dist/components/morphing-popover.d.ts",
|
|
405
|
+
"import": "./dist/components/morphing-popover.js"
|
|
406
|
+
},
|
|
407
|
+
"./progress": {
|
|
408
|
+
"types": "./dist/components/progress.d.ts",
|
|
409
|
+
"import": "./dist/components/progress.js"
|
|
410
|
+
},
|
|
411
|
+
"./radio-group": {
|
|
412
|
+
"types": "./dist/components/radio-group.d.ts",
|
|
413
|
+
"import": "./dist/components/radio-group.js"
|
|
414
|
+
},
|
|
415
|
+
"./rating": {
|
|
416
|
+
"types": "./dist/components/rating.d.ts",
|
|
417
|
+
"import": "./dist/components/rating.js"
|
|
418
|
+
},
|
|
419
|
+
"./resizable": {
|
|
420
|
+
"types": "./dist/components/resizable.d.ts",
|
|
421
|
+
"import": "./dist/components/resizable.js"
|
|
422
|
+
},
|
|
423
|
+
"./reveal": {
|
|
424
|
+
"types": "./dist/components/reveal.d.ts",
|
|
425
|
+
"import": "./dist/components/reveal.js"
|
|
426
|
+
},
|
|
427
|
+
"./rich-text-editor": {
|
|
428
|
+
"types": "./dist/components/rich-text-editor.d.ts",
|
|
429
|
+
"import": "./dist/components/rich-text-editor.js"
|
|
430
|
+
},
|
|
431
|
+
"./scheduler": {
|
|
432
|
+
"types": "./dist/components/scheduler.d.ts",
|
|
433
|
+
"import": "./dist/components/scheduler.js"
|
|
434
|
+
},
|
|
435
|
+
"./scroll-area": {
|
|
436
|
+
"types": "./dist/components/scroll-area.d.ts",
|
|
437
|
+
"import": "./dist/components/scroll-area.js"
|
|
438
|
+
},
|
|
439
|
+
"./scroll-progress": {
|
|
440
|
+
"types": "./dist/components/scroll-progress.d.ts",
|
|
441
|
+
"import": "./dist/components/scroll-progress.js"
|
|
442
|
+
},
|
|
443
|
+
"./segmented-control": {
|
|
444
|
+
"types": "./dist/components/segmented-control.d.ts",
|
|
445
|
+
"import": "./dist/components/segmented-control.js"
|
|
446
|
+
},
|
|
447
|
+
"./select": {
|
|
448
|
+
"types": "./dist/components/select.d.ts",
|
|
449
|
+
"import": "./dist/components/select.js"
|
|
450
|
+
},
|
|
451
|
+
"./separator": {
|
|
452
|
+
"types": "./dist/components/separator.d.ts",
|
|
453
|
+
"import": "./dist/components/separator.js"
|
|
454
|
+
},
|
|
455
|
+
"./sheet": {
|
|
456
|
+
"types": "./dist/components/sheet.d.ts",
|
|
457
|
+
"import": "./dist/components/sheet.js"
|
|
458
|
+
},
|
|
459
|
+
"./shimmer": {
|
|
460
|
+
"types": "./dist/components/shimmer.d.ts",
|
|
461
|
+
"import": "./dist/components/shimmer.js"
|
|
462
|
+
},
|
|
463
|
+
"./sidebar": {
|
|
464
|
+
"types": "./dist/components/sidebar.d.ts",
|
|
465
|
+
"import": "./dist/components/sidebar.js"
|
|
466
|
+
},
|
|
467
|
+
"./signature-pad": {
|
|
468
|
+
"types": "./dist/components/signature-pad.d.ts",
|
|
469
|
+
"import": "./dist/components/signature-pad.js"
|
|
470
|
+
},
|
|
471
|
+
"./skeleton": {
|
|
472
|
+
"types": "./dist/components/skeleton.d.ts",
|
|
473
|
+
"import": "./dist/components/skeleton.js"
|
|
474
|
+
},
|
|
475
|
+
"./slider": {
|
|
476
|
+
"types": "./dist/components/slider.d.ts",
|
|
477
|
+
"import": "./dist/components/slider.js"
|
|
478
|
+
},
|
|
479
|
+
"./sonner": {
|
|
480
|
+
"types": "./dist/components/sonner.d.ts",
|
|
481
|
+
"import": "./dist/components/sonner.js"
|
|
482
|
+
},
|
|
483
|
+
"./sparkline": {
|
|
484
|
+
"types": "./dist/components/sparkline.d.ts",
|
|
485
|
+
"import": "./dist/components/sparkline.js"
|
|
486
|
+
},
|
|
487
|
+
"./spinner": {
|
|
488
|
+
"types": "./dist/components/spinner.d.ts",
|
|
489
|
+
"import": "./dist/components/spinner.js"
|
|
490
|
+
},
|
|
491
|
+
"./spotlight-card": {
|
|
492
|
+
"types": "./dist/components/spotlight-card.d.ts",
|
|
493
|
+
"import": "./dist/components/spotlight-card.js"
|
|
494
|
+
},
|
|
495
|
+
"./status-dot": {
|
|
496
|
+
"types": "./dist/components/status-dot.d.ts",
|
|
497
|
+
"import": "./dist/components/status-dot.js"
|
|
498
|
+
},
|
|
499
|
+
"./stepper": {
|
|
500
|
+
"types": "./dist/components/stepper.d.ts",
|
|
501
|
+
"import": "./dist/components/stepper.js"
|
|
502
|
+
},
|
|
503
|
+
"./switch": {
|
|
504
|
+
"types": "./dist/components/switch.d.ts",
|
|
505
|
+
"import": "./dist/components/switch.js"
|
|
506
|
+
},
|
|
507
|
+
"./table": {
|
|
508
|
+
"types": "./dist/components/table.d.ts",
|
|
509
|
+
"import": "./dist/components/table.js"
|
|
510
|
+
},
|
|
511
|
+
"./table-of-contents": {
|
|
512
|
+
"types": "./dist/components/table-of-contents.d.ts",
|
|
513
|
+
"import": "./dist/components/table-of-contents.js"
|
|
514
|
+
},
|
|
515
|
+
"./tabs": {
|
|
516
|
+
"types": "./dist/components/tabs.d.ts",
|
|
517
|
+
"import": "./dist/components/tabs.js"
|
|
518
|
+
},
|
|
519
|
+
"./tags-input": {
|
|
520
|
+
"types": "./dist/components/tags-input.d.ts",
|
|
521
|
+
"import": "./dist/components/tags-input.js"
|
|
522
|
+
},
|
|
523
|
+
"./terminal": {
|
|
524
|
+
"types": "./dist/components/terminal.d.ts",
|
|
525
|
+
"import": "./dist/components/terminal.js"
|
|
526
|
+
},
|
|
527
|
+
"./textarea": {
|
|
528
|
+
"types": "./dist/components/textarea.d.ts",
|
|
529
|
+
"import": "./dist/components/textarea.js"
|
|
530
|
+
},
|
|
531
|
+
"./text-effect": {
|
|
532
|
+
"types": "./dist/components/text-effect.d.ts",
|
|
533
|
+
"import": "./dist/components/text-effect.js"
|
|
534
|
+
},
|
|
535
|
+
"./timeline": {
|
|
536
|
+
"types": "./dist/components/timeline.d.ts",
|
|
537
|
+
"import": "./dist/components/timeline.js"
|
|
538
|
+
},
|
|
539
|
+
"./toggle": {
|
|
540
|
+
"types": "./dist/components/toggle.d.ts",
|
|
541
|
+
"import": "./dist/components/toggle.js"
|
|
542
|
+
},
|
|
543
|
+
"./toggle-group": {
|
|
544
|
+
"types": "./dist/components/toggle-group.d.ts",
|
|
545
|
+
"import": "./dist/components/toggle-group.js"
|
|
546
|
+
},
|
|
547
|
+
"./toolbar": {
|
|
548
|
+
"types": "./dist/components/toolbar.d.ts",
|
|
549
|
+
"import": "./dist/components/toolbar.js"
|
|
550
|
+
},
|
|
551
|
+
"./tooltip": {
|
|
552
|
+
"types": "./dist/components/tooltip.d.ts",
|
|
553
|
+
"import": "./dist/components/tooltip.js"
|
|
554
|
+
},
|
|
555
|
+
"./tree-view": {
|
|
556
|
+
"types": "./dist/components/tree-view.d.ts",
|
|
557
|
+
"import": "./dist/components/tree-view.js"
|
|
558
|
+
},
|
|
559
|
+
"./usage-meter": {
|
|
560
|
+
"types": "./dist/components/usage-meter.d.ts",
|
|
561
|
+
"import": "./dist/components/usage-meter.js"
|
|
562
|
+
},
|
|
563
|
+
"./video-player": {
|
|
564
|
+
"types": "./dist/components/video-player.d.ts",
|
|
565
|
+
"import": "./dist/components/video-player.js"
|
|
566
|
+
},
|
|
567
|
+
"./animated-list": {
|
|
568
|
+
"types": "./dist/components/animated-list.d.ts",
|
|
569
|
+
"import": "./dist/components/animated-list.js"
|
|
570
|
+
},
|
|
571
|
+
"./card-stack": {
|
|
572
|
+
"types": "./dist/components/card-stack.d.ts",
|
|
573
|
+
"import": "./dist/components/card-stack.js"
|
|
574
|
+
},
|
|
575
|
+
"./click-spark": {
|
|
576
|
+
"types": "./dist/components/click-spark.d.ts",
|
|
577
|
+
"import": "./dist/components/click-spark.js"
|
|
578
|
+
},
|
|
579
|
+
"./confetti": {
|
|
580
|
+
"types": "./dist/components/confetti.d.ts",
|
|
581
|
+
"import": "./dist/components/confetti.js"
|
|
582
|
+
},
|
|
583
|
+
"./dot-pattern": {
|
|
584
|
+
"types": "./dist/components/dot-pattern.d.ts",
|
|
585
|
+
"import": "./dist/components/dot-pattern.js"
|
|
586
|
+
},
|
|
587
|
+
"./dynamic-island": {
|
|
588
|
+
"types": "./dist/components/dynamic-island.d.ts",
|
|
589
|
+
"import": "./dist/components/dynamic-island.js"
|
|
590
|
+
},
|
|
591
|
+
"./expandable-tabs": {
|
|
592
|
+
"types": "./dist/components/expandable-tabs.d.ts",
|
|
593
|
+
"import": "./dist/components/expandable-tabs.js"
|
|
594
|
+
},
|
|
595
|
+
"./flickering-grid": {
|
|
596
|
+
"types": "./dist/components/flickering-grid.d.ts",
|
|
597
|
+
"import": "./dist/components/flickering-grid.js"
|
|
598
|
+
},
|
|
599
|
+
"./glare-hover": {
|
|
600
|
+
"types": "./dist/components/glare-hover.d.ts",
|
|
601
|
+
"import": "./dist/components/glare-hover.js"
|
|
602
|
+
},
|
|
603
|
+
"./grid-pattern": {
|
|
604
|
+
"types": "./dist/components/grid-pattern.d.ts",
|
|
605
|
+
"import": "./dist/components/grid-pattern.js"
|
|
606
|
+
},
|
|
607
|
+
"./highlighter": {
|
|
608
|
+
"types": "./dist/components/highlighter.d.ts",
|
|
609
|
+
"import": "./dist/components/highlighter.js"
|
|
610
|
+
},
|
|
611
|
+
"./light-rays": {
|
|
612
|
+
"types": "./dist/components/light-rays.d.ts",
|
|
613
|
+
"import": "./dist/components/light-rays.js"
|
|
614
|
+
},
|
|
615
|
+
"./meteors": {
|
|
616
|
+
"types": "./dist/components/meteors.d.ts",
|
|
617
|
+
"import": "./dist/components/meteors.js"
|
|
618
|
+
},
|
|
619
|
+
"./noise": {
|
|
620
|
+
"types": "./dist/components/noise.d.ts",
|
|
621
|
+
"import": "./dist/components/noise.js"
|
|
622
|
+
},
|
|
623
|
+
"./particles": {
|
|
624
|
+
"types": "./dist/components/particles.d.ts",
|
|
625
|
+
"import": "./dist/components/particles.js"
|
|
626
|
+
},
|
|
627
|
+
"./pill-nav": {
|
|
628
|
+
"types": "./dist/components/pill-nav.d.ts",
|
|
629
|
+
"import": "./dist/components/pill-nav.js"
|
|
630
|
+
},
|
|
631
|
+
"./progressive-blur": {
|
|
632
|
+
"types": "./dist/components/progressive-blur.d.ts",
|
|
633
|
+
"import": "./dist/components/progressive-blur.js"
|
|
634
|
+
},
|
|
635
|
+
"./retro-grid": {
|
|
636
|
+
"types": "./dist/components/retro-grid.d.ts",
|
|
637
|
+
"import": "./dist/components/retro-grid.js"
|
|
638
|
+
},
|
|
639
|
+
"./ripple": {
|
|
640
|
+
"types": "./dist/components/ripple.d.ts",
|
|
641
|
+
"import": "./dist/components/ripple.js"
|
|
642
|
+
},
|
|
643
|
+
"./scramble-text": {
|
|
644
|
+
"types": "./dist/components/scramble-text.d.ts",
|
|
645
|
+
"import": "./dist/components/scramble-text.js"
|
|
646
|
+
},
|
|
647
|
+
"./shiny-text": {
|
|
648
|
+
"types": "./dist/components/shiny-text.d.ts",
|
|
649
|
+
"import": "./dist/components/shiny-text.js"
|
|
650
|
+
},
|
|
651
|
+
"./sparkles-text": {
|
|
652
|
+
"types": "./dist/components/sparkles-text.d.ts",
|
|
653
|
+
"import": "./dist/components/sparkles-text.js"
|
|
654
|
+
},
|
|
655
|
+
"./spinning-text": {
|
|
656
|
+
"types": "./dist/components/spinning-text.d.ts",
|
|
657
|
+
"import": "./dist/components/spinning-text.js"
|
|
658
|
+
},
|
|
659
|
+
"./star-border": {
|
|
660
|
+
"types": "./dist/components/star-border.d.ts",
|
|
661
|
+
"import": "./dist/components/star-border.js"
|
|
662
|
+
},
|
|
663
|
+
"./typing-text": {
|
|
664
|
+
"types": "./dist/components/typing-text.d.ts",
|
|
665
|
+
"import": "./dist/components/typing-text.js"
|
|
666
|
+
},
|
|
667
|
+
"./word-rotate": {
|
|
668
|
+
"types": "./dist/components/word-rotate.d.ts",
|
|
669
|
+
"import": "./dist/components/word-rotate.js"
|
|
670
|
+
},
|
|
671
|
+
"./package.json": "./package.json"
|
|
672
|
+
},
|
|
673
|
+
"main": "./dist/index.js",
|
|
674
|
+
"types": "./dist/index.d.ts",
|
|
675
|
+
"sideEffects": false,
|
|
676
|
+
"license": "MIT",
|
|
677
|
+
"author": "Cronus",
|
|
678
|
+
"repository": {
|
|
679
|
+
"type": "git",
|
|
680
|
+
"url": "git+https://github.com/pedrogbraz/cronus-ui.git",
|
|
681
|
+
"directory": "packages/ui"
|
|
682
|
+
},
|
|
683
|
+
"homepage": "https://aicronus.com",
|
|
684
|
+
"bugs": {
|
|
685
|
+
"url": "https://github.com/pedrogbraz/cronus-ui/issues"
|
|
686
|
+
},
|
|
687
|
+
"keywords": [
|
|
688
|
+
"cronus",
|
|
689
|
+
"design-system",
|
|
690
|
+
"react",
|
|
691
|
+
"tailwind",
|
|
692
|
+
"ui",
|
|
693
|
+
"components"
|
|
694
|
+
],
|
|
695
|
+
"publishConfig": {
|
|
696
|
+
"access": "public"
|
|
697
|
+
},
|
|
698
|
+
"files": [
|
|
699
|
+
"dist",
|
|
700
|
+
"LICENSE",
|
|
701
|
+
"README.md",
|
|
702
|
+
"!dist/**/*.map"
|
|
703
|
+
],
|
|
704
|
+
"scripts": {
|
|
705
|
+
"build": "tsc -p tsconfig.json",
|
|
706
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
707
|
+
"test": "vitest run",
|
|
708
|
+
"test:watch": "vitest",
|
|
709
|
+
"prepublishOnly": "tsc -p tsconfig.json"
|
|
710
|
+
},
|
|
711
|
+
"dependencies": {
|
|
712
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
713
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
714
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
715
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
716
|
+
"@radix-ui/react-collapsible": "^1.1.14",
|
|
717
|
+
"@radix-ui/react-context": "^1.1.4",
|
|
718
|
+
"@radix-ui/react-context-menu": "^2.2.18",
|
|
719
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
720
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
721
|
+
"@radix-ui/react-hover-card": "^1.1.14",
|
|
722
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
723
|
+
"@radix-ui/react-menubar": "^1.1.18",
|
|
724
|
+
"@radix-ui/react-navigation-menu": "^1.2.16",
|
|
725
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
726
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
727
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
728
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
729
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
730
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
731
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
732
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
733
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
734
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
735
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
736
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
737
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
738
|
+
"class-variance-authority": "^0.7.1",
|
|
739
|
+
"clsx": "^2.1.1",
|
|
740
|
+
"cmdk": "^1.1.1",
|
|
741
|
+
"input-otp": "^1.4.2",
|
|
742
|
+
"lucide-react": "^0.577.0",
|
|
743
|
+
"motion": "^12.23.0",
|
|
744
|
+
"react-resizable-panels": "^2.1.9",
|
|
745
|
+
"sonner": "^2.0.7",
|
|
746
|
+
"tailwind-merge": "^3.3.1",
|
|
747
|
+
"vaul": "^1.1.2"
|
|
748
|
+
},
|
|
749
|
+
"peerDependencies": {
|
|
750
|
+
"@cronus-ui/theme": "0.6.0",
|
|
751
|
+
"@dnd-kit/core": "^6.3.1",
|
|
752
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
753
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
754
|
+
"@hookform/resolvers": "^3.10.0 || ^4.0.0 || ^5.0.0",
|
|
755
|
+
"@tanstack/react-table": "^8.21.3",
|
|
756
|
+
"@testing-library/react": "^16.3.2",
|
|
757
|
+
"@tiptap/pm": "^3.27.1",
|
|
758
|
+
"@tiptap/react": "^3.27.1",
|
|
759
|
+
"@tiptap/starter-kit": "^3.27.1",
|
|
760
|
+
"date-fns": "^4.4.0",
|
|
761
|
+
"react": "^18.3.0 || ^19.0.0",
|
|
762
|
+
"react-day-picker": "^10.0.1",
|
|
763
|
+
"react-dom": "^18.3.0 || ^19.0.0",
|
|
764
|
+
"react-hook-form": "^7.54.0",
|
|
765
|
+
"recharts": "^3.9.2",
|
|
766
|
+
"vitest-axe": "^0.1.0",
|
|
767
|
+
"zod": "^3.24.0 || ^4.0.0",
|
|
768
|
+
"@visx/brush": "3.12.0",
|
|
769
|
+
"@visx/curve": "4.0.1-alpha.0",
|
|
770
|
+
"@visx/event": "4.0.1-alpha.0",
|
|
771
|
+
"@visx/geo": "4.0.1-alpha.0",
|
|
772
|
+
"@visx/gradient": "4.0.1-alpha.0",
|
|
773
|
+
"@visx/grid": "4.0.1-alpha.0",
|
|
774
|
+
"@visx/group": "4.0.1-alpha.0",
|
|
775
|
+
"@visx/heatmap": "4.0.1-alpha.0",
|
|
776
|
+
"@visx/pattern": "4.0.1-alpha.0",
|
|
777
|
+
"@visx/responsive": "4.0.1-alpha.0",
|
|
778
|
+
"@visx/sankey": "4.0.1-alpha.0",
|
|
779
|
+
"@visx/scale": "4.0.1-alpha.0",
|
|
780
|
+
"@visx/shape": "4.0.1-alpha.0",
|
|
781
|
+
"@visx/zoom": "4.0.1-alpha.0",
|
|
782
|
+
"d3-array": "3.2.4",
|
|
783
|
+
"d3-geo": "3.1.0",
|
|
784
|
+
"d3-sankey": "0.12.3",
|
|
785
|
+
"d3-scale": "4.0.2",
|
|
786
|
+
"d3-shape": "3.2.0",
|
|
787
|
+
"react-use-measure": "2.1.7"
|
|
788
|
+
},
|
|
789
|
+
"peerDependenciesMeta": {
|
|
790
|
+
"@dnd-kit/core": {
|
|
791
|
+
"optional": true
|
|
792
|
+
},
|
|
793
|
+
"@dnd-kit/sortable": {
|
|
794
|
+
"optional": true
|
|
795
|
+
},
|
|
796
|
+
"@dnd-kit/utilities": {
|
|
797
|
+
"optional": true
|
|
798
|
+
},
|
|
799
|
+
"@hookform/resolvers": {
|
|
800
|
+
"optional": true
|
|
801
|
+
},
|
|
802
|
+
"@tanstack/react-table": {
|
|
803
|
+
"optional": true
|
|
804
|
+
},
|
|
805
|
+
"@testing-library/react": {
|
|
806
|
+
"optional": true
|
|
807
|
+
},
|
|
808
|
+
"@tiptap/pm": {
|
|
809
|
+
"optional": true
|
|
810
|
+
},
|
|
811
|
+
"@tiptap/react": {
|
|
812
|
+
"optional": true
|
|
813
|
+
},
|
|
814
|
+
"@tiptap/starter-kit": {
|
|
815
|
+
"optional": true
|
|
816
|
+
},
|
|
817
|
+
"date-fns": {
|
|
818
|
+
"optional": true
|
|
819
|
+
},
|
|
820
|
+
"react-day-picker": {
|
|
821
|
+
"optional": true
|
|
822
|
+
},
|
|
823
|
+
"recharts": {
|
|
824
|
+
"optional": true
|
|
825
|
+
},
|
|
826
|
+
"vitest-axe": {
|
|
827
|
+
"optional": true
|
|
828
|
+
},
|
|
829
|
+
"zod": {
|
|
830
|
+
"optional": true
|
|
831
|
+
},
|
|
832
|
+
"@visx/brush": {
|
|
833
|
+
"optional": true
|
|
834
|
+
},
|
|
835
|
+
"@visx/curve": {
|
|
836
|
+
"optional": true
|
|
837
|
+
},
|
|
838
|
+
"@visx/event": {
|
|
839
|
+
"optional": true
|
|
840
|
+
},
|
|
841
|
+
"@visx/geo": {
|
|
842
|
+
"optional": true
|
|
843
|
+
},
|
|
844
|
+
"@visx/gradient": {
|
|
845
|
+
"optional": true
|
|
846
|
+
},
|
|
847
|
+
"@visx/grid": {
|
|
848
|
+
"optional": true
|
|
849
|
+
},
|
|
850
|
+
"@visx/group": {
|
|
851
|
+
"optional": true
|
|
852
|
+
},
|
|
853
|
+
"@visx/heatmap": {
|
|
854
|
+
"optional": true
|
|
855
|
+
},
|
|
856
|
+
"@visx/pattern": {
|
|
857
|
+
"optional": true
|
|
858
|
+
},
|
|
859
|
+
"@visx/responsive": {
|
|
860
|
+
"optional": true
|
|
861
|
+
},
|
|
862
|
+
"@visx/sankey": {
|
|
863
|
+
"optional": true
|
|
864
|
+
},
|
|
865
|
+
"@visx/scale": {
|
|
866
|
+
"optional": true
|
|
867
|
+
},
|
|
868
|
+
"@visx/shape": {
|
|
869
|
+
"optional": true
|
|
870
|
+
},
|
|
871
|
+
"@visx/zoom": {
|
|
872
|
+
"optional": true
|
|
873
|
+
},
|
|
874
|
+
"d3-array": {
|
|
875
|
+
"optional": true
|
|
876
|
+
},
|
|
877
|
+
"d3-geo": {
|
|
878
|
+
"optional": true
|
|
879
|
+
},
|
|
880
|
+
"d3-sankey": {
|
|
881
|
+
"optional": true
|
|
882
|
+
},
|
|
883
|
+
"d3-scale": {
|
|
884
|
+
"optional": true
|
|
885
|
+
},
|
|
886
|
+
"d3-shape": {
|
|
887
|
+
"optional": true
|
|
888
|
+
},
|
|
889
|
+
"react-use-measure": {
|
|
890
|
+
"optional": true
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
"devDependencies": {
|
|
894
|
+
"@cronus-ui/theme": "0.6.0",
|
|
895
|
+
"@dnd-kit/core": "^6.3.1",
|
|
896
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
897
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
898
|
+
"@hookform/resolvers": "^5.4.0",
|
|
899
|
+
"@tanstack/react-table": "^8.21.3",
|
|
900
|
+
"@tiptap/pm": "^3.27.1",
|
|
901
|
+
"@tiptap/react": "^3.27.1",
|
|
902
|
+
"@tiptap/starter-kit": "^3.27.1",
|
|
903
|
+
"@types/d3-array": "3.2.1",
|
|
904
|
+
"@types/d3-geo": "3.1.0",
|
|
905
|
+
"@types/d3-sankey": "0.12.5",
|
|
906
|
+
"@types/d3-scale": "4.0.9",
|
|
907
|
+
"@types/d3-shape": "3.1.6",
|
|
908
|
+
"@types/geojson": "7946.0.16",
|
|
909
|
+
"@types/react": "^19.0.0",
|
|
910
|
+
"@types/react-dom": "^19.0.0",
|
|
911
|
+
"@visx/brush": "3.12.0",
|
|
912
|
+
"@visx/curve": "4.0.1-alpha.0",
|
|
913
|
+
"@visx/event": "4.0.1-alpha.0",
|
|
914
|
+
"@visx/geo": "4.0.1-alpha.0",
|
|
915
|
+
"@visx/gradient": "4.0.1-alpha.0",
|
|
916
|
+
"@visx/grid": "4.0.1-alpha.0",
|
|
917
|
+
"@visx/group": "4.0.1-alpha.0",
|
|
918
|
+
"@visx/heatmap": "4.0.1-alpha.0",
|
|
919
|
+
"@visx/pattern": "4.0.1-alpha.0",
|
|
920
|
+
"@visx/responsive": "4.0.1-alpha.0",
|
|
921
|
+
"@visx/sankey": "4.0.1-alpha.0",
|
|
922
|
+
"@visx/scale": "4.0.1-alpha.0",
|
|
923
|
+
"@visx/shape": "4.0.1-alpha.0",
|
|
924
|
+
"@visx/zoom": "4.0.1-alpha.0",
|
|
925
|
+
"d3-array": "3.2.4",
|
|
926
|
+
"d3-geo": "3.1.0",
|
|
927
|
+
"d3-sankey": "0.12.3",
|
|
928
|
+
"d3-scale": "4.0.2",
|
|
929
|
+
"d3-shape": "3.2.0",
|
|
930
|
+
"date-fns": "^4.4.0",
|
|
931
|
+
"react": "^19.2.0",
|
|
932
|
+
"react-day-picker": "^10.0.1",
|
|
933
|
+
"react-dom": "^19.2.0",
|
|
934
|
+
"react-hook-form": "^7.54.2",
|
|
935
|
+
"react-use-measure": "2.1.7",
|
|
936
|
+
"recharts": "^3.9.2",
|
|
937
|
+
"typescript": "^6.0.3",
|
|
938
|
+
"vitest": "^4.1.9",
|
|
939
|
+
"zod": "^4.4.3"
|
|
940
|
+
}
|
|
941
|
+
}
|