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

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,10 +1,10 @@
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 as Kind$1, HorizontalAlignment as HorizontalAlignment$1, Size as Size$1, ColorPalette as ColorPalette$1, Theme as Theme$1, GenericProps as GenericProps$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, PartialBy, 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, { Ref, ReactElement, ReactNode, SyntheticEvent, MouseEventHandler, KeyboardEventHandler, AriaAttributes, ReactText, RefObject, CSSProperties, ImgHTMLAttributes, SetStateAction, Key, ElementType, ComponentProps } from 'react';
8
8
  import * as react_jsx_runtime from 'react/jsx-runtime';
9
9
  import { Selector } from '@lumx/core/js/types/Selector';
10
10
 
@@ -512,12 +512,6 @@ type TextElement = 'span' | 'p' | HeadingElement;
512
512
  /** Get types of the values of a record. */
513
513
  type ValueOf<T extends Record<any, any>> = T[keyof T];
514
514
 
515
- /** Transform a string literal into kebab case */
516
- type KebabCase<S> = S extends `${infer C}${infer T}` ? T extends Uncapitalize<T> ? `${Uncapitalize<C>}${KebabCase<T>}` : `${Uncapitalize<C>}-${KebabCase<T>}` : S;
517
-
518
- /** Transform the component name into the lumx class name. */
519
- type LumxClassName<TComponentName extends string> = `lumx-${KebabCase<TComponentName>}`;
520
-
521
515
  type CommonRef = any;
522
516
 
523
517
  type Booleanish = boolean | 'true' | 'false';
@@ -655,10 +649,6 @@ interface ButtonProps$1 extends BaseButtonProps {
655
649
  * Component display name.
656
650
  */
657
651
  declare const COMPONENT_NAME = "Button";
658
- /**
659
- * Component default class name and class prefix.
660
- */
661
- declare const CLASSNAME: LumxClassName<typeof COMPONENT_NAME>;
662
652
  /**
663
653
  * Component default props.
664
654
  */
@@ -898,6 +888,503 @@ interface SelectionChipGroupProps<O> extends GenericProps {
898
888
  */
899
889
  declare const SelectionChipGroup: <O>({ onChange, value, getOptionId, getOptionName, inputRef, inputLabel, renderChip, theme, isDisabled, chipTooltipLabel, label, ...forwardedProps }: SelectionChipGroupProps<O>) => react_jsx_runtime.JSX.Element;
900
890
 
891
+ interface ComboboxButtonProps extends GenericProps {
892
+ /**
893
+ * Label of the combobox button trigger.
894
+ */
895
+ label: string;
896
+ /**
897
+ * Controls how the `label` is displayed:
898
+ * - `show-selection` (default): Displays the current selection as the label, or falls back to the provided `label`
899
+ * if there is no selection. The `label` will still appear as a tooltip in this mode.
900
+ * - `show-label`: Always displays the provided `label` as the visual label.
901
+ * - `show-tooltip`: Always displays the provided `label` as the visual a tooltip.
902
+ * (useful for IconButton combobox)
903
+ * In all cases, the given `label` is the ARIA label in use
904
+ */
905
+ labelDisplayMode?: 'show-selection' | 'show-label' | 'show-tooltip';
906
+ /**
907
+ * Focus event handler
908
+ */
909
+ onFocus?: React__default.FocusEventHandler;
910
+ /**
911
+ * Blur event handler
912
+ */
913
+ onBlur?: React__default.FocusEventHandler;
914
+ /** Customize the root element. */
915
+ as?: React__default.ElementType;
916
+ }
917
+ /**
918
+ * Combobox button trigger.
919
+ *
920
+ * @family Combobox
921
+ */
922
+ declare const ComboboxButton: Comp<ComboboxButtonProps, HTMLElement>;
923
+
924
+ /** Combobox option divider */
925
+ declare function ComboboxDivider(): react_jsx_runtime.JSX.Element;
926
+
927
+ /**
928
+ * All TextField props that are extended.
929
+ * We can't use "Omit" here as it is not compatible with the "GenericProps" type from the DS,
930
+ * meaning we would loose all props.
931
+ *
932
+ */
933
+ 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'>;
934
+ type ComboboxInputProps = ExtendedTextFieldProps & {
935
+ /** Whether the toggle button should be hidden */
936
+ hideToggle?: boolean;
937
+ /** Activate the clear button */
938
+ hasClearButton?: boolean;
939
+ /** Clear button forwarded props */
940
+ clearButtonProps?: Omit<TextFieldProps['clearButtonProps'], 'label'>;
941
+ /** Make input read only */
942
+ readOnly?: boolean;
943
+ };
944
+ /**
945
+ * Combobox input trigger.
946
+ *
947
+ * @family Combobox
948
+ */
949
+ declare const ComboboxInput: ({ hideToggle, inputRef, textFieldRef, afterElement, onFocus, onBlur, onKeyDown, clearButtonProps, hasClearButton, theme, ...textFieldProps }: ComboboxInputProps) => react_jsx_runtime.JSX.Element;
950
+
951
+ /**
952
+ * The source of the combobox option selection
953
+ * It could either be on click / touch or keyboard selection
954
+ */
955
+ type ComboboxOptionSelectEventSource = 'keyboard' | 'click';
956
+ type ComboboxSelectionType = 'single' | 'multiple';
957
+ type BaseLoadingStatus = 'loading' | 'loadingMore' | 'idle' | 'error' | 'debouncing' | 'filtering' | 'empty';
958
+ /**
959
+ * Options related types
960
+ */
961
+ /** All possible values a combobox option can have */
962
+ type BaseComboboxOptionProps<O = any> = {
963
+ /**
964
+ * A unique id to track the option
965
+ */
966
+ id: string;
967
+ /**
968
+ * Whether the current input value should filter this option.
969
+ */
970
+ filterFromInput?: boolean;
971
+ /**
972
+ * Callback to call when the option is selected.
973
+ * This should only be used to add custom actions on options.
974
+ * For most cases, the "onSelect" on the Combobox root component should be enough.
975
+ */
976
+ onSelect?: (option: O, eventSource?: ComboboxOptionSelectEventSource) => void;
977
+ /**
978
+ * Additional data to link to the option. This can be useful to retrieve with `onSelect`.
979
+ */
980
+ data?: O;
981
+ /**
982
+ * Whether the option is disabled
983
+ */
984
+ isDisabled?: boolean;
985
+ /**
986
+ * The components to use to visually customize options.
987
+ * ! Options must not have interactive elements.
988
+ * ! If you need additional actions, you might need to create custom options and search how to
989
+ * ! make them accessible.
990
+ */
991
+ children?: ReactNode;
992
+ /**
993
+ * The text value the option has.
994
+ * This is the value used to filter the options by when manual filtering is disabled
995
+ * and that will be used as input value when an option is selected
996
+ */
997
+ textValue?: string;
998
+ /**
999
+ * Element to display before the content of the option.
1000
+ * ! Options must not have interactive elements.
1001
+ * ! If you need additional actions, you might need to create custom options and search how to
1002
+ * ! make them accessible.
1003
+ */
1004
+ before?: ReactNode;
1005
+ /**
1006
+ * Element to display after the content of the option.
1007
+ * ! Options must not have interactive elements.
1008
+ * ! If you need additional actions, you might need to create custom options and search how to
1009
+ * ! make them accessible.
1010
+ */
1011
+ after?: ReactNode;
1012
+ /**
1013
+ * Size of the list item.
1014
+ * Default to tiny
1015
+ */
1016
+ size?: ListItemSize;
1017
+ /**
1018
+ * Fill to activate a tooltip on mouse over
1019
+ */
1020
+ tooltipProps?: Partial<TooltipProps>;
1021
+ };
1022
+ /**
1023
+ * Props for when an option has no children.
1024
+ * In these case, we need at least the text value to know what to display
1025
+ * */
1026
+ type TextValueOnly<O = any> = BaseComboboxOptionProps<O> & {
1027
+ children?: never;
1028
+ textValue: string;
1029
+ };
1030
+ /**
1031
+ * Props for when an option has a react element as string
1032
+ * In that case, we can use the children as the textValue without having
1033
+ * to set a manual props.
1034
+ * The props is still available to have a text value different than the displayed value.
1035
+ */
1036
+ type StringOption<O = any> = BaseComboboxOptionProps<O> & {
1037
+ children: ReactText;
1038
+ textValue?: string;
1039
+ };
1040
+ /**
1041
+ * Props for when an option has a react element as children
1042
+ * In that case, we cannot know what the actual value of the
1043
+ * option is, so the `textValue` prop has to be set.
1044
+ */
1045
+ type NodeOption<O = any> = BaseComboboxOptionProps<O> & {
1046
+ children: Exclude<ReactNode, ReactText>;
1047
+ textValue: string;
1048
+ };
1049
+ /** Props for the ComboboxOption component */
1050
+ type ComboboxOptionProps<O = any> = TextValueOnly<O> | StringOption<O> | NodeOption<O>;
1051
+ /** Shared data between all combobox option types. */
1052
+ interface BaseRegisteredComboboxOption {
1053
+ id: string;
1054
+ /** The id that was generated for this option */
1055
+ generatedId: string;
1056
+ /** Whether the "option" is an action */
1057
+ isAction?: boolean;
1058
+ /** Whether the "option" is disabled */
1059
+ isDisabled?: boolean;
1060
+ }
1061
+ /** Combobox value */
1062
+ interface RegisteredComboboxOptionValue<O = any> extends BaseRegisteredComboboxOption, Pick<ComboboxOptionProps<O>, 'data' | 'filterFromInput' | 'textValue' | 'onSelect'> {
1063
+ /** The section the option is a child of. */
1064
+ sectionId?: string;
1065
+ /** Whether the "option" is an action */
1066
+ isAction?: never;
1067
+ }
1068
+ type OnComboboxSelect<O = any> = (option: RegisteredComboboxOptionValue<O>) => void;
1069
+ type OnComboboxInputChange = TextFieldProps['onChange'];
1070
+ type ComboboxTranslations = {
1071
+ clearLabel: string;
1072
+ showSuggestionsLabel: string;
1073
+ loadingLabel: string;
1074
+ noResultsForInputLabel: (input?: string) => string;
1075
+ serviceUnavailableLabel: string;
1076
+ tryReloadLabel: string;
1077
+ nbOptionsLabel: (options: number) => string;
1078
+ };
1079
+ /** Props for the main combobox component. */
1080
+ type ComboboxProps<O = any> = {
1081
+ /**
1082
+ * HTML id
1083
+ */
1084
+ id?: string;
1085
+ /**
1086
+ * The current option id to set as selected.
1087
+ * If omitted, the local state will be used instead;
1088
+ */
1089
+ selectedIds?: Array<string | number>;
1090
+ /**
1091
+ * The current value for the combobox input.
1092
+ * If omitted, the input is controlled locally */
1093
+ inputValue?: string;
1094
+ /**
1095
+ * The default value to set on the input.
1096
+ * Use this if you want to initialize the input with a value and not control it
1097
+ */
1098
+ defaultInputValue?: string;
1099
+ /**
1100
+ * Whether the options should be automatically filtered or not.
1101
+ * By default, the combobox will try to filter the options from the current input value
1102
+ * using a "contains" strategy.
1103
+ * If this is `false`, the option will not be automatically filtered and must be manually filtered by the parent.
1104
+ * Useful for asynchronous comboboxes.
1105
+ */
1106
+ autoFilter: boolean;
1107
+ /**
1108
+ * Whether the combobox should open on focus
1109
+ */
1110
+ openOnFocus?: boolean;
1111
+ /**
1112
+ * Whether the combobox should open on click
1113
+ */
1114
+ openOnClick?: boolean;
1115
+ /**
1116
+ * Status of the combobox
1117
+ */
1118
+ status?: BaseLoadingStatus;
1119
+ /**
1120
+ * Callback when the input changes.
1121
+ */
1122
+ onInputChange?: OnComboboxInputChange;
1123
+ /**
1124
+ * Callback for when an option is selected
1125
+ */
1126
+ onSelect?: OnComboboxSelect<O>;
1127
+ /**
1128
+ * Callback called when the combobox opens
1129
+ */
1130
+ onOpen?: (options: {
1131
+ currentValue?: string;
1132
+ manual: boolean;
1133
+ }) => void;
1134
+ /**
1135
+ * The combobox components to render.
1136
+ * Must be one of the exposed components (Combobox.Input, Combobox.ListBox etc...)
1137
+ */
1138
+ children: ReactNode;
1139
+ /**
1140
+ * The combobox can have a specific selection type:
1141
+ * - Single: only one item is selected
1142
+ * - Multiple: several items can be selected (this impacts the combobox list, which will now not close when selectiong an option)
1143
+ */
1144
+ selectionType?: ComboboxSelectionType;
1145
+ /**
1146
+ * Whether the error state should be displayed when the status is in error.
1147
+ * @default `true` if `status` is defined
1148
+ */
1149
+ showErrorState?: boolean;
1150
+ /**
1151
+ * Whether the empty state should be displayed when there is no results.
1152
+ * @default `true` if `autoFilter=false`
1153
+ */
1154
+ showEmptyState?: boolean;
1155
+ /** custom className */
1156
+ className?: string;
1157
+ /** translations to be used across the combobox */
1158
+ translations: ComboboxTranslations;
1159
+ };
1160
+
1161
+ interface ComboboxOptionSkeletonProps {
1162
+ className?: string;
1163
+ index?: number;
1164
+ children?: ReactNode | ((options: {
1165
+ index?: number;
1166
+ }) => ReactNode);
1167
+ before?: ComboboxOptionProps['before'];
1168
+ after?: ComboboxOptionProps['after'];
1169
+ size?: ComboboxOptionProps['size'];
1170
+ }
1171
+ /**
1172
+ * Skeleton for a combobox option.
1173
+ * A typography skeleton is rendered by default but can be overridden by passing children.
1174
+ */
1175
+ declare const ComboboxOptionSkeleton: ({ className, index, before, after, size, children, }: ComboboxOptionSkeletonProps) => react_jsx_runtime.JSX.Element;
1176
+
1177
+ interface ComboboxListSkeletonProps {
1178
+ isLoadingMore?: boolean;
1179
+ children?: ComboboxOptionSkeletonProps['children'];
1180
+ }
1181
+
1182
+ interface ComboboxListBoxProps extends GenericProps$1, React__default.ComponentProps<'ul'> {
1183
+ /** Options display in the combobox */
1184
+ children?: ReactNode;
1185
+ /**
1186
+ * Component to use as skeleton for each option instead of the default one.
1187
+ * Can either be a react node or a component that receives the index as prop
1188
+ */
1189
+ renderItemSkeleton?: ComboboxListSkeletonProps['children'];
1190
+ /** Label for the list */
1191
+ label?: string;
1192
+ /** Props of the popover element. */
1193
+ popoverProps?: Partial<PopoverProps>;
1194
+ /**
1195
+ * An element to display at the bottom of the listbox.
1196
+ * No interactive element must be set here as they will not be accessible.
1197
+ */
1198
+ footer?: ReactNode;
1199
+ /** List ref */
1200
+ listRef?: React__default.Ref<HTMLElement>;
1201
+ }
1202
+ /**
1203
+ * The listbox containing the combobox's options.
1204
+ *
1205
+ * @family Combobox
1206
+ * @param ComboboxListBoxProps
1207
+ * @returns ComboboxListBox
1208
+ */
1209
+ declare const ComboboxListBox: ({ children, renderItemSkeleton, label, popoverProps, footer, listRef, ...forwardedProps }: ComboboxListBoxProps) => react_jsx_runtime.JSX.Element;
1210
+
1211
+ declare const LUMX_CLASSNAME = "lumx-list-item";
1212
+ /**
1213
+ * Props for ComboboxOption with additional generic properties.
1214
+ */
1215
+ interface ComboboxOptionComponentProps<O extends object = any> extends GenericProps, Omit<ComboboxOptionProps<O>, 'as'> {
1216
+ /** Customize the root element. */
1217
+ as?: React__default.ElementType;
1218
+ }
1219
+ /**
1220
+ * Option to set within a combobox list.
1221
+ *
1222
+ * @family Combobox
1223
+ * @param ComboboxOptionProps
1224
+ * @returns ComboboxOption
1225
+ */
1226
+ declare const ComboboxOption: Comp<ComboboxOptionComponentProps<any>, HTMLElement>;
1227
+
1228
+ interface ComboboxOptionActionProps extends GenericProps {
1229
+ /** Should the action be set as disabled */
1230
+ isDisabled?: boolean;
1231
+ /** Action to trigger when the action is selected */
1232
+ onClick: () => void;
1233
+ /** Customize the root element. */
1234
+ as?: React__default.ElementType;
1235
+ }
1236
+ /**
1237
+ * Action to set on a Combobox Option.
1238
+ * Allows to add an interactive element that
1239
+ * can be navigated to and triggered using the keyboard.
1240
+ *
1241
+ * Defaults as "button"
1242
+ *
1243
+ * @family Combobox
1244
+ * @param ComboboxOptionActionProps
1245
+ * @returns ComboboxOptionAction
1246
+ */
1247
+ declare const ComboboxOptionAction: (props: ComboboxOptionActionProps) => react_jsx_runtime.JSX.Element;
1248
+
1249
+ interface ComboboxOptionMoreInfoProps {
1250
+ buttonProps?: Partial<IconButtonProps>;
1251
+ popoverProps?: PopoverProps;
1252
+ onToggle?: (isOpen: boolean) => void;
1253
+ children?: React__default.ReactNode;
1254
+ }
1255
+ /**
1256
+ * Display more info on the option as a popover opening on mouse hover or keyboard nav
1257
+ * Please consider using a simpler option description instead for better UX and a11y.
1258
+ *
1259
+ * @family Combobox
1260
+ */
1261
+ declare const ComboboxOptionMoreInfo: React__default.FC<ComboboxOptionMoreInfoProps>;
1262
+
1263
+ interface ComboboxSectionProps {
1264
+ /** Forwarded class name */
1265
+ className?: string;
1266
+ /** The title of the section */
1267
+ title?: string;
1268
+ /** Whether the section should be displayed as loading */
1269
+ isLoading?: boolean;
1270
+ /** Custom skeletons to use for loading state */
1271
+ renderItemSkeleton?: ComboboxListSkeletonProps['children'];
1272
+ /** Options to display */
1273
+ children: ReactNode;
1274
+ }
1275
+ /**
1276
+ * Section for options of a Combobox.
1277
+ *
1278
+ * @family Combobox
1279
+ * @param ComboboxSectionProps
1280
+ * @returns ComboboxSection
1281
+ */
1282
+ declare const ComboboxSection: ({ children, ...props }: ComboboxSectionProps) => react_jsx_runtime.JSX.Element;
1283
+
1284
+ declare const SUB_COMPONENTS: {
1285
+ /**
1286
+ * Option to set within a combobox list.
1287
+ *
1288
+ * @family Combobox
1289
+ * @param ComboboxOptionProps
1290
+ * @returns ComboboxOption
1291
+ */
1292
+ readonly Option: Comp<ComboboxOptionComponentProps<any>, HTMLElement>;
1293
+ /**
1294
+ * Skeleton for a combobox option.
1295
+ * A typography skeleton is rendered by default but can be overridden by passing children.
1296
+ */
1297
+ readonly OptionSkeleton: ({ className, index, before, after, size, children, }: ComboboxOptionSkeletonProps) => react_jsx_runtime.JSX.Element;
1298
+ /**
1299
+ * Section for options of a Combobox.
1300
+ *
1301
+ * @family Combobox
1302
+ * @param ComboboxSectionProps
1303
+ * @returns ComboboxSection
1304
+ */
1305
+ readonly Section: ({ children, ...props }: ComboboxSectionProps) => react_jsx_runtime.JSX.Element;
1306
+ /**
1307
+ * Combobox input trigger.
1308
+ *
1309
+ * @family Combobox
1310
+ */
1311
+ readonly Input: ({ hideToggle, inputRef, textFieldRef, afterElement, onFocus, onBlur, onKeyDown, clearButtonProps, hasClearButton, theme, ...textFieldProps }: ComboboxInputProps) => react_jsx_runtime.JSX.Element;
1312
+ /**
1313
+ * The listbox containing the combobox's options.
1314
+ *
1315
+ * @family Combobox
1316
+ * @param ComboboxListBoxProps
1317
+ * @returns ComboboxListBox
1318
+ */
1319
+ readonly List: ({ children, renderItemSkeleton, label, popoverProps, footer, listRef, ...forwardedProps }: ComboboxListBoxProps) => react_jsx_runtime.JSX.Element;
1320
+ /**
1321
+ * Combobox button trigger.
1322
+ *
1323
+ * @family Combobox
1324
+ */
1325
+ readonly Button: Comp<ComboboxButtonProps, HTMLElement>;
1326
+ };
1327
+ /**
1328
+ *
1329
+ * A Combobox is a combination of two components:
1330
+ * * An input to enter the user's value
1331
+ * * A popover with a list of suggestions to fill the value.
1332
+ *
1333
+ * These two components are included via the Combobox.Input and Combobox.ListBox components.
1334
+ *
1335
+ * In its simplest implementation the component will automatically filter the given options
1336
+ * from the value of the input and fill the input with the textValue of the selected option.
1337
+ *
1338
+ * Props are available for more complex implementations.
1339
+ *
1340
+ * @family Combobox
1341
+ * @param ComboboxProps
1342
+ * @returns Combobox
1343
+ */
1344
+ 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) & {
1345
+ /**
1346
+ * Option to set within a combobox list.
1347
+ *
1348
+ * @family Combobox
1349
+ * @param ComboboxOptionProps
1350
+ * @returns ComboboxOption
1351
+ */
1352
+ readonly Option: Comp<ComboboxOptionComponentProps<any>, HTMLElement>;
1353
+ /**
1354
+ * Skeleton for a combobox option.
1355
+ * A typography skeleton is rendered by default but can be overridden by passing children.
1356
+ */
1357
+ readonly OptionSkeleton: ({ className, index, before, after, size, children, }: ComboboxOptionSkeletonProps) => react_jsx_runtime.JSX.Element;
1358
+ /**
1359
+ * Section for options of a Combobox.
1360
+ *
1361
+ * @family Combobox
1362
+ * @param ComboboxSectionProps
1363
+ * @returns ComboboxSection
1364
+ */
1365
+ readonly Section: ({ children, ...props }: ComboboxSectionProps) => react_jsx_runtime.JSX.Element;
1366
+ /**
1367
+ * Combobox input trigger.
1368
+ *
1369
+ * @family Combobox
1370
+ */
1371
+ readonly Input: ({ hideToggle, inputRef, textFieldRef, afterElement, onFocus, onBlur, onKeyDown, clearButtonProps, hasClearButton, theme, ...textFieldProps }: ComboboxInputProps) => react_jsx_runtime.JSX.Element;
1372
+ /**
1373
+ * The listbox containing the combobox's options.
1374
+ *
1375
+ * @family Combobox
1376
+ * @param ComboboxListBoxProps
1377
+ * @returns ComboboxListBox
1378
+ */
1379
+ readonly List: ({ children, renderItemSkeleton, label, popoverProps, footer, listRef, ...forwardedProps }: ComboboxListBoxProps) => react_jsx_runtime.JSX.Element;
1380
+ /**
1381
+ * Combobox button trigger.
1382
+ *
1383
+ * @family Combobox
1384
+ */
1385
+ readonly Button: Comp<ComboboxButtonProps, HTMLElement>;
1386
+ };
1387
+
901
1388
  /**
902
1389
  * Comment block variants.
903
1390
  */
@@ -1658,22 +2145,37 @@ interface GridItemProps extends GenericProps {
1658
2145
  */
1659
2146
  declare const GridItem: Comp<GridItemProps, HTMLDivElement>;
1660
2147
 
1661
- type GridColumnGapSize = Extract<Size$1, 'tiny' | 'regular' | 'big' | 'huge'>;
2148
+ type GridColumnGapSize = Extract<Size, 'tiny' | 'regular' | 'big' | 'huge'>;
1662
2149
  /**
1663
2150
  * Defines the props of the component.
1664
2151
  */
1665
- interface GridColumnProps extends GenericProps {
2152
+ interface GridColumnProps$1 extends HasClassName {
1666
2153
  /** Customize the root element. */
1667
- as?: React.ElementType;
2154
+ as?: any;
1668
2155
  /** Children elements. */
1669
- children?: ReactNode;
2156
+ children?: JSXElement;
1670
2157
  /** Space between columns and rows. */
1671
2158
  gap?: GridColumnGapSize;
1672
2159
  /** Ideal number of columns. */
1673
2160
  maxColumns?: number;
1674
2161
  /** Minimum width for each item, reduce the number of column if there is not enough space. */
1675
2162
  itemMinWidth?: number;
2163
+ /** Custom styles. */
2164
+ style?: any;
2165
+ /** reference to the root element */
2166
+ ref?: CommonRef;
1676
2167
  }
2168
+
2169
+ /**
2170
+ * Defines the props of the component.
2171
+ */
2172
+ interface GridColumnProps extends GenericProps, GridColumnProps$1 {
2173
+ /** Customize the root element. */
2174
+ as?: React.ElementType;
2175
+ /** Children elements. */
2176
+ children?: React.ReactNode;
2177
+ }
2178
+
1677
2179
  /**
1678
2180
  * The GridColumn is a layout component that can display children in a grid
1679
2181
  * with custom display properties. It also comes with a responsive design,
@@ -1724,54 +2226,42 @@ interface IconProps extends Omit<IconProps$1, 'children'>, GenericProps {
1724
2226
  */
1725
2227
  declare const Icon: Comp<IconProps, HTMLElement>;
1726
2228
 
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
2229
  /**
1735
2230
  * Loading attribute is not yet supported in typescript, so we need
1736
2231
  * to add it in order to avoid a ts error.
1737
2232
  * https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/ADVANCED.md#adding-non-standard-attributes
1738
2233
  */
1739
2234
  declare module 'react' {
1740
- interface ImgHTMLAttributes<T> extends React__default.HTMLAttributes<T> {
2235
+ interface ImgHTMLAttributes<T> extends React.HTMLAttributes<T> {
1741
2236
  loading?: 'eager' | 'lazy';
1742
2237
  }
1743
2238
  }
1744
- /**
1745
- * All available aspect ratios.
1746
- * @deprecated
1747
- */
1748
- declare const ThumbnailAspectRatio: Record<string, AspectRatio$1>;
1749
2239
  /**
1750
2240
  * Thumbnail sizes.
1751
2241
  */
1752
- type ThumbnailSize = Extract<Size$1, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
2242
+ type ThumbnailSize$1 = Extract<Size, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
1753
2243
  /**
1754
2244
  * Thumbnail variants.
1755
2245
  */
1756
- declare const ThumbnailVariant: {
2246
+ declare const ThumbnailVariant$1: {
1757
2247
  readonly squared: "squared";
1758
2248
  readonly rounded: "rounded";
1759
2249
  };
1760
- type ThumbnailVariant = ValueOf$1<typeof ThumbnailVariant>;
2250
+ type ThumbnailVariant$1 = ValueOf<typeof ThumbnailVariant$1>;
1761
2251
  /**
1762
2252
  * Thumbnail object fit.
1763
2253
  */
1764
- declare const ThumbnailObjectFit: {
2254
+ declare const ThumbnailObjectFit$1: {
1765
2255
  readonly cover: "cover";
1766
2256
  readonly contain: "contain";
1767
2257
  };
1768
- type ThumbnailObjectFit = ValueOf$1<typeof ThumbnailObjectFit>;
2258
+ type ThumbnailObjectFit$1 = ValueOf<typeof ThumbnailObjectFit$1>;
1769
2259
 
1770
2260
  type ImgHTMLProps = ImgHTMLAttributes<HTMLImageElement>;
1771
2261
  /**
1772
2262
  * Defines the props of the component.
1773
2263
  */
1774
- interface ThumbnailProps extends GenericProps, HasTheme$1 {
2264
+ interface ThumbnailProps$1 extends HasTheme$1, HasClassName$1 {
1775
2265
  /** Alignment of the thumbnail in it's parent (requires flex parent). */
1776
2266
  align?: HorizontalAlignment$1;
1777
2267
  /** Image alternative text. */
@@ -1779,41 +2269,98 @@ interface ThumbnailProps extends GenericProps, HasTheme$1 {
1779
2269
  /** Image aspect ratio. */
1780
2270
  aspectRatio?: AspectRatio$1;
1781
2271
  /** Badge. */
1782
- badge?: ReactElement | Falsy;
2272
+ badge?: JSXElement$1;
1783
2273
  /** Image cross origin resource policy. */
1784
2274
  crossOrigin?: ImgHTMLProps['crossOrigin'];
1785
2275
  /** Fallback icon (SVG path) or react node when image fails to load. */
1786
- fallback?: string | ReactNode;
2276
+ fallback?: string | JSXElement$1;
1787
2277
  /** Whether the thumbnail should fill it's parent size (requires flex parent) or not. */
1788
2278
  fillHeight?: boolean;
1789
- /** Apply relative vertical and horizontal shift (from -1 to 1) on the image position inside the thumbnail. */
1790
- focusPoint?: FocusPoint;
1791
2279
  /** Image URL. */
1792
2280
  image: string;
2281
+ loadingState: string;
1793
2282
  /** Props to inject into the native <img> element. */
1794
2283
  imgProps?: ImgHTMLProps;
1795
2284
  /** Reference to the native <img> element. */
1796
- imgRef?: Ref<HTMLImageElement>;
2285
+ imgRef?: CommonRef$1;
2286
+ ref?: CommonRef$1;
1797
2287
  /** Set to true to force the display of the loading skeleton. */
1798
2288
  isLoading?: boolean;
1799
2289
  /** Set how the image should fit when its aspect ratio is constrained */
1800
- objectFit?: ThumbnailObjectFit;
2290
+ objectFit?: ThumbnailObjectFit$1;
1801
2291
  /** Size variant of the component. */
1802
- size?: ThumbnailSize;
2292
+ size?: ThumbnailSize$1;
1803
2293
  /** Image loading mode. */
1804
- loading?: ImgHTMLProps['loading'];
2294
+ loading?: 'eager' | 'lazy';
1805
2295
  /** Ref of an existing placeholder image to display while loading. */
1806
- loadingPlaceholderImageRef?: React__default.RefObject<HTMLImageElement>;
2296
+ loadingPlaceholderImageRef?: React.RefObject<HTMLImageElement>;
1807
2297
  /** On click callback. */
1808
- onClick?: MouseEventHandler<HTMLDivElement>;
2298
+ onClick?: (event: any) => void;
1809
2299
  /** On key press callback. */
1810
- onKeyPress?: KeyboardEventHandler<HTMLDivElement>;
2300
+ onKeyPress?: (event: any) => void;
1811
2301
  /** Variant of the component. */
1812
- variant?: ThumbnailVariant;
2302
+ variant?: ThumbnailVariant$1;
1813
2303
  /** Props to pass to the link wrapping the thumbnail. */
1814
- linkProps?: React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
2304
+ linkProps?: GenericProps;
2305
+ focusPointStyle?: GenericProps;
2306
+ disabledStateProps?: GenericProps;
2307
+ isAnyDisabled?: boolean;
1815
2308
  /** Custom react component for the link (can be used to inject react router Link). */
1816
2309
  linkAs?: 'a' | any;
2310
+ 'aria-label'?: string;
2311
+ }
2312
+
2313
+ /**
2314
+ * Focal point using vertical alignment, horizontal alignment or coordinates (from -1 to 1).
2315
+ */
2316
+ type FocusPoint = {
2317
+ x?: number;
2318
+ y?: number;
2319
+ };
2320
+ /**
2321
+ * Loading attribute is not yet supported in typescript, so we need
2322
+ * to add it in order to avoid a ts error.
2323
+ * https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/ADVANCED.md#adding-non-standard-attributes
2324
+ */
2325
+ declare module 'react' {
2326
+ interface ImgHTMLAttributes<T> extends React__default.HTMLAttributes<T> {
2327
+ loading?: 'eager' | 'lazy';
2328
+ }
2329
+ }
2330
+ /**
2331
+ * All available aspect ratios.
2332
+ * @deprecated
2333
+ */
2334
+ declare const ThumbnailAspectRatio: Record<string, AspectRatio$1>;
2335
+ /**
2336
+ * Thumbnail sizes.
2337
+ */
2338
+ type ThumbnailSize = Extract<Size$1, 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'>;
2339
+ /**
2340
+ * Thumbnail variants.
2341
+ */
2342
+ declare const ThumbnailVariant: {
2343
+ readonly squared: "squared";
2344
+ readonly rounded: "rounded";
2345
+ };
2346
+ type ThumbnailVariant = ValueOf$1<typeof ThumbnailVariant>;
2347
+ /**
2348
+ * Thumbnail object fit.
2349
+ */
2350
+ declare const ThumbnailObjectFit: {
2351
+ readonly cover: "cover";
2352
+ readonly contain: "contain";
2353
+ };
2354
+ type ThumbnailObjectFit = ValueOf$1<typeof ThumbnailObjectFit>;
2355
+
2356
+ /**
2357
+ * Defines the props of the component.
2358
+ */
2359
+ interface ThumbnailProps extends GenericProps, Omit<ThumbnailProps$1, 'loadingState' | 'isAnyDisabled' | 'focusPointStyle' | 'disabledStateProps' | 'badge'> {
2360
+ /** Apply relative vertical and horizontal shift (from -1 to 1) on the image position inside the thumbnail. */
2361
+ focusPoint?: FocusPoint;
2362
+ /** Badge. */
2363
+ badge?: ReactElement | Falsy;
1817
2364
  }
1818
2365
  /**
1819
2366
  * Thumbnail component.
@@ -2059,37 +2606,55 @@ interface LightboxProps extends GenericProps, HasTheme$1, Pick<AriaAttributes, '
2059
2606
  */
2060
2607
  declare const Lightbox: Comp<LightboxProps, HTMLDivElement>;
2061
2608
 
2062
- type HTMLAnchorProps = React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
2063
2609
  /**
2064
2610
  * Defines the props of the component.
2065
2611
  */
2066
- interface LinkProps extends GenericProps, HasAriaDisabled$1 {
2612
+ interface LinkProps$1 extends HasTheme, HasClassName, HasAriaDisabled, HasDisabled {
2613
+ /** Link label content. */
2614
+ label?: JSXElement;
2067
2615
  /** Color variant. */
2068
2616
  color?: ColorWithVariants$1;
2069
2617
  /** Lightened or darkened variant of the selected icon color. */
2070
2618
  colorVariant?: ColorVariant$1;
2071
2619
  /** Link href. */
2072
- href?: HTMLAnchorProps['href'];
2073
- /** Whether the component is disabled or not. */
2074
- isDisabled?: boolean;
2620
+ href?: string;
2075
2621
  /**
2076
2622
  * Left icon (SVG path).
2077
- * @deprecated Instead, simply nest `<Icon />` in the children
2623
+ * @deprecated Instead, simply nest `<Icon />` in the label
2078
2624
  */
2079
2625
  leftIcon?: string;
2080
- /** Custom react component for the link (can be used to inject react router Link). */
2081
- linkAs?: 'a' | any;
2626
+ /** Element type or custom component for the link. */
2627
+ as?: string | any;
2082
2628
  /**
2083
2629
  * Right icon (SVG path).
2084
- * @deprecated Instead, simply nest `<Icon />` in the children
2630
+ * @deprecated Instead, simply nest `<Icon />` in the label
2085
2631
  */
2086
2632
  rightIcon?: string;
2087
2633
  /** Link target. */
2634
+ target?: string;
2635
+ /** Typography variant. */
2636
+ typography?: string;
2637
+ /** Click handler. */
2638
+ onClick?: (event: any) => void;
2639
+ /** Reference to the root element. */
2640
+ ref?: CommonRef;
2641
+ }
2642
+
2643
+ type HTMLAnchorProps = React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
2644
+ /**
2645
+ * Defines the props of the component.
2646
+ */
2647
+ interface LinkProps extends GenericProps, Omit<LinkProps$1, 'label'> {
2648
+ /** Link href. */
2649
+ href?: HTMLAnchorProps['href'];
2650
+ /** Custom react component for the link (can be used to inject react router Link). */
2651
+ linkAs?: 'a' | any;
2652
+ /** Link target. */
2088
2653
  target?: HTMLAnchorProps['target'];
2089
2654
  /** Typography variant. */
2090
2655
  typography?: Typography$1;
2091
2656
  /** Children */
2092
- children?: React.ReactNode;
2657
+ children?: React__default.ReactNode;
2093
2658
  }
2094
2659
  /**
2095
2660
  * Link component.
@@ -3172,11 +3737,21 @@ declare const Switch: Comp<SwitchProps, HTMLDivElement>;
3172
3737
  /**
3173
3738
  * Defines the props of the component.
3174
3739
  */
3175
- interface TableProps extends GenericProps, HasTheme$1 {
3740
+ interface TableProps$1 extends HasTheme, HasClassName {
3176
3741
  /** Whether the table has checkbox or thumbnail on first cell or not. */
3177
3742
  hasBefore?: boolean;
3178
3743
  /** Whether the table has dividers or not. */
3179
3744
  hasDividers?: boolean;
3745
+ /** Children */
3746
+ children?: JSXElement;
3747
+ /** reference to the root element */
3748
+ ref?: CommonRef;
3749
+ }
3750
+
3751
+ /**
3752
+ * Defines the props of the component.
3753
+ */
3754
+ interface TableProps extends GenericProps, Omit<TableProps$1, 'ref'> {
3180
3755
  /** Children */
3181
3756
  children?: React.ReactNode;
3182
3757
  }
@@ -3192,7 +3767,17 @@ declare const Table: Comp<TableProps, HTMLTableElement>;
3192
3767
  /**
3193
3768
  * Defines the props of the component.
3194
3769
  */
3195
- interface TableBodyProps extends GenericProps {
3770
+ interface TableBodyProps$1 extends HasClassName {
3771
+ /** Children */
3772
+ children?: JSXElement;
3773
+ /** reference to the root element */
3774
+ ref?: CommonRef;
3775
+ }
3776
+
3777
+ /**
3778
+ * Defines the props of the component.
3779
+ */
3780
+ interface TableBodyProps extends GenericProps, Omit<TableBodyProps$1, 'ref'> {
3196
3781
  /** Children */
3197
3782
  children?: React.ReactNode;
3198
3783
  }
@@ -3212,7 +3797,7 @@ declare const ThOrder: {
3212
3797
  readonly asc: "asc";
3213
3798
  readonly desc: "desc";
3214
3799
  };
3215
- type ThOrder = ValueOf$1<typeof ThOrder>;
3800
+ type ThOrder = ValueOf<typeof ThOrder>;
3216
3801
  /**
3217
3802
  * Table cell variants.
3218
3803
  */
@@ -3220,11 +3805,11 @@ declare const TableCellVariant: {
3220
3805
  readonly body: "body";
3221
3806
  readonly head: "head";
3222
3807
  };
3223
- type TableCellVariant = ValueOf$1<typeof TableCellVariant>;
3808
+ type TableCellVariant = ValueOf<typeof TableCellVariant>;
3224
3809
  /**
3225
3810
  * Defines the props of the component.
3226
3811
  */
3227
- interface TableCellProps extends GenericProps {
3812
+ interface TableCellProps$1 extends HasClassName {
3228
3813
  /** Icon (SVG path).(thead only). */
3229
3814
  icon?: string;
3230
3815
  /** Whether the column is sortable or not (thead only). */
@@ -3235,6 +3820,16 @@ interface TableCellProps extends GenericProps {
3235
3820
  variant?: TableCellVariant;
3236
3821
  /** On header cell click callback. */
3237
3822
  onHeaderClick?(): void;
3823
+ /** Children */
3824
+ children?: JSXElement;
3825
+ /** reference to the root element */
3826
+ ref?: CommonRef;
3827
+ }
3828
+
3829
+ /**
3830
+ * Defines the props of the component.
3831
+ */
3832
+ interface TableCellProps extends GenericProps, Omit<TableCellProps$1, 'ref'> {
3238
3833
  /** Children */
3239
3834
  children?: React.ReactNode;
3240
3835
  }
@@ -3250,7 +3845,17 @@ declare const TableCell: Comp<TableCellProps, HTMLTableCellElement>;
3250
3845
  /**
3251
3846
  * Defines the props of the component.
3252
3847
  */
3253
- interface TableHeaderProps extends GenericProps {
3848
+ interface TableHeaderProps$1 extends HasClassName {
3849
+ /** Children */
3850
+ children?: JSXElement;
3851
+ /** reference to the root element */
3852
+ ref?: CommonRef;
3853
+ }
3854
+
3855
+ /**
3856
+ * Defines the props of the component.
3857
+ */
3858
+ interface TableHeaderProps extends GenericProps, Omit<TableHeaderProps$1, 'ref'> {
3254
3859
  /** Children */
3255
3860
  children?: React.ReactNode;
3256
3861
  }
@@ -3266,13 +3871,25 @@ declare const TableHeader: Comp<TableHeaderProps, HTMLTableSectionElement>;
3266
3871
  /**
3267
3872
  * Defines the props of the component.
3268
3873
  */
3269
- interface TableRowProps extends GenericProps {
3874
+ interface TableRowProps$1 extends HasClassName, HasAriaDisabled {
3270
3875
  /** Whether the component is clickable or not. */
3271
3876
  isClickable?: boolean;
3272
- /** Whether the component is disabled or not. */
3273
- isDisabled?: boolean;
3274
3877
  /** Whether the component is selected or not. */
3275
3878
  isSelected?: boolean;
3879
+ /** Tab index */
3880
+ tabIndex?: number;
3881
+ /** Children */
3882
+ children?: JSXElement;
3883
+ /** reference to the root element */
3884
+ ref?: CommonRef;
3885
+ }
3886
+
3887
+ /**
3888
+ * Defines the props of the component.
3889
+ */
3890
+ interface TableRowProps extends GenericProps, Omit<TableRowProps$1, 'ref' | 'tabIndex' | 'aria-disabled'> {
3891
+ /** Whether the component is disabled or not. */
3892
+ isDisabled?: boolean;
3276
3893
  /** Children */
3277
3894
  children?: React.ReactNode;
3278
3895
  }
@@ -3654,5 +4271,5 @@ declare const ThemeProvider: React__default.FC<{
3654
4271
  /** Get the theme in the current context. */
3655
4272
  declare function useTheme(): ThemeContextValue;
3656
4273
 
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 };
4274
+ export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonEmphasis, ButtonGroup, COMPONENT_NAME, Checkbox, Chip, ChipGroup, Combobox, ComboboxButton, ComboboxDivider, ComboboxInput, ComboboxListBox, ComboboxOption, ComboboxOptionAction, ComboboxOptionMoreInfo, ComboboxOptionSkeleton, ComboboxSection, 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, LUMX_CLASSNAME, 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, 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, TextField, ThOrder, ThOrder as ThOrderType, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, Toolbar, Tooltip, Uploader, UploaderVariant, UserBlock, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
4275
+ export type { AlertDialogProps, AutocompleteMultipleProps, AutocompleteProps, AvatarProps, AvatarSize, BadgeProps, BadgeWrapperProps, BaseButtonProps, ButtonGroupProps, ButtonProps, ButtonSize, CheckboxProps, ChipGroupProps, ChipProps, ComboboxButtonProps, ComboboxInputProps, ComboboxListBoxProps, ComboboxOptionComponentProps, ComboboxOptionMoreInfoProps, ComboboxOptionSkeletonProps, ComboboxSectionProps, 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 };