@lumx/react 4.3.2-alpha.1 → 4.3.2-alpha.11

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 CHANGED
@@ -1,28 +1,15 @@
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';
1
+ import { Kind, HorizontalAlignment, Size, ColorPalette as ColorPalette$1, Theme, GenericProps as GenericProps$1, Orientation as Orientation$1, Alignment as Alignment$1, AspectRatio, ColorWithVariants as ColorWithVariants$1, ColorVariant as ColorVariant$1, Typography as Typography$1, Emphasis } 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, HasAriaDisabled as HasAriaDisabled$1, PartialBy, ValueOf as ValueOf$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
- import React__default, { Ref, ReactElement, ReactNode, SyntheticEvent, MouseEventHandler, KeyboardEventHandler, AriaAttributes, RefObject, CSSProperties, ImgHTMLAttributes, SetStateAction, Key, ElementType, ComponentProps } from 'react';
7
+ import React__default, { ReactNode, SyntheticEvent, ReactElement, MouseEventHandler, KeyboardEventHandler, Ref, RefObject, CSSProperties, ImgHTMLAttributes, AriaAttributes, SetStateAction, Key, ElementType, ComponentProps } from 'react';
8
+ import { C as Comp, I as IconButtonProps, T as TextFieldProps, O as Offset, P as Placement, H as HasClassName, J as JSXElement, a as ColorPalette, b as CommonRef, B as BaseButtonProps, c as HasTheme$1, d as HasAriaDisabled, e as HasDisabled, f as ComboboxOptionProps, g as ComboboxProps, E as Elevation, F as FitAnchorWidth, h as ColorWithVariants, i as ColorVariant, j as Typography, W as WhiteSpace, S as Size$1, V as VerticalAlignment, A as Alignment, k as HorizontalAlignment$1, l as Orientation, K as Kind$1, G as GlobalSize, m as AspectRatio$1, n as TypographyInterface } from './Tooltip-sXtC5rw3.js';
9
+ export { o as BaseSelectProps, p as ButtonSize, q as IconButton, r as InputLabel, s as InputLabelProps, L as ListItem, t as ListItemProps, u as ListItemSize, M as MultipleSelection, v as OnComboboxInputChange, w as OnComboboxSelect, x as SingleSelection, y as TextField, z as Tooltip, D as TooltipPlacement, N as TooltipProps, Q as isClickable } from './Tooltip-sXtC5rw3.js';
8
10
  import * as react_jsx_runtime from 'react/jsx-runtime';
9
11
  import { Selector } from '@lumx/core/js/types/Selector';
10
12
 
11
- /** LumX Component Type. */
12
- type Comp<P, T = HTMLElement> = {
13
- (props: P & {
14
- ref?: Ref<T>;
15
- }): ReactElement | null;
16
- /** React component type. */
17
- readonly $$typeof: symbol;
18
- /** Component default props. */
19
- defaultProps?: Partial<P>;
20
- /** Component name. */
21
- displayName?: string;
22
- /** Component base class name. */
23
- className?: string;
24
- };
25
-
26
13
  /**
27
14
  * Extract ref type for a component or JSX intrinsic element
28
15
  *
@@ -35,7 +22,7 @@ type ComponentRef<C> = C extends keyof JSX.IntrinsicElements ? JSX.IntrinsicElem
35
22
 
36
23
  interface AlertDialogProps extends Omit<DialogProps, 'header' | 'footer'> {
37
24
  /** Message variant. */
38
- kind?: Kind$1;
25
+ kind?: Kind;
39
26
  /** Dialog title. */
40
27
  title?: string;
41
28
  /** Props forwarded to the confirm button */
@@ -70,7 +57,7 @@ declare const AlertDialog: Comp<AlertDialogProps, HTMLDivElement>;
70
57
  /**
71
58
  * Defines the props of the component.
72
59
  */
73
- interface AutocompleteProps extends GenericProps, HasTheme$1 {
60
+ interface AutocompleteProps extends GenericProps, HasTheme {
74
61
  /**
75
62
  * Whether the suggestions list should display anchored to the input or to the wrapper.
76
63
  * @see {@link DropdownProps#anchorToInput}
@@ -243,7 +230,7 @@ interface AutocompleteMultipleProps extends AutocompleteProps {
243
230
  /** Selected values. */
244
231
  values: any[];
245
232
  /** Alignment of the chips in the autocomplete. */
246
- chipsAlignment?: HorizontalAlignment$1;
233
+ chipsAlignment?: HorizontalAlignment;
247
234
  /** Selected value render function. Default: Renders the value inside of a Chip. */
248
235
  selectedChipRender(choice: any, index: number, onClear?: (event: React.MouseEvent, val: any) => void, isDisabled?: boolean): ReactNode | string;
249
236
  }
@@ -259,11 +246,11 @@ declare const AutocompleteMultiple: Comp<AutocompleteMultipleProps, HTMLDivEleme
259
246
  /**
260
247
  * Avatar sizes.
261
248
  */
262
- type AvatarSize = Extract<Size$1, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
249
+ type AvatarSize = Extract<Size, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
263
250
  /**
264
251
  * Defines the props of the component.
265
252
  */
266
- interface AvatarProps extends GenericProps, HasTheme$1 {
253
+ interface AvatarProps extends GenericProps, HasTheme {
267
254
  /** Action toolbar content. */
268
255
  actions?: ReactNode;
269
256
  /** Image alternative text. */
@@ -294,215 +281,6 @@ interface AvatarProps extends GenericProps, HasTheme$1 {
294
281
  */
295
282
  declare const Avatar: Comp<AvatarProps, HTMLDivElement>;
296
283
 
297
- /**
298
- * Alignments.
299
- */
300
- declare const Alignment: {
301
- readonly bottom: "bottom";
302
- readonly center: "center";
303
- readonly end: "end";
304
- readonly left: "left";
305
- readonly right: "right";
306
- readonly spaceAround: "space-around";
307
- readonly spaceBetween: "space-between";
308
- readonly spaceEvenly: "space-evenly";
309
- readonly start: "start";
310
- readonly top: "top";
311
- };
312
- type Alignment = ValueOf$1<typeof Alignment>;
313
- type VerticalAlignment = Extract<Alignment, 'top' | 'center' | 'bottom'>;
314
- type HorizontalAlignment = Extract<Alignment, 'right' | 'center' | 'left'>;
315
- declare const Theme: {
316
- readonly light: "light";
317
- readonly dark: "dark";
318
- };
319
- type Theme = ValueOf$1<typeof Theme>;
320
- declare const Size: {
321
- readonly xxs: "xxs";
322
- readonly xs: "xs";
323
- readonly s: "s";
324
- readonly m: "m";
325
- readonly l: "l";
326
- readonly xl: "xl";
327
- readonly xxl: "xxl";
328
- readonly tiny: "tiny";
329
- readonly regular: "regular";
330
- readonly medium: "medium";
331
- readonly big: "big";
332
- readonly huge: "huge";
333
- };
334
- type Size = ValueOf$1<typeof Size>;
335
- type GlobalSize = Extract<Size, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
336
- declare const Orientation: {
337
- readonly horizontal: "horizontal";
338
- readonly vertical: "vertical";
339
- };
340
- type Orientation = ValueOf$1<typeof Orientation>;
341
- declare const Emphasis: {
342
- readonly low: "low";
343
- readonly medium: "medium";
344
- readonly high: "high";
345
- };
346
- type Emphasis = ValueOf$1<typeof Emphasis>;
347
- /**
348
- * List of typographies that can't be customized.
349
- */
350
- declare const TypographyInterface: {
351
- readonly overline: "overline";
352
- readonly caption: "caption";
353
- readonly body1: "body1";
354
- readonly body2: "body2";
355
- readonly subtitle1: "subtitle1";
356
- readonly subtitle2: "subtitle2";
357
- readonly title: "title";
358
- readonly headline: "headline";
359
- readonly display1: "display1";
360
- };
361
- type TypographyInterface = ValueOf$1<typeof TypographyInterface>;
362
- /**
363
- * List of typographies that can be customized (via CSS variables).
364
- */
365
- declare const TypographyCustom: {
366
- readonly intro: "custom-intro";
367
- readonly 'body-large': "custom-body-large";
368
- readonly body: "custom-body";
369
- readonly quote: "custom-quote";
370
- readonly 'publish-info': "custom-publish-info";
371
- readonly button: "custom-button";
372
- readonly title1: "custom-title1";
373
- readonly title2: "custom-title2";
374
- readonly title3: "custom-title3";
375
- readonly title4: "custom-title4";
376
- readonly title5: "custom-title5";
377
- readonly title6: "custom-title6";
378
- };
379
- type TypographyCustom = ValueOf$1<typeof TypographyCustom>;
380
- /**
381
- * List of all typographies.
382
- */
383
- declare const Typography: {
384
- readonly custom: {
385
- readonly intro: "custom-intro";
386
- readonly 'body-large': "custom-body-large";
387
- readonly body: "custom-body";
388
- readonly quote: "custom-quote";
389
- readonly 'publish-info': "custom-publish-info";
390
- readonly button: "custom-button";
391
- readonly title1: "custom-title1";
392
- readonly title2: "custom-title2";
393
- readonly title3: "custom-title3";
394
- readonly title4: "custom-title4";
395
- readonly title5: "custom-title5";
396
- readonly title6: "custom-title6";
397
- };
398
- readonly overline: "overline";
399
- readonly caption: "caption";
400
- readonly body1: "body1";
401
- readonly body2: "body2";
402
- readonly subtitle1: "subtitle1";
403
- readonly subtitle2: "subtitle2";
404
- readonly title: "title";
405
- readonly headline: "headline";
406
- readonly display1: "display1";
407
- };
408
- type Typography = TypographyInterface | TypographyCustom;
409
- /**
410
- * All available aspect ratios.
411
- */
412
- declare const AspectRatio: {
413
- /** Intrinsic content ratio. */
414
- readonly original: "original";
415
- /** Ratio 3:1 */
416
- readonly panoramic: "panoramic";
417
- /** Ratio 16:9 */
418
- readonly wide: "wide";
419
- /** Ratio 3:2 */
420
- readonly horizontal: "horizontal";
421
- /** Ratio 3:2 */
422
- readonly vertical: "vertical";
423
- /** Ratio 1:1 */
424
- readonly square: "square";
425
- /** Ratio constrained by the parent. */
426
- readonly free: "free";
427
- };
428
- type AspectRatio = ValueOf$1<typeof AspectRatio>;
429
- /**
430
- * Semantic info about the purpose of the component
431
- */
432
- declare const Kind: {
433
- readonly info: "info";
434
- readonly success: "success";
435
- readonly warning: "warning";
436
- readonly error: "error";
437
- };
438
- type Kind = ValueOf$1<typeof Kind>;
439
- /**
440
- * All available white-space values
441
- * */
442
- declare const WhiteSpace: {
443
- normal: string;
444
- nowrap: string;
445
- pre: string;
446
- 'pre-wrap': string;
447
- 'pre-line': string;
448
- 'break-spaces': string;
449
- };
450
- type WhiteSpace = ValueOf$1<typeof WhiteSpace>;
451
- /**
452
- * See SCSS variable $lumx-color-palette
453
- */
454
- declare const ColorPalette: {
455
- readonly primary: "primary";
456
- readonly secondary: "secondary";
457
- readonly blue: "blue";
458
- readonly dark: "dark";
459
- readonly green: "green";
460
- readonly yellow: "yellow";
461
- readonly red: "red";
462
- readonly light: "light";
463
- readonly grey: "grey";
464
- };
465
- type ColorPalette = ValueOf$1<typeof ColorPalette>;
466
- /**
467
- * See SCSS variable $lumx-color-variants
468
- */
469
- declare const ColorVariant: {
470
- readonly D1: "D1";
471
- readonly D2: "D2";
472
- readonly L1: "L1";
473
- readonly L2: "L2";
474
- readonly L3: "L3";
475
- readonly L4: "L4";
476
- readonly L5: "L5";
477
- readonly L6: "L6";
478
- readonly N: "N";
479
- };
480
- type ColorVariant = ValueOf$1<typeof ColorVariant>;
481
- /** ColorPalette with all possible color variant combination */
482
- type ColorWithVariants = ColorPalette | Exclude<`${ColorPalette}-${ColorVariant}`, `light-D${number}` | `dark-D${number}`>;
483
-
484
- interface HasClassName {
485
- /**
486
- * Class name forwarded to the root element of the component.
487
- */
488
- className?: string;
489
- }
490
-
491
- interface HasTheme {
492
- /**
493
- * Theme adapting the component to light or dark background.
494
- */
495
- theme?: Theme;
496
- }
497
-
498
- /**
499
- * Framework-agnostic type for renderable content.
500
- * Vue components should cast VNode[] from slots to this type.
501
- *
502
- * Note: Uses type-only import to avoid runtime dependencies.
503
- */
504
- type JSXElement = React__default.ReactNode;
505
-
506
284
  /** Union type of all heading elements */
507
285
  type HeadingElement = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
508
286
 
@@ -518,15 +296,6 @@ type KebabCase<S> = S extends `${infer C}${infer T}` ? T extends Uncapitalize<T>
518
296
  /** Transform the component name into the lumx class name. */
519
297
  type LumxClassName<TComponentName extends string> = `lumx-${KebabCase<TComponentName>}`;
520
298
 
521
- type CommonRef = any;
522
-
523
- type Booleanish = boolean | 'true' | 'false';
524
-
525
- interface HasAriaDisabled {
526
- /** Similar to `disabled` but does not block pointer events or focus */
527
- 'aria-disabled'?: Booleanish;
528
- }
529
-
530
299
  interface HasChecked<C = boolean> {
531
300
  /** Component checked state. */
532
301
  isChecked?: C;
@@ -534,13 +303,6 @@ interface HasChecked<C = boolean> {
534
303
  checked?: boolean;
535
304
  }
536
305
 
537
- interface HasDisabled {
538
- /** Whether the component is disabled or not. */
539
- isDisabled?: boolean;
540
- /** @alias isDisabled */
541
- disabled?: boolean;
542
- }
543
-
544
306
  /**
545
307
  * Defines the props of the component.
546
308
  */
@@ -586,49 +348,6 @@ interface BadgeWrapperProps extends GenericProps, Omit<BadgeWrapperProps$1, 'chi
586
348
  }
587
349
  declare const BadgeWrapper: Comp<BadgeWrapperProps, HTMLDivElement>;
588
350
 
589
- interface BaseClickableProps extends HasDisabled, HasAriaDisabled {
590
- children?: JSXElement;
591
- onClick?: (event?: any) => void;
592
- ref?: CommonRef;
593
- }
594
-
595
- /**
596
- * Button size definition.
597
- */
598
- type ButtonSize = Extract<Size, 's' | 'm'>;
599
- interface BaseButtonProps extends Pick<AriaAttributes, 'aria-expanded' | 'aria-haspopup' | 'aria-pressed' | 'aria-label'>, HasClassName, HasTheme, HasAriaDisabled, BaseClickableProps {
600
- /** Color variant. */
601
- color?: ColorPalette;
602
- /** Emphasis variant. */
603
- emphasis?: Emphasis;
604
- /** Whether or not the button has a background color in low emphasis. */
605
- hasBackground?: boolean;
606
- /** Native anchor href property. It determines whether the Button will be a <button> or an <a>. */
607
- href?: string;
608
- /** Whether the component is disabled or not. */
609
- isDisabled?: boolean;
610
- /** Whether the component is selected or not (unsupported in `high` emphasis). */
611
- isSelected?: boolean;
612
- /** Native button name property. */
613
- name?: string;
614
- /** Size variant. */
615
- size?: ButtonSize;
616
- /** Native anchor target property. */
617
- target?: '_self' | '_blank' | '_parent' | '_top';
618
- /** Native button type. */
619
- type?: 'submit' | 'reset' | 'button' | undefined;
620
- /** Custom component for the link (can be used to inject router Link). */
621
- linkAs?: 'a' | any;
622
- /** whether the button is dispalyed in full width or not */
623
- fullWidth?: boolean;
624
- /** whether the button is currently active or not */
625
- isActive?: boolean;
626
- /** whether the button is currently focused or not */
627
- isFocused?: boolean;
628
- /** whether the button is currently focused or not */
629
- isHovered?: boolean;
630
- }
631
-
632
351
  /**
633
352
  * Button emphasis definition.
634
353
  * @deprecated Use Emphasis instead.
@@ -675,44 +394,6 @@ interface ButtonProps extends GenericProps, ButtonProps$1 {
675
394
  */
676
395
  declare const Button: Comp<ButtonProps, HTMLButtonElement | HTMLAnchorElement>;
677
396
 
678
- interface IconButtonProps$1 extends BaseButtonProps {
679
- /**
680
- * Icon (SVG path).
681
- * If `image` is also set, `image` will be used instead.
682
- */
683
- icon?: string;
684
- /**
685
- * Image (image url).
686
- * Has priority over `icon`.
687
- */
688
- image?: string;
689
- /**
690
- * Label text (required for a11y purpose).
691
- * If you really don't want an aria-label, you can set an empty label (this is not recommended).
692
- */
693
- label: string;
694
- /** text to be displayed on hover */
695
- title?: string;
696
- }
697
-
698
- interface IconButtonProps extends GenericProps, Omit<IconButtonProps$1, 'title' | 'children'> {
699
- /**
700
- * Props to pass to the tooltip.
701
- * If undefined or if tooltipProps.label is undefined, the label prop will be used as tooltip label.
702
- * */
703
- tooltipProps?: Partial<TooltipProps>;
704
- /** Whether the tooltip should be hidden or not. */
705
- hideTooltip?: boolean;
706
- }
707
- /**
708
- * IconButton component.
709
- *
710
- * @param props Component props.
711
- * @param ref Component ref.
712
- * @return React element.
713
- */
714
- declare const IconButton: Comp<IconButtonProps, HTMLButtonElement>;
715
-
716
397
  /**
717
398
  * Defines the props of the component
718
399
  */
@@ -739,7 +420,7 @@ declare const ButtonGroup: Comp<ButtonGroupProps, HTMLDivElement>;
739
420
  /**
740
421
  * Defines the props of the component.
741
422
  */
742
- interface CheckboxProps$1 extends HasTheme, HasClassName, HasAriaDisabled, HasDisabled, HasChecked<boolean | 'intermediate'> {
423
+ interface CheckboxProps$1 extends HasTheme$1, HasClassName, HasAriaDisabled, HasDisabled, HasChecked<boolean | 'intermediate'> {
743
424
  /** Helper text. */
744
425
  helper?: string;
745
426
  /** Native input id property. */
@@ -779,11 +460,11 @@ declare const Checkbox: Comp<CheckboxProps, HTMLDivElement>;
779
460
  /**
780
461
  * Chip sizes.
781
462
  */
782
- type ChipSize = Extract<Size$1, 's' | 'm'>;
463
+ type ChipSize = Extract<Size, 's' | 'm'>;
783
464
  /**
784
465
  * Defines the props of the component.
785
466
  */
786
- interface ChipProps extends GenericProps, HasTheme$1, HasAriaDisabled$1 {
467
+ interface ChipProps extends GenericProps, HasTheme, HasAriaDisabled$1 {
787
468
  /** A component to be rendered after the content. */
788
469
  after?: ReactNode;
789
470
  /** A component to be rendered before the content. */
@@ -834,7 +515,7 @@ interface ChipGroupProps extends GenericProps {
834
515
  * Chip horizontal alignment.
835
516
  * @deprecated
836
517
  */
837
- align?: HorizontalAlignment$1;
518
+ align?: HorizontalAlignment;
838
519
  /** List of Chip. */
839
520
  children: ReactNode;
840
521
  }
@@ -879,7 +560,7 @@ interface SelectionChipGroupProps<O> extends GenericProps {
879
560
  /**
880
561
  * LumX theme
881
562
  */
882
- theme?: Theme$1;
563
+ theme?: Theme;
883
564
  /**
884
565
  * Disabled state
885
566
  */
@@ -898,6 +579,294 @@ interface SelectionChipGroupProps<O> extends GenericProps {
898
579
  */
899
580
  declare const SelectionChipGroup: <O>({ onChange, value, getOptionId, getOptionName, inputRef, inputLabel, renderChip, theme, isDisabled, chipTooltipLabel, label, ...forwardedProps }: SelectionChipGroupProps<O>) => react_jsx_runtime.JSX.Element;
900
581
 
582
+ interface ComboboxButtonProps extends GenericProps {
583
+ /**
584
+ * Label of the combobox button trigger.
585
+ */
586
+ label: string;
587
+ /**
588
+ * Controls how the `label` is displayed:
589
+ * - `show-selection` (default): Displays the current selection as the label, or falls back to the provided `label`
590
+ * if there is no selection. The `label` will still appear as a tooltip in this mode.
591
+ * - `show-label`: Always displays the provided `label` as the visual label.
592
+ * - `show-tooltip`: Always displays the provided `label` as the visual a tooltip.
593
+ * (useful for IconButton combobox)
594
+ * In all cases, the given `label` is the ARIA label in use
595
+ */
596
+ labelDisplayMode?: 'show-selection' | 'show-label' | 'show-tooltip';
597
+ /**
598
+ * Focus event handler
599
+ */
600
+ onFocus?: React__default.FocusEventHandler;
601
+ /**
602
+ * Blur event handler
603
+ */
604
+ onBlur?: React__default.FocusEventHandler;
605
+ /** Customize the root element. */
606
+ as?: React__default.ElementType;
607
+ }
608
+ /**
609
+ * Combobox button trigger.
610
+ *
611
+ * @family Combobox
612
+ */
613
+ declare const ComboboxButton: Comp<ComboboxButtonProps, HTMLElement>;
614
+
615
+ /** Combobox option divider */
616
+ declare function ComboboxDivider(): react_jsx_runtime.JSX.Element;
617
+
618
+ /**
619
+ * All TextField props that are extended.
620
+ * We can't use "Omit" here as it is not compatible with the "GenericProps" type from the DS,
621
+ * meaning we would loose all props.
622
+ *
623
+ */
624
+ type ExtendedTextFieldProps = PartialBy<Pick<TextFieldProps, 'ariaLabel' | 'chips' | 'error' | 'forceFocusStyle' | 'hasError' | 'afterElement' | 'helper' | 'icon' | 'inputRef' | 'textFieldRef' | 'isDisabled' | 'className' | 'isRequired' | 'isValid' | 'label' | 'maxLength' | 'minimumRows' | 'multiline' | 'id' | 'name' | 'placeholder' | 'onBlur' | 'onClear' | 'onKeyDown' | 'onFocus' | 'theme'>, 'ariaLabel' | 'onKeyDown'>;
625
+ type ComboboxInputProps = ExtendedTextFieldProps & {
626
+ /** Whether the toggle button should be hidden */
627
+ hideToggle?: boolean;
628
+ /** Activate the clear button */
629
+ hasClearButton?: boolean;
630
+ /** Clear button forwarded props */
631
+ clearButtonProps?: Omit<TextFieldProps['clearButtonProps'], 'label'>;
632
+ /** Make input read only */
633
+ readOnly?: boolean;
634
+ };
635
+ /**
636
+ * Combobox input trigger.
637
+ *
638
+ * @family Combobox
639
+ */
640
+ declare const ComboboxInput: ({ hideToggle, inputRef, textFieldRef, afterElement, onFocus, onBlur, onKeyDown, clearButtonProps, hasClearButton, theme, ...textFieldProps }: ComboboxInputProps) => react_jsx_runtime.JSX.Element;
641
+
642
+ interface ComboboxOptionSkeletonProps {
643
+ className?: string;
644
+ index?: number;
645
+ children?: ReactNode | ((options: {
646
+ index?: number;
647
+ }) => ReactNode);
648
+ before?: ComboboxOptionProps['before'];
649
+ after?: ComboboxOptionProps['after'];
650
+ size?: ComboboxOptionProps['size'];
651
+ }
652
+ /**
653
+ * Skeleton for a combobox option.
654
+ * A typography skeleton is rendered by default but can be overridden by passing children.
655
+ */
656
+ declare const ComboboxOptionSkeleton: ({ className, index, before, after, size, children, }: ComboboxOptionSkeletonProps) => react_jsx_runtime.JSX.Element;
657
+
658
+ interface ComboboxListSkeletonProps {
659
+ isLoadingMore?: boolean;
660
+ children?: ComboboxOptionSkeletonProps['children'];
661
+ }
662
+
663
+ interface ComboboxListBoxProps extends GenericProps$1, React__default.ComponentProps<'ul'> {
664
+ /** Options display in the combobox */
665
+ children?: ReactNode;
666
+ /**
667
+ * Component to use as skeleton for each option instead of the default one.
668
+ * Can either be a react node or a component that receives the index as prop
669
+ */
670
+ renderItemSkeleton?: ComboboxListSkeletonProps['children'];
671
+ /** Label for the list */
672
+ label?: string;
673
+ /** Props of the popover element. */
674
+ popoverProps?: Partial<PopoverProps>;
675
+ /**
676
+ * An element to display at the bottom of the listbox.
677
+ * No interactive element must be set here as they will not be accessible.
678
+ */
679
+ footer?: ReactNode;
680
+ /** List ref */
681
+ listRef?: React__default.Ref<HTMLElement>;
682
+ }
683
+ /**
684
+ * The listbox containing the combobox's options.
685
+ *
686
+ * @family Combobox
687
+ * @param ComboboxListBoxProps
688
+ * @returns ComboboxListBox
689
+ */
690
+ declare const ComboboxListBox: ({ children, renderItemSkeleton, label, popoverProps, footer, listRef, ...forwardedProps }: ComboboxListBoxProps) => react_jsx_runtime.JSX.Element;
691
+
692
+ declare const COMBOBOX_OPTION_CLASSNAME = "lumx-combobox-option";
693
+ declare const LUMX_CLASSNAME = "lumx-list-item";
694
+ /**
695
+ * Props for ComboboxOption with additional generic properties.
696
+ */
697
+ interface ComboboxOptionComponentProps<O extends object = any> extends GenericProps, Omit<ComboboxOptionProps<O>, 'as'> {
698
+ /** Customize the root element. */
699
+ as?: React__default.ElementType;
700
+ }
701
+ /**
702
+ * Option to set within a combobox list.
703
+ *
704
+ * @family Combobox
705
+ * @param ComboboxOptionProps
706
+ * @returns ComboboxOption
707
+ */
708
+ declare const ComboboxOption: Comp<ComboboxOptionComponentProps<any>, HTMLElement>;
709
+
710
+ interface ComboboxOptionActionProps extends GenericProps {
711
+ /** Should the action be set as disabled */
712
+ isDisabled?: boolean;
713
+ /** Action to trigger when the action is selected */
714
+ onClick: () => void;
715
+ /** Customize the root element. */
716
+ as?: React__default.ElementType;
717
+ }
718
+ /**
719
+ * Action to set on a Combobox Option.
720
+ * Allows to add an interactive element that
721
+ * can be navigated to and triggered using the keyboard.
722
+ *
723
+ * Defaults as "button"
724
+ *
725
+ * @family Combobox
726
+ * @param ComboboxOptionActionProps
727
+ * @returns ComboboxOptionAction
728
+ */
729
+ declare const ComboboxOptionAction: (props: ComboboxOptionActionProps) => react_jsx_runtime.JSX.Element;
730
+
731
+ interface ComboboxOptionMoreInfoProps {
732
+ buttonProps?: Partial<IconButtonProps>;
733
+ popoverProps?: PopoverProps;
734
+ onToggle?: (isOpen: boolean) => void;
735
+ children?: React__default.ReactNode;
736
+ }
737
+ /**
738
+ * Display more info on the option as a popover opening on mouse hover or keyboard nav
739
+ * Please consider using a simpler option description instead for better UX and a11y.
740
+ *
741
+ * @family Combobox
742
+ */
743
+ declare const ComboboxOptionMoreInfo: React__default.FC<ComboboxOptionMoreInfoProps>;
744
+
745
+ interface ComboboxSectionProps {
746
+ /** Forwarded class name */
747
+ className?: string;
748
+ /** The title of the section */
749
+ title?: string;
750
+ /** Whether the section should be displayed as loading */
751
+ isLoading?: boolean;
752
+ /** Custom skeletons to use for loading state */
753
+ renderItemSkeleton?: ComboboxListSkeletonProps['children'];
754
+ /** Options to display */
755
+ children: ReactNode;
756
+ }
757
+ /**
758
+ * Section for options of a Combobox.
759
+ *
760
+ * @family Combobox
761
+ * @param ComboboxSectionProps
762
+ * @returns ComboboxSection
763
+ */
764
+ declare const ComboboxSection: ({ children, ...props }: ComboboxSectionProps) => react_jsx_runtime.JSX.Element;
765
+
766
+ declare const SUB_COMPONENTS: {
767
+ /**
768
+ * Option to set within a combobox list.
769
+ *
770
+ * @family Combobox
771
+ * @param ComboboxOptionProps
772
+ * @returns ComboboxOption
773
+ */
774
+ readonly Option: Comp<ComboboxOptionComponentProps<any>, HTMLElement>;
775
+ /**
776
+ * Skeleton for a combobox option.
777
+ * A typography skeleton is rendered by default but can be overridden by passing children.
778
+ */
779
+ readonly OptionSkeleton: ({ className, index, before, after, size, children, }: ComboboxOptionSkeletonProps) => react_jsx_runtime.JSX.Element;
780
+ /**
781
+ * Section for options of a Combobox.
782
+ *
783
+ * @family Combobox
784
+ * @param ComboboxSectionProps
785
+ * @returns ComboboxSection
786
+ */
787
+ readonly Section: ({ children, ...props }: ComboboxSectionProps) => react_jsx_runtime.JSX.Element;
788
+ /**
789
+ * Combobox input trigger.
790
+ *
791
+ * @family Combobox
792
+ */
793
+ readonly Input: ({ hideToggle, inputRef, textFieldRef, afterElement, onFocus, onBlur, onKeyDown, clearButtonProps, hasClearButton, theme, ...textFieldProps }: ComboboxInputProps) => react_jsx_runtime.JSX.Element;
794
+ /**
795
+ * The listbox containing the combobox's options.
796
+ *
797
+ * @family Combobox
798
+ * @param ComboboxListBoxProps
799
+ * @returns ComboboxListBox
800
+ */
801
+ readonly List: ({ children, renderItemSkeleton, label, popoverProps, footer, listRef, ...forwardedProps }: ComboboxListBoxProps) => react_jsx_runtime.JSX.Element;
802
+ /**
803
+ * Combobox button trigger.
804
+ *
805
+ * @family Combobox
806
+ */
807
+ readonly Button: Comp<ComboboxButtonProps, HTMLElement>;
808
+ };
809
+ /**
810
+ *
811
+ * A Combobox is a combination of two components:
812
+ * * An input to enter the user's value
813
+ * * A popover with a list of suggestions to fill the value.
814
+ *
815
+ * These two components are included via the Combobox.Input and Combobox.ListBox components.
816
+ *
817
+ * In its simplest implementation the component will automatically filter the given options
818
+ * from the value of the input and fill the input with the textValue of the selected option.
819
+ *
820
+ * Props are available for more complex implementations.
821
+ *
822
+ * @family Combobox
823
+ * @param ComboboxProps
824
+ * @returns Combobox
825
+ */
826
+ declare const Combobox: (<O>({ id: htmlId, inputValue, defaultInputValue, autoFilter, openOnClick, openOnFocus, status, showEmptyState, showErrorState, selectedIds, onInputChange, onSelect, onOpen, children, selectionType, translations, }: ComboboxProps<O>) => react_jsx_runtime.JSX.Element) & {
827
+ /**
828
+ * Option to set within a combobox list.
829
+ *
830
+ * @family Combobox
831
+ * @param ComboboxOptionProps
832
+ * @returns ComboboxOption
833
+ */
834
+ readonly Option: Comp<ComboboxOptionComponentProps<any>, HTMLElement>;
835
+ /**
836
+ * Skeleton for a combobox option.
837
+ * A typography skeleton is rendered by default but can be overridden by passing children.
838
+ */
839
+ readonly OptionSkeleton: ({ className, index, before, after, size, children, }: ComboboxOptionSkeletonProps) => react_jsx_runtime.JSX.Element;
840
+ /**
841
+ * Section for options of a Combobox.
842
+ *
843
+ * @family Combobox
844
+ * @param ComboboxSectionProps
845
+ * @returns ComboboxSection
846
+ */
847
+ readonly Section: ({ children, ...props }: ComboboxSectionProps) => react_jsx_runtime.JSX.Element;
848
+ /**
849
+ * Combobox input trigger.
850
+ *
851
+ * @family Combobox
852
+ */
853
+ readonly Input: ({ hideToggle, inputRef, textFieldRef, afterElement, onFocus, onBlur, onKeyDown, clearButtonProps, hasClearButton, theme, ...textFieldProps }: ComboboxInputProps) => react_jsx_runtime.JSX.Element;
854
+ /**
855
+ * The listbox containing the combobox's options.
856
+ *
857
+ * @family Combobox
858
+ * @param ComboboxListBoxProps
859
+ * @returns ComboboxListBox
860
+ */
861
+ readonly List: ({ children, renderItemSkeleton, label, popoverProps, footer, listRef, ...forwardedProps }: ComboboxListBoxProps) => react_jsx_runtime.JSX.Element;
862
+ /**
863
+ * Combobox button trigger.
864
+ *
865
+ * @family Combobox
866
+ */
867
+ readonly Button: Comp<ComboboxButtonProps, HTMLElement>;
868
+ };
869
+
901
870
  /**
902
871
  * Comment block variants.
903
872
  */
@@ -909,7 +878,7 @@ type CommentBlockVariant = ValueOf$1<typeof CommentBlockVariant>;
909
878
  /**
910
879
  * Defines the props of the component.
911
880
  */
912
- interface CommentBlockProps extends GenericProps, HasTheme$1 {
881
+ interface CommentBlockProps extends GenericProps, HasTheme {
913
882
  /** Action toolbar content. */
914
883
  actions?: ReactNode;
915
884
  /** Props to pass to the avatar. */
@@ -1087,7 +1056,7 @@ interface DialogProps extends GenericProps {
1087
1056
  /** Children */
1088
1057
  children?: React__default.ReactNode;
1089
1058
  }
1090
- type DialogSizes = Extract<Size$1, 'tiny' | 'regular' | 'big' | 'huge'>;
1059
+ type DialogSizes = Extract<Size, 'tiny' | 'regular' | 'big' | 'huge'>;
1091
1060
  /**
1092
1061
  * Dialog component.
1093
1062
  *
@@ -1100,7 +1069,7 @@ declare const Dialog: Comp<DialogProps, HTMLDivElement>;
1100
1069
  /**
1101
1070
  * Defines the props of the component.
1102
1071
  */
1103
- interface DividerProps$1 extends HasTheme, HasClassName {
1072
+ interface DividerProps$1 extends HasTheme$1, HasClassName {
1104
1073
  /** reference to the root element */
1105
1074
  ref?: CommonRef;
1106
1075
  }
@@ -1122,7 +1091,7 @@ declare const Divider: Comp<DividerProps, HTMLHRElement>;
1122
1091
  /**
1123
1092
  * Defines the props of the component.
1124
1093
  */
1125
- interface DragHandleProps extends GenericProps, HasTheme$1 {
1094
+ interface DragHandleProps extends GenericProps, HasTheme {
1126
1095
  }
1127
1096
  /**
1128
1097
  * DragHandle component.
@@ -1133,54 +1102,10 @@ interface DragHandleProps extends GenericProps, HasTheme$1 {
1133
1102
  */
1134
1103
  declare const DragHandle: Comp<DragHandleProps, HTMLDivElement>;
1135
1104
 
1136
- /**
1137
- * Different possible placements for the popover.
1138
- */
1139
- declare const Placement: {
1140
- readonly AUTO: "auto";
1141
- readonly AUTO_END: "auto-end";
1142
- readonly AUTO_START: "auto-start";
1143
- readonly TOP: "top";
1144
- readonly TOP_END: "top-end";
1145
- readonly TOP_START: "top-start";
1146
- readonly RIGHT: "right";
1147
- readonly RIGHT_END: "right-end";
1148
- readonly RIGHT_START: "right-start";
1149
- readonly BOTTOM: "bottom";
1150
- readonly BOTTOM_END: "bottom-end";
1151
- readonly BOTTOM_START: "bottom-start";
1152
- readonly LEFT: "left";
1153
- readonly LEFT_END: "left-end";
1154
- readonly LEFT_START: "left-start";
1155
- };
1156
- type Placement = ValueOf$1<typeof Placement>;
1157
- /**
1158
- * Offset of the popover.
1159
- */
1160
- interface Offset {
1161
- /** Offset size along the reference. */
1162
- along?: number;
1163
- /** Offset size away from the reference. */
1164
- away?: number;
1165
- }
1166
- /**
1167
- * Popover elevation index.
1168
- */
1169
- type Elevation = 1 | 2 | 3 | 4 | 5;
1170
- /**
1171
- * Popover fit anchor width options.
1172
- */
1173
- declare const FitAnchorWidth: {
1174
- readonly MAX_WIDTH: "maxWidth";
1175
- readonly MIN_WIDTH: "minWidth";
1176
- readonly WIDTH: "width";
1177
- };
1178
- type FitAnchorWidth = ValueOf$1<typeof FitAnchorWidth>;
1179
-
1180
1105
  /**
1181
1106
  * Defines the props of the component.
1182
1107
  */
1183
- interface PopoverProps extends GenericProps, HasTheme$1 {
1108
+ interface PopoverProps extends GenericProps, HasTheme {
1184
1109
  /** Reference to the DOM element used to set the position of the popover. */
1185
1110
  anchorRef: React.RefObject<HTMLElement>;
1186
1111
  /** Customize the root element. (Must accept ref forwarding and props forwarding!). */
@@ -1322,7 +1247,7 @@ declare const Dropdown: Comp<DropdownProps, HTMLDivElement>;
1322
1247
  /**
1323
1248
  * Defines the props of the component.
1324
1249
  */
1325
- interface ExpansionPanelProps extends GenericProps, HasCloseMode, HasTheme$1 {
1250
+ interface ExpansionPanelProps extends GenericProps, HasCloseMode, HasTheme {
1326
1251
  /** Whether the expansion panel has a background. */
1327
1252
  hasBackground?: boolean;
1328
1253
  /** Whether the header has a divider. */
@@ -1398,7 +1323,7 @@ interface TextProps$1 extends HasClassName {
1398
1323
  style?: CSSProperties;
1399
1324
  }
1400
1325
 
1401
- interface FlagProps$1 extends HasClassName, HasTheme {
1326
+ interface FlagProps$1 extends HasClassName, HasTheme$1 {
1402
1327
  /** Color of the component. */
1403
1328
  color?: ColorPalette;
1404
1329
  /** Icon to use before the label. */
@@ -1427,10 +1352,10 @@ interface FlagProps extends GenericProps, Omit<FlagProps$1, 'children' | 'Text'>
1427
1352
  declare const Flag: Comp<FlagProps, HTMLDivElement>;
1428
1353
 
1429
1354
  type MarginAutoAlignment = Extract<Alignment, 'top' | 'bottom' | 'right' | 'left'>;
1430
- type GapSize = Extract<Size, 'tiny' | 'regular' | 'medium' | 'big' | 'huge'>;
1355
+ type GapSize = Extract<Size$1, 'tiny' | 'regular' | 'medium' | 'big' | 'huge'>;
1431
1356
  type SpaceAlignment = Extract<Alignment, 'space-between' | 'space-evenly' | 'space-around'>;
1432
1357
  type FlexVerticalAlignment = VerticalAlignment | SpaceAlignment;
1433
- type FlexHorizontalAlignment = HorizontalAlignment | SpaceAlignment;
1358
+ type FlexHorizontalAlignment = HorizontalAlignment$1 | SpaceAlignment;
1434
1359
 
1435
1360
  /**
1436
1361
  * Defines the props of the component.
@@ -1488,7 +1413,7 @@ declare const GenericBlockGapSize: Pick<{
1488
1413
  readonly medium: "medium";
1489
1414
  readonly big: "big";
1490
1415
  readonly huge: "huge";
1491
- }, "medium" | "tiny" | "regular" | "big" | "huge">;
1416
+ }, "big" | "medium" | "tiny" | "regular" | "huge">;
1492
1417
  type GenericBlockGapSize = ValueOf$1<typeof GenericBlockGapSize>;
1493
1418
 
1494
1419
  interface GenericBlockProps extends FlexBoxProps {
@@ -1608,7 +1533,7 @@ declare const useHeadingLevel: () => {
1608
1533
  headingElement: _lumx_core_js_types.HeadingElement;
1609
1534
  };
1610
1535
 
1611
- type GridGutterSize = Extract<Size$1, 'regular' | 'big' | 'huge'>;
1536
+ type GridGutterSize = Extract<Size, 'regular' | 'big' | 'huge'>;
1612
1537
  /**
1613
1538
  * Defines the props of the component.
1614
1539
  */
@@ -1662,18 +1587,33 @@ type GridColumnGapSize = Extract<Size$1, 'tiny' | 'regular' | 'big' | 'huge'>;
1662
1587
  /**
1663
1588
  * Defines the props of the component.
1664
1589
  */
1665
- interface GridColumnProps extends GenericProps {
1590
+ interface GridColumnProps$1 extends HasClassName {
1666
1591
  /** Customize the root element. */
1667
- as?: React.ElementType;
1592
+ as?: any;
1668
1593
  /** Children elements. */
1669
- children?: ReactNode;
1594
+ children?: JSXElement;
1670
1595
  /** Space between columns and rows. */
1671
1596
  gap?: GridColumnGapSize;
1672
1597
  /** Ideal number of columns. */
1673
1598
  maxColumns?: number;
1674
1599
  /** Minimum width for each item, reduce the number of column if there is not enough space. */
1675
1600
  itemMinWidth?: number;
1601
+ /** Custom styles. */
1602
+ style?: any;
1603
+ /** reference to the root element */
1604
+ ref?: CommonRef;
1676
1605
  }
1606
+
1607
+ /**
1608
+ * Defines the props of the component.
1609
+ */
1610
+ interface GridColumnProps extends GenericProps, GridColumnProps$1 {
1611
+ /** Customize the root element. */
1612
+ as?: React.ElementType;
1613
+ /** Children elements. */
1614
+ children?: React.ReactNode;
1615
+ }
1616
+
1677
1617
  /**
1678
1618
  * The GridColumn is a layout component that can display children in a grid
1679
1619
  * with custom display properties. It also comes with a responsive design,
@@ -1691,7 +1631,7 @@ type IconSizes = (typeof ICON_SIZES)[number];
1691
1631
  /**
1692
1632
  * Defines the props of the component.
1693
1633
  */
1694
- interface IconProps$1 extends HasClassName, HasTheme {
1634
+ interface IconProps$1 extends HasClassName, HasTheme$1 {
1695
1635
  /** Color variant. */
1696
1636
  color?: ColorWithVariants;
1697
1637
  /** Lightened or darkened variant of the selected icon color. */
@@ -1724,96 +1664,141 @@ interface IconProps extends Omit<IconProps$1, 'children'>, GenericProps {
1724
1664
  */
1725
1665
  declare const Icon: Comp<IconProps, HTMLElement>;
1726
1666
 
1727
- /**
1728
- * Focal point using vertical alignment, horizontal alignment or coordinates (from -1 to 1).
1729
- */
1730
- type FocusPoint = {
1731
- x?: number;
1732
- y?: number;
1733
- };
1734
1667
  /**
1735
1668
  * Loading attribute is not yet supported in typescript, so we need
1736
1669
  * to add it in order to avoid a ts error.
1737
1670
  * https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/ADVANCED.md#adding-non-standard-attributes
1738
1671
  */
1739
1672
  declare module 'react' {
1740
- interface ImgHTMLAttributes<T> extends React__default.HTMLAttributes<T> {
1673
+ interface ImgHTMLAttributes<T> extends React.HTMLAttributes<T> {
1741
1674
  loading?: 'eager' | 'lazy';
1742
1675
  }
1743
1676
  }
1744
- /**
1745
- * All available aspect ratios.
1746
- * @deprecated
1747
- */
1748
- declare const ThumbnailAspectRatio: Record<string, AspectRatio$1>;
1749
1677
  /**
1750
1678
  * Thumbnail sizes.
1751
1679
  */
1752
- type ThumbnailSize = Extract<Size$1, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
1680
+ type ThumbnailSize$1 = Extract<Size$1, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
1753
1681
  /**
1754
1682
  * Thumbnail variants.
1755
1683
  */
1756
- declare const ThumbnailVariant: {
1684
+ declare const ThumbnailVariant$1: {
1757
1685
  readonly squared: "squared";
1758
1686
  readonly rounded: "rounded";
1759
1687
  };
1760
- type ThumbnailVariant = ValueOf$1<typeof ThumbnailVariant>;
1688
+ type ThumbnailVariant$1 = ValueOf<typeof ThumbnailVariant$1>;
1761
1689
  /**
1762
1690
  * Thumbnail object fit.
1763
1691
  */
1764
- declare const ThumbnailObjectFit: {
1692
+ declare const ThumbnailObjectFit$1: {
1765
1693
  readonly cover: "cover";
1766
1694
  readonly contain: "contain";
1767
1695
  };
1768
- type ThumbnailObjectFit = ValueOf$1<typeof ThumbnailObjectFit>;
1696
+ type ThumbnailObjectFit$1 = ValueOf<typeof ThumbnailObjectFit$1>;
1769
1697
 
1770
1698
  type ImgHTMLProps = ImgHTMLAttributes<HTMLImageElement>;
1771
1699
  /**
1772
1700
  * Defines the props of the component.
1773
1701
  */
1774
- interface ThumbnailProps extends GenericProps, HasTheme$1 {
1702
+ interface ThumbnailProps$1 extends HasTheme, HasClassName$1 {
1775
1703
  /** Alignment of the thumbnail in it's parent (requires flex parent). */
1776
- align?: HorizontalAlignment$1;
1704
+ align?: HorizontalAlignment;
1777
1705
  /** Image alternative text. */
1778
1706
  alt: string;
1779
1707
  /** Image aspect ratio. */
1780
- aspectRatio?: AspectRatio$1;
1708
+ aspectRatio?: AspectRatio;
1781
1709
  /** Badge. */
1782
- badge?: ReactElement | Falsy;
1710
+ badge?: JSXElement$1;
1783
1711
  /** Image cross origin resource policy. */
1784
1712
  crossOrigin?: ImgHTMLProps['crossOrigin'];
1785
1713
  /** Fallback icon (SVG path) or react node when image fails to load. */
1786
- fallback?: string | ReactNode;
1714
+ fallback?: string | JSXElement$1;
1787
1715
  /** Whether the thumbnail should fill it's parent size (requires flex parent) or not. */
1788
1716
  fillHeight?: boolean;
1789
- /** Apply relative vertical and horizontal shift (from -1 to 1) on the image position inside the thumbnail. */
1790
- focusPoint?: FocusPoint;
1791
1717
  /** Image URL. */
1792
1718
  image: string;
1719
+ loadingState: string;
1793
1720
  /** Props to inject into the native <img> element. */
1794
1721
  imgProps?: ImgHTMLProps;
1795
1722
  /** Reference to the native <img> element. */
1796
- imgRef?: Ref<HTMLImageElement>;
1723
+ imgRef?: CommonRef$1;
1724
+ ref?: CommonRef$1;
1797
1725
  /** Set to true to force the display of the loading skeleton. */
1798
1726
  isLoading?: boolean;
1799
1727
  /** Set how the image should fit when its aspect ratio is constrained */
1800
- objectFit?: ThumbnailObjectFit;
1728
+ objectFit?: ThumbnailObjectFit$1;
1801
1729
  /** Size variant of the component. */
1802
- size?: ThumbnailSize;
1730
+ size?: ThumbnailSize$1;
1803
1731
  /** Image loading mode. */
1804
- loading?: ImgHTMLProps['loading'];
1732
+ loading?: 'eager' | 'lazy';
1805
1733
  /** Ref of an existing placeholder image to display while loading. */
1806
- loadingPlaceholderImageRef?: React__default.RefObject<HTMLImageElement>;
1734
+ loadingPlaceholderImageRef?: React.RefObject<HTMLImageElement>;
1807
1735
  /** On click callback. */
1808
- onClick?: MouseEventHandler<HTMLDivElement>;
1736
+ onClick?: (event: any) => void;
1809
1737
  /** On key press callback. */
1810
- onKeyPress?: KeyboardEventHandler<HTMLDivElement>;
1738
+ onKeyPress?: (event: any) => void;
1811
1739
  /** Variant of the component. */
1812
- variant?: ThumbnailVariant;
1740
+ variant?: ThumbnailVariant$1;
1813
1741
  /** Props to pass to the link wrapping the thumbnail. */
1814
- linkProps?: React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
1742
+ linkProps?: GenericProps;
1743
+ focusPointStyle?: GenericProps;
1744
+ disabledStateProps?: GenericProps;
1745
+ isAnyDisabled?: boolean;
1815
1746
  /** Custom react component for the link (can be used to inject react router Link). */
1816
1747
  linkAs?: 'a' | any;
1748
+ 'aria-label'?: string;
1749
+ }
1750
+
1751
+ /**
1752
+ * Focal point using vertical alignment, horizontal alignment or coordinates (from -1 to 1).
1753
+ */
1754
+ type FocusPoint = {
1755
+ x?: number;
1756
+ y?: number;
1757
+ };
1758
+ /**
1759
+ * Loading attribute is not yet supported in typescript, so we need
1760
+ * to add it in order to avoid a ts error.
1761
+ * https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/ADVANCED.md#adding-non-standard-attributes
1762
+ */
1763
+ declare module 'react' {
1764
+ interface ImgHTMLAttributes<T> extends React__default.HTMLAttributes<T> {
1765
+ loading?: 'eager' | 'lazy';
1766
+ }
1767
+ }
1768
+ /**
1769
+ * All available aspect ratios.
1770
+ * @deprecated
1771
+ */
1772
+ declare const ThumbnailAspectRatio: Record<string, AspectRatio>;
1773
+ /**
1774
+ * Thumbnail sizes.
1775
+ */
1776
+ type ThumbnailSize = Extract<Size, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
1777
+ /**
1778
+ * Thumbnail variants.
1779
+ */
1780
+ declare const ThumbnailVariant: {
1781
+ readonly squared: "squared";
1782
+ readonly rounded: "rounded";
1783
+ };
1784
+ type ThumbnailVariant = ValueOf$1<typeof ThumbnailVariant>;
1785
+ /**
1786
+ * Thumbnail object fit.
1787
+ */
1788
+ declare const ThumbnailObjectFit: {
1789
+ readonly cover: "cover";
1790
+ readonly contain: "contain";
1791
+ };
1792
+ type ThumbnailObjectFit = ValueOf$1<typeof ThumbnailObjectFit>;
1793
+
1794
+ /**
1795
+ * Defines the props of the component.
1796
+ */
1797
+ interface ThumbnailProps extends GenericProps, Omit<ThumbnailProps$1, 'loadingState' | 'isAnyDisabled' | 'focusPointStyle' | 'disabledStateProps' | 'badge'> {
1798
+ /** Apply relative vertical and horizontal shift (from -1 to 1) on the image position inside the thumbnail. */
1799
+ focusPoint?: FocusPoint;
1800
+ /** Badge. */
1801
+ badge?: ReactElement | Falsy;
1817
1802
  }
1818
1803
  /**
1819
1804
  * Thumbnail component.
@@ -1853,15 +1838,15 @@ type ImageBlockCaptionPosition = ValueOf$1<typeof ImageBlockCaptionPosition>;
1853
1838
  /**
1854
1839
  * Image block sizes.
1855
1840
  */
1856
- type ImageBlockSize = Extract<Size$1, 'xl' | 'xxl'>;
1841
+ type ImageBlockSize = Extract<Size, 'xl' | 'xxl'>;
1857
1842
  /**
1858
1843
  * Defines the props of the component.
1859
1844
  */
1860
- interface ImageBlockProps extends GenericProps, HasTheme$1, ImageCaptionMetadata {
1845
+ interface ImageBlockProps extends GenericProps, HasTheme, ImageCaptionMetadata {
1861
1846
  /** Action toolbar content. */
1862
1847
  actions?: ReactNode;
1863
1848
  /** Alignment. */
1864
- align?: HorizontalAlignment$1;
1849
+ align?: HorizontalAlignment;
1865
1850
  /** Image alternative text. */
1866
1851
  alt: string;
1867
1852
  /** Caption position. */
@@ -1983,11 +1968,11 @@ declare const InlineList: Comp<InlineListProps, HTMLElement>;
1983
1968
  /**
1984
1969
  * Defines the props of the component.
1985
1970
  */
1986
- interface InputHelperProps$1 extends HasClassName, HasTheme {
1971
+ interface InputHelperProps$1 extends HasClassName, HasTheme$1 {
1987
1972
  /** Helper content. */
1988
1973
  children: JSXElement;
1989
1974
  /** Helper variant. */
1990
- kind?: Kind;
1975
+ kind?: Kind$1;
1991
1976
  /** ref to the root element `p` */
1992
1977
  ref?: CommonRef;
1993
1978
  /** id for the input helper */
@@ -2005,34 +1990,10 @@ interface InputHelperProps extends InputHelperProps$1, GenericProps {
2005
1990
  */
2006
1991
  declare const InputHelper: Comp<InputHelperProps, HTMLParagraphElement>;
2007
1992
 
2008
- interface InputLabelProps$1 extends HasClassName, HasTheme {
2009
- /** Typography variant. */
2010
- typography?: Typography;
2011
- /** Label content. */
2012
- children: JSXElement;
2013
- /** Native htmlFor property. */
2014
- htmlFor: string;
2015
- /** Whether the component is required or not. */
2016
- isRequired?: boolean;
2017
- /** ref to the root element */
2018
- ref?: CommonRef;
2019
- }
2020
-
2021
- interface InputLabelProps extends InputLabelProps$1, GenericProps {
2022
- }
2023
- /**
2024
- * InputLabel component.
2025
- *
2026
- * @param props Component props.
2027
- * @param ref Component ref.
2028
- * @return React element.
2029
- */
2030
- declare const InputLabel: Comp<InputLabelProps, HTMLLabelElement>;
2031
-
2032
1993
  /**
2033
1994
  * Defines the props of the component.
2034
1995
  */
2035
- interface LightboxProps extends GenericProps, HasTheme$1, Pick<AriaAttributes, 'aria-label' | 'aria-labelledby'> {
1996
+ interface LightboxProps extends GenericProps, HasTheme, Pick<AriaAttributes, 'aria-label' | 'aria-labelledby'> {
2036
1997
  /** Props to pass to the close button (minus those already set by the Lightbox props). */
2037
1998
  closeButtonProps?: Pick<IconButtonProps, 'label'> & Omit<IconButtonProps, 'label' | 'onClick' | 'icon' | 'emphasis' | 'color'>;
2038
1999
  /** Whether the component is open or not. */
@@ -2059,37 +2020,55 @@ interface LightboxProps extends GenericProps, HasTheme$1, Pick<AriaAttributes, '
2059
2020
  */
2060
2021
  declare const Lightbox: Comp<LightboxProps, HTMLDivElement>;
2061
2022
 
2062
- type HTMLAnchorProps = React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
2063
2023
  /**
2064
2024
  * Defines the props of the component.
2065
2025
  */
2066
- interface LinkProps extends GenericProps, HasAriaDisabled$1 {
2026
+ interface LinkProps$1 extends HasTheme$1, HasClassName, HasAriaDisabled, HasDisabled {
2027
+ /** Link label content. */
2028
+ label?: JSXElement;
2067
2029
  /** Color variant. */
2068
2030
  color?: ColorWithVariants$1;
2069
2031
  /** Lightened or darkened variant of the selected icon color. */
2070
2032
  colorVariant?: ColorVariant$1;
2071
2033
  /** Link href. */
2072
- href?: HTMLAnchorProps['href'];
2073
- /** Whether the component is disabled or not. */
2074
- isDisabled?: boolean;
2034
+ href?: string;
2075
2035
  /**
2076
2036
  * Left icon (SVG path).
2077
- * @deprecated Instead, simply nest `<Icon />` in the children
2037
+ * @deprecated Instead, simply nest `<Icon />` in the label
2078
2038
  */
2079
2039
  leftIcon?: string;
2080
- /** Custom react component for the link (can be used to inject react router Link). */
2081
- linkAs?: 'a' | any;
2040
+ /** Element type or custom component for the link. */
2041
+ as?: string | any;
2082
2042
  /**
2083
2043
  * Right icon (SVG path).
2084
- * @deprecated Instead, simply nest `<Icon />` in the children
2044
+ * @deprecated Instead, simply nest `<Icon />` in the label
2085
2045
  */
2086
2046
  rightIcon?: string;
2087
2047
  /** Link target. */
2048
+ target?: string;
2049
+ /** Typography variant. */
2050
+ typography?: string;
2051
+ /** Click handler. */
2052
+ onClick?: (event: any) => void;
2053
+ /** Reference to the root element. */
2054
+ ref?: CommonRef;
2055
+ }
2056
+
2057
+ type HTMLAnchorProps = React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
2058
+ /**
2059
+ * Defines the props of the component.
2060
+ */
2061
+ interface LinkProps extends GenericProps, Omit<LinkProps$1, 'label'> {
2062
+ /** Link href. */
2063
+ href?: HTMLAnchorProps['href'];
2064
+ /** Custom react component for the link (can be used to inject react router Link). */
2065
+ linkAs?: 'a' | any;
2066
+ /** Link target. */
2088
2067
  target?: HTMLAnchorProps['target'];
2089
2068
  /** Typography variant. */
2090
2069
  typography?: Typography$1;
2091
2070
  /** Children */
2092
- children?: React.ReactNode;
2071
+ children?: React__default.ReactNode;
2093
2072
  }
2094
2073
  /**
2095
2074
  * Link component.
@@ -2103,7 +2082,7 @@ declare const Link: Comp<LinkProps, HTMLButtonElement | HTMLAnchorElement>;
2103
2082
  /**
2104
2083
  * Defines the props of the component.
2105
2084
  */
2106
- interface LinkPreviewProps extends GenericProps, HasTheme$1 {
2085
+ interface LinkPreviewProps extends GenericProps, HasTheme {
2107
2086
  /** Description. */
2108
2087
  description?: string;
2109
2088
  /** Link URL. */
@@ -2113,7 +2092,7 @@ interface LinkPreviewProps extends GenericProps, HasTheme$1 {
2113
2092
  /** Props to pass to the link (minus those already set by the LinkPreview props). */
2114
2093
  linkProps?: Omit<LinkProps, 'color' | 'colorVariant' | 'href' | 'target'>;
2115
2094
  /** Size variant. */
2116
- size?: Extract<Size$1, 'regular' | 'big'>;
2095
+ size?: Extract<Size, 'regular' | 'big'>;
2117
2096
  /** Thumbnail for the link preview. */
2118
2097
  thumbnailProps?: ThumbnailProps;
2119
2098
  /** Title. */
@@ -2155,7 +2134,7 @@ interface ListProps extends GenericProps {
2155
2134
  */
2156
2135
  isClickable?: boolean;
2157
2136
  /** Item padding size. */
2158
- itemPadding?: Extract<Size$1, 'big' | 'huge'>;
2137
+ itemPadding?: Extract<Size, 'big' | 'huge'>;
2159
2138
  /** Tab index of the list. Default to -1 */
2160
2139
  tabIndex?: number;
2161
2140
  /**
@@ -2171,50 +2150,6 @@ declare const List: Comp<ListProps, HTMLUListElement> & {
2171
2150
  useKeyboardListNavigation: useKeyboardListNavigationType;
2172
2151
  };
2173
2152
 
2174
- type ListItemSize = Extract<Size$1, 'tiny' | 'regular' | 'big' | 'huge'>;
2175
- /**
2176
- * Defines the props of the component.
2177
- */
2178
- interface ListItemProps extends GenericProps, HasAriaDisabled$1 {
2179
- /** A component to be rendered after the content. */
2180
- after?: ReactNode;
2181
- /** A component to be rendered before the content. */
2182
- before?: ReactNode;
2183
- /** Content. */
2184
- children: string | ReactNode;
2185
- /** Whether the list item should be highlighted or not. */
2186
- isHighlighted?: boolean;
2187
- /** Whether the component is selected or not. */
2188
- isSelected?: boolean;
2189
- /** Whether link/button is disabled or not. */
2190
- isDisabled?: boolean;
2191
- /** Reference to the <li> element. */
2192
- listItemRef?: Ref<HTMLLIElement>;
2193
- /** Custom react component for the link (can be used to inject react router Link). */
2194
- linkAs?: 'a' | any;
2195
- /** Props that will be passed on to the Link */
2196
- linkProps?: React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
2197
- /** Reference to the link element. */
2198
- linkRef?: Ref<HTMLAnchorElement>;
2199
- /** Size variant. */
2200
- size?: ListItemSize;
2201
- /** On selected callback. */
2202
- onItemSelected?(evt: SyntheticEvent): void;
2203
- }
2204
- /**
2205
- * Check if the list item is clickable.
2206
- * @return `true` if the list item is clickable; `false` otherwise.
2207
- */
2208
- declare function isClickable({ linkProps, onItemSelected }: Partial<ListItemProps>): boolean;
2209
- /**
2210
- * ListItem component.
2211
- *
2212
- * @param props Component props.
2213
- * @param ref Component ref.
2214
- * @return React element.
2215
- */
2216
- declare const ListItem: Comp<ListItemProps, HTMLLIElement>;
2217
-
2218
2153
  /**
2219
2154
  * Defines the props of the component.
2220
2155
  */
@@ -2253,7 +2188,7 @@ interface MessageProps$1 extends HasClassName {
2253
2188
  /** Whether the message has a background or not. */
2254
2189
  hasBackground?: boolean;
2255
2190
  /** Message variant. */
2256
- kind?: Kind;
2191
+ kind?: Kind$1;
2257
2192
  /** Message custom icon SVG path. */
2258
2193
  icon?: string;
2259
2194
  /** Reference to the message container element. */
@@ -2287,7 +2222,7 @@ declare const Message: Comp<MessageProps, HTMLDivElement>;
2287
2222
  /**
2288
2223
  * Defines the props of the component.
2289
2224
  */
2290
- interface MosaicProps extends GenericProps, HasTheme$1 {
2225
+ interface MosaicProps extends GenericProps, HasTheme {
2291
2226
  /** Thumbnails. */
2292
2227
  thumbnails: ThumbnailProps[];
2293
2228
  /** On image click callback. */
@@ -2322,14 +2257,14 @@ type BaseNavigationItemProps = {
2322
2257
  };
2323
2258
  declare const NavigationItem: (<E extends ElementType = "a">(props: React$1.PropsWithoutRef<React$1.ComponentProps<E>> & {
2324
2259
  as?: E | undefined;
2325
- } & HasTheme$1 & HasClassName$1 & BaseNavigationItemProps & HasRequiredLinkHref<E> & React$1.ComponentProps<E> & {
2260
+ } & HasTheme & HasClassName$1 & BaseNavigationItemProps & HasRequiredLinkHref<E> & React$1.ComponentProps<E> & {
2326
2261
  ref?: ComponentRef<E> | undefined;
2327
2262
  }) => React.JSX.Element) & {
2328
2263
  displayName: string;
2329
2264
  className: "lumx-navigation-item";
2330
2265
  };
2331
2266
 
2332
- type NavigationProps = React.ComponentProps<'nav'> & HasClassName$1 & HasTheme$1 & {
2267
+ type NavigationProps = React.ComponentProps<'nav'> & HasClassName$1 & HasTheme & {
2333
2268
  /** Content of the navigation. These components should be of type NavigationItem to be rendered */
2334
2269
  children?: React.ReactNode;
2335
2270
  orientation?: Orientation$1;
@@ -2343,7 +2278,7 @@ declare const Navigation: Comp<NavigationProps, HTMLElement> & SubComponents;
2343
2278
  /**
2344
2279
  * Defines the props of the component.
2345
2280
  */
2346
- interface NotificationProps extends GenericProps, HasTheme$1 {
2281
+ interface NotificationProps extends GenericProps, HasTheme {
2347
2282
  /** Action button label. */
2348
2283
  actionLabel?: string;
2349
2284
  /** Content. */
@@ -2351,7 +2286,7 @@ interface NotificationProps extends GenericProps, HasTheme$1 {
2351
2286
  /** Whether the component is open or not. */
2352
2287
  isOpen?: boolean;
2353
2288
  /** Notification type. */
2354
- type?: Kind$1;
2289
+ type?: Kind;
2355
2290
  /** Z-axis position. */
2356
2291
  zIndex?: number;
2357
2292
  /** On action button click callback. */
@@ -2387,7 +2322,7 @@ declare const PopoverDialog: Comp<PopoverDialogProps, HTMLDivElement>;
2387
2322
  /**
2388
2323
  * Defines the props of the component.
2389
2324
  */
2390
- interface PostBlockProps extends GenericProps, HasTheme$1 {
2325
+ interface PostBlockProps extends GenericProps, HasTheme {
2391
2326
  /** Action toolbar content. */
2392
2327
  actions?: ReactNode;
2393
2328
  /** Attachment content. */
@@ -2431,7 +2366,7 @@ type ProgressVariant = ValueOf$1<typeof ProgressVariant>;
2431
2366
  /**
2432
2367
  * Defines the props of the component.
2433
2368
  */
2434
- interface ProgressProps extends GenericProps, HasTheme$1 {
2369
+ interface ProgressProps extends GenericProps, HasTheme {
2435
2370
  /** Progress variant. */
2436
2371
  variant?: ProgressVariant;
2437
2372
  }
@@ -2448,11 +2383,11 @@ declare const Progress: Comp<ProgressProps, HTMLDivElement>;
2448
2383
  /**
2449
2384
  * Progress sizes.
2450
2385
  */
2451
- type ProgressCircularSize = Extract<Size$1, 'xxs' | 'xs' | 's' | 'm'>;
2386
+ type ProgressCircularSize = Extract<Size, 'xxs' | 'xs' | 's' | 'm'>;
2452
2387
  /**
2453
2388
  * Defines the props of the component.
2454
2389
  */
2455
- interface ProgressCircularProps extends GenericProps, HasTheme$1 {
2390
+ interface ProgressCircularProps extends GenericProps, HasTheme {
2456
2391
  /**
2457
2392
  * Progress circular size.
2458
2393
  */
@@ -2472,7 +2407,7 @@ interface ProgressCircularProps extends GenericProps, HasTheme$1 {
2472
2407
  */
2473
2408
  declare const ProgressCircular: Comp<ProgressCircularProps, HTMLDivElement>;
2474
2409
 
2475
- interface ProgressLinearProps extends GenericProps, HasTheme$1 {
2410
+ interface ProgressLinearProps extends GenericProps, HasTheme {
2476
2411
  }
2477
2412
  /**
2478
2413
  * ProgressLinear component.
@@ -2585,7 +2520,7 @@ declare const ProgressTrackerStepPanel: Comp<ProgressTrackerStepPanelProps, HTML
2585
2520
  /**
2586
2521
  * Defines the props of the component.
2587
2522
  */
2588
- interface RadioButtonProps$1 extends HasTheme, HasClassName, HasAriaDisabled, HasDisabled, HasChecked {
2523
+ interface RadioButtonProps$1 extends HasTheme$1, HasClassName, HasAriaDisabled, HasDisabled, HasChecked {
2589
2524
  /** Helper text. */
2590
2525
  helper?: string;
2591
2526
  /** Native input id property. */
@@ -2646,7 +2581,7 @@ declare const SelectVariant: {
2646
2581
  readonly chip: "chip";
2647
2582
  };
2648
2583
  type SelectVariant = ValueOf$1<typeof SelectVariant>;
2649
- interface CoreSelectProps extends GenericProps, HasTheme$1 {
2584
+ interface CoreSelectProps extends GenericProps, HasTheme {
2650
2585
  /** Props to pass to the clear button (minus those already set by the Select props). If not specified, the button won't be displayed. */
2651
2586
  clearButtonProps?: Pick<IconButtonProps, 'label'> & Omit<IconButtonProps, 'label' | 'onClick' | 'icon' | 'emphasis'>;
2652
2587
  /** Whether the select (input variant) is displayed with error style or not. */
@@ -2726,7 +2661,7 @@ declare const SelectMultiple: Comp<SelectMultipleProps, HTMLDivElement>;
2726
2661
  /**
2727
2662
  * Defines the props of the component.
2728
2663
  */
2729
- interface SideNavigationProps extends GenericProps, HasTheme$1 {
2664
+ interface SideNavigationProps extends GenericProps, HasTheme {
2730
2665
  /** SideNavigationItem elements. */
2731
2666
  children: ReactNode;
2732
2667
  }
@@ -2746,7 +2681,7 @@ interface SideNavigationItemProps extends GenericProps, HasCloseMode {
2746
2681
  /** SideNavigationItem elements. */
2747
2682
  children?: ReactNode;
2748
2683
  /** Emphasis variant. */
2749
- emphasis?: Emphasis$1;
2684
+ emphasis?: Emphasis;
2750
2685
  /** Label content. */
2751
2686
  label: string | ReactNode;
2752
2687
  /** Icon (SVG path). */
@@ -2778,7 +2713,7 @@ declare const SideNavigationItem: Comp<SideNavigationItemProps, HTMLLIElement>;
2778
2713
  /**
2779
2714
  * Defines the props of the component.
2780
2715
  */
2781
- interface SkeletonCircleProps$1 extends HasTheme, HasClassName {
2716
+ interface SkeletonCircleProps$1 extends HasTheme$1, HasClassName {
2782
2717
  /** Size variant. */
2783
2718
  size: GlobalSize;
2784
2719
  /** The color of the skeleton. */
@@ -2799,9 +2734,9 @@ type SkeletonRectangleVariant = ValueOf<typeof SkeletonRectangleVariant>;
2799
2734
  /**
2800
2735
  * Defines the props of the component.
2801
2736
  */
2802
- interface SkeletonRectangleProps$1 extends HasTheme, HasClassName {
2737
+ interface SkeletonRectangleProps$1 extends HasTheme$1, HasClassName {
2803
2738
  /** Aspect ratio (use with width and not height). */
2804
- aspectRatio?: Extract<AspectRatio, 'square' | 'horizontal' | 'vertical' | 'wide'>;
2739
+ aspectRatio?: Extract<AspectRatio$1, 'square' | 'horizontal' | 'vertical' | 'wide'>;
2805
2740
  /** Height size. */
2806
2741
  height?: GlobalSize;
2807
2742
  /** Border variant. */
@@ -2817,7 +2752,7 @@ interface SkeletonRectangleProps$1 extends HasTheme, HasClassName {
2817
2752
  /**
2818
2753
  * Defines the props of the component.
2819
2754
  */
2820
- interface SkeletonTypographyProps$1 extends HasTheme, HasClassName {
2755
+ interface SkeletonTypographyProps$1 extends HasTheme$1, HasClassName {
2821
2756
  /** Typography variant. */
2822
2757
  typography: TypographyInterface;
2823
2758
  /** Width CSS property. */
@@ -2875,7 +2810,7 @@ declare const SkeletonTypography: Comp<SkeletonTypographyProps, HTMLDivElement>;
2875
2810
  /**
2876
2811
  * Defines the props of the component.
2877
2812
  */
2878
- interface SliderProps extends GenericProps, HasTheme$1 {
2813
+ interface SliderProps extends GenericProps, HasTheme {
2879
2814
  /** Helper text. */
2880
2815
  helper?: string;
2881
2816
  /** Whether the min and max labels should be hidden or not. */
@@ -3039,7 +2974,7 @@ interface UseSlideshowControls {
3039
2974
  /**
3040
2975
  * Defines the props of the component.
3041
2976
  */
3042
- interface SlideshowControlsProps extends GenericProps, HasTheme$1 {
2977
+ interface SlideshowControlsProps extends GenericProps, HasTheme {
3043
2978
  /** Index of the current slide. */
3044
2979
  activeIndex?: number;
3045
2980
  /** Props to pass to the next button (minus those already set by the SlideshowControls props). */
@@ -3083,7 +3018,7 @@ declare const SlideshowControls: Comp<SlideshowControlsProps, HTMLDivElement> &
3083
3018
  };
3084
3019
  };
3085
3020
 
3086
- interface SlidesProps extends GenericProps, HasTheme$1 {
3021
+ interface SlidesProps extends GenericProps, HasTheme {
3087
3022
  /** current slide active */
3088
3023
  activeIndex: number;
3089
3024
  /** slides id to be added to the wrapper */
@@ -3128,7 +3063,7 @@ declare const Slides: Comp<SlidesProps, HTMLDivElement>;
3128
3063
  /**
3129
3064
  * Defines the props of the component.
3130
3065
  */
3131
- interface SwitchProps$1 extends HasTheme, HasClassName, HasAriaDisabled, HasDisabled, HasChecked {
3066
+ interface SwitchProps$1 extends HasTheme$1, HasClassName, HasAriaDisabled, HasDisabled, HasChecked {
3132
3067
  /** Helper text. */
3133
3068
  helper?: string;
3134
3069
  /** Native input id property. */
@@ -3172,11 +3107,21 @@ declare const Switch: Comp<SwitchProps, HTMLDivElement>;
3172
3107
  /**
3173
3108
  * Defines the props of the component.
3174
3109
  */
3175
- interface TableProps extends GenericProps, HasTheme$1 {
3110
+ interface TableProps$1 extends HasTheme$1, HasClassName {
3176
3111
  /** Whether the table has checkbox or thumbnail on first cell or not. */
3177
3112
  hasBefore?: boolean;
3178
3113
  /** Whether the table has dividers or not. */
3179
3114
  hasDividers?: boolean;
3115
+ /** Children */
3116
+ children?: JSXElement;
3117
+ /** reference to the root element */
3118
+ ref?: CommonRef;
3119
+ }
3120
+
3121
+ /**
3122
+ * Defines the props of the component.
3123
+ */
3124
+ interface TableProps extends GenericProps, Omit<TableProps$1, 'ref'> {
3180
3125
  /** Children */
3181
3126
  children?: React.ReactNode;
3182
3127
  }
@@ -3192,7 +3137,17 @@ declare const Table: Comp<TableProps, HTMLTableElement>;
3192
3137
  /**
3193
3138
  * Defines the props of the component.
3194
3139
  */
3195
- interface TableBodyProps extends GenericProps {
3140
+ interface TableBodyProps$1 extends HasClassName {
3141
+ /** Children */
3142
+ children?: JSXElement;
3143
+ /** reference to the root element */
3144
+ ref?: CommonRef;
3145
+ }
3146
+
3147
+ /**
3148
+ * Defines the props of the component.
3149
+ */
3150
+ interface TableBodyProps extends GenericProps, Omit<TableBodyProps$1, 'ref'> {
3196
3151
  /** Children */
3197
3152
  children?: React.ReactNode;
3198
3153
  }
@@ -3212,7 +3167,7 @@ declare const ThOrder: {
3212
3167
  readonly asc: "asc";
3213
3168
  readonly desc: "desc";
3214
3169
  };
3215
- type ThOrder = ValueOf$1<typeof ThOrder>;
3170
+ type ThOrder = ValueOf<typeof ThOrder>;
3216
3171
  /**
3217
3172
  * Table cell variants.
3218
3173
  */
@@ -3220,11 +3175,11 @@ declare const TableCellVariant: {
3220
3175
  readonly body: "body";
3221
3176
  readonly head: "head";
3222
3177
  };
3223
- type TableCellVariant = ValueOf$1<typeof TableCellVariant>;
3178
+ type TableCellVariant = ValueOf<typeof TableCellVariant>;
3224
3179
  /**
3225
3180
  * Defines the props of the component.
3226
3181
  */
3227
- interface TableCellProps extends GenericProps {
3182
+ interface TableCellProps$1 extends HasClassName {
3228
3183
  /** Icon (SVG path).(thead only). */
3229
3184
  icon?: string;
3230
3185
  /** Whether the column is sortable or not (thead only). */
@@ -3235,6 +3190,16 @@ interface TableCellProps extends GenericProps {
3235
3190
  variant?: TableCellVariant;
3236
3191
  /** On header cell click callback. */
3237
3192
  onHeaderClick?(): void;
3193
+ /** Children */
3194
+ children?: JSXElement;
3195
+ /** reference to the root element */
3196
+ ref?: CommonRef;
3197
+ }
3198
+
3199
+ /**
3200
+ * Defines the props of the component.
3201
+ */
3202
+ interface TableCellProps extends GenericProps, Omit<TableCellProps$1, 'ref'> {
3238
3203
  /** Children */
3239
3204
  children?: React.ReactNode;
3240
3205
  }
@@ -3250,7 +3215,17 @@ declare const TableCell: Comp<TableCellProps, HTMLTableCellElement>;
3250
3215
  /**
3251
3216
  * Defines the props of the component.
3252
3217
  */
3253
- interface TableHeaderProps extends GenericProps {
3218
+ interface TableHeaderProps$1 extends HasClassName {
3219
+ /** Children */
3220
+ children?: JSXElement;
3221
+ /** reference to the root element */
3222
+ ref?: CommonRef;
3223
+ }
3224
+
3225
+ /**
3226
+ * Defines the props of the component.
3227
+ */
3228
+ interface TableHeaderProps extends GenericProps, Omit<TableHeaderProps$1, 'ref'> {
3254
3229
  /** Children */
3255
3230
  children?: React.ReactNode;
3256
3231
  }
@@ -3266,13 +3241,25 @@ declare const TableHeader: Comp<TableHeaderProps, HTMLTableSectionElement>;
3266
3241
  /**
3267
3242
  * Defines the props of the component.
3268
3243
  */
3269
- interface TableRowProps extends GenericProps {
3244
+ interface TableRowProps$1 extends HasClassName, HasAriaDisabled {
3270
3245
  /** Whether the component is clickable or not. */
3271
3246
  isClickable?: boolean;
3272
- /** Whether the component is disabled or not. */
3273
- isDisabled?: boolean;
3274
3247
  /** Whether the component is selected or not. */
3275
3248
  isSelected?: boolean;
3249
+ /** Tab index */
3250
+ tabIndex?: number;
3251
+ /** Children */
3252
+ children?: JSXElement;
3253
+ /** reference to the root element */
3254
+ ref?: CommonRef;
3255
+ }
3256
+
3257
+ /**
3258
+ * Defines the props of the component.
3259
+ */
3260
+ interface TableRowProps extends GenericProps, Omit<TableRowProps$1, 'ref' | 'tabIndex' | 'aria-disabled'> {
3261
+ /** Whether the component is disabled or not. */
3262
+ isDisabled?: boolean;
3276
3263
  /** Children */
3277
3264
  children?: React.ReactNode;
3278
3265
  }
@@ -3315,7 +3302,7 @@ declare enum TabListLayout {
3315
3302
  /**
3316
3303
  * Defines the props of the component.
3317
3304
  */
3318
- interface TabListProps extends GenericProps, HasTheme$1 {
3305
+ interface TabListProps extends GenericProps, HasTheme {
3319
3306
  /** ARIA label (purpose of the set of tabs). */
3320
3307
  ['aria-label']: string;
3321
3308
  /** Tab list. */
@@ -3399,79 +3386,11 @@ interface TextProps extends TextProps$1, GenericProps {
3399
3386
  */
3400
3387
  declare const Text: Comp<TextProps, HTMLElement>;
3401
3388
 
3402
- /**
3403
- * Defines the props of the component.
3404
- */
3405
- interface TextFieldProps extends GenericProps, HasTheme$1, HasAriaDisabled$1 {
3406
- /** Chip Group to be rendered before the main text input. */
3407
- chips?: ReactNode;
3408
- /** Props to pass to the clear button (minus those already set by the TextField props). If not specified, the button won't be displayed. */
3409
- clearButtonProps?: Pick<IconButtonProps, 'label'> & Omit<IconButtonProps, 'label' | 'onClick' | 'icon' | 'emphasis'>;
3410
- /** Error message. */
3411
- error?: string | ReactNode;
3412
- /** Whether we force the focus style or not. */
3413
- forceFocusStyle?: boolean;
3414
- /** Whether the text field is displayed with error style or not. */
3415
- hasError?: boolean;
3416
- /** Additional element to put at the end of the text field. */
3417
- afterElement?: ReactNode;
3418
- /** Helper text. */
3419
- helper?: string | ReactNode;
3420
- /** Icon (SVG path). */
3421
- icon?: string;
3422
- /** Native input id property (generated if not provided to link the label element). */
3423
- id?: string;
3424
- /** Reference to the <input> or <textarea> element. */
3425
- inputRef?: Ref<HTMLInputElement | HTMLTextAreaElement>;
3426
- /** Whether the component is disabled or not. */
3427
- isDisabled?: boolean;
3428
- /** Whether the component is required or not. */
3429
- isRequired?: boolean;
3430
- /** Whether the text field is displayed with valid style or not. */
3431
- isValid?: boolean;
3432
- /** Label text. */
3433
- label?: string;
3434
- /** Additional label props. */
3435
- labelProps?: InputLabelProps;
3436
- /** Max string length the input accepts (constrains the input and displays a character counter). */
3437
- maxLength?: number;
3438
- /** Minimum number of rows displayed in multiline mode (requires `multiline` to be enabled). */
3439
- minimumRows?: number;
3440
- /** Whether the text field is a textarea or an input. */
3441
- multiline?: boolean;
3442
- /** Native input name property. */
3443
- name?: string;
3444
- /** Placeholder text. */
3445
- placeholder?: string;
3446
- /** Reference to the wrapper. */
3447
- textFieldRef?: Ref<HTMLDivElement>;
3448
- /** Native input type (only when `multiline` is disabled). */
3449
- type?: React.ComponentProps<'input'>['type'];
3450
- /** Value. */
3451
- value?: string;
3452
- /** On blur callback. */
3453
- onBlur?(event: React.FocusEvent): void;
3454
- /** On change callback. */
3455
- onChange(value: string, name?: string, event?: SyntheticEvent): void;
3456
- /** On clear callback. */
3457
- onClear?(event?: SyntheticEvent): void;
3458
- /** On focus callback. */
3459
- onFocus?(event: React.FocusEvent): void;
3460
- }
3461
- /**
3462
- * TextField component.
3463
- *
3464
- * @param props Component props.
3465
- * @param ref Component ref.
3466
- * @return React element.
3467
- */
3468
- declare const TextField: Comp<TextFieldProps, HTMLDivElement>;
3469
-
3470
3389
  type NativeInputProps = Omit<ComponentProps<'input'>, 'value' | 'onChange'>;
3471
3390
  /**
3472
3391
  * Defines the props of the component.
3473
3392
  */
3474
- interface RawInputTextProps extends NativeInputProps, HasTheme$1, HasClassName$1 {
3393
+ interface RawInputTextProps extends NativeInputProps, HasTheme, HasClassName$1 {
3475
3394
  value?: string;
3476
3395
  onChange?: (value: string, name?: string, event?: SyntheticEvent) => void;
3477
3396
  }
@@ -3485,7 +3404,7 @@ type NativeTextareaProps = ComponentProps<'textarea'>;
3485
3404
  /**
3486
3405
  * Defines the props of the component.
3487
3406
  */
3488
- interface RawInputTextareaProps extends Omit<NativeTextareaProps, 'value' | 'onChange'>, HasTheme$1, HasClassName$1 {
3407
+ interface RawInputTextareaProps extends Omit<NativeTextareaProps, 'value' | 'onChange'>, HasTheme, HasClassName$1 {
3489
3408
  minimumRows?: number;
3490
3409
  value?: string;
3491
3410
  onChange?: (value: string, name?: string, event?: SyntheticEvent) => void;
@@ -3518,36 +3437,6 @@ interface ToolbarProps extends GenericProps {
3518
3437
  */
3519
3438
  declare const Toolbar: Comp<ToolbarProps, HTMLDivElement>;
3520
3439
 
3521
- declare const ARIA_LINK_MODES: readonly ["aria-describedby", "aria-labelledby"];
3522
-
3523
- /** Position of the tooltip relative to the anchor element. */
3524
- type TooltipPlacement = Extract<Placement, 'top' | 'right' | 'bottom' | 'left'>;
3525
- /**
3526
- * Defines the props of the component.
3527
- */
3528
- interface TooltipProps extends GenericProps, HasCloseMode {
3529
- /** Anchor (element on which we activate the tooltip). */
3530
- children: ReactNode;
3531
- /** Delay (in ms) before closing the tooltip. */
3532
- delay?: number;
3533
- /** Whether the tooltip is displayed even without the mouse hovering the anchor. */
3534
- forceOpen?: boolean;
3535
- /** Label text. */
3536
- label?: string | null | false;
3537
- /** Placement of the tooltip relative to the anchor. */
3538
- placement?: TooltipPlacement;
3539
- /** Choose how the tooltip text should link to the anchor */
3540
- ariaLinkMode?: (typeof ARIA_LINK_MODES)[number];
3541
- }
3542
- /**
3543
- * Tooltip component.
3544
- *
3545
- * @param props Component props.
3546
- * @param ref Component ref.
3547
- * @return React element.
3548
- */
3549
- declare const Tooltip: Comp<TooltipProps, HTMLDivElement>;
3550
-
3551
3440
  /**
3552
3441
  * Uploader variants.
3553
3442
  */
@@ -3560,7 +3449,7 @@ type UploaderVariant = ValueOf$1<typeof UploaderVariant>;
3560
3449
  /**
3561
3450
  * Uploader sizes.
3562
3451
  */
3563
- type UploaderSize = Extract<Size$1, 'xl' | 'xxl'>;
3452
+ type UploaderSize = Extract<Size, 'xl' | 'xxl'>;
3564
3453
  /**
3565
3454
  * Extend native HTML input props with specialized `onChange` providing the a `File` array.
3566
3455
  */
@@ -3570,9 +3459,9 @@ interface FileInputProps extends Omit<React__default.ComponentProps<'input'>, 'o
3570
3459
  /**
3571
3460
  * Defines the props of the component.
3572
3461
  */
3573
- interface UploaderProps extends GenericProps, HasTheme$1, HasAriaDisabled$1 {
3462
+ interface UploaderProps extends GenericProps, HasTheme, HasAriaDisabled$1 {
3574
3463
  /** Image aspect ratio. */
3575
- aspectRatio?: AspectRatio$1;
3464
+ aspectRatio?: AspectRatio;
3576
3465
  /** Icon (SVG path). */
3577
3466
  icon?: string;
3578
3467
  /** Disabled state */
@@ -3600,11 +3489,11 @@ declare const Uploader: Comp<UploaderProps, HTMLElement>;
3600
3489
  /**
3601
3490
  * User block sizes.
3602
3491
  */
3603
- type UserBlockSize = Extract<Size$1, 'xs' | 's' | 'm' | 'l'>;
3492
+ type UserBlockSize = Extract<Size, 'xs' | 's' | 'm' | 'l'>;
3604
3493
  /**
3605
3494
  * Defines the props of the component.
3606
3495
  */
3607
- interface UserBlockProps extends GenericProps, HasTheme$1 {
3496
+ interface UserBlockProps extends GenericProps, HasTheme {
3608
3497
  /** Props to pass to the avatar. */
3609
3498
  avatarProps?: Omit<AvatarProps, 'alt'>;
3610
3499
  /** Additional fields used to describe the user. */
@@ -3645,7 +3534,7 @@ interface UserBlockProps extends GenericProps, HasTheme$1 {
3645
3534
  */
3646
3535
  declare const UserBlock: Comp<UserBlockProps, HTMLDivElement>;
3647
3536
 
3648
- type ThemeContextValue = Theme$1 | undefined;
3537
+ type ThemeContextValue = Theme | undefined;
3649
3538
  /** Provide a theme context to all children. */
3650
3539
  declare const ThemeProvider: React__default.FC<{
3651
3540
  value: ThemeContextValue;
@@ -3654,5 +3543,5 @@ declare const ThemeProvider: React__default.FC<{
3654
3543
  /** Get the theme in the current context. */
3655
3544
  declare function useTheme(): ThemeContextValue;
3656
3545
 
3657
- 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 };
3658
- 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 };
3546
+ export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, BaseButtonProps, Button, ButtonEmphasis, ButtonGroup, CLASSNAME, COMBOBOX_OPTION_CLASSNAME, COMPONENT_NAME, Checkbox, Chip, ChipGroup, Combobox, ComboboxButton, ComboboxDivider, ComboboxInput, ComboboxListBox, ComboboxOption, ComboboxOptionAction, ComboboxOptionMoreInfo, ComboboxOptionProps, ComboboxOptionSkeleton, ComboboxProps, ComboboxSection, CommentBlock, CommentBlockVariant, DEFAULT_PROPS, DatePicker, DatePickerControlled, DatePickerField, Dialog, Divider, DragHandle, Dropdown, Elevation, ExpansionPanel, Flag, FlexBox, GenericBlock, GenericBlockGapSize, Grid, GridColumn, GridItem, Heading, HeadingLevelProvider, Icon, IconButtonProps, ImageBlock, ImageBlockCaptionPosition, ImageLightbox, InlineList, InputHelper, LUMX_CLASSNAME, Lightbox, Link, LinkPreview, List, ListDivider, ListSubheader, Message, Mosaic, Navigation, Notification, Offset, Placement, Popover, PopoverDialog, PostBlock, Progress, ProgressCircular, ProgressLinear, ProgressTracker, ProgressTrackerProvider, ProgressTrackerStep, ProgressTrackerStepPanel, ProgressVariant, RadioButton, RadioGroup, RawInputText, RawInputTextarea, SUB_COMPONENTS, 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, TextFieldProps, ThOrder, ThOrder as ThOrderType, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, Toolbar, Uploader, UploaderVariant, UserBlock, clamp, useFocusPointStyle, useHeadingLevel, useTheme };
3547
+ export type { AlertDialogProps, AutocompleteMultipleProps, AutocompleteProps, AvatarProps, AvatarSize, BadgeProps, BadgeWrapperProps, ButtonGroupProps, ButtonProps, CheckboxProps, ChipGroupProps, ChipProps, ComboboxButtonProps, ComboboxInputProps, ComboboxListBoxProps, ComboboxOptionComponentProps, ComboboxOptionMoreInfoProps, ComboboxOptionSkeletonProps, ComboboxSectionProps, CommentBlockProps, DatePickerControlledProps, DatePickerFieldProps, DatePickerProps, DialogProps, DialogSizes, DividerProps, DragHandleProps, DropdownProps, ExpansionPanelProps, FlagProps, FlexBoxProps, FlexHorizontalAlignment, FlexVerticalAlignment, FocusPoint, GapSize, GenericBlockProps, GridColumnGapSize, GridColumnProps, GridItemProps, GridProps, HeadingLevelProviderProps, HeadingProps, IconProps, IconSizes, ImageBlockProps, ImageBlockSize, ImageLightboxProps, InlineListProps, InputHelperProps, LightboxProps, LinkPreviewProps, LinkProps, ListDividerProps, ListProps, ListSubheaderProps, MarginAutoAlignment, MessageProps, MosaicProps, NavigationProps, NotificationProps, 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, TextProps, ThumbnailProps, ThumbnailSize, ToolbarProps, UploaderProps, UploaderSize, UserBlockProps, UserBlockSize };