@shohojdhara/atomix 0.2.4 → 0.2.6
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/README.md +19 -0
- package/dist/atomix.css +1300 -1418
- package/dist/atomix.min.css +3 -3
- package/dist/index.d.ts +1259 -874
- package/dist/index.esm.js +16256 -26366
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +15691 -22295
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/themes/applemix.css +15036 -0
- package/dist/themes/applemix.min.css +72 -0
- package/dist/themes/boomdevs.css +1300 -1419
- package/dist/themes/boomdevs.min.css +3 -3
- package/dist/themes/esrar.css +1301 -1419
- package/dist/themes/esrar.min.css +3 -3
- package/dist/themes/flashtrade.css +15187 -0
- package/dist/themes/flashtrade.min.css +86 -0
- package/dist/themes/mashroom.css +1299 -1417
- package/dist/themes/mashroom.min.css +5 -5
- package/dist/themes/shaj-default.css +1300 -1418
- package/dist/themes/shaj-default.min.css +3 -3
- package/package.json +6 -17
- package/src/components/Accordion/Accordion.stories.tsx +4 -26
- package/src/components/Accordion/Accordion.tsx +21 -12
- package/src/components/AtomixGlass/AtomixGlass.test.tsx +106 -72
- package/src/components/AtomixGlass/AtomixGlass.tsx +485 -1215
- package/src/components/AtomixGlass/AtomixGlassContainer.tsx +399 -0
- package/src/components/AtomixGlass/GlassFilter.tsx +156 -0
- package/src/components/AtomixGlass/README.md +124 -2
- package/src/components/AtomixGlass/atomixGLass.old.tsx +1266 -0
- package/src/components/AtomixGlass/glass-utils.ts +263 -0
- package/src/components/AtomixGlass/shader-utils.ts +404 -236
- package/src/components/AtomixGlass/{AtomixGlass.stories.tsx → stories/AtomixGlass.stories.tsx} +55 -35
- package/src/components/AtomixGlass/stories/Examples.stories.tsx +57 -89
- package/src/components/AtomixGlass/stories/Modes.stories.tsx +149 -149
- package/src/components/AtomixGlass/stories/Playground.stories.tsx +95 -32
- package/src/components/AtomixGlass/stories/ShaderVariants.stories.tsx +0 -2
- package/src/components/AtomixGlass/stories/shared-components.tsx +9 -18
- package/src/components/AtomixGlass/utils.ts +3 -3
- package/src/components/Avatar/Avatar.tsx +3 -0
- package/src/components/Avatar/AvatarGroup.tsx +2 -1
- package/src/components/Badge/Badge.stories.tsx +74 -54
- package/src/components/Badge/Badge.tsx +8 -12
- package/src/components/Breadcrumb/Breadcrumb.tsx +23 -4
- package/src/components/Button/Button.tsx +3 -5
- package/src/components/Callout/Callout.stories.tsx +86 -35
- package/src/components/Callout/Callout.tsx +4 -0
- package/src/components/Card/Card.stories.tsx +89 -85
- package/src/components/Card/Card.tsx +15 -4
- package/src/components/Card/ElevationCard.tsx +2 -0
- package/src/components/Chart/AnimatedChart.tsx +179 -156
- package/src/components/Chart/AreaChart.tsx +123 -12
- package/src/components/Chart/BarChart.tsx +91 -100
- package/src/components/Chart/BaseChart.tsx +80 -0
- package/src/components/Chart/BubbleChart.tsx +114 -290
- package/src/components/Chart/CandlestickChart.tsx +282 -622
- package/src/components/Chart/Chart.stories.tsx +576 -179
- package/src/components/Chart/Chart.tsx +374 -75
- package/src/components/Chart/ChartRenderer.tsx +371 -220
- package/src/components/Chart/ChartToolbar.tsx +372 -61
- package/src/components/Chart/ChartTooltip.tsx +33 -18
- package/src/components/Chart/DonutChart.tsx +172 -254
- package/src/components/Chart/FunnelChart.tsx +169 -240
- package/src/components/Chart/GaugeChart.tsx +224 -392
- package/src/components/Chart/HeatmapChart.tsx +302 -440
- package/src/components/Chart/LineChart.tsx +148 -103
- package/src/components/Chart/MultiAxisChart.tsx +267 -395
- package/src/components/Chart/PieChart.tsx +114 -64
- package/src/components/Chart/RadarChart.tsx +202 -218
- package/src/components/Chart/ScatterChart.tsx +111 -97
- package/src/components/Chart/TreemapChart.tsx +147 -222
- package/src/components/Chart/WaterfallChart.tsx +253 -291
- package/src/components/Chart/index.ts +11 -9
- package/src/components/Chart/types.ts +85 -9
- package/src/components/Chart/utils.ts +66 -0
- package/src/components/ColorModeToggle/ColorModeToggle.stories.tsx +121 -11
- package/src/components/ColorModeToggle/ColorModeToggle.tsx +149 -45
- package/src/components/ColorModeToggle/index.ts +1 -1
- package/src/components/Countdown/Countdown.tsx +4 -0
- package/src/components/DataTable/DataTable.tsx +2 -1
- package/src/components/DatePicker/DatePicker.stories.tsx +0 -11
- package/src/components/DatePicker/DatePicker.tsx +3 -9
- package/src/components/DatePicker/types.ts +5 -0
- package/src/components/Dropdown/Dropdown.stories.tsx +32 -25
- package/src/components/Dropdown/Dropdown.tsx +26 -28
- package/src/components/EdgePanel/EdgePanel.stories.tsx +13 -15
- package/src/components/EdgePanel/EdgePanel.tsx +20 -5
- package/src/components/Footer/Footer.stories.tsx +187 -60
- package/src/components/Footer/Footer.test.tsx +134 -0
- package/src/components/Footer/Footer.tsx +133 -34
- package/src/components/Footer/FooterLink.tsx +1 -1
- package/src/components/Footer/FooterSection.tsx +53 -36
- package/src/components/Footer/FooterSocialLink.tsx +32 -29
- package/src/components/Footer/README.md +82 -3
- package/src/components/Footer/index.ts +1 -1
- package/src/components/Form/Checkbox.stories.tsx +13 -5
- package/src/components/Form/Checkbox.tsx +3 -6
- package/src/components/Form/Form.stories.tsx +10 -3
- package/src/components/Form/Form.tsx +2 -0
- package/src/components/Form/FormGroup.tsx +2 -1
- package/src/components/Form/Input.stories.tsx +12 -11
- package/src/components/Form/Input.tsx +97 -95
- package/src/components/Form/Radio.stories.tsx +22 -7
- package/src/components/Form/Radio.tsx +3 -6
- package/src/components/Form/Select.stories.tsx +21 -6
- package/src/components/Form/Select.tsx +3 -5
- package/src/components/Form/Textarea.stories.tsx +13 -11
- package/src/components/Form/Textarea.tsx +88 -86
- package/src/components/Hero/Hero.stories.tsx +2 -3
- package/src/components/Hero/Hero.tsx +5 -6
- package/src/components/Icon/Icon.tsx +12 -1
- package/src/components/List/List.tsx +2 -1
- package/src/components/List/ListGroup.tsx +2 -1
- package/src/components/Messages/Messages.tsx +3 -2
- package/src/components/Modal/Modal.stories.tsx +48 -34
- package/src/components/Modal/Modal.tsx +19 -23
- package/src/components/Navigation/Menu/MegaMenu.tsx +2 -2
- package/src/components/Navigation/Menu/Menu.tsx +2 -2
- package/src/components/Navigation/Nav/Nav.tsx +6 -1
- package/src/components/Navigation/Nav/NavDropdown.tsx +10 -1
- package/src/components/Navigation/Navbar/Navbar.tsx +4 -1
- package/src/components/Navigation/SideMenu/SideMenu.tsx +3 -2
- package/src/components/Pagination/Pagination.stories.tsx +13 -6
- package/src/components/Pagination/Pagination.tsx +7 -6
- package/src/components/PhotoViewer/PhotoViewer.tsx +2 -1
- package/src/components/Popover/Popover.stories.tsx +32 -24
- package/src/components/Popover/Popover.tsx +4 -1
- package/src/components/ProductReview/ProductReview.tsx +8 -2
- package/src/components/Progress/Progress.tsx +2 -1
- package/src/components/Rating/Rating.stories.tsx +11 -6
- package/src/components/Rating/Rating.tsx +3 -5
- package/src/components/River/River.tsx +5 -5
- package/src/components/SectionIntro/SectionIntro.tsx +8 -2
- package/src/components/Slider/Slider.stories.tsx +4 -4
- package/src/components/Slider/Slider.tsx +4 -3
- package/src/components/Spinner/Spinner.tsx +2 -1
- package/src/components/Steps/Steps.stories.tsx +5 -4
- package/src/components/Steps/Steps.tsx +8 -5
- package/src/components/Tab/Tab.stories.tsx +4 -3
- package/src/components/Tab/Tab.tsx +8 -6
- package/src/components/Testimonial/Testimonial.tsx +8 -2
- package/src/components/Todo/Todo.tsx +2 -1
- package/src/components/Toggle/Toggle.stories.tsx +5 -4
- package/src/components/Toggle/Toggle.tsx +8 -5
- package/src/components/Tooltip/Tooltip.stories.tsx +40 -30
- package/src/components/Tooltip/Tooltip.tsx +9 -2
- package/src/components/Upload/Upload.stories.tsx +252 -0
- package/src/components/Upload/Upload.tsx +92 -53
- package/src/components/VideoPlayer/VideoPlayer.tsx +3 -1
- package/src/components/index.ts +0 -4
- package/src/layouts/Grid/Grid.stories.tsx +10 -23
- package/src/layouts/Grid/Grid.tsx +20 -1
- package/src/layouts/Grid/GridCol.tsx +76 -48
- package/src/lib/composables/useAtomixGlass.ts +861 -44
- package/src/lib/composables/useBarChart.ts +13 -6
- package/src/lib/composables/useChart.ts +17 -13
- package/src/lib/composables/useChartExport.ts +19 -78
- package/src/lib/composables/useChartToolbar.ts +0 -1
- package/src/lib/composables/useEdgePanel.ts +111 -103
- package/src/lib/composables/useFooter.ts +3 -3
- package/src/lib/composables/useGlassContainer.ts +16 -7
- package/src/lib/composables/useLineChart.ts +8 -1
- package/src/lib/composables/useRiver.ts +5 -0
- package/src/lib/composables/useSlider.ts +62 -24
- package/src/lib/composables/useVideoPlayer.ts +60 -63
- package/src/lib/constants/components.ts +146 -32
- package/src/lib/types/components.ts +258 -10
- package/src/lib/utils/displacement-generator.ts +55 -49
- package/src/lib/utils/icons.ts +1 -1
- package/src/lib/utils/index.ts +16 -10
- package/src/styles/01-settings/_settings.accordion.scss +19 -19
- package/src/styles/01-settings/_settings.animations.scss +5 -5
- package/src/styles/01-settings/_settings.avatar-group.scss +1 -1
- package/src/styles/01-settings/_settings.avatar.scss +17 -17
- package/src/styles/01-settings/_settings.background.scss +1 -4
- package/src/styles/01-settings/_settings.badge.scss +1 -1
- package/src/styles/01-settings/_settings.breadcrumb.scss +1 -1
- package/src/styles/01-settings/_settings.card.scss +1 -1
- package/src/styles/01-settings/_settings.chart.scss +65 -2
- package/src/styles/01-settings/_settings.dropdown.scss +1 -1
- package/src/styles/01-settings/_settings.footer.scss +35 -42
- package/src/styles/01-settings/_settings.input.scss +1 -1
- package/src/styles/01-settings/_settings.list.scss +1 -1
- package/src/styles/01-settings/_settings.rating.scss +1 -1
- package/src/styles/01-settings/_settings.tabs.scss +1 -1
- package/src/styles/01-settings/_settings.upload.scss +6 -5
- package/src/styles/02-tools/_tools.animations.scss +4 -5
- package/src/styles/02-tools/_tools.background.scss +1 -13
- package/src/styles/02-tools/_tools.glass.scss +0 -1
- package/src/styles/02-tools/_tools.utility-api.scss +42 -34
- package/src/styles/03-generic/_generic.root.scss +1 -4
- package/src/styles/04-elements/_elements.body.scss +0 -1
- package/src/styles/06-components/_components.atomix-glass.scss +217 -39
- package/src/styles/06-components/_components.badge.scss +6 -8
- package/src/styles/06-components/_components.button.scss +8 -3
- package/src/styles/06-components/_components.card.scss +2 -14
- package/src/styles/06-components/_components.chart.scss +969 -1449
- package/src/styles/06-components/_components.color-mode-toggle.scss +43 -6
- package/src/styles/06-components/_components.dropdown.scss +19 -7
- package/src/styles/06-components/_components.edge-panel.scss +4 -2
- package/src/styles/06-components/_components.footer.scss +166 -85
- package/src/styles/06-components/_components.input.scss +8 -9
- package/src/styles/06-components/_components.list.scss +1 -0
- package/src/styles/06-components/_components.modal.scss +5 -3
- package/src/styles/06-components/_components.skeleton.scss +8 -6
- package/src/styles/06-components/_components.upload.scss +219 -4
- package/src/styles/06-components/old.chart.styles.scss +1 -30
- package/src/styles/99-utilities/_utilities.opacity.scss +1 -1
- package/src/styles/99-utilities/_utilities.scss +1 -1
- package/src/components/Chart/AdvancedChart.tsx +0 -624
- package/src/components/Chart/LineChartNew.tsx +0 -167
- package/src/components/Chart/RealTimeChart.tsx +0 -436
- package/src/components/DatePicker/DatePicker copy.tsx +0 -551
package/dist/index.d.ts
CHANGED
|
@@ -3,71 +3,151 @@ import react__default, { ReactNode, ElementType, HTMLAttributes } from 'react';
|
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as PhosphorIcons from '@phosphor-icons/react';
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
declare const fragmentShaders: {
|
|
11
|
-
liquidGlass: (uv: Vec2, mousePosition?: Vec2) => Vec2;
|
|
12
|
-
appleFluid: (uv: Vec2, mousePosition?: Vec2) => Vec2;
|
|
13
|
-
premiumGlass: (uv: Vec2, mousePosition?: Vec2) => Vec2;
|
|
14
|
-
liquidMetal: (uv: Vec2, mousePosition?: Vec2) => Vec2;
|
|
15
|
-
basiBasi: (uv: Vec2, mousePosition?: Vec2) => Vec2;
|
|
16
|
-
};
|
|
17
|
-
type FragmentShaderType = keyof typeof fragmentShaders;
|
|
18
|
-
|
|
6
|
+
/**
|
|
7
|
+
* Displacement mode for glass effect
|
|
8
|
+
*/
|
|
19
9
|
type DisplacementMode = 'standard' | 'polar' | 'prominent' | 'shader';
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
10
|
+
/**
|
|
11
|
+
* OverLight configuration - can be boolean, 'auto', or object with settings
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* // Boolean - explicit control
|
|
15
|
+
* overLight={true}
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* // Auto-detection - automatically detects background brightness
|
|
19
|
+
* overLight="auto"
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* // Object config - auto-detection with custom settings
|
|
23
|
+
* overLight={{
|
|
24
|
+
* threshold: 0.8,
|
|
25
|
+
* opacity: 0.6,
|
|
26
|
+
* contrast: 1.8,
|
|
27
|
+
* brightness: 1.0,
|
|
28
|
+
* saturationBoost: 1.5
|
|
29
|
+
* }}
|
|
30
|
+
*/
|
|
31
|
+
type OverLightConfig = boolean | 'auto' | OverLightObjectConfig;
|
|
32
|
+
/**
|
|
33
|
+
* OverLight object configuration
|
|
34
|
+
*
|
|
35
|
+
* When using object mode, the component will auto-detect background brightness
|
|
36
|
+
* and apply the custom settings. All properties are optional and will use
|
|
37
|
+
* sensible defaults if not provided.
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* // Minimal config - only threshold
|
|
41
|
+
* overLight={{ threshold: 0.8 }}
|
|
42
|
+
*
|
|
43
|
+
* @example
|
|
44
|
+
* // Full config with all properties
|
|
45
|
+
* overLight={{
|
|
46
|
+
* threshold: 0.75,
|
|
47
|
+
* opacity: 0.6,
|
|
48
|
+
* contrast: 1.8,
|
|
49
|
+
* brightness: 1.1,
|
|
50
|
+
* saturationBoost: 1.5
|
|
51
|
+
* }}
|
|
52
|
+
*/
|
|
53
|
+
interface OverLightObjectConfig {
|
|
54
|
+
/**
|
|
55
|
+
* Luminance threshold for auto-detection (0.1 - 1.0)
|
|
56
|
+
*
|
|
57
|
+
* Backgrounds with average luminance above this threshold will be
|
|
58
|
+
* considered "light" and trigger overLight mode.
|
|
59
|
+
*
|
|
60
|
+
* @default 0.7
|
|
61
|
+
* @minimum 0.1
|
|
62
|
+
* @maximum 1.0
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* // More sensitive detection (triggers on lighter backgrounds)
|
|
66
|
+
* threshold: 0.6
|
|
67
|
+
*
|
|
68
|
+
* @example
|
|
69
|
+
* // Less sensitive detection (only very light backgrounds)
|
|
70
|
+
* threshold: 0.85
|
|
71
|
+
*/
|
|
25
72
|
threshold?: number;
|
|
73
|
+
/**
|
|
74
|
+
* Base opacity for overLight layers (0.1 - 1.0)
|
|
75
|
+
*
|
|
76
|
+
* Controls the opacity of the base and overlay layers when overLight
|
|
77
|
+
* mode is active. This value is multiplied by hover/active intensity
|
|
78
|
+
* multipliers for dynamic effects.
|
|
79
|
+
*
|
|
80
|
+
* @default 0.5 (dynamic, depends on hover/active state)
|
|
81
|
+
* @minimum 0.1
|
|
82
|
+
* @maximum 1.0
|
|
83
|
+
*
|
|
84
|
+
* @example
|
|
85
|
+
* // Subtle overlay
|
|
86
|
+
* opacity: 0.3
|
|
87
|
+
*
|
|
88
|
+
* @example
|
|
89
|
+
* // Strong overlay
|
|
90
|
+
* opacity: 0.7
|
|
91
|
+
*/
|
|
26
92
|
opacity?: number;
|
|
93
|
+
/**
|
|
94
|
+
* Contrast enhancement multiplier (0.5 - 2.5)
|
|
95
|
+
*
|
|
96
|
+
* Increases the contrast of the glass effect for better visibility
|
|
97
|
+
* on light backgrounds. Higher values create more dramatic effects.
|
|
98
|
+
*
|
|
99
|
+
* @default 1.4 (dynamic, includes mouse influence)
|
|
100
|
+
* @minimum 0.5
|
|
101
|
+
* @maximum 2.5
|
|
102
|
+
*
|
|
103
|
+
* @example
|
|
104
|
+
* // Subtle contrast boost
|
|
105
|
+
* contrast: 1.2
|
|
106
|
+
*
|
|
107
|
+
* @example
|
|
108
|
+
* // High contrast for maximum visibility
|
|
109
|
+
* contrast: 2.0
|
|
110
|
+
*/
|
|
27
111
|
contrast?: number;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
112
|
+
/**
|
|
113
|
+
* Brightness adjustment multiplier (0.5 - 2.0)
|
|
114
|
+
*
|
|
115
|
+
* Adjusts the overall brightness of the glass effect. Values above 1.0
|
|
116
|
+
* brighten the effect, while values below 1.0 darken it.
|
|
117
|
+
*
|
|
118
|
+
* @default 0.85 (dynamic, includes mouse influence)
|
|
119
|
+
* @minimum 0.5
|
|
120
|
+
* @maximum 2.0
|
|
121
|
+
*
|
|
122
|
+
* @example
|
|
123
|
+
* // Neutral brightness
|
|
124
|
+
* brightness: 1.0
|
|
125
|
+
*
|
|
126
|
+
* @example
|
|
127
|
+
* // Brighter effect
|
|
128
|
+
* brightness: 1.2
|
|
129
|
+
*/
|
|
130
|
+
brightness?: number;
|
|
131
|
+
/**
|
|
132
|
+
* Saturation boost multiplier (0.5 - 3.0)
|
|
133
|
+
*
|
|
134
|
+
* Enhances color saturation for more vibrant glass effects on light
|
|
135
|
+
* backgrounds. This works in conjunction with the base saturation prop.
|
|
136
|
+
*
|
|
137
|
+
* @default 1.3 (dynamic, includes mouse influence)
|
|
138
|
+
* @minimum 0.5
|
|
139
|
+
* @maximum 3.0
|
|
140
|
+
*
|
|
141
|
+
* @example
|
|
142
|
+
* // Moderate saturation boost
|
|
143
|
+
* saturationBoost: 1.2
|
|
144
|
+
*
|
|
145
|
+
* @example
|
|
146
|
+
* // High saturation for vivid effects
|
|
147
|
+
* saturationBoost: 2.0
|
|
148
|
+
*/
|
|
149
|
+
saturationBoost?: number;
|
|
58
150
|
}
|
|
59
|
-
/**
|
|
60
|
-
* AtomixGlass - A high-performance glass morphism component with liquid distortion effects
|
|
61
|
-
*
|
|
62
|
-
* Features:
|
|
63
|
-
* - Hardware-accelerated glass effects with SVG filters
|
|
64
|
-
* - Mouse-responsive liquid distortion
|
|
65
|
-
* - Automatic light/dark theme detection
|
|
66
|
-
* - Accessibility and performance optimizations
|
|
67
|
-
* - Multiple displacement modes (standard, polar, prominent, shader)
|
|
68
|
-
*/
|
|
69
|
-
declare function AtomixGlass({ children, displacementScale, blurAmount, saturation, aberrationIntensity, elasticity, cornerRadius, globalMousePosition: externalGlobalMousePosition, mouseOffset: externalMouseOffset, mouseContainer, className, padding, overLight, style, mode, onClick, shaderVariant, 'aria-label': ariaLabel, 'aria-describedby': ariaDescribedBy, role, tabIndex, reducedMotion, highContrast, disableEffects, enableLiquidBlur, enableBorderEffect, enableOverLightLayers, enablePerformanceMonitoring, }: AtomixGlassProps$1): react_jsx_runtime.JSX.Element;
|
|
70
|
-
|
|
71
151
|
/**
|
|
72
152
|
* AtomixGlass component props interface
|
|
73
153
|
*/
|
|
@@ -79,20 +159,14 @@ interface AtomixGlassProps {
|
|
|
79
159
|
aberrationIntensity?: number;
|
|
80
160
|
elasticity?: number;
|
|
81
161
|
cornerRadius?: number;
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
y: number;
|
|
85
|
-
};
|
|
86
|
-
mouseOffset?: {
|
|
87
|
-
x: number;
|
|
88
|
-
y: number;
|
|
89
|
-
};
|
|
162
|
+
globalMousePosition?: MousePosition;
|
|
163
|
+
mouseOffset?: MousePosition;
|
|
90
164
|
mouseContainer?: React.RefObject<HTMLElement | null> | null;
|
|
91
165
|
className?: string;
|
|
92
166
|
padding?: string;
|
|
93
167
|
style?: React.CSSProperties;
|
|
94
|
-
overLight?:
|
|
95
|
-
mode?:
|
|
168
|
+
overLight?: OverLightConfig;
|
|
169
|
+
mode?: DisplacementMode;
|
|
96
170
|
onClick?: () => void;
|
|
97
171
|
/**
|
|
98
172
|
* Shader variant for shader mode
|
|
@@ -111,10 +185,35 @@ interface AtomixGlassProps {
|
|
|
111
185
|
reducedMotion?: boolean;
|
|
112
186
|
highContrast?: boolean;
|
|
113
187
|
disableEffects?: boolean;
|
|
188
|
+
enableLiquidBlur?: boolean;
|
|
189
|
+
enableBorderEffect?: boolean;
|
|
190
|
+
enableOverLightLayers?: boolean;
|
|
114
191
|
/**
|
|
115
192
|
* Performance monitoring
|
|
116
193
|
*/
|
|
117
194
|
enablePerformanceMonitoring?: boolean;
|
|
195
|
+
/**
|
|
196
|
+
* Debug mode for cornerRadius extraction
|
|
197
|
+
*/
|
|
198
|
+
debugCornerRadius?: boolean;
|
|
199
|
+
/**
|
|
200
|
+
* Debug mode for overLight detection and configuration
|
|
201
|
+
*
|
|
202
|
+
* When enabled, logs detailed information about:
|
|
203
|
+
* - Auto-detection results (luminance values, threshold comparison)
|
|
204
|
+
* - Final overLight configuration values
|
|
205
|
+
* - Detection timing and performance
|
|
206
|
+
*
|
|
207
|
+
* Useful for debugging auto-detection issues and fine-tuning thresholds.
|
|
208
|
+
*
|
|
209
|
+
* @default false
|
|
210
|
+
*
|
|
211
|
+
* @example
|
|
212
|
+
* <AtomixGlass overLight="auto" debugOverLight={true}>
|
|
213
|
+
* Content
|
|
214
|
+
* </AtomixGlass>
|
|
215
|
+
*/
|
|
216
|
+
debugOverLight?: boolean;
|
|
118
217
|
}
|
|
119
218
|
/**
|
|
120
219
|
* Common component size options
|
|
@@ -148,6 +247,10 @@ interface BaseComponentProps {
|
|
|
148
247
|
* Component children
|
|
149
248
|
*/
|
|
150
249
|
children?: ReactNode;
|
|
250
|
+
/**
|
|
251
|
+
* Inline style for the component root element
|
|
252
|
+
*/
|
|
253
|
+
style?: React.CSSProperties;
|
|
151
254
|
}
|
|
152
255
|
/**
|
|
153
256
|
* CSS class state modifiers
|
|
@@ -238,6 +341,10 @@ interface ButtonProps extends BaseComponentProps {
|
|
|
238
341
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
239
342
|
*/
|
|
240
343
|
glass?: AtomixGlassProps | boolean;
|
|
344
|
+
/**
|
|
345
|
+
* Custom style for the button
|
|
346
|
+
*/
|
|
347
|
+
style?: React.CSSProperties;
|
|
241
348
|
}
|
|
242
349
|
/**
|
|
243
350
|
* Badge component properties
|
|
@@ -264,6 +371,10 @@ interface BadgeProps extends BaseComponentProps {
|
|
|
264
371
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
265
372
|
*/
|
|
266
373
|
glass?: AtomixGlassProps | boolean;
|
|
374
|
+
/**
|
|
375
|
+
* Custom style for the badge
|
|
376
|
+
*/
|
|
377
|
+
style?: React.CSSProperties;
|
|
267
378
|
}
|
|
268
379
|
/**
|
|
269
380
|
* Callout component properties
|
|
@@ -306,6 +417,10 @@ interface CalloutProps extends BaseComponentProps {
|
|
|
306
417
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
307
418
|
*/
|
|
308
419
|
glass?: AtomixGlassProps | boolean;
|
|
420
|
+
/**
|
|
421
|
+
* Custom style for the callout
|
|
422
|
+
*/
|
|
423
|
+
style?: React.CSSProperties;
|
|
309
424
|
}
|
|
310
425
|
/**
|
|
311
426
|
* Accordion component properties
|
|
@@ -1247,7 +1362,7 @@ interface InputProps extends BaseComponentProps {
|
|
|
1247
1362
|
/**
|
|
1248
1363
|
* Glass morphism effect
|
|
1249
1364
|
*/
|
|
1250
|
-
glass?: boolean | Omit<
|
|
1365
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
1251
1366
|
}
|
|
1252
1367
|
/**
|
|
1253
1368
|
* Select option
|
|
@@ -1535,7 +1650,7 @@ interface TextareaProps extends BaseComponentProps {
|
|
|
1535
1650
|
/**
|
|
1536
1651
|
* Glass morphism effect
|
|
1537
1652
|
*/
|
|
1538
|
-
glass?: boolean | Omit<
|
|
1653
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
1539
1654
|
}
|
|
1540
1655
|
/**
|
|
1541
1656
|
* Avatar size options
|
|
@@ -1578,6 +1693,10 @@ interface AvatarProps extends BaseComponentProps {
|
|
|
1578
1693
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1579
1694
|
*/
|
|
1580
1695
|
glass?: AtomixGlassProps | boolean;
|
|
1696
|
+
/**
|
|
1697
|
+
* Custom style for the avatar
|
|
1698
|
+
*/
|
|
1699
|
+
style?: React.CSSProperties;
|
|
1581
1700
|
}
|
|
1582
1701
|
/**
|
|
1583
1702
|
* Avatar Group component properties
|
|
@@ -1841,6 +1960,10 @@ interface PopoverProps {
|
|
|
1841
1960
|
* Additional CSS class for the popover
|
|
1842
1961
|
*/
|
|
1843
1962
|
className?: string;
|
|
1963
|
+
/**
|
|
1964
|
+
* Inline style for the popover
|
|
1965
|
+
*/
|
|
1966
|
+
style?: React.CSSProperties;
|
|
1844
1967
|
/**
|
|
1845
1968
|
* Delay before showing the popover (in milliseconds)
|
|
1846
1969
|
*/
|
|
@@ -2366,7 +2489,7 @@ interface CardProps extends BaseComponentProps {
|
|
|
2366
2489
|
* Applies a glass morphism effect to the card.
|
|
2367
2490
|
* Can be a boolean to enable with default settings, or an object with `AtomixGlassProps` to customize the effect.
|
|
2368
2491
|
*/
|
|
2369
|
-
glass?: boolean | Omit<
|
|
2492
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
2370
2493
|
cardAppearance?: boolean;
|
|
2371
2494
|
/**
|
|
2372
2495
|
* Card content (body)
|
|
@@ -2375,7 +2498,7 @@ interface CardProps extends BaseComponentProps {
|
|
|
2375
2498
|
/**
|
|
2376
2499
|
* Card styles
|
|
2377
2500
|
*/
|
|
2378
|
-
|
|
2501
|
+
style?: React.CSSProperties;
|
|
2379
2502
|
/**
|
|
2380
2503
|
* Card className
|
|
2381
2504
|
*/
|
|
@@ -4156,7 +4279,7 @@ interface CodeBlockProps extends BaseComponentProps {
|
|
|
4156
4279
|
/**
|
|
4157
4280
|
* Footer layout options
|
|
4158
4281
|
*/
|
|
4159
|
-
type FooterLayout = 'columns' | 'centered' | 'minimal' | 'stacked';
|
|
4282
|
+
type FooterLayout = 'columns' | 'centered' | 'minimal' | 'stacked' | 'flexible' | 'sidebar' | 'wide';
|
|
4160
4283
|
/**
|
|
4161
4284
|
* Social media platform types
|
|
4162
4285
|
*/
|
|
@@ -4266,6 +4389,10 @@ interface FooterProps extends BaseComponentProps {
|
|
|
4266
4389
|
* Footer sections content
|
|
4267
4390
|
*/
|
|
4268
4391
|
children?: ReactNode;
|
|
4392
|
+
/**
|
|
4393
|
+
* Whether footer should be glass
|
|
4394
|
+
*/
|
|
4395
|
+
glass?: boolean;
|
|
4269
4396
|
}
|
|
4270
4397
|
/**
|
|
4271
4398
|
* Footer section component properties
|
|
@@ -4287,6 +4414,10 @@ interface FooterSectionProps extends BaseComponentProps {
|
|
|
4287
4414
|
* Whether section is collapsed by default
|
|
4288
4415
|
*/
|
|
4289
4416
|
defaultCollapsed?: boolean;
|
|
4417
|
+
/**
|
|
4418
|
+
* Whether newsletter is shown in the footer
|
|
4419
|
+
*/
|
|
4420
|
+
showNewsletter?: boolean;
|
|
4290
4421
|
/**
|
|
4291
4422
|
* Section content
|
|
4292
4423
|
*/
|
|
@@ -4358,6 +4489,13 @@ interface FooterSocialLinkProps extends BaseComponentProps {
|
|
|
4358
4489
|
* Glass container displacement modes
|
|
4359
4490
|
*/
|
|
4360
4491
|
type GlassMode = 'standard' | 'polar' | 'prominent' | 'shader';
|
|
4492
|
+
/**
|
|
4493
|
+
* Glass component size dimensions
|
|
4494
|
+
*/
|
|
4495
|
+
interface GlassSize {
|
|
4496
|
+
width: number;
|
|
4497
|
+
height: number;
|
|
4498
|
+
}
|
|
4361
4499
|
/**
|
|
4362
4500
|
* Glass container size configuration
|
|
4363
4501
|
*/
|
|
@@ -4371,6 +4509,13 @@ interface GlassSize {
|
|
|
4371
4509
|
*/
|
|
4372
4510
|
height: number;
|
|
4373
4511
|
}
|
|
4512
|
+
/**
|
|
4513
|
+
* Mouse position coordinates
|
|
4514
|
+
*/
|
|
4515
|
+
interface MousePosition {
|
|
4516
|
+
x: number;
|
|
4517
|
+
y: number;
|
|
4518
|
+
}
|
|
4374
4519
|
/**
|
|
4375
4520
|
* Mouse position coordinates
|
|
4376
4521
|
*/
|
|
@@ -4598,6 +4743,10 @@ interface DatePickerProps {
|
|
|
4598
4743
|
* @default false
|
|
4599
4744
|
*/
|
|
4600
4745
|
glass?: boolean | AtomixGlassProps;
|
|
4746
|
+
/**
|
|
4747
|
+
* Custom style for the datepicker component
|
|
4748
|
+
*/
|
|
4749
|
+
style?: react__default.CSSProperties;
|
|
4601
4750
|
}
|
|
4602
4751
|
interface DatePickerRef {
|
|
4603
4752
|
/**
|
|
@@ -4618,128 +4767,465 @@ interface DatePickerRef {
|
|
|
4618
4767
|
focus: () => void;
|
|
4619
4768
|
}
|
|
4620
4769
|
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
type __lib_types_CheckboxProps = CheckboxProps;
|
|
4641
|
-
type __lib_types_CodeBlockProps = CodeBlockProps;
|
|
4642
|
-
type __lib_types_DataTableColumn = DataTableColumn;
|
|
4643
|
-
type __lib_types_DataTableProps = DataTableProps;
|
|
4644
|
-
type __lib_types_DropdownDividerProps = DropdownDividerProps;
|
|
4645
|
-
type __lib_types_DropdownHeaderProps = DropdownHeaderProps;
|
|
4646
|
-
type __lib_types_DropdownItemProps = DropdownItemProps;
|
|
4647
|
-
type __lib_types_DropdownPlacement = DropdownPlacement;
|
|
4648
|
-
type __lib_types_DropdownProps = DropdownProps;
|
|
4649
|
-
type __lib_types_DropdownTrigger = DropdownTrigger;
|
|
4650
|
-
type __lib_types_EdgePanelMode = EdgePanelMode;
|
|
4651
|
-
type __lib_types_EdgePanelPosition = EdgePanelPosition;
|
|
4652
|
-
type __lib_types_EdgePanelProps = EdgePanelProps;
|
|
4653
|
-
type __lib_types_ElementRefs = ElementRefs;
|
|
4654
|
-
type __lib_types_ElevationCardProps = ElevationCardProps;
|
|
4655
|
-
type __lib_types_FooterLayout = FooterLayout;
|
|
4656
|
-
type __lib_types_FooterLinkProps = FooterLinkProps;
|
|
4657
|
-
type __lib_types_FooterProps = FooterProps;
|
|
4658
|
-
type __lib_types_FooterSectionProps = FooterSectionProps;
|
|
4659
|
-
type __lib_types_FooterSocialLinkProps = FooterSocialLinkProps;
|
|
4660
|
-
type __lib_types_FormGroupProps = FormGroupProps;
|
|
4661
|
-
type __lib_types_FormProps = FormProps;
|
|
4662
|
-
type __lib_types_GlassContainerProps = GlassContainerProps;
|
|
4663
|
-
type __lib_types_GlassMode = GlassMode;
|
|
4664
|
-
type __lib_types_GlassSize = GlassSize;
|
|
4665
|
-
type __lib_types_HeroAlignment = HeroAlignment;
|
|
4666
|
-
type __lib_types_HeroProps = HeroProps;
|
|
4667
|
-
type __lib_types_IconPosition = IconPosition;
|
|
4668
|
-
type __lib_types_ImageType = ImageType;
|
|
4669
|
-
type __lib_types_InputProps = InputProps;
|
|
4670
|
-
type __lib_types_ListGroupProps = ListGroupProps;
|
|
4671
|
-
type __lib_types_ListProps = ListProps;
|
|
4672
|
-
type __lib_types_MegaMenuColumnProps = MegaMenuColumnProps;
|
|
4673
|
-
type __lib_types_MegaMenuLinkProps = MegaMenuLinkProps;
|
|
4674
|
-
type __lib_types_MegaMenuProps = MegaMenuProps;
|
|
4675
|
-
type __lib_types_MenuItemProps = MenuItemProps;
|
|
4676
|
-
type __lib_types_MenuProps = MenuProps;
|
|
4677
|
-
type __lib_types_MessageItem = MessageItem;
|
|
4678
|
-
type __lib_types_MessagesProps = MessagesProps;
|
|
4679
|
-
type __lib_types_ModalProps = ModalProps;
|
|
4680
|
-
type __lib_types_MousePosition = MousePosition;
|
|
4681
|
-
type __lib_types_NavAlignment = NavAlignment;
|
|
4682
|
-
type __lib_types_NavDropdownProps = NavDropdownProps;
|
|
4683
|
-
type __lib_types_NavItemProps = NavItemProps;
|
|
4684
|
-
type __lib_types_NavProps = NavProps;
|
|
4685
|
-
type __lib_types_NavVariant = NavVariant;
|
|
4686
|
-
type __lib_types_NavbarPosition = NavbarPosition;
|
|
4687
|
-
type __lib_types_NavbarProps = NavbarProps;
|
|
4688
|
-
type __lib_types_PaginationProps = PaginationProps;
|
|
4689
|
-
type __lib_types_PhotoViewerProps = PhotoViewerProps;
|
|
4690
|
-
type __lib_types_PopoverProps = PopoverProps;
|
|
4691
|
-
type __lib_types_PopoverTriggerProps = PopoverTriggerProps;
|
|
4692
|
-
type __lib_types_ProgressProps = ProgressProps;
|
|
4693
|
-
type __lib_types_RadioProps = RadioProps;
|
|
4694
|
-
type __lib_types_RatingProps = RatingProps;
|
|
4695
|
-
type __lib_types_SelectOption = SelectOption;
|
|
4696
|
-
type __lib_types_SelectProps = SelectProps;
|
|
4697
|
-
type __lib_types_SideMenuItemProps = SideMenuItemProps;
|
|
4698
|
-
type __lib_types_SideMenuListProps = SideMenuListProps;
|
|
4699
|
-
type __lib_types_SideMenuProps = SideMenuProps;
|
|
4700
|
-
type __lib_types_Size = Size;
|
|
4701
|
-
type __lib_types_SliderAutoplay = SliderAutoplay;
|
|
4702
|
-
type __lib_types_SliderBreakpoint = SliderBreakpoint;
|
|
4703
|
-
type __lib_types_SliderEffect = SliderEffect;
|
|
4704
|
-
type __lib_types_SliderLazy = SliderLazy;
|
|
4705
|
-
type __lib_types_SliderNavigation = SliderNavigation;
|
|
4706
|
-
type __lib_types_SliderPagination = SliderPagination;
|
|
4707
|
-
type __lib_types_SliderProps = SliderProps;
|
|
4708
|
-
type __lib_types_SliderRefs = SliderRefs;
|
|
4709
|
-
type __lib_types_SliderScrollbar = SliderScrollbar;
|
|
4710
|
-
type __lib_types_SliderSlide = SliderSlide;
|
|
4711
|
-
type __lib_types_SliderState = SliderState;
|
|
4712
|
-
type __lib_types_SliderThumbs = SliderThumbs;
|
|
4713
|
-
type __lib_types_SliderVirtual = SliderVirtual;
|
|
4714
|
-
type __lib_types_SliderZoom = SliderZoom;
|
|
4715
|
-
type __lib_types_SocialLink = SocialLink;
|
|
4716
|
-
type __lib_types_SocialPlatform = SocialPlatform;
|
|
4717
|
-
type __lib_types_SortConfig = SortConfig;
|
|
4718
|
-
type __lib_types_SpinnerProps = SpinnerProps;
|
|
4719
|
-
type __lib_types_StateModifier = StateModifier;
|
|
4720
|
-
type __lib_types_TextareaProps = TextareaProps;
|
|
4721
|
-
type __lib_types_ThemeColor = ThemeColor;
|
|
4722
|
-
type __lib_types_ThemeName = ThemeName;
|
|
4723
|
-
type __lib_types_TodoItem = TodoItem;
|
|
4724
|
-
type __lib_types_TodoProps = TodoProps;
|
|
4725
|
-
type __lib_types_UseCardOptions = UseCardOptions;
|
|
4726
|
-
type __lib_types_UseCardReturn = UseCardReturn;
|
|
4727
|
-
type __lib_types_Variant = Variant;
|
|
4728
|
-
type __lib_types_VideoChapter = VideoChapter;
|
|
4729
|
-
type __lib_types_VideoPlayerProps = VideoPlayerProps;
|
|
4730
|
-
type __lib_types_VideoQuality = VideoQuality;
|
|
4731
|
-
type __lib_types_VideoSubtitle = VideoSubtitle;
|
|
4732
|
-
type __lib_types_listvariant = listvariant;
|
|
4733
|
-
declare namespace __lib_types {
|
|
4734
|
-
export type { AccordionProps$1 as AccordionProps, __lib_types_AccordionState as AccordionState, __lib_types_AtomixGlassProps as AtomixGlassProps, __lib_types_AvatarGroupProps as AvatarGroupProps, __lib_types_AvatarProps as AvatarProps, __lib_types_AvatarSize as AvatarSize, __lib_types_BadgeProps as BadgeProps, __lib_types_BaseComponentProps as BaseComponentProps, __lib_types_BreadcrumbInstance as BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, __lib_types_ButtonProps as ButtonProps, __lib_types_CalloutProps as CalloutProps, __lib_types_CardProps as CardProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, __lib_types_CheckboxProps as CheckboxProps, __lib_types_CodeBlockProps as CodeBlockProps, __lib_types_DataTableColumn as DataTableColumn, __lib_types_DataTableProps as DataTableProps, __lib_types_DropdownDividerProps as DropdownDividerProps, __lib_types_DropdownHeaderProps as DropdownHeaderProps, __lib_types_DropdownItemProps as DropdownItemProps, __lib_types_DropdownPlacement as DropdownPlacement, __lib_types_DropdownProps as DropdownProps, __lib_types_DropdownTrigger as DropdownTrigger, __lib_types_EdgePanelMode as EdgePanelMode, __lib_types_EdgePanelPosition as EdgePanelPosition, __lib_types_EdgePanelProps as EdgePanelProps, __lib_types_ElementRefs as ElementRefs, __lib_types_ElevationCardProps as ElevationCardProps, __lib_types_FooterLayout as FooterLayout, __lib_types_FooterLinkProps as FooterLinkProps, __lib_types_FooterProps as FooterProps, __lib_types_FooterSectionProps as FooterSectionProps, __lib_types_FooterSocialLinkProps as FooterSocialLinkProps, __lib_types_FormGroupProps as FormGroupProps, __lib_types_FormProps as FormProps, __lib_types_GlassContainerProps as GlassContainerProps, __lib_types_GlassMode as GlassMode, __lib_types_GlassSize as GlassSize, __lib_types_HeroAlignment as HeroAlignment, __lib_types_HeroProps as HeroProps, __lib_types_IconPosition as IconPosition, __lib_types_ImageType as ImageType, __lib_types_InputProps as InputProps, __lib_types_ListGroupProps as ListGroupProps, __lib_types_ListProps as ListProps, __lib_types_MegaMenuColumnProps as MegaMenuColumnProps, __lib_types_MegaMenuLinkProps as MegaMenuLinkProps, __lib_types_MegaMenuProps as MegaMenuProps, __lib_types_MenuItemProps as MenuItemProps, __lib_types_MenuProps as MenuProps, __lib_types_MessageItem as MessageItem, __lib_types_MessagesProps as MessagesProps, __lib_types_ModalProps as ModalProps, __lib_types_MousePosition as MousePosition, __lib_types_NavAlignment as NavAlignment, __lib_types_NavDropdownProps as NavDropdownProps, __lib_types_NavItemProps as NavItemProps, __lib_types_NavProps as NavProps, __lib_types_NavVariant as NavVariant, __lib_types_NavbarPosition as NavbarPosition, __lib_types_NavbarProps as NavbarProps, __lib_types_PaginationProps as PaginationProps, __lib_types_PhotoViewerProps as PhotoViewerProps, __lib_types_PopoverProps as PopoverProps, __lib_types_PopoverTriggerProps as PopoverTriggerProps, __lib_types_ProgressProps as ProgressProps, __lib_types_RadioProps as RadioProps, __lib_types_RatingProps as RatingProps, __lib_types_SelectOption as SelectOption, __lib_types_SelectProps as SelectProps, __lib_types_SideMenuItemProps as SideMenuItemProps, __lib_types_SideMenuListProps as SideMenuListProps, __lib_types_SideMenuProps as SideMenuProps, __lib_types_Size as Size, __lib_types_SliderAutoplay as SliderAutoplay, __lib_types_SliderBreakpoint as SliderBreakpoint, __lib_types_SliderEffect as SliderEffect, __lib_types_SliderLazy as SliderLazy, __lib_types_SliderNavigation as SliderNavigation, __lib_types_SliderPagination as SliderPagination, __lib_types_SliderProps as SliderProps, __lib_types_SliderRefs as SliderRefs, __lib_types_SliderScrollbar as SliderScrollbar, __lib_types_SliderSlide as SliderSlide, __lib_types_SliderState as SliderState, __lib_types_SliderThumbs as SliderThumbs, __lib_types_SliderVirtual as SliderVirtual, __lib_types_SliderZoom as SliderZoom, __lib_types_SocialLink as SocialLink, __lib_types_SocialPlatform as SocialPlatform, __lib_types_SortConfig as SortConfig, __lib_types_SpinnerProps as SpinnerProps, __lib_types_StateModifier as StateModifier, __lib_types_TextareaProps as TextareaProps, __lib_types_ThemeColor as ThemeColor, __lib_types_ThemeName as ThemeName, __lib_types_TodoItem as TodoItem, __lib_types_TodoProps as TodoProps, __lib_types_UseCardOptions as UseCardOptions, __lib_types_UseCardReturn as UseCardReturn, __lib_types_Variant as Variant, __lib_types_VideoChapter as VideoChapter, __lib_types_VideoPlayerProps as VideoPlayerProps, __lib_types_VideoQuality as VideoQuality, __lib_types_VideoSubtitle as VideoSubtitle, __lib_types_listvariant as listvariant };
|
|
4770
|
+
/**
|
|
4771
|
+
* Chart scales interface
|
|
4772
|
+
*/
|
|
4773
|
+
interface ChartScales$1 {
|
|
4774
|
+
xScale: (index: number, dataLength?: number) => number;
|
|
4775
|
+
yScale: (value: number) => number;
|
|
4776
|
+
minValue: number;
|
|
4777
|
+
maxValue: number;
|
|
4778
|
+
valueRange: number;
|
|
4779
|
+
innerWidth: number;
|
|
4780
|
+
innerHeight: number;
|
|
4781
|
+
width: number;
|
|
4782
|
+
height: number;
|
|
4783
|
+
padding: {
|
|
4784
|
+
top: number;
|
|
4785
|
+
right: number;
|
|
4786
|
+
bottom: number;
|
|
4787
|
+
left: number;
|
|
4788
|
+
};
|
|
4735
4789
|
}
|
|
4736
4790
|
|
|
4737
4791
|
/**
|
|
4738
|
-
*
|
|
4792
|
+
* Chart types - comprehensive list
|
|
4739
4793
|
*/
|
|
4740
|
-
|
|
4794
|
+
type ChartType = 'line' | 'area' | 'bar' | 'horizontal-bar' | 'pie' | 'donut' | 'doughnut' | 'scatter' | 'radar' | 'bubble' | 'candlestick' | 'interactive' | 'advanced' | 'gauge' | 'funnel' | 'waterfall' | 'heatmap' | 'treemap' | 'realtime';
|
|
4741
4795
|
/**
|
|
4742
|
-
*
|
|
4796
|
+
* Chart data point interface
|
|
4797
|
+
*/
|
|
4798
|
+
interface ChartDataPoint {
|
|
4799
|
+
label: string;
|
|
4800
|
+
value: number;
|
|
4801
|
+
color?: string;
|
|
4802
|
+
metadata?: Record<string, any>;
|
|
4803
|
+
}
|
|
4804
|
+
/**
|
|
4805
|
+
* Scatter chart data point interface
|
|
4806
|
+
*/
|
|
4807
|
+
interface ScatterDataPoint extends ChartDataPoint {
|
|
4808
|
+
x: number;
|
|
4809
|
+
y: number;
|
|
4810
|
+
size?: number;
|
|
4811
|
+
}
|
|
4812
|
+
/**
|
|
4813
|
+
* Chart dataset interface
|
|
4814
|
+
*/
|
|
4815
|
+
interface ChartDataset {
|
|
4816
|
+
label: string;
|
|
4817
|
+
data: ChartDataPoint[];
|
|
4818
|
+
color?: string;
|
|
4819
|
+
visible?: boolean;
|
|
4820
|
+
}
|
|
4821
|
+
/**
|
|
4822
|
+
* Chart axis configuration
|
|
4823
|
+
*/
|
|
4824
|
+
interface ChartAxis {
|
|
4825
|
+
label?: string;
|
|
4826
|
+
showGrid?: boolean;
|
|
4827
|
+
showLabels?: boolean;
|
|
4828
|
+
min?: number;
|
|
4829
|
+
max?: number;
|
|
4830
|
+
formatter?: (value: number) => string;
|
|
4831
|
+
ticks?: number;
|
|
4832
|
+
}
|
|
4833
|
+
/**
|
|
4834
|
+
* Chart configuration
|
|
4835
|
+
*/
|
|
4836
|
+
interface ChartConfig {
|
|
4837
|
+
xAxis?: ChartAxis;
|
|
4838
|
+
yAxis?: ChartAxis;
|
|
4839
|
+
showLegend?: boolean;
|
|
4840
|
+
showTooltips?: boolean;
|
|
4841
|
+
animate?: boolean;
|
|
4842
|
+
animationDuration?: number;
|
|
4843
|
+
}
|
|
4844
|
+
/**
|
|
4845
|
+
* Extended chart size options
|
|
4846
|
+
*/
|
|
4847
|
+
type ChartSize = Size | 'xl' | 'full';
|
|
4848
|
+
/**
|
|
4849
|
+
* Comprehensive chart props interface
|
|
4850
|
+
*/
|
|
4851
|
+
interface ChartProps extends BaseComponentProps {
|
|
4852
|
+
/**
|
|
4853
|
+
* Chart type
|
|
4854
|
+
*/
|
|
4855
|
+
type?: ChartType;
|
|
4856
|
+
/**
|
|
4857
|
+
* Chart data (simplified)
|
|
4858
|
+
*/
|
|
4859
|
+
data?: ChartDataPoint[];
|
|
4860
|
+
/**
|
|
4861
|
+
* Chart datasets (advanced)
|
|
4862
|
+
*/
|
|
4863
|
+
datasets?: ChartDataset[];
|
|
4864
|
+
/**
|
|
4865
|
+
* Chart configuration
|
|
4866
|
+
*/
|
|
4867
|
+
config?: ChartConfig;
|
|
4868
|
+
/**
|
|
4869
|
+
* Chart size
|
|
4870
|
+
*/
|
|
4871
|
+
size?: ChartSize;
|
|
4872
|
+
/**
|
|
4873
|
+
* Chart variant
|
|
4874
|
+
*/
|
|
4875
|
+
variant?: Variant;
|
|
4876
|
+
/**
|
|
4877
|
+
* Glass morphism effect
|
|
4878
|
+
* When true, applies default glass effect. When an object, allows custom glass configuration.
|
|
4879
|
+
*/
|
|
4880
|
+
glass?: boolean | AtomixGlassProps;
|
|
4881
|
+
/**
|
|
4882
|
+
* Chart title
|
|
4883
|
+
*/
|
|
4884
|
+
title?: string;
|
|
4885
|
+
/**
|
|
4886
|
+
* Chart subtitle
|
|
4887
|
+
*/
|
|
4888
|
+
subtitle?: string;
|
|
4889
|
+
/**
|
|
4890
|
+
* Whether to show legend
|
|
4891
|
+
*/
|
|
4892
|
+
showLegend?: boolean;
|
|
4893
|
+
/**
|
|
4894
|
+
* Whether chart is interactive
|
|
4895
|
+
*/
|
|
4896
|
+
interactive?: boolean;
|
|
4897
|
+
/**
|
|
4898
|
+
* Loading state
|
|
4899
|
+
*/
|
|
4900
|
+
loading?: boolean;
|
|
4901
|
+
/**
|
|
4902
|
+
* Error message
|
|
4903
|
+
*/
|
|
4904
|
+
error?: string;
|
|
4905
|
+
/**
|
|
4906
|
+
* Fullscreen mode
|
|
4907
|
+
*/
|
|
4908
|
+
fullscreen?: boolean;
|
|
4909
|
+
/**
|
|
4910
|
+
* Show toolbar with actions
|
|
4911
|
+
*/
|
|
4912
|
+
showToolbar?: boolean;
|
|
4913
|
+
/**
|
|
4914
|
+
* Enable fullscreen functionality
|
|
4915
|
+
*/
|
|
4916
|
+
enableFullscreen?: boolean;
|
|
4917
|
+
/**
|
|
4918
|
+
* Enable export functionality
|
|
4919
|
+
*/
|
|
4920
|
+
enableExport?: boolean;
|
|
4921
|
+
/**
|
|
4922
|
+
* Enable refresh functionality
|
|
4923
|
+
*/
|
|
4924
|
+
enableRefresh?: boolean;
|
|
4925
|
+
/**
|
|
4926
|
+
* Available export formats
|
|
4927
|
+
*/
|
|
4928
|
+
exportFormats?: ('png' | 'svg' | 'csv' | 'json')[];
|
|
4929
|
+
/**
|
|
4930
|
+
* Data point click handler
|
|
4931
|
+
*/
|
|
4932
|
+
onDataPointClick?: (dataPoint: ChartDataPoint, datasetIndex: number, pointIndex: number) => void;
|
|
4933
|
+
/**
|
|
4934
|
+
* Legend item click handler
|
|
4935
|
+
*/
|
|
4936
|
+
onLegendItemClick?: (datasetIndex: number, visible: boolean) => void;
|
|
4937
|
+
/**
|
|
4938
|
+
* Fullscreen state change handler
|
|
4939
|
+
*/
|
|
4940
|
+
onFullscreen?: (isFullscreen: boolean) => void;
|
|
4941
|
+
/**
|
|
4942
|
+
* Export handler
|
|
4943
|
+
*/
|
|
4944
|
+
onExport?: (format: string) => Promise<void> | void;
|
|
4945
|
+
/**
|
|
4946
|
+
* Refresh handler
|
|
4947
|
+
*/
|
|
4948
|
+
onRefresh?: () => void;
|
|
4949
|
+
/**
|
|
4950
|
+
* Chart content for wrapper usage
|
|
4951
|
+
*/
|
|
4952
|
+
children?: ReactNode;
|
|
4953
|
+
/**
|
|
4954
|
+
* Accessibility label
|
|
4955
|
+
*/
|
|
4956
|
+
'aria-label'?: string;
|
|
4957
|
+
/**
|
|
4958
|
+
* Toolbar configuration
|
|
4959
|
+
*/
|
|
4960
|
+
toolbarConfig?: {
|
|
4961
|
+
enableDefaults?: boolean;
|
|
4962
|
+
defaults?: {
|
|
4963
|
+
refresh?: boolean;
|
|
4964
|
+
export?: boolean;
|
|
4965
|
+
fullscreen?: boolean;
|
|
4966
|
+
settings?: boolean;
|
|
4967
|
+
zoom?: boolean;
|
|
4968
|
+
pan?: boolean;
|
|
4969
|
+
reset?: boolean;
|
|
4970
|
+
grid?: boolean;
|
|
4971
|
+
legend?: boolean;
|
|
4972
|
+
tooltips?: boolean;
|
|
4973
|
+
animations?: boolean;
|
|
4974
|
+
};
|
|
4975
|
+
handlers?: {
|
|
4976
|
+
onRefresh?: () => void;
|
|
4977
|
+
onExport?: (format: string) => Promise<void> | void;
|
|
4978
|
+
onFullscreen?: (isFullscreen: boolean) => void;
|
|
4979
|
+
onZoomIn?: () => void;
|
|
4980
|
+
onZoomOut?: () => void;
|
|
4981
|
+
onZoomReset?: () => void;
|
|
4982
|
+
onPanToggle?: (enabled: boolean) => void;
|
|
4983
|
+
onReset?: () => void;
|
|
4984
|
+
onGridToggle?: (show: boolean) => void;
|
|
4985
|
+
onLegendToggle?: (show: boolean) => void;
|
|
4986
|
+
onTooltipsToggle?: (show: boolean) => void;
|
|
4987
|
+
onAnimationsToggle?: (enabled: boolean) => void;
|
|
4988
|
+
};
|
|
4989
|
+
};
|
|
4990
|
+
/**
|
|
4991
|
+
* Custom toolbar actions
|
|
4992
|
+
*/
|
|
4993
|
+
customToolbarActions?: Array<{
|
|
4994
|
+
id: string;
|
|
4995
|
+
label: string;
|
|
4996
|
+
icon: string;
|
|
4997
|
+
onClick: () => void;
|
|
4998
|
+
disabled?: boolean;
|
|
4999
|
+
active?: boolean;
|
|
5000
|
+
variant?: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error';
|
|
5001
|
+
tooltip?: string;
|
|
5002
|
+
}>;
|
|
5003
|
+
/**
|
|
5004
|
+
* Custom toolbar groups
|
|
5005
|
+
*/
|
|
5006
|
+
customToolbarGroups?: Array<{
|
|
5007
|
+
id: string;
|
|
5008
|
+
label?: string;
|
|
5009
|
+
actions: Array<{
|
|
5010
|
+
id: string;
|
|
5011
|
+
label: string;
|
|
5012
|
+
icon: string;
|
|
5013
|
+
onClick: () => void;
|
|
5014
|
+
disabled?: boolean;
|
|
5015
|
+
active?: boolean;
|
|
5016
|
+
variant?: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error';
|
|
5017
|
+
tooltip?: string;
|
|
5018
|
+
}>;
|
|
5019
|
+
separator?: boolean;
|
|
5020
|
+
}>;
|
|
5021
|
+
}
|
|
5022
|
+
|
|
5023
|
+
/**
|
|
5024
|
+
* Chart interaction state
|
|
5025
|
+
*/
|
|
5026
|
+
interface ChartInteraction {
|
|
5027
|
+
hoveredIndex: number | null;
|
|
5028
|
+
selectedIndex: number | null;
|
|
5029
|
+
}
|
|
5030
|
+
/**
|
|
5031
|
+
* Chart hovered point state
|
|
5032
|
+
*/
|
|
5033
|
+
interface ChartHoveredPoint {
|
|
5034
|
+
datasetIndex: number;
|
|
5035
|
+
pointIndex: number;
|
|
5036
|
+
x: number;
|
|
5037
|
+
y: number;
|
|
5038
|
+
clientX: number;
|
|
5039
|
+
clientY: number;
|
|
5040
|
+
}
|
|
5041
|
+
/**
|
|
5042
|
+
* Chart event handlers interface
|
|
5043
|
+
*/
|
|
5044
|
+
interface ChartHandlers {
|
|
5045
|
+
onDataPointClick?: (dataPoint: ChartDataPoint, datasetIndex: number, pointIndex: number) => void;
|
|
5046
|
+
onPointHover: (datasetIndex: number, pointIndex: number, x: number, y: number, clientX: number, clientY: number) => void;
|
|
5047
|
+
onPointLeave: () => void;
|
|
5048
|
+
onMouseMove: (event: react__default.MouseEvent<SVGSVGElement>) => void;
|
|
5049
|
+
onMouseDown: (event: react__default.MouseEvent<SVGSVGElement>) => void;
|
|
5050
|
+
onMouseUp: () => void;
|
|
5051
|
+
onWheel: (event: react__default.WheelEvent<SVGSVGElement>) => void;
|
|
5052
|
+
}
|
|
5053
|
+
/**
|
|
5054
|
+
* Chart accessibility interface
|
|
5055
|
+
*/
|
|
5056
|
+
interface ChartAccessibility {
|
|
5057
|
+
announcement: string;
|
|
5058
|
+
focusedPoint: {
|
|
5059
|
+
datasetIndex: number;
|
|
5060
|
+
pointIndex: number;
|
|
5061
|
+
};
|
|
5062
|
+
getAccessibleDescription: () => string;
|
|
5063
|
+
}
|
|
5064
|
+
/**
|
|
5065
|
+
* Chart toolbar state
|
|
5066
|
+
*/
|
|
5067
|
+
interface ChartToolbarState {
|
|
5068
|
+
showTooltips?: boolean;
|
|
5069
|
+
showLegend?: boolean;
|
|
5070
|
+
animationsEnabled?: boolean;
|
|
5071
|
+
showGrid?: boolean;
|
|
5072
|
+
}
|
|
5073
|
+
/**
|
|
5074
|
+
* Chart render content parameters
|
|
5075
|
+
*/
|
|
5076
|
+
interface ChartRenderContentParams {
|
|
5077
|
+
scales: ChartScales;
|
|
5078
|
+
colors: string[];
|
|
5079
|
+
datasets: ChartDataset[];
|
|
5080
|
+
interactionState?: ChartInteraction;
|
|
5081
|
+
handlers: ChartHandlers;
|
|
5082
|
+
accessibility: ChartAccessibility;
|
|
5083
|
+
hoveredPoint: ChartHoveredPoint | null;
|
|
5084
|
+
toolbarState?: ChartToolbarState;
|
|
5085
|
+
config?: ChartConfig;
|
|
5086
|
+
}
|
|
5087
|
+
|
|
5088
|
+
interface AnimatedChartProps extends Omit<ChartProps, 'type'> {
|
|
5089
|
+
chartType?: 'line' | 'bar' | 'area';
|
|
5090
|
+
animationConfig?: {
|
|
5091
|
+
duration?: number;
|
|
5092
|
+
easing?: 'ease-out' | 'bounce';
|
|
5093
|
+
};
|
|
5094
|
+
particleEffects?: {
|
|
5095
|
+
enabled: boolean;
|
|
5096
|
+
count: number;
|
|
5097
|
+
colors: string[];
|
|
5098
|
+
speed: number;
|
|
5099
|
+
size: number;
|
|
5100
|
+
};
|
|
5101
|
+
}
|
|
5102
|
+
declare const AnimatedChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AnimatedChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
5103
|
+
|
|
5104
|
+
type ButtonAsProp = {
|
|
5105
|
+
as?: ElementType;
|
|
5106
|
+
to?: string;
|
|
5107
|
+
href?: string;
|
|
5108
|
+
[key: string]: any;
|
|
5109
|
+
};
|
|
5110
|
+
declare const Button: react.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
5111
|
+
|
|
5112
|
+
type __lib_types_AccordionState = AccordionState;
|
|
5113
|
+
type __lib_types_AtomixGlassProps = AtomixGlassProps;
|
|
5114
|
+
type __lib_types_AvatarGroupProps = AvatarGroupProps;
|
|
5115
|
+
type __lib_types_AvatarProps = AvatarProps;
|
|
5116
|
+
type __lib_types_AvatarSize = AvatarSize;
|
|
5117
|
+
type __lib_types_BadgeProps = BadgeProps;
|
|
5118
|
+
type __lib_types_BaseComponentProps = BaseComponentProps;
|
|
5119
|
+
type __lib_types_BreadcrumbInstance = BreadcrumbInstance;
|
|
5120
|
+
type __lib_types_ButtonProps = ButtonProps;
|
|
5121
|
+
type __lib_types_CalloutProps = CalloutProps;
|
|
5122
|
+
type __lib_types_CardProps = CardProps;
|
|
5123
|
+
type __lib_types_CheckboxProps = CheckboxProps;
|
|
5124
|
+
type __lib_types_CodeBlockProps = CodeBlockProps;
|
|
5125
|
+
type __lib_types_DataTableColumn = DataTableColumn;
|
|
5126
|
+
type __lib_types_DataTableProps = DataTableProps;
|
|
5127
|
+
type __lib_types_DisplacementMode = DisplacementMode;
|
|
5128
|
+
type __lib_types_DropdownDividerProps = DropdownDividerProps;
|
|
5129
|
+
type __lib_types_DropdownHeaderProps = DropdownHeaderProps;
|
|
5130
|
+
type __lib_types_DropdownItemProps = DropdownItemProps;
|
|
5131
|
+
type __lib_types_DropdownPlacement = DropdownPlacement;
|
|
5132
|
+
type __lib_types_DropdownProps = DropdownProps;
|
|
5133
|
+
type __lib_types_DropdownTrigger = DropdownTrigger;
|
|
5134
|
+
type __lib_types_EdgePanelMode = EdgePanelMode;
|
|
5135
|
+
type __lib_types_EdgePanelPosition = EdgePanelPosition;
|
|
5136
|
+
type __lib_types_EdgePanelProps = EdgePanelProps;
|
|
5137
|
+
type __lib_types_ElementRefs = ElementRefs;
|
|
5138
|
+
type __lib_types_ElevationCardProps = ElevationCardProps;
|
|
5139
|
+
type __lib_types_FooterLayout = FooterLayout;
|
|
5140
|
+
type __lib_types_FooterLinkProps = FooterLinkProps;
|
|
5141
|
+
type __lib_types_FooterProps = FooterProps;
|
|
5142
|
+
type __lib_types_FooterSectionProps = FooterSectionProps;
|
|
5143
|
+
type __lib_types_FooterSocialLinkProps = FooterSocialLinkProps;
|
|
5144
|
+
type __lib_types_FormGroupProps = FormGroupProps;
|
|
5145
|
+
type __lib_types_FormProps = FormProps;
|
|
5146
|
+
type __lib_types_GlassContainerProps = GlassContainerProps;
|
|
5147
|
+
type __lib_types_GlassMode = GlassMode;
|
|
5148
|
+
type __lib_types_GlassSize = GlassSize;
|
|
5149
|
+
type __lib_types_HeroAlignment = HeroAlignment;
|
|
5150
|
+
type __lib_types_HeroProps = HeroProps;
|
|
5151
|
+
type __lib_types_IconPosition = IconPosition;
|
|
5152
|
+
type __lib_types_ImageType = ImageType;
|
|
5153
|
+
type __lib_types_InputProps = InputProps;
|
|
5154
|
+
type __lib_types_ListGroupProps = ListGroupProps;
|
|
5155
|
+
type __lib_types_ListProps = ListProps;
|
|
5156
|
+
type __lib_types_MegaMenuColumnProps = MegaMenuColumnProps;
|
|
5157
|
+
type __lib_types_MegaMenuLinkProps = MegaMenuLinkProps;
|
|
5158
|
+
type __lib_types_MegaMenuProps = MegaMenuProps;
|
|
5159
|
+
type __lib_types_MenuItemProps = MenuItemProps;
|
|
5160
|
+
type __lib_types_MenuProps = MenuProps;
|
|
5161
|
+
type __lib_types_MessageItem = MessageItem;
|
|
5162
|
+
type __lib_types_MessagesProps = MessagesProps;
|
|
5163
|
+
type __lib_types_ModalProps = ModalProps;
|
|
5164
|
+
type __lib_types_MousePosition = MousePosition;
|
|
5165
|
+
type __lib_types_NavAlignment = NavAlignment;
|
|
5166
|
+
type __lib_types_NavDropdownProps = NavDropdownProps;
|
|
5167
|
+
type __lib_types_NavItemProps = NavItemProps;
|
|
5168
|
+
type __lib_types_NavProps = NavProps;
|
|
5169
|
+
type __lib_types_NavVariant = NavVariant;
|
|
5170
|
+
type __lib_types_NavbarPosition = NavbarPosition;
|
|
5171
|
+
type __lib_types_NavbarProps = NavbarProps;
|
|
5172
|
+
type __lib_types_OverLightConfig = OverLightConfig;
|
|
5173
|
+
type __lib_types_OverLightObjectConfig = OverLightObjectConfig;
|
|
5174
|
+
type __lib_types_PaginationProps = PaginationProps;
|
|
5175
|
+
type __lib_types_PhotoViewerProps = PhotoViewerProps;
|
|
5176
|
+
type __lib_types_PopoverProps = PopoverProps;
|
|
5177
|
+
type __lib_types_PopoverTriggerProps = PopoverTriggerProps;
|
|
5178
|
+
type __lib_types_ProgressProps = ProgressProps;
|
|
5179
|
+
type __lib_types_RadioProps = RadioProps;
|
|
5180
|
+
type __lib_types_RatingProps = RatingProps;
|
|
5181
|
+
type __lib_types_SelectOption = SelectOption;
|
|
5182
|
+
type __lib_types_SelectProps = SelectProps;
|
|
5183
|
+
type __lib_types_SideMenuItemProps = SideMenuItemProps;
|
|
5184
|
+
type __lib_types_SideMenuListProps = SideMenuListProps;
|
|
5185
|
+
type __lib_types_SideMenuProps = SideMenuProps;
|
|
5186
|
+
type __lib_types_Size = Size;
|
|
5187
|
+
type __lib_types_SliderAutoplay = SliderAutoplay;
|
|
5188
|
+
type __lib_types_SliderBreakpoint = SliderBreakpoint;
|
|
5189
|
+
type __lib_types_SliderEffect = SliderEffect;
|
|
5190
|
+
type __lib_types_SliderLazy = SliderLazy;
|
|
5191
|
+
type __lib_types_SliderNavigation = SliderNavigation;
|
|
5192
|
+
type __lib_types_SliderPagination = SliderPagination;
|
|
5193
|
+
type __lib_types_SliderProps = SliderProps;
|
|
5194
|
+
type __lib_types_SliderRefs = SliderRefs;
|
|
5195
|
+
type __lib_types_SliderScrollbar = SliderScrollbar;
|
|
5196
|
+
type __lib_types_SliderSlide = SliderSlide;
|
|
5197
|
+
type __lib_types_SliderState = SliderState;
|
|
5198
|
+
type __lib_types_SliderThumbs = SliderThumbs;
|
|
5199
|
+
type __lib_types_SliderVirtual = SliderVirtual;
|
|
5200
|
+
type __lib_types_SliderZoom = SliderZoom;
|
|
5201
|
+
type __lib_types_SocialLink = SocialLink;
|
|
5202
|
+
type __lib_types_SocialPlatform = SocialPlatform;
|
|
5203
|
+
type __lib_types_SortConfig = SortConfig;
|
|
5204
|
+
type __lib_types_SpinnerProps = SpinnerProps;
|
|
5205
|
+
type __lib_types_StateModifier = StateModifier;
|
|
5206
|
+
type __lib_types_TextareaProps = TextareaProps;
|
|
5207
|
+
type __lib_types_ThemeColor = ThemeColor;
|
|
5208
|
+
type __lib_types_ThemeName = ThemeName;
|
|
5209
|
+
type __lib_types_TodoItem = TodoItem;
|
|
5210
|
+
type __lib_types_TodoProps = TodoProps;
|
|
5211
|
+
type __lib_types_UseCardOptions = UseCardOptions;
|
|
5212
|
+
type __lib_types_UseCardReturn = UseCardReturn;
|
|
5213
|
+
type __lib_types_Variant = Variant;
|
|
5214
|
+
type __lib_types_VideoChapter = VideoChapter;
|
|
5215
|
+
type __lib_types_VideoPlayerProps = VideoPlayerProps;
|
|
5216
|
+
type __lib_types_VideoQuality = VideoQuality;
|
|
5217
|
+
type __lib_types_VideoSubtitle = VideoSubtitle;
|
|
5218
|
+
type __lib_types_listvariant = listvariant;
|
|
5219
|
+
declare namespace __lib_types {
|
|
5220
|
+
export type { AccordionProps$1 as AccordionProps, __lib_types_AccordionState as AccordionState, __lib_types_AtomixGlassProps as AtomixGlassProps, __lib_types_AvatarGroupProps as AvatarGroupProps, __lib_types_AvatarProps as AvatarProps, __lib_types_AvatarSize as AvatarSize, __lib_types_BadgeProps as BadgeProps, __lib_types_BaseComponentProps as BaseComponentProps, __lib_types_BreadcrumbInstance as BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, __lib_types_ButtonProps as ButtonProps, __lib_types_CalloutProps as CalloutProps, __lib_types_CardProps as CardProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, __lib_types_CheckboxProps as CheckboxProps, __lib_types_CodeBlockProps as CodeBlockProps, __lib_types_DataTableColumn as DataTableColumn, __lib_types_DataTableProps as DataTableProps, __lib_types_DisplacementMode as DisplacementMode, __lib_types_DropdownDividerProps as DropdownDividerProps, __lib_types_DropdownHeaderProps as DropdownHeaderProps, __lib_types_DropdownItemProps as DropdownItemProps, __lib_types_DropdownPlacement as DropdownPlacement, __lib_types_DropdownProps as DropdownProps, __lib_types_DropdownTrigger as DropdownTrigger, __lib_types_EdgePanelMode as EdgePanelMode, __lib_types_EdgePanelPosition as EdgePanelPosition, __lib_types_EdgePanelProps as EdgePanelProps, __lib_types_ElementRefs as ElementRefs, __lib_types_ElevationCardProps as ElevationCardProps, __lib_types_FooterLayout as FooterLayout, __lib_types_FooterLinkProps as FooterLinkProps, __lib_types_FooterProps as FooterProps, __lib_types_FooterSectionProps as FooterSectionProps, __lib_types_FooterSocialLinkProps as FooterSocialLinkProps, __lib_types_FormGroupProps as FormGroupProps, __lib_types_FormProps as FormProps, __lib_types_GlassContainerProps as GlassContainerProps, __lib_types_GlassMode as GlassMode, __lib_types_GlassSize as GlassSize, __lib_types_HeroAlignment as HeroAlignment, __lib_types_HeroProps as HeroProps, __lib_types_IconPosition as IconPosition, __lib_types_ImageType as ImageType, __lib_types_InputProps as InputProps, __lib_types_ListGroupProps as ListGroupProps, __lib_types_ListProps as ListProps, __lib_types_MegaMenuColumnProps as MegaMenuColumnProps, __lib_types_MegaMenuLinkProps as MegaMenuLinkProps, __lib_types_MegaMenuProps as MegaMenuProps, __lib_types_MenuItemProps as MenuItemProps, __lib_types_MenuProps as MenuProps, __lib_types_MessageItem as MessageItem, __lib_types_MessagesProps as MessagesProps, __lib_types_ModalProps as ModalProps, __lib_types_MousePosition as MousePosition, __lib_types_NavAlignment as NavAlignment, __lib_types_NavDropdownProps as NavDropdownProps, __lib_types_NavItemProps as NavItemProps, __lib_types_NavProps as NavProps, __lib_types_NavVariant as NavVariant, __lib_types_NavbarPosition as NavbarPosition, __lib_types_NavbarProps as NavbarProps, __lib_types_OverLightConfig as OverLightConfig, __lib_types_OverLightObjectConfig as OverLightObjectConfig, __lib_types_PaginationProps as PaginationProps, __lib_types_PhotoViewerProps as PhotoViewerProps, __lib_types_PopoverProps as PopoverProps, __lib_types_PopoverTriggerProps as PopoverTriggerProps, __lib_types_ProgressProps as ProgressProps, __lib_types_RadioProps as RadioProps, __lib_types_RatingProps as RatingProps, __lib_types_SelectOption as SelectOption, __lib_types_SelectProps as SelectProps, __lib_types_SideMenuItemProps as SideMenuItemProps, __lib_types_SideMenuListProps as SideMenuListProps, __lib_types_SideMenuProps as SideMenuProps, __lib_types_Size as Size, __lib_types_SliderAutoplay as SliderAutoplay, __lib_types_SliderBreakpoint as SliderBreakpoint, __lib_types_SliderEffect as SliderEffect, __lib_types_SliderLazy as SliderLazy, __lib_types_SliderNavigation as SliderNavigation, __lib_types_SliderPagination as SliderPagination, __lib_types_SliderProps as SliderProps, __lib_types_SliderRefs as SliderRefs, __lib_types_SliderScrollbar as SliderScrollbar, __lib_types_SliderSlide as SliderSlide, __lib_types_SliderState as SliderState, __lib_types_SliderThumbs as SliderThumbs, __lib_types_SliderVirtual as SliderVirtual, __lib_types_SliderZoom as SliderZoom, __lib_types_SocialLink as SocialLink, __lib_types_SocialPlatform as SocialPlatform, __lib_types_SortConfig as SortConfig, __lib_types_SpinnerProps as SpinnerProps, __lib_types_StateModifier as StateModifier, __lib_types_TextareaProps as TextareaProps, __lib_types_ThemeColor as ThemeColor, __lib_types_ThemeName as ThemeName, __lib_types_TodoItem as TodoItem, __lib_types_TodoProps as TodoProps, __lib_types_UseCardOptions as UseCardOptions, __lib_types_UseCardReturn as UseCardReturn, __lib_types_Variant as Variant, __lib_types_VideoChapter as VideoChapter, __lib_types_VideoPlayerProps as VideoPlayerProps, __lib_types_VideoQuality as VideoQuality, __lib_types_VideoSubtitle as VideoSubtitle, __lib_types_listvariant as listvariant };
|
|
5221
|
+
}
|
|
5222
|
+
|
|
5223
|
+
/**
|
|
5224
|
+
* Default theme colors for components
|
|
5225
|
+
*/
|
|
5226
|
+
declare const THEME_COLORS: ThemeColor[];
|
|
5227
|
+
/**
|
|
5228
|
+
* Default sizes for components
|
|
4743
5229
|
*/
|
|
4744
5230
|
declare const SIZES: Size[];
|
|
4745
5231
|
/**
|
|
@@ -6238,6 +6724,9 @@ declare const FOOTER: {
|
|
|
6238
6724
|
CENTERED: string;
|
|
6239
6725
|
MINIMAL: string;
|
|
6240
6726
|
STACKED: string;
|
|
6727
|
+
FLEXIBLE: string;
|
|
6728
|
+
SIDEBAR: string;
|
|
6729
|
+
WIDE: string;
|
|
6241
6730
|
SM: string;
|
|
6242
6731
|
MD: string;
|
|
6243
6732
|
LG: string;
|
|
@@ -6263,34 +6752,35 @@ declare const FOOTER: {
|
|
|
6263
6752
|
*/
|
|
6264
6753
|
declare const ATOMIX_GLASS: {
|
|
6265
6754
|
BASE_CLASS: string;
|
|
6266
|
-
|
|
6755
|
+
CONTAINER_CLASS: string;
|
|
6756
|
+
INNER_CLASS: string;
|
|
6757
|
+
FILTER_CLASS: string;
|
|
6758
|
+
FILTER_OVERLAY_CLASS: string;
|
|
6759
|
+
FILTER_SHADOW_CLASS: string;
|
|
6267
6760
|
CONTENT_CLASS: string;
|
|
6268
|
-
|
|
6269
|
-
|
|
6270
|
-
|
|
6271
|
-
|
|
6272
|
-
|
|
6761
|
+
BORDER_1_CLASS: string;
|
|
6762
|
+
BORDER_2_CLASS: string;
|
|
6763
|
+
HOVER_1_CLASS: string;
|
|
6764
|
+
HOVER_2_CLASS: string;
|
|
6765
|
+
HOVER_3_CLASS: string;
|
|
6766
|
+
BASE_LAYER_CLASS: string;
|
|
6767
|
+
OVERLAY_LAYER_CLASS: string;
|
|
6768
|
+
OVERLAY_HIGHLIGHT_CLASS: string;
|
|
6769
|
+
BACKGROUND_LAYER_CLASS: string;
|
|
6770
|
+
BACKGROUND_LAYER_DARK_CLASS: string;
|
|
6771
|
+
BACKGROUND_LAYER_BLACK_CLASS: string;
|
|
6772
|
+
BACKGROUND_LAYER_OVER_LIGHT_CLASS: string;
|
|
6773
|
+
BACKGROUND_LAYER_HIDDEN_CLASS: string;
|
|
6273
6774
|
VARIANT_PREFIX: string;
|
|
6274
6775
|
MODE_PREFIX: string;
|
|
6275
6776
|
CLASSES: {
|
|
6276
6777
|
BASE: string;
|
|
6277
|
-
|
|
6778
|
+
CONTAINER: string;
|
|
6779
|
+
INNER: string;
|
|
6780
|
+
FILTER: string;
|
|
6278
6781
|
CONTENT: string;
|
|
6279
|
-
BORDER: string;
|
|
6280
|
-
BORDER_OVERLAY: string;
|
|
6281
|
-
OVER_LIGHT: string;
|
|
6282
|
-
OVER_LIGHT_ACTIVE: string;
|
|
6283
|
-
OVER_LIGHT_OVERLAY: string;
|
|
6284
|
-
OVER_LIGHT_OVERLAY_ACTIVE: string;
|
|
6285
|
-
HOVER_EFFECT: string;
|
|
6286
|
-
HOVER_EFFECT_ACTIVE: string;
|
|
6287
|
-
ACTIVE_EFFECT: string;
|
|
6288
|
-
ACTIVE_EFFECT_ACTIVE: string;
|
|
6289
|
-
GLOW_EFFECT: string;
|
|
6290
|
-
GLOW_EFFECT_HOVER: string;
|
|
6291
|
-
GLOW_EFFECT_ACTIVE: string;
|
|
6292
|
-
CLICKABLE: string;
|
|
6293
6782
|
ACTIVE: string;
|
|
6783
|
+
OVER_LIGHT: string;
|
|
6294
6784
|
STANDARD: string;
|
|
6295
6785
|
POLAR: string;
|
|
6296
6786
|
PROMINENT: string;
|
|
@@ -6304,9 +6794,107 @@ declare const ATOMIX_GLASS: {
|
|
|
6304
6794
|
ELASTICITY: number;
|
|
6305
6795
|
CORNER_RADIUS: number;
|
|
6306
6796
|
PADDING: string;
|
|
6307
|
-
MODE:
|
|
6308
|
-
OVER_LIGHT:
|
|
6309
|
-
|
|
6797
|
+
MODE: "standard";
|
|
6798
|
+
OVER_LIGHT: false;
|
|
6799
|
+
ENABLE_OVER_LIGHT_LAYERS: boolean;
|
|
6800
|
+
};
|
|
6801
|
+
CONSTANTS: {
|
|
6802
|
+
ACTIVATION_ZONE: number;
|
|
6803
|
+
MIN_BLUR: number;
|
|
6804
|
+
MOUSE_INFLUENCE_DIVISOR: number;
|
|
6805
|
+
EDGE_FADE_PIXELS: number;
|
|
6806
|
+
DEFAULT_CORNER_RADIUS: number;
|
|
6807
|
+
MAX_SIZE: number;
|
|
6808
|
+
GRADIENT: {
|
|
6809
|
+
BASE_ANGLE: number;
|
|
6810
|
+
ANGLE_MULTIPLIER: number;
|
|
6811
|
+
BORDER_STOP_1: {
|
|
6812
|
+
MIN: number;
|
|
6813
|
+
BASE: number;
|
|
6814
|
+
MULTIPLIER: number;
|
|
6815
|
+
};
|
|
6816
|
+
BORDER_STOP_2: {
|
|
6817
|
+
MAX: number;
|
|
6818
|
+
BASE: number;
|
|
6819
|
+
MULTIPLIER: number;
|
|
6820
|
+
};
|
|
6821
|
+
BORDER_OPACITY: {
|
|
6822
|
+
BASE_1: number;
|
|
6823
|
+
BASE_2: number;
|
|
6824
|
+
BASE_3: number;
|
|
6825
|
+
BASE_4: number;
|
|
6826
|
+
MULTIPLIER_LOW: number;
|
|
6827
|
+
MULTIPLIER_HIGH: number;
|
|
6828
|
+
};
|
|
6829
|
+
CENTER_POSITION: number;
|
|
6830
|
+
HOVER_POSITION: {
|
|
6831
|
+
DIVISOR_1: number;
|
|
6832
|
+
DIVISOR_2: number;
|
|
6833
|
+
MULTIPLIER_3: number;
|
|
6834
|
+
};
|
|
6835
|
+
BASE_LAYER_MULTIPLIER: number;
|
|
6836
|
+
};
|
|
6837
|
+
GRADIENT_OPACITY: {
|
|
6838
|
+
HOVER_1: {
|
|
6839
|
+
BLACK_START: number;
|
|
6840
|
+
BLACK_MID: number;
|
|
6841
|
+
BLACK_STOP: number;
|
|
6842
|
+
BLACK_END: number;
|
|
6843
|
+
WHITE_START: number;
|
|
6844
|
+
WHITE_STOP: number;
|
|
6845
|
+
};
|
|
6846
|
+
HOVER_2: {
|
|
6847
|
+
BLACK_START: number;
|
|
6848
|
+
BLACK_MID: number;
|
|
6849
|
+
BLACK_STOP: number;
|
|
6850
|
+
BLACK_END: number;
|
|
6851
|
+
WHITE_START: number;
|
|
6852
|
+
WHITE_STOP: number;
|
|
6853
|
+
};
|
|
6854
|
+
HOVER_3: {
|
|
6855
|
+
BLACK_START: number;
|
|
6856
|
+
BLACK_MID: number;
|
|
6857
|
+
BLACK_STOP: number;
|
|
6858
|
+
BLACK_END: number;
|
|
6859
|
+
WHITE_START: number;
|
|
6860
|
+
WHITE_STOP: number;
|
|
6861
|
+
};
|
|
6862
|
+
};
|
|
6863
|
+
BASE_GRADIENT: {
|
|
6864
|
+
ANGLE: number;
|
|
6865
|
+
BLACK_START_BASE: number;
|
|
6866
|
+
BLACK_START_MULTIPLIER: number;
|
|
6867
|
+
BLACK_MID_BASE: number;
|
|
6868
|
+
BLACK_MID_MULTIPLIER: number;
|
|
6869
|
+
BLACK_MID_STOP: number;
|
|
6870
|
+
BLACK_END_BASE: number;
|
|
6871
|
+
BLACK_END_MULTIPLIER: number;
|
|
6872
|
+
WHITE_OPACITY: number;
|
|
6873
|
+
};
|
|
6874
|
+
OVERLAY_GRADIENT: {
|
|
6875
|
+
BLACK_START_BASE: number;
|
|
6876
|
+
BLACK_START_MULTIPLIER: number;
|
|
6877
|
+
BLACK_MID: number;
|
|
6878
|
+
BLACK_MID_STOP: number;
|
|
6879
|
+
BLACK_END_BASE: number;
|
|
6880
|
+
BLACK_END_MULTIPLIER: number;
|
|
6881
|
+
WHITE_OPACITY: number;
|
|
6882
|
+
};
|
|
6883
|
+
OVERLAY_HIGHLIGHT: {
|
|
6884
|
+
POSITION_X: number;
|
|
6885
|
+
POSITION_Y: number;
|
|
6886
|
+
WHITE_OPACITY: number;
|
|
6887
|
+
STOP: number;
|
|
6888
|
+
OPACITY_MULTIPLIER: number;
|
|
6889
|
+
};
|
|
6890
|
+
MULTIPLIERS: {
|
|
6891
|
+
SHADER_DISPLACEMENT: number;
|
|
6892
|
+
OVER_LIGHT_DISPLACEMENT: number;
|
|
6893
|
+
SHADER_ABERRATION: number;
|
|
6894
|
+
};
|
|
6895
|
+
SATURATION: {
|
|
6896
|
+
HIGH_CONTRAST: number;
|
|
6897
|
+
};
|
|
6310
6898
|
};
|
|
6311
6899
|
};
|
|
6312
6900
|
|
|
@@ -6474,9 +7062,18 @@ declare function createIconElement(name: string, size?: number, className?: stri
|
|
|
6474
7062
|
declare function getAvailableIcons(): string[];
|
|
6475
7063
|
|
|
6476
7064
|
/**
|
|
6477
|
-
* Class name utility function to conditionally join classNames together
|
|
6478
|
-
*
|
|
6479
|
-
*
|
|
7065
|
+
* Class name utility function to conditionally join classNames together.
|
|
7066
|
+
* This is a wrapper around the 'classnames' library and supports all its features:
|
|
7067
|
+
* - Strings and numbers
|
|
7068
|
+
* - Arrays (including nested arrays)
|
|
7069
|
+
* - Objects (keys are class names, values are truthy/falsy conditions)
|
|
7070
|
+
* - Mixed types
|
|
7071
|
+
*
|
|
7072
|
+
* @example
|
|
7073
|
+
* cn('foo', 'bar'); // 'foo bar'
|
|
7074
|
+
* cn('foo', { bar: true }); // 'foo bar'
|
|
7075
|
+
* cn({ 'foo-bar': true }); // 'foo-bar'
|
|
7076
|
+
* cn(['foo', { bar: true }]); // 'foo bar'
|
|
6480
7077
|
*/
|
|
6481
7078
|
declare function cn(...args: any[]): string;
|
|
6482
7079
|
/**
|
|
@@ -6684,6 +7281,10 @@ interface RiverProps {
|
|
|
6684
7281
|
* Additional CSS class
|
|
6685
7282
|
*/
|
|
6686
7283
|
className?: string;
|
|
7284
|
+
/**
|
|
7285
|
+
* Inline style for the component
|
|
7286
|
+
*/
|
|
7287
|
+
style?: React.CSSProperties;
|
|
6687
7288
|
/**
|
|
6688
7289
|
* Background image source
|
|
6689
7290
|
*/
|
|
@@ -6917,22 +7518,51 @@ declare function useGlassContainer(props: GlassContainerProps): {
|
|
|
6917
7518
|
handleMouseUp: () => void;
|
|
6918
7519
|
};
|
|
6919
7520
|
|
|
6920
|
-
interface UseAtomixGlassOptions {
|
|
6921
|
-
|
|
6922
|
-
|
|
6923
|
-
|
|
6924
|
-
clickable?: boolean;
|
|
6925
|
-
active?: boolean;
|
|
6926
|
-
className?: string;
|
|
7521
|
+
interface UseAtomixGlassOptions extends Omit<AtomixGlassProps, 'children'> {
|
|
7522
|
+
glassRef: react__default.RefObject<HTMLDivElement>;
|
|
7523
|
+
contentRef: react__default.RefObject<HTMLDivElement>;
|
|
7524
|
+
children?: react__default.ReactNode;
|
|
6927
7525
|
}
|
|
6928
7526
|
interface UseAtomixGlassReturn {
|
|
6929
|
-
|
|
6930
|
-
|
|
7527
|
+
isHovered: boolean;
|
|
7528
|
+
isActive: boolean;
|
|
7529
|
+
glassSize: GlassSize;
|
|
7530
|
+
dynamicCornerRadius: number;
|
|
7531
|
+
effectiveCornerRadius: number;
|
|
7532
|
+
effectiveReducedMotion: boolean;
|
|
7533
|
+
effectiveHighContrast: boolean;
|
|
7534
|
+
effectiveDisableEffects: boolean;
|
|
7535
|
+
detectedOverLight: boolean;
|
|
7536
|
+
globalMousePosition: MousePosition;
|
|
7537
|
+
mouseOffset: MousePosition;
|
|
7538
|
+
overLightConfig: {
|
|
7539
|
+
isOverLight: boolean;
|
|
7540
|
+
threshold: number;
|
|
7541
|
+
opacity: number;
|
|
7542
|
+
contrast: number;
|
|
7543
|
+
brightness: number;
|
|
7544
|
+
saturationBoost: number;
|
|
7545
|
+
shadowIntensity: number;
|
|
7546
|
+
borderOpacity: number;
|
|
7547
|
+
};
|
|
7548
|
+
elasticTranslation: {
|
|
7549
|
+
x: number;
|
|
7550
|
+
y: number;
|
|
7551
|
+
};
|
|
7552
|
+
directionalScale: string;
|
|
7553
|
+
transformStyle: string;
|
|
7554
|
+
handleMouseEnter: () => void;
|
|
7555
|
+
handleMouseLeave: () => void;
|
|
7556
|
+
handleMouseDown: () => void;
|
|
7557
|
+
handleMouseUp: () => void;
|
|
7558
|
+
handleMouseMove: (e: MouseEvent) => void;
|
|
7559
|
+
handleKeyDown: (e: react__default.KeyboardEvent<HTMLDivElement>) => void;
|
|
6931
7560
|
}
|
|
6932
7561
|
/**
|
|
6933
|
-
*
|
|
7562
|
+
* Composable hook for AtomixGlass component logic
|
|
7563
|
+
* Manages all state, calculations, and event handlers
|
|
6934
7564
|
*/
|
|
6935
|
-
declare function useAtomixGlass(): UseAtomixGlassReturn;
|
|
7565
|
+
declare function useAtomixGlass({ glassRef, contentRef, cornerRadius, globalMousePosition: externalGlobalMousePosition, mouseOffset: externalMouseOffset, mouseContainer, overLight, reducedMotion, highContrast, disableEffects, elasticity, onClick, debugCornerRadius, debugOverLight, enablePerformanceMonitoring, children, }: UseAtomixGlassOptions): UseAtomixGlassReturn;
|
|
6936
7566
|
|
|
6937
7567
|
/**
|
|
6938
7568
|
* Input state and functionality
|
|
@@ -6996,7 +7626,15 @@ interface BreadcrumbItem {
|
|
|
6996
7626
|
/**
|
|
6997
7627
|
* Optional click handler
|
|
6998
7628
|
*/
|
|
6999
|
-
onClick?: (event: react__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
7629
|
+
onClick?: (event: react__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
7630
|
+
/**
|
|
7631
|
+
* Custom style for the breadcrumb item
|
|
7632
|
+
*/
|
|
7633
|
+
style?: react__default.CSSProperties;
|
|
7634
|
+
/**
|
|
7635
|
+
* Additional className
|
|
7636
|
+
*/
|
|
7637
|
+
className?: string;
|
|
7000
7638
|
}
|
|
7001
7639
|
interface BreadcrumbProps {
|
|
7002
7640
|
/**
|
|
@@ -7019,6 +7657,10 @@ interface BreadcrumbProps {
|
|
|
7019
7657
|
* Optional custom link component
|
|
7020
7658
|
*/
|
|
7021
7659
|
LinkComponent?: react__default.ElementType;
|
|
7660
|
+
/**
|
|
7661
|
+
* Custom style for the breadcrumb
|
|
7662
|
+
*/
|
|
7663
|
+
style?: react__default.CSSProperties;
|
|
7022
7664
|
}
|
|
7023
7665
|
declare const Breadcrumb: react__default.FC<BreadcrumbProps>;
|
|
7024
7666
|
|
|
@@ -7191,247 +7833,6 @@ interface UseSliderReturn extends SliderState {
|
|
|
7191
7833
|
}
|
|
7192
7834
|
declare function useSlider(options: UseSliderOptions): UseSliderReturn;
|
|
7193
7835
|
|
|
7194
|
-
/**
|
|
7195
|
-
* Chart types - comprehensive list
|
|
7196
|
-
*/
|
|
7197
|
-
type ChartType = 'line' | 'area' | 'bar' | 'horizontal-bar' | 'pie' | 'donut' | 'doughnut' | 'scatter' | 'radar' | 'bubble' | 'candlestick' | 'interactive' | 'advanced' | 'gauge' | 'funnel' | 'waterfall' | 'heatmap' | 'treemap' | 'realtime';
|
|
7198
|
-
/**
|
|
7199
|
-
* Chart data point interface
|
|
7200
|
-
*/
|
|
7201
|
-
interface ChartDataPoint {
|
|
7202
|
-
label: string;
|
|
7203
|
-
value: number;
|
|
7204
|
-
color?: string;
|
|
7205
|
-
metadata?: Record<string, any>;
|
|
7206
|
-
}
|
|
7207
|
-
/**
|
|
7208
|
-
* Chart dataset interface
|
|
7209
|
-
*/
|
|
7210
|
-
interface ChartDataset {
|
|
7211
|
-
label: string;
|
|
7212
|
-
data: ChartDataPoint[];
|
|
7213
|
-
color?: string;
|
|
7214
|
-
visible?: boolean;
|
|
7215
|
-
}
|
|
7216
|
-
/**
|
|
7217
|
-
* Chart axis configuration
|
|
7218
|
-
*/
|
|
7219
|
-
interface ChartAxis {
|
|
7220
|
-
label?: string;
|
|
7221
|
-
showGrid?: boolean;
|
|
7222
|
-
showLabels?: boolean;
|
|
7223
|
-
min?: number;
|
|
7224
|
-
max?: number;
|
|
7225
|
-
formatter?: (value: number) => string;
|
|
7226
|
-
ticks?: number;
|
|
7227
|
-
}
|
|
7228
|
-
/**
|
|
7229
|
-
* Chart configuration
|
|
7230
|
-
*/
|
|
7231
|
-
interface ChartConfig {
|
|
7232
|
-
xAxis?: ChartAxis;
|
|
7233
|
-
yAxis?: ChartAxis;
|
|
7234
|
-
showLegend?: boolean;
|
|
7235
|
-
showTooltips?: boolean;
|
|
7236
|
-
animate?: boolean;
|
|
7237
|
-
animationDuration?: number;
|
|
7238
|
-
}
|
|
7239
|
-
/**
|
|
7240
|
-
* Extended chart size options
|
|
7241
|
-
*/
|
|
7242
|
-
type ChartSize = Size | 'xl' | 'full';
|
|
7243
|
-
/**
|
|
7244
|
-
* Comprehensive chart props interface
|
|
7245
|
-
*/
|
|
7246
|
-
interface ChartProps extends BaseComponentProps {
|
|
7247
|
-
/**
|
|
7248
|
-
* Chart type
|
|
7249
|
-
*/
|
|
7250
|
-
type?: ChartType;
|
|
7251
|
-
/**
|
|
7252
|
-
* Chart data (simplified)
|
|
7253
|
-
*/
|
|
7254
|
-
data?: ChartDataPoint[];
|
|
7255
|
-
/**
|
|
7256
|
-
* Chart datasets (advanced)
|
|
7257
|
-
*/
|
|
7258
|
-
datasets?: ChartDataset[];
|
|
7259
|
-
/**
|
|
7260
|
-
* Chart configuration
|
|
7261
|
-
*/
|
|
7262
|
-
config?: ChartConfig;
|
|
7263
|
-
/**
|
|
7264
|
-
* Chart size
|
|
7265
|
-
*/
|
|
7266
|
-
size?: ChartSize;
|
|
7267
|
-
/**
|
|
7268
|
-
* Chart variant
|
|
7269
|
-
*/
|
|
7270
|
-
variant?: Variant;
|
|
7271
|
-
/**
|
|
7272
|
-
* Chart title
|
|
7273
|
-
*/
|
|
7274
|
-
title?: string;
|
|
7275
|
-
/**
|
|
7276
|
-
* Chart subtitle
|
|
7277
|
-
*/
|
|
7278
|
-
subtitle?: string;
|
|
7279
|
-
/**
|
|
7280
|
-
* Whether to show legend
|
|
7281
|
-
*/
|
|
7282
|
-
showLegend?: boolean;
|
|
7283
|
-
/**
|
|
7284
|
-
* Whether chart is interactive
|
|
7285
|
-
*/
|
|
7286
|
-
interactive?: boolean;
|
|
7287
|
-
/**
|
|
7288
|
-
* Loading state
|
|
7289
|
-
*/
|
|
7290
|
-
loading?: boolean;
|
|
7291
|
-
/**
|
|
7292
|
-
* Error message
|
|
7293
|
-
*/
|
|
7294
|
-
error?: string;
|
|
7295
|
-
/**
|
|
7296
|
-
* Fullscreen mode
|
|
7297
|
-
*/
|
|
7298
|
-
fullscreen?: boolean;
|
|
7299
|
-
/**
|
|
7300
|
-
* Show toolbar with actions
|
|
7301
|
-
*/
|
|
7302
|
-
showToolbar?: boolean;
|
|
7303
|
-
/**
|
|
7304
|
-
* Enable fullscreen functionality
|
|
7305
|
-
*/
|
|
7306
|
-
enableFullscreen?: boolean;
|
|
7307
|
-
/**
|
|
7308
|
-
* Enable export functionality
|
|
7309
|
-
*/
|
|
7310
|
-
enableExport?: boolean;
|
|
7311
|
-
/**
|
|
7312
|
-
* Enable refresh functionality
|
|
7313
|
-
*/
|
|
7314
|
-
enableRefresh?: boolean;
|
|
7315
|
-
/**
|
|
7316
|
-
* Available export formats
|
|
7317
|
-
*/
|
|
7318
|
-
exportFormats?: ('png' | 'svg' | 'csv' | 'json')[];
|
|
7319
|
-
/**
|
|
7320
|
-
* Data point click handler
|
|
7321
|
-
*/
|
|
7322
|
-
onDataPointClick?: (dataPoint: ChartDataPoint, datasetIndex: number, pointIndex: number) => void;
|
|
7323
|
-
/**
|
|
7324
|
-
* Legend item click handler
|
|
7325
|
-
*/
|
|
7326
|
-
onLegendItemClick?: (datasetIndex: number, visible: boolean) => void;
|
|
7327
|
-
/**
|
|
7328
|
-
* Fullscreen state change handler
|
|
7329
|
-
*/
|
|
7330
|
-
onFullscreen?: (isFullscreen: boolean) => void;
|
|
7331
|
-
/**
|
|
7332
|
-
* Export handler
|
|
7333
|
-
*/
|
|
7334
|
-
onExport?: (format: string) => Promise<void> | void;
|
|
7335
|
-
/**
|
|
7336
|
-
* Refresh handler
|
|
7337
|
-
*/
|
|
7338
|
-
onRefresh?: () => void;
|
|
7339
|
-
/**
|
|
7340
|
-
* Chart content for wrapper usage
|
|
7341
|
-
*/
|
|
7342
|
-
children?: ReactNode;
|
|
7343
|
-
/**
|
|
7344
|
-
* Accessibility label
|
|
7345
|
-
*/
|
|
7346
|
-
'aria-label'?: string;
|
|
7347
|
-
/**
|
|
7348
|
-
* Toolbar configuration
|
|
7349
|
-
*/
|
|
7350
|
-
toolbarConfig?: {
|
|
7351
|
-
enableDefaults?: boolean;
|
|
7352
|
-
defaults?: {
|
|
7353
|
-
refresh?: boolean;
|
|
7354
|
-
export?: boolean;
|
|
7355
|
-
fullscreen?: boolean;
|
|
7356
|
-
settings?: boolean;
|
|
7357
|
-
zoom?: boolean;
|
|
7358
|
-
pan?: boolean;
|
|
7359
|
-
reset?: boolean;
|
|
7360
|
-
grid?: boolean;
|
|
7361
|
-
legend?: boolean;
|
|
7362
|
-
tooltips?: boolean;
|
|
7363
|
-
animations?: boolean;
|
|
7364
|
-
};
|
|
7365
|
-
handlers?: {
|
|
7366
|
-
onRefresh?: () => void;
|
|
7367
|
-
onExport?: (format: string) => Promise<void> | void;
|
|
7368
|
-
onFullscreen?: (isFullscreen: boolean) => void;
|
|
7369
|
-
onZoomIn?: () => void;
|
|
7370
|
-
onZoomOut?: () => void;
|
|
7371
|
-
onZoomReset?: () => void;
|
|
7372
|
-
onPanToggle?: (enabled: boolean) => void;
|
|
7373
|
-
onReset?: () => void;
|
|
7374
|
-
onGridToggle?: (show: boolean) => void;
|
|
7375
|
-
onLegendToggle?: (show: boolean) => void;
|
|
7376
|
-
onTooltipsToggle?: (show: boolean) => void;
|
|
7377
|
-
onAnimationsToggle?: (enabled: boolean) => void;
|
|
7378
|
-
};
|
|
7379
|
-
};
|
|
7380
|
-
/**
|
|
7381
|
-
* Custom toolbar actions
|
|
7382
|
-
*/
|
|
7383
|
-
customToolbarActions?: Array<{
|
|
7384
|
-
id: string;
|
|
7385
|
-
label: string;
|
|
7386
|
-
icon: string;
|
|
7387
|
-
onClick: () => void;
|
|
7388
|
-
disabled?: boolean;
|
|
7389
|
-
active?: boolean;
|
|
7390
|
-
variant?: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error';
|
|
7391
|
-
tooltip?: string;
|
|
7392
|
-
}>;
|
|
7393
|
-
/**
|
|
7394
|
-
* Custom toolbar groups
|
|
7395
|
-
*/
|
|
7396
|
-
customToolbarGroups?: Array<{
|
|
7397
|
-
id: string;
|
|
7398
|
-
label?: string;
|
|
7399
|
-
actions: Array<{
|
|
7400
|
-
id: string;
|
|
7401
|
-
label: string;
|
|
7402
|
-
icon: string;
|
|
7403
|
-
onClick: () => void;
|
|
7404
|
-
disabled?: boolean;
|
|
7405
|
-
active?: boolean;
|
|
7406
|
-
variant?: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error';
|
|
7407
|
-
tooltip?: string;
|
|
7408
|
-
}>;
|
|
7409
|
-
separator?: boolean;
|
|
7410
|
-
}>;
|
|
7411
|
-
}
|
|
7412
|
-
/**
|
|
7413
|
-
* Chart scales interface
|
|
7414
|
-
*/
|
|
7415
|
-
interface ChartScales {
|
|
7416
|
-
xScale: (index: number) => number;
|
|
7417
|
-
yScale: (value: number) => number;
|
|
7418
|
-
width: number;
|
|
7419
|
-
height: number;
|
|
7420
|
-
padding: {
|
|
7421
|
-
top: number;
|
|
7422
|
-
right: number;
|
|
7423
|
-
bottom: number;
|
|
7424
|
-
left: number;
|
|
7425
|
-
};
|
|
7426
|
-
}
|
|
7427
|
-
/**
|
|
7428
|
-
* Chart interaction state
|
|
7429
|
-
*/
|
|
7430
|
-
interface ChartInteraction {
|
|
7431
|
-
hoveredIndex: number | null;
|
|
7432
|
-
selectedIndex: number | null;
|
|
7433
|
-
}
|
|
7434
|
-
|
|
7435
7836
|
/**
|
|
7436
7837
|
* Simplified hook for chart data processing
|
|
7437
7838
|
*/
|
|
@@ -7454,7 +7855,7 @@ declare function useChartData(data: ChartDataPoint[]): {
|
|
|
7454
7855
|
/**
|
|
7455
7856
|
* Simplified hook for chart scale calculations
|
|
7456
7857
|
*/
|
|
7457
|
-
declare function useChartScale(data: ChartDataPoint[], width?: number, height?: number): ChartScales;
|
|
7858
|
+
declare function useChartScale(data: ChartDataPoint[], width?: number, height?: number): ChartScales$1;
|
|
7458
7859
|
|
|
7459
7860
|
/**
|
|
7460
7861
|
* Simplified hook for basic chart interactions
|
|
@@ -7849,8 +8250,6 @@ type __lib_composables_PieChartOptions = PieChartOptions;
|
|
|
7849
8250
|
type __lib_composables_PieSlice = PieSlice;
|
|
7850
8251
|
type __lib_composables_RiverContentColumn = RiverContentColumn;
|
|
7851
8252
|
type __lib_composables_RiverProps = RiverProps;
|
|
7852
|
-
type __lib_composables_UseAtomixGlassOptions = UseAtomixGlassOptions;
|
|
7853
|
-
type __lib_composables_UseAtomixGlassReturn = UseAtomixGlassReturn;
|
|
7854
8253
|
type __lib_composables_UseBlockOptions = UseBlockOptions;
|
|
7855
8254
|
type __lib_composables_UseBlockReturn = UseBlockReturn;
|
|
7856
8255
|
type __lib_composables_UseDataTableProps = UseDataTableProps;
|
|
@@ -7897,7 +8296,7 @@ declare const __lib_composables_useTextarea: typeof useTextarea;
|
|
|
7897
8296
|
declare const __lib_composables_useTodo: typeof useTodo;
|
|
7898
8297
|
declare namespace __lib_composables {
|
|
7899
8298
|
export { __lib_composables_DOTS as DOTS, __lib_composables_useAccordion as useAccordion, __lib_composables_useAtomixGlass as useAtomixGlass, __lib_composables_useBadge as useBadge, __lib_composables_useBarChart as useBarChart, __lib_composables_useBlock as useBlock, __lib_composables_useBreadcrumb as useBreadcrumb, __lib_composables_useButton as useButton, __lib_composables_useCard as useCard, __lib_composables_useChartData as useChartData, __lib_composables_useChartInteraction as useChartInteraction, __lib_composables_useChartScale as useChartScale, __lib_composables_useCheckbox as useCheckbox, __lib_composables_useDataTable as useDataTable, __lib_composables_useEdgePanel as useEdgePanel, __lib_composables_useForm as useForm, __lib_composables_useFormGroup as useFormGroup, __lib_composables_useGlassContainer as useGlassContainer, __lib_composables_useHero as useHero, __lib_composables_useInput as useInput, __lib_composables_useLineChart as useLineChart, __lib_composables_useModal as useModal, __lib_composables_useNav as useNav, __lib_composables_useNavDropdown as useNavDropdown, __lib_composables_useNavItem as useNavItem, __lib_composables_useNavbar as useNavbar, __lib_composables_usePagination as usePagination, __lib_composables_usePieChart as usePieChart, __lib_composables_useRadio as useRadio, __lib_composables_useRiver as useRiver, __lib_composables_useSelect as useSelect, __lib_composables_useSideMenu as useSideMenu, __lib_composables_useSideMenuItem as useSideMenuItem, __lib_composables_useSlider as useSlider, __lib_composables_useSpinner as useSpinner, __lib_composables_useTextarea as useTextarea, __lib_composables_useTodo as useTodo };
|
|
7900
|
-
export type { __lib_composables_BarChartOptions as BarChartOptions, __lib_composables_BarDimensions as BarDimensions, __lib_composables_LineChartOptions as LineChartOptions, __lib_composables_PieChartOptions as PieChartOptions, __lib_composables_PieSlice as PieSlice, __lib_composables_RiverContentColumn as RiverContentColumn, __lib_composables_RiverProps as RiverProps,
|
|
8299
|
+
export type { __lib_composables_BarChartOptions as BarChartOptions, __lib_composables_BarDimensions as BarDimensions, __lib_composables_LineChartOptions as LineChartOptions, __lib_composables_PieChartOptions as PieChartOptions, __lib_composables_PieSlice as PieSlice, __lib_composables_RiverContentColumn as RiverContentColumn, __lib_composables_RiverProps as RiverProps, __lib_composables_UseBlockOptions as UseBlockOptions, __lib_composables_UseBlockReturn as UseBlockReturn, __lib_composables_UseDataTableProps as UseDataTableProps, __lib_composables_UseDataTableReturn as UseDataTableReturn, __lib_composables_UseModalProps as UseModalProps, __lib_composables_UseModalReturn as UseModalReturn, __lib_composables_UseSliderOptions as UseSliderOptions, __lib_composables_UseSliderReturn as UseSliderReturn };
|
|
7901
8300
|
}
|
|
7902
8301
|
|
|
7903
8302
|
/**
|
|
@@ -7937,6 +8336,10 @@ interface AccordionProps extends BaseComponentProps {
|
|
|
7937
8336
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
7938
8337
|
*/
|
|
7939
8338
|
glass?: AtomixGlassProps | boolean;
|
|
8339
|
+
/**
|
|
8340
|
+
* Custom style for the accordion
|
|
8341
|
+
*/
|
|
8342
|
+
style?: react__default.CSSProperties;
|
|
7940
8343
|
}
|
|
7941
8344
|
declare const Accordion: react__default.FC<AccordionProps>;
|
|
7942
8345
|
|
|
@@ -7947,6 +8350,79 @@ interface AtomixLogoProps extends react__default.SVGProps<SVGSVGElement> {
|
|
|
7947
8350
|
}
|
|
7948
8351
|
declare const AtomixLogo: react__default.FC<AtomixLogoProps>;
|
|
7949
8352
|
|
|
8353
|
+
/**
|
|
8354
|
+
* AtomixGlass - A high-performance glass morphism component with liquid distortion effects
|
|
8355
|
+
*
|
|
8356
|
+
* Features:
|
|
8357
|
+
* - Hardware-accelerated glass effects with SVG filters
|
|
8358
|
+
* - Mouse-responsive liquid distortion
|
|
8359
|
+
* - Dynamic border-radius extraction from children CSS properties
|
|
8360
|
+
* - Automatic light/dark theme detection via overLight prop
|
|
8361
|
+
* - Accessibility and performance optimizations
|
|
8362
|
+
* - Multiple displacement modes (standard, polar, prominent, shader)
|
|
8363
|
+
* - Design token integration for consistent theming
|
|
8364
|
+
* - Focus ring support for keyboard navigation
|
|
8365
|
+
* - Responsive breakpoints for mobile optimization
|
|
8366
|
+
* - Enhanced ARIA attributes for screen readers
|
|
8367
|
+
*
|
|
8368
|
+
* Design System Compliance:
|
|
8369
|
+
* - Uses design tokens for opacity, spacing, and colors
|
|
8370
|
+
* - Follows BEM methodology for class naming
|
|
8371
|
+
* - Implements focus-ring mixin for accessibility
|
|
8372
|
+
* - Supports reduced motion and high contrast preferences
|
|
8373
|
+
*
|
|
8374
|
+
* @example
|
|
8375
|
+
* // Basic usage with dynamic border-radius extraction
|
|
8376
|
+
* <AtomixGlass>
|
|
8377
|
+
* <div style={{ borderRadius: '12px' }}>Content with 12px radius</div>
|
|
8378
|
+
* </AtomixGlass>
|
|
8379
|
+
*
|
|
8380
|
+
* @example
|
|
8381
|
+
* // Manual border-radius override
|
|
8382
|
+
* <AtomixGlass cornerRadius={20}>
|
|
8383
|
+
* <div>Content with 20px glass radius</div>
|
|
8384
|
+
* </AtomixGlass>
|
|
8385
|
+
*
|
|
8386
|
+
* @example
|
|
8387
|
+
* // Interactive glass with click handler
|
|
8388
|
+
* <AtomixGlass onClick={() => console.log('Clicked')} aria-label="Glass card">
|
|
8389
|
+
* <div>Clickable content</div>
|
|
8390
|
+
* </AtomixGlass>
|
|
8391
|
+
*
|
|
8392
|
+
* @example
|
|
8393
|
+
* // OverLight - Boolean mode (explicit control)
|
|
8394
|
+
* <AtomixGlass overLight={true}>
|
|
8395
|
+
* <div>Content on light background</div>
|
|
8396
|
+
* </AtomixGlass>
|
|
8397
|
+
*
|
|
8398
|
+
* @example
|
|
8399
|
+
* // OverLight - Auto-detection mode
|
|
8400
|
+
* <AtomixGlass overLight="auto">
|
|
8401
|
+
* <div>Content with auto-detected background</div>
|
|
8402
|
+
* </AtomixGlass>
|
|
8403
|
+
*
|
|
8404
|
+
* @example
|
|
8405
|
+
* // OverLight - Object config with custom settings
|
|
8406
|
+
* <AtomixGlass
|
|
8407
|
+
* overLight={{
|
|
8408
|
+
* threshold: 0.8,
|
|
8409
|
+
* opacity: 0.6,
|
|
8410
|
+
* contrast: 1.8,
|
|
8411
|
+
* brightness: 1.0,
|
|
8412
|
+
* saturationBoost: 1.5
|
|
8413
|
+
* }}
|
|
8414
|
+
* >
|
|
8415
|
+
* <div>Content with custom overLight config</div>
|
|
8416
|
+
* </AtomixGlass>
|
|
8417
|
+
*
|
|
8418
|
+
* @example
|
|
8419
|
+
* // Debug mode for overLight detection
|
|
8420
|
+
* <AtomixGlass overLight="auto" debugOverLight={true}>
|
|
8421
|
+
* <div>Content with debug logging enabled</div>
|
|
8422
|
+
* </AtomixGlass>
|
|
8423
|
+
*/
|
|
8424
|
+
declare function AtomixGlass({ children, displacementScale, blurAmount, saturation, aberrationIntensity, elasticity, cornerRadius, globalMousePosition: externalGlobalMousePosition, mouseOffset: externalMouseOffset, mouseContainer, className, padding, overLight, style, mode, onClick, shaderVariant, 'aria-label': ariaLabel, 'aria-describedby': ariaDescribedBy, role, tabIndex, reducedMotion, highContrast, disableEffects, enableLiquidBlur, enableBorderEffect, enableOverLightLayers, enablePerformanceMonitoring, debugCornerRadius, debugOverLight, }: AtomixGlassProps): react_jsx_runtime.JSX.Element;
|
|
8425
|
+
|
|
7950
8426
|
declare const Avatar: react__default.FC<AvatarProps>;
|
|
7951
8427
|
|
|
7952
8428
|
declare const AvatarGroup: react__default.FC<AvatarGroupProps>;
|
|
@@ -8080,93 +8556,6 @@ declare const Callout: react__default.FC<CalloutProps>;
|
|
|
8080
8556
|
|
|
8081
8557
|
declare const Card: react__default.ForwardRefExoticComponent<CardProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
8082
8558
|
|
|
8083
|
-
interface AdvancedChartProps extends Omit<ChartProps, 'type'> {
|
|
8084
|
-
/**
|
|
8085
|
-
* Advanced chart specific options
|
|
8086
|
-
*/
|
|
8087
|
-
advancedOptions?: {
|
|
8088
|
-
/**
|
|
8089
|
-
* Chart type for advanced rendering
|
|
8090
|
-
*/
|
|
8091
|
-
chartType?: 'line' | 'area' | 'bar' | 'mixed';
|
|
8092
|
-
/**
|
|
8093
|
-
* Whether to enable real-time updates
|
|
8094
|
-
*/
|
|
8095
|
-
realTime?: boolean;
|
|
8096
|
-
/**
|
|
8097
|
-
* Update interval in milliseconds for real-time data
|
|
8098
|
-
*/
|
|
8099
|
-
updateInterval?: number;
|
|
8100
|
-
/**
|
|
8101
|
-
* Whether to show advanced tooltips
|
|
8102
|
-
*/
|
|
8103
|
-
advancedTooltips?: boolean;
|
|
8104
|
-
/**
|
|
8105
|
-
* Whether to enable data point selection
|
|
8106
|
-
*/
|
|
8107
|
-
enableSelection?: boolean;
|
|
8108
|
-
/**
|
|
8109
|
-
* Maximum number of selected points
|
|
8110
|
-
*/
|
|
8111
|
-
maxSelections?: number;
|
|
8112
|
-
/**
|
|
8113
|
-
* Whether to show trend lines
|
|
8114
|
-
*/
|
|
8115
|
-
showTrendLines?: boolean;
|
|
8116
|
-
/**
|
|
8117
|
-
* Whether to show moving averages
|
|
8118
|
-
*/
|
|
8119
|
-
showMovingAverages?: boolean;
|
|
8120
|
-
/**
|
|
8121
|
-
* Period for moving average calculation
|
|
8122
|
-
*/
|
|
8123
|
-
movingAveragePeriod?: number;
|
|
8124
|
-
/**
|
|
8125
|
-
* Whether to enable data export
|
|
8126
|
-
*/
|
|
8127
|
-
enableExport?: boolean;
|
|
8128
|
-
/**
|
|
8129
|
-
* Export formats
|
|
8130
|
-
*/
|
|
8131
|
-
exportFormats?: ('png' | 'svg' | 'csv' | 'json')[];
|
|
8132
|
-
/**
|
|
8133
|
-
* Whether to show data table
|
|
8134
|
-
*/
|
|
8135
|
-
showDataTable?: boolean;
|
|
8136
|
-
/**
|
|
8137
|
-
* Whether to enable annotations
|
|
8138
|
-
*/
|
|
8139
|
-
enableAnnotations?: boolean;
|
|
8140
|
-
/**
|
|
8141
|
-
* Custom annotations
|
|
8142
|
-
*/
|
|
8143
|
-
annotations?: Array<{
|
|
8144
|
-
x: number;
|
|
8145
|
-
y: number;
|
|
8146
|
-
label: string;
|
|
8147
|
-
color?: string;
|
|
8148
|
-
type?: 'point' | 'line' | 'area';
|
|
8149
|
-
}>;
|
|
8150
|
-
};
|
|
8151
|
-
}
|
|
8152
|
-
declare const AdvancedChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AdvancedChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8153
|
-
|
|
8154
|
-
interface AnimatedChartProps extends Omit<ChartProps, 'type'> {
|
|
8155
|
-
chartType?: 'line' | 'bar' | 'area';
|
|
8156
|
-
animationConfig?: {
|
|
8157
|
-
duration?: number;
|
|
8158
|
-
easing?: 'ease-out' | 'bounce';
|
|
8159
|
-
};
|
|
8160
|
-
particleEffects?: {
|
|
8161
|
-
enabled: boolean;
|
|
8162
|
-
count: number;
|
|
8163
|
-
colors: string[];
|
|
8164
|
-
speed: number;
|
|
8165
|
-
size: number;
|
|
8166
|
-
};
|
|
8167
|
-
}
|
|
8168
|
-
declare const AnimatedChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AnimatedChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8169
|
-
|
|
8170
8559
|
interface LineChartProps extends Omit<ChartProps, 'type'> {
|
|
8171
8560
|
/**
|
|
8172
8561
|
* Line chart specific options
|
|
@@ -8307,7 +8696,7 @@ interface CandlestickDataPoint {
|
|
|
8307
8696
|
*/
|
|
8308
8697
|
metadata?: Record<string, any>;
|
|
8309
8698
|
}
|
|
8310
|
-
interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
8699
|
+
interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets' | 'data'> {
|
|
8311
8700
|
/**
|
|
8312
8701
|
* Candlestick chart data
|
|
8313
8702
|
*/
|
|
@@ -8317,25 +8706,29 @@ interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
|
8317
8706
|
*/
|
|
8318
8707
|
candlestickOptions?: {
|
|
8319
8708
|
/**
|
|
8320
|
-
*
|
|
8709
|
+
* Whether to show volume bars
|
|
8321
8710
|
*/
|
|
8322
|
-
|
|
8711
|
+
showVolume?: boolean;
|
|
8323
8712
|
/**
|
|
8324
|
-
*
|
|
8713
|
+
* Volume bar height ratio (0-1)
|
|
8325
8714
|
*/
|
|
8326
|
-
|
|
8715
|
+
volumeHeightRatio?: number;
|
|
8327
8716
|
/**
|
|
8328
|
-
*
|
|
8717
|
+
* Up color (when close > open)
|
|
8329
8718
|
*/
|
|
8330
|
-
|
|
8719
|
+
upColor?: string;
|
|
8331
8720
|
/**
|
|
8332
|
-
*
|
|
8721
|
+
* Down color (when close < open)
|
|
8333
8722
|
*/
|
|
8334
|
-
|
|
8723
|
+
downColor?: string;
|
|
8335
8724
|
/**
|
|
8336
|
-
*
|
|
8725
|
+
* Wick color
|
|
8337
8726
|
*/
|
|
8338
|
-
|
|
8727
|
+
wickColor?: string;
|
|
8728
|
+
/**
|
|
8729
|
+
* Border color
|
|
8730
|
+
*/
|
|
8731
|
+
borderColor?: string;
|
|
8339
8732
|
/**
|
|
8340
8733
|
* Whether to show moving averages
|
|
8341
8734
|
*/
|
|
@@ -8349,34 +8742,30 @@ interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
|
8349
8742
|
*/
|
|
8350
8743
|
movingAverageColors?: string[];
|
|
8351
8744
|
/**
|
|
8352
|
-
*
|
|
8353
|
-
*/
|
|
8354
|
-
showTrendLines?: boolean;
|
|
8355
|
-
/**
|
|
8356
|
-
* Whether to enable crosshair
|
|
8745
|
+
* Date format
|
|
8357
8746
|
*/
|
|
8358
|
-
|
|
8747
|
+
dateFormat?: 'short' | 'medium' | 'long' | 'numeric' | 'custom';
|
|
8359
8748
|
/**
|
|
8360
|
-
*
|
|
8749
|
+
* Custom date formatter function
|
|
8361
8750
|
*/
|
|
8362
|
-
|
|
8751
|
+
dateFormatter?: (date: string | Date) => string;
|
|
8363
8752
|
/**
|
|
8364
|
-
*
|
|
8753
|
+
* Whether to show grid lines
|
|
8365
8754
|
*/
|
|
8366
|
-
|
|
8755
|
+
showGrid?: boolean;
|
|
8367
8756
|
/**
|
|
8368
|
-
*
|
|
8757
|
+
* Grid color
|
|
8369
8758
|
*/
|
|
8370
|
-
|
|
8759
|
+
gridColor?: string;
|
|
8371
8760
|
/**
|
|
8372
|
-
* Whether to
|
|
8761
|
+
* Whether to show tooltips
|
|
8373
8762
|
*/
|
|
8374
|
-
|
|
8763
|
+
showTooltips?: boolean;
|
|
8375
8764
|
};
|
|
8376
8765
|
}
|
|
8377
8766
|
declare const CandlestickChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<CandlestickChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8378
8767
|
|
|
8379
|
-
declare const Chart: react.MemoExoticComponent<react.ForwardRefExoticComponent<ChartProps
|
|
8768
|
+
declare const Chart: react.MemoExoticComponent<react.ForwardRefExoticComponent<ChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8380
8769
|
|
|
8381
8770
|
/**
|
|
8382
8771
|
* Enhanced chart renderer component with comprehensive functionality
|
|
@@ -8391,29 +8780,7 @@ declare const ChartRenderer: react.MemoExoticComponent<react.ForwardRefExoticCom
|
|
|
8391
8780
|
enableRealTime?: boolean;
|
|
8392
8781
|
enableAccessibility?: boolean;
|
|
8393
8782
|
enablePerformanceOptimization?: boolean;
|
|
8394
|
-
renderContent: (params:
|
|
8395
|
-
scales: any;
|
|
8396
|
-
colors: string[];
|
|
8397
|
-
datasets: any[];
|
|
8398
|
-
interactionState: any;
|
|
8399
|
-
handlers: {
|
|
8400
|
-
onDataPointClick?: ChartProps$1["onDataPointClick"];
|
|
8401
|
-
onPointHover: (datasetIndex: number, pointIndex: number, x: number, y: number, clientX: number, clientY: number) => void;
|
|
8402
|
-
onPointLeave: () => void;
|
|
8403
|
-
onMouseMove: (event: React.MouseEvent<SVGSVGElement>) => void;
|
|
8404
|
-
onMouseDown: (event: React.MouseEvent<SVGSVGElement>) => void;
|
|
8405
|
-
onMouseUp: () => void;
|
|
8406
|
-
onWheel: (event: React.WheelEvent<SVGSVGElement>) => void;
|
|
8407
|
-
};
|
|
8408
|
-
accessibility: {
|
|
8409
|
-
announcement: string;
|
|
8410
|
-
focusedPoint: {
|
|
8411
|
-
datasetIndex: number;
|
|
8412
|
-
pointIndex: number;
|
|
8413
|
-
};
|
|
8414
|
-
getAccessibleDescription: () => string;
|
|
8415
|
-
};
|
|
8416
|
-
}) => React.ReactNode;
|
|
8783
|
+
renderContent: (params: ChartRenderContentParams) => React.ReactNode;
|
|
8417
8784
|
} & react.RefAttributes<SVGSVGElement>>>;
|
|
8418
8785
|
|
|
8419
8786
|
type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -8440,6 +8807,10 @@ interface IconProps {
|
|
|
8440
8807
|
* Additional CSS class names
|
|
8441
8808
|
*/
|
|
8442
8809
|
className?: string;
|
|
8810
|
+
/**
|
|
8811
|
+
* Custom style
|
|
8812
|
+
*/
|
|
8813
|
+
style?: react__default.CSSProperties;
|
|
8443
8814
|
/**
|
|
8444
8815
|
* Alt text for accessibility
|
|
8445
8816
|
*/
|
|
@@ -8494,7 +8865,7 @@ interface FunnelDataPoint {
|
|
|
8494
8865
|
percentage?: number;
|
|
8495
8866
|
metadata?: Record<string, any>;
|
|
8496
8867
|
}
|
|
8497
|
-
interface FunnelChartProps extends Omit<ChartProps
|
|
8868
|
+
interface FunnelChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
8498
8869
|
/**
|
|
8499
8870
|
* Funnel chart data
|
|
8500
8871
|
*/
|
|
@@ -8540,11 +8911,11 @@ interface FunnelChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8540
8911
|
*/
|
|
8541
8912
|
colorScheme?: string[];
|
|
8542
8913
|
/**
|
|
8543
|
-
* Whether to use gradient
|
|
8914
|
+
* Whether to use gradient
|
|
8544
8915
|
*/
|
|
8545
8916
|
useGradient?: boolean;
|
|
8546
8917
|
/**
|
|
8547
|
-
* Whether to animate
|
|
8918
|
+
* Whether to animate
|
|
8548
8919
|
*/
|
|
8549
8920
|
animate?: boolean;
|
|
8550
8921
|
/**
|
|
@@ -8560,19 +8931,19 @@ interface FunnelChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8560
8931
|
*/
|
|
8561
8932
|
valueFormatter?: (value: number) => string;
|
|
8562
8933
|
/**
|
|
8563
|
-
* Whether to show conversion rates
|
|
8934
|
+
* Whether to show conversion rates
|
|
8564
8935
|
*/
|
|
8565
8936
|
showConversionRates?: boolean;
|
|
8566
8937
|
/**
|
|
8567
8938
|
* Conversion rate position
|
|
8568
8939
|
*/
|
|
8569
|
-
conversionRatePosition?: 'between' | '
|
|
8940
|
+
conversionRatePosition?: 'between' | 'onSegment';
|
|
8570
8941
|
/**
|
|
8571
|
-
* Whether
|
|
8942
|
+
* Whether to use proportional segments
|
|
8572
8943
|
*/
|
|
8573
8944
|
proportional?: boolean;
|
|
8574
8945
|
/**
|
|
8575
|
-
* Minimum segment
|
|
8946
|
+
* Minimum segment ratio (0-1)
|
|
8576
8947
|
*/
|
|
8577
8948
|
minSegmentRatio?: number;
|
|
8578
8949
|
};
|
|
@@ -8684,7 +9055,7 @@ interface HeatmapDataPoint {
|
|
|
8684
9055
|
label?: string;
|
|
8685
9056
|
metadata?: Record<string, any>;
|
|
8686
9057
|
}
|
|
8687
|
-
interface HeatmapChartProps extends Omit<ChartProps
|
|
9058
|
+
interface HeatmapChartProps extends Omit<ChartProps, 'type' | 'datasets' | 'variant' | 'data'> {
|
|
8688
9059
|
/**
|
|
8689
9060
|
* Heatmap data points
|
|
8690
9061
|
*/
|
|
@@ -8727,50 +9098,26 @@ interface HeatmapChartProps extends Omit<ChartProps$1, 'type' | 'datasets' | 'va
|
|
|
8727
9098
|
*/
|
|
8728
9099
|
height?: number;
|
|
8729
9100
|
/**
|
|
8730
|
-
*
|
|
9101
|
+
* Spacing between cells
|
|
8731
9102
|
*/
|
|
8732
|
-
|
|
9103
|
+
spacing?: number;
|
|
8733
9104
|
/**
|
|
8734
|
-
*
|
|
9105
|
+
* Border radius for cells
|
|
8735
9106
|
*/
|
|
8736
|
-
|
|
9107
|
+
borderRadius?: number;
|
|
8737
9108
|
/**
|
|
8738
|
-
*
|
|
9109
|
+
* Whether to show cell labels
|
|
8739
9110
|
*/
|
|
8740
|
-
|
|
9111
|
+
showLabels?: boolean;
|
|
8741
9112
|
};
|
|
8742
|
-
/**
|
|
8743
|
-
* Whether to show values in cells
|
|
8744
|
-
*/
|
|
8745
|
-
showValues?: boolean;
|
|
8746
|
-
/**
|
|
8747
|
-
* Value formatter
|
|
8748
|
-
*/
|
|
8749
|
-
valueFormatter?: (value: number) => string;
|
|
8750
9113
|
/**
|
|
8751
9114
|
* Whether to show color legend
|
|
8752
9115
|
*/
|
|
8753
9116
|
showColorLegend?: boolean;
|
|
8754
9117
|
/**
|
|
8755
|
-
*
|
|
8756
|
-
*/
|
|
8757
|
-
tooltipConfig?: {
|
|
8758
|
-
enabled: boolean;
|
|
8759
|
-
formatter?: (dataPoint: HeatmapDataPoint) => string;
|
|
8760
|
-
};
|
|
8761
|
-
/**
|
|
8762
|
-
* Layout variant - grid or calendar style
|
|
8763
|
-
*/
|
|
8764
|
-
variant?: 'grid' | 'calendar';
|
|
8765
|
-
/**
|
|
8766
|
-
* Animation configuration
|
|
9118
|
+
* Whether to show grid lines
|
|
8767
9119
|
*/
|
|
8768
|
-
|
|
8769
|
-
enabled?: boolean;
|
|
8770
|
-
duration?: number;
|
|
8771
|
-
delay?: number;
|
|
8772
|
-
easing?: string;
|
|
8773
|
-
};
|
|
9120
|
+
showGrid?: boolean;
|
|
8774
9121
|
}
|
|
8775
9122
|
declare const HeatmapChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<HeatmapChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8776
9123
|
|
|
@@ -8818,31 +9165,76 @@ interface MultiAxisDataset extends ChartDataset$1 {
|
|
|
8818
9165
|
*/
|
|
8819
9166
|
yAxisId?: string;
|
|
8820
9167
|
/**
|
|
8821
|
-
*
|
|
9168
|
+
* X-axis ID this dataset should use
|
|
8822
9169
|
*/
|
|
8823
|
-
|
|
9170
|
+
xAxisId?: string;
|
|
8824
9171
|
}
|
|
8825
|
-
interface MultiAxisChartProps extends Omit<ChartProps$1, 'type'
|
|
9172
|
+
interface MultiAxisChartProps extends Omit<ChartProps$1, 'type'> {
|
|
8826
9173
|
/**
|
|
8827
|
-
* Multi-axis datasets
|
|
9174
|
+
* Multi-axis chart datasets
|
|
8828
9175
|
*/
|
|
8829
9176
|
datasets: MultiAxisDataset[];
|
|
8830
9177
|
/**
|
|
8831
9178
|
* Y-axis configurations
|
|
8832
9179
|
*/
|
|
8833
|
-
yAxes
|
|
9180
|
+
yAxes?: AxisConfig[];
|
|
8834
9181
|
/**
|
|
8835
|
-
* X-axis
|
|
8836
|
-
*/
|
|
8837
|
-
xAxis?: AxisConfig;
|
|
8838
|
-
/**
|
|
8839
|
-
* Whether to sync zoom across axes
|
|
9182
|
+
* X-axis configurations
|
|
8840
9183
|
*/
|
|
8841
|
-
|
|
9184
|
+
xAxes?: AxisConfig[];
|
|
8842
9185
|
/**
|
|
8843
|
-
*
|
|
9186
|
+
* Multi-axis chart specific options
|
|
8844
9187
|
*/
|
|
8845
|
-
|
|
9188
|
+
multiAxisOptions?: {
|
|
9189
|
+
/**
|
|
9190
|
+
* Whether to show legend
|
|
9191
|
+
*/
|
|
9192
|
+
showLegend?: boolean;
|
|
9193
|
+
/**
|
|
9194
|
+
* Legend position
|
|
9195
|
+
*/
|
|
9196
|
+
legendPosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
9197
|
+
/**
|
|
9198
|
+
* Whether to synchronize axis ranges
|
|
9199
|
+
*/
|
|
9200
|
+
syncAxes?: boolean;
|
|
9201
|
+
/**
|
|
9202
|
+
* Padding between axes
|
|
9203
|
+
*/
|
|
9204
|
+
axisPadding?: number;
|
|
9205
|
+
/**
|
|
9206
|
+
* Whether to show tooltips
|
|
9207
|
+
*/
|
|
9208
|
+
showTooltips?: boolean;
|
|
9209
|
+
/**
|
|
9210
|
+
* Tooltip position
|
|
9211
|
+
*/
|
|
9212
|
+
tooltipPosition?: 'auto' | 'nearest' | 'average';
|
|
9213
|
+
/**
|
|
9214
|
+
* Interpolation method for line charts
|
|
9215
|
+
*/
|
|
9216
|
+
interpolation?: 'linear' | 'step' | 'natural' | 'monotone';
|
|
9217
|
+
/**
|
|
9218
|
+
* Whether to show area under lines
|
|
9219
|
+
*/
|
|
9220
|
+
showArea?: boolean;
|
|
9221
|
+
/**
|
|
9222
|
+
* Area opacity (0-1)
|
|
9223
|
+
*/
|
|
9224
|
+
areaOpacity?: number;
|
|
9225
|
+
/**
|
|
9226
|
+
* Whether to show data points
|
|
9227
|
+
*/
|
|
9228
|
+
showDataPoints?: boolean;
|
|
9229
|
+
/**
|
|
9230
|
+
* Data point radius
|
|
9231
|
+
*/
|
|
9232
|
+
pointRadius?: number;
|
|
9233
|
+
/**
|
|
9234
|
+
* Whether to connect points across null values
|
|
9235
|
+
*/
|
|
9236
|
+
spanGaps?: boolean;
|
|
9237
|
+
};
|
|
8846
9238
|
}
|
|
8847
9239
|
declare const MultiAxisChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<MultiAxisChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8848
9240
|
|
|
@@ -8903,59 +9295,6 @@ interface RadarChartProps extends Omit<ChartProps$1, 'type'> {
|
|
|
8903
9295
|
}
|
|
8904
9296
|
declare const RadarChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<RadarChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8905
9297
|
|
|
8906
|
-
interface RealTimeChartProps extends Omit<ChartProps$1, 'type'> {
|
|
8907
|
-
/**
|
|
8908
|
-
* Data stream configuration
|
|
8909
|
-
*/
|
|
8910
|
-
streamConfig?: {
|
|
8911
|
-
/**
|
|
8912
|
-
* Update interval in milliseconds
|
|
8913
|
-
*/
|
|
8914
|
-
interval: number;
|
|
8915
|
-
/**
|
|
8916
|
-
* Maximum number of data points to keep
|
|
8917
|
-
*/
|
|
8918
|
-
maxDataPoints: number;
|
|
8919
|
-
/**
|
|
8920
|
-
* Whether to auto-scroll to latest data
|
|
8921
|
-
*/
|
|
8922
|
-
autoScroll: boolean;
|
|
8923
|
-
/**
|
|
8924
|
-
* Buffer size for smooth updates
|
|
8925
|
-
*/
|
|
8926
|
-
bufferSize?: number;
|
|
8927
|
-
};
|
|
8928
|
-
/**
|
|
8929
|
-
* Data source function that returns new data points
|
|
8930
|
-
*/
|
|
8931
|
-
dataSource?: () => Promise<{
|
|
8932
|
-
label: string;
|
|
8933
|
-
value: number;
|
|
8934
|
-
timestamp?: number;
|
|
8935
|
-
}[]>;
|
|
8936
|
-
/**
|
|
8937
|
-
* WebSocket URL for real-time data
|
|
8938
|
-
*/
|
|
8939
|
-
websocketUrl?: string;
|
|
8940
|
-
/**
|
|
8941
|
-
* Callback when new data arrives
|
|
8942
|
-
*/
|
|
8943
|
-
onDataUpdate?: (newData: any[]) => void;
|
|
8944
|
-
/**
|
|
8945
|
-
* Performance monitoring
|
|
8946
|
-
*/
|
|
8947
|
-
enablePerformanceMonitoring?: boolean;
|
|
8948
|
-
}
|
|
8949
|
-
declare const RealTimeChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<RealTimeChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8950
|
-
|
|
8951
|
-
interface ScatterDataPoint {
|
|
8952
|
-
label: string;
|
|
8953
|
-
value: number;
|
|
8954
|
-
x?: number;
|
|
8955
|
-
y?: number;
|
|
8956
|
-
size?: number;
|
|
8957
|
-
color?: string;
|
|
8958
|
-
}
|
|
8959
9298
|
interface ScatterChartProps extends Omit<ChartProps, 'type'> {
|
|
8960
9299
|
/**
|
|
8961
9300
|
* Scatter chart specific options
|
|
@@ -9022,24 +9361,20 @@ interface TreemapChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
9022
9361
|
*/
|
|
9023
9362
|
palette?: string[];
|
|
9024
9363
|
/**
|
|
9025
|
-
*
|
|
9364
|
+
* Whether to use gradients
|
|
9026
9365
|
*/
|
|
9027
|
-
|
|
9366
|
+
useGradients?: boolean;
|
|
9028
9367
|
};
|
|
9029
|
-
/**
|
|
9030
|
-
* Whether to show labels
|
|
9031
|
-
*/
|
|
9032
|
-
showLabels?: boolean;
|
|
9033
|
-
/**
|
|
9034
|
-
* Whether to show values
|
|
9035
|
-
*/
|
|
9036
|
-
showValues?: boolean;
|
|
9037
9368
|
/**
|
|
9038
9369
|
* Label configuration
|
|
9039
9370
|
*/
|
|
9040
9371
|
labelConfig?: {
|
|
9041
9372
|
/**
|
|
9042
|
-
*
|
|
9373
|
+
* Whether to show labels
|
|
9374
|
+
*/
|
|
9375
|
+
showLabels?: boolean;
|
|
9376
|
+
/**
|
|
9377
|
+
* Minimum size for showing labels
|
|
9043
9378
|
*/
|
|
9044
9379
|
minSize?: number;
|
|
9045
9380
|
/**
|
|
@@ -9049,47 +9384,25 @@ interface TreemapChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
9049
9384
|
/**
|
|
9050
9385
|
* Text color
|
|
9051
9386
|
*/
|
|
9052
|
-
|
|
9053
|
-
};
|
|
9054
|
-
/**
|
|
9055
|
-
* Border configuration
|
|
9056
|
-
*/
|
|
9057
|
-
borderConfig?: {
|
|
9058
|
-
/**
|
|
9059
|
-
* Border width
|
|
9060
|
-
*/
|
|
9061
|
-
width?: number;
|
|
9062
|
-
/**
|
|
9063
|
-
* Border color
|
|
9064
|
-
*/
|
|
9065
|
-
color?: string;
|
|
9066
|
-
/**
|
|
9067
|
-
* Border radius
|
|
9068
|
-
*/
|
|
9069
|
-
radius?: number;
|
|
9387
|
+
textColor?: string;
|
|
9070
9388
|
};
|
|
9071
9389
|
/**
|
|
9072
|
-
*
|
|
9390
|
+
* Interaction configuration
|
|
9073
9391
|
*/
|
|
9074
|
-
|
|
9392
|
+
interactionConfig?: {
|
|
9075
9393
|
/**
|
|
9076
|
-
*
|
|
9394
|
+
* Whether to enable tooltips
|
|
9077
9395
|
*/
|
|
9078
|
-
|
|
9396
|
+
enableTooltips?: boolean;
|
|
9079
9397
|
/**
|
|
9080
|
-
*
|
|
9398
|
+
* Whether to enable zoom
|
|
9081
9399
|
*/
|
|
9082
|
-
|
|
9400
|
+
enableZoom?: boolean;
|
|
9083
9401
|
/**
|
|
9084
|
-
*
|
|
9402
|
+
* Whether to enable selection
|
|
9085
9403
|
*/
|
|
9086
|
-
|
|
9404
|
+
enableSelection?: boolean;
|
|
9087
9405
|
};
|
|
9088
|
-
/**
|
|
9089
|
-
* Interaction handlers
|
|
9090
|
-
*/
|
|
9091
|
-
onNodeClick?: (node: TreemapNode) => void;
|
|
9092
|
-
onNodeHover?: (node: TreemapNode | null) => void;
|
|
9093
9406
|
}
|
|
9094
9407
|
declare const TreemapChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<TreemapChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
9095
9408
|
|
|
@@ -9178,8 +9491,38 @@ interface WaterfallChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
9178
9491
|
}
|
|
9179
9492
|
declare const WaterfallChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<WaterfallChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
9180
9493
|
|
|
9494
|
+
type ColorMode = 'light' | 'dark';
|
|
9181
9495
|
interface ColorModeToggleProps {
|
|
9496
|
+
/** Additional CSS class names */
|
|
9182
9497
|
className?: string;
|
|
9498
|
+
/** Inline styles */
|
|
9499
|
+
style?: react__default.CSSProperties;
|
|
9500
|
+
/** Controlled mode value */
|
|
9501
|
+
value?: ColorMode;
|
|
9502
|
+
/** Default mode (uncontrolled) */
|
|
9503
|
+
defaultValue?: ColorMode;
|
|
9504
|
+
/** Callback when mode changes */
|
|
9505
|
+
onChange?: (mode: ColorMode) => void;
|
|
9506
|
+
/** Custom light mode icon */
|
|
9507
|
+
lightIcon?: react__default.ReactNode;
|
|
9508
|
+
/** Custom dark mode icon */
|
|
9509
|
+
darkIcon?: react__default.ReactNode;
|
|
9510
|
+
/** Size variant */
|
|
9511
|
+
size?: 'sm' | 'md' | 'lg';
|
|
9512
|
+
/** Disable the toggle */
|
|
9513
|
+
disabled?: boolean;
|
|
9514
|
+
/** localStorage key for persistence */
|
|
9515
|
+
storageKey?: string;
|
|
9516
|
+
/** data attribute name for body element */
|
|
9517
|
+
dataAttribute?: string;
|
|
9518
|
+
/** Disable localStorage persistence */
|
|
9519
|
+
disableStorage?: boolean;
|
|
9520
|
+
/** Disable system preference detection */
|
|
9521
|
+
disableSystemPreference?: boolean;
|
|
9522
|
+
/** Custom aria-label */
|
|
9523
|
+
'aria-label'?: string;
|
|
9524
|
+
/** Show tooltip */
|
|
9525
|
+
showTooltip?: boolean;
|
|
9183
9526
|
}
|
|
9184
9527
|
declare const ColorModeToggle: react__default.FC<ColorModeToggleProps>;
|
|
9185
9528
|
|
|
@@ -9194,6 +9537,8 @@ interface CountdownProps {
|
|
|
9194
9537
|
focused?: boolean;
|
|
9195
9538
|
/** Custom className */
|
|
9196
9539
|
className?: string;
|
|
9540
|
+
/** Custom style */
|
|
9541
|
+
style?: react__default.CSSProperties;
|
|
9197
9542
|
/** Optional callback when countdown reaches zero */
|
|
9198
9543
|
onComplete?: () => void;
|
|
9199
9544
|
}
|
|
@@ -9313,7 +9658,9 @@ declare const Footer: react__default.ForwardRefExoticComponent<FooterProps & rea
|
|
|
9313
9658
|
* </FooterSection>
|
|
9314
9659
|
* ```
|
|
9315
9660
|
*/
|
|
9316
|
-
declare const FooterSection: react__default.ForwardRefExoticComponent<FooterSectionProps &
|
|
9661
|
+
declare const FooterSection: react__default.ForwardRefExoticComponent<FooterSectionProps & {
|
|
9662
|
+
showNewsletter?: boolean;
|
|
9663
|
+
} & react__default.RefAttributes<HTMLDivElement>>;
|
|
9317
9664
|
|
|
9318
9665
|
/**
|
|
9319
9666
|
* FooterLink component provides styled links for use within footer sections.
|
|
@@ -9565,6 +9912,10 @@ interface ProductReviewProps {
|
|
|
9565
9912
|
* Additional CSS class
|
|
9566
9913
|
*/
|
|
9567
9914
|
className?: string;
|
|
9915
|
+
/**
|
|
9916
|
+
* Inline style for the component
|
|
9917
|
+
*/
|
|
9918
|
+
style?: react__default.CSSProperties;
|
|
9568
9919
|
}
|
|
9569
9920
|
/**
|
|
9570
9921
|
* ProductReview component for collecting user ratings and feedback
|
|
@@ -9650,6 +10001,10 @@ interface SectionIntroProps {
|
|
|
9650
10001
|
* Additional CSS class
|
|
9651
10002
|
*/
|
|
9652
10003
|
className?: string;
|
|
10004
|
+
/**
|
|
10005
|
+
* Custom style for the section intro
|
|
10006
|
+
*/
|
|
10007
|
+
style?: react__default.CSSProperties;
|
|
9653
10008
|
}
|
|
9654
10009
|
/**
|
|
9655
10010
|
* SectionIntro component for introducing content sections with titles, descriptions, and optional imagery
|
|
@@ -9695,6 +10050,10 @@ interface StepsProps {
|
|
|
9695
10050
|
* Additional CSS class
|
|
9696
10051
|
*/
|
|
9697
10052
|
className?: string;
|
|
10053
|
+
/**
|
|
10054
|
+
* Inline style for the component
|
|
10055
|
+
*/
|
|
10056
|
+
style?: react__default.CSSProperties;
|
|
9698
10057
|
/**
|
|
9699
10058
|
* Glass morphism effect for the steps component
|
|
9700
10059
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
@@ -9741,6 +10100,10 @@ interface TabProps {
|
|
|
9741
10100
|
* Additional CSS class for the tab component
|
|
9742
10101
|
*/
|
|
9743
10102
|
className?: string;
|
|
10103
|
+
/**
|
|
10104
|
+
* Custom style for the tab component
|
|
10105
|
+
*/
|
|
10106
|
+
style?: react__default.CSSProperties;
|
|
9744
10107
|
/**
|
|
9745
10108
|
* Glass morphism effect for the tab component
|
|
9746
10109
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
@@ -9791,6 +10154,10 @@ interface TestimonialProps {
|
|
|
9791
10154
|
* Additional CSS class
|
|
9792
10155
|
*/
|
|
9793
10156
|
className?: string;
|
|
10157
|
+
/**
|
|
10158
|
+
* Custom style for the testimonial
|
|
10159
|
+
*/
|
|
10160
|
+
style?: react__default.CSSProperties;
|
|
9794
10161
|
}
|
|
9795
10162
|
/**
|
|
9796
10163
|
* Testimonial component for displaying customer quotes and feedback
|
|
@@ -9820,6 +10187,10 @@ interface ToggleProps {
|
|
|
9820
10187
|
* Additional CSS class for the toggle
|
|
9821
10188
|
*/
|
|
9822
10189
|
className?: string;
|
|
10190
|
+
/**
|
|
10191
|
+
* Inline style for the component
|
|
10192
|
+
*/
|
|
10193
|
+
style?: react__default.CSSProperties;
|
|
9823
10194
|
/**
|
|
9824
10195
|
* Glass morphism effect for the toggle
|
|
9825
10196
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
@@ -9852,6 +10223,10 @@ interface TooltipProps {
|
|
|
9852
10223
|
* Additional CSS class for the tooltip
|
|
9853
10224
|
*/
|
|
9854
10225
|
className?: string;
|
|
10226
|
+
/**
|
|
10227
|
+
* Inline style for the component
|
|
10228
|
+
*/
|
|
10229
|
+
style?: react__default.CSSProperties;
|
|
9855
10230
|
/**
|
|
9856
10231
|
* Delay before showing the tooltip (in milliseconds)
|
|
9857
10232
|
*/
|
|
@@ -9873,6 +10248,10 @@ interface UploadProps {
|
|
|
9873
10248
|
* Whether the upload component is disabled
|
|
9874
10249
|
*/
|
|
9875
10250
|
disabled?: boolean;
|
|
10251
|
+
/**
|
|
10252
|
+
* Size variant of the upload component
|
|
10253
|
+
*/
|
|
10254
|
+
size?: 'sm' | 'md' | 'lg';
|
|
9876
10255
|
/**
|
|
9877
10256
|
* Maximum file size in MB
|
|
9878
10257
|
*/
|
|
@@ -9925,6 +10304,10 @@ interface UploadProps {
|
|
|
9925
10304
|
* Additional CSS class
|
|
9926
10305
|
*/
|
|
9927
10306
|
className?: string;
|
|
10307
|
+
/**
|
|
10308
|
+
* Custom style for the upload component
|
|
10309
|
+
*/
|
|
10310
|
+
style?: react__default.CSSProperties;
|
|
9928
10311
|
}
|
|
9929
10312
|
/**
|
|
9930
10313
|
* Upload component for file uploads with drag and drop
|
|
@@ -9962,6 +10345,14 @@ interface GridProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
9962
10345
|
* No gutters between columns
|
|
9963
10346
|
*/
|
|
9964
10347
|
noGutters?: boolean;
|
|
10348
|
+
/**
|
|
10349
|
+
* Flex direction
|
|
10350
|
+
*/
|
|
10351
|
+
direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
10352
|
+
/**
|
|
10353
|
+
* Wrap behavior
|
|
10354
|
+
*/
|
|
10355
|
+
wrap?: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
9965
10356
|
}
|
|
9966
10357
|
/**
|
|
9967
10358
|
* Grid component for creating responsive layouts.
|
|
@@ -9990,27 +10381,27 @@ interface GridColProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
9990
10381
|
/**
|
|
9991
10382
|
* Number of columns to span at extra small breakpoint (default)
|
|
9992
10383
|
*/
|
|
9993
|
-
xs?: number | 'auto';
|
|
10384
|
+
xs?: number | 'auto' | boolean;
|
|
9994
10385
|
/**
|
|
9995
10386
|
* Number of columns to span at small breakpoint
|
|
9996
10387
|
*/
|
|
9997
|
-
sm?: number | 'auto';
|
|
10388
|
+
sm?: number | 'auto' | boolean;
|
|
9998
10389
|
/**
|
|
9999
10390
|
* Number of columns to span at medium breakpoint
|
|
10000
10391
|
*/
|
|
10001
|
-
md?: number | 'auto';
|
|
10392
|
+
md?: number | 'auto' | boolean;
|
|
10002
10393
|
/**
|
|
10003
10394
|
* Number of columns to span at large breakpoint
|
|
10004
10395
|
*/
|
|
10005
|
-
lg?: number | 'auto';
|
|
10396
|
+
lg?: number | 'auto' | boolean;
|
|
10006
10397
|
/**
|
|
10007
10398
|
* Number of columns to span at extra large breakpoint
|
|
10008
10399
|
*/
|
|
10009
|
-
xl?: number | 'auto';
|
|
10400
|
+
xl?: number | 'auto' | boolean;
|
|
10010
10401
|
/**
|
|
10011
10402
|
* Number of columns to span at extra extra large breakpoint
|
|
10012
10403
|
*/
|
|
10013
|
-
xxl?: number | 'auto';
|
|
10404
|
+
xxl?: number | 'auto' | boolean;
|
|
10014
10405
|
/**
|
|
10015
10406
|
* Offset at extra small breakpoint
|
|
10016
10407
|
*/
|
|
@@ -10035,6 +10426,22 @@ interface GridColProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
10035
10426
|
* Offset at extra extra large breakpoint
|
|
10036
10427
|
*/
|
|
10037
10428
|
offsetXxl?: number;
|
|
10429
|
+
/**
|
|
10430
|
+
* Flex grow property
|
|
10431
|
+
*/
|
|
10432
|
+
grow?: boolean;
|
|
10433
|
+
/**
|
|
10434
|
+
* Flex shrink property
|
|
10435
|
+
*/
|
|
10436
|
+
shrink?: boolean;
|
|
10437
|
+
/**
|
|
10438
|
+
* Flex basis property
|
|
10439
|
+
*/
|
|
10440
|
+
basis?: string;
|
|
10441
|
+
/**
|
|
10442
|
+
* Alignment of the column
|
|
10443
|
+
*/
|
|
10444
|
+
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
|
|
10038
10445
|
}
|
|
10039
10446
|
/**
|
|
10040
10447
|
* GridCol component for creating columns within a Grid.
|
|
@@ -10193,30 +10600,29 @@ declare namespace layouts {
|
|
|
10193
10600
|
}
|
|
10194
10601
|
|
|
10195
10602
|
declare const atomix: {
|
|
10196
|
-
|
|
10197
|
-
|
|
10198
|
-
|
|
10199
|
-
|
|
10200
|
-
|
|
10201
|
-
|
|
10202
|
-
|
|
10203
|
-
|
|
10204
|
-
|
|
10205
|
-
|
|
10206
|
-
|
|
10207
|
-
|
|
10208
|
-
|
|
10209
|
-
|
|
10210
|
-
|
|
10211
|
-
|
|
10212
|
-
|
|
10213
|
-
|
|
10214
|
-
|
|
10215
|
-
|
|
10216
|
-
|
|
10217
|
-
|
|
10218
|
-
|
|
10219
|
-
readonly ChartRenderer: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
|
|
10603
|
+
composables: typeof __lib_composables;
|
|
10604
|
+
utils: typeof __lib_utils;
|
|
10605
|
+
constants: typeof __lib_constants;
|
|
10606
|
+
types: typeof __lib_types;
|
|
10607
|
+
layouts: typeof layouts;
|
|
10608
|
+
Accordion: react.FC<AccordionProps>;
|
|
10609
|
+
AtomixLogo: react.FC<AtomixLogoProps>;
|
|
10610
|
+
AtomixGlass: typeof AtomixGlass;
|
|
10611
|
+
Avatar: react.FC<AvatarProps>;
|
|
10612
|
+
AvatarGroup: react.FC<AvatarGroupProps>;
|
|
10613
|
+
Badge: react.FC<BadgeProps>;
|
|
10614
|
+
Block: react.ForwardRefExoticComponent<BlockProps & react.RefAttributes<HTMLDivElement>>;
|
|
10615
|
+
Breadcrumb: react.FC<BreadcrumbProps>;
|
|
10616
|
+
Button: react.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
10617
|
+
Callout: react.FC<CalloutProps>;
|
|
10618
|
+
Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>>;
|
|
10619
|
+
AnimatedChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AnimatedChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10620
|
+
AreaChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AreaChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10621
|
+
BarChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<BarChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10622
|
+
BubbleChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<BubbleChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10623
|
+
CandlestickChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<CandlestickChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10624
|
+
Chart: react.MemoExoticComponent<react.ForwardRefExoticComponent<ChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10625
|
+
ChartRenderer: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
|
|
10220
10626
|
datasets: ChartProps$1["datasets"];
|
|
10221
10627
|
config?: ChartProps$1["config"];
|
|
10222
10628
|
width?: number;
|
|
@@ -10226,89 +10632,68 @@ declare const atomix: {
|
|
|
10226
10632
|
enableRealTime?: boolean;
|
|
10227
10633
|
enableAccessibility?: boolean;
|
|
10228
10634
|
enablePerformanceOptimization?: boolean;
|
|
10229
|
-
renderContent: (params:
|
|
10230
|
-
scales: any;
|
|
10231
|
-
colors: string[];
|
|
10232
|
-
datasets: any[];
|
|
10233
|
-
interactionState: any;
|
|
10234
|
-
handlers: {
|
|
10235
|
-
onDataPointClick?: ChartProps$1["onDataPointClick"];
|
|
10236
|
-
onPointHover: (datasetIndex: number, pointIndex: number, x: number, y: number, clientX: number, clientY: number) => void;
|
|
10237
|
-
onPointLeave: () => void;
|
|
10238
|
-
onMouseMove: (event: React.MouseEvent<SVGSVGElement>) => void;
|
|
10239
|
-
onMouseDown: (event: React.MouseEvent<SVGSVGElement>) => void;
|
|
10240
|
-
onMouseUp: () => void;
|
|
10241
|
-
onWheel: (event: React.WheelEvent<SVGSVGElement>) => void;
|
|
10242
|
-
};
|
|
10243
|
-
accessibility: {
|
|
10244
|
-
announcement: string;
|
|
10245
|
-
focusedPoint: {
|
|
10246
|
-
datasetIndex: number;
|
|
10247
|
-
pointIndex: number;
|
|
10248
|
-
};
|
|
10249
|
-
getAccessibleDescription: () => string;
|
|
10250
|
-
};
|
|
10251
|
-
}) => React.ReactNode;
|
|
10635
|
+
renderContent: (params: ChartRenderContentParams) => React.ReactNode;
|
|
10252
10636
|
} & react.RefAttributes<SVGSVGElement>>>;
|
|
10253
|
-
|
|
10254
|
-
|
|
10255
|
-
|
|
10256
|
-
|
|
10257
|
-
|
|
10258
|
-
|
|
10259
|
-
|
|
10260
|
-
|
|
10261
|
-
|
|
10262
|
-
|
|
10263
|
-
|
|
10264
|
-
|
|
10265
|
-
|
|
10266
|
-
|
|
10267
|
-
|
|
10268
|
-
|
|
10269
|
-
|
|
10270
|
-
|
|
10271
|
-
|
|
10272
|
-
|
|
10273
|
-
|
|
10274
|
-
|
|
10275
|
-
|
|
10276
|
-
|
|
10277
|
-
|
|
10278
|
-
|
|
10279
|
-
|
|
10280
|
-
|
|
10281
|
-
|
|
10282
|
-
|
|
10283
|
-
|
|
10284
|
-
|
|
10285
|
-
|
|
10286
|
-
|
|
10287
|
-
|
|
10288
|
-
|
|
10289
|
-
|
|
10290
|
-
|
|
10291
|
-
|
|
10292
|
-
|
|
10293
|
-
|
|
10294
|
-
|
|
10295
|
-
|
|
10296
|
-
|
|
10297
|
-
|
|
10298
|
-
|
|
10299
|
-
|
|
10300
|
-
|
|
10301
|
-
|
|
10302
|
-
|
|
10303
|
-
|
|
10304
|
-
|
|
10305
|
-
|
|
10306
|
-
|
|
10307
|
-
|
|
10308
|
-
|
|
10309
|
-
|
|
10310
|
-
|
|
10637
|
+
DonutChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<DonutChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10638
|
+
FunnelChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<FunnelChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10639
|
+
GaugeChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<GaugeChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10640
|
+
HeatmapChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<HeatmapChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10641
|
+
LineChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<LineChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10642
|
+
MultiAxisChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<MultiAxisChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10643
|
+
PieChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<PieChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10644
|
+
RadarChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<RadarChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10645
|
+
ScatterChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<ScatterChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10646
|
+
TreemapChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<TreemapChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10647
|
+
WaterfallChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<WaterfallChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10648
|
+
ColorModeToggle: react.FC<ColorModeToggleProps>;
|
|
10649
|
+
Countdown: react.FC<CountdownProps>;
|
|
10650
|
+
DataTable: react.FC<DataTableProps>;
|
|
10651
|
+
DatePicker: react.ForwardRefExoticComponent<DatePickerProps & react.RefAttributes<DatePickerRef>>;
|
|
10652
|
+
Dropdown: react.FC<DropdownProps>;
|
|
10653
|
+
EdgePanel: react.FC<EdgePanelProps>;
|
|
10654
|
+
Checkbox: react.FC<CheckboxProps>;
|
|
10655
|
+
Footer: react.ForwardRefExoticComponent<FooterProps & react.RefAttributes<HTMLElement>>;
|
|
10656
|
+
FooterSection: react.ForwardRefExoticComponent<FooterSectionProps & {
|
|
10657
|
+
showNewsletter?: boolean;
|
|
10658
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
10659
|
+
FooterLink: react.ForwardRefExoticComponent<FooterLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
10660
|
+
FooterSocialLink: react.ForwardRefExoticComponent<FooterSocialLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
10661
|
+
Form: react.FC<FormProps>;
|
|
10662
|
+
FormGroup: react.FC<FormGroupProps>;
|
|
10663
|
+
Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
10664
|
+
Radio: react.FC<RadioProps>;
|
|
10665
|
+
Select: react.FC<SelectProps>;
|
|
10666
|
+
Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
10667
|
+
Hero: react.FC<HeroProps>;
|
|
10668
|
+
Icon: react.FC<IconProps>;
|
|
10669
|
+
List: react.FC<ListProps>;
|
|
10670
|
+
Messages: react.FC<MessagesProps>;
|
|
10671
|
+
Modal: react.FC<ModalProps>;
|
|
10672
|
+
Nav: react.ForwardRefExoticComponent<NavProps & react.RefAttributes<HTMLUListElement>>;
|
|
10673
|
+
NavItem: react.ForwardRefExoticComponent<NavItemProps & react.RefAttributes<HTMLLIElement>>;
|
|
10674
|
+
Navbar: react.ForwardRefExoticComponent<NavbarProps & react.RefAttributes<HTMLElement>>;
|
|
10675
|
+
SideMenu: react.ForwardRefExoticComponent<SideMenuProps & react.RefAttributes<HTMLDivElement>>;
|
|
10676
|
+
SideMenuItem: react.ForwardRefExoticComponent<SideMenuItemProps & react.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
10677
|
+
SideMenuList: react.ForwardRefExoticComponent<SideMenuListProps & react.RefAttributes<HTMLUListElement>>;
|
|
10678
|
+
Pagination: react.FC<PaginationProps>;
|
|
10679
|
+
PhotoViewer: react.FC<PhotoViewerProps>;
|
|
10680
|
+
Popover: react.FC<PopoverProps>;
|
|
10681
|
+
ProductReview: react.FC<ProductReviewProps>;
|
|
10682
|
+
Progress: react.ForwardRefExoticComponent<ProgressProps & react.RefAttributes<HTMLDivElement>>;
|
|
10683
|
+
Rating: react.ForwardRefExoticComponent<RatingProps & react.RefAttributes<HTMLDivElement>>;
|
|
10684
|
+
River: react.FC<RiverProps>;
|
|
10685
|
+
SectionIntro: react.FC<SectionIntroProps>;
|
|
10686
|
+
Slider: react.ForwardRefExoticComponent<SliderProps & react.RefAttributes<HTMLDivElement>>;
|
|
10687
|
+
Spinner: react.FC<SpinnerProps>;
|
|
10688
|
+
Steps: react.FC<StepsProps>;
|
|
10689
|
+
Tab: react.FC<TabProps>;
|
|
10690
|
+
Testimonial: react.FC<TestimonialProps>;
|
|
10691
|
+
Todo: react.FC<TodoProps>;
|
|
10692
|
+
Toggle: react.FC<ToggleProps>;
|
|
10693
|
+
Tooltip: react.FC<TooltipProps>;
|
|
10694
|
+
Upload: react.FC<UploadProps>;
|
|
10695
|
+
VideoPlayer: react.ForwardRefExoticComponent<VideoPlayerProps & react.RefAttributes<HTMLVideoElement>>;
|
|
10311
10696
|
};
|
|
10312
10697
|
|
|
10313
|
-
export { Accordion,
|
|
10314
|
-
export type { AccordionProps,
|
|
10698
|
+
export { Accordion, AnimatedChart, AreaChart, AtomixGlass, AtomixLogo, Avatar, AvatarGroup, Badge, BarChart, Block, Breadcrumb, BubbleChart, Button, Callout, CandlestickChart, Card, Chart, ChartRenderer, Checkbox, ColorModeToggle, Container, Countdown, DataTable, DatePicker, DonutChart, Dropdown, EdgePanel, Footer, FooterLink, FooterSection, FooterSocialLink, Form, FormGroup, FunnelChart, GaugeChart, Grid, GridCol, HeatmapChart, Hero, Icon, Input, LineChart, List, MasonryGrid, MasonryGridItem, Messages, Modal, MultiAxisChart, Nav, NavItem, Navbar, Pagination, PhotoViewer, PieChart, Popover, ProductReview, Progress, RadarChart, Radio, Rating, River, Row, ScatterChart, SectionIntro, Select, SideMenu, SideMenuItem, SideMenuList, Slider, Spinner, Steps, Tab, Testimonial, Textarea, Todo, Toggle, Tooltip, TreemapChart, Upload, VideoPlayer, WaterfallChart, composables, constants, atomix as default, types, utils };
|
|
10699
|
+
export type { AccordionProps, AnimatedChartProps, AreaChartProps, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarProps, BadgeProps, BarChartProps, BlockProps, BreadcrumbProps, BubbleChartProps, BubbleDataPoint, ButtonProps, CalloutProps, CandlestickChartProps, CandlestickDataPoint, CardProps, ChartProps, CheckboxProps, ColorModeToggleProps, ContainerProps, CountdownProps, DataTableProps, DatePickerProps, DonutChartProps, DropdownProps, EdgePanelProps, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroProps, IconProps, InputProps, LineChartProps, ListProps, MasonryGridItemProps, MasonryGridProps, MessagesProps, ModalProps, MultiAxisChartProps, NavItemProps, NavProps, NavbarProps, PaginationProps, PhotoViewerProps, PieChartProps, PopoverProps, ProductReviewProps, ProgressProps, RadarChartProps, RadioProps, RatingProps, RiverProps, RowProps, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectProps, SideMenuItemProps, SideMenuListProps, SideMenuProps, SliderProps, SocialLink, SocialPlatform, SpinnerProps, StepsProps, TabProps, TestimonialProps, TextareaProps, TodoProps, ToggleProps, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, VideoPlayerProps, WaterfallChartProps, WaterfallDataPoint };
|