@shohojdhara/atomix 0.2.3 → 0.2.5
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 +1703 -1544
- package/dist/atomix.min.css +4 -4
- package/dist/index.d.ts +1465 -963
- package/dist/index.esm.js +16289 -25908
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +15650 -21780
- 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 +15008 -0
- package/dist/themes/applemix.min.css +72 -0
- package/dist/themes/boomdevs.css +1608 -1450
- package/dist/themes/boomdevs.min.css +5 -5
- package/dist/themes/esrar.css +1702 -1543
- package/dist/themes/esrar.min.css +4 -4
- package/dist/themes/flashtrade.css +15159 -0
- package/dist/themes/flashtrade.min.css +86 -0
- package/dist/themes/mashroom.css +1699 -1540
- package/dist/themes/mashroom.min.css +7 -7
- package/dist/themes/shaj-default.css +1693 -1534
- package/dist/themes/shaj-default.min.css +4 -4
- package/package.json +6 -17
- package/src/components/Accordion/Accordion.stories.tsx +662 -21
- package/src/components/Accordion/Accordion.tsx +21 -14
- package/src/components/AtomixGlass/AtomixGlass.test.tsx +106 -72
- package/src/components/AtomixGlass/AtomixGlass.tsx +529 -1195
- package/src/components/AtomixGlass/AtomixGlassContainer.tsx +400 -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 +792 -68
- package/src/components/AtomixGlass/stories/AtomixGlass.stories.tsx +1250 -0
- package/src/components/AtomixGlass/stories/Examples.stories.tsx +5768 -0
- package/src/components/AtomixGlass/stories/Modes.stories.tsx +1065 -0
- package/src/components/AtomixGlass/stories/Playground.stories.tsx +1129 -0
- package/src/components/AtomixGlass/stories/ShaderVariants.stories.tsx +395 -0
- package/src/components/AtomixGlass/stories/shared-components.tsx +301 -0
- 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 +76 -55
- package/src/components/Badge/Badge.tsx +12 -14
- package/src/components/Breadcrumb/Breadcrumb.tsx +23 -4
- package/src/components/Button/Button.stories.tsx +501 -20
- package/src/components/Button/Button.tsx +5 -8
- package/src/components/Callout/Callout.stories.tsx +86 -35
- package/src/components/Callout/Callout.tsx +31 -9
- package/src/components/Card/Card.stories.tsx +565 -2
- 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.tsx +6 -3
- package/src/components/Countdown/Countdown.tsx +4 -0
- package/src/components/DataTable/DataTable.tsx +2 -1
- package/src/components/DatePicker/DatePicker.stories.tsx +689 -12
- 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 +473 -2
- package/src/components/EdgePanel/EdgePanel.tsx +101 -13
- 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.stories.tsx +113 -0
- package/src/components/Messages/Messages.tsx +52 -9
- package/src/components/Modal/Modal.stories.tsx +48 -32
- package/src/components/Modal/Modal.tsx +19 -24
- package/src/components/Navigation/Menu/MegaMenu.tsx +2 -2
- package/src/components/Navigation/Menu/Menu.tsx +2 -2
- package/src/components/Navigation/Nav/Nav.stories.tsx +469 -0
- package/src/components/Navigation/Nav/Nav.tsx +22 -4
- package/src/components/Navigation/Nav/NavDropdown.tsx +10 -1
- package/src/components/Navigation/Navbar/Navbar.stories.tsx +413 -0
- package/src/components/Navigation/Navbar/Navbar.tsx +70 -29
- package/src/components/Navigation/SideMenu/SideMenu.stories.tsx +340 -0
- package/src/components/Navigation/SideMenu/SideMenu.tsx +29 -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 +19 -3
- 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 +19 -3
- 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 +21 -4
- package/src/lib/composables/useChart.ts +227 -370
- package/src/lib/composables/useChartExport.ts +19 -78
- package/src/lib/composables/useChartToolbar.ts +11 -21
- package/src/lib/composables/useEdgePanel.ts +125 -71
- package/src/lib/composables/useFooter.ts +3 -3
- package/src/lib/composables/useGlassContainer.ts +16 -7
- package/src/lib/composables/useLineChart.ts +11 -2
- package/src/lib/composables/usePieChart.ts +4 -14
- 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 +147 -32
- package/src/lib/types/components.ts +355 -25
- 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 +0 -3
- 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.edge-panel.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 +91 -48
- 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 +249 -0
- package/src/styles/06-components/_components.badge.scss +8 -23
- package/src/styles/06-components/_components.button.scss +8 -3
- package/src/styles/06-components/_components.callout.scss +10 -5
- 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.dropdown.scss +19 -7
- package/src/styles/06-components/_components.edge-panel.scss +103 -0
- 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.messages.scss +176 -0
- package/src/styles/06-components/_components.modal.scss +16 -4
- package/src/styles/06-components/_components.navbar.scss +12 -1
- package/src/styles/06-components/_components.side-menu.scss +5 -0
- 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/_index.scss +1 -0
- package/src/styles/99-utilities/_utilities.glass-fixes.scss +1 -0
- package/src/styles/99-utilities/_utilities.scss +1 -1
- package/src/components/AtomixGlass/AtomixGlass.stories.tsx +0 -3011
- package/src/components/AtomixGlass/AtomixGlassComprehensivePreview.stories.tsx +0 -1369
- 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,49 +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
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
6
|
+
/**
|
|
7
|
+
* Displacement mode for glass effect
|
|
8
|
+
*/
|
|
9
|
+
type DisplacementMode = 'standard' | 'polar' | 'prominent' | 'shader';
|
|
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
|
|
38
71
|
*/
|
|
39
|
-
|
|
40
|
-
highContrast?: boolean;
|
|
41
|
-
disableEffects?: boolean;
|
|
72
|
+
threshold?: number;
|
|
42
73
|
/**
|
|
43
|
-
*
|
|
44
|
-
|
|
45
|
-
|
|
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
|
+
*/
|
|
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
|
+
*/
|
|
111
|
+
contrast?: number;
|
|
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;
|
|
46
150
|
}
|
|
47
|
-
declare function AtomixGlass({ children, displacementScale, blurAmount, saturation, aberrationIntensity, elasticity, cornerRadius, globalMousePos: externalGlobalMousePos, mouseOffset: externalMouseOffset, mouseContainer, className, padding, overLight, style, mode, onClick, 'aria-label': ariaLabel, 'aria-describedby': ariaDescribedBy, role, tabIndex, reducedMotion, highContrast, disableEffects, enablePerformanceMonitoring, }: AtomixGlassProps$1): react_jsx_runtime.JSX.Element;
|
|
48
|
-
|
|
49
151
|
/**
|
|
50
152
|
* AtomixGlass component props interface
|
|
51
153
|
*/
|
|
@@ -57,21 +159,19 @@ interface AtomixGlassProps {
|
|
|
57
159
|
aberrationIntensity?: number;
|
|
58
160
|
elasticity?: number;
|
|
59
161
|
cornerRadius?: number;
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
y: number;
|
|
63
|
-
};
|
|
64
|
-
mouseOffset?: {
|
|
65
|
-
x: number;
|
|
66
|
-
y: number;
|
|
67
|
-
};
|
|
162
|
+
globalMousePosition?: MousePosition;
|
|
163
|
+
mouseOffset?: MousePosition;
|
|
68
164
|
mouseContainer?: React.RefObject<HTMLElement | null> | null;
|
|
69
165
|
className?: string;
|
|
70
166
|
padding?: string;
|
|
71
167
|
style?: React.CSSProperties;
|
|
72
|
-
overLight?:
|
|
73
|
-
mode?:
|
|
168
|
+
overLight?: OverLightConfig;
|
|
169
|
+
mode?: DisplacementMode;
|
|
74
170
|
onClick?: () => void;
|
|
171
|
+
/**
|
|
172
|
+
* Shader variant for shader mode
|
|
173
|
+
*/
|
|
174
|
+
shaderVariant?: 'liquidGlass' | 'premiumGlass';
|
|
75
175
|
/**
|
|
76
176
|
* Accessibility props
|
|
77
177
|
*/
|
|
@@ -85,10 +185,35 @@ interface AtomixGlassProps {
|
|
|
85
185
|
reducedMotion?: boolean;
|
|
86
186
|
highContrast?: boolean;
|
|
87
187
|
disableEffects?: boolean;
|
|
188
|
+
enableLiquidBlur?: boolean;
|
|
189
|
+
enableBorderEffect?: boolean;
|
|
190
|
+
enableOverLightLayers?: boolean;
|
|
88
191
|
/**
|
|
89
192
|
* Performance monitoring
|
|
90
193
|
*/
|
|
91
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;
|
|
92
217
|
}
|
|
93
218
|
/**
|
|
94
219
|
* Common component size options
|
|
@@ -122,6 +247,10 @@ interface BaseComponentProps {
|
|
|
122
247
|
* Component children
|
|
123
248
|
*/
|
|
124
249
|
children?: ReactNode;
|
|
250
|
+
/**
|
|
251
|
+
* Inline style for the component root element
|
|
252
|
+
*/
|
|
253
|
+
style?: React.CSSProperties;
|
|
125
254
|
}
|
|
126
255
|
/**
|
|
127
256
|
* CSS class state modifiers
|
|
@@ -212,6 +341,10 @@ interface ButtonProps extends BaseComponentProps {
|
|
|
212
341
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
213
342
|
*/
|
|
214
343
|
glass?: AtomixGlassProps | boolean;
|
|
344
|
+
/**
|
|
345
|
+
* Custom style for the button
|
|
346
|
+
*/
|
|
347
|
+
style?: React.CSSProperties;
|
|
215
348
|
}
|
|
216
349
|
/**
|
|
217
350
|
* Badge component properties
|
|
@@ -238,6 +371,10 @@ interface BadgeProps extends BaseComponentProps {
|
|
|
238
371
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
239
372
|
*/
|
|
240
373
|
glass?: AtomixGlassProps | boolean;
|
|
374
|
+
/**
|
|
375
|
+
* Custom style for the badge
|
|
376
|
+
*/
|
|
377
|
+
style?: React.CSSProperties;
|
|
241
378
|
}
|
|
242
379
|
/**
|
|
243
380
|
* Callout component properties
|
|
@@ -280,6 +417,10 @@ interface CalloutProps extends BaseComponentProps {
|
|
|
280
417
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
281
418
|
*/
|
|
282
419
|
glass?: AtomixGlassProps | boolean;
|
|
420
|
+
/**
|
|
421
|
+
* Custom style for the callout
|
|
422
|
+
*/
|
|
423
|
+
style?: React.CSSProperties;
|
|
283
424
|
}
|
|
284
425
|
/**
|
|
285
426
|
* Accordion component properties
|
|
@@ -450,6 +591,11 @@ interface SpinnerProps extends BaseComponentProps {
|
|
|
450
591
|
* Whether the spinner should be displayed fullscreen
|
|
451
592
|
*/
|
|
452
593
|
fullscreen?: boolean;
|
|
594
|
+
/**
|
|
595
|
+
* Glass morphism effect for the spinner
|
|
596
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
597
|
+
*/
|
|
598
|
+
glass?: AtomixGlassProps | boolean;
|
|
453
599
|
}
|
|
454
600
|
/**
|
|
455
601
|
* Navbar position options
|
|
@@ -519,6 +665,11 @@ interface NavbarProps extends BaseComponentProps {
|
|
|
519
665
|
* ID for the navbar (used for accessibility)
|
|
520
666
|
*/
|
|
521
667
|
id?: string;
|
|
668
|
+
/**
|
|
669
|
+
* Enable glass morphism effect.
|
|
670
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
671
|
+
*/
|
|
672
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
522
673
|
}
|
|
523
674
|
/**
|
|
524
675
|
* Nav component properties
|
|
@@ -536,6 +687,11 @@ interface NavProps extends BaseComponentProps {
|
|
|
536
687
|
* Nav variant (including float variants)
|
|
537
688
|
*/
|
|
538
689
|
variant?: NavVariant;
|
|
690
|
+
/**
|
|
691
|
+
* Enable glass morphism effect.
|
|
692
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
693
|
+
*/
|
|
694
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
539
695
|
}
|
|
540
696
|
/**
|
|
541
697
|
* Nav item properties
|
|
@@ -708,6 +864,11 @@ interface SideMenuProps extends BaseComponentProps {
|
|
|
708
864
|
* ID for the menu (used for accessibility)
|
|
709
865
|
*/
|
|
710
866
|
id?: string;
|
|
867
|
+
/**
|
|
868
|
+
* Glass morphism effect for the side menu
|
|
869
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
870
|
+
*/
|
|
871
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
711
872
|
}
|
|
712
873
|
/**
|
|
713
874
|
* SideMenuList component properties
|
|
@@ -768,41 +929,52 @@ type EdgePanelMode = 'slide' | 'push' | 'none';
|
|
|
768
929
|
*/
|
|
769
930
|
interface EdgePanelProps extends BaseComponentProps {
|
|
770
931
|
/**
|
|
771
|
-
*
|
|
772
|
-
*/
|
|
773
|
-
title?: ReactNode;
|
|
774
|
-
/**
|
|
775
|
-
* Panel content
|
|
932
|
+
* Title of the panel
|
|
776
933
|
*/
|
|
777
|
-
|
|
934
|
+
title?: React.ReactNode;
|
|
778
935
|
/**
|
|
779
|
-
*
|
|
936
|
+
* Position of the panel
|
|
937
|
+
* @default 'start'
|
|
780
938
|
*/
|
|
781
|
-
position?:
|
|
939
|
+
position?: 'start' | 'end' | 'top' | 'bottom';
|
|
782
940
|
/**
|
|
783
941
|
* Animation mode
|
|
942
|
+
* @default 'slide'
|
|
784
943
|
*/
|
|
785
|
-
mode?:
|
|
944
|
+
mode?: 'slide' | 'push' | 'none';
|
|
786
945
|
/**
|
|
787
946
|
* Whether the panel is open
|
|
947
|
+
* @default false
|
|
788
948
|
*/
|
|
789
949
|
isOpen?: boolean;
|
|
790
950
|
/**
|
|
791
|
-
*
|
|
951
|
+
* Callback when panel open state changes
|
|
792
952
|
*/
|
|
793
953
|
onOpenChange?: (open: boolean) => void;
|
|
794
954
|
/**
|
|
795
|
-
*
|
|
955
|
+
* Whether to show backdrop
|
|
956
|
+
* @default true
|
|
796
957
|
*/
|
|
797
958
|
backdrop?: boolean;
|
|
798
959
|
/**
|
|
799
|
-
*
|
|
960
|
+
* Whether to close panel when clicking backdrop
|
|
961
|
+
* @default true
|
|
800
962
|
*/
|
|
801
963
|
closeOnBackdropClick?: boolean;
|
|
802
964
|
/**
|
|
803
|
-
*
|
|
965
|
+
* Whether to close panel when pressing Escape key
|
|
966
|
+
* @default true
|
|
804
967
|
*/
|
|
805
968
|
closeOnEscape?: boolean;
|
|
969
|
+
/**
|
|
970
|
+
* Glass effect configuration
|
|
971
|
+
* @default undefined
|
|
972
|
+
*/
|
|
973
|
+
glass?: boolean | AtomixGlassProps;
|
|
974
|
+
/**
|
|
975
|
+
* Children elements
|
|
976
|
+
*/
|
|
977
|
+
children: React.ReactNode;
|
|
806
978
|
}
|
|
807
979
|
/**
|
|
808
980
|
* DataTable column definition
|
|
@@ -902,6 +1074,11 @@ interface DataTableProps extends BaseComponentProps {
|
|
|
902
1074
|
* Callback when sorting changes
|
|
903
1075
|
*/
|
|
904
1076
|
onSort?: (sortConfig: SortConfig) => void;
|
|
1077
|
+
/**
|
|
1078
|
+
* Glass morphism effect for the data table
|
|
1079
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1080
|
+
*/
|
|
1081
|
+
glass?: AtomixGlassProps | boolean;
|
|
905
1082
|
}
|
|
906
1083
|
/**
|
|
907
1084
|
* Pagination component properties
|
|
@@ -1002,6 +1179,11 @@ interface TodoProps extends BaseComponentProps {
|
|
|
1002
1179
|
* Whether to show the completed todos
|
|
1003
1180
|
*/
|
|
1004
1181
|
showCompleted?: boolean;
|
|
1182
|
+
/**
|
|
1183
|
+
* Glass morphism effect for the todo component
|
|
1184
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1185
|
+
*/
|
|
1186
|
+
glass?: AtomixGlassProps | boolean;
|
|
1005
1187
|
}
|
|
1006
1188
|
/**
|
|
1007
1189
|
* Form component properties
|
|
@@ -1180,7 +1362,7 @@ interface InputProps extends BaseComponentProps {
|
|
|
1180
1362
|
/**
|
|
1181
1363
|
* Glass morphism effect
|
|
1182
1364
|
*/
|
|
1183
|
-
glass?: boolean | Omit<
|
|
1365
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
1184
1366
|
}
|
|
1185
1367
|
/**
|
|
1186
1368
|
* Select option
|
|
@@ -1468,7 +1650,7 @@ interface TextareaProps extends BaseComponentProps {
|
|
|
1468
1650
|
/**
|
|
1469
1651
|
* Glass morphism effect
|
|
1470
1652
|
*/
|
|
1471
|
-
glass?: boolean | Omit<
|
|
1653
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
1472
1654
|
}
|
|
1473
1655
|
/**
|
|
1474
1656
|
* Avatar size options
|
|
@@ -1506,6 +1688,15 @@ interface AvatarProps extends BaseComponentProps {
|
|
|
1506
1688
|
* Optional click handler
|
|
1507
1689
|
*/
|
|
1508
1690
|
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
1691
|
+
/**
|
|
1692
|
+
* Glass morphism effect for the avatar
|
|
1693
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1694
|
+
*/
|
|
1695
|
+
glass?: AtomixGlassProps | boolean;
|
|
1696
|
+
/**
|
|
1697
|
+
* Custom style for the avatar
|
|
1698
|
+
*/
|
|
1699
|
+
style?: React.CSSProperties;
|
|
1509
1700
|
}
|
|
1510
1701
|
/**
|
|
1511
1702
|
* Avatar Group component properties
|
|
@@ -1527,6 +1718,11 @@ interface AvatarGroupProps extends BaseComponentProps {
|
|
|
1527
1718
|
* Custom text for the "more" indicator
|
|
1528
1719
|
*/
|
|
1529
1720
|
moreText?: string;
|
|
1721
|
+
/**
|
|
1722
|
+
* Glass morphism effect for the avatar group
|
|
1723
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1724
|
+
*/
|
|
1725
|
+
glass?: AtomixGlassProps | boolean;
|
|
1530
1726
|
}
|
|
1531
1727
|
/**
|
|
1532
1728
|
* Modal component props
|
|
@@ -1627,6 +1823,11 @@ interface BreadcrumbOptions$1 {
|
|
|
1627
1823
|
* Accessible label for the breadcrumb navigation
|
|
1628
1824
|
*/
|
|
1629
1825
|
ariaLabel?: string;
|
|
1826
|
+
/**
|
|
1827
|
+
* Glass morphism effect for the breadcrumb
|
|
1828
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1829
|
+
*/
|
|
1830
|
+
glass?: AtomixGlassProps | boolean;
|
|
1630
1831
|
}
|
|
1631
1832
|
/**
|
|
1632
1833
|
* Breadcrumb instance interface
|
|
@@ -1719,6 +1920,11 @@ interface MessagesProps extends BaseComponentProps {
|
|
|
1719
1920
|
* Unique identifier for the messages component
|
|
1720
1921
|
*/
|
|
1721
1922
|
id?: string;
|
|
1923
|
+
/**
|
|
1924
|
+
* Glass morphism effect for the messages component
|
|
1925
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1926
|
+
*/
|
|
1927
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
1722
1928
|
}
|
|
1723
1929
|
/**
|
|
1724
1930
|
* Popover component properties
|
|
@@ -1754,6 +1960,10 @@ interface PopoverProps {
|
|
|
1754
1960
|
* Additional CSS class for the popover
|
|
1755
1961
|
*/
|
|
1756
1962
|
className?: string;
|
|
1963
|
+
/**
|
|
1964
|
+
* Inline style for the popover
|
|
1965
|
+
*/
|
|
1966
|
+
style?: React.CSSProperties;
|
|
1757
1967
|
/**
|
|
1758
1968
|
* Delay before showing the popover (in milliseconds)
|
|
1759
1969
|
*/
|
|
@@ -1945,6 +2155,11 @@ interface ProgressProps extends BaseComponentProps {
|
|
|
1945
2155
|
* Accessible label for screen readers
|
|
1946
2156
|
*/
|
|
1947
2157
|
ariaLabel?: string;
|
|
2158
|
+
/**
|
|
2159
|
+
* Glass morphism effect for the progress bar
|
|
2160
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
2161
|
+
*/
|
|
2162
|
+
glass?: AtomixGlassProps | boolean;
|
|
1948
2163
|
}
|
|
1949
2164
|
/**
|
|
1950
2165
|
* Rating component properties
|
|
@@ -2274,7 +2489,7 @@ interface CardProps extends BaseComponentProps {
|
|
|
2274
2489
|
* Applies a glass morphism effect to the card.
|
|
2275
2490
|
* Can be a boolean to enable with default settings, or an object with `AtomixGlassProps` to customize the effect.
|
|
2276
2491
|
*/
|
|
2277
|
-
glass?: boolean | Omit<
|
|
2492
|
+
glass?: boolean | Omit<AtomixGlassProps, 'children'>;
|
|
2278
2493
|
cardAppearance?: boolean;
|
|
2279
2494
|
/**
|
|
2280
2495
|
* Card content (body)
|
|
@@ -2283,7 +2498,7 @@ interface CardProps extends BaseComponentProps {
|
|
|
2283
2498
|
/**
|
|
2284
2499
|
* Card styles
|
|
2285
2500
|
*/
|
|
2286
|
-
|
|
2501
|
+
style?: React.CSSProperties;
|
|
2287
2502
|
/**
|
|
2288
2503
|
* Card className
|
|
2289
2504
|
*/
|
|
@@ -4064,7 +4279,7 @@ interface CodeBlockProps extends BaseComponentProps {
|
|
|
4064
4279
|
/**
|
|
4065
4280
|
* Footer layout options
|
|
4066
4281
|
*/
|
|
4067
|
-
type FooterLayout = 'columns' | 'centered' | 'minimal' | 'stacked';
|
|
4282
|
+
type FooterLayout = 'columns' | 'centered' | 'minimal' | 'stacked' | 'flexible' | 'sidebar' | 'wide';
|
|
4068
4283
|
/**
|
|
4069
4284
|
* Social media platform types
|
|
4070
4285
|
*/
|
|
@@ -4174,6 +4389,10 @@ interface FooterProps extends BaseComponentProps {
|
|
|
4174
4389
|
* Footer sections content
|
|
4175
4390
|
*/
|
|
4176
4391
|
children?: ReactNode;
|
|
4392
|
+
/**
|
|
4393
|
+
* Whether footer should be glass
|
|
4394
|
+
*/
|
|
4395
|
+
glass?: boolean;
|
|
4177
4396
|
}
|
|
4178
4397
|
/**
|
|
4179
4398
|
* Footer section component properties
|
|
@@ -4195,6 +4414,10 @@ interface FooterSectionProps extends BaseComponentProps {
|
|
|
4195
4414
|
* Whether section is collapsed by default
|
|
4196
4415
|
*/
|
|
4197
4416
|
defaultCollapsed?: boolean;
|
|
4417
|
+
/**
|
|
4418
|
+
* Whether newsletter is shown in the footer
|
|
4419
|
+
*/
|
|
4420
|
+
showNewsletter?: boolean;
|
|
4198
4421
|
/**
|
|
4199
4422
|
* Section content
|
|
4200
4423
|
*/
|
|
@@ -4266,6 +4489,13 @@ interface FooterSocialLinkProps extends BaseComponentProps {
|
|
|
4266
4489
|
* Glass container displacement modes
|
|
4267
4490
|
*/
|
|
4268
4491
|
type GlassMode = 'standard' | 'polar' | 'prominent' | 'shader';
|
|
4492
|
+
/**
|
|
4493
|
+
* Glass component size dimensions
|
|
4494
|
+
*/
|
|
4495
|
+
interface GlassSize {
|
|
4496
|
+
width: number;
|
|
4497
|
+
height: number;
|
|
4498
|
+
}
|
|
4269
4499
|
/**
|
|
4270
4500
|
* Glass container size configuration
|
|
4271
4501
|
*/
|
|
@@ -4279,6 +4509,13 @@ interface GlassSize {
|
|
|
4279
4509
|
*/
|
|
4280
4510
|
height: number;
|
|
4281
4511
|
}
|
|
4512
|
+
/**
|
|
4513
|
+
* Mouse position coordinates
|
|
4514
|
+
*/
|
|
4515
|
+
interface MousePosition {
|
|
4516
|
+
x: number;
|
|
4517
|
+
y: number;
|
|
4518
|
+
}
|
|
4282
4519
|
/**
|
|
4283
4520
|
* Mouse position coordinates
|
|
4284
4521
|
*/
|
|
@@ -4506,6 +4743,10 @@ interface DatePickerProps {
|
|
|
4506
4743
|
* @default false
|
|
4507
4744
|
*/
|
|
4508
4745
|
glass?: boolean | AtomixGlassProps;
|
|
4746
|
+
/**
|
|
4747
|
+
* Custom style for the datepicker component
|
|
4748
|
+
*/
|
|
4749
|
+
style?: react__default.CSSProperties;
|
|
4509
4750
|
}
|
|
4510
4751
|
interface DatePickerRef {
|
|
4511
4752
|
/**
|
|
@@ -4526,90 +4767,427 @@ interface DatePickerRef {
|
|
|
4526
4767
|
focus: () => void;
|
|
4527
4768
|
}
|
|
4528
4769
|
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
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
|
+
};
|
|
4789
|
+
}
|
|
4536
4790
|
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
type
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
type
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
type
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4791
|
+
/**
|
|
4792
|
+
* Chart types - comprehensive list
|
|
4793
|
+
*/
|
|
4794
|
+
type ChartType = 'line' | 'area' | 'bar' | 'horizontal-bar' | 'pie' | 'donut' | 'doughnut' | 'scatter' | 'radar' | 'bubble' | 'candlestick' | 'interactive' | 'advanced' | 'gauge' | 'funnel' | 'waterfall' | 'heatmap' | 'treemap' | 'realtime';
|
|
4795
|
+
/**
|
|
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;
|
|
4613
5191
|
type __lib_types_SliderNavigation = SliderNavigation;
|
|
4614
5192
|
type __lib_types_SliderPagination = SliderPagination;
|
|
4615
5193
|
type __lib_types_SliderProps = SliderProps;
|
|
@@ -4639,7 +5217,7 @@ type __lib_types_VideoQuality = VideoQuality;
|
|
|
4639
5217
|
type __lib_types_VideoSubtitle = VideoSubtitle;
|
|
4640
5218
|
type __lib_types_listvariant = listvariant;
|
|
4641
5219
|
declare namespace __lib_types {
|
|
4642
|
-
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 };
|
|
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 };
|
|
4643
5221
|
}
|
|
4644
5222
|
|
|
4645
5223
|
/**
|
|
@@ -5882,6 +6460,7 @@ declare const CHART: {
|
|
|
5882
6460
|
EXPORT_GROUP_CLASS: string;
|
|
5883
6461
|
EXPORT_DROPDOWN_CLASS: string;
|
|
5884
6462
|
EXPORT_OPTION_CLASS: string;
|
|
6463
|
+
SETTINGS_MENU_CLASS: string;
|
|
5885
6464
|
TOOLBAR_GROUP_CLASS: string;
|
|
5886
6465
|
TOOLBAR_SEPARATOR_CLASS: string;
|
|
5887
6466
|
TOOLBAR_LABEL_CLASS: string;
|
|
@@ -6145,6 +6724,9 @@ declare const FOOTER: {
|
|
|
6145
6724
|
CENTERED: string;
|
|
6146
6725
|
MINIMAL: string;
|
|
6147
6726
|
STACKED: string;
|
|
6727
|
+
FLEXIBLE: string;
|
|
6728
|
+
SIDEBAR: string;
|
|
6729
|
+
WIDE: string;
|
|
6148
6730
|
SM: string;
|
|
6149
6731
|
MD: string;
|
|
6150
6732
|
LG: string;
|
|
@@ -6170,34 +6752,35 @@ declare const FOOTER: {
|
|
|
6170
6752
|
*/
|
|
6171
6753
|
declare const ATOMIX_GLASS: {
|
|
6172
6754
|
BASE_CLASS: string;
|
|
6173
|
-
|
|
6755
|
+
CONTAINER_CLASS: string;
|
|
6756
|
+
INNER_CLASS: string;
|
|
6757
|
+
FILTER_CLASS: string;
|
|
6758
|
+
FILTER_OVERLAY_CLASS: string;
|
|
6759
|
+
FILTER_SHADOW_CLASS: string;
|
|
6174
6760
|
CONTENT_CLASS: string;
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
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;
|
|
6180
6774
|
VARIANT_PREFIX: string;
|
|
6181
6775
|
MODE_PREFIX: string;
|
|
6182
6776
|
CLASSES: {
|
|
6183
6777
|
BASE: string;
|
|
6184
|
-
|
|
6778
|
+
CONTAINER: string;
|
|
6779
|
+
INNER: string;
|
|
6780
|
+
FILTER: string;
|
|
6185
6781
|
CONTENT: string;
|
|
6186
|
-
BORDER: string;
|
|
6187
|
-
BORDER_OVERLAY: string;
|
|
6188
|
-
OVER_LIGHT: string;
|
|
6189
|
-
OVER_LIGHT_ACTIVE: string;
|
|
6190
|
-
OVER_LIGHT_OVERLAY: string;
|
|
6191
|
-
OVER_LIGHT_OVERLAY_ACTIVE: string;
|
|
6192
|
-
HOVER_EFFECT: string;
|
|
6193
|
-
HOVER_EFFECT_ACTIVE: string;
|
|
6194
|
-
ACTIVE_EFFECT: string;
|
|
6195
|
-
ACTIVE_EFFECT_ACTIVE: string;
|
|
6196
|
-
GLOW_EFFECT: string;
|
|
6197
|
-
GLOW_EFFECT_HOVER: string;
|
|
6198
|
-
GLOW_EFFECT_ACTIVE: string;
|
|
6199
|
-
CLICKABLE: string;
|
|
6200
6782
|
ACTIVE: string;
|
|
6783
|
+
OVER_LIGHT: string;
|
|
6201
6784
|
STANDARD: string;
|
|
6202
6785
|
POLAR: string;
|
|
6203
6786
|
PROMINENT: string;
|
|
@@ -6211,9 +6794,107 @@ declare const ATOMIX_GLASS: {
|
|
|
6211
6794
|
ELASTICITY: number;
|
|
6212
6795
|
CORNER_RADIUS: number;
|
|
6213
6796
|
PADDING: string;
|
|
6214
|
-
MODE:
|
|
6215
|
-
OVER_LIGHT:
|
|
6216
|
-
|
|
6797
|
+
MODE: "standard";
|
|
6798
|
+
OVER_LIGHT: "auto";
|
|
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
|
+
};
|
|
6217
6898
|
};
|
|
6218
6899
|
};
|
|
6219
6900
|
|
|
@@ -6381,9 +7062,18 @@ declare function createIconElement(name: string, size?: number, className?: stri
|
|
|
6381
7062
|
declare function getAvailableIcons(): string[];
|
|
6382
7063
|
|
|
6383
7064
|
/**
|
|
6384
|
-
* Class name utility function to conditionally join classNames together
|
|
6385
|
-
*
|
|
6386
|
-
*
|
|
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'
|
|
6387
7077
|
*/
|
|
6388
7078
|
declare function cn(...args: any[]): string;
|
|
6389
7079
|
/**
|
|
@@ -6591,6 +7281,10 @@ interface RiverProps {
|
|
|
6591
7281
|
* Additional CSS class
|
|
6592
7282
|
*/
|
|
6593
7283
|
className?: string;
|
|
7284
|
+
/**
|
|
7285
|
+
* Inline style for the component
|
|
7286
|
+
*/
|
|
7287
|
+
style?: React.CSSProperties;
|
|
6594
7288
|
/**
|
|
6595
7289
|
* Background image source
|
|
6596
7290
|
*/
|
|
@@ -6746,8 +7440,8 @@ declare function useEdgePanel(initialProps?: Partial<EdgePanelProps>): {
|
|
|
6746
7440
|
containerRef: react.MutableRefObject<HTMLDivElement>;
|
|
6747
7441
|
backdropRef: react.MutableRefObject<HTMLDivElement>;
|
|
6748
7442
|
generateEdgePanelClass: (props: Partial<EdgePanelProps>) => string;
|
|
6749
|
-
openPanel: () => void;
|
|
6750
|
-
closePanel: () => void;
|
|
7443
|
+
openPanel: (useFadeAnimation?: boolean) => void;
|
|
7444
|
+
closePanel: (useFadeAnimation?: boolean) => void;
|
|
6751
7445
|
handleBackdropClick: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
6752
7446
|
};
|
|
6753
7447
|
|
|
@@ -6824,22 +7518,51 @@ declare function useGlassContainer(props: GlassContainerProps): {
|
|
|
6824
7518
|
handleMouseUp: () => void;
|
|
6825
7519
|
};
|
|
6826
7520
|
|
|
6827
|
-
interface UseAtomixGlassOptions {
|
|
6828
|
-
|
|
6829
|
-
|
|
6830
|
-
|
|
6831
|
-
clickable?: boolean;
|
|
6832
|
-
active?: boolean;
|
|
6833
|
-
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;
|
|
6834
7525
|
}
|
|
6835
7526
|
interface UseAtomixGlassReturn {
|
|
6836
|
-
|
|
6837
|
-
|
|
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;
|
|
6838
7560
|
}
|
|
6839
7561
|
/**
|
|
6840
|
-
*
|
|
7562
|
+
* Composable hook for AtomixGlass component logic
|
|
7563
|
+
* Manages all state, calculations, and event handlers
|
|
6841
7564
|
*/
|
|
6842
|
-
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;
|
|
6843
7566
|
|
|
6844
7567
|
/**
|
|
6845
7568
|
* Input state and functionality
|
|
@@ -6904,6 +7627,14 @@ interface BreadcrumbItem {
|
|
|
6904
7627
|
* Optional click handler
|
|
6905
7628
|
*/
|
|
6906
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;
|
|
6907
7638
|
}
|
|
6908
7639
|
interface BreadcrumbProps {
|
|
6909
7640
|
/**
|
|
@@ -6925,419 +7656,182 @@ interface BreadcrumbProps {
|
|
|
6925
7656
|
/**
|
|
6926
7657
|
* Optional custom link component
|
|
6927
7658
|
*/
|
|
6928
|
-
LinkComponent?: react__default.ElementType;
|
|
6929
|
-
}
|
|
6930
|
-
declare const Breadcrumb: react__default.FC<BreadcrumbProps>;
|
|
6931
|
-
|
|
6932
|
-
interface BreadcrumbOptions {
|
|
6933
|
-
items: BreadcrumbItem[];
|
|
6934
|
-
divider?: React.ReactNode;
|
|
6935
|
-
className?: string;
|
|
6936
|
-
ariaLabel?: string;
|
|
6937
|
-
}
|
|
6938
|
-
/**
|
|
6939
|
-
* Breadcrumb state and functionality
|
|
6940
|
-
* @param initialOptions - Initial breadcrumb options
|
|
6941
|
-
* @returns Breadcrumb state and methods
|
|
6942
|
-
*/
|
|
6943
|
-
declare function useBreadcrumb(initialOptions?: Partial<BreadcrumbOptions>): {
|
|
6944
|
-
defaultOptions: BreadcrumbOptions;
|
|
6945
|
-
generateBreadcrumbClass: (options: Partial<BreadcrumbOptions>) => string;
|
|
6946
|
-
generateItemClass: (item: BreadcrumbItem, isLast: boolean) => string;
|
|
6947
|
-
isItemLink: (item: BreadcrumbItem, isLast: boolean) => boolean;
|
|
6948
|
-
parseItemsFromJson: (jsonString: string) => BreadcrumbItem[];
|
|
6949
|
-
};
|
|
6950
|
-
|
|
6951
|
-
/**
|
|
6952
|
-
* Hook for managing Card component state and behaviors
|
|
6953
|
-
*
|
|
6954
|
-
* @param options - Configuration options for the card
|
|
6955
|
-
* @returns Card state and handlers
|
|
6956
|
-
*/
|
|
6957
|
-
declare const useCard: (options?: UseCardOptions) => UseCardReturn;
|
|
6958
|
-
|
|
6959
|
-
interface UseDataTableProps {
|
|
6960
|
-
/**
|
|
6961
|
-
* Data array to display
|
|
6962
|
-
*/
|
|
6963
|
-
data: any[];
|
|
6964
|
-
/**
|
|
6965
|
-
* Column definitions
|
|
6966
|
-
*/
|
|
6967
|
-
columns: DataTableColumn[];
|
|
6968
|
-
/**
|
|
6969
|
-
* Whether the table is sortable
|
|
6970
|
-
*/
|
|
6971
|
-
sortable?: boolean;
|
|
6972
|
-
/**
|
|
6973
|
-
* Whether the table is paginated
|
|
6974
|
-
*/
|
|
6975
|
-
paginated?: boolean;
|
|
6976
|
-
/**
|
|
6977
|
-
* Number of rows per page
|
|
6978
|
-
*/
|
|
6979
|
-
pageSize?: number;
|
|
6980
|
-
/**
|
|
6981
|
-
* Callback when sorting changes
|
|
6982
|
-
*/
|
|
6983
|
-
onSort?: (sortConfig: SortConfig) => void;
|
|
6984
|
-
/**
|
|
6985
|
-
* Initial sort configuration
|
|
6986
|
-
*/
|
|
6987
|
-
initialSortConfig?: SortConfig;
|
|
6988
|
-
}
|
|
6989
|
-
interface UseDataTableReturn {
|
|
6990
|
-
/**
|
|
6991
|
-
* Data to display (filtered, sorted, paginated)
|
|
6992
|
-
*/
|
|
6993
|
-
displayData: any[];
|
|
6994
|
-
/**
|
|
6995
|
-
* Current sort configuration
|
|
6996
|
-
*/
|
|
6997
|
-
sortConfig: SortConfig | null;
|
|
6998
|
-
/**
|
|
6999
|
-
* Current page number
|
|
7000
|
-
*/
|
|
7001
|
-
currentPage: number;
|
|
7002
|
-
/**
|
|
7003
|
-
* Total number of pages
|
|
7004
|
-
*/
|
|
7005
|
-
totalPages: number;
|
|
7006
|
-
/**
|
|
7007
|
-
* Handle sort column click
|
|
7008
|
-
*/
|
|
7009
|
-
handleSort: (key: string) => void;
|
|
7010
|
-
/**
|
|
7011
|
-
* Handle page change
|
|
7012
|
-
*/
|
|
7013
|
-
handlePageChange: (page: number) => void;
|
|
7014
|
-
/**
|
|
7015
|
-
* Handle search input
|
|
7016
|
-
*/
|
|
7017
|
-
handleSearch: (query: string) => void;
|
|
7018
|
-
}
|
|
7019
|
-
/**
|
|
7020
|
-
* Hook for managing DataTable state and behavior
|
|
7021
|
-
*/
|
|
7022
|
-
declare function useDataTable({ data, columns, sortable, paginated, pageSize, onSort, initialSortConfig, }: UseDataTableProps): UseDataTableReturn;
|
|
7023
|
-
|
|
7024
|
-
interface UseModalProps {
|
|
7025
|
-
/**
|
|
7026
|
-
* Whether the modal is open
|
|
7027
|
-
*/
|
|
7028
|
-
isOpen?: boolean;
|
|
7029
|
-
/**
|
|
7030
|
-
* Callback when modal state changes
|
|
7031
|
-
*/
|
|
7032
|
-
onOpenChange?: (isOpen: boolean) => void;
|
|
7033
|
-
/**
|
|
7034
|
-
* Callback when modal opens
|
|
7035
|
-
*/
|
|
7036
|
-
onOpen?: () => void;
|
|
7037
|
-
/**
|
|
7038
|
-
* Callback when modal closes
|
|
7039
|
-
*/
|
|
7040
|
-
onClose?: () => void;
|
|
7041
|
-
}
|
|
7042
|
-
interface UseModalReturn {
|
|
7043
|
-
/**
|
|
7044
|
-
* Current open state
|
|
7045
|
-
*/
|
|
7046
|
-
isOpen: boolean;
|
|
7047
|
-
/**
|
|
7048
|
-
* Function to open the modal
|
|
7049
|
-
*/
|
|
7050
|
-
open: () => void;
|
|
7051
|
-
/**
|
|
7052
|
-
* Function to close the modal
|
|
7053
|
-
*/
|
|
7054
|
-
close: () => void;
|
|
7055
|
-
/**
|
|
7056
|
-
* Function to toggle the modal
|
|
7057
|
-
*/
|
|
7058
|
-
toggle: () => void;
|
|
7059
|
-
}
|
|
7060
|
-
/**
|
|
7061
|
-
* Hook for managing modal state
|
|
7062
|
-
*/
|
|
7063
|
-
declare function useModal({ isOpen: isOpenProp, onOpenChange, onOpen, onClose, }?: UseModalProps): UseModalReturn;
|
|
7064
|
-
|
|
7065
|
-
declare const DOTS = "...";
|
|
7066
|
-
declare const usePagination: ({ currentPage, totalPages, siblingCount, onPageChange, }: Omit<PaginationProps, "className">) => {
|
|
7067
|
-
paginationRange: (string | number)[];
|
|
7068
|
-
currentPage: number;
|
|
7069
|
-
totalPages: number;
|
|
7070
|
-
goToPage: (page: number) => void;
|
|
7071
|
-
nextPage: () => void;
|
|
7072
|
-
prevPage: () => void;
|
|
7073
|
-
firstPage: () => void;
|
|
7074
|
-
lastPage: () => void;
|
|
7075
|
-
DOTS: string;
|
|
7076
|
-
};
|
|
7077
|
-
|
|
7078
|
-
interface UseSliderOptions extends Omit<SliderProps, 'slides' | 'children'> {
|
|
7079
|
-
slides: SliderSlide[];
|
|
7080
|
-
}
|
|
7081
|
-
interface UseSliderReturn extends SliderState {
|
|
7082
|
-
slideNext: () => void;
|
|
7083
|
-
slidePrev: () => void;
|
|
7084
|
-
goToSlide: (index: number) => void;
|
|
7085
|
-
canSlideNext: boolean;
|
|
7086
|
-
canSlidePrev: boolean;
|
|
7087
|
-
containerRef: React.RefObject<HTMLDivElement | null>;
|
|
7088
|
-
wrapperRef: React.RefObject<HTMLDivElement | null>;
|
|
7089
|
-
handleTouchStart: (e: React.TouchEvent | React.MouseEvent) => void;
|
|
7090
|
-
handleTouchMove: (e: React.TouchEvent | React.MouseEvent) => void;
|
|
7091
|
-
handleTouchEnd: (e: React.TouchEvent | React.MouseEvent) => void;
|
|
7092
|
-
allSlides: SliderSlide[];
|
|
7093
|
-
translateValue: number;
|
|
7094
|
-
slideWidth: number;
|
|
7095
|
-
currentSlidesToShow: number;
|
|
7096
|
-
loopedSlides: number;
|
|
7097
|
-
repositioningRef: React.RefObject<boolean>;
|
|
7098
|
-
}
|
|
7099
|
-
declare function useSlider(options: UseSliderOptions): UseSliderReturn;
|
|
7100
|
-
|
|
7101
|
-
/**
|
|
7102
|
-
* Chart types - comprehensive list
|
|
7103
|
-
*/
|
|
7104
|
-
type ChartType = 'line' | 'area' | 'bar' | 'horizontal-bar' | 'pie' | 'donut' | 'doughnut' | 'scatter' | 'radar' | 'bubble' | 'candlestick' | 'interactive' | 'advanced' | 'gauge' | 'funnel' | 'waterfall' | 'heatmap' | 'treemap' | 'realtime';
|
|
7105
|
-
/**
|
|
7106
|
-
* Chart data point interface
|
|
7107
|
-
*/
|
|
7108
|
-
interface ChartDataPoint {
|
|
7109
|
-
label: string;
|
|
7110
|
-
value: number;
|
|
7111
|
-
color?: string;
|
|
7112
|
-
metadata?: Record<string, any>;
|
|
7113
|
-
}
|
|
7114
|
-
/**
|
|
7115
|
-
* Chart dataset interface
|
|
7116
|
-
*/
|
|
7117
|
-
interface ChartDataset {
|
|
7118
|
-
label: string;
|
|
7119
|
-
data: ChartDataPoint[];
|
|
7120
|
-
color?: string;
|
|
7121
|
-
visible?: boolean;
|
|
7122
|
-
}
|
|
7123
|
-
/**
|
|
7124
|
-
* Chart axis configuration
|
|
7125
|
-
*/
|
|
7126
|
-
interface ChartAxis {
|
|
7127
|
-
label?: string;
|
|
7128
|
-
showGrid?: boolean;
|
|
7129
|
-
showLabels?: boolean;
|
|
7130
|
-
min?: number;
|
|
7131
|
-
max?: number;
|
|
7132
|
-
formatter?: (value: number) => string;
|
|
7133
|
-
ticks?: number;
|
|
7134
|
-
}
|
|
7135
|
-
/**
|
|
7136
|
-
* Chart configuration
|
|
7137
|
-
*/
|
|
7138
|
-
interface ChartConfig {
|
|
7139
|
-
xAxis?: ChartAxis;
|
|
7140
|
-
yAxis?: ChartAxis;
|
|
7141
|
-
showLegend?: boolean;
|
|
7142
|
-
showTooltips?: boolean;
|
|
7143
|
-
animate?: boolean;
|
|
7144
|
-
animationDuration?: number;
|
|
7145
|
-
}
|
|
7146
|
-
/**
|
|
7147
|
-
* Extended chart size options
|
|
7148
|
-
*/
|
|
7149
|
-
type ChartSize = Size | 'xl' | 'full';
|
|
7150
|
-
/**
|
|
7151
|
-
* Comprehensive chart props interface
|
|
7152
|
-
*/
|
|
7153
|
-
interface ChartProps extends BaseComponentProps {
|
|
7154
|
-
/**
|
|
7155
|
-
* Chart type
|
|
7156
|
-
*/
|
|
7157
|
-
type?: ChartType;
|
|
7158
|
-
/**
|
|
7159
|
-
* Chart data (simplified)
|
|
7160
|
-
*/
|
|
7161
|
-
data?: ChartDataPoint[];
|
|
7162
|
-
/**
|
|
7163
|
-
* Chart datasets (advanced)
|
|
7164
|
-
*/
|
|
7165
|
-
datasets?: ChartDataset[];
|
|
7166
|
-
/**
|
|
7167
|
-
* Chart configuration
|
|
7168
|
-
*/
|
|
7169
|
-
config?: ChartConfig;
|
|
7170
|
-
/**
|
|
7171
|
-
* Chart size
|
|
7172
|
-
*/
|
|
7173
|
-
size?: ChartSize;
|
|
7659
|
+
LinkComponent?: react__default.ElementType;
|
|
7174
7660
|
/**
|
|
7175
|
-
*
|
|
7661
|
+
* Custom style for the breadcrumb
|
|
7176
7662
|
*/
|
|
7177
|
-
|
|
7663
|
+
style?: react__default.CSSProperties;
|
|
7664
|
+
}
|
|
7665
|
+
declare const Breadcrumb: react__default.FC<BreadcrumbProps>;
|
|
7666
|
+
|
|
7667
|
+
interface BreadcrumbOptions {
|
|
7668
|
+
items: BreadcrumbItem[];
|
|
7669
|
+
divider?: React.ReactNode;
|
|
7670
|
+
className?: string;
|
|
7671
|
+
ariaLabel?: string;
|
|
7672
|
+
}
|
|
7673
|
+
/**
|
|
7674
|
+
* Breadcrumb state and functionality
|
|
7675
|
+
* @param initialOptions - Initial breadcrumb options
|
|
7676
|
+
* @returns Breadcrumb state and methods
|
|
7677
|
+
*/
|
|
7678
|
+
declare function useBreadcrumb(initialOptions?: Partial<BreadcrumbOptions>): {
|
|
7679
|
+
defaultOptions: BreadcrumbOptions;
|
|
7680
|
+
generateBreadcrumbClass: (options: Partial<BreadcrumbOptions>) => string;
|
|
7681
|
+
generateItemClass: (item: BreadcrumbItem, isLast: boolean) => string;
|
|
7682
|
+
isItemLink: (item: BreadcrumbItem, isLast: boolean) => boolean;
|
|
7683
|
+
parseItemsFromJson: (jsonString: string) => BreadcrumbItem[];
|
|
7684
|
+
};
|
|
7685
|
+
|
|
7686
|
+
/**
|
|
7687
|
+
* Hook for managing Card component state and behaviors
|
|
7688
|
+
*
|
|
7689
|
+
* @param options - Configuration options for the card
|
|
7690
|
+
* @returns Card state and handlers
|
|
7691
|
+
*/
|
|
7692
|
+
declare const useCard: (options?: UseCardOptions) => UseCardReturn;
|
|
7693
|
+
|
|
7694
|
+
interface UseDataTableProps {
|
|
7178
7695
|
/**
|
|
7179
|
-
*
|
|
7696
|
+
* Data array to display
|
|
7180
7697
|
*/
|
|
7181
|
-
|
|
7698
|
+
data: any[];
|
|
7182
7699
|
/**
|
|
7183
|
-
*
|
|
7700
|
+
* Column definitions
|
|
7184
7701
|
*/
|
|
7185
|
-
|
|
7702
|
+
columns: DataTableColumn[];
|
|
7186
7703
|
/**
|
|
7187
|
-
* Whether
|
|
7704
|
+
* Whether the table is sortable
|
|
7188
7705
|
*/
|
|
7189
|
-
|
|
7706
|
+
sortable?: boolean;
|
|
7190
7707
|
/**
|
|
7191
|
-
* Whether
|
|
7708
|
+
* Whether the table is paginated
|
|
7192
7709
|
*/
|
|
7193
|
-
|
|
7710
|
+
paginated?: boolean;
|
|
7194
7711
|
/**
|
|
7195
|
-
*
|
|
7712
|
+
* Number of rows per page
|
|
7196
7713
|
*/
|
|
7197
|
-
|
|
7714
|
+
pageSize?: number;
|
|
7198
7715
|
/**
|
|
7199
|
-
*
|
|
7716
|
+
* Callback when sorting changes
|
|
7200
7717
|
*/
|
|
7201
|
-
|
|
7718
|
+
onSort?: (sortConfig: SortConfig) => void;
|
|
7202
7719
|
/**
|
|
7203
|
-
*
|
|
7720
|
+
* Initial sort configuration
|
|
7204
7721
|
*/
|
|
7205
|
-
|
|
7722
|
+
initialSortConfig?: SortConfig;
|
|
7723
|
+
}
|
|
7724
|
+
interface UseDataTableReturn {
|
|
7206
7725
|
/**
|
|
7207
|
-
*
|
|
7726
|
+
* Data to display (filtered, sorted, paginated)
|
|
7208
7727
|
*/
|
|
7209
|
-
|
|
7728
|
+
displayData: any[];
|
|
7210
7729
|
/**
|
|
7211
|
-
*
|
|
7730
|
+
* Current sort configuration
|
|
7212
7731
|
*/
|
|
7213
|
-
|
|
7732
|
+
sortConfig: SortConfig | null;
|
|
7214
7733
|
/**
|
|
7215
|
-
*
|
|
7734
|
+
* Current page number
|
|
7216
7735
|
*/
|
|
7217
|
-
|
|
7736
|
+
currentPage: number;
|
|
7218
7737
|
/**
|
|
7219
|
-
*
|
|
7738
|
+
* Total number of pages
|
|
7220
7739
|
*/
|
|
7221
|
-
|
|
7740
|
+
totalPages: number;
|
|
7222
7741
|
/**
|
|
7223
|
-
*
|
|
7742
|
+
* Handle sort column click
|
|
7224
7743
|
*/
|
|
7225
|
-
|
|
7744
|
+
handleSort: (key: string) => void;
|
|
7226
7745
|
/**
|
|
7227
|
-
*
|
|
7746
|
+
* Handle page change
|
|
7228
7747
|
*/
|
|
7229
|
-
|
|
7748
|
+
handlePageChange: (page: number) => void;
|
|
7230
7749
|
/**
|
|
7231
|
-
*
|
|
7750
|
+
* Handle search input
|
|
7232
7751
|
*/
|
|
7233
|
-
|
|
7752
|
+
handleSearch: (query: string) => void;
|
|
7753
|
+
}
|
|
7754
|
+
/**
|
|
7755
|
+
* Hook for managing DataTable state and behavior
|
|
7756
|
+
*/
|
|
7757
|
+
declare function useDataTable({ data, columns, sortable, paginated, pageSize, onSort, initialSortConfig, }: UseDataTableProps): UseDataTableReturn;
|
|
7758
|
+
|
|
7759
|
+
interface UseModalProps {
|
|
7234
7760
|
/**
|
|
7235
|
-
*
|
|
7761
|
+
* Whether the modal is open
|
|
7236
7762
|
*/
|
|
7237
|
-
|
|
7763
|
+
isOpen?: boolean;
|
|
7238
7764
|
/**
|
|
7239
|
-
*
|
|
7765
|
+
* Callback when modal state changes
|
|
7240
7766
|
*/
|
|
7241
|
-
|
|
7767
|
+
onOpenChange?: (isOpen: boolean) => void;
|
|
7242
7768
|
/**
|
|
7243
|
-
*
|
|
7769
|
+
* Callback when modal opens
|
|
7244
7770
|
*/
|
|
7245
|
-
|
|
7771
|
+
onOpen?: () => void;
|
|
7246
7772
|
/**
|
|
7247
|
-
*
|
|
7773
|
+
* Callback when modal closes
|
|
7248
7774
|
*/
|
|
7249
|
-
|
|
7775
|
+
onClose?: () => void;
|
|
7776
|
+
}
|
|
7777
|
+
interface UseModalReturn {
|
|
7250
7778
|
/**
|
|
7251
|
-
*
|
|
7779
|
+
* Current open state
|
|
7252
7780
|
*/
|
|
7253
|
-
|
|
7781
|
+
isOpen: boolean;
|
|
7254
7782
|
/**
|
|
7255
|
-
*
|
|
7783
|
+
* Function to open the modal
|
|
7256
7784
|
*/
|
|
7257
|
-
|
|
7258
|
-
enableDefaults?: boolean;
|
|
7259
|
-
defaults?: {
|
|
7260
|
-
refresh?: boolean;
|
|
7261
|
-
export?: boolean;
|
|
7262
|
-
fullscreen?: boolean;
|
|
7263
|
-
settings?: boolean;
|
|
7264
|
-
zoom?: boolean;
|
|
7265
|
-
pan?: boolean;
|
|
7266
|
-
reset?: boolean;
|
|
7267
|
-
grid?: boolean;
|
|
7268
|
-
legend?: boolean;
|
|
7269
|
-
tooltips?: boolean;
|
|
7270
|
-
animations?: boolean;
|
|
7271
|
-
};
|
|
7272
|
-
handlers?: {
|
|
7273
|
-
onRefresh?: () => void;
|
|
7274
|
-
onExport?: (format: string) => Promise<void> | void;
|
|
7275
|
-
onFullscreen?: (isFullscreen: boolean) => void;
|
|
7276
|
-
onZoomIn?: () => void;
|
|
7277
|
-
onZoomOut?: () => void;
|
|
7278
|
-
onZoomReset?: () => void;
|
|
7279
|
-
onPanToggle?: (enabled: boolean) => void;
|
|
7280
|
-
onReset?: () => void;
|
|
7281
|
-
onGridToggle?: (show: boolean) => void;
|
|
7282
|
-
onLegendToggle?: (show: boolean) => void;
|
|
7283
|
-
onTooltipsToggle?: (show: boolean) => void;
|
|
7284
|
-
onAnimationsToggle?: (enabled: boolean) => void;
|
|
7285
|
-
};
|
|
7286
|
-
};
|
|
7785
|
+
open: () => void;
|
|
7287
7786
|
/**
|
|
7288
|
-
*
|
|
7787
|
+
* Function to close the modal
|
|
7289
7788
|
*/
|
|
7290
|
-
|
|
7291
|
-
id: string;
|
|
7292
|
-
label: string;
|
|
7293
|
-
icon: string;
|
|
7294
|
-
onClick: () => void;
|
|
7295
|
-
disabled?: boolean;
|
|
7296
|
-
active?: boolean;
|
|
7297
|
-
variant?: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error';
|
|
7298
|
-
tooltip?: string;
|
|
7299
|
-
}>;
|
|
7789
|
+
close: () => void;
|
|
7300
7790
|
/**
|
|
7301
|
-
*
|
|
7791
|
+
* Function to toggle the modal
|
|
7302
7792
|
*/
|
|
7303
|
-
|
|
7304
|
-
id: string;
|
|
7305
|
-
label?: string;
|
|
7306
|
-
actions: Array<{
|
|
7307
|
-
id: string;
|
|
7308
|
-
label: string;
|
|
7309
|
-
icon: string;
|
|
7310
|
-
onClick: () => void;
|
|
7311
|
-
disabled?: boolean;
|
|
7312
|
-
active?: boolean;
|
|
7313
|
-
variant?: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error';
|
|
7314
|
-
tooltip?: string;
|
|
7315
|
-
}>;
|
|
7316
|
-
separator?: boolean;
|
|
7317
|
-
}>;
|
|
7793
|
+
toggle: () => void;
|
|
7318
7794
|
}
|
|
7319
7795
|
/**
|
|
7320
|
-
*
|
|
7796
|
+
* Hook for managing modal state
|
|
7321
7797
|
*/
|
|
7322
|
-
|
|
7323
|
-
|
|
7324
|
-
|
|
7325
|
-
|
|
7326
|
-
|
|
7327
|
-
|
|
7328
|
-
|
|
7329
|
-
|
|
7330
|
-
|
|
7331
|
-
|
|
7332
|
-
|
|
7798
|
+
declare function useModal({ isOpen: isOpenProp, onOpenChange, onOpen, onClose, }?: UseModalProps): UseModalReturn;
|
|
7799
|
+
|
|
7800
|
+
declare const DOTS = "...";
|
|
7801
|
+
declare const usePagination: ({ currentPage, totalPages, siblingCount, onPageChange, }: Omit<PaginationProps, "className">) => {
|
|
7802
|
+
paginationRange: (string | number)[];
|
|
7803
|
+
currentPage: number;
|
|
7804
|
+
totalPages: number;
|
|
7805
|
+
goToPage: (page: number) => void;
|
|
7806
|
+
nextPage: () => void;
|
|
7807
|
+
prevPage: () => void;
|
|
7808
|
+
firstPage: () => void;
|
|
7809
|
+
lastPage: () => void;
|
|
7810
|
+
DOTS: string;
|
|
7811
|
+
};
|
|
7812
|
+
|
|
7813
|
+
interface UseSliderOptions extends Omit<SliderProps, 'slides' | 'children'> {
|
|
7814
|
+
slides: SliderSlide[];
|
|
7333
7815
|
}
|
|
7334
|
-
|
|
7335
|
-
|
|
7336
|
-
|
|
7337
|
-
|
|
7338
|
-
|
|
7339
|
-
|
|
7816
|
+
interface UseSliderReturn extends SliderState {
|
|
7817
|
+
slideNext: () => void;
|
|
7818
|
+
slidePrev: () => void;
|
|
7819
|
+
goToSlide: (index: number) => void;
|
|
7820
|
+
canSlideNext: boolean;
|
|
7821
|
+
canSlidePrev: boolean;
|
|
7822
|
+
containerRef: React.RefObject<HTMLDivElement | null>;
|
|
7823
|
+
wrapperRef: React.RefObject<HTMLDivElement | null>;
|
|
7824
|
+
handleTouchStart: (e: React.TouchEvent | React.MouseEvent) => void;
|
|
7825
|
+
handleTouchMove: (e: React.TouchEvent | React.MouseEvent) => void;
|
|
7826
|
+
handleTouchEnd: (e: React.TouchEvent | React.MouseEvent) => void;
|
|
7827
|
+
allSlides: SliderSlide[];
|
|
7828
|
+
translateValue: number;
|
|
7829
|
+
slideWidth: number;
|
|
7830
|
+
currentSlidesToShow: number;
|
|
7831
|
+
loopedSlides: number;
|
|
7832
|
+
repositioningRef: React.RefObject<boolean>;
|
|
7340
7833
|
}
|
|
7834
|
+
declare function useSlider(options: UseSliderOptions): UseSliderReturn;
|
|
7341
7835
|
|
|
7342
7836
|
/**
|
|
7343
7837
|
* Simplified hook for chart data processing
|
|
@@ -7361,7 +7855,7 @@ declare function useChartData(data: ChartDataPoint[]): {
|
|
|
7361
7855
|
/**
|
|
7362
7856
|
* Simplified hook for chart scale calculations
|
|
7363
7857
|
*/
|
|
7364
|
-
declare function useChartScale(data: ChartDataPoint[], width?: number, height?: number): ChartScales;
|
|
7858
|
+
declare function useChartScale(data: ChartDataPoint[], width?: number, height?: number): ChartScales$1;
|
|
7365
7859
|
|
|
7366
7860
|
/**
|
|
7367
7861
|
* Simplified hook for basic chart interactions
|
|
@@ -7476,12 +7970,14 @@ declare function useLineChart(datasets: ChartDataset$1[], options?: LineChartOpt
|
|
|
7476
7970
|
pointIndex: number;
|
|
7477
7971
|
x: number;
|
|
7478
7972
|
y: number;
|
|
7973
|
+
clientX?: number;
|
|
7974
|
+
clientY?: number;
|
|
7479
7975
|
};
|
|
7480
7976
|
processedDatasets: any[];
|
|
7481
7977
|
handleZoom: (delta: number, centerX: number, centerY: number) => void;
|
|
7482
7978
|
handlePan: (deltaX: number, deltaY: number) => void;
|
|
7483
7979
|
resetView: () => void;
|
|
7484
|
-
handlePointHover: (datasetIndex: number, pointIndex: number, x: number, y: number) => void;
|
|
7980
|
+
handlePointHover: (datasetIndex: number, pointIndex: number, x: number, y: number, clientX: number, clientY: number) => void;
|
|
7485
7981
|
handlePointLeave: () => void;
|
|
7486
7982
|
calculateMovingAverage: (data: ChartDataPoint$1[], period: number) => ChartDataPoint$1[];
|
|
7487
7983
|
calculateTrendLine: (data: ChartDataPoint$1[]) => (ChartDataPoint$1 | null)[];
|
|
@@ -7499,6 +7995,8 @@ declare function useLineChart(datasets: ChartDataset$1[], options?: LineChartOpt
|
|
|
7499
7995
|
pointIndex: number;
|
|
7500
7996
|
x: number;
|
|
7501
7997
|
y: number;
|
|
7998
|
+
clientX?: number;
|
|
7999
|
+
clientY?: number;
|
|
7502
8000
|
}>>;
|
|
7503
8001
|
};
|
|
7504
8002
|
|
|
@@ -7586,8 +8084,10 @@ declare function useBarChart(datasets: ChartDataset$1[], options?: BarChartOptio
|
|
|
7586
8084
|
hoveredBar: {
|
|
7587
8085
|
datasetIndex: number;
|
|
7588
8086
|
pointIndex: number;
|
|
7589
|
-
|
|
7590
|
-
|
|
8087
|
+
chartX: number;
|
|
8088
|
+
chartY: number;
|
|
8089
|
+
clientX: number;
|
|
8090
|
+
clientY: number;
|
|
7591
8091
|
};
|
|
7592
8092
|
animationProgress: number;
|
|
7593
8093
|
isAnimating: boolean;
|
|
@@ -7609,15 +8109,17 @@ declare function useBarChart(datasets: ChartDataset$1[], options?: BarChartOptio
|
|
|
7609
8109
|
x: number;
|
|
7610
8110
|
y: number;
|
|
7611
8111
|
};
|
|
7612
|
-
handleBarHover: (datasetIndex: number, pointIndex: number,
|
|
8112
|
+
handleBarHover: (datasetIndex: number, pointIndex: number, chartX: number, chartY: number, clientX: number, clientY: number) => void;
|
|
7613
8113
|
handleBarLeave: () => void;
|
|
7614
8114
|
startAnimation: () => void;
|
|
7615
8115
|
formatValue: (value: number) => string;
|
|
7616
8116
|
setHoveredBar: react.Dispatch<react.SetStateAction<{
|
|
7617
8117
|
datasetIndex: number;
|
|
7618
8118
|
pointIndex: number;
|
|
7619
|
-
|
|
7620
|
-
|
|
8119
|
+
chartX: number;
|
|
8120
|
+
chartY: number;
|
|
8121
|
+
clientX: number;
|
|
8122
|
+
clientY: number;
|
|
7621
8123
|
}>>;
|
|
7622
8124
|
setAnimationProgress: react.Dispatch<react.SetStateAction<number>>;
|
|
7623
8125
|
setIsAnimating: react.Dispatch<react.SetStateAction<boolean>>;
|
|
@@ -7712,7 +8214,7 @@ declare function usePieChart(data: ChartDataPoint$1[], options?: PieChartOptions
|
|
|
7712
8214
|
selectedSlices: Set<number>;
|
|
7713
8215
|
animationProgress: number;
|
|
7714
8216
|
isAnimating: boolean;
|
|
7715
|
-
handleSliceHover: (index: number, clientX
|
|
8217
|
+
handleSliceHover: (index: number, clientX: number, clientY: number) => void;
|
|
7716
8218
|
handleSliceLeave: () => void;
|
|
7717
8219
|
handleSliceClick: (index: number) => void;
|
|
7718
8220
|
startAnimation: () => void;
|
|
@@ -7748,8 +8250,6 @@ type __lib_composables_PieChartOptions = PieChartOptions;
|
|
|
7748
8250
|
type __lib_composables_PieSlice = PieSlice;
|
|
7749
8251
|
type __lib_composables_RiverContentColumn = RiverContentColumn;
|
|
7750
8252
|
type __lib_composables_RiverProps = RiverProps;
|
|
7751
|
-
type __lib_composables_UseAtomixGlassOptions = UseAtomixGlassOptions;
|
|
7752
|
-
type __lib_composables_UseAtomixGlassReturn = UseAtomixGlassReturn;
|
|
7753
8253
|
type __lib_composables_UseBlockOptions = UseBlockOptions;
|
|
7754
8254
|
type __lib_composables_UseBlockReturn = UseBlockReturn;
|
|
7755
8255
|
type __lib_composables_UseDataTableProps = UseDataTableProps;
|
|
@@ -7796,7 +8296,7 @@ declare const __lib_composables_useTextarea: typeof useTextarea;
|
|
|
7796
8296
|
declare const __lib_composables_useTodo: typeof useTodo;
|
|
7797
8297
|
declare namespace __lib_composables {
|
|
7798
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 };
|
|
7799
|
-
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 };
|
|
7800
8300
|
}
|
|
7801
8301
|
|
|
7802
8302
|
/**
|
|
@@ -7836,6 +8336,10 @@ interface AccordionProps extends BaseComponentProps {
|
|
|
7836
8336
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
7837
8337
|
*/
|
|
7838
8338
|
glass?: AtomixGlassProps | boolean;
|
|
8339
|
+
/**
|
|
8340
|
+
* Custom style for the accordion
|
|
8341
|
+
*/
|
|
8342
|
+
style?: react__default.CSSProperties;
|
|
7839
8343
|
}
|
|
7840
8344
|
declare const Accordion: react__default.FC<AccordionProps>;
|
|
7841
8345
|
|
|
@@ -7846,6 +8350,79 @@ interface AtomixLogoProps extends react__default.SVGProps<SVGSVGElement> {
|
|
|
7846
8350
|
}
|
|
7847
8351
|
declare const AtomixLogo: react__default.FC<AtomixLogoProps>;
|
|
7848
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
|
+
|
|
7849
8426
|
declare const Avatar: react__default.FC<AvatarProps>;
|
|
7850
8427
|
|
|
7851
8428
|
declare const AvatarGroup: react__default.FC<AvatarGroupProps>;
|
|
@@ -7979,93 +8556,6 @@ declare const Callout: react__default.FC<CalloutProps>;
|
|
|
7979
8556
|
|
|
7980
8557
|
declare const Card: react__default.ForwardRefExoticComponent<CardProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
7981
8558
|
|
|
7982
|
-
interface AdvancedChartProps extends Omit<ChartProps, 'type'> {
|
|
7983
|
-
/**
|
|
7984
|
-
* Advanced chart specific options
|
|
7985
|
-
*/
|
|
7986
|
-
advancedOptions?: {
|
|
7987
|
-
/**
|
|
7988
|
-
* Chart type for advanced rendering
|
|
7989
|
-
*/
|
|
7990
|
-
chartType?: 'line' | 'area' | 'bar' | 'mixed';
|
|
7991
|
-
/**
|
|
7992
|
-
* Whether to enable real-time updates
|
|
7993
|
-
*/
|
|
7994
|
-
realTime?: boolean;
|
|
7995
|
-
/**
|
|
7996
|
-
* Update interval in milliseconds for real-time data
|
|
7997
|
-
*/
|
|
7998
|
-
updateInterval?: number;
|
|
7999
|
-
/**
|
|
8000
|
-
* Whether to show advanced tooltips
|
|
8001
|
-
*/
|
|
8002
|
-
advancedTooltips?: boolean;
|
|
8003
|
-
/**
|
|
8004
|
-
* Whether to enable data point selection
|
|
8005
|
-
*/
|
|
8006
|
-
enableSelection?: boolean;
|
|
8007
|
-
/**
|
|
8008
|
-
* Maximum number of selected points
|
|
8009
|
-
*/
|
|
8010
|
-
maxSelections?: number;
|
|
8011
|
-
/**
|
|
8012
|
-
* Whether to show trend lines
|
|
8013
|
-
*/
|
|
8014
|
-
showTrendLines?: boolean;
|
|
8015
|
-
/**
|
|
8016
|
-
* Whether to show moving averages
|
|
8017
|
-
*/
|
|
8018
|
-
showMovingAverages?: boolean;
|
|
8019
|
-
/**
|
|
8020
|
-
* Period for moving average calculation
|
|
8021
|
-
*/
|
|
8022
|
-
movingAveragePeriod?: number;
|
|
8023
|
-
/**
|
|
8024
|
-
* Whether to enable data export
|
|
8025
|
-
*/
|
|
8026
|
-
enableExport?: boolean;
|
|
8027
|
-
/**
|
|
8028
|
-
* Export formats
|
|
8029
|
-
*/
|
|
8030
|
-
exportFormats?: ('png' | 'svg' | 'csv' | 'json')[];
|
|
8031
|
-
/**
|
|
8032
|
-
* Whether to show data table
|
|
8033
|
-
*/
|
|
8034
|
-
showDataTable?: boolean;
|
|
8035
|
-
/**
|
|
8036
|
-
* Whether to enable annotations
|
|
8037
|
-
*/
|
|
8038
|
-
enableAnnotations?: boolean;
|
|
8039
|
-
/**
|
|
8040
|
-
* Custom annotations
|
|
8041
|
-
*/
|
|
8042
|
-
annotations?: Array<{
|
|
8043
|
-
x: number;
|
|
8044
|
-
y: number;
|
|
8045
|
-
label: string;
|
|
8046
|
-
color?: string;
|
|
8047
|
-
type?: 'point' | 'line' | 'area';
|
|
8048
|
-
}>;
|
|
8049
|
-
};
|
|
8050
|
-
}
|
|
8051
|
-
declare const AdvancedChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AdvancedChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8052
|
-
|
|
8053
|
-
interface AnimatedChartProps extends Omit<ChartProps, 'type'> {
|
|
8054
|
-
chartType?: 'line' | 'bar' | 'area';
|
|
8055
|
-
animationConfig?: {
|
|
8056
|
-
duration?: number;
|
|
8057
|
-
easing?: 'ease-out' | 'bounce';
|
|
8058
|
-
};
|
|
8059
|
-
particleEffects?: {
|
|
8060
|
-
enabled: boolean;
|
|
8061
|
-
count: number;
|
|
8062
|
-
colors: string[];
|
|
8063
|
-
speed: number;
|
|
8064
|
-
size: number;
|
|
8065
|
-
};
|
|
8066
|
-
}
|
|
8067
|
-
declare const AnimatedChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AnimatedChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8068
|
-
|
|
8069
8559
|
interface LineChartProps extends Omit<ChartProps, 'type'> {
|
|
8070
8560
|
/**
|
|
8071
8561
|
* Line chart specific options
|
|
@@ -8206,7 +8696,7 @@ interface CandlestickDataPoint {
|
|
|
8206
8696
|
*/
|
|
8207
8697
|
metadata?: Record<string, any>;
|
|
8208
8698
|
}
|
|
8209
|
-
interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
8699
|
+
interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets' | 'data'> {
|
|
8210
8700
|
/**
|
|
8211
8701
|
* Candlestick chart data
|
|
8212
8702
|
*/
|
|
@@ -8216,25 +8706,29 @@ interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
|
8216
8706
|
*/
|
|
8217
8707
|
candlestickOptions?: {
|
|
8218
8708
|
/**
|
|
8219
|
-
*
|
|
8709
|
+
* Whether to show volume bars
|
|
8220
8710
|
*/
|
|
8221
|
-
|
|
8711
|
+
showVolume?: boolean;
|
|
8222
8712
|
/**
|
|
8223
|
-
*
|
|
8713
|
+
* Volume bar height ratio (0-1)
|
|
8224
8714
|
*/
|
|
8225
|
-
|
|
8715
|
+
volumeHeightRatio?: number;
|
|
8226
8716
|
/**
|
|
8227
|
-
*
|
|
8717
|
+
* Up color (when close > open)
|
|
8228
8718
|
*/
|
|
8229
|
-
|
|
8719
|
+
upColor?: string;
|
|
8230
8720
|
/**
|
|
8231
|
-
*
|
|
8721
|
+
* Down color (when close < open)
|
|
8232
8722
|
*/
|
|
8233
|
-
|
|
8723
|
+
downColor?: string;
|
|
8234
8724
|
/**
|
|
8235
|
-
*
|
|
8725
|
+
* Wick color
|
|
8236
8726
|
*/
|
|
8237
|
-
|
|
8727
|
+
wickColor?: string;
|
|
8728
|
+
/**
|
|
8729
|
+
* Border color
|
|
8730
|
+
*/
|
|
8731
|
+
borderColor?: string;
|
|
8238
8732
|
/**
|
|
8239
8733
|
* Whether to show moving averages
|
|
8240
8734
|
*/
|
|
@@ -8248,34 +8742,30 @@ interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
|
8248
8742
|
*/
|
|
8249
8743
|
movingAverageColors?: string[];
|
|
8250
8744
|
/**
|
|
8251
|
-
*
|
|
8252
|
-
*/
|
|
8253
|
-
showTrendLines?: boolean;
|
|
8254
|
-
/**
|
|
8255
|
-
* Whether to enable crosshair
|
|
8745
|
+
* Date format
|
|
8256
8746
|
*/
|
|
8257
|
-
|
|
8747
|
+
dateFormat?: 'short' | 'medium' | 'long' | 'numeric' | 'custom';
|
|
8258
8748
|
/**
|
|
8259
|
-
*
|
|
8749
|
+
* Custom date formatter function
|
|
8260
8750
|
*/
|
|
8261
|
-
|
|
8751
|
+
dateFormatter?: (date: string | Date) => string;
|
|
8262
8752
|
/**
|
|
8263
|
-
*
|
|
8753
|
+
* Whether to show grid lines
|
|
8264
8754
|
*/
|
|
8265
|
-
|
|
8755
|
+
showGrid?: boolean;
|
|
8266
8756
|
/**
|
|
8267
|
-
*
|
|
8757
|
+
* Grid color
|
|
8268
8758
|
*/
|
|
8269
|
-
|
|
8759
|
+
gridColor?: string;
|
|
8270
8760
|
/**
|
|
8271
|
-
* Whether to
|
|
8761
|
+
* Whether to show tooltips
|
|
8272
8762
|
*/
|
|
8273
|
-
|
|
8763
|
+
showTooltips?: boolean;
|
|
8274
8764
|
};
|
|
8275
8765
|
}
|
|
8276
8766
|
declare const CandlestickChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<CandlestickChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8277
8767
|
|
|
8278
|
-
declare const Chart: react.MemoExoticComponent<react.ForwardRefExoticComponent<ChartProps
|
|
8768
|
+
declare const Chart: react.MemoExoticComponent<react.ForwardRefExoticComponent<ChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8279
8769
|
|
|
8280
8770
|
/**
|
|
8281
8771
|
* Enhanced chart renderer component with comprehensive functionality
|
|
@@ -8290,29 +8780,7 @@ declare const ChartRenderer: react.MemoExoticComponent<react.ForwardRefExoticCom
|
|
|
8290
8780
|
enableRealTime?: boolean;
|
|
8291
8781
|
enableAccessibility?: boolean;
|
|
8292
8782
|
enablePerformanceOptimization?: boolean;
|
|
8293
|
-
renderContent: (params:
|
|
8294
|
-
scales: any;
|
|
8295
|
-
colors: string[];
|
|
8296
|
-
datasets: any[];
|
|
8297
|
-
interactionState: any;
|
|
8298
|
-
handlers: {
|
|
8299
|
-
onDataPointClick?: ChartProps$1["onDataPointClick"];
|
|
8300
|
-
onPointHover: (datasetIndex: number, pointIndex: number, x: number, y: number, clientX: number, clientY: number) => void;
|
|
8301
|
-
onPointLeave: () => void;
|
|
8302
|
-
onMouseMove: (event: React.MouseEvent<SVGSVGElement>) => void;
|
|
8303
|
-
onMouseDown: (event: React.MouseEvent<SVGSVGElement>) => void;
|
|
8304
|
-
onMouseUp: () => void;
|
|
8305
|
-
onWheel: (event: React.WheelEvent<SVGSVGElement>) => void;
|
|
8306
|
-
};
|
|
8307
|
-
accessibility: {
|
|
8308
|
-
announcement: string;
|
|
8309
|
-
focusedPoint: {
|
|
8310
|
-
datasetIndex: number;
|
|
8311
|
-
pointIndex: number;
|
|
8312
|
-
};
|
|
8313
|
-
getAccessibleDescription: () => string;
|
|
8314
|
-
};
|
|
8315
|
-
}) => React.ReactNode;
|
|
8783
|
+
renderContent: (params: ChartRenderContentParams) => React.ReactNode;
|
|
8316
8784
|
} & react.RefAttributes<SVGSVGElement>>>;
|
|
8317
8785
|
|
|
8318
8786
|
type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -8339,6 +8807,10 @@ interface IconProps {
|
|
|
8339
8807
|
* Additional CSS class names
|
|
8340
8808
|
*/
|
|
8341
8809
|
className?: string;
|
|
8810
|
+
/**
|
|
8811
|
+
* Custom style
|
|
8812
|
+
*/
|
|
8813
|
+
style?: react__default.CSSProperties;
|
|
8342
8814
|
/**
|
|
8343
8815
|
* Alt text for accessibility
|
|
8344
8816
|
*/
|
|
@@ -8393,7 +8865,7 @@ interface FunnelDataPoint {
|
|
|
8393
8865
|
percentage?: number;
|
|
8394
8866
|
metadata?: Record<string, any>;
|
|
8395
8867
|
}
|
|
8396
|
-
interface FunnelChartProps extends Omit<ChartProps
|
|
8868
|
+
interface FunnelChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
8397
8869
|
/**
|
|
8398
8870
|
* Funnel chart data
|
|
8399
8871
|
*/
|
|
@@ -8439,11 +8911,11 @@ interface FunnelChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8439
8911
|
*/
|
|
8440
8912
|
colorScheme?: string[];
|
|
8441
8913
|
/**
|
|
8442
|
-
* Whether to use gradient
|
|
8914
|
+
* Whether to use gradient
|
|
8443
8915
|
*/
|
|
8444
8916
|
useGradient?: boolean;
|
|
8445
8917
|
/**
|
|
8446
|
-
* Whether to animate
|
|
8918
|
+
* Whether to animate
|
|
8447
8919
|
*/
|
|
8448
8920
|
animate?: boolean;
|
|
8449
8921
|
/**
|
|
@@ -8459,19 +8931,19 @@ interface FunnelChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8459
8931
|
*/
|
|
8460
8932
|
valueFormatter?: (value: number) => string;
|
|
8461
8933
|
/**
|
|
8462
|
-
* Whether to show conversion rates
|
|
8934
|
+
* Whether to show conversion rates
|
|
8463
8935
|
*/
|
|
8464
8936
|
showConversionRates?: boolean;
|
|
8465
8937
|
/**
|
|
8466
8938
|
* Conversion rate position
|
|
8467
8939
|
*/
|
|
8468
|
-
conversionRatePosition?: 'between' | '
|
|
8940
|
+
conversionRatePosition?: 'between' | 'onSegment';
|
|
8469
8941
|
/**
|
|
8470
|
-
* Whether
|
|
8942
|
+
* Whether to use proportional segments
|
|
8471
8943
|
*/
|
|
8472
8944
|
proportional?: boolean;
|
|
8473
8945
|
/**
|
|
8474
|
-
* Minimum segment
|
|
8946
|
+
* Minimum segment ratio (0-1)
|
|
8475
8947
|
*/
|
|
8476
8948
|
minSegmentRatio?: number;
|
|
8477
8949
|
};
|
|
@@ -8583,7 +9055,7 @@ interface HeatmapDataPoint {
|
|
|
8583
9055
|
label?: string;
|
|
8584
9056
|
metadata?: Record<string, any>;
|
|
8585
9057
|
}
|
|
8586
|
-
interface HeatmapChartProps extends Omit<ChartProps
|
|
9058
|
+
interface HeatmapChartProps extends Omit<ChartProps, 'type' | 'datasets' | 'variant' | 'data'> {
|
|
8587
9059
|
/**
|
|
8588
9060
|
* Heatmap data points
|
|
8589
9061
|
*/
|
|
@@ -8626,50 +9098,26 @@ interface HeatmapChartProps extends Omit<ChartProps$1, 'type' | 'datasets' | 'va
|
|
|
8626
9098
|
*/
|
|
8627
9099
|
height?: number;
|
|
8628
9100
|
/**
|
|
8629
|
-
*
|
|
9101
|
+
* Spacing between cells
|
|
8630
9102
|
*/
|
|
8631
|
-
|
|
9103
|
+
spacing?: number;
|
|
8632
9104
|
/**
|
|
8633
|
-
*
|
|
9105
|
+
* Border radius for cells
|
|
8634
9106
|
*/
|
|
8635
|
-
|
|
9107
|
+
borderRadius?: number;
|
|
8636
9108
|
/**
|
|
8637
|
-
*
|
|
9109
|
+
* Whether to show cell labels
|
|
8638
9110
|
*/
|
|
8639
|
-
|
|
9111
|
+
showLabels?: boolean;
|
|
8640
9112
|
};
|
|
8641
|
-
/**
|
|
8642
|
-
* Whether to show values in cells
|
|
8643
|
-
*/
|
|
8644
|
-
showValues?: boolean;
|
|
8645
|
-
/**
|
|
8646
|
-
* Value formatter
|
|
8647
|
-
*/
|
|
8648
|
-
valueFormatter?: (value: number) => string;
|
|
8649
9113
|
/**
|
|
8650
9114
|
* Whether to show color legend
|
|
8651
9115
|
*/
|
|
8652
9116
|
showColorLegend?: boolean;
|
|
8653
9117
|
/**
|
|
8654
|
-
*
|
|
8655
|
-
*/
|
|
8656
|
-
tooltipConfig?: {
|
|
8657
|
-
enabled: boolean;
|
|
8658
|
-
formatter?: (dataPoint: HeatmapDataPoint) => string;
|
|
8659
|
-
};
|
|
8660
|
-
/**
|
|
8661
|
-
* Layout variant - grid or calendar style
|
|
8662
|
-
*/
|
|
8663
|
-
variant?: 'grid' | 'calendar';
|
|
8664
|
-
/**
|
|
8665
|
-
* Animation configuration
|
|
9118
|
+
* Whether to show grid lines
|
|
8666
9119
|
*/
|
|
8667
|
-
|
|
8668
|
-
enabled?: boolean;
|
|
8669
|
-
duration?: number;
|
|
8670
|
-
delay?: number;
|
|
8671
|
-
easing?: string;
|
|
8672
|
-
};
|
|
9120
|
+
showGrid?: boolean;
|
|
8673
9121
|
}
|
|
8674
9122
|
declare const HeatmapChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<HeatmapChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8675
9123
|
|
|
@@ -8717,31 +9165,76 @@ interface MultiAxisDataset extends ChartDataset$1 {
|
|
|
8717
9165
|
*/
|
|
8718
9166
|
yAxisId?: string;
|
|
8719
9167
|
/**
|
|
8720
|
-
*
|
|
9168
|
+
* X-axis ID this dataset should use
|
|
8721
9169
|
*/
|
|
8722
|
-
|
|
9170
|
+
xAxisId?: string;
|
|
8723
9171
|
}
|
|
8724
|
-
interface MultiAxisChartProps extends Omit<ChartProps$1, 'type'
|
|
9172
|
+
interface MultiAxisChartProps extends Omit<ChartProps$1, 'type'> {
|
|
8725
9173
|
/**
|
|
8726
|
-
* Multi-axis datasets
|
|
9174
|
+
* Multi-axis chart datasets
|
|
8727
9175
|
*/
|
|
8728
9176
|
datasets: MultiAxisDataset[];
|
|
8729
9177
|
/**
|
|
8730
9178
|
* Y-axis configurations
|
|
8731
9179
|
*/
|
|
8732
|
-
yAxes
|
|
8733
|
-
/**
|
|
8734
|
-
* X-axis configuration
|
|
8735
|
-
*/
|
|
8736
|
-
xAxis?: AxisConfig;
|
|
9180
|
+
yAxes?: AxisConfig[];
|
|
8737
9181
|
/**
|
|
8738
|
-
*
|
|
9182
|
+
* X-axis configurations
|
|
8739
9183
|
*/
|
|
8740
|
-
|
|
9184
|
+
xAxes?: AxisConfig[];
|
|
8741
9185
|
/**
|
|
8742
|
-
*
|
|
9186
|
+
* Multi-axis chart specific options
|
|
8743
9187
|
*/
|
|
8744
|
-
|
|
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
|
+
};
|
|
8745
9238
|
}
|
|
8746
9239
|
declare const MultiAxisChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<MultiAxisChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8747
9240
|
|
|
@@ -8802,59 +9295,6 @@ interface RadarChartProps extends Omit<ChartProps$1, 'type'> {
|
|
|
8802
9295
|
}
|
|
8803
9296
|
declare const RadarChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<RadarChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8804
9297
|
|
|
8805
|
-
interface RealTimeChartProps extends Omit<ChartProps$1, 'type'> {
|
|
8806
|
-
/**
|
|
8807
|
-
* Data stream configuration
|
|
8808
|
-
*/
|
|
8809
|
-
streamConfig?: {
|
|
8810
|
-
/**
|
|
8811
|
-
* Update interval in milliseconds
|
|
8812
|
-
*/
|
|
8813
|
-
interval: number;
|
|
8814
|
-
/**
|
|
8815
|
-
* Maximum number of data points to keep
|
|
8816
|
-
*/
|
|
8817
|
-
maxDataPoints: number;
|
|
8818
|
-
/**
|
|
8819
|
-
* Whether to auto-scroll to latest data
|
|
8820
|
-
*/
|
|
8821
|
-
autoScroll: boolean;
|
|
8822
|
-
/**
|
|
8823
|
-
* Buffer size for smooth updates
|
|
8824
|
-
*/
|
|
8825
|
-
bufferSize?: number;
|
|
8826
|
-
};
|
|
8827
|
-
/**
|
|
8828
|
-
* Data source function that returns new data points
|
|
8829
|
-
*/
|
|
8830
|
-
dataSource?: () => Promise<{
|
|
8831
|
-
label: string;
|
|
8832
|
-
value: number;
|
|
8833
|
-
timestamp?: number;
|
|
8834
|
-
}[]>;
|
|
8835
|
-
/**
|
|
8836
|
-
* WebSocket URL for real-time data
|
|
8837
|
-
*/
|
|
8838
|
-
websocketUrl?: string;
|
|
8839
|
-
/**
|
|
8840
|
-
* Callback when new data arrives
|
|
8841
|
-
*/
|
|
8842
|
-
onDataUpdate?: (newData: any[]) => void;
|
|
8843
|
-
/**
|
|
8844
|
-
* Performance monitoring
|
|
8845
|
-
*/
|
|
8846
|
-
enablePerformanceMonitoring?: boolean;
|
|
8847
|
-
}
|
|
8848
|
-
declare const RealTimeChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<RealTimeChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8849
|
-
|
|
8850
|
-
interface ScatterDataPoint {
|
|
8851
|
-
label: string;
|
|
8852
|
-
value: number;
|
|
8853
|
-
x?: number;
|
|
8854
|
-
y?: number;
|
|
8855
|
-
size?: number;
|
|
8856
|
-
color?: string;
|
|
8857
|
-
}
|
|
8858
9298
|
interface ScatterChartProps extends Omit<ChartProps, 'type'> {
|
|
8859
9299
|
/**
|
|
8860
9300
|
* Scatter chart specific options
|
|
@@ -8921,24 +9361,20 @@ interface TreemapChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8921
9361
|
*/
|
|
8922
9362
|
palette?: string[];
|
|
8923
9363
|
/**
|
|
8924
|
-
*
|
|
9364
|
+
* Whether to use gradients
|
|
8925
9365
|
*/
|
|
8926
|
-
|
|
9366
|
+
useGradients?: boolean;
|
|
8927
9367
|
};
|
|
8928
|
-
/**
|
|
8929
|
-
* Whether to show labels
|
|
8930
|
-
*/
|
|
8931
|
-
showLabels?: boolean;
|
|
8932
|
-
/**
|
|
8933
|
-
* Whether to show values
|
|
8934
|
-
*/
|
|
8935
|
-
showValues?: boolean;
|
|
8936
9368
|
/**
|
|
8937
9369
|
* Label configuration
|
|
8938
9370
|
*/
|
|
8939
9371
|
labelConfig?: {
|
|
8940
9372
|
/**
|
|
8941
|
-
*
|
|
9373
|
+
* Whether to show labels
|
|
9374
|
+
*/
|
|
9375
|
+
showLabels?: boolean;
|
|
9376
|
+
/**
|
|
9377
|
+
* Minimum size for showing labels
|
|
8942
9378
|
*/
|
|
8943
9379
|
minSize?: number;
|
|
8944
9380
|
/**
|
|
@@ -8948,47 +9384,25 @@ interface TreemapChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8948
9384
|
/**
|
|
8949
9385
|
* Text color
|
|
8950
9386
|
*/
|
|
8951
|
-
|
|
8952
|
-
};
|
|
8953
|
-
/**
|
|
8954
|
-
* Border configuration
|
|
8955
|
-
*/
|
|
8956
|
-
borderConfig?: {
|
|
8957
|
-
/**
|
|
8958
|
-
* Border width
|
|
8959
|
-
*/
|
|
8960
|
-
width?: number;
|
|
8961
|
-
/**
|
|
8962
|
-
* Border color
|
|
8963
|
-
*/
|
|
8964
|
-
color?: string;
|
|
8965
|
-
/**
|
|
8966
|
-
* Border radius
|
|
8967
|
-
*/
|
|
8968
|
-
radius?: number;
|
|
9387
|
+
textColor?: string;
|
|
8969
9388
|
};
|
|
8970
9389
|
/**
|
|
8971
|
-
*
|
|
9390
|
+
* Interaction configuration
|
|
8972
9391
|
*/
|
|
8973
|
-
|
|
9392
|
+
interactionConfig?: {
|
|
8974
9393
|
/**
|
|
8975
|
-
*
|
|
9394
|
+
* Whether to enable tooltips
|
|
8976
9395
|
*/
|
|
8977
|
-
|
|
9396
|
+
enableTooltips?: boolean;
|
|
8978
9397
|
/**
|
|
8979
|
-
*
|
|
9398
|
+
* Whether to enable zoom
|
|
8980
9399
|
*/
|
|
8981
|
-
|
|
9400
|
+
enableZoom?: boolean;
|
|
8982
9401
|
/**
|
|
8983
|
-
*
|
|
9402
|
+
* Whether to enable selection
|
|
8984
9403
|
*/
|
|
8985
|
-
|
|
9404
|
+
enableSelection?: boolean;
|
|
8986
9405
|
};
|
|
8987
|
-
/**
|
|
8988
|
-
* Interaction handlers
|
|
8989
|
-
*/
|
|
8990
|
-
onNodeClick?: (node: TreemapNode) => void;
|
|
8991
|
-
onNodeHover?: (node: TreemapNode | null) => void;
|
|
8992
9406
|
}
|
|
8993
9407
|
declare const TreemapChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<TreemapChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
8994
9408
|
|
|
@@ -9079,6 +9493,7 @@ declare const WaterfallChart: react.MemoExoticComponent<react.ForwardRefExoticCo
|
|
|
9079
9493
|
|
|
9080
9494
|
interface ColorModeToggleProps {
|
|
9081
9495
|
className?: string;
|
|
9496
|
+
style?: react__default.CSSProperties;
|
|
9082
9497
|
}
|
|
9083
9498
|
declare const ColorModeToggle: react__default.FC<ColorModeToggleProps>;
|
|
9084
9499
|
|
|
@@ -9093,6 +9508,8 @@ interface CountdownProps {
|
|
|
9093
9508
|
focused?: boolean;
|
|
9094
9509
|
/** Custom className */
|
|
9095
9510
|
className?: string;
|
|
9511
|
+
/** Custom style */
|
|
9512
|
+
style?: react__default.CSSProperties;
|
|
9096
9513
|
/** Optional callback when countdown reaches zero */
|
|
9097
9514
|
onComplete?: () => void;
|
|
9098
9515
|
}
|
|
@@ -9124,6 +9541,51 @@ declare const DatePicker: react__default.ForwardRefExoticComponent<DatePickerPro
|
|
|
9124
9541
|
*/
|
|
9125
9542
|
declare const Dropdown: react__default.FC<DropdownProps>;
|
|
9126
9543
|
|
|
9544
|
+
/**
|
|
9545
|
+
* EdgePanel - A sliding panel component that appears from any screen edge
|
|
9546
|
+
*
|
|
9547
|
+
* @component
|
|
9548
|
+
* @example
|
|
9549
|
+
* ```tsx
|
|
9550
|
+
* // Basic usage
|
|
9551
|
+
* <EdgePanel
|
|
9552
|
+
* title="My Panel"
|
|
9553
|
+
* isOpen={isOpen}
|
|
9554
|
+
* onOpenChange={setIsOpen}
|
|
9555
|
+
* position="start"
|
|
9556
|
+
* >
|
|
9557
|
+
* <p>Panel content</p>
|
|
9558
|
+
* </EdgePanel>
|
|
9559
|
+
*
|
|
9560
|
+
* // With glass effect
|
|
9561
|
+
* <EdgePanel
|
|
9562
|
+
* title="Glass Panel"
|
|
9563
|
+
* isOpen={isOpen}
|
|
9564
|
+
* onOpenChange={setIsOpen}
|
|
9565
|
+
* position="end"
|
|
9566
|
+
* glass={true}
|
|
9567
|
+
* >
|
|
9568
|
+
* <p>Panel with glass morphism</p>
|
|
9569
|
+
* </EdgePanel>
|
|
9570
|
+
*
|
|
9571
|
+
* // With custom glass configuration
|
|
9572
|
+
* <EdgePanel
|
|
9573
|
+
* title="Custom Glass"
|
|
9574
|
+
* isOpen={isOpen}
|
|
9575
|
+
* onOpenChange={setIsOpen}
|
|
9576
|
+
* position="start"
|
|
9577
|
+
* glass={{
|
|
9578
|
+
* mode: 'shader',
|
|
9579
|
+
* shaderVariant: 'liquidGlass',
|
|
9580
|
+
* displacementScale: 70,
|
|
9581
|
+
* blurAmount: 1.8,
|
|
9582
|
+
* saturation: 170,
|
|
9583
|
+
* }}
|
|
9584
|
+
* >
|
|
9585
|
+
* <p>Panel with custom glass effect</p>
|
|
9586
|
+
* </EdgePanel>
|
|
9587
|
+
* ```
|
|
9588
|
+
*/
|
|
9127
9589
|
declare const EdgePanel: react__default.FC<EdgePanelProps>;
|
|
9128
9590
|
|
|
9129
9591
|
/**
|
|
@@ -9167,7 +9629,9 @@ declare const Footer: react__default.ForwardRefExoticComponent<FooterProps & rea
|
|
|
9167
9629
|
* </FooterSection>
|
|
9168
9630
|
* ```
|
|
9169
9631
|
*/
|
|
9170
|
-
declare const FooterSection: react__default.ForwardRefExoticComponent<FooterSectionProps &
|
|
9632
|
+
declare const FooterSection: react__default.ForwardRefExoticComponent<FooterSectionProps & {
|
|
9633
|
+
showNewsletter?: boolean;
|
|
9634
|
+
} & react__default.RefAttributes<HTMLDivElement>>;
|
|
9171
9635
|
|
|
9172
9636
|
/**
|
|
9173
9637
|
* FooterLink component provides styled links for use within footer sections.
|
|
@@ -9419,6 +9883,10 @@ interface ProductReviewProps {
|
|
|
9419
9883
|
* Additional CSS class
|
|
9420
9884
|
*/
|
|
9421
9885
|
className?: string;
|
|
9886
|
+
/**
|
|
9887
|
+
* Inline style for the component
|
|
9888
|
+
*/
|
|
9889
|
+
style?: react__default.CSSProperties;
|
|
9422
9890
|
}
|
|
9423
9891
|
/**
|
|
9424
9892
|
* ProductReview component for collecting user ratings and feedback
|
|
@@ -9504,6 +9972,10 @@ interface SectionIntroProps {
|
|
|
9504
9972
|
* Additional CSS class
|
|
9505
9973
|
*/
|
|
9506
9974
|
className?: string;
|
|
9975
|
+
/**
|
|
9976
|
+
* Custom style for the section intro
|
|
9977
|
+
*/
|
|
9978
|
+
style?: react__default.CSSProperties;
|
|
9507
9979
|
}
|
|
9508
9980
|
/**
|
|
9509
9981
|
* SectionIntro component for introducing content sections with titles, descriptions, and optional imagery
|
|
@@ -9549,6 +10021,10 @@ interface StepsProps {
|
|
|
9549
10021
|
* Additional CSS class
|
|
9550
10022
|
*/
|
|
9551
10023
|
className?: string;
|
|
10024
|
+
/**
|
|
10025
|
+
* Inline style for the component
|
|
10026
|
+
*/
|
|
10027
|
+
style?: react__default.CSSProperties;
|
|
9552
10028
|
/**
|
|
9553
10029
|
* Glass morphism effect for the steps component
|
|
9554
10030
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
@@ -9595,6 +10071,10 @@ interface TabProps {
|
|
|
9595
10071
|
* Additional CSS class for the tab component
|
|
9596
10072
|
*/
|
|
9597
10073
|
className?: string;
|
|
10074
|
+
/**
|
|
10075
|
+
* Custom style for the tab component
|
|
10076
|
+
*/
|
|
10077
|
+
style?: react__default.CSSProperties;
|
|
9598
10078
|
/**
|
|
9599
10079
|
* Glass morphism effect for the tab component
|
|
9600
10080
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
@@ -9645,6 +10125,10 @@ interface TestimonialProps {
|
|
|
9645
10125
|
* Additional CSS class
|
|
9646
10126
|
*/
|
|
9647
10127
|
className?: string;
|
|
10128
|
+
/**
|
|
10129
|
+
* Custom style for the testimonial
|
|
10130
|
+
*/
|
|
10131
|
+
style?: react__default.CSSProperties;
|
|
9648
10132
|
}
|
|
9649
10133
|
/**
|
|
9650
10134
|
* Testimonial component for displaying customer quotes and feedback
|
|
@@ -9674,6 +10158,10 @@ interface ToggleProps {
|
|
|
9674
10158
|
* Additional CSS class for the toggle
|
|
9675
10159
|
*/
|
|
9676
10160
|
className?: string;
|
|
10161
|
+
/**
|
|
10162
|
+
* Inline style for the component
|
|
10163
|
+
*/
|
|
10164
|
+
style?: react__default.CSSProperties;
|
|
9677
10165
|
/**
|
|
9678
10166
|
* Glass morphism effect for the toggle
|
|
9679
10167
|
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
@@ -9706,6 +10194,10 @@ interface TooltipProps {
|
|
|
9706
10194
|
* Additional CSS class for the tooltip
|
|
9707
10195
|
*/
|
|
9708
10196
|
className?: string;
|
|
10197
|
+
/**
|
|
10198
|
+
* Inline style for the component
|
|
10199
|
+
*/
|
|
10200
|
+
style?: react__default.CSSProperties;
|
|
9709
10201
|
/**
|
|
9710
10202
|
* Delay before showing the tooltip (in milliseconds)
|
|
9711
10203
|
*/
|
|
@@ -9727,6 +10219,10 @@ interface UploadProps {
|
|
|
9727
10219
|
* Whether the upload component is disabled
|
|
9728
10220
|
*/
|
|
9729
10221
|
disabled?: boolean;
|
|
10222
|
+
/**
|
|
10223
|
+
* Size variant of the upload component
|
|
10224
|
+
*/
|
|
10225
|
+
size?: 'sm' | 'md' | 'lg';
|
|
9730
10226
|
/**
|
|
9731
10227
|
* Maximum file size in MB
|
|
9732
10228
|
*/
|
|
@@ -9779,6 +10275,10 @@ interface UploadProps {
|
|
|
9779
10275
|
* Additional CSS class
|
|
9780
10276
|
*/
|
|
9781
10277
|
className?: string;
|
|
10278
|
+
/**
|
|
10279
|
+
* Custom style for the upload component
|
|
10280
|
+
*/
|
|
10281
|
+
style?: react__default.CSSProperties;
|
|
9782
10282
|
}
|
|
9783
10283
|
/**
|
|
9784
10284
|
* Upload component for file uploads with drag and drop
|
|
@@ -9816,6 +10316,14 @@ interface GridProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
9816
10316
|
* No gutters between columns
|
|
9817
10317
|
*/
|
|
9818
10318
|
noGutters?: boolean;
|
|
10319
|
+
/**
|
|
10320
|
+
* Flex direction
|
|
10321
|
+
*/
|
|
10322
|
+
direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
10323
|
+
/**
|
|
10324
|
+
* Wrap behavior
|
|
10325
|
+
*/
|
|
10326
|
+
wrap?: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
9819
10327
|
}
|
|
9820
10328
|
/**
|
|
9821
10329
|
* Grid component for creating responsive layouts.
|
|
@@ -9844,27 +10352,27 @@ interface GridColProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
9844
10352
|
/**
|
|
9845
10353
|
* Number of columns to span at extra small breakpoint (default)
|
|
9846
10354
|
*/
|
|
9847
|
-
xs?: number | 'auto';
|
|
10355
|
+
xs?: number | 'auto' | boolean;
|
|
9848
10356
|
/**
|
|
9849
10357
|
* Number of columns to span at small breakpoint
|
|
9850
10358
|
*/
|
|
9851
|
-
sm?: number | 'auto';
|
|
10359
|
+
sm?: number | 'auto' | boolean;
|
|
9852
10360
|
/**
|
|
9853
10361
|
* Number of columns to span at medium breakpoint
|
|
9854
10362
|
*/
|
|
9855
|
-
md?: number | 'auto';
|
|
10363
|
+
md?: number | 'auto' | boolean;
|
|
9856
10364
|
/**
|
|
9857
10365
|
* Number of columns to span at large breakpoint
|
|
9858
10366
|
*/
|
|
9859
|
-
lg?: number | 'auto';
|
|
10367
|
+
lg?: number | 'auto' | boolean;
|
|
9860
10368
|
/**
|
|
9861
10369
|
* Number of columns to span at extra large breakpoint
|
|
9862
10370
|
*/
|
|
9863
|
-
xl?: number | 'auto';
|
|
10371
|
+
xl?: number | 'auto' | boolean;
|
|
9864
10372
|
/**
|
|
9865
10373
|
* Number of columns to span at extra extra large breakpoint
|
|
9866
10374
|
*/
|
|
9867
|
-
xxl?: number | 'auto';
|
|
10375
|
+
xxl?: number | 'auto' | boolean;
|
|
9868
10376
|
/**
|
|
9869
10377
|
* Offset at extra small breakpoint
|
|
9870
10378
|
*/
|
|
@@ -9889,6 +10397,22 @@ interface GridColProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
9889
10397
|
* Offset at extra extra large breakpoint
|
|
9890
10398
|
*/
|
|
9891
10399
|
offsetXxl?: number;
|
|
10400
|
+
/**
|
|
10401
|
+
* Flex grow property
|
|
10402
|
+
*/
|
|
10403
|
+
grow?: boolean;
|
|
10404
|
+
/**
|
|
10405
|
+
* Flex shrink property
|
|
10406
|
+
*/
|
|
10407
|
+
shrink?: boolean;
|
|
10408
|
+
/**
|
|
10409
|
+
* Flex basis property
|
|
10410
|
+
*/
|
|
10411
|
+
basis?: string;
|
|
10412
|
+
/**
|
|
10413
|
+
* Alignment of the column
|
|
10414
|
+
*/
|
|
10415
|
+
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
|
|
9892
10416
|
}
|
|
9893
10417
|
/**
|
|
9894
10418
|
* GridCol component for creating columns within a Grid.
|
|
@@ -10047,30 +10571,29 @@ declare namespace layouts {
|
|
|
10047
10571
|
}
|
|
10048
10572
|
|
|
10049
10573
|
declare const atomix: {
|
|
10050
|
-
|
|
10051
|
-
|
|
10052
|
-
|
|
10053
|
-
|
|
10054
|
-
|
|
10055
|
-
|
|
10056
|
-
|
|
10057
|
-
|
|
10058
|
-
|
|
10059
|
-
|
|
10060
|
-
|
|
10061
|
-
|
|
10062
|
-
|
|
10063
|
-
|
|
10064
|
-
|
|
10065
|
-
|
|
10066
|
-
|
|
10067
|
-
|
|
10068
|
-
|
|
10069
|
-
|
|
10070
|
-
|
|
10071
|
-
|
|
10072
|
-
|
|
10073
|
-
readonly ChartRenderer: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
|
|
10574
|
+
composables: typeof __lib_composables;
|
|
10575
|
+
utils: typeof __lib_utils;
|
|
10576
|
+
constants: typeof __lib_constants;
|
|
10577
|
+
types: typeof __lib_types;
|
|
10578
|
+
layouts: typeof layouts;
|
|
10579
|
+
Accordion: react.FC<AccordionProps>;
|
|
10580
|
+
AtomixLogo: react.FC<AtomixLogoProps>;
|
|
10581
|
+
AtomixGlass: typeof AtomixGlass;
|
|
10582
|
+
Avatar: react.FC<AvatarProps>;
|
|
10583
|
+
AvatarGroup: react.FC<AvatarGroupProps>;
|
|
10584
|
+
Badge: react.FC<BadgeProps>;
|
|
10585
|
+
Block: react.ForwardRefExoticComponent<BlockProps & react.RefAttributes<HTMLDivElement>>;
|
|
10586
|
+
Breadcrumb: react.FC<BreadcrumbProps>;
|
|
10587
|
+
Button: react.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
10588
|
+
Callout: react.FC<CalloutProps>;
|
|
10589
|
+
Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>>;
|
|
10590
|
+
AnimatedChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AnimatedChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10591
|
+
AreaChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<AreaChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10592
|
+
BarChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<BarChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10593
|
+
BubbleChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<BubbleChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10594
|
+
CandlestickChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<CandlestickChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10595
|
+
Chart: react.MemoExoticComponent<react.ForwardRefExoticComponent<ChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10596
|
+
ChartRenderer: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
|
|
10074
10597
|
datasets: ChartProps$1["datasets"];
|
|
10075
10598
|
config?: ChartProps$1["config"];
|
|
10076
10599
|
width?: number;
|
|
@@ -10080,89 +10603,68 @@ declare const atomix: {
|
|
|
10080
10603
|
enableRealTime?: boolean;
|
|
10081
10604
|
enableAccessibility?: boolean;
|
|
10082
10605
|
enablePerformanceOptimization?: boolean;
|
|
10083
|
-
renderContent: (params:
|
|
10084
|
-
scales: any;
|
|
10085
|
-
colors: string[];
|
|
10086
|
-
datasets: any[];
|
|
10087
|
-
interactionState: any;
|
|
10088
|
-
handlers: {
|
|
10089
|
-
onDataPointClick?: ChartProps$1["onDataPointClick"];
|
|
10090
|
-
onPointHover: (datasetIndex: number, pointIndex: number, x: number, y: number, clientX: number, clientY: number) => void;
|
|
10091
|
-
onPointLeave: () => void;
|
|
10092
|
-
onMouseMove: (event: React.MouseEvent<SVGSVGElement>) => void;
|
|
10093
|
-
onMouseDown: (event: React.MouseEvent<SVGSVGElement>) => void;
|
|
10094
|
-
onMouseUp: () => void;
|
|
10095
|
-
onWheel: (event: React.WheelEvent<SVGSVGElement>) => void;
|
|
10096
|
-
};
|
|
10097
|
-
accessibility: {
|
|
10098
|
-
announcement: string;
|
|
10099
|
-
focusedPoint: {
|
|
10100
|
-
datasetIndex: number;
|
|
10101
|
-
pointIndex: number;
|
|
10102
|
-
};
|
|
10103
|
-
getAccessibleDescription: () => string;
|
|
10104
|
-
};
|
|
10105
|
-
}) => React.ReactNode;
|
|
10606
|
+
renderContent: (params: ChartRenderContentParams) => React.ReactNode;
|
|
10106
10607
|
} & react.RefAttributes<SVGSVGElement>>>;
|
|
10107
|
-
|
|
10108
|
-
|
|
10109
|
-
|
|
10110
|
-
|
|
10111
|
-
|
|
10112
|
-
|
|
10113
|
-
|
|
10114
|
-
|
|
10115
|
-
|
|
10116
|
-
|
|
10117
|
-
|
|
10118
|
-
|
|
10119
|
-
|
|
10120
|
-
|
|
10121
|
-
|
|
10122
|
-
|
|
10123
|
-
|
|
10124
|
-
|
|
10125
|
-
|
|
10126
|
-
|
|
10127
|
-
|
|
10128
|
-
|
|
10129
|
-
|
|
10130
|
-
|
|
10131
|
-
|
|
10132
|
-
|
|
10133
|
-
|
|
10134
|
-
|
|
10135
|
-
|
|
10136
|
-
|
|
10137
|
-
|
|
10138
|
-
|
|
10139
|
-
|
|
10140
|
-
|
|
10141
|
-
|
|
10142
|
-
|
|
10143
|
-
|
|
10144
|
-
|
|
10145
|
-
|
|
10146
|
-
|
|
10147
|
-
|
|
10148
|
-
|
|
10149
|
-
|
|
10150
|
-
|
|
10151
|
-
|
|
10152
|
-
|
|
10153
|
-
|
|
10154
|
-
|
|
10155
|
-
|
|
10156
|
-
|
|
10157
|
-
|
|
10158
|
-
|
|
10159
|
-
|
|
10160
|
-
|
|
10161
|
-
|
|
10162
|
-
|
|
10163
|
-
|
|
10164
|
-
|
|
10608
|
+
DonutChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<DonutChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10609
|
+
FunnelChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<FunnelChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10610
|
+
GaugeChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<GaugeChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10611
|
+
HeatmapChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<HeatmapChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10612
|
+
LineChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<LineChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10613
|
+
MultiAxisChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<MultiAxisChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10614
|
+
PieChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<PieChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10615
|
+
RadarChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<RadarChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10616
|
+
ScatterChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<ScatterChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10617
|
+
TreemapChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<TreemapChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10618
|
+
WaterfallChart: react.MemoExoticComponent<react.ForwardRefExoticComponent<WaterfallChartProps & react.RefAttributes<HTMLDivElement>>>;
|
|
10619
|
+
ColorModeToggle: react.FC<ColorModeToggleProps>;
|
|
10620
|
+
Countdown: react.FC<CountdownProps>;
|
|
10621
|
+
DataTable: react.FC<DataTableProps>;
|
|
10622
|
+
DatePicker: react.ForwardRefExoticComponent<DatePickerProps & react.RefAttributes<DatePickerRef>>;
|
|
10623
|
+
Dropdown: react.FC<DropdownProps>;
|
|
10624
|
+
EdgePanel: react.FC<EdgePanelProps>;
|
|
10625
|
+
Checkbox: react.FC<CheckboxProps>;
|
|
10626
|
+
Footer: react.ForwardRefExoticComponent<FooterProps & react.RefAttributes<HTMLElement>>;
|
|
10627
|
+
FooterSection: react.ForwardRefExoticComponent<FooterSectionProps & {
|
|
10628
|
+
showNewsletter?: boolean;
|
|
10629
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
10630
|
+
FooterLink: react.ForwardRefExoticComponent<FooterLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
10631
|
+
FooterSocialLink: react.ForwardRefExoticComponent<FooterSocialLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
10632
|
+
Form: react.FC<FormProps>;
|
|
10633
|
+
FormGroup: react.FC<FormGroupProps>;
|
|
10634
|
+
Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
10635
|
+
Radio: react.FC<RadioProps>;
|
|
10636
|
+
Select: react.FC<SelectProps>;
|
|
10637
|
+
Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
10638
|
+
Hero: react.FC<HeroProps>;
|
|
10639
|
+
Icon: react.FC<IconProps>;
|
|
10640
|
+
List: react.FC<ListProps>;
|
|
10641
|
+
Messages: react.FC<MessagesProps>;
|
|
10642
|
+
Modal: react.FC<ModalProps>;
|
|
10643
|
+
Nav: react.ForwardRefExoticComponent<NavProps & react.RefAttributes<HTMLUListElement>>;
|
|
10644
|
+
NavItem: react.ForwardRefExoticComponent<NavItemProps & react.RefAttributes<HTMLLIElement>>;
|
|
10645
|
+
Navbar: react.ForwardRefExoticComponent<NavbarProps & react.RefAttributes<HTMLElement>>;
|
|
10646
|
+
SideMenu: react.ForwardRefExoticComponent<SideMenuProps & react.RefAttributes<HTMLDivElement>>;
|
|
10647
|
+
SideMenuItem: react.ForwardRefExoticComponent<SideMenuItemProps & react.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
10648
|
+
SideMenuList: react.ForwardRefExoticComponent<SideMenuListProps & react.RefAttributes<HTMLUListElement>>;
|
|
10649
|
+
Pagination: react.FC<PaginationProps>;
|
|
10650
|
+
PhotoViewer: react.FC<PhotoViewerProps>;
|
|
10651
|
+
Popover: react.FC<PopoverProps>;
|
|
10652
|
+
ProductReview: react.FC<ProductReviewProps>;
|
|
10653
|
+
Progress: react.ForwardRefExoticComponent<ProgressProps & react.RefAttributes<HTMLDivElement>>;
|
|
10654
|
+
Rating: react.ForwardRefExoticComponent<RatingProps & react.RefAttributes<HTMLDivElement>>;
|
|
10655
|
+
River: react.FC<RiverProps>;
|
|
10656
|
+
SectionIntro: react.FC<SectionIntroProps>;
|
|
10657
|
+
Slider: react.ForwardRefExoticComponent<SliderProps & react.RefAttributes<HTMLDivElement>>;
|
|
10658
|
+
Spinner: react.FC<SpinnerProps>;
|
|
10659
|
+
Steps: react.FC<StepsProps>;
|
|
10660
|
+
Tab: react.FC<TabProps>;
|
|
10661
|
+
Testimonial: react.FC<TestimonialProps>;
|
|
10662
|
+
Todo: react.FC<TodoProps>;
|
|
10663
|
+
Toggle: react.FC<ToggleProps>;
|
|
10664
|
+
Tooltip: react.FC<TooltipProps>;
|
|
10665
|
+
Upload: react.FC<UploadProps>;
|
|
10666
|
+
VideoPlayer: react.ForwardRefExoticComponent<VideoPlayerProps & react.RefAttributes<HTMLVideoElement>>;
|
|
10165
10667
|
};
|
|
10166
10668
|
|
|
10167
|
-
export { Accordion,
|
|
10168
|
-
export type { AccordionProps,
|
|
10669
|
+
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 };
|
|
10670
|
+
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 };
|