elseware-ui 2.39.0 → 2.39.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/dist/index.css +760 -417
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +204 -279
- package/dist/index.d.ts +204 -279
- package/dist/index.js +1513 -574
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1218 -309
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { HTMLAttributes, ReactNode, JSX, FC, ComponentType, MouseEvent, Dispatch, SetStateAction, HTMLAttributeAnchorTarget, BlockquoteHTMLAttributes, AnchorHTMLAttributes,
|
|
2
|
+
import React__default, { HTMLAttributes, ReactNode, JSX, ImgHTMLAttributes, ComponentPropsWithoutRef, TdHTMLAttributes, TableHTMLAttributes, ThHTMLAttributes, FC, ComponentType, MouseEvent, Dispatch, SetStateAction, HTMLAttributeAnchorTarget, BlockquoteHTMLAttributes, AnchorHTMLAttributes, OlHTMLAttributes, LiHTMLAttributes, InputHTMLAttributes, DetailsHTMLAttributes, ClassAttributes, TextareaHTMLAttributes, FocusEventHandler, MutableRefObject } from 'react';
|
|
3
3
|
import * as d3 from 'd3';
|
|
4
4
|
import * as formik from 'formik';
|
|
5
5
|
import { FieldHookConfig } from 'formik';
|
|
6
|
+
import CodeMirror from '@uiw/react-codemirror';
|
|
7
|
+
import { codeMirrorPlugin, imagePlugin, linkDialogPlugin, MDXEditorProps, MDXEditorMethods } from '@mdxeditor/editor';
|
|
6
8
|
import { ClassValue } from 'clsx';
|
|
7
9
|
|
|
8
10
|
/**
|
|
@@ -1011,13 +1013,9 @@ interface CloudinaryImageProps extends BaseComponentProps<HTMLImageElement> {
|
|
|
1011
1013
|
}
|
|
1012
1014
|
declare function CloudinaryImage({ publicId, cloudName, secure, alt, fallbackSrc, loading, className, ...rest }: CloudinaryImageProps): React$1.JSX.Element;
|
|
1013
1015
|
|
|
1014
|
-
interface ImageProps extends
|
|
1015
|
-
alt?: string;
|
|
1016
|
-
src?: string;
|
|
1017
|
-
height?: number;
|
|
1018
|
-
width?: number;
|
|
1016
|
+
interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
1019
1017
|
}
|
|
1020
|
-
declare const Image: ({ alt, src, height, width, className, ...rest }: ImageProps) => React$1.JSX.Element;
|
|
1018
|
+
declare const Image: ({ alt, src, height, width, className, style, ...rest }: ImageProps) => React$1.JSX.Element;
|
|
1021
1019
|
|
|
1022
1020
|
interface InfoProps extends BaseComponentProps {
|
|
1023
1021
|
variant?: Variant$1;
|
|
@@ -1057,6 +1055,17 @@ interface ListItemProps {
|
|
|
1057
1055
|
}
|
|
1058
1056
|
declare const ListItem: ({ content, TypographyComponent, bulletType, renderBullet, index, align, className, }: ListItemProps) => React__default.JSX.Element;
|
|
1059
1057
|
|
|
1058
|
+
type ListRootElement = "div" | "ul" | "ol";
|
|
1059
|
+
type ListItemElementType = "div" | "li";
|
|
1060
|
+
type ListRootProps<T extends ListRootElement = "div"> = {
|
|
1061
|
+
as?: T;
|
|
1062
|
+
} & Omit<ComponentPropsWithoutRef<T>, "as">;
|
|
1063
|
+
type ListItemElementProps<T extends ListItemElementType = "div"> = {
|
|
1064
|
+
as?: T;
|
|
1065
|
+
} & Omit<ComponentPropsWithoutRef<T>, "as">;
|
|
1066
|
+
declare function ListRoot<T extends ListRootElement = "div">({ as: Component, className, ...props }: ListRootProps<T>): React$1.JSX.Element;
|
|
1067
|
+
declare function ListItemElement<T extends ListItemElementType = "div">({ as: Component, className, ...props }: ListItemElementProps<T>): React$1.JSX.Element;
|
|
1068
|
+
|
|
1060
1069
|
interface PriceTagProps extends BaseComponentProps {
|
|
1061
1070
|
price: number;
|
|
1062
1071
|
discount?: number;
|
|
@@ -1196,6 +1205,14 @@ interface TableProps<T> {
|
|
|
1196
1205
|
}
|
|
1197
1206
|
declare function Table<T extends Record<string, any>>({ title, columns, data, shape, }: TableProps<T>): React$1.JSX.Element;
|
|
1198
1207
|
|
|
1208
|
+
declare function TableFrame({ className, ...props }: HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
1209
|
+
declare function TableElement({ className, ...props }: TableHTMLAttributes<HTMLTableElement>): React$1.JSX.Element;
|
|
1210
|
+
declare function TableHead({ className, ...props }: HTMLAttributes<HTMLTableSectionElement>): React$1.JSX.Element;
|
|
1211
|
+
declare function TableBody({ className, ...props }: HTMLAttributes<HTMLTableSectionElement>): React$1.JSX.Element;
|
|
1212
|
+
declare function TableRow({ className, ...props }: HTMLAttributes<HTMLTableRowElement>): React$1.JSX.Element;
|
|
1213
|
+
declare function TableHeaderCell({ className, ...props }: ThHTMLAttributes<HTMLTableCellElement>): React$1.JSX.Element;
|
|
1214
|
+
declare function TableCell({ className, ...props }: TdHTMLAttributes<HTMLTableCellElement>): React$1.JSX.Element;
|
|
1215
|
+
|
|
1199
1216
|
interface TagProps extends BaseComponentProps {
|
|
1200
1217
|
text: string;
|
|
1201
1218
|
}
|
|
@@ -1218,6 +1235,13 @@ interface TypographyProps extends BaseComponentProps {
|
|
|
1218
1235
|
italic?: boolean;
|
|
1219
1236
|
}
|
|
1220
1237
|
|
|
1238
|
+
type QuoteElement = "div" | "blockquote";
|
|
1239
|
+
type QuoteStyleProps = Pick<TypographyProps, "children" | "level" | "variant" | "decoration" | "bold" | "italic">;
|
|
1240
|
+
type QuoteProps<T extends QuoteElement = "div"> = QuoteStyleProps & {
|
|
1241
|
+
as?: T;
|
|
1242
|
+
} & Omit<ComponentPropsWithoutRef<T>, keyof QuoteStyleProps | "as">;
|
|
1243
|
+
declare const Quote: <T extends QuoteElement = "div">({ as: Component, level, children, variant, decoration, bold, italic, className, ...rest }: QuoteProps<T>) => React$1.JSX.Element;
|
|
1244
|
+
|
|
1221
1245
|
interface DisplayProps extends TypographyProps {
|
|
1222
1246
|
level?: 1 | 2 | 3;
|
|
1223
1247
|
}
|
|
@@ -1229,8 +1253,6 @@ declare const Section: ({ level, children, variant, decoration, bold, italic, cl
|
|
|
1229
1253
|
|
|
1230
1254
|
declare const Paragraph: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
1231
1255
|
|
|
1232
|
-
declare const Quote: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
1233
|
-
|
|
1234
1256
|
declare const Caption: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
1235
1257
|
|
|
1236
1258
|
declare const Label: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
@@ -1246,7 +1268,7 @@ declare const Typography: {
|
|
|
1246
1268
|
Chapter: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
1247
1269
|
Section: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
1248
1270
|
Paragraph: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
1249
|
-
Quote: ({ level, children, variant, decoration, bold, italic, className, ...rest }:
|
|
1271
|
+
Quote: <T extends "div" | "blockquote" = "div">({ as: Component, level, children, variant, decoration, bold, italic, className, ...rest }: QuoteProps<T>) => React$1.JSX.Element;
|
|
1250
1272
|
Lead: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
1251
1273
|
Caption: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
1252
1274
|
Label: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => React$1.JSX.Element;
|
|
@@ -3244,6 +3266,32 @@ interface MarkdownListItemRenderProps extends LiHTMLAttributes<HTMLLIElement> {
|
|
|
3244
3266
|
}
|
|
3245
3267
|
interface MarkdownBlockquoteRenderProps extends BlockquoteHTMLAttributes<HTMLQuoteElement> {
|
|
3246
3268
|
}
|
|
3269
|
+
interface MarkdownParagraphRenderProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
3270
|
+
}
|
|
3271
|
+
interface MarkdownStrongRenderProps extends HTMLAttributes<HTMLElement> {
|
|
3272
|
+
}
|
|
3273
|
+
interface MarkdownEmphasisRenderProps extends HTMLAttributes<HTMLElement> {
|
|
3274
|
+
}
|
|
3275
|
+
interface MarkdownStrikethroughRenderProps extends HTMLAttributes<HTMLModElement> {
|
|
3276
|
+
}
|
|
3277
|
+
interface MarkdownTaskCheckboxRenderProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
3278
|
+
}
|
|
3279
|
+
interface MarkdownThematicBreakRenderProps extends HTMLAttributes<HTMLHRElement> {
|
|
3280
|
+
}
|
|
3281
|
+
interface MarkdownBreakRenderProps extends HTMLAttributes<HTMLBRElement> {
|
|
3282
|
+
}
|
|
3283
|
+
interface MarkdownDetailsRenderProps extends DetailsHTMLAttributes<HTMLDetailsElement> {
|
|
3284
|
+
}
|
|
3285
|
+
interface MarkdownSummaryRenderProps extends HTMLAttributes<HTMLElement> {
|
|
3286
|
+
}
|
|
3287
|
+
interface MarkdownFigureRenderProps extends HTMLAttributes<HTMLElement> {
|
|
3288
|
+
}
|
|
3289
|
+
interface MarkdownFigcaptionRenderProps extends HTMLAttributes<HTMLElement> {
|
|
3290
|
+
}
|
|
3291
|
+
interface MarkdownTableSectionRenderProps extends HTMLAttributes<HTMLTableSectionElement> {
|
|
3292
|
+
}
|
|
3293
|
+
interface MarkdownTableRowRenderProps extends HTMLAttributes<HTMLTableRowElement> {
|
|
3294
|
+
}
|
|
3247
3295
|
interface MarkdownComponentOverrides {
|
|
3248
3296
|
h1?: ComponentType<MarkdownHeadingRenderProps>;
|
|
3249
3297
|
h2?: ComponentType<MarkdownHeadingRenderProps>;
|
|
@@ -3262,6 +3310,20 @@ interface MarkdownComponentOverrides {
|
|
|
3262
3310
|
ul?: ComponentType<MarkdownListRenderProps>;
|
|
3263
3311
|
li?: ComponentType<MarkdownListItemRenderProps>;
|
|
3264
3312
|
blockquote?: ComponentType<MarkdownBlockquoteRenderProps>;
|
|
3313
|
+
p?: ComponentType<MarkdownParagraphRenderProps>;
|
|
3314
|
+
strong?: ComponentType<MarkdownStrongRenderProps>;
|
|
3315
|
+
em?: ComponentType<MarkdownEmphasisRenderProps>;
|
|
3316
|
+
del?: ComponentType<MarkdownStrikethroughRenderProps>;
|
|
3317
|
+
input?: ComponentType<MarkdownTaskCheckboxRenderProps>;
|
|
3318
|
+
hr?: ComponentType<MarkdownThematicBreakRenderProps>;
|
|
3319
|
+
br?: ComponentType<MarkdownBreakRenderProps>;
|
|
3320
|
+
details?: ComponentType<MarkdownDetailsRenderProps>;
|
|
3321
|
+
summary?: ComponentType<MarkdownSummaryRenderProps>;
|
|
3322
|
+
figure?: ComponentType<MarkdownFigureRenderProps>;
|
|
3323
|
+
figcaption?: ComponentType<MarkdownFigcaptionRenderProps>;
|
|
3324
|
+
thead?: ComponentType<MarkdownTableSectionRenderProps>;
|
|
3325
|
+
tbody?: ComponentType<MarkdownTableSectionRenderProps>;
|
|
3326
|
+
tr?: ComponentType<MarkdownTableRowRenderProps>;
|
|
3265
3327
|
[key: string]: ComponentType<any> | undefined;
|
|
3266
3328
|
}
|
|
3267
3329
|
interface MarkdownRendererOptions {
|
|
@@ -3442,279 +3504,13 @@ interface MarkdownRendererProps extends MarkdownRendererProps$1 {
|
|
|
3442
3504
|
headings?: MarkdownHeading$1[];
|
|
3443
3505
|
headingIdPrefix?: string;
|
|
3444
3506
|
}
|
|
3445
|
-
declare function MarkdownRenderer({ markdown, headings, headingIdPrefix, components, className, contentClassName, openLinksInNewTab, linkTarget, enableGfm, allowHtml, sanitizeHtml, showCopyCode, showHeadingAnchors, }: MarkdownRendererProps):
|
|
3507
|
+
declare function MarkdownRenderer({ markdown, headings, headingIdPrefix, components, className, contentClassName, openLinksInNewTab, linkTarget, enableGfm, allowHtml, sanitizeHtml, showCopyCode, showHeadingAnchors, }: MarkdownRendererProps): React$1.JSX.Element;
|
|
3446
3508
|
|
|
3447
3509
|
interface MarkdownHeadingProps extends MarkdownHeadingRenderProps {
|
|
3448
3510
|
showAnchor?: boolean;
|
|
3449
3511
|
children?: ReactNode;
|
|
3450
3512
|
}
|
|
3451
|
-
declare function MarkdownHeading({ id, level, children, className, showAnchor, ...props }: MarkdownHeadingProps):
|
|
3452
|
-
id: string | undefined;
|
|
3453
|
-
className: string;
|
|
3454
|
-
defaultChecked?: boolean | undefined;
|
|
3455
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
3456
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
3457
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
3458
|
-
accessKey?: string | undefined;
|
|
3459
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
3460
|
-
autoFocus?: boolean | undefined;
|
|
3461
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
3462
|
-
contextMenu?: string | undefined;
|
|
3463
|
-
dir?: string | undefined;
|
|
3464
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
3465
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
3466
|
-
hidden?: boolean | undefined;
|
|
3467
|
-
lang?: string | undefined;
|
|
3468
|
-
nonce?: string | undefined;
|
|
3469
|
-
slot?: string | undefined;
|
|
3470
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
3471
|
-
style?: React__default.CSSProperties | undefined;
|
|
3472
|
-
tabIndex?: number | undefined;
|
|
3473
|
-
title?: string | undefined;
|
|
3474
|
-
translate?: "yes" | "no" | undefined;
|
|
3475
|
-
radioGroup?: string | undefined;
|
|
3476
|
-
role?: React__default.AriaRole | undefined;
|
|
3477
|
-
about?: string | undefined;
|
|
3478
|
-
content?: string | undefined;
|
|
3479
|
-
datatype?: string | undefined;
|
|
3480
|
-
inlist?: any;
|
|
3481
|
-
prefix?: string | undefined;
|
|
3482
|
-
property?: string | undefined;
|
|
3483
|
-
rel?: string | undefined;
|
|
3484
|
-
resource?: string | undefined;
|
|
3485
|
-
rev?: string | undefined;
|
|
3486
|
-
typeof?: string | undefined;
|
|
3487
|
-
vocab?: string | undefined;
|
|
3488
|
-
autoCorrect?: string | undefined;
|
|
3489
|
-
autoSave?: string | undefined;
|
|
3490
|
-
color?: string | undefined;
|
|
3491
|
-
itemProp?: string | undefined;
|
|
3492
|
-
itemScope?: boolean | undefined;
|
|
3493
|
-
itemType?: string | undefined;
|
|
3494
|
-
itemID?: string | undefined;
|
|
3495
|
-
itemRef?: string | undefined;
|
|
3496
|
-
results?: number | undefined;
|
|
3497
|
-
security?: string | undefined;
|
|
3498
|
-
unselectable?: "on" | "off" | undefined;
|
|
3499
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
3500
|
-
is?: string | undefined;
|
|
3501
|
-
exportparts?: string | undefined;
|
|
3502
|
-
part?: string | undefined;
|
|
3503
|
-
"aria-activedescendant"?: string | undefined;
|
|
3504
|
-
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
3505
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
3506
|
-
"aria-braillelabel"?: string | undefined;
|
|
3507
|
-
"aria-brailleroledescription"?: string | undefined;
|
|
3508
|
-
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
3509
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
3510
|
-
"aria-colcount"?: number | undefined;
|
|
3511
|
-
"aria-colindex"?: number | undefined;
|
|
3512
|
-
"aria-colindextext"?: string | undefined;
|
|
3513
|
-
"aria-colspan"?: number | undefined;
|
|
3514
|
-
"aria-controls"?: string | undefined;
|
|
3515
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
3516
|
-
"aria-describedby"?: string | undefined;
|
|
3517
|
-
"aria-description"?: string | undefined;
|
|
3518
|
-
"aria-details"?: string | undefined;
|
|
3519
|
-
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
3520
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
3521
|
-
"aria-errormessage"?: string | undefined;
|
|
3522
|
-
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
3523
|
-
"aria-flowto"?: string | undefined;
|
|
3524
|
-
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
3525
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
3526
|
-
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
3527
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
3528
|
-
"aria-keyshortcuts"?: string | undefined;
|
|
3529
|
-
"aria-label"?: string | undefined;
|
|
3530
|
-
"aria-labelledby"?: string | undefined;
|
|
3531
|
-
"aria-level"?: number | undefined;
|
|
3532
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
3533
|
-
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
3534
|
-
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
3535
|
-
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
3536
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
3537
|
-
"aria-owns"?: string | undefined;
|
|
3538
|
-
"aria-placeholder"?: string | undefined;
|
|
3539
|
-
"aria-posinset"?: number | undefined;
|
|
3540
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
3541
|
-
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
3542
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
3543
|
-
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
3544
|
-
"aria-roledescription"?: string | undefined;
|
|
3545
|
-
"aria-rowcount"?: number | undefined;
|
|
3546
|
-
"aria-rowindex"?: number | undefined;
|
|
3547
|
-
"aria-rowindextext"?: string | undefined;
|
|
3548
|
-
"aria-rowspan"?: number | undefined;
|
|
3549
|
-
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
3550
|
-
"aria-setsize"?: number | undefined;
|
|
3551
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
3552
|
-
"aria-valuemax"?: number | undefined;
|
|
3553
|
-
"aria-valuemin"?: number | undefined;
|
|
3554
|
-
"aria-valuenow"?: number | undefined;
|
|
3555
|
-
"aria-valuetext"?: string | undefined;
|
|
3556
|
-
dangerouslySetInnerHTML?: {
|
|
3557
|
-
__html: string | TrustedHTML;
|
|
3558
|
-
} | undefined;
|
|
3559
|
-
onCopy?: React__default.ClipboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3560
|
-
onCopyCapture?: React__default.ClipboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3561
|
-
onCut?: React__default.ClipboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3562
|
-
onCutCapture?: React__default.ClipboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3563
|
-
onPaste?: React__default.ClipboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3564
|
-
onPasteCapture?: React__default.ClipboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3565
|
-
onCompositionEnd?: React__default.CompositionEventHandler<HTMLHeadingElement> | undefined;
|
|
3566
|
-
onCompositionEndCapture?: React__default.CompositionEventHandler<HTMLHeadingElement> | undefined;
|
|
3567
|
-
onCompositionStart?: React__default.CompositionEventHandler<HTMLHeadingElement> | undefined;
|
|
3568
|
-
onCompositionStartCapture?: React__default.CompositionEventHandler<HTMLHeadingElement> | undefined;
|
|
3569
|
-
onCompositionUpdate?: React__default.CompositionEventHandler<HTMLHeadingElement> | undefined;
|
|
3570
|
-
onCompositionUpdateCapture?: React__default.CompositionEventHandler<HTMLHeadingElement> | undefined;
|
|
3571
|
-
onFocus?: React__default.FocusEventHandler<HTMLHeadingElement> | undefined;
|
|
3572
|
-
onFocusCapture?: React__default.FocusEventHandler<HTMLHeadingElement> | undefined;
|
|
3573
|
-
onBlur?: React__default.FocusEventHandler<HTMLHeadingElement> | undefined;
|
|
3574
|
-
onBlurCapture?: React__default.FocusEventHandler<HTMLHeadingElement> | undefined;
|
|
3575
|
-
onChange?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3576
|
-
onChangeCapture?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3577
|
-
onBeforeInput?: React__default.InputEventHandler<HTMLHeadingElement> | undefined;
|
|
3578
|
-
onBeforeInputCapture?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3579
|
-
onInput?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3580
|
-
onInputCapture?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3581
|
-
onReset?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3582
|
-
onResetCapture?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3583
|
-
onSubmit?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3584
|
-
onSubmitCapture?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3585
|
-
onInvalid?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3586
|
-
onInvalidCapture?: React__default.FormEventHandler<HTMLHeadingElement> | undefined;
|
|
3587
|
-
onLoad?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3588
|
-
onLoadCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3589
|
-
onError?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3590
|
-
onErrorCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3591
|
-
onKeyDown?: React__default.KeyboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3592
|
-
onKeyDownCapture?: React__default.KeyboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3593
|
-
onKeyPress?: React__default.KeyboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3594
|
-
onKeyPressCapture?: React__default.KeyboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3595
|
-
onKeyUp?: React__default.KeyboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3596
|
-
onKeyUpCapture?: React__default.KeyboardEventHandler<HTMLHeadingElement> | undefined;
|
|
3597
|
-
onAbort?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3598
|
-
onAbortCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3599
|
-
onCanPlay?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3600
|
-
onCanPlayCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3601
|
-
onCanPlayThrough?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3602
|
-
onCanPlayThroughCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3603
|
-
onDurationChange?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3604
|
-
onDurationChangeCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3605
|
-
onEmptied?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3606
|
-
onEmptiedCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3607
|
-
onEncrypted?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3608
|
-
onEncryptedCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3609
|
-
onEnded?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3610
|
-
onEndedCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3611
|
-
onLoadedData?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3612
|
-
onLoadedDataCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3613
|
-
onLoadedMetadata?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3614
|
-
onLoadedMetadataCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3615
|
-
onLoadStart?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3616
|
-
onLoadStartCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3617
|
-
onPause?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3618
|
-
onPauseCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3619
|
-
onPlay?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3620
|
-
onPlayCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3621
|
-
onPlaying?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3622
|
-
onPlayingCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3623
|
-
onProgress?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3624
|
-
onProgressCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3625
|
-
onRateChange?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3626
|
-
onRateChangeCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3627
|
-
onSeeked?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3628
|
-
onSeekedCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3629
|
-
onSeeking?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3630
|
-
onSeekingCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3631
|
-
onStalled?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3632
|
-
onStalledCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3633
|
-
onSuspend?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3634
|
-
onSuspendCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3635
|
-
onTimeUpdate?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3636
|
-
onTimeUpdateCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3637
|
-
onVolumeChange?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3638
|
-
onVolumeChangeCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3639
|
-
onWaiting?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3640
|
-
onWaitingCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3641
|
-
onAuxClick?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3642
|
-
onAuxClickCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3643
|
-
onClick?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3644
|
-
onClickCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3645
|
-
onContextMenu?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3646
|
-
onContextMenuCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3647
|
-
onDoubleClick?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3648
|
-
onDoubleClickCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3649
|
-
onDrag?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3650
|
-
onDragCapture?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3651
|
-
onDragEnd?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3652
|
-
onDragEndCapture?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3653
|
-
onDragEnter?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3654
|
-
onDragEnterCapture?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3655
|
-
onDragExit?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3656
|
-
onDragExitCapture?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3657
|
-
onDragLeave?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3658
|
-
onDragLeaveCapture?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3659
|
-
onDragOver?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3660
|
-
onDragOverCapture?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3661
|
-
onDragStart?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3662
|
-
onDragStartCapture?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3663
|
-
onDrop?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3664
|
-
onDropCapture?: React__default.DragEventHandler<HTMLHeadingElement> | undefined;
|
|
3665
|
-
onMouseDown?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3666
|
-
onMouseDownCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3667
|
-
onMouseEnter?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3668
|
-
onMouseLeave?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3669
|
-
onMouseMove?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3670
|
-
onMouseMoveCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3671
|
-
onMouseOut?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3672
|
-
onMouseOutCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3673
|
-
onMouseOver?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3674
|
-
onMouseOverCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3675
|
-
onMouseUp?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3676
|
-
onMouseUpCapture?: React__default.MouseEventHandler<HTMLHeadingElement> | undefined;
|
|
3677
|
-
onSelect?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3678
|
-
onSelectCapture?: React__default.ReactEventHandler<HTMLHeadingElement> | undefined;
|
|
3679
|
-
onTouchCancel?: React__default.TouchEventHandler<HTMLHeadingElement> | undefined;
|
|
3680
|
-
onTouchCancelCapture?: React__default.TouchEventHandler<HTMLHeadingElement> | undefined;
|
|
3681
|
-
onTouchEnd?: React__default.TouchEventHandler<HTMLHeadingElement> | undefined;
|
|
3682
|
-
onTouchEndCapture?: React__default.TouchEventHandler<HTMLHeadingElement> | undefined;
|
|
3683
|
-
onTouchMove?: React__default.TouchEventHandler<HTMLHeadingElement> | undefined;
|
|
3684
|
-
onTouchMoveCapture?: React__default.TouchEventHandler<HTMLHeadingElement> | undefined;
|
|
3685
|
-
onTouchStart?: React__default.TouchEventHandler<HTMLHeadingElement> | undefined;
|
|
3686
|
-
onTouchStartCapture?: React__default.TouchEventHandler<HTMLHeadingElement> | undefined;
|
|
3687
|
-
onPointerDown?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3688
|
-
onPointerDownCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3689
|
-
onPointerMove?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3690
|
-
onPointerMoveCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3691
|
-
onPointerUp?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3692
|
-
onPointerUpCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3693
|
-
onPointerCancel?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3694
|
-
onPointerCancelCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3695
|
-
onPointerEnter?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3696
|
-
onPointerLeave?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3697
|
-
onPointerOver?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3698
|
-
onPointerOverCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3699
|
-
onPointerOut?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3700
|
-
onPointerOutCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3701
|
-
onGotPointerCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3702
|
-
onGotPointerCaptureCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3703
|
-
onLostPointerCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3704
|
-
onLostPointerCaptureCapture?: React__default.PointerEventHandler<HTMLHeadingElement> | undefined;
|
|
3705
|
-
onScroll?: React__default.UIEventHandler<HTMLHeadingElement> | undefined;
|
|
3706
|
-
onScrollCapture?: React__default.UIEventHandler<HTMLHeadingElement> | undefined;
|
|
3707
|
-
onWheel?: React__default.WheelEventHandler<HTMLHeadingElement> | undefined;
|
|
3708
|
-
onWheelCapture?: React__default.WheelEventHandler<HTMLHeadingElement> | undefined;
|
|
3709
|
-
onAnimationStart?: React__default.AnimationEventHandler<HTMLHeadingElement> | undefined;
|
|
3710
|
-
onAnimationStartCapture?: React__default.AnimationEventHandler<HTMLHeadingElement> | undefined;
|
|
3711
|
-
onAnimationEnd?: React__default.AnimationEventHandler<HTMLHeadingElement> | undefined;
|
|
3712
|
-
onAnimationEndCapture?: React__default.AnimationEventHandler<HTMLHeadingElement> | undefined;
|
|
3713
|
-
onAnimationIteration?: React__default.AnimationEventHandler<HTMLHeadingElement> | undefined;
|
|
3714
|
-
onAnimationIterationCapture?: React__default.AnimationEventHandler<HTMLHeadingElement> | undefined;
|
|
3715
|
-
onTransitionEnd?: React__default.TransitionEventHandler<HTMLHeadingElement> | undefined;
|
|
3716
|
-
onTransitionEndCapture?: React__default.TransitionEventHandler<HTMLHeadingElement> | undefined;
|
|
3717
|
-
}, Element>;
|
|
3513
|
+
declare function MarkdownHeading({ id, level, children, className, showAnchor, ...props }: MarkdownHeadingProps): React$1.FunctionComponentElement<TypographyProps>;
|
|
3718
3514
|
|
|
3719
3515
|
interface MarkdownCodeBlockProps extends MarkdownCodeBlockRenderProps {
|
|
3720
3516
|
showCopy?: boolean;
|
|
@@ -3731,12 +3527,72 @@ declare function MarkdownLink({ href, target, children, className, openLinksInNe
|
|
|
3731
3527
|
|
|
3732
3528
|
declare function MarkdownImage({ src, alt, title, className, ...props }: MarkdownImageRenderProps): React$1.JSX.Element | null;
|
|
3733
3529
|
|
|
3530
|
+
interface MarkdownTableSectionProps extends HTMLAttributes<HTMLTableSectionElement> {
|
|
3531
|
+
}
|
|
3532
|
+
interface MarkdownTableRowProps extends HTMLAttributes<HTMLTableRowElement> {
|
|
3533
|
+
}
|
|
3734
3534
|
declare function MarkdownTable({ children, className, ...props }: MarkdownTableRenderProps): React$1.JSX.Element;
|
|
3735
3535
|
declare function MarkdownTableCell({ children, className, ...props }: MarkdownTableCellRenderProps): React$1.JSX.Element;
|
|
3736
3536
|
declare function MarkdownTableHeaderCell({ children, className, ...props }: MarkdownTableHeaderCellRenderProps): React$1.JSX.Element;
|
|
3537
|
+
declare function MarkdownTableHead({ className, ...props }: MarkdownTableSectionProps): React$1.JSX.Element;
|
|
3538
|
+
declare function MarkdownTableBody({ className, ...props }: MarkdownTableSectionProps): React$1.JSX.Element;
|
|
3539
|
+
declare function MarkdownTableRow({ className, ...props }: MarkdownTableRowProps): React$1.JSX.Element;
|
|
3737
3540
|
|
|
3738
3541
|
declare function MarkdownBlockquote({ children, className, ...props }: MarkdownBlockquoteRenderProps): React$1.JSX.Element;
|
|
3739
3542
|
|
|
3543
|
+
interface MarkdownParagraphProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
3544
|
+
}
|
|
3545
|
+
declare function MarkdownParagraph({ children, className, ...props }: MarkdownParagraphProps): React$1.JSX.Element;
|
|
3546
|
+
|
|
3547
|
+
interface MarkdownStrongProps extends HTMLAttributes<HTMLElement> {
|
|
3548
|
+
}
|
|
3549
|
+
declare function MarkdownStrong({ className, ...props }: MarkdownStrongProps): React$1.JSX.Element;
|
|
3550
|
+
|
|
3551
|
+
interface MarkdownEmphasisProps extends HTMLAttributes<HTMLElement> {
|
|
3552
|
+
}
|
|
3553
|
+
declare function MarkdownEmphasis({ className, ...props }: MarkdownEmphasisProps): React$1.JSX.Element;
|
|
3554
|
+
|
|
3555
|
+
interface MarkdownStrikethroughProps extends HTMLAttributes<HTMLModElement> {
|
|
3556
|
+
}
|
|
3557
|
+
declare function MarkdownStrikethrough({ className, ...props }: MarkdownStrikethroughProps): React$1.JSX.Element;
|
|
3558
|
+
|
|
3559
|
+
interface MarkdownUnorderedListProps extends HTMLAttributes<HTMLUListElement> {
|
|
3560
|
+
}
|
|
3561
|
+
interface MarkdownOrderedListProps extends OlHTMLAttributes<HTMLOListElement> {
|
|
3562
|
+
}
|
|
3563
|
+
declare function MarkdownUnorderedList({ className, ...props }: MarkdownUnorderedListProps): React$1.JSX.Element;
|
|
3564
|
+
declare function MarkdownOrderedList({ className, ...props }: MarkdownOrderedListProps): React$1.JSX.Element;
|
|
3565
|
+
|
|
3566
|
+
interface MarkdownListItemProps extends LiHTMLAttributes<HTMLLIElement> {
|
|
3567
|
+
}
|
|
3568
|
+
declare function MarkdownListItem({ className, ...props }: MarkdownListItemProps): React$1.JSX.Element;
|
|
3569
|
+
|
|
3570
|
+
interface MarkdownTaskCheckboxProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
3571
|
+
}
|
|
3572
|
+
declare function MarkdownTaskCheckbox({ className, ...props }: MarkdownTaskCheckboxProps): React$1.JSX.Element;
|
|
3573
|
+
|
|
3574
|
+
interface MarkdownThematicBreakProps extends HTMLAttributes<HTMLHRElement> {
|
|
3575
|
+
}
|
|
3576
|
+
declare function MarkdownThematicBreak({ className, ...props }: MarkdownThematicBreakProps): React$1.JSX.Element;
|
|
3577
|
+
|
|
3578
|
+
interface MarkdownBreakProps extends HTMLAttributes<HTMLBRElement> {
|
|
3579
|
+
}
|
|
3580
|
+
declare function MarkdownBreak(props: MarkdownBreakProps): React$1.JSX.Element;
|
|
3581
|
+
|
|
3582
|
+
interface MarkdownDetailsProps extends DetailsHTMLAttributes<HTMLDetailsElement> {
|
|
3583
|
+
}
|
|
3584
|
+
interface MarkdownSummaryProps extends HTMLAttributes<HTMLElement> {
|
|
3585
|
+
}
|
|
3586
|
+
declare function MarkdownDetails({ className, ...props }: MarkdownDetailsProps): React$1.JSX.Element;
|
|
3587
|
+
declare function MarkdownSummary({ className, ...props }: MarkdownSummaryProps): React$1.JSX.Element;
|
|
3588
|
+
|
|
3589
|
+
interface MarkdownFigureProps extends HTMLAttributes<HTMLElement> {
|
|
3590
|
+
}
|
|
3591
|
+
interface MarkdownFigcaptionProps extends HTMLAttributes<HTMLElement> {
|
|
3592
|
+
}
|
|
3593
|
+
declare function MarkdownFigure({ className, ...props }: MarkdownFigureProps): React$1.JSX.Element;
|
|
3594
|
+
declare function MarkdownFigcaption({ children, className, ...props }: MarkdownFigcaptionProps): React$1.JSX.Element;
|
|
3595
|
+
|
|
3740
3596
|
interface MarkdownTOCProps {
|
|
3741
3597
|
title?: string;
|
|
3742
3598
|
markdown?: string;
|
|
@@ -3883,6 +3739,75 @@ type MarkdownFieldProps = Omit<MarkdownEditorProps, "name" | "value" | "defaultV
|
|
|
3883
3739
|
};
|
|
3884
3740
|
declare function MarkdownField({ name, validate, label, helperText, wrapperClassName, labelClassName, helperTextClassName, ...editorProps }: MarkdownFieldProps): React$1.JSX.Element;
|
|
3885
3741
|
|
|
3742
|
+
interface CodeMirrorMarkdownEditorProps {
|
|
3743
|
+
value?: string;
|
|
3744
|
+
defaultValue?: string;
|
|
3745
|
+
onChange?: (value: string) => void;
|
|
3746
|
+
onBlur?: () => void;
|
|
3747
|
+
id?: string;
|
|
3748
|
+
name?: string;
|
|
3749
|
+
placeholder?: string;
|
|
3750
|
+
disabled?: boolean;
|
|
3751
|
+
readOnly?: boolean;
|
|
3752
|
+
autoFocus?: boolean;
|
|
3753
|
+
minHeight?: number | string;
|
|
3754
|
+
maxHeight?: number | string;
|
|
3755
|
+
height?: string;
|
|
3756
|
+
dark?: boolean;
|
|
3757
|
+
className?: string;
|
|
3758
|
+
editorClassName?: string;
|
|
3759
|
+
extensions?: Parameters<typeof CodeMirror>[0]["extensions"];
|
|
3760
|
+
}
|
|
3761
|
+
declare function CodeMirrorMarkdownEditor({ value, defaultValue, onChange, onBlur, id, name, placeholder, disabled, readOnly, autoFocus, minHeight, maxHeight, height, dark, className, editorClassName, extensions, }: CodeMirrorMarkdownEditorProps): React$1.JSX.Element;
|
|
3762
|
+
|
|
3763
|
+
type MDXImagePluginOptions = NonNullable<Parameters<typeof imagePlugin>[0]>;
|
|
3764
|
+
type MDXLinkDialogPluginOptions = NonNullable<Parameters<typeof linkDialogPlugin>[0]>;
|
|
3765
|
+
type MDXCodeMirrorPluginOptions = NonNullable<Parameters<typeof codeMirrorPlugin>[0]>;
|
|
3766
|
+
interface MDXMarkdownEditorProps extends Omit<MDXEditorProps, "markdown" | "onChange" | "onBlur" | "readOnly" | "plugins" | "className" | "contentEditableClassName"> {
|
|
3767
|
+
value?: string;
|
|
3768
|
+
defaultValue?: string;
|
|
3769
|
+
onChange?: (value: string, initialMarkdownNormalize: boolean) => void;
|
|
3770
|
+
onBlur?: MDXEditorProps["onBlur"];
|
|
3771
|
+
id?: string;
|
|
3772
|
+
name?: string;
|
|
3773
|
+
disabled?: boolean;
|
|
3774
|
+
readOnly?: boolean;
|
|
3775
|
+
required?: boolean;
|
|
3776
|
+
minHeight?: number | string;
|
|
3777
|
+
maxHeight?: number | string;
|
|
3778
|
+
dark?: boolean;
|
|
3779
|
+
invalid?: boolean;
|
|
3780
|
+
ariaLabel?: string;
|
|
3781
|
+
ariaDescribedBy?: string;
|
|
3782
|
+
className?: string;
|
|
3783
|
+
editorClassName?: string;
|
|
3784
|
+
contentEditableClassName?: string;
|
|
3785
|
+
toolbarClassName?: string;
|
|
3786
|
+
plugins?: MDXEditorProps["plugins"];
|
|
3787
|
+
showToolbar?: boolean;
|
|
3788
|
+
toolbarPosition?: "top" | "bottom";
|
|
3789
|
+
toolbarContents?: () => ReactNode;
|
|
3790
|
+
defaultCodeBlockLanguage?: string;
|
|
3791
|
+
codeMirrorOptions?: Partial<MDXCodeMirrorPluginOptions>;
|
|
3792
|
+
imageOptions?: MDXImagePluginOptions;
|
|
3793
|
+
linkDialogOptions?: MDXLinkDialogPluginOptions;
|
|
3794
|
+
}
|
|
3795
|
+
declare const MDXMarkdownEditor: React$1.ForwardRefExoticComponent<MDXMarkdownEditorProps & React$1.RefAttributes<MDXEditorMethods>>;
|
|
3796
|
+
|
|
3797
|
+
type MDXMarkdownFieldValidator = (value: string) => string | undefined | void | Promise<string | undefined | void>;
|
|
3798
|
+
type MDXMarkdownFieldProps = Omit<MDXMarkdownEditorProps, "name" | "value" | "defaultValue" | "onChange" | "onBlur" | "invalid" | "ariaDescribedBy"> & {
|
|
3799
|
+
name: string;
|
|
3800
|
+
validate?: MDXMarkdownFieldValidator;
|
|
3801
|
+
label?: string;
|
|
3802
|
+
helperText?: string;
|
|
3803
|
+
validateOnChange?: boolean;
|
|
3804
|
+
validateOnBlur?: boolean;
|
|
3805
|
+
wrapperClassName?: string;
|
|
3806
|
+
labelClassName?: string;
|
|
3807
|
+
helperTextClassName?: string;
|
|
3808
|
+
};
|
|
3809
|
+
declare function MDXMarkdownField({ name, validate, label, helperText, validateOnChange, validateOnBlur, wrapperClassName, labelClassName, helperTextClassName, ...editorProps }: MDXMarkdownFieldProps): React$1.JSX.Element;
|
|
3810
|
+
|
|
3886
3811
|
type MarkdownLayoutTocPosition = "left" | "right";
|
|
3887
3812
|
interface MarkdownLayoutProps {
|
|
3888
3813
|
children?: React__default.ReactNode;
|
|
@@ -4185,4 +4110,4 @@ type ConfigBootstrapProps = {
|
|
|
4185
4110
|
};
|
|
4186
4111
|
declare function ConfigBootstrap({ config, loadApp, ErrorComponent, LoadingComponent, loadingFallback, showStack, }: ConfigBootstrapProps): React$1.JSX.Element;
|
|
4187
4112
|
|
|
4188
|
-
export { Accordion, type AnimationComponentProps, type AnimationVariant, type Appearance, AreaPlot, _default as AsyncComponentWrapper, Avatar, Backdrop, Badge, type BarChartProps, BarPlot, type BaseAnimationConfig, BaseChartDataSource, type BaseChartProps, type BaseComponentProps, type BaseMenuNode, type BaseOverlayConfig, type BaseTopNavNode, type BlobAnimationConfig, Block, BlockGroup, type BootstrapConfigLike, BoxNav, BoxNavItem, Brand, Breadcrumb, BreadcrumbItem, type BrowserRedirectURLOptions, Button, CHART_COLOR_PALETTE, CHART_DARK_THEME, CHART_DATA_MODES, CHART_DEFAULT_ACTIVE_DOT_RADIUS, CHART_DEFAULT_ANIMATION_DURATION, CHART_DEFAULT_BAR_RADIUS, CHART_DEFAULT_DOT_RADIUS, CHART_DEFAULT_HEIGHT, CHART_DEFAULT_MARGIN, CHART_DEFAULT_MAX_REALTIME_POINTS, CHART_DEFAULT_POLLING_INTERVAL, CHART_DEFAULT_STROKE_WIDTH, CHART_EMPTY_MESSAGE, CHART_ERROR_MESSAGE, CHART_LIGHT_THEME, CHART_LOADING_MESSAGE, CHART_STATUSES, CHART_STATUS_COLORS, CHART_VALUE_FORMATS, Caption, Card, CardContent, CardFooter, CardHeader, type CardinalPosition, Chapter, Chart, type ChartAction, type ChartBarConfig, type ChartChartType, type ChartColorName, ChartContainer, type ChartContainerProps, ChartContext, type ChartContextValue, type ChartDataHandler, type ChartDataMode, type ChartDataPoint, type ChartDataSource, ChartEmptyState, type ChartEmptyStateProps, type ChartErrorHandler, ChartErrorState, type ChartErrorStateProps, type ChartGaugeConfig, ChartHeader, type ChartHeaderProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartLoadingState, type ChartLoadingStateProps, ChartPanel, type ChartPanelConfig, type ChartPanelProps, type ChartPieConfig, type ChartPrimitive, type ChartProps, ChartProvider, type ChartProviderProps, type ChartRenderChartProps, type ChartSeries, type ChartSeriesColor, type ChartSeriesType, type ChartStatConfig, type ChartState, type ChartStatus, type ChartTheme, type ChartThemeChart, type ChartThemeMode, type ChartThemePanel, type ChartThemeText, type ChartThemeTooltip, ChartToolbar, type ChartToolbarProps, ChartTooltip, type ChartTooltipFormatterOptions, type ChartTooltipPayload, type ChartTooltipProps, type ChartUnsubscribe, type ChartValueFormat, Checkbox, Chip, type CloudinaryConfig, CloudinaryImage, CloudinaryProvider, type CloudinaryProviderProps, CloudinaryVideo, Code, type CommentActionsProps, type CommentAuthor, type CommentComponents, type CommentComposerProps, type CommentContentProps, type CommentDataSource, type CommentEntity, type CommentHeaderProps, type CommentItemProps, type CommentListProps, type CommentMenuProps, type CommentPageResult, type CommentPermissions, type CommentQueryOptions, type CommentRepliesToggleProps, type CommentReplyCache, CommentThread, type CommentThreadConfig, type CommentThreadProps, ConfigBootstrap, type ConfigBootstrapProps, type ConfigSchema, type ConfigSchemaFailure, type ConfigSchemaResult, type ConfigSchemaSuccess, type ConfigTransform, type ConfigTransformContext, Configurator, ConfiguratorError, type ConfiguratorFailure, type ConfiguratorOptions, type ConfiguratorState, type ConfiguratorSuccess, Content, ContentArea, type CornerPosition, type CreateCommentInput, type CreateHeadingSlugOptions, type CreateReviewInput, type CreateReviewReplyInput, type CreateURLResolverOptions, type CurrencyCode, DEFAULT_CHART_THEME, DEFAULT_REVIEW_THREAD_CONFIG, DataView, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, type DocumentationPanelProps, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, EnvErrorScreen, type EnvErrorScreenProps, type ExtractHeadingsOptions, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, type FormatChartValueOptions, type GaugeChartProps, GaugePlot, type GenerateHeadingNumbersOptions, GenericLayout, type GetAllowedOriginsOptions, type GetReviewsOptions, GlowWrapper, type GradientAnimationConfig, Graph, type GraphData, GraphEdge, type GraphEdgeType, type GraphLayoutType, GraphNode, type GraphNodeType, type GraphProps, GraphRenderer, Grid, Header, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout, type HorizontalPosition, type HyperRefTarget, Image, ImageInput, InfiniteScrollTrigger, Info, Input, InputFile, InputLabel, InputList, InputListGroup, InputResponse, Label, Layout, type LayoutContext, type LayoutExecutor, Lead, type LimitRealtimePointsOptions, LinePlot, Link, List, type ListAlign, type ListBulletType, type ListDirection, ListItem, type ListItemData, MarkdownBlockquote, type MarkdownBlockquoteRenderProps, MarkdownCodeBlock, type MarkdownCodeBlockMeta, type MarkdownCodeBlockProps, type MarkdownCodeBlockRenderProps, type MarkdownCodeLanguage, type MarkdownComponentOverrides, MarkdownContext, type MarkdownContextType, MarkdownDocsLayout, type MarkdownDocsLayoutProps, type MarkdownDocument, type MarkdownDocumentMeta, MarkdownEditor, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownElementProps, type MarkdownFeaturePluginConfig, MarkdownField, type MarkdownFieldProps, 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, type MarkdownListItemRenderProps, type MarkdownListRenderProps, 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, MarkdownTOC, MarkdownTOCItem, type MarkdownTOCItemProps, type MarkdownTOCOptions, type MarkdownTOCProps, MarkdownTable, MarkdownTableCell, type MarkdownTableCellRenderProps, MarkdownTableHeaderCell, type MarkdownTableHeaderCellRenderProps, type MarkdownTableRenderProps, type MarkdownTheme, MarkdownToolbar, type MarkdownToolbarAction, type MarkdownToolbarActionId, type MarkdownToolbarProps, MarkdownViewer, type MarkdownViewerProps, type MaybePromise, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type MyReviewPanelProps, type NavItem, type NormalizeChartDataOptions, type NormalizeMarkdownOptions, type NormalizedChartDataPoint, type NormalizedToastStatus, type NumberedMarkdownHeading, NumericRating, type OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, PriceTag, ProgressBar, type ProgressBarProps, ProgressBarRating, Quote, Radio, type RawChartDataPoint, type RawReviewAuthorLike, type RawReviewLike, type RawReviewReplyLike, RealtimeChartDataSource, type RealtimeChartDataSourceConfig, type RealtimeChartDataSourceOptions, type ReplyComposerProps, type ResolveChartColorOptions, type ResolvedChartSeries, type ReviewActionsProps, type ReviewAuthor, type ReviewComposerProps, type ReviewContentProps, type ReviewDataSource, type ReviewEmptyStateProps, type ReviewEntity, type ReviewFormProps, type ReviewFormValues, type ReviewHeaderProps, type ReviewItemProps, type ReviewListProps, type ReviewMenuProps, type ReviewPageResult, type ReviewPermissions, type ReviewRatingProps, type ReviewRecommendationProps, type ReviewReplyComposerProps, type ReviewReplyContentProps, type ReviewReplyEntity, type ReviewReplyExternalDelete, type ReviewReplyExternalUpdate, type ReviewReplyHeaderProps, type ReviewReplyItemProps, type ReviewReplyListProps, type ReviewReplyMenuProps, type ReviewReplyPermissions, ReviewThread, type ReviewThreadComponents, type ReviewThreadConfig, type ReviewThreadProps, type RootAppModule, RouteTab, type RouteTabMode, RouteTabs, type SafeRedirectOptions, type SanitizeHeadingOptions, ScatterPlot, ScrollToTop, Section, Select, type SendToastOptions, type Shape$1 as Shape, ShapeSwitch, ShowMore, Sidebar, SidebarLayout, SidemenuLayout, type Size$1 as Size, Skeleton, Slider, Spinner, type SpinnerDirection, type SpinnerProps, type SpinnerType, StarRating, StarRatingDistribution, StarRatingInput, type StatChartProps, StatPlot, StaticChartDataSource, type StaticChartDataSourceConfig, type StaticChartDataSourceOptions, Switch, TNDropdown, TNDropdownItem, TNDropdownTitle, TNGroup, Table, Tag, Tags, TextArea, type TextDecoration, ThemeContext, ThemeProvider, ThemeSwitch, TitleBanner, type TitleBannerLevel, Toast, type ToastItemData, type ToastProps, type ToggleReactionResult, Tooltip, TopNav, type TopNavComponents, type TopNavGroupNode, type TopNavItemNode, type TopNavNode, type TopNavProps, type TopNavTitleNode, Transition, TransitionAccordion, TransitionBase, TransitionDropdown, TransitionFade, TransitionFadeIn, TransitionScale, TransitionSlide, Typography, type URLMap, type URLMapSource, type URLQueryParams, type URLQueryValue, UnderConstructionBanner, type UpdateCommentInput, type UpdateReviewInput, type UpdateReviewReplyInput, type UseActiveHeadingOptions, type UseActiveHeadingResult, type UseChartDataOptions, type UseChartDataReturn, type UseChartPollingOptions, type UseChartRealtimeOptions, type UseChartSeriesOptions, type UseChartThemeOptions, type UseMarkdownHeadingsOptions, type UseMarkdownHeadingsResult, type UseMarkdownOptions, ValueBadge, type Variant$1 as Variant, type VerticalPosition, WorldMap, WorldMapCountryTable, YoutubeVideo as YoutubeVideoPlayer, addReplyToCache, addReviewReply, appendReview, applyReactionState, assertAbsoluteURL, buildURL, canDeleteReview, canDeleteReviewReply, canEditReview, canEditReviewReply, canReplyToReview, canReportReview, canReportReviewReply, chartReducer, cn, createConfigurator, createForceLayout, createGridLayout, createHeadingSlug, createInitialChartState, createTreeLayout, createURLResolver, decrementReplyCount, enumValues, euiToast, extractHeadings, findReview, formatChartValue, formatCommentDate, formatConfigError, formatReviewDate, generateHeadingNumbers, getAllowedOrigins, getBrowserHref, getBrowserOrigin, getBrowserRedirectURL, getCurrencySymbol, getLayout, getOptimisticDislikeState, getOptimisticLikeState, getSafeRedirect, hasReviewReply, incrementReplyCount, isMatch, isRenderFn, limitRealtimePoints, normalize, normalizeChartData, normalizeChartDataPoint, normalizeMarkdown, normalizeReview, normalizeReviewAuthor, normalizeReviewReply, parseJson, parseJsonRecord, parseUrlMap, prependReview, registerLayout, removeComment, removeCommentTreeFromCache, removeReview, removeReviewReply, replaceRealtimePoints, replaceReview, replaceReviewReply, resolveAppearanceStyles, resolveChartColor, resolveChartColors, resolveWithGlobal, sanitizeHeading, sendToast, slugify, toConfiguratorError, updateComment, updateReplyCacheComment, updateReview, updateReviewReply, upsertReview, useActiveHeading, useChartContext, useChartData, useChartPolling, useChartRealtime, useChartSeries, useChartTheme, useClickOutside, useCloudinaryConfig, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useMarkdown, useMarkdownHeadings, useModal, useReviewThreadState, useTheme };
|
|
4113
|
+
export { Accordion, type AnimationComponentProps, type AnimationVariant, type Appearance, AreaPlot, _default as AsyncComponentWrapper, Avatar, Backdrop, Badge, type BarChartProps, BarPlot, type BaseAnimationConfig, BaseChartDataSource, type BaseChartProps, type BaseComponentProps, type BaseMenuNode, type BaseOverlayConfig, type BaseTopNavNode, type BlobAnimationConfig, Block, BlockGroup, type BootstrapConfigLike, BoxNav, BoxNavItem, Brand, Breadcrumb, BreadcrumbItem, type BrowserRedirectURLOptions, Button, CHART_COLOR_PALETTE, CHART_DARK_THEME, CHART_DATA_MODES, CHART_DEFAULT_ACTIVE_DOT_RADIUS, CHART_DEFAULT_ANIMATION_DURATION, CHART_DEFAULT_BAR_RADIUS, CHART_DEFAULT_DOT_RADIUS, CHART_DEFAULT_HEIGHT, CHART_DEFAULT_MARGIN, CHART_DEFAULT_MAX_REALTIME_POINTS, CHART_DEFAULT_POLLING_INTERVAL, CHART_DEFAULT_STROKE_WIDTH, CHART_EMPTY_MESSAGE, CHART_ERROR_MESSAGE, CHART_LIGHT_THEME, CHART_LOADING_MESSAGE, CHART_STATUSES, CHART_STATUS_COLORS, CHART_VALUE_FORMATS, Caption, Card, CardContent, CardFooter, CardHeader, type CardinalPosition, Chapter, Chart, type ChartAction, type ChartBarConfig, type ChartChartType, type ChartColorName, ChartContainer, type ChartContainerProps, ChartContext, type ChartContextValue, type ChartDataHandler, type ChartDataMode, type ChartDataPoint, type ChartDataSource, ChartEmptyState, type ChartEmptyStateProps, type ChartErrorHandler, ChartErrorState, type ChartErrorStateProps, type ChartGaugeConfig, ChartHeader, type ChartHeaderProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartLoadingState, type ChartLoadingStateProps, ChartPanel, type ChartPanelConfig, type ChartPanelProps, type ChartPieConfig, type ChartPrimitive, type ChartProps, ChartProvider, type ChartProviderProps, type ChartRenderChartProps, type ChartSeries, type ChartSeriesColor, type ChartSeriesType, type ChartStatConfig, type ChartState, type ChartStatus, type ChartTheme, type ChartThemeChart, type ChartThemeMode, type ChartThemePanel, type ChartThemeText, type ChartThemeTooltip, ChartToolbar, type ChartToolbarProps, ChartTooltip, type ChartTooltipFormatterOptions, type ChartTooltipPayload, type ChartTooltipProps, type ChartUnsubscribe, type ChartValueFormat, Checkbox, Chip, type CloudinaryConfig, CloudinaryImage, CloudinaryProvider, type CloudinaryProviderProps, CloudinaryVideo, Code, CodeMirrorMarkdownEditor, type CodeMirrorMarkdownEditorProps, type CommentActionsProps, type CommentAuthor, type CommentComponents, type CommentComposerProps, type CommentContentProps, type CommentDataSource, type CommentEntity, type CommentHeaderProps, type CommentItemProps, type CommentListProps, type CommentMenuProps, type CommentPageResult, type CommentPermissions, type CommentQueryOptions, type CommentRepliesToggleProps, type CommentReplyCache, CommentThread, type CommentThreadConfig, type CommentThreadProps, ConfigBootstrap, type ConfigBootstrapProps, type ConfigSchema, type ConfigSchemaFailure, type ConfigSchemaResult, type ConfigSchemaSuccess, type ConfigTransform, type ConfigTransformContext, Configurator, ConfiguratorError, type ConfiguratorFailure, type ConfiguratorOptions, type ConfiguratorState, type ConfiguratorSuccess, Content, ContentArea, type CornerPosition, type CreateCommentInput, type CreateHeadingSlugOptions, type CreateReviewInput, type CreateReviewReplyInput, type CreateURLResolverOptions, type CurrencyCode, DEFAULT_CHART_THEME, DEFAULT_REVIEW_THREAD_CONFIG, DataView, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, type DocumentationPanelProps, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, EnvErrorScreen, type EnvErrorScreenProps, type ExtractHeadingsOptions, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, type FormatChartValueOptions, type GaugeChartProps, GaugePlot, type GenerateHeadingNumbersOptions, GenericLayout, type GetAllowedOriginsOptions, type GetReviewsOptions, GlowWrapper, type GradientAnimationConfig, Graph, type GraphData, GraphEdge, type GraphEdgeType, type GraphLayoutType, GraphNode, type GraphNodeType, type GraphProps, GraphRenderer, Grid, Header, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout, type HorizontalPosition, type HyperRefTarget, Image, ImageInput, InfiniteScrollTrigger, Info, Input, InputFile, InputLabel, InputList, InputListGroup, InputResponse, Label, Layout, type LayoutContext, type LayoutExecutor, Lead, type LimitRealtimePointsOptions, LinePlot, Link, List, type ListAlign, type ListBulletType, type ListDirection, ListItem, type ListItemData, ListItemElement, type ListItemElementProps, ListRoot, type ListRootProps, type MDXCodeMirrorPluginOptions, type MDXImagePluginOptions, type MDXLinkDialogPluginOptions, MDXMarkdownEditor, type MDXMarkdownEditorProps, MDXMarkdownField, type MDXMarkdownFieldProps, type MDXMarkdownFieldValidator, MarkdownBlockquote, type MarkdownBlockquoteRenderProps, MarkdownBreak, type MarkdownBreakProps, type MarkdownBreakRenderProps, MarkdownCodeBlock, type MarkdownCodeBlockMeta, type MarkdownCodeBlockProps, type MarkdownCodeBlockRenderProps, type MarkdownCodeLanguage, type MarkdownComponentOverrides, MarkdownContext, type MarkdownContextType, MarkdownDetails, type MarkdownDetailsProps, type MarkdownDetailsRenderProps, MarkdownDocsLayout, type MarkdownDocsLayoutProps, type MarkdownDocument, type MarkdownDocumentMeta, MarkdownEditor, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownElementProps, MarkdownEmphasis, type MarkdownEmphasisProps, type MarkdownEmphasisRenderProps, type MarkdownFeaturePluginConfig, MarkdownField, type MarkdownFieldProps, MarkdownFigcaption, type MarkdownFigcaptionProps, type MarkdownFigcaptionRenderProps, MarkdownFigure, type MarkdownFigureProps, type MarkdownFigureRenderProps, type MarkdownFrontmatter, type MarkdownHeading$1 as MarkdownHeading, MarkdownHeading as MarkdownHeadingComponent, type MarkdownHeadingLevel, type MarkdownHeadingProps, type MarkdownHeadingRenderProps, MarkdownImage, type MarkdownImageMeta, type MarkdownImageRenderProps, MarkdownInlineCode, type MarkdownInlineCodeRenderProps, MarkdownLayout, type MarkdownLayoutProps, type MarkdownLayoutTocPosition, MarkdownLink, type MarkdownLinkProps, type MarkdownLinkRenderProps, type MarkdownLinkTarget, MarkdownListItem, type MarkdownListItemProps, type MarkdownListItemRenderProps, type MarkdownListRenderProps, MarkdownOrderedList, type MarkdownOrderedListProps, MarkdownParagraph, type MarkdownParagraphProps, type MarkdownParagraphRenderProps, type MarkdownPluginConfig, type MarkdownPluginHandler, type MarkdownPluginInput, type MarkdownPluginList, MarkdownPreviewPane, type MarkdownPreviewPaneProps, MarkdownProvider, type MarkdownProviderProps, type MarkdownRehypePluginConfig, type MarkdownRemarkPluginConfig, MarkdownRenderer, type MarkdownRendererOptions, type MarkdownRendererProps, type MarkdownRendererState, MarkdownSourceEditor, type MarkdownSourceEditorProps, MarkdownSplitEditor, type MarkdownSplitEditorProps, MarkdownStrikethrough, type MarkdownStrikethroughProps, type MarkdownStrikethroughRenderProps, MarkdownStrong, type MarkdownStrongProps, type MarkdownStrongRenderProps, MarkdownSummary, type MarkdownSummaryProps, type MarkdownSummaryRenderProps, MarkdownTOC, MarkdownTOCItem, type MarkdownTOCItemProps, type MarkdownTOCOptions, type MarkdownTOCProps, MarkdownTable, MarkdownTableBody, MarkdownTableCell, type MarkdownTableCellRenderProps, MarkdownTableHead, MarkdownTableHeaderCell, type MarkdownTableHeaderCellRenderProps, type MarkdownTableRenderProps, MarkdownTableRow, type MarkdownTableRowProps, type MarkdownTableRowRenderProps, type MarkdownTableSectionProps, type MarkdownTableSectionRenderProps, MarkdownTaskCheckbox, type MarkdownTaskCheckboxProps, type MarkdownTaskCheckboxRenderProps, MarkdownThematicBreak, type MarkdownThematicBreakProps, type MarkdownThematicBreakRenderProps, type MarkdownTheme, MarkdownToolbar, type MarkdownToolbarAction, type MarkdownToolbarActionId, type MarkdownToolbarProps, MarkdownUnorderedList, type MarkdownUnorderedListProps, MarkdownViewer, type MarkdownViewerProps, type MaybePromise, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type MyReviewPanelProps, type NavItem, type NormalizeChartDataOptions, type NormalizeMarkdownOptions, type NormalizedChartDataPoint, type NormalizedToastStatus, type NumberedMarkdownHeading, NumericRating, type OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, PriceTag, ProgressBar, type ProgressBarProps, ProgressBarRating, Quote, Radio, type RawChartDataPoint, type RawReviewAuthorLike, type RawReviewLike, type RawReviewReplyLike, RealtimeChartDataSource, type RealtimeChartDataSourceConfig, type RealtimeChartDataSourceOptions, type ReplyComposerProps, type ResolveChartColorOptions, type ResolvedChartSeries, type ReviewActionsProps, type ReviewAuthor, type ReviewComposerProps, type ReviewContentProps, type ReviewDataSource, type ReviewEmptyStateProps, type ReviewEntity, type ReviewFormProps, type ReviewFormValues, type ReviewHeaderProps, type ReviewItemProps, type ReviewListProps, type ReviewMenuProps, type ReviewPageResult, type ReviewPermissions, type ReviewRatingProps, type ReviewRecommendationProps, type ReviewReplyComposerProps, type ReviewReplyContentProps, type ReviewReplyEntity, type ReviewReplyExternalDelete, type ReviewReplyExternalUpdate, type ReviewReplyHeaderProps, type ReviewReplyItemProps, type ReviewReplyListProps, type ReviewReplyMenuProps, type ReviewReplyPermissions, ReviewThread, type ReviewThreadComponents, type ReviewThreadConfig, type ReviewThreadProps, type RootAppModule, RouteTab, type RouteTabMode, RouteTabs, type SafeRedirectOptions, type SanitizeHeadingOptions, ScatterPlot, ScrollToTop, Section, Select, type SendToastOptions, type Shape$1 as Shape, ShapeSwitch, ShowMore, Sidebar, SidebarLayout, SidemenuLayout, type Size$1 as Size, Skeleton, Slider, Spinner, type SpinnerDirection, type SpinnerProps, type SpinnerType, StarRating, StarRatingDistribution, StarRatingInput, type StatChartProps, StatPlot, StaticChartDataSource, type StaticChartDataSourceConfig, type StaticChartDataSourceOptions, Switch, TNDropdown, TNDropdownItem, TNDropdownTitle, TNGroup, Table, TableBody, TableCell, TableElement, TableFrame, TableHead, TableHeaderCell, TableRow, Tag, Tags, TextArea, type TextDecoration, ThemeContext, ThemeProvider, ThemeSwitch, TitleBanner, type TitleBannerLevel, Toast, type ToastItemData, type ToastProps, type ToggleReactionResult, Tooltip, TopNav, type TopNavComponents, type TopNavGroupNode, type TopNavItemNode, type TopNavNode, type TopNavProps, type TopNavTitleNode, Transition, TransitionAccordion, TransitionBase, TransitionDropdown, TransitionFade, TransitionFadeIn, TransitionScale, TransitionSlide, Typography, type URLMap, type URLMapSource, type URLQueryParams, type URLQueryValue, UnderConstructionBanner, type UpdateCommentInput, type UpdateReviewInput, type UpdateReviewReplyInput, type UseActiveHeadingOptions, type UseActiveHeadingResult, type UseChartDataOptions, type UseChartDataReturn, type UseChartPollingOptions, type UseChartRealtimeOptions, type UseChartSeriesOptions, type UseChartThemeOptions, type UseMarkdownHeadingsOptions, type UseMarkdownHeadingsResult, type UseMarkdownOptions, ValueBadge, type Variant$1 as Variant, type VerticalPosition, WorldMap, WorldMapCountryTable, YoutubeVideo as YoutubeVideoPlayer, addReplyToCache, addReviewReply, appendReview, applyReactionState, assertAbsoluteURL, buildURL, canDeleteReview, canDeleteReviewReply, canEditReview, canEditReviewReply, canReplyToReview, canReportReview, canReportReviewReply, chartReducer, cn, createConfigurator, createForceLayout, createGridLayout, createHeadingSlug, createInitialChartState, createTreeLayout, createURLResolver, decrementReplyCount, enumValues, euiToast, extractHeadings, findReview, formatChartValue, formatCommentDate, formatConfigError, formatReviewDate, generateHeadingNumbers, getAllowedOrigins, getBrowserHref, getBrowserOrigin, getBrowserRedirectURL, getCurrencySymbol, getLayout, getOptimisticDislikeState, getOptimisticLikeState, getSafeRedirect, hasReviewReply, incrementReplyCount, isMatch, isRenderFn, limitRealtimePoints, normalize, normalizeChartData, normalizeChartDataPoint, normalizeMarkdown, normalizeReview, normalizeReviewAuthor, normalizeReviewReply, parseJson, parseJsonRecord, parseUrlMap, prependReview, registerLayout, removeComment, removeCommentTreeFromCache, removeReview, removeReviewReply, replaceRealtimePoints, replaceReview, replaceReviewReply, resolveAppearanceStyles, resolveChartColor, resolveChartColors, resolveWithGlobal, sanitizeHeading, sendToast, slugify, toConfiguratorError, updateComment, updateReplyCacheComment, updateReview, updateReviewReply, upsertReview, useActiveHeading, useChartContext, useChartData, useChartPolling, useChartRealtime, useChartSeries, useChartTheme, useClickOutside, useCloudinaryConfig, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useMarkdown, useMarkdownHeadings, useModal, useReviewThreadState, useTheme };
|