elseware-ui 2.40.4 → 3.0.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/LICENSE +20 -20
- package/dist/index.css +124 -24
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +95 -252
- package/dist/index.d.ts +95 -252
- package/dist/index.js +696 -395
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +390 -94
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.d.mts +7 -0
- package/dist/index.native.d.ts +7 -0
- package/dist/index.native.js +351 -0
- package/dist/index.native.js.map +1 -0
- package/dist/index.native.mjs +346 -0
- package/dist/index.native.mjs.map +1 -0
- package/dist/resolveGlobalConfigs-CcaOIQCE.d.mts +228 -0
- package/dist/resolveGlobalConfigs-CcaOIQCE.d.ts +228 -0
- package/package.json +32 -4
- package/tailwind.preset.js +116 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, {
|
|
2
|
+
import React__default, { ReactNode, SelectHTMLAttributes, InputHTMLAttributes, JSX, Dispatch, SetStateAction, ImgHTMLAttributes, ComponentPropsWithoutRef, HTMLAttributes, TdHTMLAttributes, TableHTMLAttributes, ThHTMLAttributes, FC, ComponentType, MouseEvent, HTMLAttributeAnchorTarget, BlockquoteHTMLAttributes, AnchorHTMLAttributes, OlHTMLAttributes, LiHTMLAttributes, DetailsHTMLAttributes, ClassAttributes, TextareaHTMLAttributes, FocusEventHandler, MutableRefObject } from 'react';
|
|
3
|
+
import { f as BaseComponentProps, V as Variant, A as Appearance, S as Shape, g as Size, O as OctilePosition, T as TitleBannerLevel, L as ListBulletType, h as ListDirection, i as ListAlign, C as CurrencyCode, j as SpinnerType, k as SpinnerDirection, l as TextDecoration, B as ButtonProps, m as Shape$1, n as Variant$1, o as Size$1, p as TextVariant, q as ToastStatus, s as ToastPosition, t as Target, D as Decoration, R as RouteTabMode } from './resolveGlobalConfigs-CcaOIQCE.mjs';
|
|
4
|
+
export { a as ButtonIcon, b as ButtonMode, v as CardinalPosition, w as CornerPosition, E as EUIComponentDefaults, c as EUIConfigs, d as EUIProvider, e as EUIRoute, H as HorizontalPosition, x as HyperRefTarget, y as VerticalPosition, r as resolveWithGlobal, u as useEUIConfig } from './resolveGlobalConfigs-CcaOIQCE.mjs';
|
|
3
5
|
import * as d3 from 'd3';
|
|
4
6
|
import * as formik from 'formik';
|
|
5
7
|
import { FieldHookConfig } from 'formik';
|
|
@@ -7,171 +9,6 @@ import CodeMirror from '@uiw/react-codemirror';
|
|
|
7
9
|
import { codeMirrorPlugin, imagePlugin, linkDialogPlugin, MDXEditorProps, MDXEditorMethods } from '@mdxeditor/editor';
|
|
8
10
|
import { ClassValue } from 'clsx';
|
|
9
11
|
|
|
10
|
-
/**
|
|
11
|
-
* Contains ReactElements such as "children" using HTMLAttributes
|
|
12
|
-
*
|
|
13
|
-
* Contains DOMAttributes such as "onClick" using HTMLAttributes
|
|
14
|
-
*
|
|
15
|
-
* Define the custom types as follows for the custom DOM elements
|
|
16
|
-
* BaseComponentProps<HTMLDivElement> // default
|
|
17
|
-
* BaseComponentProps<HTMLButtonElement> // buttons
|
|
18
|
-
* BaseComponentProps<HTMLAnchorElement> // links
|
|
19
|
-
*/
|
|
20
|
-
interface BaseComponentProps<T extends HTMLElement = HTMLDivElement> extends Omit<HTMLAttributes<T>, "children"> {
|
|
21
|
-
className?: string;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
declare const CURRENCIES: {
|
|
25
|
-
name: string;
|
|
26
|
-
symbol: string;
|
|
27
|
-
code: string;
|
|
28
|
-
}[];
|
|
29
|
-
|
|
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}`;
|
|
166
|
-
type TitleBannerLevel = 1 | 2;
|
|
167
|
-
type ListBulletType = `${ListBulletType$1}`;
|
|
168
|
-
type ListAlign = `${ListAlign$1}`;
|
|
169
|
-
type ListDirection = `${ListDirection$1}`;
|
|
170
|
-
type RouteTabMode = "route" | "state";
|
|
171
|
-
type CurrencyCode = (typeof CURRENCIES)[number]["code"];
|
|
172
|
-
type SpinnerType = `${SpinnerType$1}`;
|
|
173
|
-
type SpinnerDirection = "vertical" | "horizontal";
|
|
174
|
-
|
|
175
12
|
type CookieConsentCategory = "necessary" | "analytics" | "preferences" | "marketing";
|
|
176
13
|
type CookieConsentStatus = "unset" | "accepted" | "rejected" | "partial";
|
|
177
14
|
interface CookieConsentState {
|
|
@@ -186,16 +23,7 @@ interface CookieConsentCategoryOption {
|
|
|
186
23
|
description?: string;
|
|
187
24
|
required?: boolean;
|
|
188
25
|
}
|
|
189
|
-
type AnalyticsEventType = "page_view" | "custom";
|
|
190
|
-
interface AnalyticsViewport {
|
|
191
|
-
width: number;
|
|
192
|
-
height: number;
|
|
193
|
-
}
|
|
194
|
-
interface AnalyticsDevice {
|
|
195
|
-
userAgent: string;
|
|
196
|
-
language: string;
|
|
197
|
-
timezone: string;
|
|
198
|
-
}
|
|
26
|
+
type AnalyticsEventType = "page_view" | "page_leave" | "session_start" | "session_end" | "click" | "custom";
|
|
199
27
|
interface AnalyticsEvent {
|
|
200
28
|
id: string;
|
|
201
29
|
type: AnalyticsEventType;
|
|
@@ -204,22 +32,26 @@ interface AnalyticsEvent {
|
|
|
204
32
|
anonymousId?: string | null;
|
|
205
33
|
userId?: string | null;
|
|
206
34
|
path?: string;
|
|
35
|
+
fullUrl?: string;
|
|
207
36
|
referrer?: string;
|
|
208
|
-
|
|
209
|
-
|
|
37
|
+
title?: string;
|
|
38
|
+
timestamp: string;
|
|
39
|
+
durationMs?: number;
|
|
40
|
+
viewport?: {
|
|
41
|
+
width: number;
|
|
42
|
+
height: number;
|
|
43
|
+
};
|
|
44
|
+
device?: {
|
|
45
|
+
userAgent: string;
|
|
46
|
+
language: string;
|
|
47
|
+
timezone: string;
|
|
48
|
+
};
|
|
49
|
+
metadata?: Record<string, unknown>;
|
|
210
50
|
}
|
|
211
51
|
interface AnalyticsTransport {
|
|
212
52
|
send: (events: AnalyticsEvent[]) => Promise<void>;
|
|
213
53
|
sendBeacon?: (events: AnalyticsEvent[]) => boolean;
|
|
214
54
|
}
|
|
215
|
-
interface TrackAnalyticsOptions {
|
|
216
|
-
anonymousId?: string | null;
|
|
217
|
-
userId?: string | null;
|
|
218
|
-
path?: string;
|
|
219
|
-
referrer?: string;
|
|
220
|
-
viewport?: AnalyticsViewport;
|
|
221
|
-
device?: AnalyticsDevice;
|
|
222
|
-
}
|
|
223
55
|
interface AnalyticsConfig {
|
|
224
56
|
enabled?: boolean;
|
|
225
57
|
trackPageViews?: boolean;
|
|
@@ -241,6 +73,9 @@ interface AnalyticsProviderProps {
|
|
|
241
73
|
enrichEvent?: (event: AnalyticsEvent) => AnalyticsEvent | Promise<AnalyticsEvent>;
|
|
242
74
|
onConsentChange?: (consent: CookieConsentState) => void;
|
|
243
75
|
}
|
|
76
|
+
interface TrackAnalyticsOptions extends Partial<Omit<AnalyticsEvent, "id" | "timestamp" | "type">> {
|
|
77
|
+
metadata?: Record<string, unknown>;
|
|
78
|
+
}
|
|
244
79
|
interface AnalyticsContextValue {
|
|
245
80
|
appId: string;
|
|
246
81
|
consent: CookieConsentState;
|
|
@@ -292,11 +127,28 @@ interface CookiePreferencesModalProps extends BaseComponentProps {
|
|
|
292
127
|
interface UsePageTrackingOptions {
|
|
293
128
|
path: string;
|
|
294
129
|
search?: string;
|
|
130
|
+
title?: string;
|
|
131
|
+
fullUrl?: string;
|
|
132
|
+
metadata?: Record<string, unknown>;
|
|
295
133
|
enabled?: boolean;
|
|
134
|
+
/**
|
|
135
|
+
|
|
136
|
+
* Disabled by default for lightweight analytics.
|
|
137
|
+
|
|
138
|
+
* Enable only when you really need time-on-page.
|
|
139
|
+
|
|
140
|
+
*/
|
|
141
|
+
trackPageLeave?: boolean;
|
|
142
|
+
/**
|
|
143
|
+
|
|
144
|
+
* Prevents duplicate page_view events for the same path in the same mount cycle.
|
|
145
|
+
|
|
146
|
+
*/
|
|
296
147
|
dedupe?: boolean;
|
|
297
148
|
}
|
|
298
149
|
interface UseSessionTrackingOptions {
|
|
299
150
|
enabled?: boolean;
|
|
151
|
+
metadata?: Record<string, unknown>;
|
|
300
152
|
}
|
|
301
153
|
|
|
302
154
|
declare const AnalyticsProvider: ({ children, appId, consentVersion, userId, transport, config, enrichEvent, onConsentChange, }: AnalyticsProviderProps) => React$1.JSX.Element;
|
|
@@ -341,7 +193,9 @@ declare const getDeviceInfo: () => {
|
|
|
341
193
|
timezone: string;
|
|
342
194
|
} | undefined;
|
|
343
195
|
declare const getCurrentPath: () => string | undefined;
|
|
196
|
+
declare const getCurrentFullUrl: () => string | undefined;
|
|
344
197
|
declare const getCurrentReferrer: () => string | undefined;
|
|
198
|
+
declare const getCurrentTitle: () => string | undefined;
|
|
345
199
|
declare const getConsentStatusFromCategories: (categories: Record<CookieConsentCategory, boolean>) => CookieConsentState["status"];
|
|
346
200
|
declare const createAnalyticsEvent: ({ appId, type, sessionId, anonymousId, userId, options, }: {
|
|
347
201
|
appId: string;
|
|
@@ -363,9 +217,9 @@ declare const useCookieConsent: () => {
|
|
|
363
217
|
resetConsent: () => void;
|
|
364
218
|
};
|
|
365
219
|
|
|
366
|
-
declare const usePageTracking: ({ path, search, enabled, dedupe, }: UsePageTrackingOptions) => void;
|
|
220
|
+
declare const usePageTracking: ({ path, search, title, fullUrl, metadata, enabled, trackPageLeave, dedupe, }: UsePageTrackingOptions) => void;
|
|
367
221
|
|
|
368
|
-
declare const useSessionTracking: ({ enabled, }?: UseSessionTrackingOptions) =>
|
|
222
|
+
declare const useSessionTracking: ({ enabled, metadata, }?: UseSessionTrackingOptions) => void;
|
|
369
223
|
|
|
370
224
|
interface AvatarProps extends BaseComponentProps {
|
|
371
225
|
alt?: string;
|
|
@@ -1577,20 +1431,7 @@ interface WorldMapProps extends BaseComponentProps {
|
|
|
1577
1431
|
}
|
|
1578
1432
|
declare const WorldMap: ({ data, title, bubbleColor, bubbleStroke, bubbleScale, minBubble, disableCountryHover, disableCountrySelect, className, ...rest }: WorldMapProps) => React$1.JSX.Element;
|
|
1579
1433
|
|
|
1580
|
-
|
|
1581
|
-
type?: "button" | "submit" | "reset";
|
|
1582
|
-
icon?: ReactNode;
|
|
1583
|
-
text?: string;
|
|
1584
|
-
children?: ReactNode;
|
|
1585
|
-
loading?: boolean;
|
|
1586
|
-
disabled?: boolean;
|
|
1587
|
-
block?: boolean;
|
|
1588
|
-
variant?: Variant;
|
|
1589
|
-
appearance?: Appearance;
|
|
1590
|
-
shape?: Shape;
|
|
1591
|
-
size?: Size;
|
|
1592
|
-
}
|
|
1593
|
-
declare function Button({ type, icon, text, children, loading, disabled, block, variant, appearance, shape, size, className, onMouseMove, ...rest }: ButtonProps): React$1.JSX.Element;
|
|
1434
|
+
declare function Button({ type, icon, text, children, loading, disabled, block, compact, mode, buttonColor, textColor, contentClassName, labelClassName, variant, appearance, shape, size, style, contentStyle, labelStyle, accessibilityLabel, accessibilityRole, accessibilityState, testID, className, onMouseMove, onClick, onPress, ...rest }: ButtonProps): React$1.JSX.Element;
|
|
1594
1435
|
|
|
1595
1436
|
interface CheckboxOption {
|
|
1596
1437
|
label: string;
|
|
@@ -1753,33 +1594,6 @@ type TextAreaProps = FieldHookConfig<string> & {
|
|
|
1753
1594
|
};
|
|
1754
1595
|
declare function TextArea({ placeholder, limit, styles, shape, ...props }: TextAreaProps): React__default.JSX.Element;
|
|
1755
1596
|
|
|
1756
|
-
interface EUIComponentDefaults {
|
|
1757
|
-
variant?: keyof typeof Variant$1;
|
|
1758
|
-
size?: keyof typeof Size$1;
|
|
1759
|
-
shape?: keyof typeof Shape$1;
|
|
1760
|
-
styles?: string;
|
|
1761
|
-
}
|
|
1762
|
-
interface EUIRoute {
|
|
1763
|
-
path: string;
|
|
1764
|
-
name: string;
|
|
1765
|
-
}
|
|
1766
|
-
interface EUIConfigs {
|
|
1767
|
-
global?: EUIComponentDefaults;
|
|
1768
|
-
routes?: EUIRoute[];
|
|
1769
|
-
}
|
|
1770
|
-
|
|
1771
|
-
interface EUIContextValue {
|
|
1772
|
-
config: EUIConfigs;
|
|
1773
|
-
setConfig: React__default.Dispatch<React__default.SetStateAction<EUIConfigs>>;
|
|
1774
|
-
}
|
|
1775
|
-
declare const EUIProvider: ({ config, children, }: {
|
|
1776
|
-
config: EUIConfigs;
|
|
1777
|
-
children: React__default.ReactNode;
|
|
1778
|
-
}) => React__default.JSX.Element;
|
|
1779
|
-
declare const useEUIConfig: () => EUIContextValue;
|
|
1780
|
-
|
|
1781
|
-
declare function resolveWithGlobal<T>(config: EUIConfigs | null, props: T, defaults: Partial<T>): T;
|
|
1782
|
-
|
|
1783
1597
|
interface BackdropProps {
|
|
1784
1598
|
children?: React__default.ReactNode;
|
|
1785
1599
|
styles?: string;
|
|
@@ -1941,12 +1755,51 @@ interface LayoutProps {
|
|
|
1941
1755
|
}
|
|
1942
1756
|
declare const Layout: ({ flexDirection, children, styles, }: LayoutProps) => React__default.JSX.Element;
|
|
1943
1757
|
|
|
1758
|
+
interface ThemeContextProps {
|
|
1759
|
+
theme: "light" | "dark";
|
|
1760
|
+
setTheme: (theme: "light" | "dark") => void;
|
|
1761
|
+
toggleTheme: () => void;
|
|
1762
|
+
}
|
|
1763
|
+
declare const ThemeContext: React__default.Context<ThemeContextProps | undefined>;
|
|
1764
|
+
interface ThemeProviderProps {
|
|
1765
|
+
defaultTheme?: "light" | "dark";
|
|
1766
|
+
children: ReactNode;
|
|
1767
|
+
}
|
|
1768
|
+
declare const ThemeProvider: ({ defaultTheme, children, }: ThemeProviderProps) => React__default.JSX.Element;
|
|
1769
|
+
|
|
1770
|
+
declare const ThemeSwitch: () => React__default.JSX.Element | null;
|
|
1771
|
+
|
|
1772
|
+
declare const ShapeSwitch: () => React$1.JSX.Element;
|
|
1773
|
+
|
|
1774
|
+
type PreviewPlatform = "web" | "native";
|
|
1775
|
+
interface PreviewSwitchProps {
|
|
1776
|
+
onChange?: (platform: PreviewPlatform) => void;
|
|
1777
|
+
value?: PreviewPlatform;
|
|
1778
|
+
}
|
|
1779
|
+
declare const PreviewSwitch: ({ onChange, value, }: PreviewSwitchProps) => React$1.JSX.Element;
|
|
1780
|
+
|
|
1781
|
+
interface ThemeSelectOption<Value extends string> {
|
|
1782
|
+
label: string;
|
|
1783
|
+
value: Value;
|
|
1784
|
+
}
|
|
1785
|
+
interface ThemeSelectProps<Value extends string> {
|
|
1786
|
+
ariaLabel?: string;
|
|
1787
|
+
label: string;
|
|
1788
|
+
onChange?: (value: Value) => void;
|
|
1789
|
+
options: ThemeSelectOption<Value>[];
|
|
1790
|
+
value: Value;
|
|
1791
|
+
}
|
|
1792
|
+
declare function ThemeSelect<Value extends string>({ ariaLabel, label, onChange, options, value, }: ThemeSelectProps<Value>): React__default.JSX.Element;
|
|
1793
|
+
|
|
1944
1794
|
interface HeaderProps {
|
|
1945
1795
|
position?: "static" | "fixed" | "sticky";
|
|
1946
1796
|
children?: React__default.ReactNode;
|
|
1797
|
+
onPreviewPlatformChange?: (platform: PreviewPlatform) => void;
|
|
1798
|
+
previewPlatform?: PreviewPlatform;
|
|
1799
|
+
showPreviewPlatformSelector?: boolean;
|
|
1947
1800
|
styles?: string;
|
|
1948
1801
|
}
|
|
1949
|
-
declare const Header: ({ position, children, styles, }: HeaderProps) => React__default.JSX.Element;
|
|
1802
|
+
declare const Header: ({ position, children, onPreviewPlatformChange, previewPlatform, showPreviewPlatformSelector, styles, }: HeaderProps) => React__default.JSX.Element;
|
|
1950
1803
|
|
|
1951
1804
|
interface ContentProps {
|
|
1952
1805
|
children?: React__default.ReactNode;
|
|
@@ -2368,22 +2221,6 @@ interface MotionSurfaceProps {
|
|
|
2368
2221
|
}
|
|
2369
2222
|
declare function MotionSurface({ children, animationVariant, animationConfig, animated, overlay, overlayConfig, className, customAnimation: CustomAnimation, customOverlay: CustomOverlay, }: MotionSurfaceProps): React__default.JSX.Element;
|
|
2370
2223
|
|
|
2371
|
-
interface ThemeContextProps {
|
|
2372
|
-
theme: "light" | "dark";
|
|
2373
|
-
setTheme: (theme: "light" | "dark") => void;
|
|
2374
|
-
toggleTheme: () => void;
|
|
2375
|
-
}
|
|
2376
|
-
declare const ThemeContext: React__default.Context<ThemeContextProps | undefined>;
|
|
2377
|
-
interface ThemeProviderProps {
|
|
2378
|
-
defaultTheme?: "light" | "dark";
|
|
2379
|
-
children: ReactNode;
|
|
2380
|
-
}
|
|
2381
|
-
declare const ThemeProvider: ({ defaultTheme, children, }: ThemeProviderProps) => React__default.JSX.Element;
|
|
2382
|
-
|
|
2383
|
-
declare const ThemeSwitch: () => React__default.JSX.Element | null;
|
|
2384
|
-
|
|
2385
|
-
declare const ShapeSwitch: () => React__default.JSX.Element;
|
|
2386
|
-
|
|
2387
2224
|
type AsyncLoadingType = "spinner" | "skeleton";
|
|
2388
2225
|
interface AsyncComponentWrapperProps {
|
|
2389
2226
|
children: React__default.ReactNode;
|
|
@@ -4100,6 +3937,12 @@ interface EUIDevLayoutProps {
|
|
|
4100
3937
|
header?: ReactNode;
|
|
4101
3938
|
footer?: ReactNode;
|
|
4102
3939
|
}
|
|
3940
|
+
type EUIDevPreviewPlatform = "web" | "native";
|
|
3941
|
+
interface EUIDevPreviewPlatformContextValue {
|
|
3942
|
+
platform: EUIDevPreviewPlatform;
|
|
3943
|
+
setPlatform: (platform: EUIDevPreviewPlatform) => void;
|
|
3944
|
+
}
|
|
3945
|
+
declare const useEUIDevPreviewPlatform: () => EUIDevPreviewPlatformContextValue;
|
|
4103
3946
|
declare function EUIDevLayout({ children, header, footer, }: EUIDevLayoutProps): React__default.JSX.Element;
|
|
4104
3947
|
|
|
4105
3948
|
interface CloudinaryConfig {
|
|
@@ -4131,14 +3974,14 @@ declare const enumValues: <T extends Record<string, string>>(enumObject: T) => s
|
|
|
4131
3974
|
declare const normalize: (path?: string) => string;
|
|
4132
3975
|
declare const isMatch: (itemPath?: string, currentPath?: string) => boolean;
|
|
4133
3976
|
|
|
4134
|
-
interface ResolveAppearanceStylesProps {
|
|
3977
|
+
interface ResolveAppearanceStylesProps<T> {
|
|
4135
3978
|
appearance?: Appearance;
|
|
4136
3979
|
variant: Variant;
|
|
4137
|
-
solid: Record<Variant,
|
|
4138
|
-
lite: Record<Variant,
|
|
4139
|
-
ghost: Record<Variant,
|
|
3980
|
+
solid: Record<Variant, T>;
|
|
3981
|
+
lite: Record<Variant, T>;
|
|
3982
|
+
ghost: Record<Variant, T>;
|
|
4140
3983
|
}
|
|
4141
|
-
declare function resolveAppearanceStyles({ appearance, variant, solid, lite, ghost, }: ResolveAppearanceStylesProps):
|
|
3984
|
+
declare function resolveAppearanceStyles<T = string>({ appearance, variant, solid, lite, ghost, }: ResolveAppearanceStylesProps<T>): T;
|
|
4142
3985
|
|
|
4143
3986
|
type ConfigSchemaSuccess<TData> = {
|
|
4144
3987
|
success: true;
|
|
@@ -4287,4 +4130,4 @@ type ConfigBootstrapProps = {
|
|
|
4287
4130
|
};
|
|
4288
4131
|
declare function ConfigBootstrap({ config, loadApp, ErrorComponent, LoadingComponent, loadingFallback, showStack, }: ConfigBootstrapProps): React$1.JSX.Element;
|
|
4289
4132
|
|
|
4290
|
-
export { Accordion, type AnalyticsConfig, AnalyticsContext, type AnalyticsContextValue, type AnalyticsDevice, type AnalyticsEvent, type AnalyticsEventType, AnalyticsProvider, type AnalyticsProviderProps, type AnalyticsTransport, type AnalyticsViewport, 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, getCurrentPath, getCurrentReferrer, 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 };
|
|
4133
|
+
export { Accordion, type AnalyticsConfig, AnalyticsContext, type AnalyticsContextValue, type AnalyticsEvent, type AnalyticsEventType, AnalyticsProvider, type AnalyticsProviderProps, type AnalyticsTransport, type AnimationComponentProps, type AnimationVariant, Appearance, AreaPlot, _default as AsyncComponentWrapper, Avatar, type AvatarProps, Backdrop, Badge, type BadgeProps, type BarChartProps, BarPlot, type BaseAnimationConfig, BaseChartDataSource, type BaseChartProps, BaseComponentProps, type BaseMenuNode, type BaseOverlayConfig, type BaseTopNavNode, type BlobAnimationConfig, Block, BlockGroup, type BootstrapConfigLike, BoxNav, BoxNavItem, Brand, type BrandProps, Breadcrumb, BreadcrumbItem, type BrowserRedirectURLOptions, Button, ButtonProps, 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, 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 CreateCommentInput, type CreateHeadingSlugOptions, type CreateReviewInput, type CreateReviewReplyInput, type CreateURLResolverOptions, 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, EUIDevLayout, type EUIDevPreviewPlatform, 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, 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, ListAlign, ListBulletType, 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, OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, type PreviewPlatform, PreviewSwitch, 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, RouteTabMode, RouteTabs, type SafeRedirectOptions, type SanitizeHeadingOptions, ScatterPlot, ScrollToTop, Section, Select, type SendToastOptions, Shape, ShapeSwitch, ShowMore, Sidebar, SidebarLayout, SidemenuLayout, Size, Skeleton, Slider, type SortConfig, type SortDirection, type SortOption$1 as SortOption, Spinner, SpinnerDirection, type SpinnerProps, 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, TextDecoration, ThemeContext, ThemeProvider, ThemeSelect, type ThemeSelectOption, type ThemeSelectProps, ThemeSwitch, type Tier, TitleBanner, 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, Variant, 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, 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, useEUIDevPreviewPlatform, useIsMobile, useMarkdown, useMarkdownHeadings, useModal, usePageTracking, useResolvedChartState, useReviewThreadState, useSessionTracking, useTheme, writeAnalyticsQueueStorage, writeConsentStorage };
|