@lumx/react 4.3.2-alpha.20 → 4.3.2-alpha.21

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
1
  import { Kind as Kind$1, HorizontalAlignment as HorizontalAlignment$1, Size as Size$1, ColorPalette as ColorPalette$1, Theme as Theme$1, Orientation as Orientation$1, Alignment as Alignment$1, AspectRatio as AspectRatio$1, ColorWithVariants as ColorWithVariants$1, ColorVariant as ColorVariant$1, Typography as Typography$1, Emphasis as Emphasis$1 } from '@lumx/core/js/constants';
2
2
  export * from '@lumx/core/js/constants';
3
3
  import * as _lumx_core_js_types from '@lumx/core/js/types';
4
- import { GenericProps, HasTheme as HasTheme$1, ValueOf as ValueOf$1, HasAriaDisabled as HasAriaDisabled$1, HasCloseMode, HasClassName as HasClassName$1, JSXElement as JSXElement$1, CommonRef as CommonRef$1, Falsy, 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, LumxClassName as LumxClassName$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, { 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
 
10
10
  /** LumX Component Type. */
@@ -664,11 +664,11 @@ interface ButtonProps$1 extends BaseButtonProps {
664
664
  /**
665
665
  * Component display name.
666
666
  */
667
- declare const COMPONENT_NAME = "Button";
667
+ declare const COMPONENT_NAME$1 = "Button";
668
668
  /**
669
669
  * Component default class name and class prefix.
670
670
  */
671
- declare const CLASSNAME: LumxClassName<typeof COMPONENT_NAME>;
671
+ declare const CLASSNAME: LumxClassName<typeof COMPONENT_NAME$1>;
672
672
  /**
673
673
  * Component default props.
674
674
  */
@@ -683,7 +683,7 @@ interface ButtonProps extends GenericProps, ButtonProps$1 {
683
683
  * @param ref Component ref.
684
684
  * @return React element.
685
685
  */
686
- declare const Button: Comp<ButtonProps, HTMLAnchorElement | HTMLButtonElement>;
686
+ declare const Button: Comp<ButtonProps, HTMLButtonElement | HTMLAnchorElement>;
687
687
 
688
688
  interface IconButtonProps$1 extends BaseButtonProps {
689
689
  /**
@@ -908,6 +908,423 @@ interface SelectionChipGroupProps<O> extends GenericProps {
908
908
  */
909
909
  declare const SelectionChipGroup: <O>({ onChange, value, getOptionId, getOptionName, inputRef, inputLabel, renderChip, theme, isDisabled, chipTooltipLabel, label, ...forwardedProps }: SelectionChipGroupProps<O>) => react_jsx_runtime.JSX.Element;
910
910
 
911
+ /**
912
+ * The source of the combobox option selection
913
+ * It could either be on click / touch or keyboard selection
914
+ */
915
+ type ComboboxOptionSelectEventSource = 'keyboard' | 'click';
916
+ type ComboboxSelectionType = 'single' | 'multiple';
917
+ type BaseLoadingStatus = 'loading' | 'loadingMore' | 'idle' | 'error' | 'debouncing' | 'filtering' | 'empty';
918
+ /**
919
+ * Options related types
920
+ */
921
+ /** All possible values a combobox option can have */
922
+ type BaseComboboxOptionProps<O = any> = {
923
+ /**
924
+ * A unique id to track the option
925
+ */
926
+ id: string;
927
+ /**
928
+ * Whether the current input value should filter this option.
929
+ */
930
+ filterFromInput?: boolean;
931
+ /**
932
+ * Callback to call when the option is selected.
933
+ * This should only be used to add custom actions on options.
934
+ * For most cases, the "onSelect" on the Combobox root component should be enough.
935
+ */
936
+ onSelect?: (option: O, eventSource?: ComboboxOptionSelectEventSource) => void;
937
+ /**
938
+ * Additional data to link to the option. This can be useful to retrieve with `onSelect`.
939
+ */
940
+ data?: O;
941
+ /**
942
+ * Whether the option is disabled
943
+ */
944
+ isDisabled?: boolean;
945
+ /**
946
+ * The components to use to visually customize options.
947
+ * ! Options must not have interactive elements.
948
+ * ! If you need additional actions, you might need to create custom options and search how to
949
+ * ! make them accessible.
950
+ */
951
+ children?: ReactNode;
952
+ /**
953
+ * The text value the option has.
954
+ * This is the value used to filter the options by when manual filtering is disabled
955
+ * and that will be used as input value when an option is selected
956
+ */
957
+ textValue?: string;
958
+ /**
959
+ * Element to display before the content of the option.
960
+ * ! Options must not have interactive elements.
961
+ * ! If you need additional actions, you might need to create custom options and search how to
962
+ * ! make them accessible.
963
+ */
964
+ before?: ReactNode;
965
+ /**
966
+ * Element to display after the content of the option.
967
+ * ! Options must not have interactive elements.
968
+ * ! If you need additional actions, you might need to create custom options and search how to
969
+ * ! make them accessible.
970
+ */
971
+ after?: ReactNode;
972
+ /**
973
+ * Size of the list item.
974
+ * Default to tiny
975
+ */
976
+ size?: ListItemSize;
977
+ /**
978
+ * Fill to activate a tooltip on mouse over
979
+ */
980
+ tooltipProps?: Partial<TooltipProps>;
981
+ };
982
+ /**
983
+ * Props for when an option has no children.
984
+ * In these case, we need at least the text value to know what to display
985
+ * */
986
+ type TextValueOnly<O = any> = BaseComboboxOptionProps<O> & {
987
+ children?: never;
988
+ textValue: string;
989
+ };
990
+ /**
991
+ * Props for when an option has a react element as string
992
+ * In that case, we can use the children as the textValue without having
993
+ * to set a manual props.
994
+ * The props is still available to have a text value different than the displayed value.
995
+ */
996
+ type StringOption<O = any> = BaseComboboxOptionProps<O> & {
997
+ children: ReactText;
998
+ textValue?: string;
999
+ };
1000
+ /**
1001
+ * Props for when an option has a react element as children
1002
+ * In that case, we cannot know what the actual value of the
1003
+ * option is, so the `textValue` prop has to be set.
1004
+ */
1005
+ type NodeOption<O = any> = BaseComboboxOptionProps<O> & {
1006
+ children: Exclude<ReactNode, ReactText>;
1007
+ textValue: string;
1008
+ };
1009
+ /** Props for the ComboboxOption component */
1010
+ type ComboboxOptionProps<O = any> = TextValueOnly<O> | StringOption<O> | NodeOption<O>;
1011
+ /** Shared data between all combobox option types. */
1012
+ interface BaseRegisteredComboboxOption {
1013
+ id: string;
1014
+ /** The id that was generated for this option */
1015
+ generatedId: string;
1016
+ /** Whether the "option" is an action */
1017
+ isAction?: boolean;
1018
+ /** Whether the "option" is disabled */
1019
+ isDisabled?: boolean;
1020
+ }
1021
+ /** Values of action type options */
1022
+ interface RegisteredComboboxAction extends BaseRegisteredComboboxOption {
1023
+ /** Whether the "option" is an action */
1024
+ isAction: true;
1025
+ /** Callback when the action is triggered. */
1026
+ onSelect?: () => void;
1027
+ }
1028
+ /** Combobox value */
1029
+ interface RegisteredComboboxOptionValue<O = any> extends BaseRegisteredComboboxOption, Pick<ComboboxOptionProps<O>, 'data' | 'filterFromInput' | 'textValue' | 'onSelect'> {
1030
+ /** The section the option is a child of. */
1031
+ sectionId?: string;
1032
+ /** Whether the "option" is an action */
1033
+ isAction?: never;
1034
+ }
1035
+ /** The option values stored in the state */
1036
+ type RegisteredComboboxOption<O = any> = RegisteredComboboxAction | RegisteredComboboxOptionValue<O>;
1037
+ type OnComboboxSelect<O = any> = (option: RegisteredComboboxOptionValue<O>) => void;
1038
+ type OnComboboxInputChange = TextFieldProps['onChange'];
1039
+ type ComboboxTranslations = {
1040
+ clearLabel: string;
1041
+ showSuggestionsLabel: string;
1042
+ loadingLabel: string;
1043
+ noResultsForInputLabel: (input?: string) => string;
1044
+ serviceUnavailableLabel: string;
1045
+ tryReloadLabel: string;
1046
+ nbOptionsLabel: (options: number) => string;
1047
+ };
1048
+ /** Props for the main combobox component. */
1049
+ type ComboboxProps<O = any> = {
1050
+ /**
1051
+ * HTML id
1052
+ */
1053
+ id?: string;
1054
+ /**
1055
+ * The current option id to set as selected.
1056
+ * If omitted, the local state will be used instead;
1057
+ */
1058
+ selectedIds?: Array<string | number>;
1059
+ /**
1060
+ * The current value for the combobox input.
1061
+ * If omitted, the input is controlled locally */
1062
+ inputValue?: string;
1063
+ /**
1064
+ * The default value to set on the input.
1065
+ * Use this if you want to initialize the input with a value and not control it
1066
+ */
1067
+ defaultInputValue?: string;
1068
+ /**
1069
+ * Whether the options should be automatically filtered or not.
1070
+ * By default, the combobox will try to filter the options from the current input value
1071
+ * using a "contains" strategy.
1072
+ * If this is `false`, the option will not be automatically filtered and must be manually filtered by the parent.
1073
+ * Useful for asynchronous comboboxes.
1074
+ */
1075
+ autoFilter: boolean;
1076
+ /**
1077
+ * Whether the combobox should open on focus
1078
+ */
1079
+ openOnFocus?: boolean;
1080
+ /**
1081
+ * Whether the combobox should open on click
1082
+ */
1083
+ openOnClick?: boolean;
1084
+ /**
1085
+ * Status of the combobox
1086
+ */
1087
+ status: BaseLoadingStatus;
1088
+ /**
1089
+ * Callback when the input changes.
1090
+ */
1091
+ onInputChange?: OnComboboxInputChange;
1092
+ /**
1093
+ * Callback for when an option is selected
1094
+ */
1095
+ onSelect?: OnComboboxSelect<O>;
1096
+ /**
1097
+ * Callback called when the combobox opens
1098
+ */
1099
+ onOpen?: (options: {
1100
+ currentValue?: string;
1101
+ manual: boolean;
1102
+ }) => void;
1103
+ /**
1104
+ * The combobox components to render.
1105
+ * Must be one of the exposed components (Combobox.Input, Combobox.ListBox etc...)
1106
+ */
1107
+ children: ReactNode;
1108
+ /**
1109
+ * The combobox can have a specific selection type:
1110
+ * - Single: only one item is selected
1111
+ * - Multiple: several items can be selected (this impacts the combobox list, which will now not close when selectiong an option)
1112
+ */
1113
+ selectionType?: ComboboxSelectionType;
1114
+ /**
1115
+ * Whether the error state should be displayed when the status is in error.
1116
+ * @default `true` if `status` is defined
1117
+ */
1118
+ showErrorState?: boolean;
1119
+ /**
1120
+ * Whether the empty state should be displayed when there is no results.
1121
+ * @default `true` if `autoFilter=false`
1122
+ */
1123
+ showEmptyState?: boolean;
1124
+ /** custom className */
1125
+ className?: string;
1126
+ /** translations to be used across the combobox */
1127
+ translations: ComboboxTranslations;
1128
+ };
1129
+ /** Entity related types for single selection. */
1130
+ type SingleSelection<O = any> = {
1131
+ selectionType: 'single';
1132
+ /**
1133
+ * Selected option object
1134
+ */
1135
+ value?: O;
1136
+ /**
1137
+ * Callback on option object selected
1138
+ */
1139
+ onChange?(newValue?: O): void;
1140
+ /**
1141
+ * No chips in single selection mode.
1142
+ */
1143
+ renderChip?: never;
1144
+ };
1145
+ /** Entity related types for multiple selection. */
1146
+ type MultipleSelection<O = any> = {
1147
+ selectionType: 'multiple';
1148
+ /**
1149
+ * Selected options array
1150
+ */
1151
+ value?: O[];
1152
+ /**
1153
+ * Callback on option array selected
1154
+ */
1155
+ onChange?(newValue?: O[]): void;
1156
+ /**
1157
+ * Custom selection chip render function
1158
+ */
1159
+ renderChip?: (option: O) => ReactNode;
1160
+ };
1161
+ /** Shared props between SelectTextField and SelectButton */
1162
+ type BaseSelectProps<O = any> = {
1163
+ /**
1164
+ * List of option objects
1165
+ */
1166
+ options?: Array<O>;
1167
+ /**
1168
+ * Option object id selector (either the property name or a function to get the id)
1169
+ */
1170
+ getOptionId: Selector<O>;
1171
+ /**
1172
+ * Option object name selector (either the property name or a function to get the name)
1173
+ * Fallbacks on the ID if not defined
1174
+ */
1175
+ getOptionName?: Selector<O, string | undefined | null>;
1176
+ /**
1177
+ * Option object description selector (either the property name or a function to get the description)
1178
+ */
1179
+ getOptionDescription?: Selector<O, string | undefined | null>;
1180
+ /**
1181
+ * Option object section id selector.
1182
+ * Providing this will group options by sections (and may change their order)
1183
+ * If the section id is a string, it is used as section label. Else, the section won't have a label.
1184
+ */
1185
+ getSectionId?: Selector<O, any>;
1186
+ /**
1187
+ * option object section title selector.
1188
+ * If provided, the section will be rendered using this function.
1189
+ */
1190
+ renderSectionTitle?: (option: O, sectionIndex: number) => React.ReactNode;
1191
+ /**
1192
+ * Whether the sections are separated by dividers
1193
+ */
1194
+ hasSectionDividers?: boolean;
1195
+ /**
1196
+ * Option object render function
1197
+ * Default to rendering option using the id & name obtained with `optionIdSelector` & `optionNameSelector`
1198
+ *
1199
+ * **The direct child must be a Combobox.Option, otherwise it will not render the children.**.
1200
+ */
1201
+ renderOption?: (option: O, index: number) => React.ReactNode;
1202
+ /**
1203
+ * Callback to load more items
1204
+ */
1205
+ onLoadMore?(): void;
1206
+ /**
1207
+ * Props passed to the option list.
1208
+ */
1209
+ /**
1210
+ * Add custom elements before the options
1211
+ */
1212
+ beforeOptions?: ReactNode;
1213
+ /**
1214
+ * Data attribute scope
1215
+ */
1216
+ scope?: string;
1217
+ };
1218
+ type OpenComboboxAction = {
1219
+ type: 'OPEN_COMBOBOX';
1220
+ payload?: {
1221
+ manual?: boolean;
1222
+ };
1223
+ };
1224
+ type CloseComboboxAction = {
1225
+ type: 'CLOSE_COMBOBOX';
1226
+ };
1227
+ type SetInputValueAction = {
1228
+ type: 'SET_INPUT_VALUE';
1229
+ payload: string;
1230
+ };
1231
+ type AddOptionAction = {
1232
+ type: 'ADD_OPTION';
1233
+ payload: {
1234
+ id: string;
1235
+ option: RegisteredComboboxOption;
1236
+ };
1237
+ };
1238
+ type RemoveOptionAction = {
1239
+ type: 'REMOVE_OPTION';
1240
+ payload: {
1241
+ id: string;
1242
+ };
1243
+ };
1244
+ type ComboboxAction = OpenComboboxAction | CloseComboboxAction | SetInputValueAction | AddOptionAction | RemoveOptionAction;
1245
+
1246
+ declare const COMPONENT_NAME = "ComboboxOption";
1247
+ declare const COMBOBOX_OPTION_CLASSNAME: LumxClassName$1<typeof COMPONENT_NAME>;
1248
+ declare const LUMX_CLASSNAME = "lumx-list-item";
1249
+ interface OptionContentProps<O extends object = any> extends GenericProps, Omit<ComboboxOptionProps<O>, 'id' | 'textValue' | 'filterFromInput' | 'data'> {
1250
+ id: string;
1251
+ isSelected?: boolean;
1252
+ onSelect?(): void;
1253
+ description?: string;
1254
+ /** Whether the option should be focused by default. */
1255
+ autofocus?: boolean;
1256
+ /** Customize the root element. */
1257
+ as?: React__default.ElementType;
1258
+ /** Type of the combobox (listbox or grid). */
1259
+ comboboxType?: 'listbox' | 'grid';
1260
+ }
1261
+ /**
1262
+ * Props for ComboboxOption with additional generic properties.
1263
+ */
1264
+ interface ComboboxOptionComponentProps<O extends object = any> extends GenericProps, Omit<ComboboxOptionProps<O>, 'as'> {
1265
+ /** Customize the root element. */
1266
+ as?: React__default.ElementType;
1267
+ }
1268
+ /**
1269
+ * Option to set within a combobox list.
1270
+ *
1271
+ * @family Combobox
1272
+ * @param ComboboxOptionProps
1273
+ * @returns ComboboxOption
1274
+ */
1275
+ declare const ComboboxOption: Comp<ComboboxOptionComponentProps<any>, HTMLElement>;
1276
+
1277
+ interface ComboboxOptionSkeletonProps {
1278
+ className?: string;
1279
+ index?: number;
1280
+ children?: ReactNode | ((options: {
1281
+ index?: number;
1282
+ }) => ReactNode);
1283
+ before?: ComboboxOptionProps['before'];
1284
+ after?: ComboboxOptionProps['after'];
1285
+ size?: ComboboxOptionProps['size'];
1286
+ }
1287
+ /**
1288
+ * Skeleton for a combobox option.
1289
+ * A typography skeleton is rendered by default but can be overridden by passing children.
1290
+ */
1291
+ declare const ComboboxOptionSkeleton: ({ className, index, before, after, size, children, }: ComboboxOptionSkeletonProps) => react_jsx_runtime.JSX.Element;
1292
+
1293
+ interface ComboboxOptionActionProps extends GenericProps {
1294
+ /** Should the action be set as disabled */
1295
+ isDisabled?: boolean;
1296
+ /** Action to trigger when the action is selected */
1297
+ onClick: () => void;
1298
+ /** Customize the root element. */
1299
+ as?: React__default.ElementType;
1300
+ }
1301
+ /**
1302
+ * Action to set on a Combobox Option.
1303
+ * Allows to add an interactive element that
1304
+ * can be navigated to and triggered using the keyboard.
1305
+ *
1306
+ * Defaults as "button"
1307
+ *
1308
+ * @family Combobox
1309
+ * @param ComboboxOptionActionProps
1310
+ * @returns ComboboxOptionAction
1311
+ */
1312
+ declare const ComboboxOptionAction: (props: ComboboxOptionActionProps) => react_jsx_runtime.JSX.Element;
1313
+
1314
+ interface ComboboxOptionMoreInfoProps {
1315
+ buttonProps?: Partial<IconButtonProps>;
1316
+ popoverProps?: PopoverProps;
1317
+ onToggle?: (isOpen: boolean) => void;
1318
+ children?: React__default.ReactNode;
1319
+ }
1320
+ /**
1321
+ * Display more info on the option as a popover opening on mouse hover or keyboard nav
1322
+ * Please consider using a simpler option description instead for better UX and a11y.
1323
+ *
1324
+ * @family Combobox
1325
+ */
1326
+ declare const ComboboxOptionMoreInfo: React__default.FC<ComboboxOptionMoreInfoProps>;
1327
+
911
1328
  /**
912
1329
  * Comment block variants.
913
1330
  */
@@ -1668,22 +2085,37 @@ interface GridItemProps extends GenericProps {
1668
2085
  */
1669
2086
  declare const GridItem: Comp<GridItemProps, HTMLDivElement>;
1670
2087
 
1671
- type GridColumnGapSize = Extract<Size$1, 'tiny' | 'regular' | 'big' | 'huge'>;
2088
+ type GridColumnGapSize = Extract<Size, 'tiny' | 'regular' | 'big' | 'huge'>;
1672
2089
  /**
1673
2090
  * Defines the props of the component.
1674
2091
  */
1675
- interface GridColumnProps extends GenericProps {
2092
+ interface GridColumnProps$1 extends HasClassName {
1676
2093
  /** Customize the root element. */
1677
- as?: React.ElementType;
2094
+ as?: any;
1678
2095
  /** Children elements. */
1679
- children?: ReactNode;
2096
+ children?: JSXElement;
1680
2097
  /** Space between columns and rows. */
1681
2098
  gap?: GridColumnGapSize;
1682
2099
  /** Ideal number of columns. */
1683
2100
  maxColumns?: number;
1684
2101
  /** Minimum width for each item, reduce the number of column if there is not enough space. */
1685
2102
  itemMinWidth?: number;
2103
+ /** Custom styles. */
2104
+ style?: any;
2105
+ /** reference to the root element */
2106
+ ref?: CommonRef;
2107
+ }
2108
+
2109
+ /**
2110
+ * Defines the props of the component.
2111
+ */
2112
+ interface GridColumnProps extends GenericProps, GridColumnProps$1 {
2113
+ /** Customize the root element. */
2114
+ as?: React.ElementType;
2115
+ /** Children elements. */
2116
+ children?: React.ReactNode;
1686
2117
  }
2118
+
1687
2119
  /**
1688
2120
  * The GridColumn is a layout component that can display children in a grid
1689
2121
  * with custom display properties. It also comes with a responsive design,
@@ -2171,7 +2603,7 @@ interface LinkProps extends GenericProps, Omit<LinkProps$1, 'label'> {
2171
2603
  * @param ref Component ref.
2172
2604
  * @return React element.
2173
2605
  */
2174
- declare const Link: Comp<LinkProps, HTMLAnchorElement | HTMLButtonElement>;
2606
+ declare const Link: Comp<LinkProps, HTMLButtonElement | HTMLAnchorElement>;
2175
2607
 
2176
2608
  /**
2177
2609
  * Defines the props of the component.
@@ -3626,7 +4058,21 @@ declare const useFocusPointStyle: ({ image, aspectRatio, focusPoint, imgProps: {
3626
4058
  /**
3627
4059
  * Defines the props of the component.
3628
4060
  */
3629
- interface ToolbarProps extends GenericProps {
4061
+ interface ToolbarProps$1 extends HasClassName {
4062
+ /** After content (placed after the label). */
4063
+ after?: JSXElement;
4064
+ /** Before content (placed before the label). */
4065
+ before?: JSXElement;
4066
+ /** Label content. */
4067
+ label?: JSXElement;
4068
+ /** Component ref. */
4069
+ ref?: CommonRef;
4070
+ }
4071
+
4072
+ /**
4073
+ * Defines the props of the component.
4074
+ */
4075
+ interface ToolbarProps extends GenericProps, ToolbarProps$1 {
3630
4076
  /** After content (placed after the label). */
3631
4077
  after?: ReactNode;
3632
4078
  /** Before content (placed before the label). */
@@ -3779,5 +4225,5 @@ declare const ThemeProvider: React__default.FC<{
3779
4225
  /** Get the theme in the current context. */
3780
4226
  declare function useTheme(): ThemeContextValue;
3781
4227
 
3782
- export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonEmphasis, ButtonGroup, CLASSNAME, COMPONENT_NAME, Checkbox, Chip, ChipGroup, CommentBlock, CommentBlockVariant, DEFAULT_PROPS, DatePicker, DatePickerControlled, DatePickerField, Dialog, Divider, DragHandle, Dropdown, ExpansionPanel, Flag, FlexBox, GenericBlock, GenericBlockGapSize, Grid, GridColumn, GridItem, Heading, HeadingLevelProvider, Icon, IconButton, ImageBlock, ImageBlockCaptionPosition, ImageLightbox, InlineList, InputHelper, InputLabel, Lightbox, Link, LinkPreview, List, ListDivider, ListItem, ListSubheader, Message, Mosaic, Navigation, Notification, Placement, Popover, PopoverDialog, PostBlock, Progress, ProgressCircular, ProgressLinear, ProgressTracker, ProgressTrackerProvider, ProgressTrackerStep, ProgressTrackerStepPanel, ProgressVariant, RadioButton, RadioGroup, RawInputText, RawInputTextarea, Select, SelectMultiple, SelectMultipleField, SelectVariant, SelectionChipGroup, SideNavigation, SideNavigationItem, SkeletonCircle, SkeletonRectangle, SkeletonRectangleVariant, SkeletonTypography, Slider, Slides, Slideshow, SlideshowControls, SlideshowItem, Switch, Tab, TabList, TabListLayout, TabPanel, TabProvider, Table, TableBody, TableCell, TableCellVariant, TableCellVariant as TableCellVariantType, TableHeader, TableRow, Text, TextField, ThOrder, ThOrder as ThOrderType, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, Toolbar, Tooltip, Uploader, UploaderVariant, UserBlock, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
3783
- 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 };
4228
+ export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonEmphasis, ButtonGroup, CLASSNAME, COMBOBOX_OPTION_CLASSNAME, COMPONENT_NAME$1 as COMPONENT_NAME, Checkbox, Chip, ChipGroup, ComboboxOption, ComboboxOptionAction, ComboboxOptionMoreInfo, ComboboxOptionSkeleton, 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, 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 };
4229
+ export type { AlertDialogProps, AutocompleteMultipleProps, AutocompleteProps, AvatarProps, AvatarSize, BadgeProps, BadgeWrapperProps, BaseButtonProps, BaseSelectProps, ButtonGroupProps, ButtonProps, ButtonSize, CheckboxProps, ChipGroupProps, ChipProps, ComboboxAction, ComboboxOptionActionProps, ComboboxOptionComponentProps, ComboboxOptionMoreInfoProps, ComboboxOptionProps, ComboboxOptionSkeletonProps, ComboboxProps, 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, MultipleSelection, NavigationProps, NotificationProps, Offset, OnComboboxInputChange, OnComboboxSelect, OptionContentProps, PopoverDialogProps, PopoverProps, PostBlockProps, ProgressCircularProps, ProgressCircularSize, ProgressLinearProps, ProgressProps, ProgressTrackerProps, ProgressTrackerProviderProps, ProgressTrackerStepPanelProps, ProgressTrackerStepProps, RadioButtonProps, RadioGroupProps, RawInputTextProps, RawInputTextareaProps, SelectMultipleProps, SelectProps, SelectionChipGroupProps, SideNavigationItemProps, SideNavigationProps, SingleSelection, 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 };