@lumx/react 4.7.1 → 4.8.0-next.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/README.md CHANGED
@@ -22,10 +22,6 @@ npm install @lumx/react
22
22
 
23
23
  You can find an online version of the demo and documentation site at https://design.lumapps.com.
24
24
 
25
- ## How to get help, contribute, or provide feedback
26
-
27
- Please refer to our [contributing guidelines](CONTRIBUTING.md).
28
-
29
25
  ## Copyright and license
30
26
 
31
27
  Code and documentation copyright 2019 LumApps. Code released under the [MIT license](LICENSE.md).
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, HasRequiredLinkHref as HasRequiredLinkHref$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, 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 as HasRequiredLinkHref$2, 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$1, 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, ComponentProps, ElementType as ElementType$1, HTMLInputTypeAttribute } from 'react';
7
+ import React__default, { Ref, ReactElement, ReactNode, SyntheticEvent, MouseEventHandler, KeyboardEventHandler, RefObject, CSSProperties, ImgHTMLAttributes, AriaAttributes as AriaAttributes$1, SetStateAction, Key, ElementType as ElementType$1, HTMLInputTypeAttribute, ComponentProps } from 'react';
8
8
  import * as react_jsx_runtime from 'react/jsx-runtime';
9
9
 
10
10
  /** LumX Component Type. */
@@ -787,7 +787,7 @@ interface ButtonProps extends GenericProps$1, ReactToJSX<ButtonProps$1> {
787
787
  * @param ref Component ref.
788
788
  * @return React element.
789
789
  */
790
- declare const Button: Comp<ButtonProps, HTMLButtonElement | HTMLAnchorElement>;
790
+ declare const Button: Comp<ButtonProps, HTMLAnchorElement | HTMLButtonElement>;
791
791
 
792
792
  interface IconButtonProps$1 extends BaseButtonProps {
793
793
  /**
@@ -1291,7 +1291,15 @@ declare const Divider: Comp<DividerProps, HTMLHRElement>;
1291
1291
  /**
1292
1292
  * Defines the props of the component.
1293
1293
  */
1294
- interface DragHandleProps extends GenericProps$1, HasTheme$1 {
1294
+ interface DragHandleProps$1 extends HasTheme, HasClassName {
1295
+ /** Reference to the root element */
1296
+ ref?: CommonRef;
1297
+ }
1298
+
1299
+ /**
1300
+ * Defines the props of the component.
1301
+ */
1302
+ interface DragHandleProps extends GenericProps$1, ReactToJSX<DragHandleProps$1> {
1295
1303
  }
1296
1304
  /**
1297
1305
  * DragHandle component.
@@ -1652,6 +1660,8 @@ interface FlexBoxProps$1 extends HasClassName {
1652
1660
  vAlign?: FlexHorizontalAlignment;
1653
1661
  /** Whether the "flex wrap" is enabled or not. */
1654
1662
  wrap?: boolean;
1663
+ /** reference to the root element */
1664
+ ref?: CommonRef;
1655
1665
  }
1656
1666
 
1657
1667
  /**
@@ -1687,58 +1697,74 @@ declare const GenericBlockGapSize: Pick<{
1687
1697
  readonly big: "big";
1688
1698
  readonly huge: "huge";
1689
1699
  }, "tiny" | "regular" | "medium" | "big" | "huge">;
1690
- type GenericBlockGapSize = ValueOf$1<typeof GenericBlockGapSize>;
1700
+ type GenericBlockGapSize = ValueOf<typeof GenericBlockGapSize>;
1691
1701
 
1692
- interface GenericBlockProps extends FlexBoxProps {
1702
+ interface GenericBlockProps$1 extends FlexBoxProps$1 {
1693
1703
  /**
1694
1704
  * Component to use as visual element.
1695
1705
  */
1696
- figure?: ReactNode;
1706
+ figure?: JSXElement;
1697
1707
  /**
1698
- * Actions to set after the main content.
1708
+ * Main content.
1699
1709
  */
1700
- actions?: ReactNode;
1710
+ content?: JSXElement;
1701
1711
  /**
1702
- * Main content to display or sections components
1703
- * ({@see GenericBlock.Figure}, {@see GenericBlock.Content} & {@see GenericBlock.Actions})
1712
+ * Actions to set after the main content.
1704
1713
  */
1705
- children: ReactNode;
1714
+ actions?: JSXElement;
1706
1715
  /**
1707
1716
  * Orientation of the 3 sections
1708
1717
  */
1709
- orientation?: FlexBoxProps['orientation'];
1718
+ orientation?: FlexBoxProps$1['orientation'];
1710
1719
  /**
1711
1720
  * Horizontal alignment.
1712
1721
  */
1713
- hAlign?: FlexBoxProps['hAlign'];
1722
+ horizontalAlign?: FlexBoxProps$1['hAlign'];
1714
1723
  /**
1715
1724
  * Vertical alignment.
1716
1725
  */
1717
- vAlign?: FlexBoxProps['vAlign'];
1726
+ verticalAlign?: FlexBoxProps$1['vAlign'];
1718
1727
  /**
1719
1728
  * The props to forward to the content.
1720
1729
  * By default, the content will have the same alignment as wrapper.
1721
1730
  */
1722
- contentProps?: Omit<FlexBoxProps, 'children'>;
1731
+ contentProps?: Omit<FlexBoxProps$1, 'children'>;
1723
1732
  /**
1724
1733
  * props to forward to the actions element.
1725
1734
  */
1726
- actionsProps?: Omit<FlexBoxProps, 'children'>;
1735
+ actionsProps?: Omit<FlexBoxProps$1, 'children'>;
1727
1736
  /**
1728
1737
  * props to forward to the figure element.
1729
1738
  */
1730
- figureProps?: Omit<FlexBoxProps, 'children'>;
1739
+ figureProps?: Omit<FlexBoxProps$1, 'children'>;
1740
+ /**
1741
+ * FlexBox component
1742
+ */
1743
+ FlexBox: (props: FlexBoxProps$1) => any;
1731
1744
  /**
1732
1745
  * Gap space between sections.
1733
1746
  */
1734
1747
  gap?: GenericBlockGapSize;
1748
+ /**
1749
+ * reference to the root element
1750
+ */
1751
+ ref?: CommonRef;
1735
1752
  }
1736
- interface GenericBlockSectionProps extends FlexBoxProps {
1753
+ interface GenericBlockSectionProps extends FlexBoxProps$1 {
1737
1754
  /**
1738
1755
  * Gap space between items.
1739
1756
  */
1740
1757
  gap?: GenericBlockGapSize;
1741
1758
  }
1759
+ type GenericBlockPropsToOverride = 'FlexBox' | 'content';
1760
+
1761
+ interface GenericBlockProps extends GenericProps$1, ReactToJSX<GenericBlockProps$1, GenericBlockPropsToOverride> {
1762
+ /**
1763
+ * Main content to display or sections components
1764
+ * ({@see GenericBlock.Figure}, {@see GenericBlock.Content} & {@see GenericBlock.Actions})
1765
+ */
1766
+ children: ReactNode;
1767
+ }
1742
1768
  type BaseGenericBlock = Comp<GenericBlockProps, HTMLDivElement>;
1743
1769
  /**
1744
1770
  * The GenericBlock is a layout component made of 3 sections that can be
@@ -2371,7 +2397,7 @@ interface LinkProps extends GenericProps$1, ReactToJSX<LinkProps$1> {
2371
2397
  * @param ref Component ref.
2372
2398
  * @return React element.
2373
2399
  */
2374
- declare const Link: Comp<LinkProps, HTMLButtonElement | HTMLAnchorElement>;
2400
+ declare const Link: Comp<LinkProps, HTMLAnchorElement | HTMLButtonElement>;
2375
2401
 
2376
2402
  /**
2377
2403
  * Defines the props of the component.
@@ -2416,19 +2442,29 @@ interface UseKeyboardListNavigationType {
2416
2442
  }
2417
2443
  type useKeyboardListNavigationType = <I>(items: I[], ref: RefObject<HTMLElement>, onListItemSelected: (itemSelected: I) => void, onListItemNavigated?: (itemSelected: I) => void, onEnterPressed?: (itemSelected: string) => void, onBackspacePressed?: Listener, keepFocusAfterSelection?: boolean, initialIndex?: number, preventTabOnEnteredValue?: boolean) => UseKeyboardListNavigationType;
2418
2444
 
2445
+ /** List item padding size. */
2446
+ type ListItemPadding = Extract<Size, 'big' | 'huge'>;
2419
2447
  /**
2420
2448
  * Defines the props of the component.
2421
2449
  */
2422
- interface ListProps extends GenericProps$1 {
2423
- /** List content (should be ListItem, ListSubheader or ListDivider). */
2424
- children: ReactNode;
2450
+ interface ListProps$1 extends HasClassName {
2451
+ /** List content (should be ListItem, ListDivider, etc.). */
2452
+ children?: JSXElement;
2453
+ /** Item padding size. */
2454
+ itemPadding?: ListItemPadding;
2455
+ /** ref to the root element */
2456
+ ref?: CommonRef;
2457
+ }
2458
+
2459
+ /**
2460
+ * Defines the props of the component.
2461
+ */
2462
+ interface ListProps extends GenericProps$1, ReactToJSX<ListProps$1> {
2425
2463
  /**
2426
2464
  * Whether the list items are clickable.
2427
2465
  * @deprecated not needed anymore.
2428
2466
  */
2429
2467
  isClickable?: boolean;
2430
- /** Item padding size. */
2431
- itemPadding?: Extract<Size$1, 'big' | 'huge'>;
2432
2468
  /** Tab index of the list. */
2433
2469
  tabIndex?: number;
2434
2470
  /** @deprecated not supported since v4.0.0 */
@@ -2443,43 +2479,58 @@ declare const List: Comp<ListProps, HTMLUListElement> & {
2443
2479
  */
2444
2480
  type ListItemActionProps<E extends ClickableElement = 'button'> = RawClickableProps<E> & HasClassName;
2445
2481
 
2446
- type ListItemSize = Extract<Size$1, 'tiny' | 'regular' | 'big' | 'huge'>;
2482
+ /** ListItem size variants. */
2483
+ type ListItemSize = Extract<Size, 'tiny' | 'regular' | 'big' | 'huge'>;
2447
2484
  /**
2448
2485
  * Defines the props of the component.
2449
2486
  */
2450
- interface ListItemProps extends GenericProps$1, HasAriaDisabled$1 {
2487
+ interface ListItemProps$1 extends HasClassName, HasAriaDisabled {
2451
2488
  /** A component to be rendered after the content. */
2452
- after?: ReactNode;
2489
+ after?: JSXElement;
2453
2490
  /** A component to be rendered before the content. */
2454
- before?: ReactNode;
2491
+ before?: JSXElement;
2455
2492
  /** Content. */
2456
- children: string | ReactNode;
2493
+ children?: JSXElement;
2457
2494
  /** Whether the list item should be highlighted or not. */
2458
2495
  isHighlighted?: boolean;
2459
2496
  /** Whether the component is selected or not. */
2460
2497
  isSelected?: boolean;
2461
2498
  /** Whether link/button is disabled or not. */
2462
2499
  isDisabled?: boolean;
2463
- /** Reference to the <li> element. */
2464
- listItemRef?: Ref<HTMLLIElement>;
2465
- /** Custom react component for the link (can be used to inject react router Link). */
2500
+ /** Custom component for the link (can be used to inject router Link). */
2466
2501
  linkAs?: 'a' | any;
2467
- /** Props that will be passed on to the Link */
2468
- linkProps?: React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
2502
+ /** Props that will be passed on to the Link. */
2503
+ linkProps?: GenericProps;
2469
2504
  /** Reference to the link element. */
2470
- linkRef?: Ref<HTMLAnchorElement>;
2505
+ linkRef?: CommonRef;
2471
2506
  /** Size variant. */
2472
2507
  size?: ListItemSize;
2508
+ /** ref to the root <li> element */
2509
+ ref?: CommonRef;
2510
+ /** On click callback. */
2511
+ handleClick?: (event: any) => void;
2512
+ }
2513
+ type ListItemPropsToOverride = 'after' | 'before' | 'children' | 'handleClick';
2514
+
2515
+ /**
2516
+ * Defines the props of the component.
2517
+ */
2518
+ interface ListItemProps extends GenericProps$1, HasAriaDisabled$1, ReactToJSX<ListItemProps$1, ListItemPropsToOverride> {
2519
+ /** A component to be rendered after the content. */
2520
+ after?: ReactNode;
2521
+ /** A component to be rendered before the content. */
2522
+ before?: ReactNode;
2523
+ /** Content. */
2524
+ children: string | ReactNode;
2525
+ /** Reference to the <li> element. */
2526
+ listItemRef?: Ref<HTMLLIElement>;
2527
+ /** Reference to the link element. */
2528
+ linkRef?: Ref<HTMLAnchorElement>;
2473
2529
  /** On click callback. */
2474
2530
  onClick?(event: SyntheticEvent): void;
2475
2531
  /** @alias onClick */
2476
2532
  onItemSelected?(evt: SyntheticEvent): void;
2477
2533
  }
2478
- /**
2479
- * Check if the list item is clickable.
2480
- * @return `true` if the list item is clickable; `false` otherwise.
2481
- */
2482
- declare function isClickable({ linkAs, linkProps, onItemSelected }: Partial<ListItemProps>): boolean;
2483
2534
  /**
2484
2535
  * ListItem component with Action sub-component.
2485
2536
  */
@@ -2487,7 +2538,7 @@ declare const ListItem: Comp<ListItemProps, HTMLLIElement> & {
2487
2538
  /** Sub-component that renders the default action (button or link) for the action area pattern. */
2488
2539
  Action: (<E extends React$1.ElementType = "button">(props: React$1.PropsWithoutRef<React$1.ComponentProps<E>> & {
2489
2540
  as?: E | undefined;
2490
- } & GenericProps$1 & ReactToJSX<ListItemActionProps, "children"> & HasRequiredLinkHref$1<E> & {
2541
+ } & GenericProps$1 & ReactToJSX<ListItemActionProps, "children"> & _lumx_core_js_types.HasRequiredLinkHref<E> & {
2491
2542
  children: ReactNode;
2492
2543
  onClick?(evt: SyntheticEvent): void;
2493
2544
  } & React$1.ComponentProps<E> & {
@@ -2502,7 +2553,15 @@ declare const ListItem: Comp<ListItemProps, HTMLLIElement> & {
2502
2553
  /**
2503
2554
  * Defines the props of the component.
2504
2555
  */
2505
- type ListDividerProps = GenericProps$1;
2556
+ interface ListDividerProps$1 extends HasClassName {
2557
+ /** ref to the root element */
2558
+ ref?: CommonRef;
2559
+ }
2560
+
2561
+ /**
2562
+ * Defines the props of the component.
2563
+ */
2564
+ type ListDividerProps = GenericProps$1 & ReactToJSX<ListDividerProps$1>;
2506
2565
  /**
2507
2566
  * ListDivider component.
2508
2567
  * Purely decorative, consider a `ListSection` with label for a better list structure.
@@ -2511,7 +2570,7 @@ type ListDividerProps = GenericProps$1;
2511
2570
  * @param ref Component ref.
2512
2571
  * @return React element.
2513
2572
  */
2514
- declare const ListDivider: Comp<GenericProps$1, HTMLLIElement>;
2573
+ declare const ListDivider: Comp<ListDividerProps, HTMLLIElement>;
2515
2574
 
2516
2575
  /**
2517
2576
  * Defines the props of the component.
@@ -2524,7 +2583,7 @@ interface ListSectionProps$1 extends HasClassName {
2524
2583
  /** List items (should be ListItem, ListDivider, etc.). */
2525
2584
  children: JSXElement;
2526
2585
  /** Items wrapper forwarded props */
2527
- itemsWrapperProps?: ComponentProps<'ul'>;
2586
+ itemsWrapperProps?: Record<string, any>;
2528
2587
  /** ID for the label element (used for aria-labelledby). */
2529
2588
  id: string;
2530
2589
  /** ref to the root element */
@@ -2642,7 +2701,7 @@ type BaseNavigationItemProps = {
2642
2701
  };
2643
2702
  declare const NavigationItem: (<E extends ElementType$1 = "a">(props: React$1.PropsWithoutRef<React$1.ComponentProps<E>> & {
2644
2703
  as?: E | undefined;
2645
- } & HasTheme$1 & HasClassName$1 & BaseNavigationItemProps & HasRequiredLinkHref$2<E> & React$1.ComponentProps<E> & {
2704
+ } & HasTheme$1 & HasClassName$1 & BaseNavigationItemProps & HasRequiredLinkHref$1<E> & React$1.ComponentProps<E> & {
2646
2705
  ref?: ComponentRef<E> | undefined;
2647
2706
  }) => React.JSX.Element) & {
2648
2707
  displayName: string;
@@ -3862,7 +3921,7 @@ interface TextFieldProps$1 extends HasClassName, HasTheme, HasAriaDisabled, HasD
3862
3921
  /** Ref to the component root. */
3863
3922
  ref?: CommonRef;
3864
3923
  }
3865
- type TextFieldPropsToOverride = 'input' | 'IconButton' | 'labelProps' | 'textFieldRef' | 'clearButtonProps' | 'helperId' | 'errorId' | 'isFocus';
3924
+ type TextFieldPropsToOverride = 'input' | 'IconButton' | 'labelProps' | 'textFieldRef' | 'clearButtonProps' | 'helperId' | 'errorId' | 'isAnyDisabled' | 'isFocus';
3866
3925
 
3867
3926
  /**
3868
3927
  * Defines the props of the component.
@@ -4032,27 +4091,23 @@ declare const UploaderVariant: {
4032
4091
  readonly rounded: "rounded";
4033
4092
  readonly circle: "circle";
4034
4093
  };
4035
- type UploaderVariant = ValueOf$1<typeof UploaderVariant>;
4094
+ type UploaderVariant = ValueOf<typeof UploaderVariant>;
4036
4095
  /**
4037
4096
  * Uploader sizes.
4038
4097
  */
4039
- type UploaderSize = Extract<Size$1, 'xl' | 'xxl'>;
4098
+ type UploaderSize = Extract<Size, 'xl' | 'xxl'>;
4040
4099
  /**
4041
- * Extend native HTML input props with specialized `onChange` providing the a `File` array.
4100
+ * Native input file props (framework-agnostic subset).
4042
4101
  */
4043
- interface FileInputProps extends Omit<React__default.ComponentProps<'input'>, 'onChange'> {
4044
- onChange(files: File[], evt: React__default.ChangeEvent<HTMLInputElement>): void;
4045
- }
4102
+ type FileInputProps = Record<string, any>;
4046
4103
  /**
4047
4104
  * Defines the props of the component.
4048
4105
  */
4049
- interface UploaderProps extends GenericProps$1, HasTheme$1, HasAriaDisabled$1 {
4106
+ interface UploaderProps$1 extends HasClassName, HasDisabled, HasTheme, HasAriaDisabled {
4050
4107
  /** Image aspect ratio. */
4051
- aspectRatio?: AspectRatio$1;
4108
+ aspectRatio?: AspectRatio;
4052
4109
  /** Icon (SVG path). */
4053
4110
  icon?: string;
4054
- /** Disabled state */
4055
- isDisabled?: boolean;
4056
4111
  /** Label text. */
4057
4112
  label?: string;
4058
4113
  /** Size variant. */
@@ -4060,9 +4115,35 @@ interface UploaderProps extends GenericProps$1, HasTheme$1, HasAriaDisabled$1 {
4060
4115
  /** Variant. */
4061
4116
  variant?: UploaderVariant;
4062
4117
  /** On click callback. */
4063
- onClick?: MouseEventHandler;
4118
+ handleClick?: (event: any) => void;
4064
4119
  /** Handle file selection with a native input file. */
4065
4120
  fileInputProps?: FileInputProps;
4121
+ /** Forwarded ref to the root element. */
4122
+ ref?: CommonRef;
4123
+ /** Whether the component is disabled (computed from `isDisabled` and `aria-disabled`). */
4124
+ isAnyDisabled?: boolean;
4125
+ /** Id of the hidden file input (used to link the label `for` attribute). */
4126
+ inputId: string;
4127
+ /** Whether a file is currently being dragged over the input. */
4128
+ isDragHovering?: boolean;
4129
+ /** Callback fired when the file input value changes. */
4130
+ handleChange?: (event: any) => void;
4131
+ /** Root element tag or component (e.g. `'button'` or `'label'`). */
4132
+ Component: 'button' | 'label';
4133
+ }
4134
+ type UploaderPropsToOverride = 'isAnyDisabled' | 'inputId' | 'isDragHovering' | 'fileInputProps' | 'Component';
4135
+
4136
+ interface ReactFileInputProps extends Omit<React__default.ComponentProps<'input'>, 'onChange'> {
4137
+ onChange?(files: File[], evt: React__default.ChangeEvent<HTMLInputElement>): void;
4138
+ }
4139
+ /**
4140
+ * Defines the props of the component.
4141
+ */
4142
+ interface UploaderProps extends GenericProps$1, ReactToJSX<UploaderProps$1, UploaderPropsToOverride> {
4143
+ /** On click callback. */
4144
+ onClick?: MouseEventHandler;
4145
+ /** Handle file selection with a native input file. */
4146
+ fileInputProps?: ReactFileInputProps;
4066
4147
  }
4067
4148
  /**
4068
4149
  * Uploader component.
@@ -4130,5 +4211,5 @@ declare const ThemeProvider: React__default.FC<{
4130
4211
  /** Get the theme in the current context. */
4131
4212
  declare function useTheme(): ThemeContextValue;
4132
4213
 
4133
- 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 };
4214
+ 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, useFocusPointStyle, useHeadingLevel, useTheme };
4134
4215
  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 };