@lumx/react 4.5.2-alpha.6 → 4.6.1-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +117 -28
- package/index.js +1041 -756
- package/index.js.map +1 -1
- package/package.json +4 -3
package/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Kind as Kind$1, HorizontalAlignment as HorizontalAlignment$1, Theme as Theme$1, Size as Size$1, Orientation as Orientation$1, Alignment as Alignment$1, AspectRatio as AspectRatio$1, ColorWithVariants as ColorWithVariants$1, ColorVariant as ColorVariant$1, Typography as Typography$1, Emphasis as Emphasis$1 } from '@lumx/core/js/constants';
|
|
1
|
+
import { Kind as Kind$1, HorizontalAlignment as HorizontalAlignment$1, Theme as Theme$1, Size as Size$1, Orientation as Orientation$1, Alignment as Alignment$1, AspectRatio as AspectRatio$1, ColorWithVariants as ColorWithVariants$1, ColorVariant as ColorVariant$1, Typography as Typography$1, HasRequiredLinkHref as HasRequiredLinkHref$1, Emphasis as Emphasis$1 } from '@lumx/core/js/constants';
|
|
2
2
|
export * from '@lumx/core/js/constants';
|
|
3
3
|
import * as _lumx_core_js_types from '@lumx/core/js/types';
|
|
4
|
-
import { GenericProps as GenericProps$1, HasTheme as HasTheme$1, ValueOf as ValueOf$1, PropsToOverride, HasCloseMode as HasCloseMode$1, HasClassName as HasClassName$1, JSXElement as JSXElement$1, CommonRef as CommonRef$1, Falsy, HeadingElement as HeadingElement$1, HasAriaDisabled as HasAriaDisabled$1, HasRequiredLinkHref, HasAriaLabelOrLabelledBy as HasAriaLabelOrLabelledBy$1 } from '@lumx/core/js/types';
|
|
4
|
+
import { GenericProps as GenericProps$1, HasTheme as HasTheme$1, ValueOf as ValueOf$1, PropsToOverride, HasCloseMode as HasCloseMode$1, HasClassName as HasClassName$1, JSXElement as JSXElement$1, CommonRef as CommonRef$1, Falsy, HeadingElement as HeadingElement$1, HasAriaDisabled as HasAriaDisabled$1, HasRequiredLinkHref as HasRequiredLinkHref$2, HasAriaLabelOrLabelledBy as HasAriaLabelOrLabelledBy$1 } from '@lumx/core/js/types';
|
|
5
5
|
export * from '@lumx/core/js/types';
|
|
6
6
|
import * as React$1 from 'react';
|
|
7
|
-
import React__default, { Ref, ReactElement, ReactNode, SyntheticEvent, MouseEventHandler, KeyboardEventHandler, RefObject, CSSProperties, ImgHTMLAttributes, AriaAttributes as AriaAttributes$1, SetStateAction, Key,
|
|
7
|
+
import React__default, { Ref, ReactElement, ReactNode, SyntheticEvent, MouseEventHandler, KeyboardEventHandler, RefObject, CSSProperties, ImgHTMLAttributes, AriaAttributes as AriaAttributes$1, SetStateAction, Key, ComponentProps, ElementType as ElementType$1 } from 'react';
|
|
8
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
9
9
|
|
|
10
10
|
/** LumX Component Type. */
|
|
@@ -497,6 +497,7 @@ interface GenericProps extends HasClassName {
|
|
|
497
497
|
* Note: Uses type-only import to avoid runtime dependencies.
|
|
498
498
|
*/
|
|
499
499
|
type JSXElement = React__default.ReactNode;
|
|
500
|
+
type ElementType = React__default.ElementType;
|
|
500
501
|
|
|
501
502
|
/** Union type of all heading elements */
|
|
502
503
|
type HeadingElement = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
@@ -513,6 +514,17 @@ type KebabCase<S> = S extends `${infer C}${infer T}` ? T extends Uncapitalize<T>
|
|
|
513
514
|
/** Transform the component name into the lumx class name. */
|
|
514
515
|
type LumxClassName<TComponentName extends string> = `lumx-${KebabCase<TComponentName>}`;
|
|
515
516
|
|
|
517
|
+
type HasRequiredLinkHref<E> = E extends 'a' ? {
|
|
518
|
+
href: string;
|
|
519
|
+
} : Record<string, unknown>;
|
|
520
|
+
|
|
521
|
+
type HasPolymorphicAs<E extends ElementType> = React__default.ComponentPropsWithoutRef<E> & {
|
|
522
|
+
/**
|
|
523
|
+
* Customize the rendered component.
|
|
524
|
+
*/
|
|
525
|
+
as?: E;
|
|
526
|
+
};
|
|
527
|
+
|
|
516
528
|
type CommonRef = any;
|
|
517
529
|
|
|
518
530
|
type Booleanish = boolean | 'true' | 'false';
|
|
@@ -681,12 +693,14 @@ interface BadgeWrapperProps extends GenericProps$1, ReactToJSX<BadgeWrapperProps
|
|
|
681
693
|
}
|
|
682
694
|
declare const BadgeWrapper: Comp<BadgeWrapperProps, HTMLDivElement>;
|
|
683
695
|
|
|
696
|
+
type ClickableElement = 'a' | 'button' | ElementType;
|
|
684
697
|
interface BaseClickableProps extends HasDisabled, HasAriaDisabled {
|
|
685
698
|
children?: JSXElement;
|
|
686
699
|
handleClick?: (event?: any) => void;
|
|
687
700
|
handleKeyPress?: (event?: any) => void;
|
|
688
701
|
ref?: CommonRef;
|
|
689
702
|
}
|
|
703
|
+
type RawClickableProps<E extends ClickableElement> = HasPolymorphicAs<E> & HasRequiredLinkHref<E> & BaseClickableProps;
|
|
690
704
|
|
|
691
705
|
/**
|
|
692
706
|
* Button size definition.
|
|
@@ -974,12 +988,22 @@ type useChipGroupNavigationType<C = any> = (chips: C[], onChipDeleted: (chip: C)
|
|
|
974
988
|
/**
|
|
975
989
|
* Defines the props of the component.
|
|
976
990
|
*/
|
|
977
|
-
interface ChipGroupProps extends
|
|
991
|
+
interface ChipGroupProps$1 extends HasClassName {
|
|
978
992
|
/**
|
|
979
993
|
* Chip horizontal alignment.
|
|
980
994
|
* @deprecated
|
|
981
995
|
*/
|
|
982
|
-
align?: HorizontalAlignment
|
|
996
|
+
align?: HorizontalAlignment;
|
|
997
|
+
/** Children */
|
|
998
|
+
children?: JSXElement;
|
|
999
|
+
/** reference to the root element */
|
|
1000
|
+
ref?: CommonRef;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
/**
|
|
1004
|
+
* Defines the props of the component.
|
|
1005
|
+
*/
|
|
1006
|
+
interface ChipGroupProps extends GenericProps$1, ReactToJSX<ChipGroupProps$1, never> {
|
|
983
1007
|
/** List of Chip. */
|
|
984
1008
|
children: ReactNode;
|
|
985
1009
|
}
|
|
@@ -1330,7 +1354,7 @@ type FitAnchorWidth = ValueOf<typeof FitAnchorWidth>;
|
|
|
1330
1354
|
* are typed as `any` here because React uses `RefObject<HTMLElement>` while Vue uses
|
|
1331
1355
|
* raw `HTMLElement` — each framework narrows the type in its own props definition.
|
|
1332
1356
|
*/
|
|
1333
|
-
interface PopoverProps$1 extends HasClassName, HasTheme {
|
|
1357
|
+
interface PopoverProps$1 extends HasClassName, HasTheme, HasCloseMode {
|
|
1334
1358
|
/** Reference to the DOM element used to set the position of the popover. */
|
|
1335
1359
|
anchorRef?: CommonRef;
|
|
1336
1360
|
/** Customize the root element tag. */
|
|
@@ -2405,21 +2429,20 @@ interface ListProps extends GenericProps$1 {
|
|
|
2405
2429
|
isClickable?: boolean;
|
|
2406
2430
|
/** Item padding size. */
|
|
2407
2431
|
itemPadding?: Extract<Size$1, 'big' | 'huge'>;
|
|
2408
|
-
/** Tab index of the list.
|
|
2432
|
+
/** Tab index of the list. */
|
|
2409
2433
|
tabIndex?: number;
|
|
2410
|
-
/**
|
|
2411
|
-
* On list item selected callback.
|
|
2412
|
-
*
|
|
2413
|
-
* @param key React key of the selected item.
|
|
2414
|
-
* @param index Index of the selected item among the sibling items.
|
|
2415
|
-
* @param evt Source event (either mouse or keyboard event).
|
|
2416
|
-
*/
|
|
2434
|
+
/** @deprecated not supported since v4.0.0 */
|
|
2417
2435
|
onListItemSelected?(key: Key, index: number, evt: SyntheticEvent): void;
|
|
2418
2436
|
}
|
|
2419
2437
|
declare const List: Comp<ListProps, HTMLUListElement> & {
|
|
2420
2438
|
useKeyboardListNavigation: useKeyboardListNavigationType;
|
|
2421
2439
|
};
|
|
2422
2440
|
|
|
2441
|
+
/**
|
|
2442
|
+
* ListItemAction props.
|
|
2443
|
+
*/
|
|
2444
|
+
type ListItemActionProps<E extends ClickableElement = 'button'> = RawClickableProps<E> & HasClassName;
|
|
2445
|
+
|
|
2423
2446
|
type ListItemSize = Extract<Size$1, 'tiny' | 'regular' | 'big' | 'huge'>;
|
|
2424
2447
|
/**
|
|
2425
2448
|
* Defines the props of the component.
|
|
@@ -2447,7 +2470,9 @@ interface ListItemProps extends GenericProps$1, HasAriaDisabled$1 {
|
|
|
2447
2470
|
linkRef?: Ref<HTMLAnchorElement>;
|
|
2448
2471
|
/** Size variant. */
|
|
2449
2472
|
size?: ListItemSize;
|
|
2450
|
-
/** On
|
|
2473
|
+
/** On click callback. */
|
|
2474
|
+
onClick?(event: SyntheticEvent): void;
|
|
2475
|
+
/** @alias onClick */
|
|
2451
2476
|
onItemSelected?(evt: SyntheticEvent): void;
|
|
2452
2477
|
}
|
|
2453
2478
|
/**
|
|
@@ -2456,26 +2481,73 @@ interface ListItemProps extends GenericProps$1, HasAriaDisabled$1 {
|
|
|
2456
2481
|
*/
|
|
2457
2482
|
declare function isClickable({ linkAs, linkProps, onItemSelected }: Partial<ListItemProps>): boolean;
|
|
2458
2483
|
/**
|
|
2459
|
-
* ListItem component.
|
|
2484
|
+
* ListItem component with Action sub-component.
|
|
2485
|
+
*/
|
|
2486
|
+
declare const ListItem: Comp<ListItemProps, HTMLLIElement> & {
|
|
2487
|
+
/** Sub-component that renders the default action (button or link) for the action area pattern. */
|
|
2488
|
+
Action: (<E extends React$1.ElementType = "button">(props: React$1.PropsWithoutRef<React$1.ComponentProps<E>> & {
|
|
2489
|
+
as?: E | undefined;
|
|
2490
|
+
} & GenericProps$1 & ReactToJSX<ListItemActionProps, "children"> & HasRequiredLinkHref$1<E> & {
|
|
2491
|
+
children: ReactNode;
|
|
2492
|
+
onClick?(evt: SyntheticEvent): void;
|
|
2493
|
+
} & React$1.ComponentProps<E> & {
|
|
2494
|
+
ref?: ComponentRef<E> | undefined;
|
|
2495
|
+
}) => React.JSX.Element) & {
|
|
2496
|
+
displayName: string;
|
|
2497
|
+
className: string;
|
|
2498
|
+
defaultProps: Partial<ListItemActionProps<"button">>;
|
|
2499
|
+
};
|
|
2500
|
+
};
|
|
2501
|
+
|
|
2502
|
+
/**
|
|
2503
|
+
* Defines the props of the component.
|
|
2504
|
+
*/
|
|
2505
|
+
type ListDividerProps = GenericProps$1;
|
|
2506
|
+
/**
|
|
2507
|
+
* ListDivider component.
|
|
2508
|
+
* Purely decorative, consider a `ListSection` with label for a better list structure.
|
|
2460
2509
|
*
|
|
2461
2510
|
* @param props Component props.
|
|
2462
2511
|
* @param ref Component ref.
|
|
2463
2512
|
* @return React element.
|
|
2464
2513
|
*/
|
|
2465
|
-
declare const
|
|
2514
|
+
declare const ListDivider: Comp<GenericProps$1, HTMLLIElement>;
|
|
2466
2515
|
|
|
2467
2516
|
/**
|
|
2468
2517
|
* Defines the props of the component.
|
|
2469
2518
|
*/
|
|
2470
|
-
|
|
2519
|
+
interface ListSectionProps$1 extends HasClassName {
|
|
2520
|
+
/** Section label displayed as the group title. */
|
|
2521
|
+
label?: string;
|
|
2522
|
+
/** Section icon */
|
|
2523
|
+
icon?: string;
|
|
2524
|
+
/** List items (should be ListItem, ListDivider, etc.). */
|
|
2525
|
+
children: JSXElement;
|
|
2526
|
+
/** Items wrapper forwarded props */
|
|
2527
|
+
itemsWrapperProps?: ComponentProps<'ul'>;
|
|
2528
|
+
/** ID for the label element (used for aria-labelledby). */
|
|
2529
|
+
id: string;
|
|
2530
|
+
/** ref to the root element */
|
|
2531
|
+
ref?: CommonRef;
|
|
2532
|
+
/** Text component to use for rendering the label */
|
|
2533
|
+
Text: (props: TextProps$1 & Record<string, any>) => any;
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2471
2536
|
/**
|
|
2472
|
-
*
|
|
2537
|
+
* Defines the props of the component.
|
|
2538
|
+
*/
|
|
2539
|
+
interface ListSectionProps extends GenericProps$1, ReactToJSX<ListSectionProps$1, 'children' | 'id' | 'Text'> {
|
|
2540
|
+
/** Section content */
|
|
2541
|
+
children: ReactNode;
|
|
2542
|
+
}
|
|
2543
|
+
/**
|
|
2544
|
+
* ListSection component.
|
|
2473
2545
|
*
|
|
2474
2546
|
* @param props Component props.
|
|
2475
2547
|
* @param ref Component ref.
|
|
2476
2548
|
* @return React element.
|
|
2477
2549
|
*/
|
|
2478
|
-
declare const
|
|
2550
|
+
declare const ListSection: Comp<ListSectionProps, HTMLLIElement>;
|
|
2479
2551
|
|
|
2480
2552
|
/**
|
|
2481
2553
|
* Defines the props of the component.
|
|
@@ -2486,6 +2558,7 @@ interface ListSubheaderProps extends GenericProps$1 {
|
|
|
2486
2558
|
}
|
|
2487
2559
|
/**
|
|
2488
2560
|
* ListSubheader component.
|
|
2561
|
+
* @deprecated ListSubheader produces improper list structure. use ListSection instead.
|
|
2489
2562
|
*
|
|
2490
2563
|
* @param props Component props.
|
|
2491
2564
|
* @param ref Component ref.
|
|
@@ -2567,9 +2640,9 @@ type BaseNavigationItemProps = {
|
|
|
2567
2640
|
/** Mark as the current page link */
|
|
2568
2641
|
isCurrentPage?: boolean;
|
|
2569
2642
|
};
|
|
2570
|
-
declare const NavigationItem: (<E extends ElementType = "a">(props: React$1.PropsWithoutRef<React$1.ComponentProps<E>> & {
|
|
2643
|
+
declare const NavigationItem: (<E extends ElementType$1 = "a">(props: React$1.PropsWithoutRef<React$1.ComponentProps<E>> & {
|
|
2571
2644
|
as?: E | undefined;
|
|
2572
|
-
} & HasTheme$1 & HasClassName$1 & BaseNavigationItemProps & HasRequiredLinkHref<E> & React$1.ComponentProps<E> & {
|
|
2645
|
+
} & HasTheme$1 & HasClassName$1 & BaseNavigationItemProps & HasRequiredLinkHref$2<E> & React$1.ComponentProps<E> & {
|
|
2573
2646
|
ref?: ComponentRef<E> | undefined;
|
|
2574
2647
|
}) => React.JSX.Element) & {
|
|
2575
2648
|
displayName: string;
|
|
@@ -3806,23 +3879,39 @@ type NativeInputProps = Omit<ComponentProps<'input'>, 'value' | 'onChange'>;
|
|
|
3806
3879
|
/**
|
|
3807
3880
|
* Defines the props of the component.
|
|
3808
3881
|
*/
|
|
3809
|
-
interface RawInputTextProps extends NativeInputProps, HasTheme
|
|
3882
|
+
interface RawInputTextProps$1 extends NativeInputProps, HasTheme, HasClassName {
|
|
3810
3883
|
value?: string;
|
|
3884
|
+
handleChange?: (value: string, name?: string, event?: any) => void;
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
/**
|
|
3888
|
+
* Defines the props of the component.
|
|
3889
|
+
*/
|
|
3890
|
+
interface RawInputTextProps extends ReactToJSX<RawInputTextProps$1> {
|
|
3811
3891
|
onChange?: (value: string, name?: string, event?: SyntheticEvent) => void;
|
|
3812
3892
|
}
|
|
3893
|
+
|
|
3813
3894
|
/**
|
|
3814
3895
|
* Raw input text component
|
|
3815
3896
|
* (input element without any decoration)
|
|
3816
3897
|
*/
|
|
3817
3898
|
declare const RawInputText: Comp<RawInputTextProps, HTMLInputElement>;
|
|
3818
3899
|
|
|
3819
|
-
type NativeTextareaProps = ComponentProps<'textarea'>;
|
|
3900
|
+
type NativeTextareaProps = Omit<ComponentProps<'textarea'>, 'value' | 'onChange'>;
|
|
3820
3901
|
/**
|
|
3821
3902
|
* Defines the props of the component.
|
|
3822
3903
|
*/
|
|
3823
|
-
interface RawInputTextareaProps extends
|
|
3824
|
-
minimumRows?: number;
|
|
3904
|
+
interface RawInputTextareaProps$1 extends NativeTextareaProps, HasTheme, HasClassName {
|
|
3825
3905
|
value?: string;
|
|
3906
|
+
rows?: number;
|
|
3907
|
+
handleChange?: (value: string, name?: string, event?: any) => void;
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
/**
|
|
3911
|
+
* Defines the props of the component.
|
|
3912
|
+
*/
|
|
3913
|
+
interface RawInputTextareaProps extends ReactToJSX<RawInputTextareaProps$1, 'rows'> {
|
|
3914
|
+
minimumRows?: number;
|
|
3826
3915
|
onChange?: (value: string, name?: string, event?: SyntheticEvent) => void;
|
|
3827
3916
|
}
|
|
3828
3917
|
/**
|
|
@@ -4011,5 +4100,5 @@ declare const ThemeProvider: React__default.FC<{
|
|
|
4011
4100
|
/** Get the theme in the current context. */
|
|
4012
4101
|
declare function useTheme(): ThemeContextValue;
|
|
4013
4102
|
|
|
4014
|
-
export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonEmphasis, ButtonGroup, CLASSNAME, COMPONENT_NAME, Checkbox, Chip, ChipGroup, CommentBlock, CommentBlockVariant, DEFAULT_PROPS, DatePicker, DatePickerControlled, DatePickerField, Dialog, Divider, DragHandle, Dropdown, ExpansionPanel, Flag, FlexBox, GenericBlock, GenericBlockGapSize, Grid, GridColumn, GridItem, Heading, HeadingLevelProvider, Icon, IconButton, ImageBlock, ImageBlockCaptionPosition, ImageLightbox, InlineList, InputHelper, InputLabel, Lightbox, Link, LinkPreview, List, ListDivider, ListItem, ListSubheader, Message, Mosaic, Navigation, Notification, Placement, Popover, PopoverDialog, PostBlock, Progress, ProgressCircular, ProgressLinear, ProgressTracker, ProgressTrackerProvider, ProgressTrackerStep, ProgressTrackerStepPanel, ProgressVariant, RadioButton, RadioGroup, RawInputText, RawInputTextarea, Select, SelectMultiple, SelectMultipleField, SelectVariant, SelectionChipGroup, SideNavigation, SideNavigationItem, SkeletonCircle, SkeletonRectangle, SkeletonRectangleVariant, SkeletonTypography, Slider, Slides, Slideshow, SlideshowControls, SlideshowItem, Switch, Tab, TabList, TabListLayout, TabPanel, TabProvider, Table, TableBody, TableCell, TableCellVariant, TableCellVariant as TableCellVariantType, TableHeader, TableRow, Text, TextField, ThOrder, ThOrder as ThOrderType, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, Toolbar, Tooltip, Uploader, UploaderVariant, UserBlock, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
|
|
4015
|
-
export type { AlertDialogProps, AutocompleteMultipleProps, AutocompleteProps, AvatarProps, AvatarSize, BadgeProps, BadgeWrapperProps, BaseButtonProps, ButtonGroupProps, ButtonProps, ButtonSize, CheckboxProps, ChipGroupProps, ChipProps, CommentBlockProps, DatePickerControlledProps, DatePickerFieldProps, DatePickerProps, DialogProps, DialogSizes, DividerProps, DragHandleProps, DropdownProps, Elevation, ExpansionPanelProps, FlagProps, FlexBoxProps, FlexHorizontalAlignment, FlexVerticalAlignment, FocusPoint, GapSize, GenericBlockProps, GridColumnGapSize, GridColumnProps, GridItemProps, GridProps, HeadingLevelProviderProps, HeadingProps, IconButtonProps, IconProps, IconSizes, ImageBlockProps, ImageBlockSize, ImageLightboxProps, InlineListProps, InputHelperProps, InputLabelProps, LightboxProps, LinkPreviewProps, LinkProps, ListDividerProps, ListItemProps, ListItemSize, ListProps, ListSubheaderProps, MarginAutoAlignment, MessageProps, MosaicProps, NavigationProps, NotificationProps, Offset, PopoverDialogProps, PopoverProps, PostBlockProps, ProgressCircularProps, ProgressCircularSize, ProgressLinearProps, ProgressProps, ProgressTrackerProps, ProgressTrackerProviderProps, ProgressTrackerStepPanelProps, ProgressTrackerStepProps, RadioButtonProps, RadioGroupProps, RawInputTextProps, RawInputTextareaProps, SelectMultipleProps, SelectProps, SelectionChipGroupProps, SideNavigationItemProps, SideNavigationProps, SkeletonCircleProps, SkeletonRectangleProps, SkeletonTypographyProps, SliderProps, SlidesProps, SlideshowControlsProps, SlideshowItemProps, SlideshowProps, SwitchProps, TabListProps, TabPanelProps, TabProps, TabProviderProps, TableBodyProps, TableCellProps, TableHeaderProps, TableProps, TableRowProps, TextFieldProps, TextProps, ThumbnailProps, ThumbnailSize, ToolbarProps, TooltipPlacement, TooltipProps, UploaderProps, UploaderSize, UserBlockProps, UserBlockSize };
|
|
4103
|
+
export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonEmphasis, ButtonGroup, CLASSNAME, COMPONENT_NAME, Checkbox, Chip, ChipGroup, CommentBlock, CommentBlockVariant, DEFAULT_PROPS, DatePicker, DatePickerControlled, DatePickerField, Dialog, Divider, DragHandle, Dropdown, ExpansionPanel, Flag, FlexBox, GenericBlock, GenericBlockGapSize, Grid, GridColumn, GridItem, Heading, HeadingLevelProvider, Icon, IconButton, ImageBlock, ImageBlockCaptionPosition, ImageLightbox, InlineList, InputHelper, InputLabel, Lightbox, Link, LinkPreview, List, ListDivider, ListItem, ListSection, ListSubheader, Message, Mosaic, Navigation, Notification, Placement, Popover, PopoverDialog, PostBlock, Progress, ProgressCircular, ProgressLinear, ProgressTracker, ProgressTrackerProvider, ProgressTrackerStep, ProgressTrackerStepPanel, ProgressVariant, RadioButton, RadioGroup, RawInputText, RawInputTextarea, Select, SelectMultiple, SelectMultipleField, SelectVariant, SelectionChipGroup, SideNavigation, SideNavigationItem, SkeletonCircle, SkeletonRectangle, SkeletonRectangleVariant, SkeletonTypography, Slider, Slides, Slideshow, SlideshowControls, SlideshowItem, Switch, Tab, TabList, TabListLayout, TabPanel, TabProvider, Table, TableBody, TableCell, TableCellVariant, TableCellVariant as TableCellVariantType, TableHeader, TableRow, Text, TextField, ThOrder, ThOrder as ThOrderType, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, Toolbar, Tooltip, Uploader, UploaderVariant, UserBlock, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
|
|
4104
|
+
export type { AlertDialogProps, AutocompleteMultipleProps, AutocompleteProps, AvatarProps, AvatarSize, BadgeProps, BadgeWrapperProps, BaseButtonProps, ButtonGroupProps, ButtonProps, ButtonSize, CheckboxProps, ChipGroupProps, ChipProps, CommentBlockProps, DatePickerControlledProps, DatePickerFieldProps, DatePickerProps, DialogProps, DialogSizes, DividerProps, DragHandleProps, DropdownProps, Elevation, ExpansionPanelProps, FlagProps, FlexBoxProps, FlexHorizontalAlignment, FlexVerticalAlignment, FocusPoint, GapSize, GenericBlockProps, GridColumnGapSize, GridColumnProps, GridItemProps, GridProps, HeadingLevelProviderProps, HeadingProps, IconButtonProps, IconProps, IconSizes, ImageBlockProps, ImageBlockSize, ImageLightboxProps, InlineListProps, InputHelperProps, InputLabelProps, LightboxProps, LinkPreviewProps, LinkProps, ListDividerProps, ListItemProps, ListItemSize, ListProps, ListSectionProps, ListSubheaderProps, MarginAutoAlignment, MessageProps, MosaicProps, NavigationProps, NotificationProps, Offset, PopoverDialogProps, PopoverProps, PostBlockProps, ProgressCircularProps, ProgressCircularSize, ProgressLinearProps, ProgressProps, ProgressTrackerProps, ProgressTrackerProviderProps, ProgressTrackerStepPanelProps, ProgressTrackerStepProps, RadioButtonProps, RadioGroupProps, RawInputTextProps, RawInputTextareaProps, SelectMultipleProps, SelectProps, SelectionChipGroupProps, SideNavigationItemProps, SideNavigationProps, SkeletonCircleProps, SkeletonRectangleProps, SkeletonTypographyProps, SliderProps, SlidesProps, SlideshowControlsProps, SlideshowItemProps, SlideshowProps, SwitchProps, TabListProps, TabPanelProps, TabProps, TabProviderProps, TableBodyProps, TableCellProps, TableHeaderProps, TableProps, TableRowProps, TextFieldProps, TextProps, ThumbnailProps, ThumbnailSize, ToolbarProps, TooltipPlacement, TooltipProps, UploaderProps, UploaderSize, UserBlockProps, UserBlockSize };
|