@shohojdhara/atomix 0.2.1 → 0.2.3
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 +1 -28
- package/dist/atomix.css +1500 -241
- package/dist/atomix.min.css +6 -6
- package/dist/index.d.ts +1052 -194
- package/dist/index.esm.js +12201 -6066
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5481 -2827
- 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/boomdevs.css +1500 -301
- package/dist/themes/boomdevs.min.css +60 -8
- package/dist/themes/esrar.css +1500 -241
- package/dist/themes/esrar.min.css +6 -6
- package/dist/themes/mashroom.css +1496 -237
- package/dist/themes/mashroom.min.css +8 -8
- package/dist/themes/shaj-default.css +1451 -192
- package/dist/themes/shaj-default.min.css +6 -6
- package/package.json +66 -15
- package/src/components/Accordion/Accordion.stories.tsx +137 -0
- package/src/components/Accordion/Accordion.tsx +33 -3
- package/src/components/AtomixGlass/AtomixGlass.stories.tsx +3011 -0
- package/src/components/AtomixGlass/AtomixGlass.test.tsx +199 -0
- package/src/components/AtomixGlass/AtomixGlass.tsx +1281 -0
- package/src/components/AtomixGlass/AtomixGlassComprehensivePreview.stories.tsx +1369 -0
- package/src/components/AtomixGlass/README.md +134 -0
- package/src/components/AtomixGlass/index.ts +10 -0
- package/src/components/AtomixGlass/shader-utils.ts +140 -0
- package/src/components/AtomixGlass/utils.ts +8 -0
- package/src/components/Badge/Badge.stories.tsx +169 -0
- package/src/components/Badge/Badge.tsx +27 -2
- package/src/components/Button/Button.stories.tsx +345 -0
- package/src/components/Button/Button.tsx +35 -3
- package/src/components/Button/README.md +216 -0
- package/src/components/Callout/Callout.stories.tsx +813 -78
- package/src/components/Callout/Callout.test.tsx +368 -0
- package/src/components/Callout/Callout.tsx +26 -7
- package/src/components/Callout/README.md +409 -0
- package/src/components/Card/Card.stories.tsx +140 -0
- package/src/components/Card/Card.tsx +19 -3
- package/src/components/DatePicker/DatePicker copy.tsx +551 -0
- package/src/components/DatePicker/DatePicker.stories.tsx +188 -0
- package/src/components/DatePicker/DatePicker.tsx +379 -332
- package/src/components/DatePicker/readme.md +110 -1
- package/src/components/DatePicker/types.ts +8 -0
- package/src/components/Dropdown/Dropdown.stories.tsx +145 -0
- package/src/components/Dropdown/Dropdown.tsx +34 -5
- package/src/components/Footer/Footer.stories.tsx +388 -0
- package/src/components/Footer/Footer.tsx +197 -0
- package/src/components/Footer/FooterLink.tsx +72 -0
- package/src/components/Footer/FooterSection.tsx +87 -0
- package/src/components/Footer/FooterSocialLink.tsx +117 -0
- package/src/components/Footer/README.md +261 -0
- package/src/components/Footer/index.ts +13 -0
- package/src/components/Form/Checkbox.stories.tsx +101 -0
- package/src/components/Form/Checkbox.tsx +26 -2
- package/src/components/Form/Input.stories.tsx +124 -0
- package/src/components/Form/Input.tsx +36 -7
- package/src/components/Form/Radio.stories.tsx +139 -0
- package/src/components/Form/Radio.tsx +26 -2
- package/src/components/Form/Select.stories.tsx +110 -0
- package/src/components/Form/Select.tsx +26 -2
- package/src/components/Form/Textarea.stories.tsx +104 -0
- package/src/components/Form/Textarea.tsx +36 -7
- package/src/components/Hero/Hero.stories.tsx +54 -1
- package/src/components/Hero/Hero.tsx +70 -11
- package/src/components/Modal/Modal.stories.tsx +235 -0
- package/src/components/Modal/Modal.tsx +64 -35
- package/src/components/Pagination/Pagination.stories.tsx +101 -0
- package/src/components/Pagination/Pagination.tsx +25 -1
- package/src/components/Popover/Popover.stories.tsx +94 -0
- package/src/components/Popover/Popover.tsx +30 -4
- package/src/components/Rating/Rating.stories.tsx +112 -0
- package/src/components/Rating/Rating.tsx +25 -1
- package/src/components/SectionIntro/SectionIntro.tsx +9 -11
- package/src/components/Slider/Slider.stories.tsx +634 -50
- package/src/components/Slider/Slider.tsx +5 -3
- package/src/components/Steps/Steps.stories.tsx +119 -0
- package/src/components/Steps/Steps.tsx +32 -1
- package/src/components/Tab/Tab.stories.tsx +88 -0
- package/src/components/Tab/Tab.tsx +32 -1
- package/src/components/Toggle/Toggle.stories.tsx +92 -0
- package/src/components/Toggle/Toggle.tsx +32 -1
- package/src/components/Tooltip/Tooltip.stories.tsx +131 -0
- package/src/components/Tooltip/Tooltip.tsx +43 -7
- package/src/components/VideoPlayer/VideoPlayer.stories.tsx +1002 -196
- package/src/components/VideoPlayer/VideoPlayer.tsx +161 -4
- package/src/components/index.ts +14 -0
- package/src/layouts/Grid/Grid.stories.tsx +226 -159
- package/src/lib/composables/index.ts +4 -0
- package/src/lib/composables/useAtomixGlass.ts +71 -0
- package/src/lib/composables/useButton.ts +3 -1
- package/src/lib/composables/useCallout.ts +4 -1
- package/src/lib/composables/useFooter.ts +85 -0
- package/src/lib/composables/useGlassContainer.ts +168 -0
- package/src/lib/composables/useSlider.ts +191 -4
- package/src/lib/constants/components.ts +173 -0
- package/src/lib/types/components.ts +622 -0
- package/src/lib/utils/displacement-generator.ts +86 -0
- package/src/styles/01-settings/_index.scss +1 -0
- package/src/styles/01-settings/_settings.accordion.scss +20 -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 -18
- package/src/styles/01-settings/_settings.background.scss +10 -0
- package/src/styles/01-settings/_settings.badge.scss +1 -1
- package/src/styles/01-settings/_settings.breadcrumb.scss +8 -2
- package/src/styles/01-settings/_settings.callout.scss +7 -7
- package/src/styles/01-settings/_settings.card.scss +2 -2
- package/src/styles/01-settings/_settings.chart.scss +7 -7
- package/src/styles/01-settings/_settings.checkbox-group.scss +5 -2
- package/src/styles/01-settings/_settings.checkbox.scss +10 -4
- package/src/styles/01-settings/_settings.countdown.scss +6 -4
- package/src/styles/01-settings/_settings.dropdown.scss +9 -7
- package/src/styles/01-settings/_settings.edge-panel.scss +3 -2
- package/src/styles/01-settings/_settings.footer.scss +125 -0
- package/src/styles/01-settings/_settings.form-group.scss +3 -1
- package/src/styles/01-settings/_settings.form.scss +4 -2
- package/src/styles/01-settings/_settings.hero.scss +9 -7
- package/src/styles/01-settings/_settings.input.scss +9 -7
- package/src/styles/01-settings/_settings.list-group.scss +4 -2
- package/src/styles/01-settings/_settings.list.scss +4 -2
- package/src/styles/01-settings/_settings.menu.scss +10 -8
- package/src/styles/01-settings/_settings.messages.scss +19 -17
- package/src/styles/01-settings/_settings.modal.scss +6 -4
- package/src/styles/01-settings/_settings.nav.scss +6 -4
- package/src/styles/01-settings/_settings.navbar.scss +8 -5
- package/src/styles/01-settings/_settings.pagination.scss +5 -3
- package/src/styles/01-settings/_settings.popover.scss +6 -4
- package/src/styles/01-settings/_settings.rating.scss +5 -3
- package/src/styles/01-settings/_settings.river.scss +8 -6
- package/src/styles/01-settings/_settings.sectionintro.scss +8 -6
- package/src/styles/01-settings/_settings.select.scss +7 -5
- package/src/styles/01-settings/_settings.side-menu.scss +15 -13
- package/src/styles/01-settings/_settings.spacing.scss +4 -0
- package/src/styles/01-settings/_settings.steps.scss +7 -5
- package/src/styles/01-settings/_settings.tabs.scss +7 -5
- package/src/styles/01-settings/_settings.testimonials.scss +6 -4
- package/src/styles/01-settings/_settings.toggle.scss +3 -1
- package/src/styles/01-settings/_settings.tooltip.scss +5 -3
- package/src/styles/01-settings/_settings.upload.scss +22 -20
- package/src/styles/02-tools/_tools.animations.scss +19 -0
- package/src/styles/02-tools/_tools.background.scss +87 -0
- package/src/styles/02-tools/_tools.glass.scss +1 -0
- package/src/styles/02-tools/_tools.rem.scss +18 -5
- package/src/styles/02-tools/_tools.utility-api.scss +32 -26
- package/src/styles/03-generic/_generic.root.scss +15 -2
- package/src/styles/04-elements/_elements.body.scss +6 -0
- package/src/styles/06-components/_components.accordion.scss +24 -4
- package/src/styles/06-components/_components.atomix-glass.scss +0 -0
- package/src/styles/06-components/_components.avatar-group.scss +2 -1
- package/src/styles/06-components/_components.avatar.scss +2 -1
- package/src/styles/06-components/_components.badge.scss +36 -1
- package/src/styles/06-components/_components.breadcrumb.scss +2 -1
- package/src/styles/06-components/_components.button.scss +14 -3
- package/src/styles/06-components/_components.callout.scss +44 -4
- package/src/styles/06-components/_components.card.scss +21 -2
- package/src/styles/06-components/_components.chart.scss +3 -2
- package/src/styles/06-components/_components.checkbox.scss +2 -1
- package/src/styles/06-components/_components.color-mode-toggle.scss +3 -2
- package/src/styles/06-components/_components.countdown.scss +2 -1
- package/src/styles/06-components/_components.data-table.scss +7 -6
- package/src/styles/06-components/_components.datepicker.scss +20 -1
- package/src/styles/06-components/_components.dropdown.scss +11 -4
- package/src/styles/06-components/_components.edge-panel.scss +4 -3
- package/src/styles/06-components/_components.footer.scss +825 -0
- package/src/styles/06-components/_components.form-group.scss +1 -0
- package/src/styles/06-components/_components.hero.scss +4 -4
- package/src/styles/06-components/_components.image-gallery.scss +1 -0
- package/src/styles/06-components/_components.input.scss +33 -2
- package/src/styles/06-components/_components.list-group.scss +3 -2
- package/src/styles/06-components/_components.list.scss +2 -1
- package/src/styles/06-components/_components.menu.scss +5 -4
- package/src/styles/06-components/_components.messages.scss +8 -7
- package/src/styles/06-components/_components.modal.scss +3 -2
- package/src/styles/06-components/_components.nav.scss +6 -5
- package/src/styles/06-components/_components.navbar.scss +4 -3
- package/src/styles/06-components/_components.pagination.scss +2 -1
- package/src/styles/06-components/_components.photoviewer.scss +4 -3
- package/src/styles/06-components/_components.popover.scss +3 -2
- package/src/styles/06-components/_components.product-review.scss +3 -2
- package/src/styles/06-components/_components.progress.scss +3 -2
- package/src/styles/06-components/_components.river.scss +3 -2
- package/src/styles/06-components/_components.sectionintro.scss +2 -1
- package/src/styles/06-components/_components.select.scss +5 -4
- package/src/styles/06-components/_components.side-menu.scss +8 -7
- package/src/styles/06-components/_components.skeleton.scss +3 -2
- package/src/styles/06-components/_components.slider.scss +7 -6
- package/src/styles/06-components/_components.spinner.scss +1 -0
- package/src/styles/06-components/_components.steps.scss +3 -2
- package/src/styles/06-components/_components.tabs.scss +4 -3
- package/src/styles/06-components/_components.testimonials.scss +2 -1
- package/src/styles/06-components/_components.todo.scss +3 -2
- package/src/styles/06-components/_components.toggle.scss +5 -4
- package/src/styles/06-components/_components.tooltip.scss +3 -2
- package/src/styles/06-components/_components.upload.scss +4 -3
- package/src/styles/06-components/_components.video-player.scss +50 -27
- package/src/styles/06-components/_index.scss +2 -0
- package/src/styles/99-utilities/_utilities.glass-fixes.scss +48 -0
- package/dist/themes/yabai.css +0 -13711
- package/dist/themes/yabai.min.css +0 -189
package/dist/index.d.ts
CHANGED
|
@@ -1,134 +1,95 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import react__default, { ReactNode, ElementType, HTMLAttributes } from 'react';
|
|
3
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
4
|
import * as PhosphorIcons from '@phosphor-icons/react';
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
* Selection mode - single date or date range
|
|
23
|
-
* @default "single"
|
|
24
|
-
*/
|
|
25
|
-
selectionMode?: DatePickerSelectionMode;
|
|
26
|
-
/**
|
|
27
|
-
* The start date of the range (only used when selectionMode is "range")
|
|
28
|
-
*/
|
|
29
|
-
startDate?: Date | null;
|
|
30
|
-
/**
|
|
31
|
-
* The end date of the range (only used when selectionMode is "range")
|
|
32
|
-
*/
|
|
33
|
-
endDate?: Date | null;
|
|
34
|
-
/**
|
|
35
|
-
* Callback function when date range is changed
|
|
36
|
-
*/
|
|
37
|
-
onRangeChange?: (range: DateRange) => void;
|
|
38
|
-
/**
|
|
39
|
-
* Format for the date display (follows Intl.DateTimeFormat patterns)
|
|
40
|
-
* @default "MM/dd/yyyy"
|
|
41
|
-
*/
|
|
42
|
-
format?: string;
|
|
43
|
-
/**
|
|
44
|
-
* Minimum selectable date
|
|
45
|
-
*/
|
|
46
|
-
minDate?: Date;
|
|
47
|
-
/**
|
|
48
|
-
* Maximum selectable date
|
|
49
|
-
*/
|
|
50
|
-
maxDate?: Date;
|
|
51
|
-
/**
|
|
52
|
-
* Placeholder text for the input
|
|
53
|
-
* @default "Select date..."
|
|
54
|
-
*/
|
|
55
|
-
placeholder?: string;
|
|
56
|
-
/**
|
|
57
|
-
* Whether the datepicker is disabled
|
|
58
|
-
* @default false
|
|
59
|
-
*/
|
|
60
|
-
disabled?: boolean;
|
|
61
|
-
/**
|
|
62
|
-
* Whether the datepicker is read-only
|
|
63
|
-
* @default false
|
|
64
|
-
*/
|
|
65
|
-
readOnly?: boolean;
|
|
66
|
-
/**
|
|
67
|
-
* Whether to show a clear button
|
|
68
|
-
* @default true
|
|
69
|
-
*/
|
|
70
|
-
clearable?: boolean;
|
|
71
|
-
/**
|
|
72
|
-
* Whether to show the "Today" button
|
|
73
|
-
* @default true
|
|
74
|
-
*/
|
|
75
|
-
showTodayButton?: boolean;
|
|
76
|
-
/**
|
|
77
|
-
* Whether to show week numbers
|
|
78
|
-
* @default false
|
|
79
|
-
*/
|
|
80
|
-
showWeekNumbers?: boolean;
|
|
81
|
-
/**
|
|
82
|
-
* Whether to display the datepicker inline (always visible)
|
|
83
|
-
* @default false
|
|
84
|
-
*/
|
|
85
|
-
inline?: boolean;
|
|
86
|
-
/**
|
|
87
|
-
* ID for the input element
|
|
88
|
-
*/
|
|
89
|
-
id?: string;
|
|
90
|
-
/**
|
|
91
|
-
* Name for the input element
|
|
92
|
-
*/
|
|
93
|
-
name?: string;
|
|
94
|
-
/**
|
|
95
|
-
* Additional class name for the datepicker component
|
|
96
|
-
*/
|
|
6
|
+
interface AtomixGlassProps$1 {
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
displacementScale?: number;
|
|
9
|
+
blurAmount?: number;
|
|
10
|
+
saturation?: number;
|
|
11
|
+
aberrationIntensity?: number;
|
|
12
|
+
elasticity?: number;
|
|
13
|
+
cornerRadius?: number;
|
|
14
|
+
globalMousePos?: {
|
|
15
|
+
x: number;
|
|
16
|
+
y: number;
|
|
17
|
+
};
|
|
18
|
+
mouseOffset?: {
|
|
19
|
+
x: number;
|
|
20
|
+
y: number;
|
|
21
|
+
};
|
|
22
|
+
mouseContainer?: React.RefObject<HTMLElement | null> | null;
|
|
97
23
|
className?: string;
|
|
24
|
+
padding?: string;
|
|
25
|
+
style?: React.CSSProperties;
|
|
26
|
+
overLight?: boolean;
|
|
27
|
+
mode?: 'standard' | 'polar' | 'prominent' | 'shader';
|
|
28
|
+
onClick?: () => void;
|
|
98
29
|
/**
|
|
99
|
-
*
|
|
100
|
-
* @default "bottom-start"
|
|
30
|
+
* Accessibility props
|
|
101
31
|
*/
|
|
102
|
-
|
|
32
|
+
'aria-label'?: string;
|
|
33
|
+
'aria-describedby'?: string;
|
|
34
|
+
role?: string;
|
|
35
|
+
tabIndex?: number;
|
|
103
36
|
/**
|
|
104
|
-
*
|
|
37
|
+
* Performance and accessibility options
|
|
105
38
|
*/
|
|
106
|
-
|
|
39
|
+
reducedMotion?: boolean;
|
|
40
|
+
highContrast?: boolean;
|
|
41
|
+
disableEffects?: boolean;
|
|
107
42
|
/**
|
|
108
|
-
*
|
|
109
|
-
* @default "md"
|
|
43
|
+
* Performance monitoring
|
|
110
44
|
*/
|
|
111
|
-
|
|
45
|
+
enablePerformanceMonitoring?: boolean;
|
|
112
46
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
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
|
+
/**
|
|
50
|
+
* AtomixGlass component props interface
|
|
51
|
+
*/
|
|
52
|
+
interface AtomixGlassProps {
|
|
53
|
+
children: React.ReactNode;
|
|
54
|
+
displacementScale?: number;
|
|
55
|
+
blurAmount?: number;
|
|
56
|
+
saturation?: number;
|
|
57
|
+
aberrationIntensity?: number;
|
|
58
|
+
elasticity?: number;
|
|
59
|
+
cornerRadius?: number;
|
|
60
|
+
globalMousePos?: {
|
|
61
|
+
x: number;
|
|
62
|
+
y: number;
|
|
63
|
+
};
|
|
64
|
+
mouseOffset?: {
|
|
65
|
+
x: number;
|
|
66
|
+
y: number;
|
|
67
|
+
};
|
|
68
|
+
mouseContainer?: React.RefObject<HTMLElement | null> | null;
|
|
69
|
+
className?: string;
|
|
70
|
+
padding?: string;
|
|
71
|
+
style?: React.CSSProperties;
|
|
72
|
+
overLight?: boolean;
|
|
73
|
+
mode?: 'standard' | 'polar' | 'prominent' | 'shader';
|
|
74
|
+
onClick?: () => void;
|
|
118
75
|
/**
|
|
119
|
-
*
|
|
76
|
+
* Accessibility props
|
|
120
77
|
*/
|
|
121
|
-
|
|
78
|
+
'aria-label'?: string;
|
|
79
|
+
'aria-describedby'?: string;
|
|
80
|
+
role?: string;
|
|
81
|
+
tabIndex?: number;
|
|
122
82
|
/**
|
|
123
|
-
*
|
|
83
|
+
* Performance and accessibility options
|
|
124
84
|
*/
|
|
125
|
-
|
|
85
|
+
reducedMotion?: boolean;
|
|
86
|
+
highContrast?: boolean;
|
|
87
|
+
disableEffects?: boolean;
|
|
126
88
|
/**
|
|
127
|
-
*
|
|
89
|
+
* Performance monitoring
|
|
128
90
|
*/
|
|
129
|
-
|
|
91
|
+
enablePerformanceMonitoring?: boolean;
|
|
130
92
|
}
|
|
131
|
-
|
|
132
93
|
/**
|
|
133
94
|
* Common component size options
|
|
134
95
|
*/
|
|
@@ -157,6 +118,10 @@ interface BaseComponentProps {
|
|
|
157
118
|
* Component disabled state
|
|
158
119
|
*/
|
|
159
120
|
disabled?: boolean;
|
|
121
|
+
/**
|
|
122
|
+
* Component children
|
|
123
|
+
*/
|
|
124
|
+
children?: ReactNode;
|
|
160
125
|
}
|
|
161
126
|
/**
|
|
162
127
|
* CSS class state modifiers
|
|
@@ -242,6 +207,11 @@ interface ButtonProps extends BaseComponentProps {
|
|
|
242
207
|
* Make button fully rounded (pill shape)
|
|
243
208
|
*/
|
|
244
209
|
rounded?: boolean;
|
|
210
|
+
/**
|
|
211
|
+
* Glass morphism effect for the button
|
|
212
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
213
|
+
*/
|
|
214
|
+
glass?: AtomixGlassProps | boolean;
|
|
245
215
|
}
|
|
246
216
|
/**
|
|
247
217
|
* Badge component properties
|
|
@@ -263,6 +233,11 @@ interface BadgeProps extends BaseComponentProps {
|
|
|
263
233
|
* Optional icon
|
|
264
234
|
*/
|
|
265
235
|
icon?: ReactNode;
|
|
236
|
+
/**
|
|
237
|
+
* Glass morphism effect for the badge
|
|
238
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
239
|
+
*/
|
|
240
|
+
glass?: AtomixGlassProps | boolean;
|
|
266
241
|
}
|
|
267
242
|
/**
|
|
268
243
|
* Callout component properties
|
|
@@ -300,6 +275,11 @@ interface CalloutProps extends BaseComponentProps {
|
|
|
300
275
|
* Display as toast notification
|
|
301
276
|
*/
|
|
302
277
|
toast?: boolean;
|
|
278
|
+
/**
|
|
279
|
+
* Glass morphism effect for the callout
|
|
280
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
281
|
+
*/
|
|
282
|
+
glass?: AtomixGlassProps | boolean;
|
|
303
283
|
}
|
|
304
284
|
/**
|
|
305
285
|
* Accordion component properties
|
|
@@ -325,6 +305,11 @@ interface AccordionProps$1 extends BaseComponentProps {
|
|
|
325
305
|
* Custom icon for the accordion
|
|
326
306
|
*/
|
|
327
307
|
icon?: ReactNode;
|
|
308
|
+
/**
|
|
309
|
+
* Glass morphism effect for the accordion
|
|
310
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
311
|
+
*/
|
|
312
|
+
glass?: AtomixGlassProps | boolean;
|
|
328
313
|
}
|
|
329
314
|
/**
|
|
330
315
|
* Accordion state
|
|
@@ -419,6 +404,10 @@ interface HeroProps extends BaseComponentProps {
|
|
|
419
404
|
* Video background URL
|
|
420
405
|
*/
|
|
421
406
|
videoBackground?: string;
|
|
407
|
+
/**
|
|
408
|
+
* Glass effect properties for content container
|
|
409
|
+
*/
|
|
410
|
+
glass?: AtomixGlassProps | boolean;
|
|
422
411
|
/**
|
|
423
412
|
* Video background options
|
|
424
413
|
*/
|
|
@@ -440,6 +429,10 @@ interface HeroProps extends BaseComponentProps {
|
|
|
440
429
|
*/
|
|
441
430
|
posterUrl?: string;
|
|
442
431
|
};
|
|
432
|
+
/**
|
|
433
|
+
* Component children
|
|
434
|
+
*/
|
|
435
|
+
children?: ReactNode;
|
|
443
436
|
}
|
|
444
437
|
/**
|
|
445
438
|
* Spinner component properties
|
|
@@ -950,6 +943,11 @@ interface PaginationProps extends BaseComponentProps {
|
|
|
950
943
|
* Accessible label for the navigation element
|
|
951
944
|
*/
|
|
952
945
|
ariaLabel?: string;
|
|
946
|
+
/**
|
|
947
|
+
* Glass morphism effect for the pagination component
|
|
948
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
949
|
+
*/
|
|
950
|
+
glass?: AtomixGlassProps | boolean;
|
|
953
951
|
}
|
|
954
952
|
/**
|
|
955
953
|
* Todo item data structure
|
|
@@ -1179,6 +1177,10 @@ interface InputProps extends BaseComponentProps {
|
|
|
1179
1177
|
* ID of element that describes this input
|
|
1180
1178
|
*/
|
|
1181
1179
|
ariaDescribedBy?: string;
|
|
1180
|
+
/**
|
|
1181
|
+
* Glass morphism effect
|
|
1182
|
+
*/
|
|
1183
|
+
glass?: boolean | Omit<React.ComponentProps<typeof AtomixGlass>, 'children'>;
|
|
1182
1184
|
}
|
|
1183
1185
|
/**
|
|
1184
1186
|
* Select option
|
|
@@ -1261,6 +1263,11 @@ interface SelectProps extends BaseComponentProps {
|
|
|
1261
1263
|
* ID of element that describes this select
|
|
1262
1264
|
*/
|
|
1263
1265
|
ariaDescribedBy?: string;
|
|
1266
|
+
/**
|
|
1267
|
+
* Glass morphism effect for the select
|
|
1268
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1269
|
+
*/
|
|
1270
|
+
glass?: AtomixGlassProps | boolean;
|
|
1264
1271
|
}
|
|
1265
1272
|
/**
|
|
1266
1273
|
* Checkbox component properties
|
|
@@ -1314,6 +1321,11 @@ interface CheckboxProps extends BaseComponentProps {
|
|
|
1314
1321
|
* ID of element that describes this checkbox
|
|
1315
1322
|
*/
|
|
1316
1323
|
ariaDescribedBy?: string;
|
|
1324
|
+
/**
|
|
1325
|
+
* Glass morphism effect for the checkbox
|
|
1326
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1327
|
+
*/
|
|
1328
|
+
glass?: AtomixGlassProps | boolean;
|
|
1317
1329
|
}
|
|
1318
1330
|
/**
|
|
1319
1331
|
* Radio component properties
|
|
@@ -1363,6 +1375,11 @@ interface RadioProps extends BaseComponentProps {
|
|
|
1363
1375
|
* ID of element that describes this radio
|
|
1364
1376
|
*/
|
|
1365
1377
|
ariaDescribedBy?: string;
|
|
1378
|
+
/**
|
|
1379
|
+
* Glass morphism effect for the radio button
|
|
1380
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1381
|
+
*/
|
|
1382
|
+
glass?: AtomixGlassProps | boolean;
|
|
1366
1383
|
}
|
|
1367
1384
|
/**
|
|
1368
1385
|
* Textarea component properties
|
|
@@ -1448,6 +1465,10 @@ interface TextareaProps extends BaseComponentProps {
|
|
|
1448
1465
|
* ID of element that describes this textarea
|
|
1449
1466
|
*/
|
|
1450
1467
|
ariaDescribedBy?: string;
|
|
1468
|
+
/**
|
|
1469
|
+
* Glass morphism effect
|
|
1470
|
+
*/
|
|
1471
|
+
glass?: boolean | Omit<React.ComponentProps<typeof AtomixGlass>, 'children'>;
|
|
1451
1472
|
}
|
|
1452
1473
|
/**
|
|
1453
1474
|
* Avatar size options
|
|
@@ -1555,6 +1576,11 @@ interface ModalProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title'>
|
|
|
1555
1576
|
* Content for the modal footer
|
|
1556
1577
|
*/
|
|
1557
1578
|
footer?: React.ReactNode;
|
|
1579
|
+
/**
|
|
1580
|
+
* Glass morphism effect for the modal
|
|
1581
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1582
|
+
*/
|
|
1583
|
+
glass?: AtomixGlassProps | boolean;
|
|
1558
1584
|
}
|
|
1559
1585
|
/**
|
|
1560
1586
|
* Breadcrumb item interface
|
|
@@ -1764,6 +1790,11 @@ interface PopoverProps {
|
|
|
1764
1790
|
* Children content (removed in favor of using PopoverTrigger)
|
|
1765
1791
|
*/
|
|
1766
1792
|
children?: ReactNode;
|
|
1793
|
+
/**
|
|
1794
|
+
* Glass morphism effect for the popover
|
|
1795
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1796
|
+
*/
|
|
1797
|
+
glass?: AtomixGlassProps | boolean;
|
|
1767
1798
|
}
|
|
1768
1799
|
/**
|
|
1769
1800
|
* The trigger method for the dropdown menu
|
|
@@ -1833,6 +1864,11 @@ interface DropdownProps extends BaseComponentProps {
|
|
|
1833
1864
|
* Optional ID for the dropdown
|
|
1834
1865
|
*/
|
|
1835
1866
|
id?: string;
|
|
1867
|
+
/**
|
|
1868
|
+
* Glass morphism effect for the dropdown menu
|
|
1869
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
1870
|
+
*/
|
|
1871
|
+
glass?: AtomixGlassProps | boolean;
|
|
1836
1872
|
}
|
|
1837
1873
|
/**
|
|
1838
1874
|
* Dropdown menu item properties
|
|
@@ -1958,6 +1994,11 @@ interface RatingProps extends BaseComponentProps {
|
|
|
1958
1994
|
* Whether to use the vanilla JS implementation
|
|
1959
1995
|
*/
|
|
1960
1996
|
useVanillaJS?: boolean;
|
|
1997
|
+
/**
|
|
1998
|
+
* Glass morphism effect for the rating component
|
|
1999
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
2000
|
+
*/
|
|
2001
|
+
glass?: AtomixGlassProps | boolean;
|
|
1961
2002
|
}
|
|
1962
2003
|
/**
|
|
1963
2004
|
* VideoPlayer component properties
|
|
@@ -2063,6 +2104,31 @@ interface VideoPlayerProps extends BaseComponentProps {
|
|
|
2063
2104
|
* Enable ambient mode (YouTube-like background glow)
|
|
2064
2105
|
*/
|
|
2065
2106
|
ambientMode?: boolean;
|
|
2107
|
+
/**
|
|
2108
|
+
* Glass morphism variant configuration
|
|
2109
|
+
* - true: Enable with default settings
|
|
2110
|
+
* - false/undefined: Disable glass effect
|
|
2111
|
+
* - object: Custom glass configuration
|
|
2112
|
+
*/
|
|
2113
|
+
glass?: boolean | {
|
|
2114
|
+
displacementScale?: number;
|
|
2115
|
+
blurAmount?: number;
|
|
2116
|
+
saturation?: number;
|
|
2117
|
+
aberrationIntensity?: number;
|
|
2118
|
+
elasticity?: number;
|
|
2119
|
+
cornerRadius?: number;
|
|
2120
|
+
mode?: 'standard' | 'polar' | 'prominent' | 'shader';
|
|
2121
|
+
overLight?: boolean;
|
|
2122
|
+
};
|
|
2123
|
+
/**
|
|
2124
|
+
* Glass overlay opacity (0-1) when glass variant is enabled
|
|
2125
|
+
* @default 0.3
|
|
2126
|
+
*/
|
|
2127
|
+
glassOpacity?: number;
|
|
2128
|
+
/**
|
|
2129
|
+
* Custom content to display over the glass layer
|
|
2130
|
+
*/
|
|
2131
|
+
glassContent?: React.ReactNode;
|
|
2066
2132
|
/**
|
|
2067
2133
|
* Play event handler
|
|
2068
2134
|
*/
|
|
@@ -2204,10 +2270,24 @@ interface CardProps extends BaseComponentProps {
|
|
|
2204
2270
|
* Active state
|
|
2205
2271
|
*/
|
|
2206
2272
|
active?: boolean;
|
|
2273
|
+
/**
|
|
2274
|
+
* Applies a glass morphism effect to the card.
|
|
2275
|
+
* Can be a boolean to enable with default settings, or an object with `AtomixGlassProps` to customize the effect.
|
|
2276
|
+
*/
|
|
2277
|
+
glass?: boolean | Omit<React.ComponentProps<typeof AtomixGlass>, 'children'>;
|
|
2278
|
+
cardAppearance?: boolean;
|
|
2207
2279
|
/**
|
|
2208
2280
|
* Card content (body)
|
|
2209
2281
|
*/
|
|
2210
2282
|
children?: ReactNode;
|
|
2283
|
+
/**
|
|
2284
|
+
* Card styles
|
|
2285
|
+
*/
|
|
2286
|
+
styles?: React.CSSProperties;
|
|
2287
|
+
/**
|
|
2288
|
+
* Card className
|
|
2289
|
+
*/
|
|
2290
|
+
className?: string;
|
|
2211
2291
|
/**
|
|
2212
2292
|
* Optional click handler
|
|
2213
2293
|
*/
|
|
@@ -3843,143 +3923,607 @@ interface ChartProps$1 extends BaseComponentProps {
|
|
|
3843
3923
|
/**
|
|
3844
3924
|
* Error message
|
|
3845
3925
|
*/
|
|
3846
|
-
error?: string;
|
|
3926
|
+
error?: string;
|
|
3927
|
+
/**
|
|
3928
|
+
* Chart size
|
|
3929
|
+
*/
|
|
3930
|
+
size?: ChartSize$1;
|
|
3931
|
+
/**
|
|
3932
|
+
* Chart variant
|
|
3933
|
+
*/
|
|
3934
|
+
variant?: Variant;
|
|
3935
|
+
/**
|
|
3936
|
+
* Chart content (for wrapper chart component)
|
|
3937
|
+
*/
|
|
3938
|
+
children?: React.ReactNode;
|
|
3939
|
+
/**
|
|
3940
|
+
* Click handler for data points
|
|
3941
|
+
*/
|
|
3942
|
+
onDataPointClick?: (dataPoint: ChartDataPoint$1, datasetIndex: number, pointIndex: number) => void;
|
|
3943
|
+
/**
|
|
3944
|
+
* Legend item click handler
|
|
3945
|
+
*/
|
|
3946
|
+
onLegendItemClick?: (datasetIndex: number, visible: boolean) => void;
|
|
3947
|
+
/**
|
|
3948
|
+
* Interactive mode - enables hover/click effects
|
|
3949
|
+
*/
|
|
3950
|
+
interactive?: boolean;
|
|
3951
|
+
/**
|
|
3952
|
+
* Disabled state
|
|
3953
|
+
*/
|
|
3954
|
+
disabled?: boolean;
|
|
3955
|
+
/**
|
|
3956
|
+
* Fullscreen mode
|
|
3957
|
+
*/
|
|
3958
|
+
fullscreen?: boolean;
|
|
3959
|
+
/**
|
|
3960
|
+
* Minimized mode
|
|
3961
|
+
*/
|
|
3962
|
+
minimized?: boolean;
|
|
3963
|
+
/**
|
|
3964
|
+
* Show toolbar with actions
|
|
3965
|
+
*/
|
|
3966
|
+
showToolbar?: boolean;
|
|
3967
|
+
/**
|
|
3968
|
+
* Enable fullscreen functionality
|
|
3969
|
+
*/
|
|
3970
|
+
enableFullscreen?: boolean;
|
|
3971
|
+
/**
|
|
3972
|
+
* Enable export functionality
|
|
3973
|
+
*/
|
|
3974
|
+
enableExport?: boolean;
|
|
3975
|
+
/**
|
|
3976
|
+
* Enable refresh functionality
|
|
3977
|
+
*/
|
|
3978
|
+
enableRefresh?: boolean;
|
|
3979
|
+
/**
|
|
3980
|
+
* Available export formats
|
|
3981
|
+
*/
|
|
3982
|
+
exportFormats?: ('png' | 'svg' | 'csv' | 'json')[];
|
|
3983
|
+
/**
|
|
3984
|
+
* Fullscreen state change handler
|
|
3985
|
+
*/
|
|
3986
|
+
onFullscreen?: (isFullscreen: boolean) => void;
|
|
3987
|
+
/**
|
|
3988
|
+
* Export handler
|
|
3989
|
+
*/
|
|
3990
|
+
onExport?: (format: string) => Promise<void> | void;
|
|
3991
|
+
/**
|
|
3992
|
+
* Refresh handler
|
|
3993
|
+
*/
|
|
3994
|
+
onRefresh?: () => void;
|
|
3995
|
+
/**
|
|
3996
|
+
* Custom toolbar actions
|
|
3997
|
+
*/
|
|
3998
|
+
toolbarActions?: React.ReactNode;
|
|
3999
|
+
/**
|
|
4000
|
+
* Empty state configuration
|
|
4001
|
+
*/
|
|
4002
|
+
emptyState?: {
|
|
4003
|
+
message?: string;
|
|
4004
|
+
icon?: React.ReactNode;
|
|
4005
|
+
};
|
|
4006
|
+
/**
|
|
4007
|
+
* Accessibility label
|
|
4008
|
+
*/
|
|
4009
|
+
'aria-label'?: string;
|
|
4010
|
+
}
|
|
4011
|
+
/**
|
|
4012
|
+
* CodeBlock component properties
|
|
4013
|
+
*/
|
|
4014
|
+
interface CodeBlockProps extends BaseComponentProps {
|
|
4015
|
+
/**
|
|
4016
|
+
* The code to be displayed
|
|
4017
|
+
*/
|
|
4018
|
+
code: string;
|
|
4019
|
+
/**
|
|
4020
|
+
* The language of the code
|
|
4021
|
+
*/
|
|
4022
|
+
language: string;
|
|
4023
|
+
/**
|
|
4024
|
+
* Whether to show line numbers
|
|
4025
|
+
*/
|
|
4026
|
+
showLineNumbers?: boolean;
|
|
4027
|
+
/**
|
|
4028
|
+
* Theme variant for the code block
|
|
4029
|
+
*/
|
|
4030
|
+
theme?: 'light' | 'dark' | 'auto';
|
|
4031
|
+
/**
|
|
4032
|
+
* Maximum height of the code block in pixels or CSS units
|
|
4033
|
+
*/
|
|
4034
|
+
maxHeight?: string | number;
|
|
4035
|
+
/**
|
|
4036
|
+
* Minimum height of the code block in pixels or CSS units
|
|
4037
|
+
*/
|
|
4038
|
+
minHeight?: string | number;
|
|
4039
|
+
/**
|
|
4040
|
+
* Callback when code is copied to clipboard
|
|
4041
|
+
*/
|
|
4042
|
+
onCopy?: () => void;
|
|
4043
|
+
/**
|
|
4044
|
+
* Callback when fullscreen mode changes
|
|
4045
|
+
*/
|
|
4046
|
+
onFullscreenChange?: (isFullscreen: boolean) => void;
|
|
4047
|
+
/**
|
|
4048
|
+
* Whether to enable line wrapping
|
|
4049
|
+
*/
|
|
4050
|
+
wrapLines?: boolean;
|
|
4051
|
+
/**
|
|
4052
|
+
* Whether to enable fullscreen mode
|
|
4053
|
+
*/
|
|
4054
|
+
enableFullscreen?: boolean;
|
|
4055
|
+
/**
|
|
4056
|
+
* Whether to enable copy functionality
|
|
4057
|
+
*/
|
|
4058
|
+
enableCopy?: boolean;
|
|
4059
|
+
/**
|
|
4060
|
+
* Whether to show the toolbar with actions
|
|
4061
|
+
*/
|
|
4062
|
+
showToolbar?: boolean;
|
|
4063
|
+
}
|
|
4064
|
+
/**
|
|
4065
|
+
* Footer layout options
|
|
4066
|
+
*/
|
|
4067
|
+
type FooterLayout = 'columns' | 'centered' | 'minimal' | 'stacked';
|
|
4068
|
+
/**
|
|
4069
|
+
* Social media platform types
|
|
4070
|
+
*/
|
|
4071
|
+
type SocialPlatform = 'facebook' | 'twitter' | 'instagram' | 'linkedin' | 'youtube' | 'github' | 'discord' | 'tiktok' | 'pinterest' | 'snapchat' | 'whatsapp' | 'telegram' | 'reddit' | 'twitch' | 'spotify' | 'dribbble' | 'behance' | 'medium' | 'dev' | 'codepen' | 'custom';
|
|
4072
|
+
/**
|
|
4073
|
+
* Social link configuration
|
|
4074
|
+
*/
|
|
4075
|
+
interface SocialLink {
|
|
4076
|
+
/**
|
|
4077
|
+
* Social media platform
|
|
4078
|
+
*/
|
|
4079
|
+
platform: SocialPlatform;
|
|
4080
|
+
/**
|
|
4081
|
+
* URL to the social media profile
|
|
4082
|
+
*/
|
|
4083
|
+
url: string;
|
|
4084
|
+
/**
|
|
4085
|
+
* Custom icon (for custom platform or override)
|
|
4086
|
+
*/
|
|
4087
|
+
icon?: ReactNode;
|
|
4088
|
+
/**
|
|
4089
|
+
* Custom label for accessibility
|
|
4090
|
+
*/
|
|
4091
|
+
label?: string;
|
|
4092
|
+
}
|
|
4093
|
+
/**
|
|
4094
|
+
* Footer component properties
|
|
4095
|
+
*/
|
|
4096
|
+
interface FooterProps extends BaseComponentProps {
|
|
4097
|
+
/**
|
|
4098
|
+
* Brand name or logo
|
|
4099
|
+
*/
|
|
4100
|
+
brand?: ReactNode;
|
|
4101
|
+
/**
|
|
4102
|
+
* Brand logo (image URL or React element)
|
|
4103
|
+
*/
|
|
4104
|
+
brandLogo?: string | ReactNode;
|
|
4105
|
+
/**
|
|
4106
|
+
* Brand description text
|
|
4107
|
+
*/
|
|
4108
|
+
brandDescription?: ReactNode;
|
|
4109
|
+
/**
|
|
4110
|
+
* Copyright text
|
|
4111
|
+
*/
|
|
4112
|
+
copyright?: ReactNode;
|
|
4113
|
+
/**
|
|
4114
|
+
* Footer layout variant
|
|
4115
|
+
*/
|
|
4116
|
+
layout?: FooterLayout;
|
|
4117
|
+
/**
|
|
4118
|
+
* Color variant
|
|
4119
|
+
*/
|
|
4120
|
+
variant?: ThemeColor;
|
|
4121
|
+
/**
|
|
4122
|
+
* Size variant
|
|
4123
|
+
*/
|
|
4124
|
+
size?: Size;
|
|
4125
|
+
/**
|
|
4126
|
+
* Whether to show newsletter signup
|
|
4127
|
+
*/
|
|
4128
|
+
showNewsletter?: boolean;
|
|
4129
|
+
/**
|
|
4130
|
+
* Newsletter section title
|
|
4131
|
+
*/
|
|
4132
|
+
newsletterTitle?: string;
|
|
4133
|
+
/**
|
|
4134
|
+
* Newsletter section description
|
|
4135
|
+
*/
|
|
4136
|
+
newsletterDescription?: string;
|
|
4137
|
+
/**
|
|
4138
|
+
* Newsletter input placeholder
|
|
4139
|
+
*/
|
|
4140
|
+
newsletterPlaceholder?: string;
|
|
4141
|
+
/**
|
|
4142
|
+
* Newsletter submit button text
|
|
4143
|
+
*/
|
|
4144
|
+
newsletterButtonText?: string;
|
|
4145
|
+
/**
|
|
4146
|
+
* Newsletter submit handler
|
|
4147
|
+
*/
|
|
4148
|
+
onNewsletterSubmit?: (email: string) => void | Promise<void>;
|
|
4149
|
+
/**
|
|
4150
|
+
* Social media links
|
|
4151
|
+
*/
|
|
4152
|
+
socialLinks?: SocialLink[];
|
|
4153
|
+
/**
|
|
4154
|
+
* Whether to show back to top button
|
|
4155
|
+
*/
|
|
4156
|
+
showBackToTop?: boolean;
|
|
4157
|
+
/**
|
|
4158
|
+
* Back to top button text
|
|
4159
|
+
*/
|
|
4160
|
+
backToTopText?: string;
|
|
4161
|
+
/**
|
|
4162
|
+
* Back to top click handler
|
|
4163
|
+
*/
|
|
4164
|
+
onBackToTop?: () => void;
|
|
4165
|
+
/**
|
|
4166
|
+
* Whether to show divider above bottom section
|
|
4167
|
+
*/
|
|
4168
|
+
showDivider?: boolean;
|
|
4169
|
+
/**
|
|
4170
|
+
* Whether footer should be sticky
|
|
4171
|
+
*/
|
|
4172
|
+
sticky?: boolean;
|
|
4173
|
+
/**
|
|
4174
|
+
* Footer sections content
|
|
4175
|
+
*/
|
|
4176
|
+
children?: ReactNode;
|
|
4177
|
+
}
|
|
4178
|
+
/**
|
|
4179
|
+
* Footer section component properties
|
|
4180
|
+
*/
|
|
4181
|
+
interface FooterSectionProps extends BaseComponentProps {
|
|
4182
|
+
/**
|
|
4183
|
+
* Section title
|
|
4184
|
+
*/
|
|
4185
|
+
title?: ReactNode;
|
|
4186
|
+
/**
|
|
4187
|
+
* Section icon
|
|
4188
|
+
*/
|
|
4189
|
+
icon?: ReactNode;
|
|
4190
|
+
/**
|
|
4191
|
+
* Whether section is collapsible on mobile
|
|
4192
|
+
*/
|
|
4193
|
+
collapsible?: boolean;
|
|
4194
|
+
/**
|
|
4195
|
+
* Whether section is collapsed by default
|
|
4196
|
+
*/
|
|
4197
|
+
defaultCollapsed?: boolean;
|
|
4198
|
+
/**
|
|
4199
|
+
* Section content
|
|
4200
|
+
*/
|
|
4201
|
+
children: ReactNode;
|
|
4202
|
+
}
|
|
4203
|
+
/**
|
|
4204
|
+
* Footer link component properties
|
|
4205
|
+
*/
|
|
4206
|
+
interface FooterLinkProps extends BaseComponentProps {
|
|
4207
|
+
/**
|
|
4208
|
+
* Link URL
|
|
4209
|
+
*/
|
|
4210
|
+
href?: string;
|
|
4211
|
+
/**
|
|
4212
|
+
* Link icon
|
|
4213
|
+
*/
|
|
4214
|
+
icon?: ReactNode;
|
|
4215
|
+
/**
|
|
4216
|
+
* Whether link opens in new tab
|
|
4217
|
+
*/
|
|
4218
|
+
external?: boolean;
|
|
4219
|
+
/**
|
|
4220
|
+
* Whether link is active
|
|
4221
|
+
*/
|
|
4222
|
+
active?: boolean;
|
|
4223
|
+
/**
|
|
4224
|
+
* Link click handler
|
|
4225
|
+
*/
|
|
4226
|
+
onClick?: (event: React.MouseEvent<HTMLAnchorElement>) => void;
|
|
4227
|
+
/**
|
|
4228
|
+
* Link content
|
|
4229
|
+
*/
|
|
4230
|
+
children: ReactNode;
|
|
4231
|
+
/**
|
|
4232
|
+
* Custom link component (e.g., React Router Link)
|
|
4233
|
+
*/
|
|
4234
|
+
LinkComponent?: React.ElementType;
|
|
4235
|
+
}
|
|
4236
|
+
/**
|
|
4237
|
+
* Footer social link component properties
|
|
4238
|
+
*/
|
|
4239
|
+
interface FooterSocialLinkProps extends BaseComponentProps {
|
|
4240
|
+
/**
|
|
4241
|
+
* Social media platform
|
|
4242
|
+
*/
|
|
4243
|
+
platform: SocialPlatform;
|
|
4244
|
+
/**
|
|
4245
|
+
* Social media profile URL
|
|
4246
|
+
*/
|
|
4247
|
+
url: string;
|
|
4248
|
+
/**
|
|
4249
|
+
* Custom icon
|
|
4250
|
+
*/
|
|
4251
|
+
icon?: ReactNode;
|
|
4252
|
+
/**
|
|
4253
|
+
* Custom label for accessibility
|
|
4254
|
+
*/
|
|
4255
|
+
label?: string;
|
|
4256
|
+
/**
|
|
4257
|
+
* Size variant
|
|
4258
|
+
*/
|
|
4259
|
+
size?: Size;
|
|
4260
|
+
/**
|
|
4261
|
+
* Visual variant
|
|
4262
|
+
*/
|
|
4263
|
+
variant?: 'default' | 'filled' | 'outlined';
|
|
4264
|
+
}
|
|
4265
|
+
/**
|
|
4266
|
+
* Glass container displacement modes
|
|
4267
|
+
*/
|
|
4268
|
+
type GlassMode = 'standard' | 'polar' | 'prominent' | 'shader';
|
|
4269
|
+
/**
|
|
4270
|
+
* Glass container size configuration
|
|
4271
|
+
*/
|
|
4272
|
+
interface GlassSize {
|
|
4273
|
+
/**
|
|
4274
|
+
* Width of the glass container
|
|
4275
|
+
*/
|
|
4276
|
+
width: number;
|
|
4277
|
+
/**
|
|
4278
|
+
* Height of the glass container
|
|
4279
|
+
*/
|
|
4280
|
+
height: number;
|
|
4281
|
+
}
|
|
4282
|
+
/**
|
|
4283
|
+
* Mouse position coordinates
|
|
4284
|
+
*/
|
|
4285
|
+
interface MousePosition {
|
|
4286
|
+
/**
|
|
4287
|
+
* X coordinate
|
|
4288
|
+
*/
|
|
4289
|
+
x: number;
|
|
4290
|
+
/**
|
|
4291
|
+
* Y coordinate
|
|
4292
|
+
*/
|
|
4293
|
+
y: number;
|
|
4294
|
+
}
|
|
4295
|
+
/**
|
|
4296
|
+
* Glass container component properties
|
|
4297
|
+
*/
|
|
4298
|
+
interface GlassContainerProps extends BaseComponentProps {
|
|
4299
|
+
/**
|
|
4300
|
+
* Content to display inside the glass container
|
|
4301
|
+
*/
|
|
4302
|
+
children: ReactNode;
|
|
4303
|
+
/**
|
|
4304
|
+
* Scale of the displacement effect (0-100)
|
|
4305
|
+
* @default 25
|
|
4306
|
+
*/
|
|
4307
|
+
displacementScale?: number;
|
|
4308
|
+
/**
|
|
4309
|
+
* Amount of blur applied to the backdrop (0-50)
|
|
4310
|
+
* @default 12
|
|
4311
|
+
*/
|
|
4312
|
+
blurAmount?: number;
|
|
4313
|
+
/**
|
|
4314
|
+
* Saturation level of the backdrop filter (0-300%)
|
|
4315
|
+
* @default 180
|
|
4316
|
+
*/
|
|
4317
|
+
saturation?: number;
|
|
4318
|
+
/**
|
|
4319
|
+
* Intensity of chromatic aberration effect (0-10)
|
|
4320
|
+
* @default 2
|
|
4321
|
+
*/
|
|
4322
|
+
aberrationIntensity?: number;
|
|
4323
|
+
/**
|
|
4324
|
+
* Elasticity of mouse interaction effects (0-1)
|
|
4325
|
+
* @default 0.15
|
|
4326
|
+
*/
|
|
4327
|
+
elasticity?: number;
|
|
4328
|
+
/**
|
|
4329
|
+
* Border radius of the glass container
|
|
4330
|
+
* @default 999
|
|
4331
|
+
*/
|
|
4332
|
+
cornerRadius?: number;
|
|
4333
|
+
/**
|
|
4334
|
+
* Padding inside the glass container
|
|
4335
|
+
* @default '24px 32px'
|
|
4336
|
+
*/
|
|
4337
|
+
padding?: string;
|
|
4338
|
+
/**
|
|
4339
|
+
* Size configuration for the glass container
|
|
4340
|
+
* @default { width: 270, height: 69 }
|
|
4341
|
+
*/
|
|
4342
|
+
glassSize?: GlassSize;
|
|
4343
|
+
/**
|
|
4344
|
+
* Displacement map mode
|
|
4345
|
+
* @default 'standard'
|
|
4346
|
+
*/
|
|
4347
|
+
mode?: GlassMode;
|
|
4348
|
+
/**
|
|
4349
|
+
* Whether the container is over a light background
|
|
4350
|
+
* @default false
|
|
4351
|
+
*/
|
|
4352
|
+
overLight?: boolean;
|
|
4353
|
+
/**
|
|
4354
|
+
* Active state of the container
|
|
4355
|
+
* @default false
|
|
4356
|
+
*/
|
|
4357
|
+
active?: boolean;
|
|
4358
|
+
/**
|
|
4359
|
+
* Click handler for the glass container
|
|
4360
|
+
*/
|
|
4361
|
+
onClick?: () => void;
|
|
4362
|
+
/**
|
|
4363
|
+
* Mouse enter handler
|
|
4364
|
+
*/
|
|
4365
|
+
onMouseEnter?: () => void;
|
|
4366
|
+
/**
|
|
4367
|
+
* Mouse leave handler
|
|
4368
|
+
*/
|
|
4369
|
+
onMouseLeave?: () => void;
|
|
4370
|
+
/**
|
|
4371
|
+
* Mouse down handler
|
|
4372
|
+
*/
|
|
4373
|
+
onMouseDown?: () => void;
|
|
3847
4374
|
/**
|
|
3848
|
-
*
|
|
4375
|
+
* Mouse up handler
|
|
3849
4376
|
*/
|
|
3850
|
-
|
|
4377
|
+
onMouseUp?: () => void;
|
|
3851
4378
|
/**
|
|
3852
|
-
*
|
|
4379
|
+
* External mouse container reference for tracking
|
|
3853
4380
|
*/
|
|
3854
|
-
|
|
4381
|
+
mouseContainer?: React.RefObject<HTMLElement | null>;
|
|
3855
4382
|
/**
|
|
3856
|
-
*
|
|
4383
|
+
* External global mouse position
|
|
3857
4384
|
*/
|
|
3858
|
-
|
|
4385
|
+
globalMousePos?: MousePosition;
|
|
3859
4386
|
/**
|
|
3860
|
-
*
|
|
4387
|
+
* External mouse offset from container center
|
|
3861
4388
|
*/
|
|
3862
|
-
|
|
4389
|
+
mouseOffset?: MousePosition;
|
|
3863
4390
|
/**
|
|
3864
|
-
*
|
|
4391
|
+
* Custom CSS styles
|
|
3865
4392
|
*/
|
|
3866
|
-
|
|
4393
|
+
style?: React.CSSProperties;
|
|
4394
|
+
}
|
|
4395
|
+
|
|
4396
|
+
type DatePickerPlacement = 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
4397
|
+
type DatePickerSize = 'sm' | 'md' | 'lg';
|
|
4398
|
+
type DatePickerSelectionMode = 'single' | 'range';
|
|
4399
|
+
interface DateRange {
|
|
4400
|
+
startDate: Date | null;
|
|
4401
|
+
endDate: Date | null;
|
|
4402
|
+
}
|
|
4403
|
+
interface DatePickerProps {
|
|
3867
4404
|
/**
|
|
3868
|
-
*
|
|
4405
|
+
* The currently selected date value
|
|
3869
4406
|
*/
|
|
3870
|
-
|
|
4407
|
+
value?: Date | null;
|
|
3871
4408
|
/**
|
|
3872
|
-
*
|
|
4409
|
+
* Callback function when date is changed
|
|
3873
4410
|
*/
|
|
3874
|
-
|
|
4411
|
+
onChange?: (date: Date | null) => void;
|
|
3875
4412
|
/**
|
|
3876
|
-
*
|
|
4413
|
+
* Selection mode - single date or date range
|
|
4414
|
+
* @default "single"
|
|
3877
4415
|
*/
|
|
3878
|
-
|
|
4416
|
+
selectionMode?: DatePickerSelectionMode;
|
|
3879
4417
|
/**
|
|
3880
|
-
*
|
|
4418
|
+
* The start date of the range (only used when selectionMode is "range")
|
|
3881
4419
|
*/
|
|
3882
|
-
|
|
4420
|
+
startDate?: Date | null;
|
|
3883
4421
|
/**
|
|
3884
|
-
*
|
|
4422
|
+
* The end date of the range (only used when selectionMode is "range")
|
|
3885
4423
|
*/
|
|
3886
|
-
|
|
4424
|
+
endDate?: Date | null;
|
|
3887
4425
|
/**
|
|
3888
|
-
*
|
|
4426
|
+
* Callback function when date range is changed
|
|
3889
4427
|
*/
|
|
3890
|
-
|
|
4428
|
+
onRangeChange?: (range: DateRange) => void;
|
|
3891
4429
|
/**
|
|
3892
|
-
*
|
|
4430
|
+
* Format for the date display (follows Intl.DateTimeFormat patterns)
|
|
4431
|
+
* @default "MM/dd/yyyy"
|
|
3893
4432
|
*/
|
|
3894
|
-
|
|
4433
|
+
format?: string;
|
|
3895
4434
|
/**
|
|
3896
|
-
*
|
|
4435
|
+
* Minimum selectable date
|
|
3897
4436
|
*/
|
|
3898
|
-
|
|
4437
|
+
minDate?: Date;
|
|
3899
4438
|
/**
|
|
3900
|
-
*
|
|
4439
|
+
* Maximum selectable date
|
|
3901
4440
|
*/
|
|
3902
|
-
|
|
4441
|
+
maxDate?: Date;
|
|
3903
4442
|
/**
|
|
3904
|
-
*
|
|
4443
|
+
* Placeholder text for the input
|
|
4444
|
+
* @default "Select date..."
|
|
3905
4445
|
*/
|
|
3906
|
-
|
|
4446
|
+
placeholder?: string;
|
|
3907
4447
|
/**
|
|
3908
|
-
*
|
|
4448
|
+
* Whether the datepicker is disabled
|
|
4449
|
+
* @default false
|
|
3909
4450
|
*/
|
|
3910
|
-
|
|
4451
|
+
disabled?: boolean;
|
|
3911
4452
|
/**
|
|
3912
|
-
*
|
|
4453
|
+
* Whether the datepicker is read-only
|
|
4454
|
+
* @default false
|
|
3913
4455
|
*/
|
|
3914
|
-
|
|
4456
|
+
readOnly?: boolean;
|
|
3915
4457
|
/**
|
|
3916
|
-
*
|
|
4458
|
+
* Whether to show a clear button
|
|
4459
|
+
* @default true
|
|
3917
4460
|
*/
|
|
3918
|
-
|
|
4461
|
+
clearable?: boolean;
|
|
3919
4462
|
/**
|
|
3920
|
-
*
|
|
4463
|
+
* Whether to show the "Today" button
|
|
4464
|
+
* @default true
|
|
3921
4465
|
*/
|
|
3922
|
-
|
|
3923
|
-
message?: string;
|
|
3924
|
-
icon?: React.ReactNode;
|
|
3925
|
-
};
|
|
4466
|
+
showTodayButton?: boolean;
|
|
3926
4467
|
/**
|
|
3927
|
-
*
|
|
4468
|
+
* Whether to show week numbers
|
|
4469
|
+
* @default false
|
|
3928
4470
|
*/
|
|
3929
|
-
|
|
3930
|
-
}
|
|
3931
|
-
/**
|
|
3932
|
-
* CodeBlock component properties
|
|
3933
|
-
*/
|
|
3934
|
-
interface CodeBlockProps extends BaseComponentProps {
|
|
4471
|
+
showWeekNumbers?: boolean;
|
|
3935
4472
|
/**
|
|
3936
|
-
*
|
|
4473
|
+
* Whether to display the datepicker inline (always visible)
|
|
4474
|
+
* @default false
|
|
3937
4475
|
*/
|
|
3938
|
-
|
|
4476
|
+
inline?: boolean;
|
|
3939
4477
|
/**
|
|
3940
|
-
*
|
|
4478
|
+
* ID for the input element
|
|
3941
4479
|
*/
|
|
3942
|
-
|
|
4480
|
+
id?: string;
|
|
3943
4481
|
/**
|
|
3944
|
-
*
|
|
4482
|
+
* Name for the input element
|
|
3945
4483
|
*/
|
|
3946
|
-
|
|
4484
|
+
name?: string;
|
|
3947
4485
|
/**
|
|
3948
|
-
*
|
|
4486
|
+
* Additional class name for the datepicker component
|
|
3949
4487
|
*/
|
|
3950
|
-
|
|
4488
|
+
className?: string;
|
|
3951
4489
|
/**
|
|
3952
|
-
*
|
|
4490
|
+
* Placement of the dropdown calendar
|
|
4491
|
+
* @default "bottom-start"
|
|
3953
4492
|
*/
|
|
3954
|
-
|
|
4493
|
+
placement?: DatePickerPlacement;
|
|
3955
4494
|
/**
|
|
3956
|
-
*
|
|
4495
|
+
* Additional class name for the input element
|
|
3957
4496
|
*/
|
|
3958
|
-
|
|
4497
|
+
inputClassName?: string;
|
|
3959
4498
|
/**
|
|
3960
|
-
*
|
|
4499
|
+
* Size of the input field
|
|
4500
|
+
* @default "md"
|
|
3961
4501
|
*/
|
|
3962
|
-
|
|
4502
|
+
size?: DatePickerSize;
|
|
3963
4503
|
/**
|
|
3964
|
-
*
|
|
4504
|
+
* Applies a glass morphism effect to the calendar dropdown.
|
|
4505
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect.
|
|
4506
|
+
* @default false
|
|
3965
4507
|
*/
|
|
3966
|
-
|
|
4508
|
+
glass?: boolean | AtomixGlassProps;
|
|
4509
|
+
}
|
|
4510
|
+
interface DatePickerRef {
|
|
3967
4511
|
/**
|
|
3968
|
-
*
|
|
4512
|
+
* Open the datepicker
|
|
3969
4513
|
*/
|
|
3970
|
-
|
|
4514
|
+
open: () => void;
|
|
3971
4515
|
/**
|
|
3972
|
-
*
|
|
4516
|
+
* Close the datepicker
|
|
3973
4517
|
*/
|
|
3974
|
-
|
|
4518
|
+
close: () => void;
|
|
3975
4519
|
/**
|
|
3976
|
-
*
|
|
4520
|
+
* Clear the selected date
|
|
3977
4521
|
*/
|
|
3978
|
-
|
|
4522
|
+
clear: () => void;
|
|
3979
4523
|
/**
|
|
3980
|
-
*
|
|
4524
|
+
* Set focus on the input element
|
|
3981
4525
|
*/
|
|
3982
|
-
|
|
4526
|
+
focus: () => void;
|
|
3983
4527
|
}
|
|
3984
4528
|
|
|
3985
4529
|
type ButtonAsProp = {
|
|
@@ -3991,6 +4535,7 @@ type ButtonAsProp = {
|
|
|
3991
4535
|
declare const Button: react.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
3992
4536
|
|
|
3993
4537
|
type __lib_types_AccordionState = AccordionState;
|
|
4538
|
+
type __lib_types_AtomixGlassProps = AtomixGlassProps;
|
|
3994
4539
|
type __lib_types_AvatarGroupProps = AvatarGroupProps;
|
|
3995
4540
|
type __lib_types_AvatarProps = AvatarProps;
|
|
3996
4541
|
type __lib_types_AvatarSize = AvatarSize;
|
|
@@ -4015,8 +4560,16 @@ type __lib_types_EdgePanelPosition = EdgePanelPosition;
|
|
|
4015
4560
|
type __lib_types_EdgePanelProps = EdgePanelProps;
|
|
4016
4561
|
type __lib_types_ElementRefs = ElementRefs;
|
|
4017
4562
|
type __lib_types_ElevationCardProps = ElevationCardProps;
|
|
4563
|
+
type __lib_types_FooterLayout = FooterLayout;
|
|
4564
|
+
type __lib_types_FooterLinkProps = FooterLinkProps;
|
|
4565
|
+
type __lib_types_FooterProps = FooterProps;
|
|
4566
|
+
type __lib_types_FooterSectionProps = FooterSectionProps;
|
|
4567
|
+
type __lib_types_FooterSocialLinkProps = FooterSocialLinkProps;
|
|
4018
4568
|
type __lib_types_FormGroupProps = FormGroupProps;
|
|
4019
4569
|
type __lib_types_FormProps = FormProps;
|
|
4570
|
+
type __lib_types_GlassContainerProps = GlassContainerProps;
|
|
4571
|
+
type __lib_types_GlassMode = GlassMode;
|
|
4572
|
+
type __lib_types_GlassSize = GlassSize;
|
|
4020
4573
|
type __lib_types_HeroAlignment = HeroAlignment;
|
|
4021
4574
|
type __lib_types_HeroProps = HeroProps;
|
|
4022
4575
|
type __lib_types_IconPosition = IconPosition;
|
|
@@ -4032,6 +4585,7 @@ type __lib_types_MenuProps = MenuProps;
|
|
|
4032
4585
|
type __lib_types_MessageItem = MessageItem;
|
|
4033
4586
|
type __lib_types_MessagesProps = MessagesProps;
|
|
4034
4587
|
type __lib_types_ModalProps = ModalProps;
|
|
4588
|
+
type __lib_types_MousePosition = MousePosition;
|
|
4035
4589
|
type __lib_types_NavAlignment = NavAlignment;
|
|
4036
4590
|
type __lib_types_NavDropdownProps = NavDropdownProps;
|
|
4037
4591
|
type __lib_types_NavItemProps = NavItemProps;
|
|
@@ -4066,6 +4620,8 @@ type __lib_types_SliderState = SliderState;
|
|
|
4066
4620
|
type __lib_types_SliderThumbs = SliderThumbs;
|
|
4067
4621
|
type __lib_types_SliderVirtual = SliderVirtual;
|
|
4068
4622
|
type __lib_types_SliderZoom = SliderZoom;
|
|
4623
|
+
type __lib_types_SocialLink = SocialLink;
|
|
4624
|
+
type __lib_types_SocialPlatform = SocialPlatform;
|
|
4069
4625
|
type __lib_types_SortConfig = SortConfig;
|
|
4070
4626
|
type __lib_types_SpinnerProps = SpinnerProps;
|
|
4071
4627
|
type __lib_types_StateModifier = StateModifier;
|
|
@@ -4083,7 +4639,7 @@ type __lib_types_VideoQuality = VideoQuality;
|
|
|
4083
4639
|
type __lib_types_VideoSubtitle = VideoSubtitle;
|
|
4084
4640
|
type __lib_types_listvariant = listvariant;
|
|
4085
4641
|
declare namespace __lib_types {
|
|
4086
|
-
export type { AccordionProps$1 as AccordionProps, __lib_types_AccordionState as AccordionState, __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_FormGroupProps as FormGroupProps, __lib_types_FormProps as FormProps, __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_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_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 };
|
|
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 };
|
|
4087
4643
|
}
|
|
4088
4644
|
|
|
4089
4645
|
/**
|
|
@@ -5111,6 +5667,9 @@ declare const VIDEO_PLAYER: {
|
|
|
5111
5667
|
SETTINGS_OPTION_ACTIVE: string;
|
|
5112
5668
|
AMBIENT: string;
|
|
5113
5669
|
AMBIENT_CANVAS: string;
|
|
5670
|
+
GLASS: string;
|
|
5671
|
+
GLASS_OVERLAY: string;
|
|
5672
|
+
GLASS_CONTENT: string;
|
|
5114
5673
|
};
|
|
5115
5674
|
DEFAULTS: {
|
|
5116
5675
|
CONTROLS_TIMEOUT: number;
|
|
@@ -5498,8 +6057,168 @@ declare const BLOCK: {
|
|
|
5498
6057
|
DEFAULT: "md";
|
|
5499
6058
|
};
|
|
5500
6059
|
};
|
|
6060
|
+
/**
|
|
6061
|
+
* GlassContainer-specific constants
|
|
6062
|
+
*/
|
|
6063
|
+
declare const GLASS_CONTAINER: {
|
|
6064
|
+
CLASSES: {
|
|
6065
|
+
BASE: string;
|
|
6066
|
+
GLASS: string;
|
|
6067
|
+
WARP: string;
|
|
6068
|
+
CONTENT: string;
|
|
6069
|
+
OVERLAY: string;
|
|
6070
|
+
OVERLAY_VISIBLE: string;
|
|
6071
|
+
OVERLAY_HIDDEN: string;
|
|
6072
|
+
OVERLAY_BLEND: string;
|
|
6073
|
+
BORDER: string;
|
|
6074
|
+
BORDER_OVERLAY: string;
|
|
6075
|
+
HOVER_EFFECT: string;
|
|
6076
|
+
ACTIVE_EFFECT: string;
|
|
6077
|
+
INTERACTION_EFFECT: string;
|
|
6078
|
+
ACTIVE: string;
|
|
6079
|
+
CLICKABLE: string;
|
|
6080
|
+
};
|
|
6081
|
+
DISPLACEMENT_MAPS: {
|
|
6082
|
+
STANDARD: string;
|
|
6083
|
+
POLAR: string;
|
|
6084
|
+
PROMINENT: string;
|
|
6085
|
+
};
|
|
6086
|
+
};
|
|
6087
|
+
/**
|
|
6088
|
+
* Footer-specific constants
|
|
6089
|
+
*/
|
|
6090
|
+
declare const FOOTER: {
|
|
6091
|
+
SELECTORS: {
|
|
6092
|
+
FOOTER: string;
|
|
6093
|
+
CONTAINER: string;
|
|
6094
|
+
SECTIONS: string;
|
|
6095
|
+
BRAND: string;
|
|
6096
|
+
BRAND_LOGO: string;
|
|
6097
|
+
BRAND_NAME: string;
|
|
6098
|
+
BRAND_DESCRIPTION: string;
|
|
6099
|
+
SECTION: string;
|
|
6100
|
+
SECTION_HEADER: string;
|
|
6101
|
+
SECTION_TITLE: string;
|
|
6102
|
+
SECTION_CONTENT: string;
|
|
6103
|
+
SECTION_TOGGLE: string;
|
|
6104
|
+
LINK: string;
|
|
6105
|
+
SOCIAL: string;
|
|
6106
|
+
SOCIAL_LINK: string;
|
|
6107
|
+
NEWSLETTER: string;
|
|
6108
|
+
NEWSLETTER_FORM: string;
|
|
6109
|
+
NEWSLETTER_INPUT: string;
|
|
6110
|
+
NEWSLETTER_BUTTON: string;
|
|
6111
|
+
BOTTOM: string;
|
|
6112
|
+
COPYRIGHT: string;
|
|
6113
|
+
BACK_TO_TOP: string;
|
|
6114
|
+
DIVIDER: string;
|
|
6115
|
+
};
|
|
6116
|
+
CLASSES: {
|
|
6117
|
+
BASE: string;
|
|
6118
|
+
CONTAINER: string;
|
|
6119
|
+
SECTIONS: string;
|
|
6120
|
+
BRAND: string;
|
|
6121
|
+
BRAND_LOGO: string;
|
|
6122
|
+
BRAND_NAME: string;
|
|
6123
|
+
BRAND_DESCRIPTION: string;
|
|
6124
|
+
SECTION: string;
|
|
6125
|
+
SECTION_HEADER: string;
|
|
6126
|
+
SECTION_TITLE: string;
|
|
6127
|
+
SECTION_CONTENT: string;
|
|
6128
|
+
SECTION_TOGGLE: string;
|
|
6129
|
+
SECTION_COLLAPSIBLE: string;
|
|
6130
|
+
SECTION_COLLAPSED: string;
|
|
6131
|
+
LINK: string;
|
|
6132
|
+
LINK_ACTIVE: string;
|
|
6133
|
+
LINK_DISABLED: string;
|
|
6134
|
+
SOCIAL: string;
|
|
6135
|
+
SOCIAL_LINK: string;
|
|
6136
|
+
NEWSLETTER: string;
|
|
6137
|
+
NEWSLETTER_FORM: string;
|
|
6138
|
+
NEWSLETTER_INPUT: string;
|
|
6139
|
+
NEWSLETTER_BUTTON: string;
|
|
6140
|
+
BOTTOM: string;
|
|
6141
|
+
COPYRIGHT: string;
|
|
6142
|
+
BACK_TO_TOP: string;
|
|
6143
|
+
DIVIDER: string;
|
|
6144
|
+
COLUMNS: string;
|
|
6145
|
+
CENTERED: string;
|
|
6146
|
+
MINIMAL: string;
|
|
6147
|
+
STACKED: string;
|
|
6148
|
+
SM: string;
|
|
6149
|
+
MD: string;
|
|
6150
|
+
LG: string;
|
|
6151
|
+
STICKY: string;
|
|
6152
|
+
};
|
|
6153
|
+
DEFAULTS: {
|
|
6154
|
+
LAYOUT: string;
|
|
6155
|
+
VARIANT: string;
|
|
6156
|
+
SIZE: string;
|
|
6157
|
+
SHOW_NEWSLETTER: boolean;
|
|
6158
|
+
SHOW_BACK_TO_TOP: boolean;
|
|
6159
|
+
SHOW_DIVIDER: boolean;
|
|
6160
|
+
STICKY: boolean;
|
|
6161
|
+
NEWSLETTER_TITLE: string;
|
|
6162
|
+
NEWSLETTER_DESCRIPTION: string;
|
|
6163
|
+
NEWSLETTER_PLACEHOLDER: string;
|
|
6164
|
+
NEWSLETTER_BUTTON_TEXT: string;
|
|
6165
|
+
BACK_TO_TOP_TEXT: string;
|
|
6166
|
+
};
|
|
6167
|
+
};
|
|
6168
|
+
/**
|
|
6169
|
+
* AtomixGlass-specific constants
|
|
6170
|
+
*/
|
|
6171
|
+
declare const ATOMIX_GLASS: {
|
|
6172
|
+
BASE_CLASS: string;
|
|
6173
|
+
WARP_CLASS: string;
|
|
6174
|
+
CONTENT_CLASS: string;
|
|
6175
|
+
BORDER_CLASS: string;
|
|
6176
|
+
OVER_LIGHT_CLASS: string;
|
|
6177
|
+
HOVER_EFFECT_CLASS: string;
|
|
6178
|
+
ACTIVE_EFFECT_CLASS: string;
|
|
6179
|
+
GLOW_EFFECT_CLASS: string;
|
|
6180
|
+
VARIANT_PREFIX: string;
|
|
6181
|
+
MODE_PREFIX: string;
|
|
6182
|
+
CLASSES: {
|
|
6183
|
+
BASE: string;
|
|
6184
|
+
WARP: string;
|
|
6185
|
+
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
|
+
ACTIVE: string;
|
|
6201
|
+
STANDARD: string;
|
|
6202
|
+
POLAR: string;
|
|
6203
|
+
PROMINENT: string;
|
|
6204
|
+
SHADER: string;
|
|
6205
|
+
};
|
|
6206
|
+
DEFAULTS: {
|
|
6207
|
+
DISPLACEMENT_SCALE: number;
|
|
6208
|
+
BLUR_AMOUNT: number;
|
|
6209
|
+
SATURATION: number;
|
|
6210
|
+
ABERRATION_INTENSITY: number;
|
|
6211
|
+
ELASTICITY: number;
|
|
6212
|
+
CORNER_RADIUS: number;
|
|
6213
|
+
PADDING: string;
|
|
6214
|
+
MODE: string;
|
|
6215
|
+
OVER_LIGHT: boolean;
|
|
6216
|
+
SIZE: string;
|
|
6217
|
+
};
|
|
6218
|
+
};
|
|
5501
6219
|
|
|
5502
6220
|
declare const __lib_constants_ACCORDION: typeof ACCORDION;
|
|
6221
|
+
declare const __lib_constants_ATOMIX_GLASS: typeof ATOMIX_GLASS;
|
|
5503
6222
|
declare const __lib_constants_AVATAR: typeof AVATAR;
|
|
5504
6223
|
declare const __lib_constants_AVATAR_GROUP: typeof AVATAR_GROUP;
|
|
5505
6224
|
declare const __lib_constants_BADGE: typeof BADGE;
|
|
@@ -5517,8 +6236,10 @@ declare const __lib_constants_DATA_TABLE_SELECTORS: typeof DATA_TABLE_SELECTORS;
|
|
|
5517
6236
|
declare const __lib_constants_DATEPICKER: typeof DATEPICKER;
|
|
5518
6237
|
declare const __lib_constants_DROPDOWN: typeof DROPDOWN;
|
|
5519
6238
|
declare const __lib_constants_EDGE_PANEL: typeof EDGE_PANEL;
|
|
6239
|
+
declare const __lib_constants_FOOTER: typeof FOOTER;
|
|
5520
6240
|
declare const __lib_constants_FORM: typeof FORM;
|
|
5521
6241
|
declare const __lib_constants_FORM_GROUP: typeof FORM_GROUP;
|
|
6242
|
+
declare const __lib_constants_GLASS_CONTAINER: typeof GLASS_CONTAINER;
|
|
5522
6243
|
declare const __lib_constants_HERO: typeof HERO;
|
|
5523
6244
|
declare const __lib_constants_INPUT: typeof INPUT;
|
|
5524
6245
|
declare const __lib_constants_LIST: typeof LIST;
|
|
@@ -5554,6 +6275,7 @@ declare const __lib_constants_sliderConstants: typeof sliderConstants;
|
|
|
5554
6275
|
declare namespace __lib_constants {
|
|
5555
6276
|
export {
|
|
5556
6277
|
__lib_constants_ACCORDION as ACCORDION,
|
|
6278
|
+
__lib_constants_ATOMIX_GLASS as ATOMIX_GLASS,
|
|
5557
6279
|
__lib_constants_AVATAR as AVATAR,
|
|
5558
6280
|
__lib_constants_AVATAR_GROUP as AVATAR_GROUP,
|
|
5559
6281
|
__lib_constants_BADGE as BADGE,
|
|
@@ -5571,8 +6293,10 @@ declare namespace __lib_constants {
|
|
|
5571
6293
|
__lib_constants_DATEPICKER as DATEPICKER,
|
|
5572
6294
|
__lib_constants_DROPDOWN as DROPDOWN,
|
|
5573
6295
|
__lib_constants_EDGE_PANEL as EDGE_PANEL,
|
|
6296
|
+
__lib_constants_FOOTER as FOOTER,
|
|
5574
6297
|
__lib_constants_FORM as FORM,
|
|
5575
6298
|
__lib_constants_FORM_GROUP as FORM_GROUP,
|
|
6299
|
+
__lib_constants_GLASS_CONTAINER as GLASS_CONTAINER,
|
|
5576
6300
|
__lib_constants_HERO as HERO,
|
|
5577
6301
|
__lib_constants_INPUT as INPUT,
|
|
5578
6302
|
__lib_constants_LIST as LIST,
|
|
@@ -6078,6 +6802,45 @@ declare function useFormGroup(initialProps?: Partial<FormGroupProps>): {
|
|
|
6078
6802
|
generateFormGroupClass: (props: Partial<FormGroupProps>) => string;
|
|
6079
6803
|
};
|
|
6080
6804
|
|
|
6805
|
+
/**
|
|
6806
|
+
* Custom hook for managing GlassContainer state and interactions
|
|
6807
|
+
*/
|
|
6808
|
+
declare function useGlassContainer(props: GlassContainerProps): {
|
|
6809
|
+
filterId: string;
|
|
6810
|
+
glassRef: react.MutableRefObject<HTMLDivElement>;
|
|
6811
|
+
isHovered: boolean;
|
|
6812
|
+
isActive: boolean;
|
|
6813
|
+
currentGlassSize: GlassSize;
|
|
6814
|
+
globalMousePos: MousePosition;
|
|
6815
|
+
mouseOffset: MousePosition;
|
|
6816
|
+
calculateDirectionalScale: () => string;
|
|
6817
|
+
calculateElasticTranslation: () => {
|
|
6818
|
+
x: number;
|
|
6819
|
+
y: number;
|
|
6820
|
+
};
|
|
6821
|
+
handleMouseEnter: () => void;
|
|
6822
|
+
handleMouseLeave: () => void;
|
|
6823
|
+
handleMouseDown: () => void;
|
|
6824
|
+
handleMouseUp: () => void;
|
|
6825
|
+
};
|
|
6826
|
+
|
|
6827
|
+
interface UseAtomixGlassOptions {
|
|
6828
|
+
size?: 'sm' | 'md' | 'lg';
|
|
6829
|
+
mode?: 'standard' | 'polar' | 'prominent' | 'shader';
|
|
6830
|
+
overLight?: boolean;
|
|
6831
|
+
clickable?: boolean;
|
|
6832
|
+
active?: boolean;
|
|
6833
|
+
className?: string;
|
|
6834
|
+
}
|
|
6835
|
+
interface UseAtomixGlassReturn {
|
|
6836
|
+
generateGlassClass: (options: UseAtomixGlassOptions) => string;
|
|
6837
|
+
generateElementClass: (element: string, modifier?: string) => string;
|
|
6838
|
+
}
|
|
6839
|
+
/**
|
|
6840
|
+
* Hook for generating AtomixGlass CSS classes following BEM methodology
|
|
6841
|
+
*/
|
|
6842
|
+
declare function useAtomixGlass(): UseAtomixGlassReturn;
|
|
6843
|
+
|
|
6081
6844
|
/**
|
|
6082
6845
|
* Input state and functionality
|
|
6083
6846
|
* @param initialProps - Initial input properties
|
|
@@ -6985,6 +7748,8 @@ type __lib_composables_PieChartOptions = PieChartOptions;
|
|
|
6985
7748
|
type __lib_composables_PieSlice = PieSlice;
|
|
6986
7749
|
type __lib_composables_RiverContentColumn = RiverContentColumn;
|
|
6987
7750
|
type __lib_composables_RiverProps = RiverProps;
|
|
7751
|
+
type __lib_composables_UseAtomixGlassOptions = UseAtomixGlassOptions;
|
|
7752
|
+
type __lib_composables_UseAtomixGlassReturn = UseAtomixGlassReturn;
|
|
6988
7753
|
type __lib_composables_UseBlockOptions = UseBlockOptions;
|
|
6989
7754
|
type __lib_composables_UseBlockReturn = UseBlockReturn;
|
|
6990
7755
|
type __lib_composables_UseDataTableProps = UseDataTableProps;
|
|
@@ -6994,6 +7759,7 @@ type __lib_composables_UseModalReturn = UseModalReturn;
|
|
|
6994
7759
|
type __lib_composables_UseSliderOptions = UseSliderOptions;
|
|
6995
7760
|
type __lib_composables_UseSliderReturn = UseSliderReturn;
|
|
6996
7761
|
declare const __lib_composables_useAccordion: typeof useAccordion;
|
|
7762
|
+
declare const __lib_composables_useAtomixGlass: typeof useAtomixGlass;
|
|
6997
7763
|
declare const __lib_composables_useBadge: typeof useBadge;
|
|
6998
7764
|
declare const __lib_composables_useBarChart: typeof useBarChart;
|
|
6999
7765
|
declare const __lib_composables_useBlock: typeof useBlock;
|
|
@@ -7008,6 +7774,7 @@ declare const __lib_composables_useDataTable: typeof useDataTable;
|
|
|
7008
7774
|
declare const __lib_composables_useEdgePanel: typeof useEdgePanel;
|
|
7009
7775
|
declare const __lib_composables_useForm: typeof useForm;
|
|
7010
7776
|
declare const __lib_composables_useFormGroup: typeof useFormGroup;
|
|
7777
|
+
declare const __lib_composables_useGlassContainer: typeof useGlassContainer;
|
|
7011
7778
|
declare const __lib_composables_useHero: typeof useHero;
|
|
7012
7779
|
declare const __lib_composables_useInput: typeof useInput;
|
|
7013
7780
|
declare const __lib_composables_useLineChart: typeof useLineChart;
|
|
@@ -7028,8 +7795,8 @@ declare const __lib_composables_useSpinner: typeof useSpinner;
|
|
|
7028
7795
|
declare const __lib_composables_useTextarea: typeof useTextarea;
|
|
7029
7796
|
declare const __lib_composables_useTodo: typeof useTodo;
|
|
7030
7797
|
declare namespace __lib_composables {
|
|
7031
|
-
export { __lib_composables_DOTS as DOTS, __lib_composables_useAccordion as useAccordion, __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_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 };
|
|
7032
|
-
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 };
|
|
7798
|
+
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, __lib_composables_UseAtomixGlassOptions as UseAtomixGlassOptions, __lib_composables_UseAtomixGlassReturn as UseAtomixGlassReturn, __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 };
|
|
7033
7800
|
}
|
|
7034
7801
|
|
|
7035
7802
|
/**
|
|
@@ -7064,6 +7831,11 @@ interface AccordionProps extends BaseComponentProps {
|
|
|
7064
7831
|
* Callback when open state changes (for controlled mode)
|
|
7065
7832
|
*/
|
|
7066
7833
|
onOpenChange?: (open: boolean) => void;
|
|
7834
|
+
/**
|
|
7835
|
+
* Glass morphism effect for the accordion
|
|
7836
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
7837
|
+
*/
|
|
7838
|
+
glass?: AtomixGlassProps | boolean;
|
|
7067
7839
|
}
|
|
7068
7840
|
declare const Accordion: react__default.FC<AccordionProps>;
|
|
7069
7841
|
|
|
@@ -8359,6 +9131,67 @@ declare const EdgePanel: react__default.FC<EdgePanelProps>;
|
|
|
8359
9131
|
*/
|
|
8360
9132
|
declare const Checkbox: react__default.FC<CheckboxProps>;
|
|
8361
9133
|
|
|
9134
|
+
/**
|
|
9135
|
+
* Footer component provides a comprehensive footer section with multiple layout options,
|
|
9136
|
+
* social links, newsletter signup, and responsive design.
|
|
9137
|
+
*
|
|
9138
|
+
* @example
|
|
9139
|
+
* ```tsx
|
|
9140
|
+
* <Footer
|
|
9141
|
+
* brand="My Company"
|
|
9142
|
+
* copyright="© 2024 My Company. All rights reserved."
|
|
9143
|
+
* layout="columns"
|
|
9144
|
+
* showNewsletter
|
|
9145
|
+
* socialLinks={[
|
|
9146
|
+
* { platform: 'twitter', url: 'https://twitter.com/company' },
|
|
9147
|
+
* { platform: 'facebook', url: 'https://facebook.com/company' }
|
|
9148
|
+
* ]}
|
|
9149
|
+
* >
|
|
9150
|
+
* <FooterSection title="Products">
|
|
9151
|
+
* <FooterLink href="/product1">Product 1</FooterLink>
|
|
9152
|
+
* <FooterLink href="/product2">Product 2</FooterLink>
|
|
9153
|
+
* </FooterSection>
|
|
9154
|
+
* </Footer>
|
|
9155
|
+
* ```
|
|
9156
|
+
*/
|
|
9157
|
+
declare const Footer: react__default.ForwardRefExoticComponent<FooterProps & react__default.RefAttributes<HTMLElement>>;
|
|
9158
|
+
|
|
9159
|
+
/**
|
|
9160
|
+
* FooterSection component provides a section within the footer for organizing links and content.
|
|
9161
|
+
*
|
|
9162
|
+
* @example
|
|
9163
|
+
* ```tsx
|
|
9164
|
+
* <FooterSection title="Products" icon={<ProductIcon />}>
|
|
9165
|
+
* <FooterLink href="/product1">Product 1</FooterLink>
|
|
9166
|
+
* <FooterLink href="/product2">Product 2</FooterLink>
|
|
9167
|
+
* </FooterSection>
|
|
9168
|
+
* ```
|
|
9169
|
+
*/
|
|
9170
|
+
declare const FooterSection: react__default.ForwardRefExoticComponent<FooterSectionProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
9171
|
+
|
|
9172
|
+
/**
|
|
9173
|
+
* FooterLink component provides styled links for use within footer sections.
|
|
9174
|
+
*
|
|
9175
|
+
* @example
|
|
9176
|
+
* ```tsx
|
|
9177
|
+
* <FooterLink href="/about" icon={<InfoIcon />} external>
|
|
9178
|
+
* About Us
|
|
9179
|
+
* </FooterLink>
|
|
9180
|
+
* ```
|
|
9181
|
+
*/
|
|
9182
|
+
declare const FooterLink: react__default.ForwardRefExoticComponent<FooterLinkProps & react__default.RefAttributes<HTMLAnchorElement>>;
|
|
9183
|
+
|
|
9184
|
+
/**
|
|
9185
|
+
* FooterSocialLink component provides styled social media links with platform-specific icons.
|
|
9186
|
+
*
|
|
9187
|
+
* @example
|
|
9188
|
+
* ```tsx
|
|
9189
|
+
* <FooterSocialLink platform="twitter" url="https://twitter.com/company" />
|
|
9190
|
+
* <FooterSocialLink platform="custom" url="https://example.com" icon={<CustomIcon />} label="Custom Platform" />
|
|
9191
|
+
* ```
|
|
9192
|
+
*/
|
|
9193
|
+
declare const FooterSocialLink: react__default.ForwardRefExoticComponent<FooterSocialLinkProps & react__default.RefAttributes<HTMLAnchorElement>>;
|
|
9194
|
+
|
|
8362
9195
|
/**
|
|
8363
9196
|
* Form - A component for creating form layouts
|
|
8364
9197
|
*/
|
|
@@ -8372,7 +9205,7 @@ declare const FormGroup: react__default.FC<FormGroupProps>;
|
|
|
8372
9205
|
/**
|
|
8373
9206
|
* Input - A component for text input fields
|
|
8374
9207
|
*/
|
|
8375
|
-
declare const Input: react__default.
|
|
9208
|
+
declare const Input: react__default.ForwardRefExoticComponent<InputProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
8376
9209
|
|
|
8377
9210
|
/**
|
|
8378
9211
|
* Radio - A component for radio button inputs
|
|
@@ -8387,7 +9220,7 @@ declare const Select: react__default.FC<SelectProps>;
|
|
|
8387
9220
|
/**
|
|
8388
9221
|
* Textarea - A component for multiline text input
|
|
8389
9222
|
*/
|
|
8390
|
-
declare const Textarea: react__default.
|
|
9223
|
+
declare const Textarea: react__default.ForwardRefExoticComponent<TextareaProps & react__default.RefAttributes<HTMLTextAreaElement>>;
|
|
8391
9224
|
|
|
8392
9225
|
declare const Hero: react__default.FC<HeroProps>;
|
|
8393
9226
|
|
|
@@ -8716,6 +9549,11 @@ interface StepsProps {
|
|
|
8716
9549
|
* Additional CSS class
|
|
8717
9550
|
*/
|
|
8718
9551
|
className?: string;
|
|
9552
|
+
/**
|
|
9553
|
+
* Glass morphism effect for the steps component
|
|
9554
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
9555
|
+
*/
|
|
9556
|
+
glass?: AtomixGlassProps | boolean;
|
|
8719
9557
|
}
|
|
8720
9558
|
/**
|
|
8721
9559
|
* Steps component for displaying a sequence of steps
|
|
@@ -8757,6 +9595,11 @@ interface TabProps {
|
|
|
8757
9595
|
* Additional CSS class for the tab component
|
|
8758
9596
|
*/
|
|
8759
9597
|
className?: string;
|
|
9598
|
+
/**
|
|
9599
|
+
* Glass morphism effect for the tab component
|
|
9600
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
9601
|
+
*/
|
|
9602
|
+
glass?: AtomixGlassProps | boolean;
|
|
8760
9603
|
}
|
|
8761
9604
|
/**
|
|
8762
9605
|
* Tab component for switching between different content panels
|
|
@@ -8831,6 +9674,11 @@ interface ToggleProps {
|
|
|
8831
9674
|
* Additional CSS class for the toggle
|
|
8832
9675
|
*/
|
|
8833
9676
|
className?: string;
|
|
9677
|
+
/**
|
|
9678
|
+
* Glass morphism effect for the toggle
|
|
9679
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
9680
|
+
*/
|
|
9681
|
+
glass?: AtomixGlassProps | boolean;
|
|
8834
9682
|
}
|
|
8835
9683
|
/**
|
|
8836
9684
|
* Toggle component for switching between two states
|
|
@@ -8866,6 +9714,11 @@ interface TooltipProps {
|
|
|
8866
9714
|
* Offset from the trigger element (in pixels)
|
|
8867
9715
|
*/
|
|
8868
9716
|
offset?: number;
|
|
9717
|
+
/**
|
|
9718
|
+
* Glass morphism effect for the tooltip
|
|
9719
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
9720
|
+
*/
|
|
9721
|
+
glass?: AtomixGlassProps | boolean;
|
|
8869
9722
|
}
|
|
8870
9723
|
declare const Tooltip: react__default.FC<TooltipProps>;
|
|
8871
9724
|
|
|
@@ -9201,6 +10054,7 @@ declare const atomix: {
|
|
|
9201
10054
|
readonly layouts: typeof layouts;
|
|
9202
10055
|
readonly Accordion: react.FC<AccordionProps>;
|
|
9203
10056
|
readonly AtomixLogo: react.FC<AtomixLogoProps>;
|
|
10057
|
+
readonly AtomixGlass: typeof AtomixGlass;
|
|
9204
10058
|
readonly Avatar: react.FC<AvatarProps>;
|
|
9205
10059
|
readonly AvatarGroup: react.FC<AvatarGroupProps>;
|
|
9206
10060
|
readonly Badge: react.FC<BadgeProps>;
|
|
@@ -9269,12 +10123,16 @@ declare const atomix: {
|
|
|
9269
10123
|
readonly Dropdown: react.FC<DropdownProps>;
|
|
9270
10124
|
readonly EdgePanel: react.FC<EdgePanelProps>;
|
|
9271
10125
|
readonly Checkbox: react.FC<CheckboxProps>;
|
|
10126
|
+
readonly Footer: react.ForwardRefExoticComponent<FooterProps & react.RefAttributes<HTMLElement>>;
|
|
10127
|
+
readonly FooterSection: react.ForwardRefExoticComponent<FooterSectionProps & react.RefAttributes<HTMLDivElement>>;
|
|
10128
|
+
readonly FooterLink: react.ForwardRefExoticComponent<FooterLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
10129
|
+
readonly FooterSocialLink: react.ForwardRefExoticComponent<FooterSocialLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
9272
10130
|
readonly Form: react.FC<FormProps>;
|
|
9273
10131
|
readonly FormGroup: react.FC<FormGroupProps>;
|
|
9274
|
-
readonly Input: react.
|
|
10132
|
+
readonly Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
9275
10133
|
readonly Radio: react.FC<RadioProps>;
|
|
9276
10134
|
readonly Select: react.FC<SelectProps>;
|
|
9277
|
-
readonly Textarea: react.
|
|
10135
|
+
readonly Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
9278
10136
|
readonly Hero: react.FC<HeroProps>;
|
|
9279
10137
|
readonly Icon: react.FC<IconProps>;
|
|
9280
10138
|
readonly List: react.FC<ListProps>;
|
|
@@ -9306,5 +10164,5 @@ declare const atomix: {
|
|
|
9306
10164
|
readonly VideoPlayer: react.ForwardRefExoticComponent<VideoPlayerProps & react.RefAttributes<HTMLVideoElement>>;
|
|
9307
10165
|
};
|
|
9308
10166
|
|
|
9309
|
-
export { Accordion, AdvancedChart, AnimatedChart, AreaChart, AtomixLogo, Avatar, AvatarGroup, Badge, BarChart, Block, Breadcrumb, BubbleChart, Button, Callout, CandlestickChart, Card, Chart, ChartRenderer, Checkbox, ColorModeToggle, Container, Countdown, DataTable, DatePicker, DonutChart, Dropdown, EdgePanel, 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, RealTimeChart, 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 };
|
|
9310
|
-
export type { AccordionProps, AdvancedChartProps, AnimatedChartProps, AreaChartProps, AtomixLogoProps, AvatarGroupProps, AvatarProps, BadgeProps, BarChartProps, BlockProps, BreadcrumbProps, BubbleChartProps, BubbleDataPoint, ButtonProps, CalloutProps, CandlestickChartProps, CandlestickDataPoint, CardProps, ChartProps, CheckboxProps, ColorModeToggleProps, ContainerProps, CountdownProps, DataTableProps, DatePickerProps, DonutChartProps, DropdownProps, EdgePanelProps, 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, RealTimeChartProps, RiverProps, RowProps, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectProps, SideMenuItemProps, SideMenuListProps, SideMenuProps, SliderProps, SpinnerProps, StepsProps, TabProps, TestimonialProps, TextareaProps, TodoProps, ToggleProps, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, VideoPlayerProps, WaterfallChartProps, WaterfallDataPoint };
|
|
10167
|
+
export { Accordion, AdvancedChart, 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, RealTimeChart, 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 };
|
|
10168
|
+
export type { AccordionProps, AdvancedChartProps, 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, RealTimeChartProps, 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 };
|