@lumx/react 4.3.2-alpha.2 → 4.3.2-alpha.3

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/CONTRIBUTING.md CHANGED
@@ -41,18 +41,6 @@ Before opening a Pull Request, please see the Submission Guidelines below.
41
41
  You can request a new feature by submitting an issue to our [GitHub Repository](https://github.com/lumapps/design-system/issues).
42
42
  If you would like to implement a new feature then consider what kind of change it is, discuss it with us before hand in your issue, so that we can better coordinate our efforts, prevent duplication of work, and help you to craft the change so that it is successfully accepted into the project.
43
43
 
44
- ## <a name="create-a-new-react-component-"></a> Want to create a new React Component?
45
-
46
- The first step to create a new React component is to run:
47
-
48
- ```
49
- yarn scaffold
50
- ```
51
-
52
- This script will generate a TSX file for the component code, a TSX file for the component tests and an MDX file to demo this component.
53
-
54
- To export your component into the `@lumx/react` NPM package, you also have to make sure to update the `src/index.tsx` file.
55
-
56
44
  ## <a name="submission-guidelines"></a> Submission guidelines
57
45
 
58
46
  ### Submitting an issue
package/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Kind as Kind$1, HorizontalAlignment as HorizontalAlignment$1, Size as Size$1, ColorPalette as ColorPalette$1, Theme as Theme$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, HasTheme as HasTheme$1, ValueOf as ValueOf$1, HasAriaDisabled as HasAriaDisabled$1, HasCloseMode, Falsy, HasClassName as HasClassName$1, HeadingElement as HeadingElement$1, HasRequiredLinkHref, HasAriaLabelOrLabelledBy } from '@lumx/core/js/types';
4
+ import { GenericProps, HasTheme as HasTheme$1, ValueOf as ValueOf$1, HasAriaDisabled as HasAriaDisabled$1, HasCloseMode, HasClassName as HasClassName$1, JSXElement as JSXElement$1, CommonRef as CommonRef$1, Falsy, HeadingElement as HeadingElement$1, HasRequiredLinkHref, HasAriaLabelOrLabelledBy } from '@lumx/core/js/types';
5
5
  export * from '@lumx/core/js/types';
6
6
  import * as React$1 from 'react';
7
7
  import React__default, { Ref, ReactElement, ReactNode, SyntheticEvent, MouseEventHandler, KeyboardEventHandler, AriaAttributes, RefObject, CSSProperties, ImgHTMLAttributes, SetStateAction, Key, ElementType, ComponentProps } from 'react';
@@ -294,32 +294,6 @@ interface AvatarProps extends GenericProps, HasTheme$1 {
294
294
  */
295
295
  declare const Avatar: Comp<AvatarProps, HTMLDivElement>;
296
296
 
297
- /**
298
- * Defines the props of the component.
299
- */
300
- interface BadgeProps extends GenericProps {
301
- /** Badge content. */
302
- children?: ReactNode;
303
- /** Color variant. */
304
- color?: ColorPalette$1;
305
- }
306
- /**
307
- * Badge component.
308
- *
309
- * @param props Component props.
310
- * @param ref Component ref.
311
- * @return React element.
312
- */
313
- declare const Badge: Comp<BadgeProps, HTMLDivElement>;
314
-
315
- interface BadgeWrapperProps extends GenericProps {
316
- /** Badge. */
317
- badge: ReactElement;
318
- /** Node to display the badge on */
319
- children: ReactNode;
320
- }
321
- declare const BadgeWrapper: Comp<BadgeWrapperProps, HTMLDivElement>;
322
-
323
297
  /**
324
298
  * Alignments.
325
299
  */
@@ -567,6 +541,51 @@ interface HasDisabled {
567
541
  disabled?: boolean;
568
542
  }
569
543
 
544
+ /**
545
+ * Defines the props of the component.
546
+ */
547
+ interface BadgeProps$1 extends HasClassName {
548
+ /** Badge content. */
549
+ children?: JSXElement;
550
+ /** Color variant. */
551
+ color?: ColorPalette;
552
+ /** reference to the root element */
553
+ ref?: CommonRef;
554
+ }
555
+
556
+ /**
557
+ * Defines the props of the component.
558
+ */
559
+ interface BadgeProps extends Omit<BadgeProps$1, 'children'>, GenericProps {
560
+ /** Badge content. */
561
+ children?: ReactNode;
562
+ }
563
+ /**
564
+ * Badge component.
565
+ *
566
+ * @param props Component props.
567
+ * @param ref Component ref.
568
+ * @return React element.
569
+ */
570
+ declare const Badge: Comp<BadgeProps, HTMLDivElement>;
571
+
572
+ interface BadgeWrapperProps$1 extends HasClassName {
573
+ /** Badge element to display */
574
+ badge?: JSXElement;
575
+ /** Content to wrap with badge */
576
+ children?: JSXElement;
577
+ /** Ref forwarding */
578
+ ref?: CommonRef;
579
+ }
580
+
581
+ interface BadgeWrapperProps extends GenericProps, Omit<BadgeWrapperProps$1, 'children' | 'badge'> {
582
+ /** Badge element to display */
583
+ badge: ReactElement;
584
+ /** Content to wrap with badge */
585
+ children: ReactNode;
586
+ }
587
+ declare const BadgeWrapper: Comp<BadgeWrapperProps, HTMLDivElement>;
588
+
570
589
  interface BaseClickableProps extends HasDisabled, HasAriaDisabled {
571
590
  children?: JSXElement;
572
591
  onClick?: (event?: any) => void;
@@ -654,7 +673,7 @@ interface ButtonProps extends GenericProps, ButtonProps$1 {
654
673
  * @param ref Component ref.
655
674
  * @return React element.
656
675
  */
657
- declare const Button: Comp<ButtonProps, HTMLButtonElement | HTMLAnchorElement>;
676
+ declare const Button: Comp<ButtonProps, HTMLAnchorElement | HTMLButtonElement>;
658
677
 
659
678
  interface IconButtonProps$1 extends BaseButtonProps {
660
679
  /**
@@ -1469,7 +1488,7 @@ declare const GenericBlockGapSize: Pick<{
1469
1488
  readonly medium: "medium";
1470
1489
  readonly big: "big";
1471
1490
  readonly huge: "huge";
1472
- }, "medium" | "tiny" | "regular" | "big" | "huge">;
1491
+ }, "tiny" | "regular" | "medium" | "big" | "huge">;
1473
1492
  type GenericBlockGapSize = ValueOf$1<typeof GenericBlockGapSize>;
1474
1493
 
1475
1494
  interface GenericBlockProps extends FlexBoxProps {
@@ -1705,54 +1724,42 @@ interface IconProps extends Omit<IconProps$1, 'children'>, GenericProps {
1705
1724
  */
1706
1725
  declare const Icon: Comp<IconProps, HTMLElement>;
1707
1726
 
1708
- /**
1709
- * Focal point using vertical alignment, horizontal alignment or coordinates (from -1 to 1).
1710
- */
1711
- type FocusPoint = {
1712
- x?: number;
1713
- y?: number;
1714
- };
1715
1727
  /**
1716
1728
  * Loading attribute is not yet supported in typescript, so we need
1717
1729
  * to add it in order to avoid a ts error.
1718
1730
  * https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/ADVANCED.md#adding-non-standard-attributes
1719
1731
  */
1720
1732
  declare module 'react' {
1721
- interface ImgHTMLAttributes<T> extends React__default.HTMLAttributes<T> {
1733
+ interface ImgHTMLAttributes<T> extends React.HTMLAttributes<T> {
1722
1734
  loading?: 'eager' | 'lazy';
1723
1735
  }
1724
1736
  }
1725
- /**
1726
- * All available aspect ratios.
1727
- * @deprecated
1728
- */
1729
- declare const ThumbnailAspectRatio: Record<string, AspectRatio$1>;
1730
1737
  /**
1731
1738
  * Thumbnail sizes.
1732
1739
  */
1733
- type ThumbnailSize = Extract<Size$1, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
1740
+ type ThumbnailSize$1 = Extract<Size, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
1734
1741
  /**
1735
1742
  * Thumbnail variants.
1736
1743
  */
1737
- declare const ThumbnailVariant: {
1744
+ declare const ThumbnailVariant$1: {
1738
1745
  readonly squared: "squared";
1739
1746
  readonly rounded: "rounded";
1740
1747
  };
1741
- type ThumbnailVariant = ValueOf$1<typeof ThumbnailVariant>;
1748
+ type ThumbnailVariant$1 = ValueOf<typeof ThumbnailVariant$1>;
1742
1749
  /**
1743
1750
  * Thumbnail object fit.
1744
1751
  */
1745
- declare const ThumbnailObjectFit: {
1752
+ declare const ThumbnailObjectFit$1: {
1746
1753
  readonly cover: "cover";
1747
1754
  readonly contain: "contain";
1748
1755
  };
1749
- type ThumbnailObjectFit = ValueOf$1<typeof ThumbnailObjectFit>;
1756
+ type ThumbnailObjectFit$1 = ValueOf<typeof ThumbnailObjectFit$1>;
1750
1757
 
1751
1758
  type ImgHTMLProps = ImgHTMLAttributes<HTMLImageElement>;
1752
1759
  /**
1753
1760
  * Defines the props of the component.
1754
1761
  */
1755
- interface ThumbnailProps extends GenericProps, HasTheme$1 {
1762
+ interface ThumbnailProps$1 extends HasTheme$1, HasClassName$1 {
1756
1763
  /** Alignment of the thumbnail in it's parent (requires flex parent). */
1757
1764
  align?: HorizontalAlignment$1;
1758
1765
  /** Image alternative text. */
@@ -1760,41 +1767,98 @@ interface ThumbnailProps extends GenericProps, HasTheme$1 {
1760
1767
  /** Image aspect ratio. */
1761
1768
  aspectRatio?: AspectRatio$1;
1762
1769
  /** Badge. */
1763
- badge?: ReactElement | Falsy;
1770
+ badge?: JSXElement$1;
1764
1771
  /** Image cross origin resource policy. */
1765
1772
  crossOrigin?: ImgHTMLProps['crossOrigin'];
1766
1773
  /** Fallback icon (SVG path) or react node when image fails to load. */
1767
- fallback?: string | ReactNode;
1774
+ fallback?: string | JSXElement$1;
1768
1775
  /** Whether the thumbnail should fill it's parent size (requires flex parent) or not. */
1769
1776
  fillHeight?: boolean;
1770
- /** Apply relative vertical and horizontal shift (from -1 to 1) on the image position inside the thumbnail. */
1771
- focusPoint?: FocusPoint;
1772
1777
  /** Image URL. */
1773
1778
  image: string;
1779
+ loadingState: string;
1774
1780
  /** Props to inject into the native <img> element. */
1775
1781
  imgProps?: ImgHTMLProps;
1776
1782
  /** Reference to the native <img> element. */
1777
- imgRef?: Ref<HTMLImageElement>;
1783
+ imgRef?: CommonRef$1;
1784
+ ref?: CommonRef$1;
1778
1785
  /** Set to true to force the display of the loading skeleton. */
1779
1786
  isLoading?: boolean;
1780
1787
  /** Set how the image should fit when its aspect ratio is constrained */
1781
- objectFit?: ThumbnailObjectFit;
1788
+ objectFit?: ThumbnailObjectFit$1;
1782
1789
  /** Size variant of the component. */
1783
- size?: ThumbnailSize;
1790
+ size?: ThumbnailSize$1;
1784
1791
  /** Image loading mode. */
1785
- loading?: ImgHTMLProps['loading'];
1792
+ loading?: 'eager' | 'lazy';
1786
1793
  /** Ref of an existing placeholder image to display while loading. */
1787
- loadingPlaceholderImageRef?: React__default.RefObject<HTMLImageElement>;
1794
+ loadingPlaceholderImageRef?: React.RefObject<HTMLImageElement>;
1788
1795
  /** On click callback. */
1789
- onClick?: MouseEventHandler<HTMLDivElement>;
1796
+ onClick?: (event: any) => void;
1790
1797
  /** On key press callback. */
1791
- onKeyPress?: KeyboardEventHandler<HTMLDivElement>;
1798
+ onKeyPress?: (event: any) => void;
1792
1799
  /** Variant of the component. */
1793
- variant?: ThumbnailVariant;
1800
+ variant?: ThumbnailVariant$1;
1794
1801
  /** Props to pass to the link wrapping the thumbnail. */
1795
- linkProps?: React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
1802
+ linkProps?: GenericProps;
1803
+ focusPointStyle?: GenericProps;
1804
+ disabledStateProps?: GenericProps;
1805
+ isAnyDisabled?: boolean;
1796
1806
  /** Custom react component for the link (can be used to inject react router Link). */
1797
1807
  linkAs?: 'a' | any;
1808
+ 'aria-label'?: string;
1809
+ }
1810
+
1811
+ /**
1812
+ * Focal point using vertical alignment, horizontal alignment or coordinates (from -1 to 1).
1813
+ */
1814
+ type FocusPoint = {
1815
+ x?: number;
1816
+ y?: number;
1817
+ };
1818
+ /**
1819
+ * Loading attribute is not yet supported in typescript, so we need
1820
+ * to add it in order to avoid a ts error.
1821
+ * https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/ADVANCED.md#adding-non-standard-attributes
1822
+ */
1823
+ declare module 'react' {
1824
+ interface ImgHTMLAttributes<T> extends React__default.HTMLAttributes<T> {
1825
+ loading?: 'eager' | 'lazy';
1826
+ }
1827
+ }
1828
+ /**
1829
+ * All available aspect ratios.
1830
+ * @deprecated
1831
+ */
1832
+ declare const ThumbnailAspectRatio: Record<string, AspectRatio$1>;
1833
+ /**
1834
+ * Thumbnail sizes.
1835
+ */
1836
+ type ThumbnailSize = Extract<Size$1, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
1837
+ /**
1838
+ * Thumbnail variants.
1839
+ */
1840
+ declare const ThumbnailVariant: {
1841
+ readonly squared: "squared";
1842
+ readonly rounded: "rounded";
1843
+ };
1844
+ type ThumbnailVariant = ValueOf$1<typeof ThumbnailVariant>;
1845
+ /**
1846
+ * Thumbnail object fit.
1847
+ */
1848
+ declare const ThumbnailObjectFit: {
1849
+ readonly cover: "cover";
1850
+ readonly contain: "contain";
1851
+ };
1852
+ type ThumbnailObjectFit = ValueOf$1<typeof ThumbnailObjectFit>;
1853
+
1854
+ /**
1855
+ * Defines the props of the component.
1856
+ */
1857
+ interface ThumbnailProps extends GenericProps, Omit<ThumbnailProps$1, 'loadingState' | 'isAnyDisabled' | 'focusPointStyle' | 'disabledStateProps' | 'badge'> {
1858
+ /** Apply relative vertical and horizontal shift (from -1 to 1) on the image position inside the thumbnail. */
1859
+ focusPoint?: FocusPoint;
1860
+ /** Badge. */
1861
+ badge?: ReactElement | Falsy;
1798
1862
  }
1799
1863
  /**
1800
1864
  * Thumbnail component.
@@ -2097,7 +2161,7 @@ interface LinkProps extends GenericProps, Omit<LinkProps$1, 'label'> {
2097
2161
  * @param ref Component ref.
2098
2162
  * @return React element.
2099
2163
  */
2100
- declare const Link: Comp<LinkProps, HTMLButtonElement | HTMLAnchorElement>;
2164
+ declare const Link: Comp<LinkProps, HTMLAnchorElement | HTMLButtonElement>;
2101
2165
 
2102
2166
  /**
2103
2167
  * Defines the props of the component.
@@ -3171,11 +3235,21 @@ declare const Switch: Comp<SwitchProps, HTMLDivElement>;
3171
3235
  /**
3172
3236
  * Defines the props of the component.
3173
3237
  */
3174
- interface TableProps extends GenericProps, HasTheme$1 {
3238
+ interface TableProps$1 extends HasTheme, HasClassName {
3175
3239
  /** Whether the table has checkbox or thumbnail on first cell or not. */
3176
3240
  hasBefore?: boolean;
3177
3241
  /** Whether the table has dividers or not. */
3178
3242
  hasDividers?: boolean;
3243
+ /** Children */
3244
+ children?: JSXElement;
3245
+ /** reference to the root element */
3246
+ ref?: CommonRef;
3247
+ }
3248
+
3249
+ /**
3250
+ * Defines the props of the component.
3251
+ */
3252
+ interface TableProps extends GenericProps, Omit<TableProps$1, 'ref'> {
3179
3253
  /** Children */
3180
3254
  children?: React.ReactNode;
3181
3255
  }
@@ -3191,7 +3265,17 @@ declare const Table: Comp<TableProps, HTMLTableElement>;
3191
3265
  /**
3192
3266
  * Defines the props of the component.
3193
3267
  */
3194
- interface TableBodyProps extends GenericProps {
3268
+ interface TableBodyProps$1 extends HasClassName {
3269
+ /** Children */
3270
+ children?: JSXElement;
3271
+ /** reference to the root element */
3272
+ ref?: CommonRef;
3273
+ }
3274
+
3275
+ /**
3276
+ * Defines the props of the component.
3277
+ */
3278
+ interface TableBodyProps extends GenericProps, Omit<TableBodyProps$1, 'ref'> {
3195
3279
  /** Children */
3196
3280
  children?: React.ReactNode;
3197
3281
  }
@@ -3211,7 +3295,7 @@ declare const ThOrder: {
3211
3295
  readonly asc: "asc";
3212
3296
  readonly desc: "desc";
3213
3297
  };
3214
- type ThOrder = ValueOf$1<typeof ThOrder>;
3298
+ type ThOrder = ValueOf<typeof ThOrder>;
3215
3299
  /**
3216
3300
  * Table cell variants.
3217
3301
  */
@@ -3219,11 +3303,11 @@ declare const TableCellVariant: {
3219
3303
  readonly body: "body";
3220
3304
  readonly head: "head";
3221
3305
  };
3222
- type TableCellVariant = ValueOf$1<typeof TableCellVariant>;
3306
+ type TableCellVariant = ValueOf<typeof TableCellVariant>;
3223
3307
  /**
3224
3308
  * Defines the props of the component.
3225
3309
  */
3226
- interface TableCellProps extends GenericProps {
3310
+ interface TableCellProps$1 extends HasClassName {
3227
3311
  /** Icon (SVG path).(thead only). */
3228
3312
  icon?: string;
3229
3313
  /** Whether the column is sortable or not (thead only). */
@@ -3234,6 +3318,16 @@ interface TableCellProps extends GenericProps {
3234
3318
  variant?: TableCellVariant;
3235
3319
  /** On header cell click callback. */
3236
3320
  onHeaderClick?(): void;
3321
+ /** Children */
3322
+ children?: JSXElement;
3323
+ /** reference to the root element */
3324
+ ref?: CommonRef;
3325
+ }
3326
+
3327
+ /**
3328
+ * Defines the props of the component.
3329
+ */
3330
+ interface TableCellProps extends GenericProps, Omit<TableCellProps$1, 'ref'> {
3237
3331
  /** Children */
3238
3332
  children?: React.ReactNode;
3239
3333
  }
@@ -3249,7 +3343,17 @@ declare const TableCell: Comp<TableCellProps, HTMLTableCellElement>;
3249
3343
  /**
3250
3344
  * Defines the props of the component.
3251
3345
  */
3252
- interface TableHeaderProps extends GenericProps {
3346
+ interface TableHeaderProps$1 extends HasClassName {
3347
+ /** Children */
3348
+ children?: JSXElement;
3349
+ /** reference to the root element */
3350
+ ref?: CommonRef;
3351
+ }
3352
+
3353
+ /**
3354
+ * Defines the props of the component.
3355
+ */
3356
+ interface TableHeaderProps extends GenericProps, Omit<TableHeaderProps$1, 'ref'> {
3253
3357
  /** Children */
3254
3358
  children?: React.ReactNode;
3255
3359
  }
@@ -3265,13 +3369,25 @@ declare const TableHeader: Comp<TableHeaderProps, HTMLTableSectionElement>;
3265
3369
  /**
3266
3370
  * Defines the props of the component.
3267
3371
  */
3268
- interface TableRowProps extends GenericProps {
3372
+ interface TableRowProps$1 extends HasClassName, HasAriaDisabled {
3269
3373
  /** Whether the component is clickable or not. */
3270
3374
  isClickable?: boolean;
3271
- /** Whether the component is disabled or not. */
3272
- isDisabled?: boolean;
3273
3375
  /** Whether the component is selected or not. */
3274
3376
  isSelected?: boolean;
3377
+ /** Tab index */
3378
+ tabIndex?: number;
3379
+ /** Children */
3380
+ children?: JSXElement;
3381
+ /** reference to the root element */
3382
+ ref?: CommonRef;
3383
+ }
3384
+
3385
+ /**
3386
+ * Defines the props of the component.
3387
+ */
3388
+ interface TableRowProps extends GenericProps, Omit<TableRowProps$1, 'ref' | 'tabIndex' | 'aria-disabled'> {
3389
+ /** Whether the component is disabled or not. */
3390
+ isDisabled?: boolean;
3275
3391
  /** Children */
3276
3392
  children?: React.ReactNode;
3277
3393
  }
@@ -3653,5 +3769,5 @@ declare const ThemeProvider: React__default.FC<{
3653
3769
  /** Get the theme in the current context. */
3654
3770
  declare function useTheme(): ThemeContextValue;
3655
3771
 
3656
- 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, TableHeader, TableRow, Text, TextField, ThOrder, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, Toolbar, Tooltip, Uploader, UploaderVariant, UserBlock, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
3772
+ 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 };
3657
3773
  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 };