elseware-ui 2.40.3 → 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 +82 -251
- package/dist/index.d.ts +82 -251
- package/dist/index.js +630 -430
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +320 -123
- 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.ts
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.js';
|
|
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.js';
|
|
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,9 +32,20 @@ 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
|
+
};
|
|
210
49
|
metadata?: Record<string, unknown>;
|
|
211
50
|
}
|
|
212
51
|
interface AnalyticsTransport {
|
|
@@ -234,15 +73,6 @@ interface AnalyticsProviderProps {
|
|
|
234
73
|
enrichEvent?: (event: AnalyticsEvent) => AnalyticsEvent | Promise<AnalyticsEvent>;
|
|
235
74
|
onConsentChange?: (consent: CookieConsentState) => void;
|
|
236
75
|
}
|
|
237
|
-
interface TrackAnalyticsOptions {
|
|
238
|
-
anonymousId?: string | null;
|
|
239
|
-
userId?: string | null;
|
|
240
|
-
path?: string;
|
|
241
|
-
referrer?: string;
|
|
242
|
-
viewport?: AnalyticsViewport;
|
|
243
|
-
device?: AnalyticsDevice;
|
|
244
|
-
metadata?: Record<string, unknown>;
|
|
245
|
-
}
|
|
246
76
|
interface TrackAnalyticsOptions extends Partial<Omit<AnalyticsEvent, "id" | "timestamp" | "type">> {
|
|
247
77
|
metadata?: Record<string, unknown>;
|
|
248
78
|
}
|
|
@@ -301,7 +131,19 @@ interface UsePageTrackingOptions {
|
|
|
301
131
|
fullUrl?: string;
|
|
302
132
|
metadata?: Record<string, unknown>;
|
|
303
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
|
+
*/
|
|
304
141
|
trackPageLeave?: boolean;
|
|
142
|
+
/**
|
|
143
|
+
|
|
144
|
+
* Prevents duplicate page_view events for the same path in the same mount cycle.
|
|
145
|
+
|
|
146
|
+
*/
|
|
305
147
|
dedupe?: boolean;
|
|
306
148
|
}
|
|
307
149
|
interface UseSessionTrackingOptions {
|
|
@@ -1589,20 +1431,7 @@ interface WorldMapProps extends BaseComponentProps {
|
|
|
1589
1431
|
}
|
|
1590
1432
|
declare const WorldMap: ({ data, title, bubbleColor, bubbleStroke, bubbleScale, minBubble, disableCountryHover, disableCountrySelect, className, ...rest }: WorldMapProps) => React$1.JSX.Element;
|
|
1591
1433
|
|
|
1592
|
-
|
|
1593
|
-
type?: "button" | "submit" | "reset";
|
|
1594
|
-
icon?: ReactNode;
|
|
1595
|
-
text?: string;
|
|
1596
|
-
children?: ReactNode;
|
|
1597
|
-
loading?: boolean;
|
|
1598
|
-
disabled?: boolean;
|
|
1599
|
-
block?: boolean;
|
|
1600
|
-
variant?: Variant;
|
|
1601
|
-
appearance?: Appearance;
|
|
1602
|
-
shape?: Shape;
|
|
1603
|
-
size?: Size;
|
|
1604
|
-
}
|
|
1605
|
-
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;
|
|
1606
1435
|
|
|
1607
1436
|
interface CheckboxOption {
|
|
1608
1437
|
label: string;
|
|
@@ -1765,33 +1594,6 @@ type TextAreaProps = FieldHookConfig<string> & {
|
|
|
1765
1594
|
};
|
|
1766
1595
|
declare function TextArea({ placeholder, limit, styles, shape, ...props }: TextAreaProps): React__default.JSX.Element;
|
|
1767
1596
|
|
|
1768
|
-
interface EUIComponentDefaults {
|
|
1769
|
-
variant?: keyof typeof Variant$1;
|
|
1770
|
-
size?: keyof typeof Size$1;
|
|
1771
|
-
shape?: keyof typeof Shape$1;
|
|
1772
|
-
styles?: string;
|
|
1773
|
-
}
|
|
1774
|
-
interface EUIRoute {
|
|
1775
|
-
path: string;
|
|
1776
|
-
name: string;
|
|
1777
|
-
}
|
|
1778
|
-
interface EUIConfigs {
|
|
1779
|
-
global?: EUIComponentDefaults;
|
|
1780
|
-
routes?: EUIRoute[];
|
|
1781
|
-
}
|
|
1782
|
-
|
|
1783
|
-
interface EUIContextValue {
|
|
1784
|
-
config: EUIConfigs;
|
|
1785
|
-
setConfig: React__default.Dispatch<React__default.SetStateAction<EUIConfigs>>;
|
|
1786
|
-
}
|
|
1787
|
-
declare const EUIProvider: ({ config, children, }: {
|
|
1788
|
-
config: EUIConfigs;
|
|
1789
|
-
children: React__default.ReactNode;
|
|
1790
|
-
}) => React__default.JSX.Element;
|
|
1791
|
-
declare const useEUIConfig: () => EUIContextValue;
|
|
1792
|
-
|
|
1793
|
-
declare function resolveWithGlobal<T>(config: EUIConfigs | null, props: T, defaults: Partial<T>): T;
|
|
1794
|
-
|
|
1795
1597
|
interface BackdropProps {
|
|
1796
1598
|
children?: React__default.ReactNode;
|
|
1797
1599
|
styles?: string;
|
|
@@ -1953,12 +1755,51 @@ interface LayoutProps {
|
|
|
1953
1755
|
}
|
|
1954
1756
|
declare const Layout: ({ flexDirection, children, styles, }: LayoutProps) => React__default.JSX.Element;
|
|
1955
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
|
+
|
|
1956
1794
|
interface HeaderProps {
|
|
1957
1795
|
position?: "static" | "fixed" | "sticky";
|
|
1958
1796
|
children?: React__default.ReactNode;
|
|
1797
|
+
onPreviewPlatformChange?: (platform: PreviewPlatform) => void;
|
|
1798
|
+
previewPlatform?: PreviewPlatform;
|
|
1799
|
+
showPreviewPlatformSelector?: boolean;
|
|
1959
1800
|
styles?: string;
|
|
1960
1801
|
}
|
|
1961
|
-
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;
|
|
1962
1803
|
|
|
1963
1804
|
interface ContentProps {
|
|
1964
1805
|
children?: React__default.ReactNode;
|
|
@@ -2380,22 +2221,6 @@ interface MotionSurfaceProps {
|
|
|
2380
2221
|
}
|
|
2381
2222
|
declare function MotionSurface({ children, animationVariant, animationConfig, animated, overlay, overlayConfig, className, customAnimation: CustomAnimation, customOverlay: CustomOverlay, }: MotionSurfaceProps): React__default.JSX.Element;
|
|
2382
2223
|
|
|
2383
|
-
interface ThemeContextProps {
|
|
2384
|
-
theme: "light" | "dark";
|
|
2385
|
-
setTheme: (theme: "light" | "dark") => void;
|
|
2386
|
-
toggleTheme: () => void;
|
|
2387
|
-
}
|
|
2388
|
-
declare const ThemeContext: React__default.Context<ThemeContextProps | undefined>;
|
|
2389
|
-
interface ThemeProviderProps {
|
|
2390
|
-
defaultTheme?: "light" | "dark";
|
|
2391
|
-
children: ReactNode;
|
|
2392
|
-
}
|
|
2393
|
-
declare const ThemeProvider: ({ defaultTheme, children, }: ThemeProviderProps) => React__default.JSX.Element;
|
|
2394
|
-
|
|
2395
|
-
declare const ThemeSwitch: () => React__default.JSX.Element | null;
|
|
2396
|
-
|
|
2397
|
-
declare const ShapeSwitch: () => React__default.JSX.Element;
|
|
2398
|
-
|
|
2399
2224
|
type AsyncLoadingType = "spinner" | "skeleton";
|
|
2400
2225
|
interface AsyncComponentWrapperProps {
|
|
2401
2226
|
children: React__default.ReactNode;
|
|
@@ -4112,6 +3937,12 @@ interface EUIDevLayoutProps {
|
|
|
4112
3937
|
header?: ReactNode;
|
|
4113
3938
|
footer?: ReactNode;
|
|
4114
3939
|
}
|
|
3940
|
+
type EUIDevPreviewPlatform = "web" | "native";
|
|
3941
|
+
interface EUIDevPreviewPlatformContextValue {
|
|
3942
|
+
platform: EUIDevPreviewPlatform;
|
|
3943
|
+
setPlatform: (platform: EUIDevPreviewPlatform) => void;
|
|
3944
|
+
}
|
|
3945
|
+
declare const useEUIDevPreviewPlatform: () => EUIDevPreviewPlatformContextValue;
|
|
4115
3946
|
declare function EUIDevLayout({ children, header, footer, }: EUIDevLayoutProps): React__default.JSX.Element;
|
|
4116
3947
|
|
|
4117
3948
|
interface CloudinaryConfig {
|
|
@@ -4143,14 +3974,14 @@ declare const enumValues: <T extends Record<string, string>>(enumObject: T) => s
|
|
|
4143
3974
|
declare const normalize: (path?: string) => string;
|
|
4144
3975
|
declare const isMatch: (itemPath?: string, currentPath?: string) => boolean;
|
|
4145
3976
|
|
|
4146
|
-
interface ResolveAppearanceStylesProps {
|
|
3977
|
+
interface ResolveAppearanceStylesProps<T> {
|
|
4147
3978
|
appearance?: Appearance;
|
|
4148
3979
|
variant: Variant;
|
|
4149
|
-
solid: Record<Variant,
|
|
4150
|
-
lite: Record<Variant,
|
|
4151
|
-
ghost: Record<Variant,
|
|
3980
|
+
solid: Record<Variant, T>;
|
|
3981
|
+
lite: Record<Variant, T>;
|
|
3982
|
+
ghost: Record<Variant, T>;
|
|
4152
3983
|
}
|
|
4153
|
-
declare function resolveAppearanceStyles({ appearance, variant, solid, lite, ghost, }: ResolveAppearanceStylesProps):
|
|
3984
|
+
declare function resolveAppearanceStyles<T = string>({ appearance, variant, solid, lite, ghost, }: ResolveAppearanceStylesProps<T>): T;
|
|
4154
3985
|
|
|
4155
3986
|
type ConfigSchemaSuccess<TData> = {
|
|
4156
3987
|
success: true;
|
|
@@ -4299,4 +4130,4 @@ type ConfigBootstrapProps = {
|
|
|
4299
4130
|
};
|
|
4300
4131
|
declare function ConfigBootstrap({ config, loadApp, ErrorComponent, LoadingComponent, loadingFallback, showStack, }: ConfigBootstrapProps): React$1.JSX.Element;
|
|
4301
4132
|
|
|
4302
|
-
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, 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 };
|
|
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 };
|