aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
140 lines • 5.28 kB
TypeScript
/**
* ModularGlassDataChart Component
*
* A modular implementation of the GlassDataChart component that uses separate
* components for chart rendering, tooltips, filters, and KPI display.
*/
import React from "react";
import { GlassDataChartProps, GlassDataChartRef } from "./types/ChartProps";
/**
* ModularGlassDataChart Component
*
* An advanced glass-styled chart component with physics-based interactions,
* smooth animations, and rich customization options. Enhanced with consciousness interface features.
*/
export declare const ModularGlassDataChart: React.ForwardRefExoticComponent<GlassDataChartProps & {
predictive?: boolean;
preloadData?: boolean;
eyeTracking?: boolean;
gazeResponsive?: boolean;
adaptive?: boolean;
biometricResponsive?: boolean;
spatialAudio?: boolean;
audioFeedback?: boolean;
trackAchievements?: boolean;
achievementId?: string;
usageContext?: "dashboard" | "analytics" | "report" | "presentation" | "exploration";
} & React.RefAttributes<GlassDataChartRef>>;
/**
* Enhanced ModularGlassDataChart with consciousness features enabled by default
* Use this for data-heavy charts that need intelligent insights
*/
export declare const ConsciousModularGlassDataChart: React.ForwardRefExoticComponent<Omit<GlassDataChartProps & {
predictive?: boolean;
preloadData?: boolean;
eyeTracking?: boolean;
gazeResponsive?: boolean;
adaptive?: boolean;
biometricResponsive?: boolean;
spatialAudio?: boolean;
audioFeedback?: boolean;
trackAchievements?: boolean;
achievementId?: string;
usageContext?: "dashboard" | "analytics" | "report" | "presentation" | "exploration";
} & React.RefAttributes<GlassDataChartRef>, "ref"> & React.RefAttributes<GlassDataChartRef>>;
/**
* Predictive ModularGlassDataChart optimized for complex data analysis
*/
export declare const PredictiveModularGlassDataChart: React.ForwardRefExoticComponent<Omit<GlassDataChartProps & {
predictive?: boolean;
preloadData?: boolean;
eyeTracking?: boolean;
gazeResponsive?: boolean;
adaptive?: boolean;
biometricResponsive?: boolean;
spatialAudio?: boolean;
audioFeedback?: boolean;
trackAchievements?: boolean;
achievementId?: string;
usageContext?: "dashboard" | "analytics" | "report" | "presentation" | "exploration";
} & React.RefAttributes<GlassDataChartRef>, "ref"> & React.RefAttributes<GlassDataChartRef>>;
/**
* Adaptive ModularGlassDataChart that responds to user cognitive load
*/
export declare const AdaptiveModularGlassDataChart: React.ForwardRefExoticComponent<Omit<GlassDataChartProps & {
predictive?: boolean;
preloadData?: boolean;
eyeTracking?: boolean;
gazeResponsive?: boolean;
adaptive?: boolean;
biometricResponsive?: boolean;
spatialAudio?: boolean;
audioFeedback?: boolean;
trackAchievements?: boolean;
achievementId?: string;
usageContext?: "dashboard" | "analytics" | "report" | "presentation" | "exploration";
} & React.RefAttributes<GlassDataChartRef>, "ref"> & React.RefAttributes<GlassDataChartRef>>;
/**
* Immersive ModularGlassDataChart for dashboard and presentation contexts
*/
export declare const ImmersiveModularGlassDataChart: React.ForwardRefExoticComponent<Omit<GlassDataChartProps & {
predictive?: boolean;
preloadData?: boolean;
eyeTracking?: boolean;
gazeResponsive?: boolean;
adaptive?: boolean;
biometricResponsive?: boolean;
spatialAudio?: boolean;
audioFeedback?: boolean;
trackAchievements?: boolean;
achievementId?: string;
usageContext?: "dashboard" | "analytics" | "report" | "presentation" | "exploration";
} & React.RefAttributes<GlassDataChartRef>, "ref"> & React.RefAttributes<GlassDataChartRef>>;
/**
* Pre-configured consciousness modular chart presets
*/
export declare const ModularChartConsciousnessPresets: {
/**
* Minimal consciousness features for performance-sensitive modular charts
*/
readonly minimal: {
readonly predictive: true;
readonly trackAchievements: true;
};
/**
* Balanced consciousness features for general modular chart usage
*/
readonly balanced: {
readonly predictive: true;
readonly adaptive: true;
readonly biometricResponsive: true;
readonly trackAchievements: true;
};
/**
* Full consciousness features for immersive modular chart experiences
*/
readonly immersive: {
readonly predictive: true;
readonly preloadData: true;
readonly eyeTracking: true;
readonly gazeResponsive: true;
readonly adaptive: true;
readonly biometricResponsive: true;
readonly spatialAudio: true;
readonly audioFeedback: true;
readonly trackAchievements: true;
};
/**
* Analytics-focused consciousness features for data exploration
*/
readonly analytics: {
readonly predictive: true;
readonly preloadData: true;
readonly eyeTracking: true;
readonly gazeResponsive: true;
readonly trackAchievements: true;
readonly usageContext: "analytics";
};
};
export default ModularGlassDataChart;
//# sourceMappingURL=ModularGlassDataChart.d.ts.map