elseware-ui 2.40.4 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +289 -289
- package/dist/index.css +484 -310
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +101 -293
- package/dist/index.d.ts +101 -293
- package/dist/index.js +1294 -752
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +986 -449
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.d.mts +16 -0
- package/dist/index.native.d.ts +16 -0
- package/dist/index.native.js +913 -0
- package/dist/index.native.js.map +1 -0
- package/dist/index.native.mjs +904 -0
- package/dist/index.native.mjs.map +1 -0
- package/dist/resolveGlobalConfigs-Cuiq_Zix.d.mts +288 -0
- package/dist/resolveGlobalConfigs-Cuiq_Zix.d.ts +288 -0
- package/package.json +173 -143
- 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 { i as BaseComponentProps, V as Variant, A as Appearance, S as Shape, j as Size, O as OctilePosition, T as TitleBannerLevel, L as ListBulletType, k as ListDirection, l as ListAlign, m as CurrencyCode, n as SpinnerType, o as SpinnerDirection, p as TextDecoration, B as ButtonProps, C as CheckboxProps, q as Shape$1, s as Variant$1, t as Size$1, I as InputProps, a as InputLabelProps, b as InputResponseProps, v as ToastStatus, w as ToastPosition, x as Target, y as TextVariant, D as Decoration, R as RouteTabMode } from './resolveGlobalConfigs-Cuiq_Zix.mjs';
|
|
4
|
+
export { c as ButtonIcon, d as ButtonMode, z as CardinalPosition, e as CheckboxOption, F as CornerPosition, E as EUIComponentDefaults, f as EUIConfigs, g as EUIProvider, h as EUIRoute, H as HorizontalPosition, G as HyperRefTarget, J as VerticalPosition, r as resolveWithGlobal, u as useEUIConfig } from './resolveGlobalConfigs-Cuiq_Zix.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,38 +1431,9 @@ 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, glow, mode, contentClassName, labelClassName, variant, appearance, shape, size, accessibilityLabel, accessibilityRole, accessibilityState, testID, className, onMouseMove, onClick, onPress, ...rest }: ButtonProps): React$1.JSX.Element;
|
|
1594
1435
|
|
|
1595
|
-
|
|
1596
|
-
label: string;
|
|
1597
|
-
value: string;
|
|
1598
|
-
}
|
|
1599
|
-
interface BaseCheckboxProps extends BaseComponentProps {
|
|
1600
|
-
placeholder?: string;
|
|
1601
|
-
variant?: Variant;
|
|
1602
|
-
shape?: Shape;
|
|
1603
|
-
}
|
|
1604
|
-
interface SingleCheckboxProps extends BaseCheckboxProps {
|
|
1605
|
-
options?: never;
|
|
1606
|
-
}
|
|
1607
|
-
interface MultiCheckboxProps extends BaseCheckboxProps {
|
|
1608
|
-
options: CheckboxOption[];
|
|
1609
|
-
}
|
|
1610
|
-
type CheckboxProps = (SingleCheckboxProps & FieldHookConfig<boolean>) | (MultiCheckboxProps & FieldHookConfig<string[]>);
|
|
1611
|
-
declare function Checkbox({ placeholder, variant, shape, className, ...props }: CheckboxProps): React$1.JSX.Element;
|
|
1436
|
+
declare function Checkbox(checkboxProps: CheckboxProps): React$1.JSX.Element;
|
|
1612
1437
|
|
|
1613
1438
|
type DateSelectorProps = FieldHookConfig<string> & {
|
|
1614
1439
|
name: string;
|
|
@@ -1653,29 +1478,16 @@ interface ImageInputRef {
|
|
|
1653
1478
|
}
|
|
1654
1479
|
declare const ImageInput: React__default.ForwardRefExoticComponent<(Omit<React__default.ClassAttributes<HTMLInputElement> & React__default.InputHTMLAttributes<HTMLInputElement> & formik.FieldConfig<string> & ImageInputProps, "ref"> | Omit<React__default.ClassAttributes<HTMLSelectElement> & React__default.SelectHTMLAttributes<HTMLSelectElement> & formik.FieldConfig<string> & ImageInputProps, "ref"> | Omit<React__default.ClassAttributes<HTMLTextAreaElement> & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & formik.FieldConfig<string> & ImageInputProps, "ref">) & React__default.RefAttributes<ImageInputRef>>;
|
|
1655
1480
|
|
|
1656
|
-
|
|
1657
|
-
type: "text" | "password" | "number";
|
|
1658
|
-
name: string;
|
|
1659
|
-
placeholder: string;
|
|
1660
|
-
styles?: string;
|
|
1661
|
-
step?: string;
|
|
1662
|
-
shape?: keyof typeof Shape$1;
|
|
1663
|
-
};
|
|
1664
|
-
declare const Input: ({ type, placeholder, styles, step, shape, ...props }: InputProps) => React__default.JSX.Element;
|
|
1481
|
+
declare function Input(inputProps: InputProps): React$1.JSX.Element;
|
|
1665
1482
|
|
|
1666
1483
|
interface InputFileProps {
|
|
1667
1484
|
placeholder: string;
|
|
1668
1485
|
accept?: string;
|
|
1669
|
-
|
|
1486
|
+
className?: string;
|
|
1670
1487
|
}
|
|
1671
|
-
declare const InputFile: ({ placeholder, accept,
|
|
1488
|
+
declare const InputFile: ({ placeholder, accept, className, ...props }: FieldHookConfig<File | null> & InputFileProps) => React__default.JSX.Element;
|
|
1672
1489
|
|
|
1673
|
-
|
|
1674
|
-
text?: string;
|
|
1675
|
-
children?: React__default.ReactNode;
|
|
1676
|
-
styles?: string;
|
|
1677
|
-
}
|
|
1678
|
-
declare function InputLabel({ text, children, styles }: FormDataEntryLabelProps): React__default.JSX.Element;
|
|
1490
|
+
declare function InputLabel({ text, children, className, floating, errored, disabled, htmlFor, }: InputLabelProps): React$1.JSX.Element;
|
|
1679
1491
|
|
|
1680
1492
|
type ShapeInput$1 = Shape$1 | "circle" | "roundedSquare" | "softRoundedSquare" | "square";
|
|
1681
1493
|
interface InputListProps {
|
|
@@ -1693,13 +1505,7 @@ interface InputListGroupProps {
|
|
|
1693
1505
|
}
|
|
1694
1506
|
declare const InputListGroup: ({ name, placeholder, shape, }: InputListGroupProps) => React__default.JSX.Element;
|
|
1695
1507
|
|
|
1696
|
-
|
|
1697
|
-
name: string;
|
|
1698
|
-
visibility?: boolean;
|
|
1699
|
-
variant?: keyof typeof TextVariant;
|
|
1700
|
-
styles?: string;
|
|
1701
|
-
}
|
|
1702
|
-
declare function InputResponse({ name, visibility, variant, styles, }: InputResponseProps): React__default.JSX.Element;
|
|
1508
|
+
declare function InputResponse({ name, visibility, variant, className, message, }: InputResponseProps): React$1.JSX.Element;
|
|
1703
1509
|
|
|
1704
1510
|
interface MultiImageInputProps {
|
|
1705
1511
|
title?: string;
|
|
@@ -1753,33 +1559,6 @@ type TextAreaProps = FieldHookConfig<string> & {
|
|
|
1753
1559
|
};
|
|
1754
1560
|
declare function TextArea({ placeholder, limit, styles, shape, ...props }: TextAreaProps): React__default.JSX.Element;
|
|
1755
1561
|
|
|
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
1562
|
interface BackdropProps {
|
|
1784
1563
|
children?: React__default.ReactNode;
|
|
1785
1564
|
styles?: string;
|
|
@@ -1941,12 +1720,51 @@ interface LayoutProps {
|
|
|
1941
1720
|
}
|
|
1942
1721
|
declare const Layout: ({ flexDirection, children, styles, }: LayoutProps) => React__default.JSX.Element;
|
|
1943
1722
|
|
|
1723
|
+
interface ThemeContextProps {
|
|
1724
|
+
theme: "light" | "dark";
|
|
1725
|
+
setTheme: (theme: "light" | "dark") => void;
|
|
1726
|
+
toggleTheme: () => void;
|
|
1727
|
+
}
|
|
1728
|
+
declare const ThemeContext: React__default.Context<ThemeContextProps | undefined>;
|
|
1729
|
+
interface ThemeProviderProps {
|
|
1730
|
+
defaultTheme?: "light" | "dark";
|
|
1731
|
+
children: ReactNode;
|
|
1732
|
+
}
|
|
1733
|
+
declare const ThemeProvider: ({ defaultTheme, children, }: ThemeProviderProps) => React__default.JSX.Element;
|
|
1734
|
+
|
|
1735
|
+
declare const ThemeSwitch: () => React__default.JSX.Element | null;
|
|
1736
|
+
|
|
1737
|
+
declare const ShapeSwitch: () => React$1.JSX.Element;
|
|
1738
|
+
|
|
1739
|
+
type PreviewPlatform = "web" | "native";
|
|
1740
|
+
interface PreviewSwitchProps {
|
|
1741
|
+
onChange?: (platform: PreviewPlatform) => void;
|
|
1742
|
+
value?: PreviewPlatform;
|
|
1743
|
+
}
|
|
1744
|
+
declare const PreviewSwitch: ({ onChange, value, }: PreviewSwitchProps) => React$1.JSX.Element;
|
|
1745
|
+
|
|
1746
|
+
interface ThemeSelectOption<Value extends string> {
|
|
1747
|
+
label: string;
|
|
1748
|
+
value: Value;
|
|
1749
|
+
}
|
|
1750
|
+
interface ThemeSelectProps<Value extends string> {
|
|
1751
|
+
ariaLabel?: string;
|
|
1752
|
+
label: string;
|
|
1753
|
+
onChange?: (value: Value) => void;
|
|
1754
|
+
options: ThemeSelectOption<Value>[];
|
|
1755
|
+
value: Value;
|
|
1756
|
+
}
|
|
1757
|
+
declare function ThemeSelect<Value extends string>({ ariaLabel, label, onChange, options, value, }: ThemeSelectProps<Value>): React__default.JSX.Element;
|
|
1758
|
+
|
|
1944
1759
|
interface HeaderProps {
|
|
1945
1760
|
position?: "static" | "fixed" | "sticky";
|
|
1946
1761
|
children?: React__default.ReactNode;
|
|
1762
|
+
onPreviewPlatformChange?: (platform: PreviewPlatform) => void;
|
|
1763
|
+
previewPlatform?: PreviewPlatform;
|
|
1764
|
+
showPreviewPlatformSelector?: boolean;
|
|
1947
1765
|
styles?: string;
|
|
1948
1766
|
}
|
|
1949
|
-
declare const Header: ({ position, children, styles, }: HeaderProps) => React__default.JSX.Element;
|
|
1767
|
+
declare const Header: ({ position, children, onPreviewPlatformChange, previewPlatform, showPreviewPlatformSelector, styles, }: HeaderProps) => React__default.JSX.Element;
|
|
1950
1768
|
|
|
1951
1769
|
interface ContentProps {
|
|
1952
1770
|
children?: React__default.ReactNode;
|
|
@@ -2368,22 +2186,6 @@ interface MotionSurfaceProps {
|
|
|
2368
2186
|
}
|
|
2369
2187
|
declare function MotionSurface({ children, animationVariant, animationConfig, animated, overlay, overlayConfig, className, customAnimation: CustomAnimation, customOverlay: CustomOverlay, }: MotionSurfaceProps): React__default.JSX.Element;
|
|
2370
2188
|
|
|
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
2189
|
type AsyncLoadingType = "spinner" | "skeleton";
|
|
2388
2190
|
interface AsyncComponentWrapperProps {
|
|
2389
2191
|
children: React__default.ReactNode;
|
|
@@ -4100,6 +3902,12 @@ interface EUIDevLayoutProps {
|
|
|
4100
3902
|
header?: ReactNode;
|
|
4101
3903
|
footer?: ReactNode;
|
|
4102
3904
|
}
|
|
3905
|
+
type EUIDevPreviewPlatform = "web" | "native";
|
|
3906
|
+
interface EUIDevPreviewPlatformContextValue {
|
|
3907
|
+
platform: EUIDevPreviewPlatform;
|
|
3908
|
+
setPlatform: (platform: EUIDevPreviewPlatform) => void;
|
|
3909
|
+
}
|
|
3910
|
+
declare const useEUIDevPreviewPlatform: () => EUIDevPreviewPlatformContextValue;
|
|
4103
3911
|
declare function EUIDevLayout({ children, header, footer, }: EUIDevLayoutProps): React__default.JSX.Element;
|
|
4104
3912
|
|
|
4105
3913
|
interface CloudinaryConfig {
|
|
@@ -4131,14 +3939,14 @@ declare const enumValues: <T extends Record<string, string>>(enumObject: T) => s
|
|
|
4131
3939
|
declare const normalize: (path?: string) => string;
|
|
4132
3940
|
declare const isMatch: (itemPath?: string, currentPath?: string) => boolean;
|
|
4133
3941
|
|
|
4134
|
-
interface ResolveAppearanceStylesProps {
|
|
3942
|
+
interface ResolveAppearanceStylesProps<T> {
|
|
4135
3943
|
appearance?: Appearance;
|
|
4136
3944
|
variant: Variant;
|
|
4137
|
-
solid: Record<Variant,
|
|
4138
|
-
lite: Record<Variant,
|
|
4139
|
-
ghost: Record<Variant,
|
|
3945
|
+
solid: Record<Variant, T>;
|
|
3946
|
+
lite: Record<Variant, T>;
|
|
3947
|
+
ghost: Record<Variant, T>;
|
|
4140
3948
|
}
|
|
4141
|
-
declare function resolveAppearanceStyles({ appearance, variant, solid, lite, ghost, }: ResolveAppearanceStylesProps):
|
|
3949
|
+
declare function resolveAppearanceStyles<T = string>({ appearance, variant, solid, lite, ghost, }: ResolveAppearanceStylesProps<T>): T;
|
|
4142
3950
|
|
|
4143
3951
|
type ConfigSchemaSuccess<TData> = {
|
|
4144
3952
|
success: true;
|
|
@@ -4287,4 +4095,4 @@ type ConfigBootstrapProps = {
|
|
|
4287
4095
|
};
|
|
4288
4096
|
declare function ConfigBootstrap({ config, loadApp, ErrorComponent, LoadingComponent, loadingFallback, showStack, }: ConfigBootstrapProps): React$1.JSX.Element;
|
|
4289
4097
|
|
|
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 };
|
|
4098
|
+
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, CheckboxProps, 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, InputLabelProps, InputList, InputListGroup, InputProps, InputResponse, InputResponseProps, 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 };
|