elseware-ui 2.39.1 → 2.40.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { HTMLAttributes, ReactNode, JSX, ImgHTMLAttributes, ComponentPropsWithoutRef, TdHTMLAttributes, TableHTMLAttributes, ThHTMLAttributes, FC, ComponentType, MouseEvent, Dispatch, SetStateAction, HTMLAttributeAnchorTarget, BlockquoteHTMLAttributes, AnchorHTMLAttributes, OlHTMLAttributes, LiHTMLAttributes, InputHTMLAttributes, DetailsHTMLAttributes, ClassAttributes, TextareaHTMLAttributes, FocusEventHandler, MutableRefObject } from 'react';
2
+ import React__default, { HTMLAttributes, ReactNode, SelectHTMLAttributes, InputHTMLAttributes, JSX, Dispatch, SetStateAction, ImgHTMLAttributes, ComponentPropsWithoutRef, TdHTMLAttributes, TableHTMLAttributes, ThHTMLAttributes, FC, ComponentType, MouseEvent, HTMLAttributeAnchorTarget, BlockquoteHTMLAttributes, AnchorHTMLAttributes, OlHTMLAttributes, LiHTMLAttributes, DetailsHTMLAttributes, ClassAttributes, TextareaHTMLAttributes, FocusEventHandler, MutableRefObject } from 'react';
3
3
  import * as d3 from 'd3';
4
4
  import * as formik from 'formik';
5
5
  import { FieldHookConfig } from 'formik';
@@ -27,33 +27,356 @@ declare const CURRENCIES: {
27
27
  code: string;
28
28
  }[];
29
29
 
30
- type Variant$1 = "default" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "light" | "dark";
31
- type Shape$1 = "circle" | "roundedSquare" | "softRoundedSquare" | "square";
32
- type Size$1 = "xs" | "sm" | "md" | "lg" | "xl";
33
- type Appearance = "solid" | "lite" | "ghost";
34
- type TextDecoration = "underline" | "overline" | "lineThrough" | "noUnderline";
35
- type HyperRefTarget = "blank" | "self" | "parent" | "top";
36
- type VerticalPosition = "top" | "bottom";
37
- type HorizontalPosition = "left" | "right";
38
- type CardinalPosition = VerticalPosition | HorizontalPosition;
39
- type CornerPosition = `${VerticalPosition}-${HorizontalPosition}`;
40
- type OctilePosition = CardinalPosition | CornerPosition;
30
+ declare enum Variant$1 {
31
+ default = "default",
32
+ primary = "primary",
33
+ secondary = "secondary",
34
+ success = "success",
35
+ danger = "danger",
36
+ warning = "warning",
37
+ info = "info",
38
+ light = "light",
39
+ dark = "dark"
40
+ }
41
+ declare enum TextVariant {
42
+ default = "default",
43
+ primary = "primary",
44
+ secondary = "secondary",
45
+ success = "success",
46
+ danger = "danger",
47
+ warning = "warning",
48
+ info = "info",
49
+ light = "light",
50
+ dark = "dark"
51
+ }
52
+ declare enum Shape$1 {
53
+ circle = "circle",
54
+ roundedSquare = "roundedSquare",
55
+ softRoundedSquare = "softRoundedSquare",
56
+ square = "square"
57
+ }
58
+ declare enum Size$1 {
59
+ xs = "xs",
60
+ sm = "sm",
61
+ md = "md",
62
+ lg = "lg",
63
+ xl = "xl"
64
+ }
65
+ declare enum Appearance$1 {
66
+ solid = "solid",
67
+ lite = "lite",
68
+ ghost = "ghost"
69
+ }
70
+ declare enum Decoration {
71
+ underline = "underline",
72
+ overline = "overline",
73
+ lineThrough = "lineThrough",
74
+ noUnderline = "noUnderline"
75
+ }
76
+ declare enum Target {
77
+ blank = "blank",
78
+ self = "self",
79
+ parent = "parent",
80
+ top = "top"
81
+ }
82
+ declare enum VerticalPosition$1 {
83
+ top = "top",
84
+ bottom = "bottom"
85
+ }
86
+ declare enum HorizontalPosition$1 {
87
+ left = "left",
88
+ right = "right"
89
+ }
90
+ declare enum CardinalPosition$1 {
91
+ top = "top",
92
+ bottom = "bottom",
93
+ left = "left",
94
+ right = "right"
95
+ }
96
+ declare enum CornerPosition$1 {
97
+ "top-left" = "top-left",
98
+ "top-right" = "top-right",
99
+ "bottom-left" = "bottom-left",
100
+ "bottom-right" = "bottom-right"
101
+ }
102
+ declare enum OctilePosition$1 {
103
+ top = "top",
104
+ bottom = "bottom",
105
+ left = "left",
106
+ right = "right",
107
+ "top-left" = "top-left",
108
+ "top-right" = "top-right",
109
+ "bottom-left" = "bottom-left",
110
+ "bottom-right" = "bottom-right"
111
+ }
112
+ declare enum ListBulletType$1 {
113
+ dot = "dot",
114
+ diamond = "diamond",
115
+ number = "number",
116
+ none = "none"
117
+ }
118
+ declare enum ListAlign$1 {
119
+ start = "start",
120
+ center = "center"
121
+ }
122
+ declare enum ListDirection$1 {
123
+ vertical = "vertical",
124
+ horizontal = "horizontal"
125
+ }
126
+ declare enum SpinnerType$1 {
127
+ border = "border",
128
+ ring = "ring",
129
+ dots = "dots",
130
+ bars = "bars",
131
+ pulse = "pulse",
132
+ orbit = "orbit",
133
+ dualRing = "dualRing",
134
+ ripple = "ripple",
135
+ grid = "grid",
136
+ wave = "wave"
137
+ }
138
+ declare enum ToastPosition {
139
+ topLeft = "top-left",
140
+ topCenter = "top-center",
141
+ topRight = "top-right",
142
+ bottomLeft = "bottom-left",
143
+ bottomCenter = "bottom-center",
144
+ bottomRight = "bottom-right"
145
+ }
146
+ declare enum ToastStatus {
147
+ default = "default",
148
+ success = "success",
149
+ warning = "warning",
150
+ error = "error",
151
+ danger = "danger",
152
+ info = "info"
153
+ }
154
+
155
+ type Variant = `${Variant$1}`;
156
+ type Shape = `${Shape$1}`;
157
+ type Size = `${Size$1}`;
158
+ type Appearance = `${Appearance$1}`;
159
+ type TextDecoration = `${Decoration}`;
160
+ type HyperRefTarget = `${Target}`;
161
+ type VerticalPosition = `${VerticalPosition$1}`;
162
+ type HorizontalPosition = `${HorizontalPosition$1}`;
163
+ type CardinalPosition = `${CardinalPosition$1}`;
164
+ type CornerPosition = `${CornerPosition$1}`;
165
+ type OctilePosition = `${OctilePosition$1}`;
41
166
  type TitleBannerLevel = 1 | 2;
42
- type ListBulletType = "dot" | "diamond" | "number" | "none";
43
- type ListAlign = "start" | "center";
44
- type ListDirection = "vertical" | "horizontal";
167
+ type ListBulletType = `${ListBulletType$1}`;
168
+ type ListAlign = `${ListAlign$1}`;
169
+ type ListDirection = `${ListDirection$1}`;
45
170
  type RouteTabMode = "route" | "state";
46
171
  type CurrencyCode = (typeof CURRENCIES)[number]["code"];
47
- type SpinnerType = "border" | "ring" | "dots" | "bars" | "pulse" | "orbit" | "dualRing" | "ripple" | "grid" | "wave";
172
+ type SpinnerType = `${SpinnerType$1}`;
48
173
  type SpinnerDirection = "vertical" | "horizontal";
49
174
 
175
+ type CookieConsentCategory = "necessary" | "analytics" | "preferences" | "marketing";
176
+ type CookieConsentStatus = "unset" | "accepted" | "rejected" | "partial";
177
+ interface CookieConsentState {
178
+ status: CookieConsentStatus;
179
+ categories: Record<CookieConsentCategory, boolean>;
180
+ version: string;
181
+ updatedAt?: string;
182
+ }
183
+ interface CookieConsentCategoryOption {
184
+ key: CookieConsentCategory;
185
+ title: string;
186
+ description?: string;
187
+ required?: boolean;
188
+ }
189
+ type AnalyticsEventType = "page_view" | "page_leave" | "session_start" | "session_end" | "click" | "custom";
190
+ interface AnalyticsEvent {
191
+ id: string;
192
+ type: AnalyticsEventType;
193
+ appId: string;
194
+ sessionId: string;
195
+ anonymousId?: string | null;
196
+ userId?: string | null;
197
+ path?: string;
198
+ fullUrl?: string;
199
+ referrer?: string;
200
+ title?: string;
201
+ timestamp: string;
202
+ durationMs?: number;
203
+ viewport?: {
204
+ width: number;
205
+ height: number;
206
+ };
207
+ device?: {
208
+ userAgent: string;
209
+ language: string;
210
+ timezone: string;
211
+ };
212
+ metadata?: Record<string, unknown>;
213
+ }
214
+ interface AnalyticsTransport {
215
+ send: (events: AnalyticsEvent[]) => Promise<void>;
216
+ sendBeacon?: (events: AnalyticsEvent[]) => boolean;
217
+ }
218
+ interface AnalyticsConfig {
219
+ enabled?: boolean;
220
+ trackPageViews?: boolean;
221
+ trackSession?: boolean;
222
+ flushIntervalMs?: number;
223
+ maxBatchSize?: number;
224
+ respectDoNotTrack?: boolean;
225
+ persistQueue?: boolean;
226
+ storageKey?: string;
227
+ debug?: boolean;
228
+ }
229
+ interface AnalyticsProviderProps {
230
+ children?: ReactNode;
231
+ appId: string;
232
+ consentVersion: string;
233
+ userId?: string | null;
234
+ transport?: AnalyticsTransport;
235
+ config?: AnalyticsConfig;
236
+ enrichEvent?: (event: AnalyticsEvent) => AnalyticsEvent | Promise<AnalyticsEvent>;
237
+ onConsentChange?: (consent: CookieConsentState) => void;
238
+ }
239
+ interface TrackAnalyticsOptions extends Partial<Omit<AnalyticsEvent, "id" | "timestamp" | "type">> {
240
+ metadata?: Record<string, unknown>;
241
+ }
242
+ interface AnalyticsContextValue {
243
+ appId: string;
244
+ consent: CookieConsentState;
245
+ hasAnalyticsConsent: boolean;
246
+ anonymousId: string | null;
247
+ sessionId: string;
248
+ track: (type: AnalyticsEventType, options?: TrackAnalyticsOptions) => void;
249
+ flush: () => Promise<void>;
250
+ acceptAll: () => void;
251
+ rejectAll: () => void;
252
+ updateConsent: (categories: Partial<Record<CookieConsentCategory, boolean>>) => void;
253
+ resetConsent: () => void;
254
+ }
255
+ interface CookieBannerProps extends BaseComponentProps {
256
+ title?: string;
257
+ description?: string;
258
+ privacyPolicyUrl?: string;
259
+ cookiePolicyUrl?: string;
260
+ position?: "top" | "bottom" | "bottom-left" | "bottom-right";
261
+ variant?: Variant;
262
+ appearance?: Appearance;
263
+ shape?: Shape;
264
+ showRejectAll?: boolean;
265
+ showCustomize?: boolean;
266
+ labels?: {
267
+ acceptAll?: string;
268
+ rejectAll?: string;
269
+ customize?: string;
270
+ save?: string;
271
+ privacyPolicy?: string;
272
+ cookiePolicy?: string;
273
+ };
274
+ categories?: CookieConsentCategoryOption[];
275
+ }
276
+ interface CookiePreferencesModalProps extends BaseComponentProps {
277
+ open: boolean;
278
+ onClose: () => void;
279
+ title?: string;
280
+ description?: string;
281
+ variant?: Variant;
282
+ appearance?: Appearance;
283
+ shape?: Shape;
284
+ categories?: CookieConsentCategoryOption[];
285
+ labels?: {
286
+ save?: string;
287
+ cancel?: string;
288
+ };
289
+ }
290
+ interface UsePageTrackingOptions {
291
+ path: string;
292
+ search?: string;
293
+ title?: string;
294
+ fullUrl?: string;
295
+ metadata?: Record<string, unknown>;
296
+ enabled?: boolean;
297
+ }
298
+ interface UseSessionTrackingOptions {
299
+ enabled?: boolean;
300
+ metadata?: Record<string, unknown>;
301
+ }
302
+
303
+ declare const AnalyticsProvider: ({ children, appId, consentVersion, userId, transport, config, enrichEvent, onConsentChange, }: AnalyticsProviderProps) => React$1.JSX.Element;
304
+
305
+ declare const CookieBanner: ({ title, description, privacyPolicyUrl, cookiePolicyUrl, position, shape, showRejectAll, showCustomize, labels, categories, className, ...rest }: CookieBannerProps) => React$1.JSX.Element | null;
306
+
307
+ declare const CookiePreferencesModal: ({ open, onClose, title, description, variant, appearance, shape, categories, labels, className, ...rest }: CookiePreferencesModalProps) => React$1.JSX.Element;
308
+
309
+ declare const AnalyticsContext: React$1.Context<AnalyticsContextValue | null>;
310
+
311
+ declare const EUI_ANALYTICS_CONSENT_STORAGE_KEY = "eui.cookie-consent";
312
+ declare const EUI_ANALYTICS_ANONYMOUS_ID_STORAGE_KEY = "eui.analytics.anonymous-id";
313
+ declare const EUI_ANALYTICS_QUEUE_STORAGE_KEY = "eui.analytics.queue";
314
+ declare const DEFAULT_ANALYTICS_CONFIG: Required<AnalyticsConfig>;
315
+ declare const DEFAULT_COOKIE_CATEGORIES: CookieConsentCategoryOption[];
316
+ declare const createDefaultConsent: (version: string) => CookieConsentState;
317
+
318
+ declare const safeReadStorage: <TValue>(key: string, fallback: TValue) => TValue;
319
+ declare const safeWriteStorage: <TValue>(key: string, value: TValue) => void;
320
+ declare const safeRemoveStorage: (key: string) => void;
321
+ declare const readConsentStorage: (key: string, fallback: CookieConsentState) => CookieConsentState;
322
+ declare const writeConsentStorage: (key: string, consent: CookieConsentState) => void;
323
+ declare const clearConsentStorage: (key: string) => void;
324
+ declare const readAnalyticsQueueStorage: () => AnalyticsEvent[];
325
+ declare const writeAnalyticsQueueStorage: (events: AnalyticsEvent[]) => void;
326
+ declare const clearAnalyticsQueueStorage: () => void;
327
+ declare const readAnonymousIdStorage: () => string | null;
328
+ declare const ensureAnonymousIdStorage: () => string;
329
+ declare const clearAnonymousIdStorage: () => void;
330
+
331
+ declare const isBrowser: () => boolean;
332
+ declare const getNowISOString: () => string;
333
+ declare const createAnalyticsId: (prefix: string) => string;
334
+ declare const getDoNotTrackEnabled: () => boolean;
335
+ declare const getViewport: () => {
336
+ width: number;
337
+ height: number;
338
+ } | undefined;
339
+ declare const getDeviceInfo: () => {
340
+ userAgent: string;
341
+ language: string;
342
+ timezone: string;
343
+ } | undefined;
344
+ declare const getCurrentPath: () => string | undefined;
345
+ declare const getCurrentFullUrl: () => string | undefined;
346
+ declare const getCurrentReferrer: () => string | undefined;
347
+ declare const getCurrentTitle: () => string | undefined;
348
+ declare const getConsentStatusFromCategories: (categories: Record<CookieConsentCategory, boolean>) => CookieConsentState["status"];
349
+ declare const createAnalyticsEvent: ({ appId, type, sessionId, anonymousId, userId, options, }: {
350
+ appId: string;
351
+ type: AnalyticsEventType;
352
+ sessionId: string;
353
+ anonymousId?: string | null;
354
+ userId?: string | null;
355
+ options?: TrackAnalyticsOptions;
356
+ }) => AnalyticsEvent;
357
+
358
+ declare const useAnalytics: () => AnalyticsContextValue;
359
+
360
+ declare const useCookieConsent: () => {
361
+ consent: CookieConsentState;
362
+ hasAnalyticsConsent: boolean;
363
+ acceptAll: () => void;
364
+ rejectAll: () => void;
365
+ updateConsent: (categories: Partial<Record<CookieConsentCategory, boolean>>) => void;
366
+ resetConsent: () => void;
367
+ };
368
+
369
+ declare const usePageTracking: ({ path, search, title, fullUrl, metadata, enabled, }: UsePageTrackingOptions) => void;
370
+
371
+ declare const useSessionTracking: ({ enabled, metadata, }?: UseSessionTrackingOptions) => void;
372
+
50
373
  interface AvatarProps extends BaseComponentProps {
51
374
  alt?: string;
52
375
  icon?: ReactNode;
53
- variant?: Variant$1;
376
+ variant?: Variant;
54
377
  appearance?: Appearance;
55
- shape?: Shape$1;
56
- size?: Size$1;
378
+ shape?: Shape;
379
+ size?: Size;
57
380
  src?: string;
58
381
  children?: ReactNode;
59
382
  }
@@ -63,10 +386,10 @@ interface BadgeProps extends BaseComponentProps {
63
386
  offset?: [number, number];
64
387
  dot?: boolean;
65
388
  count?: number;
66
- variant?: Variant$1;
389
+ variant?: Variant;
67
390
  appearance?: Appearance;
68
- shape?: Shape$1;
69
- size?: Size$1;
391
+ shape?: Shape;
392
+ size?: Size;
70
393
  showZero?: boolean;
71
394
  position?: OctilePosition;
72
395
  children?: ReactNode;
@@ -84,7 +407,7 @@ interface BrandProps extends BaseComponentProps {
84
407
  src?: string;
85
408
  alt?: string;
86
409
  }
87
- declare function Brand({ src, alt, className, ...rest }: BrandProps): React$1.JSX.Element;
410
+ declare const Brand: ({ src, alt, className, ...rest }: BrandProps) => React$1.JSX.Element;
88
411
 
89
412
  type ChartUnsubscribe = () => void;
90
413
  type ChartDataHandler<TData extends ChartDataPoint = ChartDataPoint> = (data: TData | TData[]) => void;
@@ -96,7 +419,7 @@ interface ChartDataSource<TData extends ChartDataPoint = ChartDataPoint> {
96
419
  subscribe?: (onData: ChartDataHandler<TData>, onError?: ChartErrorHandler) => ChartUnsubscribe;
97
420
  }
98
421
  interface StaticChartDataSourceOptions<TData extends ChartDataPoint = ChartDataPoint> {
99
- data: TData[];
422
+ data?: TData[];
100
423
  }
101
424
  interface PollingChartDataSourceOptions<TData extends ChartDataPoint = ChartDataPoint> {
102
425
  interval?: number;
@@ -191,10 +514,17 @@ interface ChartTheme {
191
514
  tooltip: ChartThemeTooltip;
192
515
  colors: string[];
193
516
  }
517
+ interface ChartThemeOverride {
518
+ panel?: Partial<ChartThemePanel>;
519
+ text?: Partial<ChartThemeText>;
520
+ chart?: Partial<ChartThemeChart>;
521
+ tooltip?: Partial<ChartThemeTooltip>;
522
+ colors?: string[];
523
+ }
194
524
  type ChartThemeMode = "dark" | "light";
195
525
  interface UseChartThemeOptions {
196
526
  mode?: ChartThemeMode;
197
- theme?: Partial<ChartTheme>;
527
+ theme?: ChartThemeOverride;
198
528
  }
199
529
 
200
530
  type ChartPrimitive = string | number | boolean | Date | null | undefined;
@@ -212,6 +542,7 @@ interface ChartState<TData extends ChartDataPoint = ChartDataPoint> {
212
542
  }
213
543
  interface ChartContextValue<TData extends ChartDataPoint = ChartDataPoint> extends ChartState<TData> {
214
544
  mode?: ChartDataMode;
545
+ theme: ChartTheme;
215
546
  maxDataPoints: number;
216
547
  refresh: () => Promise<void>;
217
548
  replaceData: (data: TData[]) => void;
@@ -224,7 +555,8 @@ interface ChartProviderProps<TData extends ChartDataPoint = ChartDataPoint> {
224
555
  dataSource?: ChartDataSource<TData>;
225
556
  maxDataPoints?: number;
226
557
  autoLoad?: boolean;
227
- theme?: Partial<ChartTheme>;
558
+ theme?: ChartThemeOverride;
559
+ themeMode?: ChartThemeMode;
228
560
  onDataChange?: (data: TData[]) => void;
229
561
  onError?: (error: Error) => void;
230
562
  }
@@ -305,26 +637,22 @@ interface ChartProps<TData extends ChartDataPoint = ChartDataPoint> extends Omit
305
637
  dataSource?: ChartDataSource<TData>;
306
638
  autoLoad?: ChartProviderProps<TData>["autoLoad"];
307
639
  maxDataPoints?: ChartProviderProps<TData>["maxDataPoints"];
308
- theme?: Partial<ChartTheme>;
640
+ theme?: ChartThemeOverride;
309
641
  themeMode?: ChartThemeMode;
310
642
  chartClassName?: string;
311
643
  contentClassName?: string;
312
644
  onDataChange?: ChartProviderProps<TData>["onDataChange"];
313
645
  onError?: ChartProviderProps<TData>["onError"];
314
646
  }
315
- interface ChartRenderChartProps<TData extends ChartDataPoint = ChartDataPoint> extends ChartProps<TData> {
316
- series?: ChartSeries[];
317
- }
318
647
 
319
648
  declare function Chart<TData extends ChartDataPoint = ChartDataPoint>(props: ChartProps<TData>): React$1.JSX.Element;
320
649
 
321
- interface ChartPanelProps {
650
+ interface ChartPanelProps extends Omit<BaseComponentProps<HTMLElement>, "title"> {
322
651
  title?: ReactNode;
323
652
  description?: ReactNode;
324
653
  actions?: ReactNode;
325
654
  toolbar?: ReactNode;
326
655
  children: ReactNode;
327
- className?: string;
328
656
  contentClassName?: string;
329
657
  height?: number;
330
658
  loading?: boolean;
@@ -337,25 +665,23 @@ interface ChartPanelProps {
337
665
  showLastUpdated?: boolean;
338
666
  onRetry?: () => void | Promise<void>;
339
667
  }
340
- declare function ChartPanel({ title, description, actions, toolbar, children, className, contentClassName, height, loading, error, empty, emptyMessage, emptyDescription, showToolbar, showRefresh, showLastUpdated, onRetry, }: ChartPanelProps): React$1.JSX.Element;
668
+ declare function ChartPanel({ title, description, actions, toolbar, children, className, contentClassName, height, loading, error, empty, emptyMessage, emptyDescription, showToolbar, showRefresh, showLastUpdated, onRetry, ...rest }: ChartPanelProps): React$1.JSX.Element;
341
669
 
342
- interface ChartHeaderProps {
670
+ interface ChartHeaderProps extends Omit<BaseComponentProps, "title"> {
343
671
  title?: ReactNode;
344
672
  description?: ReactNode;
345
673
  actions?: ReactNode;
346
- className?: string;
347
674
  }
348
- declare function ChartHeader({ title, description, actions, className, }: ChartHeaderProps): React$1.JSX.Element | null;
675
+ declare function ChartHeader({ title, description, actions, className, ...rest }: ChartHeaderProps): React$1.JSX.Element | null;
349
676
 
350
- interface ChartToolbarProps {
677
+ interface ChartToolbarProps extends BaseComponentProps {
351
678
  children?: ReactNode;
352
- className?: string;
353
679
  showRefresh?: boolean;
354
680
  showLastUpdated?: boolean;
355
681
  refreshLabel?: ReactNode;
356
682
  onRefresh?: () => void | Promise<void>;
357
683
  }
358
- declare function ChartToolbar({ children, className, showRefresh, showLastUpdated, refreshLabel, onRefresh, }: ChartToolbarProps): React$1.JSX.Element | null;
684
+ declare function ChartToolbar({ children, className, showRefresh, showLastUpdated, refreshLabel, onRefresh, ...rest }: ChartToolbarProps): React$1.JSX.Element | null;
359
685
 
360
686
  interface ChartLegendItem {
361
687
  key: string;
@@ -368,16 +694,15 @@ interface ChartLegendItem {
368
694
  suffix?: string;
369
695
  active?: boolean;
370
696
  }
371
- interface ChartLegendProps<TData extends ChartDataPoint = ChartDataPoint> {
697
+ interface ChartLegendProps<TData extends ChartDataPoint = ChartDataPoint> extends BaseComponentProps {
372
698
  items?: ChartLegendItem[];
373
699
  series?: ChartSeries[];
374
700
  data?: TData[];
375
- className?: string;
376
701
  showValues?: boolean;
377
702
  valueSource?: "latest" | "none";
378
703
  onItemClick?: (item: ChartLegendItem) => void;
379
704
  }
380
- declare function ChartLegend<TData extends ChartDataPoint = ChartDataPoint>({ items, series, data, className, showValues, valueSource, onItemClick, }: ChartLegendProps<TData>): React$1.JSX.Element | null;
705
+ declare function ChartLegend<TData extends ChartDataPoint = ChartDataPoint>({ items, series, data, className, showValues, valueSource, onItemClick, ...rest }: ChartLegendProps<TData>): React$1.JSX.Element | null;
381
706
 
382
707
  interface ChartTooltipFormatterOptions {
383
708
  format?: ChartValueFormat;
@@ -385,62 +710,67 @@ interface ChartTooltipFormatterOptions {
385
710
  suffix?: string;
386
711
  unit?: string;
387
712
  }
388
- interface ChartTooltipProps {
713
+ interface ChartTooltipProps extends BaseComponentProps {
389
714
  active?: boolean;
390
715
  label?: string | number;
391
716
  payload?: ChartTooltipPayload[];
392
- className?: string;
393
717
  labelFormatter?: (label: string | number) => string;
394
718
  valueFormatter?: (value: unknown, name?: string, payload?: ChartTooltipPayload) => string;
395
719
  seriesFormatters?: Record<string, ChartTooltipFormatterOptions>;
396
720
  }
397
- declare function ChartTooltip({ active, label, payload, className, labelFormatter, valueFormatter, seriesFormatters, }: ChartTooltipProps): React$1.JSX.Element | null;
721
+ declare function ChartTooltip({ active, label, payload, className, labelFormatter, valueFormatter, seriesFormatters, style, ...rest }: ChartTooltipProps): React$1.JSX.Element | null;
398
722
 
399
- interface ChartEmptyStateProps {
723
+ interface ChartEmptyStateProps extends BaseComponentProps {
400
724
  height?: number;
401
725
  message?: ReactNode;
402
726
  description?: ReactNode;
403
- className?: string;
404
727
  }
405
- declare function ChartEmptyState({ height, message, description, className, }: ChartEmptyStateProps): React$1.JSX.Element;
728
+ declare function ChartEmptyState({ height, message, description, className, style, ...rest }: ChartEmptyStateProps): React$1.JSX.Element;
406
729
 
407
- interface ChartErrorStateProps {
730
+ interface ChartErrorStateProps extends Omit<BaseComponentProps, "title"> {
408
731
  error?: Error | null;
409
732
  height?: number;
410
733
  title?: ReactNode;
411
734
  message?: ReactNode;
412
- className?: string;
413
735
  onRetry?: () => void | Promise<void>;
414
736
  retryLabel?: ReactNode;
415
737
  }
416
- declare function ChartErrorState({ error, height, title, message, className, onRetry, retryLabel, }: ChartErrorStateProps): React$1.JSX.Element;
738
+ declare function ChartErrorState({ error, height, title, message, className, onRetry, retryLabel, style, ...rest }: ChartErrorStateProps): React$1.JSX.Element;
417
739
 
418
- interface ChartLoadingStateProps {
740
+ interface ChartLoadingStateProps extends BaseComponentProps {
419
741
  height?: number;
420
742
  message?: ReactNode;
421
- className?: string;
422
743
  showMessage?: boolean;
423
744
  }
424
- declare function ChartLoadingState({ height, message, className, showMessage, }: ChartLoadingStateProps): React$1.JSX.Element;
745
+ declare function ChartLoadingState({ height, message, className, showMessage, style, ...rest }: ChartLoadingStateProps): React$1.JSX.Element;
425
746
 
426
- interface ChartContainerProps {
747
+ interface ChartContainerProps extends BaseComponentProps {
427
748
  children: ReactNode;
428
749
  height?: number;
429
- className?: string;
430
750
  contentClassName?: string;
431
751
  }
432
- declare function ChartContainer({ children, height, className, contentClassName, }: ChartContainerProps): React$1.JSX.Element;
752
+ declare function ChartContainer({ children, height, className, contentClassName, style, ...rest }: ChartContainerProps): React$1.JSX.Element;
433
753
 
434
- declare function LinePlot<TData extends ChartDataPoint = ChartDataPoint>({ data, xKey, series, height, loading, error, className, showGrid, showTooltip, showLegend, animated, }: BaseChartProps<TData>): React$1.JSX.Element;
754
+ interface ChartPlotFrameProps extends BaseComponentProps {
755
+ children: ReactNode;
756
+ footer?: ReactNode;
757
+ height?: number;
758
+ loading?: boolean;
759
+ error?: Error | null;
760
+ empty?: boolean;
761
+ }
762
+ declare function ChartPlotFrame({ children, footer, height, loading, error, empty, className, ...rest }: ChartPlotFrameProps): React$1.JSX.Element;
435
763
 
436
- declare function AreaPlot<TData extends ChartDataPoint = ChartDataPoint>({ data, xKey, series, height, loading, error, className, showGrid, showTooltip, showLegend, animated, }: BaseChartProps<TData>): React$1.JSX.Element;
764
+ declare function LinePlot<TData extends ChartDataPoint = ChartDataPoint>({ data, xKey, series, height, loading, error, className, showGrid, showTooltip, showLegend, animated, ...rest }: BaseChartProps<TData> & BaseComponentProps): React$1.JSX.Element;
437
765
 
438
- interface BarChartProps<TData extends ChartDataPoint = ChartDataPoint> extends BaseChartProps<TData> {
766
+ declare function AreaPlot<TData extends ChartDataPoint = ChartDataPoint>({ data, xKey, series, height, loading, error, className, showGrid, showTooltip, showLegend, animated, ...rest }: BaseChartProps<TData> & BaseComponentProps): React$1.JSX.Element;
767
+
768
+ interface BarChartProps<TData extends ChartDataPoint = ChartDataPoint> extends BaseChartProps<TData>, BaseComponentProps {
439
769
  layout?: "horizontal" | "vertical";
440
770
  }
441
- declare function BarPlot<TData extends ChartDataPoint = ChartDataPoint>({ data, xKey, series, height, loading, error, className, showGrid, showTooltip, showLegend, animated, layout, }: BarChartProps<TData>): React$1.JSX.Element;
771
+ declare function BarPlot<TData extends ChartDataPoint = ChartDataPoint>({ data, xKey, series, height, loading, error, className, showGrid, showTooltip, showLegend, animated, layout, ...rest }: BarChartProps<TData>): React$1.JSX.Element;
442
772
 
443
- interface PieChartProps<TData extends ChartDataPoint = ChartDataPoint> extends Omit<BaseChartProps<TData>, "xKey" | "series"> {
773
+ interface PieChartProps<TData extends ChartDataPoint = ChartDataPoint> extends Omit<BaseChartProps<TData>, "xKey" | "series">, BaseComponentProps {
444
774
  nameKey?: keyof TData | string;
445
775
  valueKey?: keyof TData | string;
446
776
  innerRadius?: number | string;
@@ -448,11 +778,11 @@ interface PieChartProps<TData extends ChartDataPoint = ChartDataPoint> extends O
448
778
  valueFormat?: ChartValueFormat;
449
779
  unit?: string;
450
780
  }
451
- declare function PiePlot<TData extends ChartDataPoint = ChartDataPoint>({ data, nameKey, valueKey, height, loading, error, className, showTooltip, showLegend, animated, innerRadius, outerRadius, valueFormat, unit, }: PieChartProps<TData>): React$1.JSX.Element;
781
+ declare function PiePlot<TData extends ChartDataPoint = ChartDataPoint>({ data, nameKey, valueKey, height, loading, error, className, showTooltip, showLegend, animated, innerRadius, outerRadius, valueFormat, unit, ...rest }: PieChartProps<TData>): React$1.JSX.Element;
452
782
 
453
- declare function ScatterPlot<TData extends ChartDataPoint = ChartDataPoint>({ data, xKey, series, height, loading, error, className, showGrid, showTooltip, showLegend, animated, }: BaseChartProps<TData>): React$1.JSX.Element;
783
+ declare function ScatterPlot<TData extends ChartDataPoint = ChartDataPoint>({ data, xKey, series, height, loading, error, className, showGrid, showTooltip, showLegend, animated, ...rest }: BaseChartProps<TData> & BaseComponentProps): React$1.JSX.Element;
454
784
 
455
- interface GaugeChartProps<TData extends ChartDataPoint = ChartDataPoint> {
785
+ interface GaugeChartProps<TData extends ChartDataPoint = ChartDataPoint> extends BaseComponentProps {
456
786
  data?: TData[];
457
787
  valueKey?: keyof TData | string;
458
788
  label?: string;
@@ -465,11 +795,10 @@ interface GaugeChartProps<TData extends ChartDataPoint = ChartDataPoint> {
465
795
  format?: ChartValueFormat;
466
796
  loading?: boolean;
467
797
  error?: Error | null;
468
- className?: string;
469
798
  }
470
- declare function GaugePlot<TData extends ChartDataPoint = ChartDataPoint>({ data, valueKey, label, value, min, max, height, color, unit, format, loading, error, className, }: GaugeChartProps<TData>): React$1.JSX.Element;
799
+ declare function GaugePlot<TData extends ChartDataPoint = ChartDataPoint>({ data, valueKey, label, value, min, max, height, color, unit, format, loading, error, className, ...rest }: GaugeChartProps<TData>): React$1.JSX.Element;
471
800
 
472
- interface StatChartProps<TData extends ChartDataPoint = ChartDataPoint> {
801
+ interface StatChartProps<TData extends ChartDataPoint = ChartDataPoint> extends BaseComponentProps {
473
802
  data?: TData[];
474
803
  valueKey?: keyof TData | string;
475
804
  label?: string;
@@ -481,41 +810,16 @@ interface StatChartProps<TData extends ChartDataPoint = ChartDataPoint> {
481
810
  unit?: string;
482
811
  loading?: boolean;
483
812
  error?: Error | null;
484
- className?: string;
485
813
  showTrend?: boolean;
486
814
  }
487
- declare function StatPlot<TData extends ChartDataPoint = ChartDataPoint>({ data, valueKey, label, value, previousValue, format, prefix, suffix, unit, loading, error, className, showTrend, }: StatChartProps<TData>): React$1.JSX.Element;
815
+ declare function StatPlot<TData extends ChartDataPoint = ChartDataPoint>({ data, valueKey, label, value, previousValue, format, prefix, suffix, unit, loading, error, className, showTrend, ...rest }: StatChartProps<TData>): React$1.JSX.Element;
488
816
 
489
- declare function ChartProvider<TData extends ChartDataPoint = ChartDataPoint>({ children, data, dataSource, maxDataPoints, autoLoad, onDataChange, onError, }: ChartProviderProps<TData>): React$1.JSX.Element;
817
+ declare function ChartProvider<TData extends ChartDataPoint = ChartDataPoint>({ children, data, dataSource, maxDataPoints, autoLoad, theme, themeMode, onDataChange, onError, }: ChartProviderProps<TData>): React$1.JSX.Element;
490
818
 
491
819
  declare const ChartContext: React$1.Context<ChartContextValue<ChartDataPoint>>;
492
820
 
493
821
  declare function useChartContext<TData extends ChartDataPoint = ChartDataPoint>(): ChartContextValue<TData>;
494
822
 
495
- type ChartAction<TData extends ChartDataPoint = ChartDataPoint> = {
496
- type: "SET_LOADING";
497
- payload?: boolean;
498
- } | {
499
- type: "SET_ERROR";
500
- payload: Error | null;
501
- } | {
502
- type: "SET_DATA";
503
- payload: TData[];
504
- } | {
505
- type: "APPEND_DATA";
506
- payload: {
507
- data: TData | TData[];
508
- maxDataPoints?: number;
509
- };
510
- } | {
511
- type: "CLEAR_DATA";
512
- } | {
513
- type: "SET_STREAMING";
514
- payload?: boolean;
515
- };
516
- declare function createInitialChartState<TData extends ChartDataPoint = ChartDataPoint>(data?: TData[]): ChartState<TData>;
517
- declare function chartReducer<TData extends ChartDataPoint = ChartDataPoint>(state: ChartState<TData>, action: ChartAction<TData>): ChartState<TData>;
518
-
519
823
  declare abstract class BaseChartDataSource<TData extends ChartDataPoint = ChartDataPoint> implements ChartDataSource<TData> {
520
824
  abstract readonly mode: ChartDataMode;
521
825
  getInitialData?(): Promise<TData[]> | TData[];
@@ -526,9 +830,7 @@ declare abstract class BaseChartDataSource<TData extends ChartDataPoint = ChartD
526
830
  protected safeExecute<TResult>(executor: () => Promise<TResult> | TResult): Promise<TResult>;
527
831
  }
528
832
 
529
- interface StaticChartDataSourceConfig<TData extends ChartDataPoint = ChartDataPoint> {
530
- data?: TData[];
531
- }
833
+ type StaticChartDataSourceConfig<TData extends ChartDataPoint = ChartDataPoint> = StaticChartDataSourceOptions<TData>;
532
834
  declare class StaticChartDataSource<TData extends ChartDataPoint = ChartDataPoint> extends BaseChartDataSource<TData> {
533
835
  readonly mode: ChartDataMode;
534
836
  private data;
@@ -540,11 +842,7 @@ declare class StaticChartDataSource<TData extends ChartDataPoint = ChartDataPoin
540
842
  clearData(): void;
541
843
  }
542
844
 
543
- interface PollingChartDataSourceConfig<TData extends ChartDataPoint = ChartDataPoint> {
544
- fetcher: () => Promise<TData[]> | TData[];
545
- interval?: number;
546
- immediate?: boolean;
547
- }
845
+ type PollingChartDataSourceConfig<TData extends ChartDataPoint = ChartDataPoint> = PollingChartDataSourceOptions<TData>;
548
846
  declare class PollingChartDataSource<TData extends ChartDataPoint = ChartDataPoint> extends BaseChartDataSource<TData> {
549
847
  readonly mode: ChartDataMode;
550
848
  private readonly fetcher;
@@ -556,11 +854,7 @@ declare class PollingChartDataSource<TData extends ChartDataPoint = ChartDataPoi
556
854
  subscribe(onData: ChartDataHandler<TData>, onError?: ChartErrorHandler): ChartUnsubscribe;
557
855
  }
558
856
 
559
- interface RealtimeChartDataSourceConfig<TData extends ChartDataPoint = ChartDataPoint> {
560
- connect: (onData: ChartDataHandler<TData>, onError?: ChartErrorHandler) => ChartUnsubscribe;
561
- getInitialData?: () => Promise<TData[]> | TData[];
562
- refresh?: () => Promise<TData[]> | TData[];
563
- }
857
+ type RealtimeChartDataSourceConfig<TData extends ChartDataPoint = ChartDataPoint> = RealtimeChartDataSourceOptions<TData>;
564
858
  declare class RealtimeChartDataSource<TData extends ChartDataPoint = ChartDataPoint> extends BaseChartDataSource<TData> {
565
859
  readonly mode: ChartDataMode;
566
860
  private readonly connect;
@@ -610,7 +904,13 @@ declare function useChartPolling<TData extends ChartDataPoint = ChartDataPoint>(
610
904
 
611
905
  declare function useChartSeries<TData extends ChartDataPoint = ChartDataPoint>({ data, series, xKey, excludeKeys, }: UseChartSeriesOptions<TData>): ResolvedChartSeries[];
612
906
 
613
- declare function useChartTheme({ mode, theme, }?: UseChartThemeOptions): ChartTheme;
907
+ declare function useChartTheme({ mode, theme }?: UseChartThemeOptions): ChartTheme;
908
+
909
+ declare function useResolvedChartState<TData extends ChartDataPoint = ChartDataPoint>(data?: TData[], loading?: boolean, error?: Error | null): {
910
+ data: TData[];
911
+ loading: boolean;
912
+ error: Error | null;
913
+ };
614
914
 
615
915
  type RawChartDataPoint = Record<string, unknown>;
616
916
  type NormalizedChartDataPoint = Record<string, ChartPrimitive>;
@@ -685,20 +985,28 @@ interface LimitRealtimePointsOptions {
685
985
  declare function limitRealtimePoints<TData>(currentData: TData[] | undefined, nextData: TData | TData[], options?: LimitRealtimePointsOptions): TData[];
686
986
  declare function replaceRealtimePoints<TData>(nextData?: TData[], options?: Pick<LimitRealtimePointsOptions, "maxPoints">): TData[];
687
987
 
988
+ declare function formatChartLabel(key: string): string;
989
+
688
990
  declare const CHART_DEFAULT_HEIGHT = 320;
689
991
  declare const CHART_DEFAULT_MAX_REALTIME_POINTS = 100;
690
992
  declare const CHART_DEFAULT_POLLING_INTERVAL = 5000;
691
993
  declare const CHART_DEFAULT_ANIMATION_DURATION = 350;
692
- declare const CHART_DEFAULT_MARGIN: {
994
+ interface ChartMargin {
693
995
  top: number;
694
996
  right: number;
695
997
  bottom: number;
696
998
  left: number;
697
- };
999
+ }
1000
+ declare const CHART_DEFAULT_MARGIN: ChartMargin;
698
1001
  declare const CHART_DEFAULT_STROKE_WIDTH = 2;
699
- declare const CHART_DEFAULT_DOT_RADIUS = 3;
700
1002
  declare const CHART_DEFAULT_ACTIVE_DOT_RADIUS = 5;
701
1003
  declare const CHART_DEFAULT_BAR_RADIUS: [number, number, number, number];
1004
+ declare const CHART_DEFAULT_HORIZONTAL_BAR_RADIUS: [
1005
+ number,
1006
+ number,
1007
+ number,
1008
+ number
1009
+ ];
702
1010
  declare const CHART_STATUSES: {
703
1011
  readonly IDLE: "idle";
704
1012
  readonly LOADING: "loading";
@@ -721,188 +1029,124 @@ declare const CHART_VALUE_FORMATS: {
721
1029
  readonly BYTES: "bytes";
722
1030
  readonly DURATION: "duration";
723
1031
  };
724
- declare const CHART_EMPTY_MESSAGE = "No CHART data available";
725
- declare const CHART_ERROR_MESSAGE = "Unable to load CHART data";
726
- declare const CHART_LOADING_MESSAGE = "Loading CHART data...";
1032
+ declare const CHART_EMPTY_MESSAGE = "No chart data available";
1033
+ declare const CHART_ERROR_MESSAGE = "Unable to load chart data";
1034
+ declare const CHART_LOADING_MESSAGE = "Loading chart data...";
727
1035
 
1036
+ type ChartStatusColor = "primary" | "secondary" | "success" | "warning" | "danger" | "info" | "muted";
728
1037
  declare const CHART_COLOR_PALETTE: string[];
729
- declare const CHART_STATUS_COLORS: {
730
- primary: string;
731
- secondary: string;
732
- success: string;
733
- warning: string;
734
- danger: string;
735
- info: string;
736
- muted: string;
737
- };
738
- declare const CHART_DARK_THEME: {
739
- panel: {
740
- background: string;
741
- border: string;
742
- radius: string;
743
- shadow: string;
744
- };
745
- text: {
746
- title: string;
747
- description: string;
748
- muted: string;
749
- };
750
- chart: {
751
- grid: string;
752
- axis: string;
753
- cursor: string;
754
- };
755
- tooltip: {
756
- background: string;
757
- border: string;
758
- text: string;
759
- muted: string;
760
- };
761
- colors: string[];
762
- };
763
- declare const CHART_LIGHT_THEME: {
764
- panel: {
765
- background: string;
766
- border: string;
767
- radius: string;
768
- shadow: string;
769
- };
770
- text: {
771
- title: string;
772
- description: string;
773
- muted: string;
774
- };
775
- chart: {
776
- grid: string;
777
- axis: string;
778
- cursor: string;
779
- };
780
- tooltip: {
781
- background: string;
782
- border: string;
783
- text: string;
784
- muted: string;
785
- };
786
- colors: string[];
787
- };
788
- declare const DEFAULT_CHART_THEME: {
789
- panel: {
790
- background: string;
791
- border: string;
792
- radius: string;
793
- shadow: string;
794
- };
795
- text: {
796
- title: string;
797
- description: string;
798
- muted: string;
799
- };
800
- chart: {
801
- grid: string;
802
- axis: string;
803
- cursor: string;
804
- };
805
- tooltip: {
806
- background: string;
807
- border: string;
808
- text: string;
809
- muted: string;
810
- };
811
- colors: string[];
812
- };
1038
+ declare const CHART_STATUS_COLORS: Record<ChartStatusColor, string>;
1039
+ declare const CHART_DARK_THEME: ChartTheme;
1040
+ declare const CHART_LIGHT_THEME: ChartTheme;
813
1041
 
814
1042
  interface ChipProps extends BaseComponentProps {
815
1043
  label?: string;
816
- variant?: Variant$1;
1044
+ variant?: Variant;
817
1045
  appearance?: Appearance;
818
- shape?: Shape$1;
819
- size?: Size$1;
1046
+ shape?: Shape;
1047
+ size?: Size;
820
1048
  }
821
1049
  declare const Chip: ({ label, variant, appearance, shape, size, className, ...rest }: ChipProps) => React$1.JSX.Element;
822
1050
 
823
- type SortConfig<T, K extends keyof T = keyof T> = {
824
- key: K;
825
- direction?: "asc" | "desc";
826
- transform?: (value: T[K]) => number | string;
827
- };
1051
+ interface DataViewPageSizeProps extends BaseComponentProps {
1052
+ pageSizeOptions?: (number | "All")[];
1053
+ shape?: Shape;
1054
+ }
1055
+ declare const DataViewPageSize: ({ pageSizeOptions, shape, className, ...rest }: DataViewPageSizeProps) => React$1.JSX.Element;
828
1056
 
829
- interface Props$5<T> {
830
- data: T[];
831
- children: ReactNode;
832
- defaultPageSize?: number;
833
- sortConfig?: Record<string, SortConfig<T>>;
1057
+ interface FilterOption {
1058
+ value: string;
1059
+ label: string;
1060
+ dotClass?: string;
834
1061
  }
835
- declare function DataViewProvider<T extends Record<string, any>>({ data, children, defaultPageSize, sortConfig, }: Props$5<T>): React$1.JSX.Element;
1062
+ interface DataViewFilterGroupProps<T = any> {
1063
+ filterKey: keyof T;
1064
+ options: FilterOption[];
1065
+ title?: string;
1066
+ className?: string;
1067
+ }
1068
+ declare const DataViewFilterGroup: <T extends Record<string, any>>({ filterKey, options, title, className, }: DataViewFilterGroupProps<T>) => React$1.JSX.Element;
836
1069
 
837
- type DataViewHeaderProps = {
838
- children: ReactNode;
839
- };
840
- declare function DataViewHeader({ children }: DataViewHeaderProps): React$1.JSX.Element;
1070
+ interface SortOption$1 {
1071
+ value: string;
1072
+ label: string;
1073
+ }
1074
+ interface DataViewSortProps extends BaseComponentProps<HTMLSelectElement>, Omit<SelectHTMLAttributes<HTMLSelectElement>, keyof BaseComponentProps<HTMLSelectElement> | "children"> {
1075
+ options: SortOption$1[];
1076
+ shape?: Shape;
1077
+ }
1078
+ declare const DataViewSort: ({ options, shape, className, onChange, ...rest }: DataViewSortProps) => React$1.JSX.Element;
841
1079
 
842
- type DataViewSidebarProps = {
843
- children: ReactNode;
844
- };
845
- declare function DataViewSidebar({ children }: DataViewSidebarProps): React$1.JSX.Element;
1080
+ interface DataViewSearchProps extends BaseComponentProps<HTMLInputElement>, Omit<InputHTMLAttributes<HTMLInputElement>, keyof BaseComponentProps<HTMLInputElement> | "children"> {
1081
+ shape?: Shape;
1082
+ }
1083
+ declare const DataViewSearch: ({ placeholder, shape, className, onChange, ...rest }: DataViewSearchProps) => React$1.JSX.Element;
846
1084
 
847
- type DataViewContentProps<T = any> = {
848
- children: ReactNode | ((data: T[]) => ReactNode);
849
- };
850
- declare function DataViewContent<T = any>({ children, }: DataViewContentProps<T>): JSX.Element;
1085
+ interface DataViewPaginationProps extends BaseComponentProps {
1086
+ shape?: Shape;
1087
+ }
1088
+ declare const DataViewPagination: ({ shape, className, ...rest }: DataViewPaginationProps) => React$1.JSX.Element | null;
851
1089
 
852
- type DataViewFooterProps = {
1090
+ interface DataViewFooterProps extends BaseComponentProps {
853
1091
  children: ReactNode;
854
- };
855
- declare function DataViewFooter({ children }: DataViewFooterProps): React$1.JSX.Element;
856
-
857
- type DataViewSearchProps = {
858
- placeholder?: string;
859
- shape?: Shape$1;
860
- };
861
- declare function DataViewSearch({ placeholder, shape, }: DataViewSearchProps): React$1.JSX.Element;
1092
+ }
1093
+ declare const DataViewFooter: ({ children, className, ...rest }: DataViewFooterProps) => React$1.JSX.Element;
862
1094
 
863
- type SortOption$1 = {
864
- value: string;
865
- label: string;
866
- };
867
- type DataViewSortProps = {
868
- options: SortOption$1[];
869
- shape?: Shape$1;
870
- };
871
- declare function DataViewSort({ options, shape }: DataViewSortProps): React$1.JSX.Element;
1095
+ interface DataViewContentProps<T = any> {
1096
+ children: ReactNode | ((data: T[]) => ReactNode);
1097
+ }
1098
+ declare const DataViewContent: <T = any>({ children, }: DataViewContentProps<T>) => JSX.Element;
872
1099
 
873
- type FilterOption = {
874
- value: string;
875
- label: string;
876
- dotClass?: string;
877
- };
878
- type DataViewFilterGroupProps<T = any> = {
879
- filterKey: keyof T;
880
- options: FilterOption[];
881
- title?: string;
882
- };
883
- declare function DataViewFilterGroup<T extends Record<string, any>>({ filterKey, options, title, }: DataViewFilterGroupProps<T>): React$1.JSX.Element;
1100
+ interface DataViewSidebarProps extends BaseComponentProps<HTMLElement> {
1101
+ children: ReactNode;
1102
+ }
1103
+ declare const DataViewSidebar: ({ children, className, ...rest }: DataViewSidebarProps) => React$1.JSX.Element;
884
1104
 
885
- type Props$4 = {
886
- pageSizeOptions?: (number | "All")[];
887
- shape?: Shape$1;
888
- };
889
- declare function DataViewPageSize({ pageSizeOptions, shape, }: Props$4): React$1.JSX.Element;
1105
+ interface DataViewHeaderProps extends BaseComponentProps {
1106
+ children: ReactNode;
1107
+ }
1108
+ declare const DataViewHeader: ({ children, className, ...rest }: DataViewHeaderProps) => React$1.JSX.Element;
890
1109
 
891
- type Props$3 = {
892
- shape?: Shape$1;
1110
+ type SortDirection = "asc" | "desc";
1111
+ type SortConfig<T, K extends keyof T = keyof T> = {
1112
+ key: K;
1113
+ direction?: "asc" | "desc";
1114
+ transform?: (value: T[K]) => number | string;
893
1115
  };
894
- declare function DataViewPagination({ shape }: Props$3): React$1.JSX.Element | null;
895
-
896
- declare const DataView: typeof DataViewProvider & {
897
- Header: typeof DataViewHeader;
898
- Sidebar: typeof DataViewSidebar;
899
- Content: typeof DataViewContent;
900
- Footer: typeof DataViewFooter;
901
- Pagination: typeof DataViewPagination;
902
- Search: typeof DataViewSearch;
903
- Sort: typeof DataViewSort;
904
- FilterGroup: typeof DataViewFilterGroup;
905
- PageSize: typeof DataViewPageSize;
1116
+ interface DataViewContextType<T = any> {
1117
+ rawData: T[];
1118
+ data: T[];
1119
+ search: string;
1120
+ setSearch: (v: string) => void;
1121
+ filters: Record<string, any>;
1122
+ setFilters: Dispatch<SetStateAction<Record<string, any>>>;
1123
+ sort: string;
1124
+ setSort: (v: string) => void;
1125
+ page: number;
1126
+ setPage: (v: number) => void;
1127
+ pageSize: number | "All";
1128
+ setPageSize: (v: number | "All") => void;
1129
+ totalPages: number;
1130
+ }
1131
+
1132
+ interface DataViewProviderProps<T> {
1133
+ data: T[];
1134
+ children: ReactNode;
1135
+ defaultPageSize?: number;
1136
+ sortConfig?: Record<string, SortConfig<T>>;
1137
+ }
1138
+ declare const DataViewProvider: <T extends Record<string, any>>({ data, children, defaultPageSize, sortConfig, }: DataViewProviderProps<T>) => React$1.JSX.Element;
1139
+
1140
+ declare const DataView: (<T extends Record<string, any>>({ data, children, defaultPageSize, sortConfig, }: DataViewProviderProps<T>) => React$1.JSX.Element) & {
1141
+ Header: ({ children, className, ...rest }: DataViewHeaderProps) => React$1.JSX.Element;
1142
+ Sidebar: ({ children, className, ...rest }: DataViewSidebarProps) => React$1.JSX.Element;
1143
+ Content: <T = any>({ children, }: DataViewContentProps<T>) => React$1.JSX.Element;
1144
+ Footer: ({ children, className, ...rest }: DataViewFooterProps) => React$1.JSX.Element;
1145
+ Pagination: ({ shape, className, ...rest }: DataViewPaginationProps) => React$1.JSX.Element | null;
1146
+ Search: ({ placeholder, shape, className, onChange, ...rest }: DataViewSearchProps) => React$1.JSX.Element;
1147
+ Sort: ({ options, shape, className, onChange, ...rest }: DataViewSortProps) => React$1.JSX.Element;
1148
+ FilterGroup: <T extends Record<string, any>>({ filterKey, options, title, className, }: DataViewFilterGroupProps<T>) => React$1.JSX.Element;
1149
+ PageSize: ({ pageSizeOptions, shape, className, ...rest }: DataViewPageSizeProps) => React$1.JSX.Element;
906
1150
  };
907
1151
 
908
1152
  interface FlagProps extends BaseComponentProps {
@@ -1011,19 +1255,19 @@ interface CloudinaryImageProps extends BaseComponentProps<HTMLImageElement> {
1011
1255
  fallbackSrc?: string;
1012
1256
  loading?: "lazy" | "eager";
1013
1257
  }
1014
- declare function CloudinaryImage({ publicId, cloudName, secure, alt, fallbackSrc, loading, className, ...rest }: CloudinaryImageProps): React$1.JSX.Element;
1258
+ declare const CloudinaryImage: ({ publicId, cloudName, secure, alt, fallbackSrc, loading, className, ...rest }: CloudinaryImageProps) => React$1.JSX.Element;
1015
1259
 
1016
- interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
1260
+ interface ImageProps extends BaseComponentProps<HTMLImageElement>, Omit<ImgHTMLAttributes<HTMLImageElement>, keyof BaseComponentProps<HTMLImageElement> | "children"> {
1017
1261
  }
1018
1262
  declare const Image: ({ alt, src, height, width, className, style, ...rest }: ImageProps) => React$1.JSX.Element;
1019
1263
 
1020
1264
  interface InfoProps extends BaseComponentProps {
1021
- variant?: Variant$1;
1265
+ variant?: Variant;
1022
1266
  appearance?: Appearance;
1023
- shape?: Shape$1;
1267
+ shape?: Shape;
1024
1268
  children?: ReactNode;
1025
1269
  }
1026
- declare function Info({ children, variant, appearance, shape, className, ...rest }: InfoProps): React$1.JSX.Element;
1270
+ declare const Info: ({ children, variant, appearance, shape, className, ...rest }: InfoProps) => React$1.JSX.Element;
1027
1271
 
1028
1272
  interface ListItemData {
1029
1273
  content: React__default.ReactNode;
@@ -1042,18 +1286,17 @@ interface ListProps extends BaseComponentProps {
1042
1286
  wrap?: boolean;
1043
1287
  bulletType?: ListBulletType;
1044
1288
  }
1045
- declare function List({ title, items, direction, gap, columns, align, wrap, bulletType, className, ...rest }: ListProps): React__default.JSX.Element;
1289
+ declare const List: ({ title, items, direction, gap, columns, align, wrap, bulletType, className, ...rest }: ListProps) => React__default.JSX.Element;
1046
1290
 
1047
- interface ListItemProps {
1291
+ interface ListItemProps extends Omit<BaseComponentProps, "content"> {
1048
1292
  content: React__default.ReactNode;
1049
1293
  index?: number;
1050
1294
  TypographyComponent?: React__default.ReactNode;
1051
1295
  bulletType?: ListBulletType;
1052
1296
  renderBullet?: (index?: number) => React__default.ReactNode;
1053
1297
  align?: ListAlign;
1054
- className?: string;
1055
1298
  }
1056
- declare const ListItem: ({ content, TypographyComponent, bulletType, renderBullet, index, align, className, }: ListItemProps) => React__default.JSX.Element;
1299
+ declare const ListItem: ({ content, TypographyComponent, bulletType, renderBullet, index, align, className, ...rest }: ListItemProps) => React__default.JSX.Element;
1057
1300
 
1058
1301
  type ListRootElement = "div" | "ul" | "ol";
1059
1302
  type ListItemElementType = "div" | "li";
@@ -1070,25 +1313,25 @@ interface PriceTagProps extends BaseComponentProps {
1070
1313
  price: number;
1071
1314
  discount?: number;
1072
1315
  code?: CurrencyCode;
1073
- variant?: Variant$1;
1316
+ variant?: Variant;
1074
1317
  appearance?: Appearance;
1075
- shape?: Shape$1;
1076
- size?: Size$1;
1318
+ shape?: Shape;
1319
+ size?: Size;
1077
1320
  decimals?: number;
1078
1321
  showCurrencyCode?: boolean;
1079
1322
  currencyAsSubscript?: boolean;
1080
1323
  showFreeLabel?: boolean;
1081
1324
  }
1082
- declare function PriceTag({ price, discount, code, variant, appearance, shape, size, decimals, showCurrencyCode, currencyAsSubscript, showFreeLabel, className, ...rest }: PriceTagProps): React$1.JSX.Element;
1325
+ declare const PriceTag: ({ price, discount, code, variant, appearance, shape, size, decimals, showCurrencyCode, currencyAsSubscript, showFreeLabel, className, ...rest }: PriceTagProps) => React$1.JSX.Element;
1083
1326
 
1084
1327
  interface ProgressBarProps extends BaseComponentProps {
1085
1328
  value: number;
1086
1329
  max?: number;
1087
1330
  min?: number;
1088
- variant?: Variant$1;
1331
+ variant?: Variant;
1089
1332
  appearance?: Appearance;
1090
- size?: Size$1;
1091
- shape?: Shape$1;
1333
+ size?: Size;
1334
+ shape?: Shape;
1092
1335
  striped?: boolean;
1093
1336
  animated?: boolean;
1094
1337
  showLabel?: boolean;
@@ -1100,39 +1343,39 @@ interface ProgressBarProps extends BaseComponentProps {
1100
1343
  trackClassName?: string;
1101
1344
  barClassName?: string;
1102
1345
  }
1103
- declare function ProgressBar({ value, min, max, variant, appearance, size, shape, striped, animated, showLabel, label, labelPlacement, showPercentage, startContent, endContent, trackClassName, barClassName, className, ...rest }: ProgressBarProps): React$1.JSX.Element;
1346
+ declare const ProgressBar: ({ value, min, max, variant, appearance, size, shape, striped, animated, showLabel, label, labelPlacement, showPercentage, startContent, endContent, trackClassName, barClassName, className, ...rest }: ProgressBarProps) => React$1.JSX.Element;
1104
1347
 
1105
1348
  interface NumericRatingProps extends BaseComponentProps {
1106
1349
  rating: number;
1107
1350
  totalReviews?: number;
1108
- size?: Size$1;
1351
+ size?: Size;
1109
1352
  showStars?: boolean;
1110
1353
  showReviewCount?: boolean;
1111
1354
  reviewLabel?: string;
1112
1355
  }
1113
- declare function NumericRating({ rating, totalReviews, size, showStars, showReviewCount, reviewLabel, className, ...rest }: NumericRatingProps): React$1.JSX.Element;
1356
+ declare const NumericRating: ({ rating, totalReviews, size, showStars, showReviewCount, reviewLabel, className, ...rest }: NumericRatingProps) => React$1.JSX.Element;
1114
1357
 
1115
1358
  interface ProgressBarRatingProps extends BaseComponentProps {
1116
1359
  star: number;
1117
1360
  percentage: number;
1118
- variant?: Variant$1;
1361
+ variant?: Variant;
1119
1362
  appearance?: Appearance;
1120
- shape?: Shape$1;
1121
- size?: Size$1;
1363
+ shape?: Shape;
1364
+ size?: Size;
1122
1365
  animated?: boolean;
1123
1366
  striped?: boolean;
1124
1367
  }
1125
- declare function ProgressBarRating({ star, percentage, variant, appearance, shape, size, animated, striped, className, ...rest }: ProgressBarRatingProps): React$1.JSX.Element;
1368
+ declare const ProgressBarRating: ({ star, percentage, variant, appearance, shape, size, animated, striped, className, ...rest }: ProgressBarRatingProps) => React$1.JSX.Element;
1126
1369
 
1127
1370
  interface StarRatingProps extends BaseComponentProps {
1128
1371
  rating: number;
1129
1372
  max?: number;
1130
- size?: Size$1;
1373
+ size?: Size;
1131
1374
  showValue?: boolean;
1132
1375
  valuePosition?: "start" | "end";
1133
1376
  iconClassName?: string;
1134
1377
  }
1135
- declare function StarRating({ rating, max, size, showValue, valuePosition, iconClassName, className, ...rest }: StarRatingProps): React$1.JSX.Element;
1378
+ declare const StarRating: ({ rating, max, size, showValue, valuePosition, iconClassName, className, ...rest }: StarRatingProps) => React$1.JSX.Element;
1136
1379
 
1137
1380
  interface SpinnerProps extends BaseComponentProps {
1138
1381
  /**
@@ -1142,11 +1385,11 @@ interface SpinnerProps extends BaseComponentProps {
1142
1385
  /**
1143
1386
  * Spinner color variant.
1144
1387
  */
1145
- variant?: Variant$1;
1388
+ variant?: Variant;
1146
1389
  /**
1147
1390
  * Spinner size.
1148
1391
  */
1149
- size?: Size$1;
1392
+ size?: Size;
1150
1393
  /**
1151
1394
  * Optional loading label.
1152
1395
  */
@@ -1189,7 +1432,7 @@ interface SpinnerProps extends BaseComponentProps {
1189
1432
  ariaLabel?: string;
1190
1433
  }
1191
1434
 
1192
- declare function Spinner({ type, variant, size, label, showLabel, centered, fullscreen, overlay, backdrop, direction, className, spinnerClassName, labelClassName, ariaLabel, ...rest }: SpinnerProps): React$1.JSX.Element;
1435
+ declare const Spinner: ({ type, variant, size, label, showLabel, centered, fullscreen, overlay, backdrop, direction, className, spinnerClassName, labelClassName, ariaLabel, ...rest }: SpinnerProps) => React$1.JSX.Element;
1193
1436
 
1194
1437
  interface TableColumnConfig<T> {
1195
1438
  key: keyof T | string;
@@ -1197,13 +1440,13 @@ interface TableColumnConfig<T> {
1197
1440
  sortable?: boolean;
1198
1441
  render?: (value: any, row: T) => ReactNode;
1199
1442
  }
1200
- interface TableProps<T> {
1443
+ interface TableProps<T> extends BaseComponentProps {
1201
1444
  title?: string;
1202
1445
  columns: TableColumnConfig<T>[];
1203
1446
  data: T[];
1204
- shape?: Shape$1;
1447
+ shape?: Shape;
1205
1448
  }
1206
- declare function Table<T extends Record<string, any>>({ title, columns, data, shape, }: TableProps<T>): React$1.JSX.Element;
1449
+ declare const Table: <T extends Record<string, any>>({ title, columns, data, shape, className, ...rest }: TableProps<T>) => React$1.JSX.Element;
1207
1450
 
1208
1451
  declare function TableFrame({ className, ...props }: HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
1209
1452
  declare function TableElement({ className, ...props }: TableHTMLAttributes<HTMLTableElement>): React$1.JSX.Element;
@@ -1216,7 +1459,7 @@ declare function TableCell({ className, ...props }: TdHTMLAttributes<HTMLTableCe
1216
1459
  interface TagProps extends BaseComponentProps {
1217
1460
  text: string;
1218
1461
  }
1219
- declare function Tag({ text, className, ...rest }: TagProps): React$1.JSX.Element;
1462
+ declare const Tag: ({ text, className, ...rest }: TagProps) => React$1.JSX.Element;
1220
1463
 
1221
1464
  interface TooltipProps extends BaseComponentProps {
1222
1465
  children: ReactNode;
@@ -1224,12 +1467,12 @@ interface TooltipProps extends BaseComponentProps {
1224
1467
  offsetX?: number;
1225
1468
  offsetY?: number;
1226
1469
  }
1227
- declare function Tooltip({ children, show, offsetX, offsetY, className, ...rest }: TooltipProps): React$1.JSX.Element | null;
1470
+ declare const Tooltip: ({ children, show, offsetX, offsetY, className, style, ...rest }: TooltipProps) => React$1.JSX.Element | null;
1228
1471
 
1229
1472
  interface TypographyProps extends BaseComponentProps {
1230
1473
  children?: ReactNode;
1231
1474
  level?: 1 | 2 | 3;
1232
- variant?: Variant$1;
1475
+ variant?: Variant;
1233
1476
  decoration?: TextDecoration;
1234
1477
  bold?: boolean;
1235
1478
  italic?: boolean;
@@ -1283,16 +1526,17 @@ interface Tier {
1283
1526
  color: string;
1284
1527
  };
1285
1528
  }
1286
- interface ValueBadgeProps {
1529
+ interface ValueBadgeProps extends BaseComponentProps {
1287
1530
  value: number;
1288
1531
  tiers?: Tier[];
1289
1532
  lowerBound?: number;
1290
1533
  upperBound?: number;
1291
1534
  formatValue?: (value: number) => string | number;
1292
- className?: string;
1293
1535
  noBackground?: boolean;
1294
1536
  }
1295
- declare const ValueBadge: ({ value, tiers, lowerBound, upperBound, formatValue, className, noBackground, }: ValueBadgeProps) => React$1.JSX.Element;
1537
+ declare const defaultTiers: Tier[];
1538
+ declare const defaultFormatValue: (v: number) => string;
1539
+ declare const ValueBadge: ({ value, tiers, lowerBound, upperBound, formatValue, className, noBackground, ...rest }: ValueBadgeProps) => React$1.JSX.Element;
1296
1540
 
1297
1541
  interface CloudinaryVideoProps extends BaseComponentProps<HTMLVideoElement> {
1298
1542
  publicId?: string;
@@ -1306,7 +1550,7 @@ interface CloudinaryVideoProps extends BaseComponentProps<HTMLVideoElement> {
1306
1550
  poster?: string;
1307
1551
  preload?: "none" | "metadata" | "auto";
1308
1552
  }
1309
- declare function CloudinaryVideo({ publicId, cloudName, secure, controls, autoPlay, muted, loop, playsInline, poster, preload, className, ...rest }: CloudinaryVideoProps): React$1.JSX.Element;
1553
+ declare const CloudinaryVideo: ({ publicId, cloudName, secure, controls, autoPlay, muted, loop, playsInline, poster, preload, className, ...rest }: CloudinaryVideoProps) => React$1.JSX.Element;
1310
1554
 
1311
1555
  interface YoutubeVideoProps extends BaseComponentProps<HTMLIFrameElement> {
1312
1556
  videoUrl: string;
@@ -1318,7 +1562,7 @@ interface YoutubeVideoProps extends BaseComponentProps<HTMLIFrameElement> {
1318
1562
  loop?: boolean;
1319
1563
  privacyMode?: boolean;
1320
1564
  }
1321
- declare function YoutubeVideo({ videoUrl, width, height, autoPlay, muted, controls, className, ...rest }: YoutubeVideoProps): React$1.JSX.Element;
1565
+ declare const YoutubeVideo: ({ videoUrl, width, height, autoPlay, muted, controls, loop, privacyMode, className, ...rest }: YoutubeVideoProps) => React$1.JSX.Element;
1322
1566
 
1323
1567
  interface WorldMapPoint {
1324
1568
  code: string;
@@ -1334,7 +1578,7 @@ interface WorldMapProps extends BaseComponentProps {
1334
1578
  disableCountryHover?: boolean;
1335
1579
  disableCountrySelect?: boolean;
1336
1580
  }
1337
- declare function WorldMap({ data, title, bubbleColor, bubbleStroke, bubbleScale, minBubble, disableCountryHover, disableCountrySelect, className, ...rest }: WorldMapProps): React__default.JSX.Element;
1581
+ declare const WorldMap: ({ data, title, bubbleColor, bubbleStroke, bubbleScale, minBubble, disableCountryHover, disableCountrySelect, className, ...rest }: WorldMapProps) => React$1.JSX.Element;
1338
1582
 
1339
1583
  interface ButtonProps extends BaseComponentProps<HTMLButtonElement> {
1340
1584
  type?: "button" | "submit" | "reset";
@@ -1344,10 +1588,10 @@ interface ButtonProps extends BaseComponentProps<HTMLButtonElement> {
1344
1588
  loading?: boolean;
1345
1589
  disabled?: boolean;
1346
1590
  block?: boolean;
1347
- variant?: Variant$1;
1591
+ variant?: Variant;
1348
1592
  appearance?: Appearance;
1349
- shape?: Shape$1;
1350
- size?: Size$1;
1593
+ shape?: Shape;
1594
+ size?: Size;
1351
1595
  }
1352
1596
  declare function Button({ type, icon, text, children, loading, disabled, block, variant, appearance, shape, size, className, onMouseMove, ...rest }: ButtonProps): React$1.JSX.Element;
1353
1597
 
@@ -1357,8 +1601,8 @@ interface CheckboxOption {
1357
1601
  }
1358
1602
  interface BaseCheckboxProps extends BaseComponentProps {
1359
1603
  placeholder?: string;
1360
- variant?: Variant$1;
1361
- shape?: Shape$1;
1604
+ variant?: Variant;
1605
+ shape?: Shape;
1362
1606
  }
1363
1607
  interface SingleCheckboxProps extends BaseCheckboxProps {
1364
1608
  options?: never;
@@ -1369,75 +1613,11 @@ interface MultiCheckboxProps extends BaseCheckboxProps {
1369
1613
  type CheckboxProps = (SingleCheckboxProps & FieldHookConfig<boolean>) | (MultiCheckboxProps & FieldHookConfig<string[]>);
1370
1614
  declare function Checkbox({ placeholder, variant, shape, className, ...props }: CheckboxProps): React$1.JSX.Element;
1371
1615
 
1372
- declare enum Variant {
1373
- default = "default",
1374
- primary = "primary",
1375
- secondary = "secondary",
1376
- success = "success",
1377
- danger = "danger",
1378
- warning = "warning",
1379
- info = "info",
1380
- light = "light",
1381
- dark = "dark"
1382
- }
1383
- declare enum TextVariant {
1384
- default = "default",
1385
- primary = "primary",
1386
- secondary = "secondary",
1387
- success = "success",
1388
- danger = "danger",
1389
- warning = "warning",
1390
- info = "info",
1391
- light = "light",
1392
- dark = "dark"
1393
- }
1394
- declare enum Shape {
1395
- circle = "circle",
1396
- roundedSquare = "roundedSquare",
1397
- softRoundedSquare = "softRoundedSquare",
1398
- square = "square"
1399
- }
1400
- declare enum Size {
1401
- xs = "xs",
1402
- sm = "sm",
1403
- md = "md",
1404
- lg = "lg",
1405
- xl = "xl"
1406
- }
1407
- declare enum Decoration {
1408
- underline = "underline",
1409
- overline = "overline",
1410
- lineThrough = "lineThrough",
1411
- noUnderline = "noUnderline"
1412
- }
1413
- declare enum Target {
1414
- blank = "blank",
1415
- self = "self",
1416
- parent = "parent",
1417
- top = "top"
1418
- }
1419
- declare enum ToastPosition {
1420
- topLeft = "top-left",
1421
- topCenter = "top-center",
1422
- topRight = "top-right",
1423
- bottomLeft = "bottom-left",
1424
- bottomCenter = "bottom-center",
1425
- bottomRight = "bottom-right"
1426
- }
1427
- declare enum ToastStatus {
1428
- default = "default",
1429
- success = "success",
1430
- warning = "warning",
1431
- error = "error",
1432
- danger = "danger",
1433
- info = "info"
1434
- }
1435
-
1436
1616
  type DateSelectorProps = FieldHookConfig<string> & {
1437
1617
  name: string;
1438
1618
  placeholder: string;
1439
1619
  styles?: string;
1440
- shape?: keyof typeof Shape;
1620
+ shape?: keyof typeof Shape$1;
1441
1621
  };
1442
1622
  declare const DateSelector: ({ placeholder, styles, shape, ...props }: DateSelectorProps) => React__default.JSX.Element;
1443
1623
 
@@ -1458,9 +1638,9 @@ declare const Form: ({ initialValues, validationSchema, enableReinitialize, chil
1458
1638
 
1459
1639
  interface FormResponseProps {
1460
1640
  text: string | undefined;
1461
- variant?: keyof typeof Variant;
1462
- shape?: keyof typeof Shape;
1463
- size?: keyof typeof Size;
1641
+ variant?: keyof typeof Variant$1;
1642
+ shape?: keyof typeof Shape$1;
1643
+ size?: keyof typeof Size$1;
1464
1644
  styles?: string;
1465
1645
  }
1466
1646
  declare function FormResponse({ text, variant, shape, size, styles, }: FormResponseProps): React__default.JSX.Element;
@@ -1482,7 +1662,7 @@ type InputProps = FieldHookConfig<string> & {
1482
1662
  placeholder: string;
1483
1663
  styles?: string;
1484
1664
  step?: string;
1485
- shape?: keyof typeof Shape;
1665
+ shape?: keyof typeof Shape$1;
1486
1666
  };
1487
1667
  declare const Input: ({ type, placeholder, styles, step, shape, ...props }: InputProps) => React__default.JSX.Element;
1488
1668
 
@@ -1500,7 +1680,7 @@ interface FormDataEntryLabelProps {
1500
1680
  }
1501
1681
  declare function InputLabel({ text, children, styles }: FormDataEntryLabelProps): React__default.JSX.Element;
1502
1682
 
1503
- type ShapeInput$1 = Shape | "circle" | "roundedSquare" | "softRoundedSquare" | "square";
1683
+ type ShapeInput$1 = Shape$1 | "circle" | "roundedSquare" | "softRoundedSquare" | "square";
1504
1684
  interface InputListProps {
1505
1685
  name: string;
1506
1686
  placeholder?: string;
@@ -1508,7 +1688,7 @@ interface InputListProps {
1508
1688
  }
1509
1689
  declare const InputList: ({ name, placeholder, shape }: InputListProps) => React__default.JSX.Element;
1510
1690
 
1511
- type ShapeInput = Shape | "circle" | "roundedSquare" | "softRoundedSquare" | "square";
1691
+ type ShapeInput = Shape$1 | "circle" | "roundedSquare" | "softRoundedSquare" | "square";
1512
1692
  interface InputListGroupProps {
1513
1693
  name: string;
1514
1694
  placeholder?: string;
@@ -1548,7 +1728,7 @@ type SelectProps = FieldHookConfig<string> & {
1548
1728
  placeholder: string;
1549
1729
  options: any[];
1550
1730
  styles?: string;
1551
- shape?: keyof typeof Shape;
1731
+ shape?: keyof typeof Shape$1;
1552
1732
  };
1553
1733
  declare function Select({ placeholder, options, styles, shape, ...props }: SelectProps): React__default.JSX.Element;
1554
1734
 
@@ -1572,14 +1752,14 @@ type TextAreaProps = FieldHookConfig<string> & {
1572
1752
  placeholder: string;
1573
1753
  limit?: number;
1574
1754
  styles?: string;
1575
- shape?: keyof typeof Shape;
1755
+ shape?: keyof typeof Shape$1;
1576
1756
  };
1577
1757
  declare function TextArea({ placeholder, limit, styles, shape, ...props }: TextAreaProps): React__default.JSX.Element;
1578
1758
 
1579
1759
  interface EUIComponentDefaults {
1580
- variant?: keyof typeof Variant;
1581
- size?: keyof typeof Size;
1582
- shape?: keyof typeof Shape;
1760
+ variant?: keyof typeof Variant$1;
1761
+ size?: keyof typeof Size$1;
1762
+ shape?: keyof typeof Shape$1;
1583
1763
  styles?: string;
1584
1764
  }
1585
1765
  interface EUIRoute {
@@ -1643,7 +1823,7 @@ interface ToastProps extends BaseComponentProps {
1643
1823
  newestOnTop?: boolean;
1644
1824
  closeOnClick?: boolean;
1645
1825
  pauseOnHover?: boolean;
1646
- shape?: Shape;
1826
+ shape?: Shape$1;
1647
1827
  }
1648
1828
 
1649
1829
  declare const Toast: ({ position, autoClose, maxToasts, hideProgressBar, newestOnTop, closeOnClick, pauseOnHover, shape, className, ...rest }: ToastProps) => React__default.JSX.Element | null;
@@ -2090,7 +2270,7 @@ interface ModalProps {
2090
2270
  isError?: boolean;
2091
2271
  error?: unknown;
2092
2272
  styles?: string;
2093
- shape?: keyof typeof Shape;
2273
+ shape?: keyof typeof Shape$1;
2094
2274
  }
2095
2275
  declare function Modal({ title, show, handleOnClose, children, isLoading, isSuccess, isError, error, styles, enableCloseOnClickOutside, shape, }: ModalProps): React__default.JSX.Element;
2096
2276
 
@@ -2117,11 +2297,11 @@ declare const hoverAnimations: {
2117
2297
  interface CardProps {
2118
2298
  children?: ReactNode;
2119
2299
  styles?: string;
2120
- bgVariant?: keyof typeof Variant;
2121
- borderVariant?: keyof typeof Variant;
2300
+ bgVariant?: keyof typeof Variant$1;
2301
+ borderVariant?: keyof typeof Variant$1;
2122
2302
  interactive?: boolean;
2123
2303
  ghost?: boolean;
2124
- shape?: keyof typeof Shape;
2304
+ shape?: keyof typeof Shape$1;
2125
2305
  hoverAnimation?: keyof typeof hoverAnimations;
2126
2306
  }
2127
2307
  declare function Card({ children, styles, bgVariant, borderVariant, interactive, ghost, shape, hoverAnimation, }: CardProps): React__default.JSX.Element;
@@ -2554,10 +2734,10 @@ interface StarRatingDistributionProps extends BaseComponentProps {
2554
2734
  numericRating?: boolean;
2555
2735
  progressBarsRating?: boolean;
2556
2736
  ratingDistribution?: RatingDistributionItem[];
2557
- variant?: Variant$1;
2737
+ variant?: Variant;
2558
2738
  appearance?: Appearance;
2559
- shape?: Shape$1;
2560
- size?: Size$1;
2739
+ shape?: Shape;
2740
+ size?: Size;
2561
2741
  animated?: boolean;
2562
2742
  striped?: boolean;
2563
2743
  showReviewCount?: boolean;
@@ -3956,10 +4136,10 @@ declare const isMatch: (itemPath?: string, currentPath?: string) => boolean;
3956
4136
 
3957
4137
  interface ResolveAppearanceStylesProps {
3958
4138
  appearance?: Appearance;
3959
- variant: Variant$1;
3960
- solid: Record<string, string>;
3961
- lite: Record<string, string>;
3962
- ghost: Record<string, string>;
4139
+ variant: Variant;
4140
+ solid: Record<Variant, string>;
4141
+ lite: Record<Variant, string>;
4142
+ ghost: Record<Variant, string>;
3963
4143
  }
3964
4144
  declare function resolveAppearanceStyles({ appearance, variant, solid, lite, ghost, }: ResolveAppearanceStylesProps): string;
3965
4145
 
@@ -4110,4 +4290,4 @@ type ConfigBootstrapProps = {
4110
4290
  };
4111
4291
  declare function ConfigBootstrap({ config, loadApp, ErrorComponent, LoadingComponent, loadingFallback, showStack, }: ConfigBootstrapProps): React$1.JSX.Element;
4112
4292
 
4113
- export { Accordion, type AnimationComponentProps, type AnimationVariant, type Appearance, AreaPlot, _default as AsyncComponentWrapper, Avatar, Backdrop, Badge, type BarChartProps, BarPlot, type BaseAnimationConfig, BaseChartDataSource, type BaseChartProps, type BaseComponentProps, type BaseMenuNode, type BaseOverlayConfig, type BaseTopNavNode, type BlobAnimationConfig, Block, BlockGroup, type BootstrapConfigLike, BoxNav, BoxNavItem, Brand, Breadcrumb, BreadcrumbItem, type BrowserRedirectURLOptions, Button, CHART_COLOR_PALETTE, CHART_DARK_THEME, CHART_DATA_MODES, CHART_DEFAULT_ACTIVE_DOT_RADIUS, CHART_DEFAULT_ANIMATION_DURATION, CHART_DEFAULT_BAR_RADIUS, CHART_DEFAULT_DOT_RADIUS, CHART_DEFAULT_HEIGHT, CHART_DEFAULT_MARGIN, CHART_DEFAULT_MAX_REALTIME_POINTS, CHART_DEFAULT_POLLING_INTERVAL, CHART_DEFAULT_STROKE_WIDTH, CHART_EMPTY_MESSAGE, CHART_ERROR_MESSAGE, CHART_LIGHT_THEME, CHART_LOADING_MESSAGE, CHART_STATUSES, CHART_STATUS_COLORS, CHART_VALUE_FORMATS, Caption, Card, CardContent, CardFooter, CardHeader, type CardinalPosition, Chapter, Chart, type ChartAction, type ChartBarConfig, type ChartChartType, type ChartColorName, ChartContainer, type ChartContainerProps, ChartContext, type ChartContextValue, type ChartDataHandler, type ChartDataMode, type ChartDataPoint, type ChartDataSource, ChartEmptyState, type ChartEmptyStateProps, type ChartErrorHandler, ChartErrorState, type ChartErrorStateProps, type ChartGaugeConfig, ChartHeader, type ChartHeaderProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartLoadingState, type ChartLoadingStateProps, ChartPanel, type ChartPanelConfig, type ChartPanelProps, type ChartPieConfig, type ChartPrimitive, type ChartProps, ChartProvider, type ChartProviderProps, type ChartRenderChartProps, type ChartSeries, type ChartSeriesColor, type ChartSeriesType, type ChartStatConfig, type ChartState, type ChartStatus, type ChartTheme, type ChartThemeChart, type ChartThemeMode, type ChartThemePanel, type ChartThemeText, type ChartThemeTooltip, ChartToolbar, type ChartToolbarProps, ChartTooltip, type ChartTooltipFormatterOptions, type ChartTooltipPayload, type ChartTooltipProps, type ChartUnsubscribe, type ChartValueFormat, Checkbox, Chip, type CloudinaryConfig, CloudinaryImage, CloudinaryProvider, type CloudinaryProviderProps, CloudinaryVideo, Code, CodeMirrorMarkdownEditor, type CodeMirrorMarkdownEditorProps, type CommentActionsProps, type CommentAuthor, type CommentComponents, type CommentComposerProps, type CommentContentProps, type CommentDataSource, type CommentEntity, type CommentHeaderProps, type CommentItemProps, type CommentListProps, type CommentMenuProps, type CommentPageResult, type CommentPermissions, type CommentQueryOptions, type CommentRepliesToggleProps, type CommentReplyCache, CommentThread, type CommentThreadConfig, type CommentThreadProps, ConfigBootstrap, type ConfigBootstrapProps, type ConfigSchema, type ConfigSchemaFailure, type ConfigSchemaResult, type ConfigSchemaSuccess, type ConfigTransform, type ConfigTransformContext, Configurator, ConfiguratorError, type ConfiguratorFailure, type ConfiguratorOptions, type ConfiguratorState, type ConfiguratorSuccess, Content, ContentArea, type CornerPosition, type CreateCommentInput, type CreateHeadingSlugOptions, type CreateReviewInput, type CreateReviewReplyInput, type CreateURLResolverOptions, type CurrencyCode, DEFAULT_CHART_THEME, DEFAULT_REVIEW_THREAD_CONFIG, DataView, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, type DocumentationPanelProps, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, EnvErrorScreen, type EnvErrorScreenProps, type ExtractHeadingsOptions, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, type FormatChartValueOptions, type GaugeChartProps, GaugePlot, type GenerateHeadingNumbersOptions, GenericLayout, type GetAllowedOriginsOptions, type GetReviewsOptions, GlowWrapper, type GradientAnimationConfig, Graph, type GraphData, GraphEdge, type GraphEdgeType, type GraphLayoutType, GraphNode, type GraphNodeType, type GraphProps, GraphRenderer, Grid, Header, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout, type HorizontalPosition, type HyperRefTarget, Image, ImageInput, InfiniteScrollTrigger, Info, Input, InputFile, InputLabel, InputList, InputListGroup, InputResponse, Label, Layout, type LayoutContext, type LayoutExecutor, Lead, type LimitRealtimePointsOptions, LinePlot, Link, List, type ListAlign, type ListBulletType, type ListDirection, ListItem, type ListItemData, ListItemElement, type ListItemElementProps, ListRoot, type ListRootProps, type MDXCodeMirrorPluginOptions, type MDXImagePluginOptions, type MDXLinkDialogPluginOptions, MDXMarkdownEditor, type MDXMarkdownEditorProps, MDXMarkdownField, type MDXMarkdownFieldProps, type MDXMarkdownFieldValidator, MarkdownBlockquote, type MarkdownBlockquoteRenderProps, MarkdownBreak, type MarkdownBreakProps, type MarkdownBreakRenderProps, MarkdownCodeBlock, type MarkdownCodeBlockMeta, type MarkdownCodeBlockProps, type MarkdownCodeBlockRenderProps, type MarkdownCodeLanguage, type MarkdownComponentOverrides, MarkdownContext, type MarkdownContextType, MarkdownDetails, type MarkdownDetailsProps, type MarkdownDetailsRenderProps, MarkdownDocsLayout, type MarkdownDocsLayoutProps, type MarkdownDocument, type MarkdownDocumentMeta, MarkdownEditor, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownElementProps, MarkdownEmphasis, type MarkdownEmphasisProps, type MarkdownEmphasisRenderProps, type MarkdownFeaturePluginConfig, MarkdownField, type MarkdownFieldProps, MarkdownFigcaption, type MarkdownFigcaptionProps, type MarkdownFigcaptionRenderProps, MarkdownFigure, type MarkdownFigureProps, type MarkdownFigureRenderProps, type MarkdownFrontmatter, type MarkdownHeading$1 as MarkdownHeading, MarkdownHeading as MarkdownHeadingComponent, type MarkdownHeadingLevel, type MarkdownHeadingProps, type MarkdownHeadingRenderProps, MarkdownImage, type MarkdownImageMeta, type MarkdownImageRenderProps, MarkdownInlineCode, type MarkdownInlineCodeRenderProps, MarkdownLayout, type MarkdownLayoutProps, type MarkdownLayoutTocPosition, MarkdownLink, type MarkdownLinkProps, type MarkdownLinkRenderProps, type MarkdownLinkTarget, MarkdownListItem, type MarkdownListItemProps, type MarkdownListItemRenderProps, type MarkdownListRenderProps, MarkdownOrderedList, type MarkdownOrderedListProps, MarkdownParagraph, type MarkdownParagraphProps, type MarkdownParagraphRenderProps, type MarkdownPluginConfig, type MarkdownPluginHandler, type MarkdownPluginInput, type MarkdownPluginList, MarkdownPreviewPane, type MarkdownPreviewPaneProps, MarkdownProvider, type MarkdownProviderProps, type MarkdownRehypePluginConfig, type MarkdownRemarkPluginConfig, MarkdownRenderer, type MarkdownRendererOptions, type MarkdownRendererProps, type MarkdownRendererState, MarkdownSourceEditor, type MarkdownSourceEditorProps, MarkdownSplitEditor, type MarkdownSplitEditorProps, MarkdownStrikethrough, type MarkdownStrikethroughProps, type MarkdownStrikethroughRenderProps, MarkdownStrong, type MarkdownStrongProps, type MarkdownStrongRenderProps, MarkdownSummary, type MarkdownSummaryProps, type MarkdownSummaryRenderProps, MarkdownTOC, MarkdownTOCItem, type MarkdownTOCItemProps, type MarkdownTOCOptions, type MarkdownTOCProps, MarkdownTable, MarkdownTableBody, MarkdownTableCell, type MarkdownTableCellRenderProps, MarkdownTableHead, MarkdownTableHeaderCell, type MarkdownTableHeaderCellRenderProps, type MarkdownTableRenderProps, MarkdownTableRow, type MarkdownTableRowProps, type MarkdownTableRowRenderProps, type MarkdownTableSectionProps, type MarkdownTableSectionRenderProps, MarkdownTaskCheckbox, type MarkdownTaskCheckboxProps, type MarkdownTaskCheckboxRenderProps, MarkdownThematicBreak, type MarkdownThematicBreakProps, type MarkdownThematicBreakRenderProps, type MarkdownTheme, MarkdownToolbar, type MarkdownToolbarAction, type MarkdownToolbarActionId, type MarkdownToolbarProps, MarkdownUnorderedList, type MarkdownUnorderedListProps, MarkdownViewer, type MarkdownViewerProps, type MaybePromise, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type MyReviewPanelProps, type NavItem, type NormalizeChartDataOptions, type NormalizeMarkdownOptions, type NormalizedChartDataPoint, type NormalizedToastStatus, type NumberedMarkdownHeading, NumericRating, type OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, PriceTag, ProgressBar, type ProgressBarProps, ProgressBarRating, Quote, Radio, type RawChartDataPoint, type RawReviewAuthorLike, type RawReviewLike, type RawReviewReplyLike, RealtimeChartDataSource, type RealtimeChartDataSourceConfig, type RealtimeChartDataSourceOptions, type ReplyComposerProps, type ResolveChartColorOptions, type ResolvedChartSeries, type ReviewActionsProps, type ReviewAuthor, type ReviewComposerProps, type ReviewContentProps, type ReviewDataSource, type ReviewEmptyStateProps, type ReviewEntity, type ReviewFormProps, type ReviewFormValues, type ReviewHeaderProps, type ReviewItemProps, type ReviewListProps, type ReviewMenuProps, type ReviewPageResult, type ReviewPermissions, type ReviewRatingProps, type ReviewRecommendationProps, type ReviewReplyComposerProps, type ReviewReplyContentProps, type ReviewReplyEntity, type ReviewReplyExternalDelete, type ReviewReplyExternalUpdate, type ReviewReplyHeaderProps, type ReviewReplyItemProps, type ReviewReplyListProps, type ReviewReplyMenuProps, type ReviewReplyPermissions, ReviewThread, type ReviewThreadComponents, type ReviewThreadConfig, type ReviewThreadProps, type RootAppModule, RouteTab, type RouteTabMode, RouteTabs, type SafeRedirectOptions, type SanitizeHeadingOptions, ScatterPlot, ScrollToTop, Section, Select, type SendToastOptions, type Shape$1 as Shape, ShapeSwitch, ShowMore, Sidebar, SidebarLayout, SidemenuLayout, type Size$1 as Size, Skeleton, Slider, Spinner, type SpinnerDirection, type SpinnerProps, type SpinnerType, StarRating, StarRatingDistribution, StarRatingInput, type StatChartProps, StatPlot, StaticChartDataSource, type StaticChartDataSourceConfig, type StaticChartDataSourceOptions, Switch, TNDropdown, TNDropdownItem, TNDropdownTitle, TNGroup, Table, TableBody, TableCell, TableElement, TableFrame, TableHead, TableHeaderCell, TableRow, Tag, Tags, TextArea, type TextDecoration, ThemeContext, ThemeProvider, ThemeSwitch, TitleBanner, type TitleBannerLevel, Toast, type ToastItemData, type ToastProps, type ToggleReactionResult, Tooltip, TopNav, type TopNavComponents, type TopNavGroupNode, type TopNavItemNode, type TopNavNode, type TopNavProps, type TopNavTitleNode, Transition, TransitionAccordion, TransitionBase, TransitionDropdown, TransitionFade, TransitionFadeIn, TransitionScale, TransitionSlide, Typography, type URLMap, type URLMapSource, type URLQueryParams, type URLQueryValue, UnderConstructionBanner, type UpdateCommentInput, type UpdateReviewInput, type UpdateReviewReplyInput, type UseActiveHeadingOptions, type UseActiveHeadingResult, type UseChartDataOptions, type UseChartDataReturn, type UseChartPollingOptions, type UseChartRealtimeOptions, type UseChartSeriesOptions, type UseChartThemeOptions, type UseMarkdownHeadingsOptions, type UseMarkdownHeadingsResult, type UseMarkdownOptions, ValueBadge, type Variant$1 as Variant, type VerticalPosition, WorldMap, WorldMapCountryTable, YoutubeVideo as YoutubeVideoPlayer, addReplyToCache, addReviewReply, appendReview, applyReactionState, assertAbsoluteURL, buildURL, canDeleteReview, canDeleteReviewReply, canEditReview, canEditReviewReply, canReplyToReview, canReportReview, canReportReviewReply, chartReducer, cn, createConfigurator, createForceLayout, createGridLayout, createHeadingSlug, createInitialChartState, createTreeLayout, createURLResolver, decrementReplyCount, enumValues, euiToast, extractHeadings, findReview, formatChartValue, formatCommentDate, formatConfigError, formatReviewDate, generateHeadingNumbers, getAllowedOrigins, getBrowserHref, getBrowserOrigin, getBrowserRedirectURL, getCurrencySymbol, getLayout, getOptimisticDislikeState, getOptimisticLikeState, getSafeRedirect, hasReviewReply, incrementReplyCount, isMatch, isRenderFn, limitRealtimePoints, normalize, normalizeChartData, normalizeChartDataPoint, normalizeMarkdown, normalizeReview, normalizeReviewAuthor, normalizeReviewReply, parseJson, parseJsonRecord, parseUrlMap, prependReview, registerLayout, removeComment, removeCommentTreeFromCache, removeReview, removeReviewReply, replaceRealtimePoints, replaceReview, replaceReviewReply, resolveAppearanceStyles, resolveChartColor, resolveChartColors, resolveWithGlobal, sanitizeHeading, sendToast, slugify, toConfiguratorError, updateComment, updateReplyCacheComment, updateReview, updateReviewReply, upsertReview, useActiveHeading, useChartContext, useChartData, useChartPolling, useChartRealtime, useChartSeries, useChartTheme, useClickOutside, useCloudinaryConfig, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useMarkdown, useMarkdownHeadings, useModal, useReviewThreadState, useTheme };
4293
+ export { Accordion, type AnalyticsConfig, AnalyticsContext, type AnalyticsContextValue, type AnalyticsEvent, type AnalyticsEventType, AnalyticsProvider, type AnalyticsProviderProps, type AnalyticsTransport, type AnimationComponentProps, type AnimationVariant, type Appearance, AreaPlot, _default as AsyncComponentWrapper, Avatar, type AvatarProps, Backdrop, Badge, type BadgeProps, type BarChartProps, BarPlot, type BaseAnimationConfig, BaseChartDataSource, type BaseChartProps, type BaseComponentProps, type BaseMenuNode, type BaseOverlayConfig, type BaseTopNavNode, type BlobAnimationConfig, Block, BlockGroup, type BootstrapConfigLike, BoxNav, BoxNavItem, Brand, type BrandProps, Breadcrumb, BreadcrumbItem, type BrowserRedirectURLOptions, Button, CHART_COLOR_PALETTE, CHART_DARK_THEME, CHART_DATA_MODES, CHART_DEFAULT_ACTIVE_DOT_RADIUS, CHART_DEFAULT_ANIMATION_DURATION, CHART_DEFAULT_BAR_RADIUS, CHART_DEFAULT_HEIGHT, CHART_DEFAULT_HORIZONTAL_BAR_RADIUS, CHART_DEFAULT_MARGIN, CHART_DEFAULT_MAX_REALTIME_POINTS, CHART_DEFAULT_POLLING_INTERVAL, CHART_DEFAULT_STROKE_WIDTH, CHART_EMPTY_MESSAGE, CHART_ERROR_MESSAGE, CHART_LIGHT_THEME, CHART_LOADING_MESSAGE, CHART_STATUSES, CHART_STATUS_COLORS, CHART_VALUE_FORMATS, Caption, Card, CardContent, CardFooter, CardHeader, type CardinalPosition, Chapter, Chart, type ChartBarConfig, type ChartChartType, type ChartColorName, ChartContainer, type ChartContainerProps, ChartContext, type ChartContextValue, type ChartDataHandler, type ChartDataMode, type ChartDataPoint, type ChartDataSource, ChartEmptyState, type ChartEmptyStateProps, type ChartErrorHandler, ChartErrorState, type ChartErrorStateProps, type ChartGaugeConfig, ChartHeader, type ChartHeaderProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartLoadingState, type ChartLoadingStateProps, ChartPanel, type ChartPanelConfig, type ChartPanelProps, type ChartPieConfig, ChartPlotFrame, type ChartPlotFrameProps, type ChartPrimitive, type ChartProps, ChartProvider, type ChartProviderProps, type ChartSeries, type ChartSeriesColor, type ChartSeriesType, type ChartStatConfig, type ChartState, type ChartStatus, type ChartTheme, type ChartThemeChart, type ChartThemeMode, type ChartThemeOverride, type ChartThemePanel, type ChartThemeText, type ChartThemeTooltip, ChartToolbar, type ChartToolbarProps, ChartTooltip, type ChartTooltipFormatterOptions, type ChartTooltipPayload, type ChartTooltipProps, type ChartUnsubscribe, type ChartValueFormat, Checkbox, Chip, type ChipProps, type CloudinaryConfig, CloudinaryImage, type CloudinaryImageProps, CloudinaryProvider, type CloudinaryProviderProps, CloudinaryVideo, type CloudinaryVideoProps, Code, CodeMirrorMarkdownEditor, type CodeMirrorMarkdownEditorProps, type CommentActionsProps, type CommentAuthor, type CommentComponents, type CommentComposerProps, type CommentContentProps, type CommentDataSource, type CommentEntity, type CommentHeaderProps, type CommentItemProps, type CommentListProps, type CommentMenuProps, type CommentPageResult, type CommentPermissions, type CommentQueryOptions, type CommentRepliesToggleProps, type CommentReplyCache, CommentThread, type CommentThreadConfig, type CommentThreadProps, ConfigBootstrap, type ConfigBootstrapProps, type ConfigSchema, type ConfigSchemaFailure, type ConfigSchemaResult, type ConfigSchemaSuccess, type ConfigTransform, type ConfigTransformContext, Configurator, ConfiguratorError, type ConfiguratorFailure, type ConfiguratorOptions, type ConfiguratorState, type ConfiguratorSuccess, Content, ContentArea, CookieBanner, type CookieBannerProps, type CookieConsentCategory, type CookieConsentCategoryOption, type CookieConsentState, type CookieConsentStatus, CookiePreferencesModal, type CookiePreferencesModalProps, type CornerPosition, type CreateCommentInput, type CreateHeadingSlugOptions, type CreateReviewInput, type CreateReviewReplyInput, type CreateURLResolverOptions, type CurrencyCode, DEFAULT_ANALYTICS_CONFIG, DEFAULT_COOKIE_CATEGORIES, DEFAULT_REVIEW_THREAD_CONFIG, DataView, DataViewContent, type DataViewContentProps, type DataViewContextType, DataViewFilterGroup, type DataViewFilterGroupProps, DataViewFooter, type DataViewFooterProps, DataViewHeader, type DataViewHeaderProps, DataViewPageSize, type DataViewPageSizeProps, DataViewPagination, type DataViewPaginationProps, DataViewProvider, type DataViewProviderProps, DataViewSearch, type DataViewSearchProps, DataViewSidebar, type DataViewSidebarProps, DataViewSort, type DataViewSortProps, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, type DocumentationPanelProps, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, EUI_ANALYTICS_ANONYMOUS_ID_STORAGE_KEY, EUI_ANALYTICS_CONSENT_STORAGE_KEY, EUI_ANALYTICS_QUEUE_STORAGE_KEY, EnvErrorScreen, type EnvErrorScreenProps, type ExtractHeadingsOptions, type FilterOption, Flag, type FlagProps, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, type FormatChartValueOptions, type GaugeChartProps, GaugePlot, type GenerateHeadingNumbersOptions, GenericLayout, type GetAllowedOriginsOptions, type GetReviewsOptions, GlowWrapper, type GradientAnimationConfig, Graph, type GraphData, GraphEdge, type GraphEdgeType, type GraphLayoutType, GraphNode, type GraphNodeType, type GraphProps, GraphRenderer, Grid, Header, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout, type HorizontalPosition, type HyperRefTarget, Image, ImageInput, type ImageProps, InfiniteScrollTrigger, Info, type InfoProps, Input, InputFile, InputLabel, InputList, InputListGroup, InputResponse, Label, Layout, type LayoutContext, type LayoutExecutor, Lead, type LimitRealtimePointsOptions, LinePlot, Link, List, type ListAlign, type ListBulletType, type ListDirection, ListItem, type ListItemData, ListItemElement, type ListItemElementProps, type ListItemProps, type ListProps, ListRoot, type ListRootProps, type MDXCodeMirrorPluginOptions, type MDXImagePluginOptions, type MDXLinkDialogPluginOptions, MDXMarkdownEditor, type MDXMarkdownEditorProps, MDXMarkdownField, type MDXMarkdownFieldProps, type MDXMarkdownFieldValidator, MarkdownBlockquote, type MarkdownBlockquoteRenderProps, MarkdownBreak, type MarkdownBreakProps, type MarkdownBreakRenderProps, MarkdownCodeBlock, type MarkdownCodeBlockMeta, type MarkdownCodeBlockProps, type MarkdownCodeBlockRenderProps, type MarkdownCodeLanguage, type MarkdownComponentOverrides, MarkdownContext, type MarkdownContextType, MarkdownDetails, type MarkdownDetailsProps, type MarkdownDetailsRenderProps, MarkdownDocsLayout, type MarkdownDocsLayoutProps, type MarkdownDocument, type MarkdownDocumentMeta, MarkdownEditor, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownElementProps, MarkdownEmphasis, type MarkdownEmphasisProps, type MarkdownEmphasisRenderProps, type MarkdownFeaturePluginConfig, MarkdownField, type MarkdownFieldProps, MarkdownFigcaption, type MarkdownFigcaptionProps, type MarkdownFigcaptionRenderProps, MarkdownFigure, type MarkdownFigureProps, type MarkdownFigureRenderProps, type MarkdownFrontmatter, type MarkdownHeading$1 as MarkdownHeading, MarkdownHeading as MarkdownHeadingComponent, type MarkdownHeadingLevel, type MarkdownHeadingProps, type MarkdownHeadingRenderProps, MarkdownImage, type MarkdownImageMeta, type MarkdownImageRenderProps, MarkdownInlineCode, type MarkdownInlineCodeRenderProps, MarkdownLayout, type MarkdownLayoutProps, type MarkdownLayoutTocPosition, MarkdownLink, type MarkdownLinkProps, type MarkdownLinkRenderProps, type MarkdownLinkTarget, MarkdownListItem, type MarkdownListItemProps, type MarkdownListItemRenderProps, type MarkdownListRenderProps, MarkdownOrderedList, type MarkdownOrderedListProps, MarkdownParagraph, type MarkdownParagraphProps, type MarkdownParagraphRenderProps, type MarkdownPluginConfig, type MarkdownPluginHandler, type MarkdownPluginInput, type MarkdownPluginList, MarkdownPreviewPane, type MarkdownPreviewPaneProps, MarkdownProvider, type MarkdownProviderProps, type MarkdownRehypePluginConfig, type MarkdownRemarkPluginConfig, MarkdownRenderer, type MarkdownRendererOptions, type MarkdownRendererProps, type MarkdownRendererState, MarkdownSourceEditor, type MarkdownSourceEditorProps, MarkdownSplitEditor, type MarkdownSplitEditorProps, MarkdownStrikethrough, type MarkdownStrikethroughProps, type MarkdownStrikethroughRenderProps, MarkdownStrong, type MarkdownStrongProps, type MarkdownStrongRenderProps, MarkdownSummary, type MarkdownSummaryProps, type MarkdownSummaryRenderProps, MarkdownTOC, MarkdownTOCItem, type MarkdownTOCItemProps, type MarkdownTOCOptions, type MarkdownTOCProps, MarkdownTable, MarkdownTableBody, MarkdownTableCell, type MarkdownTableCellRenderProps, MarkdownTableHead, MarkdownTableHeaderCell, type MarkdownTableHeaderCellRenderProps, type MarkdownTableRenderProps, MarkdownTableRow, type MarkdownTableRowProps, type MarkdownTableRowRenderProps, type MarkdownTableSectionProps, type MarkdownTableSectionRenderProps, MarkdownTaskCheckbox, type MarkdownTaskCheckboxProps, type MarkdownTaskCheckboxRenderProps, MarkdownThematicBreak, type MarkdownThematicBreakProps, type MarkdownThematicBreakRenderProps, type MarkdownTheme, MarkdownToolbar, type MarkdownToolbarAction, type MarkdownToolbarActionId, type MarkdownToolbarProps, MarkdownUnorderedList, type MarkdownUnorderedListProps, MarkdownViewer, type MarkdownViewerProps, type MaybePromise, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type MyReviewPanelProps, type NavItem, type NormalizeChartDataOptions, type NormalizeMarkdownOptions, type NormalizedChartDataPoint, type NormalizedToastStatus, type NumberedMarkdownHeading, NumericRating, type NumericRatingProps, type OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, PriceTag, type PriceTagProps, ProgressBar, type ProgressBarProps, ProgressBarRating, type ProgressBarRatingProps, Quote, Radio, type RawChartDataPoint, type RawReviewAuthorLike, type RawReviewLike, type RawReviewReplyLike, RealtimeChartDataSource, type RealtimeChartDataSourceConfig, type RealtimeChartDataSourceOptions, type ReplyComposerProps, type ResolveChartColorOptions, type ResolvedChartSeries, type ReviewActionsProps, type ReviewAuthor, type ReviewComposerProps, type ReviewContentProps, type ReviewDataSource, type ReviewEmptyStateProps, type ReviewEntity, type ReviewFormProps, type ReviewFormValues, type ReviewHeaderProps, type ReviewItemProps, type ReviewListProps, type ReviewMenuProps, type ReviewPageResult, type ReviewPermissions, type ReviewRatingProps, type ReviewRecommendationProps, type ReviewReplyComposerProps, type ReviewReplyContentProps, type ReviewReplyEntity, type ReviewReplyExternalDelete, type ReviewReplyExternalUpdate, type ReviewReplyHeaderProps, type ReviewReplyItemProps, type ReviewReplyListProps, type ReviewReplyMenuProps, type ReviewReplyPermissions, ReviewThread, type ReviewThreadComponents, type ReviewThreadConfig, type ReviewThreadProps, type RootAppModule, RouteTab, type RouteTabMode, RouteTabs, type SafeRedirectOptions, type SanitizeHeadingOptions, ScatterPlot, ScrollToTop, Section, Select, type SendToastOptions, type Shape, ShapeSwitch, ShowMore, Sidebar, SidebarLayout, SidemenuLayout, type Size, Skeleton, Slider, type SortConfig, type SortDirection, type SortOption$1 as SortOption, Spinner, type SpinnerDirection, type SpinnerProps, type SpinnerType, StarRating, StarRatingDistribution, StarRatingInput, type StarRatingProps, type StatChartProps, StatPlot, StaticChartDataSource, type StaticChartDataSourceConfig, type StaticChartDataSourceOptions, Switch, TNDropdown, TNDropdownItem, TNDropdownTitle, TNGroup, Table, TableBody, TableCell, type TableColumnConfig, TableElement, TableFrame, TableHead, TableHeaderCell, type TableProps, TableRow, Tag, type TagProps, Tags, TextArea, type TextDecoration, ThemeContext, ThemeProvider, ThemeSwitch, type Tier, TitleBanner, type TitleBannerLevel, type TitleBannerProps, Toast, type ToastItemData, type ToastProps, type ToggleReactionResult, Tooltip, type TooltipProps, TopNav, type TopNavComponents, type TopNavGroupNode, type TopNavItemNode, type TopNavNode, type TopNavProps, type TopNavTitleNode, type TrackAnalyticsOptions, Transition, TransitionAccordion, TransitionBase, TransitionDropdown, TransitionFade, TransitionFadeIn, TransitionScale, TransitionSlide, Typography, type URLMap, type URLMapSource, type URLQueryParams, type URLQueryValue, UnderConstructionBanner, type UpdateCommentInput, type UpdateReviewInput, type UpdateReviewReplyInput, type UseActiveHeadingOptions, type UseActiveHeadingResult, type UseChartDataOptions, type UseChartDataReturn, type UseChartPollingOptions, type UseChartRealtimeOptions, type UseChartSeriesOptions, type UseChartThemeOptions, type UseMarkdownHeadingsOptions, type UseMarkdownHeadingsResult, type UseMarkdownOptions, type UsePageTrackingOptions, type UseSessionTrackingOptions, ValueBadge, type ValueBadgeProps, type Variant, type VerticalPosition, WorldMap, WorldMapCountryTable, type WorldMapPoint, type WorldMapProps, YoutubeVideo, YoutubeVideo as YoutubeVideoPlayer, type YoutubeVideoProps, addReplyToCache, addReviewReply, appendReview, applyReactionState, assertAbsoluteURL, buildURL, canDeleteReview, canDeleteReviewReply, canEditReview, canEditReviewReply, canReplyToReview, canReportReview, canReportReviewReply, clearAnalyticsQueueStorage, clearAnonymousIdStorage, clearConsentStorage, cn, createAnalyticsEvent, createAnalyticsId, createConfigurator, createDefaultConsent, createForceLayout, createGridLayout, createHeadingSlug, createTreeLayout, createURLResolver, decrementReplyCount, defaultFormatValue, defaultTiers, ensureAnonymousIdStorage, enumValues, euiToast, extractHeadings, findReview, formatChartLabel, formatChartValue, formatCommentDate, formatConfigError, formatReviewDate, generateHeadingNumbers, getAllowedOrigins, getBrowserHref, getBrowserOrigin, getBrowserRedirectURL, getConsentStatusFromCategories, getCurrencySymbol, getCurrentFullUrl, getCurrentPath, getCurrentReferrer, getCurrentTitle, getDeviceInfo, getDoNotTrackEnabled, getLayout, getNowISOString, getOptimisticDislikeState, getOptimisticLikeState, getSafeRedirect, getViewport, hasReviewReply, incrementReplyCount, isBrowser, isMatch, isRenderFn, limitRealtimePoints, normalize, normalizeChartData, normalizeChartDataPoint, normalizeMarkdown, normalizeReview, normalizeReviewAuthor, normalizeReviewReply, parseJson, parseJsonRecord, parseUrlMap, prependReview, readAnalyticsQueueStorage, readAnonymousIdStorage, readConsentStorage, registerLayout, removeComment, removeCommentTreeFromCache, removeReview, removeReviewReply, replaceRealtimePoints, replaceReview, replaceReviewReply, resolveAppearanceStyles, resolveChartColor, resolveChartColors, resolveWithGlobal, safeReadStorage, safeRemoveStorage, safeWriteStorage, sanitizeHeading, sendToast, slugify, toConfiguratorError, updateComment, updateReplyCacheComment, updateReview, updateReviewReply, upsertReview, useActiveHeading, useAnalytics, useChartContext, useChartData, useChartPolling, useChartRealtime, useChartSeries, useChartTheme, useClickOutside, useCloudinaryConfig, useCookieConsent, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useMarkdown, useMarkdownHeadings, useModal, usePageTracking, useResolvedChartState, useReviewThreadState, useSessionTracking, useTheme, writeAnalyticsQueueStorage, writeConsentStorage };