elseware-ui 2.36.2 → 2.36.5
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 +351 -141
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +81 -13
- package/dist/index.d.ts +81 -13
- package/dist/index.js +607 -422
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +431 -251
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -4
package/dist/index.d.mts
CHANGED
|
@@ -1636,21 +1636,71 @@ declare const euiToast: {
|
|
|
1636
1636
|
};
|
|
1637
1637
|
declare function sendToast(data?: SendToastOptions): string;
|
|
1638
1638
|
|
|
1639
|
+
interface TransitionBaseProps {
|
|
1640
|
+
visibility: boolean;
|
|
1641
|
+
children?: ReactNode;
|
|
1642
|
+
enterClassName?: string;
|
|
1643
|
+
leaveClassName?: string;
|
|
1644
|
+
visibleClassName?: string;
|
|
1645
|
+
hiddenClassName?: string;
|
|
1646
|
+
leaveDuration?: number;
|
|
1647
|
+
unmountOnExit?: boolean;
|
|
1648
|
+
}
|
|
1649
|
+
declare function TransitionBase({ visibility, children, enterClassName, leaveClassName, visibleClassName, hiddenClassName, leaveDuration, unmountOnExit, }: TransitionBaseProps): React__default.JSX.Element | null;
|
|
1650
|
+
|
|
1639
1651
|
interface TransitionDropdownProps {
|
|
1640
1652
|
visibility: boolean;
|
|
1641
1653
|
children?: ReactNode;
|
|
1654
|
+
leaveDuration?: number;
|
|
1642
1655
|
}
|
|
1643
|
-
declare function TransitionDropdown({ visibility, children }: TransitionDropdownProps): React__default.JSX.Element;
|
|
1656
|
+
declare function TransitionDropdown({ visibility, children, leaveDuration, }: TransitionDropdownProps): React__default.JSX.Element;
|
|
1657
|
+
|
|
1658
|
+
interface TransitionFadeProps {
|
|
1659
|
+
visibility: boolean;
|
|
1660
|
+
children?: ReactNode;
|
|
1661
|
+
leaveDuration?: number;
|
|
1662
|
+
}
|
|
1663
|
+
declare function TransitionFade({ visibility, children, leaveDuration, }: TransitionFadeProps): React__default.JSX.Element;
|
|
1644
1664
|
|
|
1645
1665
|
interface TransitionFadeInProps {
|
|
1646
1666
|
visibility: boolean;
|
|
1647
1667
|
children?: ReactNode;
|
|
1668
|
+
leaveDuration?: number;
|
|
1669
|
+
}
|
|
1670
|
+
declare function TransitionFadeIn({ visibility, children, leaveDuration, }: TransitionFadeInProps): React__default.JSX.Element;
|
|
1671
|
+
|
|
1672
|
+
interface TransitionScaleProps {
|
|
1673
|
+
visibility: boolean;
|
|
1674
|
+
children?: ReactNode;
|
|
1675
|
+
leaveDuration?: number;
|
|
1676
|
+
}
|
|
1677
|
+
declare function TransitionScale({ visibility, children, leaveDuration, }: TransitionScaleProps): React__default.JSX.Element;
|
|
1678
|
+
|
|
1679
|
+
type TransitionSlideSide = "left" | "right" | "top" | "bottom";
|
|
1680
|
+
interface TransitionSlideProps {
|
|
1681
|
+
visibility: boolean;
|
|
1682
|
+
side?: TransitionSlideSide;
|
|
1683
|
+
children?: ReactNode;
|
|
1684
|
+
leaveDuration?: number;
|
|
1685
|
+
}
|
|
1686
|
+
declare function TransitionSlide({ visibility, side, children, leaveDuration, }: TransitionSlideProps): React__default.JSX.Element;
|
|
1687
|
+
|
|
1688
|
+
interface TransitionAccordionProps {
|
|
1689
|
+
visibility: boolean;
|
|
1690
|
+
children?: ReactNode;
|
|
1691
|
+
enterDuration?: number;
|
|
1692
|
+
leaveDuration?: number;
|
|
1648
1693
|
}
|
|
1649
|
-
declare function
|
|
1694
|
+
declare function TransitionAccordion({ visibility, children, enterDuration, leaveDuration, }: TransitionAccordionProps): React__default.JSX.Element | null;
|
|
1650
1695
|
|
|
1651
1696
|
declare const Transition: {
|
|
1697
|
+
TransitionBase: typeof TransitionBase;
|
|
1652
1698
|
TransitionDropdown: typeof TransitionDropdown;
|
|
1699
|
+
TransitionFade: typeof TransitionFade;
|
|
1653
1700
|
TransitionFadeIn: typeof TransitionFadeIn;
|
|
1701
|
+
TransitionScale: typeof TransitionScale;
|
|
1702
|
+
TransitionSlide: typeof TransitionSlide;
|
|
1703
|
+
TransitionAccordion: typeof TransitionAccordion;
|
|
1654
1704
|
};
|
|
1655
1705
|
|
|
1656
1706
|
interface ContentAreaProps {
|
|
@@ -1786,8 +1836,10 @@ interface DrawerProps {
|
|
|
1786
1836
|
side?: "left" | "right" | "top" | "bottom";
|
|
1787
1837
|
handleClose: () => void;
|
|
1788
1838
|
styles?: string;
|
|
1839
|
+
showBackdrop?: boolean;
|
|
1840
|
+
closeOnBackdropClick?: boolean;
|
|
1789
1841
|
}
|
|
1790
|
-
declare const Drawer: ({ children, visibility, side, handleClose, styles, }: DrawerProps) => React__default.JSX.Element;
|
|
1842
|
+
declare const Drawer: ({ children, visibility, side, handleClose, styles, showBackdrop, closeOnBackdropClick, }: DrawerProps) => React__default.JSX.Element;
|
|
1791
1843
|
|
|
1792
1844
|
interface DrawerTogglerProps {
|
|
1793
1845
|
icon?: ReactNode;
|
|
@@ -2019,6 +2071,11 @@ interface RouteTabsProps extends BaseComponentProps {
|
|
|
2019
2071
|
}
|
|
2020
2072
|
declare function RouteTabs({ navData, children, onTabClick, mode, defaultActive, animated, className, ...rest }: RouteTabsProps): React$1.JSX.Element;
|
|
2021
2073
|
|
|
2074
|
+
interface UnderConstructionBannerProps {
|
|
2075
|
+
text?: string;
|
|
2076
|
+
}
|
|
2077
|
+
declare function UnderConstructionBanner({ text, }: UnderConstructionBannerProps): React__default.JSX.Element;
|
|
2078
|
+
|
|
2022
2079
|
interface ModalProps {
|
|
2023
2080
|
title: string;
|
|
2024
2081
|
show: boolean;
|
|
@@ -2034,11 +2091,6 @@ interface ModalProps {
|
|
|
2034
2091
|
}
|
|
2035
2092
|
declare function Modal({ title, show, handleOnClose, children, isLoading, isSuccess, isError, error, styles, enableCloseOnClickOutside, shape, }: ModalProps): React__default.JSX.Element;
|
|
2036
2093
|
|
|
2037
|
-
interface UnderConstructionBannerProps {
|
|
2038
|
-
text?: string;
|
|
2039
|
-
}
|
|
2040
|
-
declare function UnderConstructionBanner({ text, }: UnderConstructionBannerProps): React__default.JSX.Element;
|
|
2041
|
-
|
|
2042
2094
|
interface AccordionProps {
|
|
2043
2095
|
summary?: ReactNode | string;
|
|
2044
2096
|
children?: ReactNode;
|
|
@@ -2155,15 +2207,31 @@ declare const ShapeSwitch: () => React__default.JSX.Element;
|
|
|
2155
2207
|
interface AsyncComponentWrapperProps {
|
|
2156
2208
|
children: React__default.ReactNode;
|
|
2157
2209
|
isLoading?: boolean;
|
|
2210
|
+
isFetching?: boolean;
|
|
2158
2211
|
isSuccess?: boolean;
|
|
2159
2212
|
isError?: boolean;
|
|
2213
|
+
isUninitialized?: boolean;
|
|
2160
2214
|
error?: unknown;
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2215
|
+
isEmpty?: boolean;
|
|
2216
|
+
loadingText?: string;
|
|
2217
|
+
fetchingText?: string;
|
|
2218
|
+
emptyText?: string;
|
|
2219
|
+
loadingType?: "spinner" | "skeleton";
|
|
2220
|
+
skeletonCount?: number;
|
|
2221
|
+
skeletonClassName?: string;
|
|
2222
|
+
spinnerProps?: Partial<SpinnerProps>;
|
|
2223
|
+
fetchingSpinnerProps?: Partial<SpinnerProps>;
|
|
2224
|
+
loadingFallback?: React__default.ReactNode;
|
|
2225
|
+
emptyFallback?: React__default.ReactNode;
|
|
2226
|
+
errorFallback?: React__default.ReactNode | ((message: string) => React__default.ReactNode);
|
|
2227
|
+
showFetchingIndicator?: boolean;
|
|
2228
|
+
onRetry?: () => void;
|
|
2164
2229
|
errorFormatter?: (error: unknown) => string;
|
|
2230
|
+
className?: string;
|
|
2231
|
+
contentClassName?: string;
|
|
2165
2232
|
}
|
|
2166
|
-
declare function AsyncComponentWrapper({ children, isLoading, isSuccess, isError, error, errorFormatter, }: AsyncComponentWrapperProps): React__default.JSX.Element;
|
|
2233
|
+
declare function AsyncComponentWrapper({ children, isLoading, isFetching, isSuccess, isError, isUninitialized, error, isEmpty, loadingText, fetchingText, emptyText, loadingType, skeletonCount, skeletonClassName, spinnerProps, fetchingSpinnerProps, loadingFallback, emptyFallback, errorFallback, showFetchingIndicator, onRetry, errorFormatter, className, contentClassName, }: AsyncComponentWrapperProps): React__default.JSX.Element | null;
|
|
2234
|
+
declare const _default: React__default.MemoExoticComponent<typeof AsyncComponentWrapper>;
|
|
2167
2235
|
|
|
2168
2236
|
interface GlowWrapperProps {
|
|
2169
2237
|
children: ReactNode;
|
|
@@ -2834,4 +2902,4 @@ type ConfigBootstrapProps = {
|
|
|
2834
2902
|
};
|
|
2835
2903
|
declare function ConfigBootstrap({ config, loadApp, ErrorComponent, LoadingComponent, loadingFallback, showStack, }: ConfigBootstrapProps): React$1.JSX.Element;
|
|
2836
2904
|
|
|
2837
|
-
export { Accordion, type AnimationComponentProps, type AnimationVariant, type Appearance, AreaPlot, 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 CreateURLResolverOptions, type CurrencyCode, DEFAULT_CHART_THEME, DataView, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, EnvErrorScreen, type EnvErrorScreenProps, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, type FormatChartValueOptions, type GaugeChartProps, GaugePlot, GenericLayout, type GetAllowedOriginsOptions, 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, MarkdownEditor, MarkdownProvider, MarkdownTOC, MarkdownViewer, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type NavItem, type NormalizeChartDataOptions, type NormalizedChartDataPoint, type NormalizedToastStatus, NumericRating, type OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, PriceTag, ProgressBar, type ProgressBarProps, ProgressBarRating, Quote, Radio, type RawChartDataPoint, RealtimeChartDataSource, type RealtimeChartDataSourceConfig, type RealtimeChartDataSourceOptions, type ReplyComposerProps, type ResolveChartColorOptions, type ResolvedChartSeries, type RootAppModule, RouteTab, type RouteTabMode, RouteTabs, type SafeRedirectOptions, 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, TransitionDropdown, TransitionFadeIn, Typography, type URLMap, type URLMapSource, type URLQueryParams, type URLQueryValue, UnderConstructionBanner, type UpdateCommentInput, type UseChartDataOptions, type UseChartDataReturn, type UseChartPollingOptions, type UseChartRealtimeOptions, type UseChartSeriesOptions, type UseChartThemeOptions, ValueBadge, type Variant$1 as Variant, type VerticalPosition, WorldMap, WorldMapCountryTable, YoutubeVideo as YoutubeVideoPlayer, addReplyToCache, applyReactionState, assertAbsoluteURL, buildURL, chartReducer, cn, createConfigurator, createForceLayout, createGridLayout, createInitialChartState, createTreeLayout, createURLResolver, decrementReplyCount, enumValues, euiToast, formatChartValue, formatCommentDate, formatConfigError, getAllowedOrigins, getBrowserHref, getBrowserOrigin, getBrowserRedirectURL, getCurrencySymbol, getLayout, getOptimisticDislikeState, getOptimisticLikeState, getSafeRedirect, incrementReplyCount, isMatch, isRenderFn, limitRealtimePoints, normalize, normalizeChartData, normalizeChartDataPoint, parseJson, parseJsonRecord, parseUrlMap, registerLayout, removeComment, removeCommentTreeFromCache, replaceRealtimePoints, resolveAppearanceStyles, resolveChartColor, resolveChartColors, resolveWithGlobal, sendToast, toConfiguratorError, updateComment, updateReplyCacheComment, useChartContext, useChartData, useChartPolling, useChartRealtime, useChartSeries, useChartTheme, useClickOutside, useCloudinaryConfig, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useModal, useTheme };
|
|
2905
|
+
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 CreateURLResolverOptions, type CurrencyCode, DEFAULT_CHART_THEME, DataView, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, EnvErrorScreen, type EnvErrorScreenProps, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, type FormatChartValueOptions, type GaugeChartProps, GaugePlot, GenericLayout, type GetAllowedOriginsOptions, 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, MarkdownEditor, MarkdownProvider, MarkdownTOC, MarkdownViewer, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type NavItem, type NormalizeChartDataOptions, type NormalizedChartDataPoint, type NormalizedToastStatus, NumericRating, type OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, PriceTag, ProgressBar, type ProgressBarProps, ProgressBarRating, Quote, Radio, type RawChartDataPoint, RealtimeChartDataSource, type RealtimeChartDataSourceConfig, type RealtimeChartDataSourceOptions, type ReplyComposerProps, type ResolveChartColorOptions, type ResolvedChartSeries, type RootAppModule, RouteTab, type RouteTabMode, RouteTabs, type SafeRedirectOptions, 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 UseChartDataOptions, type UseChartDataReturn, type UseChartPollingOptions, type UseChartRealtimeOptions, type UseChartSeriesOptions, type UseChartThemeOptions, ValueBadge, type Variant$1 as Variant, type VerticalPosition, WorldMap, WorldMapCountryTable, YoutubeVideo as YoutubeVideoPlayer, addReplyToCache, applyReactionState, assertAbsoluteURL, buildURL, chartReducer, cn, createConfigurator, createForceLayout, createGridLayout, createInitialChartState, createTreeLayout, createURLResolver, decrementReplyCount, enumValues, euiToast, formatChartValue, formatCommentDate, formatConfigError, getAllowedOrigins, getBrowserHref, getBrowserOrigin, getBrowserRedirectURL, getCurrencySymbol, getLayout, getOptimisticDislikeState, getOptimisticLikeState, getSafeRedirect, incrementReplyCount, isMatch, isRenderFn, limitRealtimePoints, normalize, normalizeChartData, normalizeChartDataPoint, parseJson, parseJsonRecord, parseUrlMap, registerLayout, removeComment, removeCommentTreeFromCache, replaceRealtimePoints, resolveAppearanceStyles, resolveChartColor, resolveChartColors, resolveWithGlobal, sendToast, toConfiguratorError, updateComment, updateReplyCacheComment, useChartContext, useChartData, useChartPolling, useChartRealtime, useChartSeries, useChartTheme, useClickOutside, useCloudinaryConfig, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useModal, useTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -1636,21 +1636,71 @@ declare const euiToast: {
|
|
|
1636
1636
|
};
|
|
1637
1637
|
declare function sendToast(data?: SendToastOptions): string;
|
|
1638
1638
|
|
|
1639
|
+
interface TransitionBaseProps {
|
|
1640
|
+
visibility: boolean;
|
|
1641
|
+
children?: ReactNode;
|
|
1642
|
+
enterClassName?: string;
|
|
1643
|
+
leaveClassName?: string;
|
|
1644
|
+
visibleClassName?: string;
|
|
1645
|
+
hiddenClassName?: string;
|
|
1646
|
+
leaveDuration?: number;
|
|
1647
|
+
unmountOnExit?: boolean;
|
|
1648
|
+
}
|
|
1649
|
+
declare function TransitionBase({ visibility, children, enterClassName, leaveClassName, visibleClassName, hiddenClassName, leaveDuration, unmountOnExit, }: TransitionBaseProps): React__default.JSX.Element | null;
|
|
1650
|
+
|
|
1639
1651
|
interface TransitionDropdownProps {
|
|
1640
1652
|
visibility: boolean;
|
|
1641
1653
|
children?: ReactNode;
|
|
1654
|
+
leaveDuration?: number;
|
|
1642
1655
|
}
|
|
1643
|
-
declare function TransitionDropdown({ visibility, children }: TransitionDropdownProps): React__default.JSX.Element;
|
|
1656
|
+
declare function TransitionDropdown({ visibility, children, leaveDuration, }: TransitionDropdownProps): React__default.JSX.Element;
|
|
1657
|
+
|
|
1658
|
+
interface TransitionFadeProps {
|
|
1659
|
+
visibility: boolean;
|
|
1660
|
+
children?: ReactNode;
|
|
1661
|
+
leaveDuration?: number;
|
|
1662
|
+
}
|
|
1663
|
+
declare function TransitionFade({ visibility, children, leaveDuration, }: TransitionFadeProps): React__default.JSX.Element;
|
|
1644
1664
|
|
|
1645
1665
|
interface TransitionFadeInProps {
|
|
1646
1666
|
visibility: boolean;
|
|
1647
1667
|
children?: ReactNode;
|
|
1668
|
+
leaveDuration?: number;
|
|
1669
|
+
}
|
|
1670
|
+
declare function TransitionFadeIn({ visibility, children, leaveDuration, }: TransitionFadeInProps): React__default.JSX.Element;
|
|
1671
|
+
|
|
1672
|
+
interface TransitionScaleProps {
|
|
1673
|
+
visibility: boolean;
|
|
1674
|
+
children?: ReactNode;
|
|
1675
|
+
leaveDuration?: number;
|
|
1676
|
+
}
|
|
1677
|
+
declare function TransitionScale({ visibility, children, leaveDuration, }: TransitionScaleProps): React__default.JSX.Element;
|
|
1678
|
+
|
|
1679
|
+
type TransitionSlideSide = "left" | "right" | "top" | "bottom";
|
|
1680
|
+
interface TransitionSlideProps {
|
|
1681
|
+
visibility: boolean;
|
|
1682
|
+
side?: TransitionSlideSide;
|
|
1683
|
+
children?: ReactNode;
|
|
1684
|
+
leaveDuration?: number;
|
|
1685
|
+
}
|
|
1686
|
+
declare function TransitionSlide({ visibility, side, children, leaveDuration, }: TransitionSlideProps): React__default.JSX.Element;
|
|
1687
|
+
|
|
1688
|
+
interface TransitionAccordionProps {
|
|
1689
|
+
visibility: boolean;
|
|
1690
|
+
children?: ReactNode;
|
|
1691
|
+
enterDuration?: number;
|
|
1692
|
+
leaveDuration?: number;
|
|
1648
1693
|
}
|
|
1649
|
-
declare function
|
|
1694
|
+
declare function TransitionAccordion({ visibility, children, enterDuration, leaveDuration, }: TransitionAccordionProps): React__default.JSX.Element | null;
|
|
1650
1695
|
|
|
1651
1696
|
declare const Transition: {
|
|
1697
|
+
TransitionBase: typeof TransitionBase;
|
|
1652
1698
|
TransitionDropdown: typeof TransitionDropdown;
|
|
1699
|
+
TransitionFade: typeof TransitionFade;
|
|
1653
1700
|
TransitionFadeIn: typeof TransitionFadeIn;
|
|
1701
|
+
TransitionScale: typeof TransitionScale;
|
|
1702
|
+
TransitionSlide: typeof TransitionSlide;
|
|
1703
|
+
TransitionAccordion: typeof TransitionAccordion;
|
|
1654
1704
|
};
|
|
1655
1705
|
|
|
1656
1706
|
interface ContentAreaProps {
|
|
@@ -1786,8 +1836,10 @@ interface DrawerProps {
|
|
|
1786
1836
|
side?: "left" | "right" | "top" | "bottom";
|
|
1787
1837
|
handleClose: () => void;
|
|
1788
1838
|
styles?: string;
|
|
1839
|
+
showBackdrop?: boolean;
|
|
1840
|
+
closeOnBackdropClick?: boolean;
|
|
1789
1841
|
}
|
|
1790
|
-
declare const Drawer: ({ children, visibility, side, handleClose, styles, }: DrawerProps) => React__default.JSX.Element;
|
|
1842
|
+
declare const Drawer: ({ children, visibility, side, handleClose, styles, showBackdrop, closeOnBackdropClick, }: DrawerProps) => React__default.JSX.Element;
|
|
1791
1843
|
|
|
1792
1844
|
interface DrawerTogglerProps {
|
|
1793
1845
|
icon?: ReactNode;
|
|
@@ -2019,6 +2071,11 @@ interface RouteTabsProps extends BaseComponentProps {
|
|
|
2019
2071
|
}
|
|
2020
2072
|
declare function RouteTabs({ navData, children, onTabClick, mode, defaultActive, animated, className, ...rest }: RouteTabsProps): React$1.JSX.Element;
|
|
2021
2073
|
|
|
2074
|
+
interface UnderConstructionBannerProps {
|
|
2075
|
+
text?: string;
|
|
2076
|
+
}
|
|
2077
|
+
declare function UnderConstructionBanner({ text, }: UnderConstructionBannerProps): React__default.JSX.Element;
|
|
2078
|
+
|
|
2022
2079
|
interface ModalProps {
|
|
2023
2080
|
title: string;
|
|
2024
2081
|
show: boolean;
|
|
@@ -2034,11 +2091,6 @@ interface ModalProps {
|
|
|
2034
2091
|
}
|
|
2035
2092
|
declare function Modal({ title, show, handleOnClose, children, isLoading, isSuccess, isError, error, styles, enableCloseOnClickOutside, shape, }: ModalProps): React__default.JSX.Element;
|
|
2036
2093
|
|
|
2037
|
-
interface UnderConstructionBannerProps {
|
|
2038
|
-
text?: string;
|
|
2039
|
-
}
|
|
2040
|
-
declare function UnderConstructionBanner({ text, }: UnderConstructionBannerProps): React__default.JSX.Element;
|
|
2041
|
-
|
|
2042
2094
|
interface AccordionProps {
|
|
2043
2095
|
summary?: ReactNode | string;
|
|
2044
2096
|
children?: ReactNode;
|
|
@@ -2155,15 +2207,31 @@ declare const ShapeSwitch: () => React__default.JSX.Element;
|
|
|
2155
2207
|
interface AsyncComponentWrapperProps {
|
|
2156
2208
|
children: React__default.ReactNode;
|
|
2157
2209
|
isLoading?: boolean;
|
|
2210
|
+
isFetching?: boolean;
|
|
2158
2211
|
isSuccess?: boolean;
|
|
2159
2212
|
isError?: boolean;
|
|
2213
|
+
isUninitialized?: boolean;
|
|
2160
2214
|
error?: unknown;
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2215
|
+
isEmpty?: boolean;
|
|
2216
|
+
loadingText?: string;
|
|
2217
|
+
fetchingText?: string;
|
|
2218
|
+
emptyText?: string;
|
|
2219
|
+
loadingType?: "spinner" | "skeleton";
|
|
2220
|
+
skeletonCount?: number;
|
|
2221
|
+
skeletonClassName?: string;
|
|
2222
|
+
spinnerProps?: Partial<SpinnerProps>;
|
|
2223
|
+
fetchingSpinnerProps?: Partial<SpinnerProps>;
|
|
2224
|
+
loadingFallback?: React__default.ReactNode;
|
|
2225
|
+
emptyFallback?: React__default.ReactNode;
|
|
2226
|
+
errorFallback?: React__default.ReactNode | ((message: string) => React__default.ReactNode);
|
|
2227
|
+
showFetchingIndicator?: boolean;
|
|
2228
|
+
onRetry?: () => void;
|
|
2164
2229
|
errorFormatter?: (error: unknown) => string;
|
|
2230
|
+
className?: string;
|
|
2231
|
+
contentClassName?: string;
|
|
2165
2232
|
}
|
|
2166
|
-
declare function AsyncComponentWrapper({ children, isLoading, isSuccess, isError, error, errorFormatter, }: AsyncComponentWrapperProps): React__default.JSX.Element;
|
|
2233
|
+
declare function AsyncComponentWrapper({ children, isLoading, isFetching, isSuccess, isError, isUninitialized, error, isEmpty, loadingText, fetchingText, emptyText, loadingType, skeletonCount, skeletonClassName, spinnerProps, fetchingSpinnerProps, loadingFallback, emptyFallback, errorFallback, showFetchingIndicator, onRetry, errorFormatter, className, contentClassName, }: AsyncComponentWrapperProps): React__default.JSX.Element | null;
|
|
2234
|
+
declare const _default: React__default.MemoExoticComponent<typeof AsyncComponentWrapper>;
|
|
2167
2235
|
|
|
2168
2236
|
interface GlowWrapperProps {
|
|
2169
2237
|
children: ReactNode;
|
|
@@ -2834,4 +2902,4 @@ type ConfigBootstrapProps = {
|
|
|
2834
2902
|
};
|
|
2835
2903
|
declare function ConfigBootstrap({ config, loadApp, ErrorComponent, LoadingComponent, loadingFallback, showStack, }: ConfigBootstrapProps): React$1.JSX.Element;
|
|
2836
2904
|
|
|
2837
|
-
export { Accordion, type AnimationComponentProps, type AnimationVariant, type Appearance, AreaPlot, 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 CreateURLResolverOptions, type CurrencyCode, DEFAULT_CHART_THEME, DataView, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, EnvErrorScreen, type EnvErrorScreenProps, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, type FormatChartValueOptions, type GaugeChartProps, GaugePlot, GenericLayout, type GetAllowedOriginsOptions, 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, MarkdownEditor, MarkdownProvider, MarkdownTOC, MarkdownViewer, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type NavItem, type NormalizeChartDataOptions, type NormalizedChartDataPoint, type NormalizedToastStatus, NumericRating, type OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, PriceTag, ProgressBar, type ProgressBarProps, ProgressBarRating, Quote, Radio, type RawChartDataPoint, RealtimeChartDataSource, type RealtimeChartDataSourceConfig, type RealtimeChartDataSourceOptions, type ReplyComposerProps, type ResolveChartColorOptions, type ResolvedChartSeries, type RootAppModule, RouteTab, type RouteTabMode, RouteTabs, type SafeRedirectOptions, 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, TransitionDropdown, TransitionFadeIn, Typography, type URLMap, type URLMapSource, type URLQueryParams, type URLQueryValue, UnderConstructionBanner, type UpdateCommentInput, type UseChartDataOptions, type UseChartDataReturn, type UseChartPollingOptions, type UseChartRealtimeOptions, type UseChartSeriesOptions, type UseChartThemeOptions, ValueBadge, type Variant$1 as Variant, type VerticalPosition, WorldMap, WorldMapCountryTable, YoutubeVideo as YoutubeVideoPlayer, addReplyToCache, applyReactionState, assertAbsoluteURL, buildURL, chartReducer, cn, createConfigurator, createForceLayout, createGridLayout, createInitialChartState, createTreeLayout, createURLResolver, decrementReplyCount, enumValues, euiToast, formatChartValue, formatCommentDate, formatConfigError, getAllowedOrigins, getBrowserHref, getBrowserOrigin, getBrowserRedirectURL, getCurrencySymbol, getLayout, getOptimisticDislikeState, getOptimisticLikeState, getSafeRedirect, incrementReplyCount, isMatch, isRenderFn, limitRealtimePoints, normalize, normalizeChartData, normalizeChartDataPoint, parseJson, parseJsonRecord, parseUrlMap, registerLayout, removeComment, removeCommentTreeFromCache, replaceRealtimePoints, resolveAppearanceStyles, resolveChartColor, resolveChartColors, resolveWithGlobal, sendToast, toConfiguratorError, updateComment, updateReplyCacheComment, useChartContext, useChartData, useChartPolling, useChartRealtime, useChartSeries, useChartTheme, useClickOutside, useCloudinaryConfig, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useModal, useTheme };
|
|
2905
|
+
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 CreateURLResolverOptions, type CurrencyCode, DEFAULT_CHART_THEME, DataView, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, EnvErrorScreen, type EnvErrorScreenProps, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, type FormatChartValueOptions, type GaugeChartProps, GaugePlot, GenericLayout, type GetAllowedOriginsOptions, 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, MarkdownEditor, MarkdownProvider, MarkdownTOC, MarkdownViewer, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type NavItem, type NormalizeChartDataOptions, type NormalizedChartDataPoint, type NormalizedToastStatus, NumericRating, type OctilePosition, type OverlayVariant, Overline, Paragraph, type PieChartProps, PiePlot, PollingChartDataSource, type PollingChartDataSourceConfig, type PollingChartDataSourceOptions, PriceTag, ProgressBar, type ProgressBarProps, ProgressBarRating, Quote, Radio, type RawChartDataPoint, RealtimeChartDataSource, type RealtimeChartDataSourceConfig, type RealtimeChartDataSourceOptions, type ReplyComposerProps, type ResolveChartColorOptions, type ResolvedChartSeries, type RootAppModule, RouteTab, type RouteTabMode, RouteTabs, type SafeRedirectOptions, 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 UseChartDataOptions, type UseChartDataReturn, type UseChartPollingOptions, type UseChartRealtimeOptions, type UseChartSeriesOptions, type UseChartThemeOptions, ValueBadge, type Variant$1 as Variant, type VerticalPosition, WorldMap, WorldMapCountryTable, YoutubeVideo as YoutubeVideoPlayer, addReplyToCache, applyReactionState, assertAbsoluteURL, buildURL, chartReducer, cn, createConfigurator, createForceLayout, createGridLayout, createInitialChartState, createTreeLayout, createURLResolver, decrementReplyCount, enumValues, euiToast, formatChartValue, formatCommentDate, formatConfigError, getAllowedOrigins, getBrowserHref, getBrowserOrigin, getBrowserRedirectURL, getCurrencySymbol, getLayout, getOptimisticDislikeState, getOptimisticLikeState, getSafeRedirect, incrementReplyCount, isMatch, isRenderFn, limitRealtimePoints, normalize, normalizeChartData, normalizeChartDataPoint, parseJson, parseJsonRecord, parseUrlMap, registerLayout, removeComment, removeCommentTreeFromCache, replaceRealtimePoints, resolveAppearanceStyles, resolveChartColor, resolveChartColors, resolveWithGlobal, sendToast, toConfiguratorError, updateComment, updateReplyCacheComment, useChartContext, useChartData, useChartPolling, useChartRealtime, useChartSeries, useChartTheme, useClickOutside, useCloudinaryConfig, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useModal, useTheme };
|