@candidhealth/react-vitals 1.0.0-alpha.15 → 1.0.0-alpha.17

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/dist/index.d.mts CHANGED
@@ -5,7 +5,7 @@ import { IconDefinition, SizeProp } from '@fortawesome/fontawesome-svg-core';
5
5
  import { Placement } from '@floating-ui/react';
6
6
  import { DatePickerProps as DatePickerProps$1 } from 'react-datepicker';
7
7
  import * as react_hook_form from 'react-hook-form';
8
- import { SubmitHandler, UseFormProps, DefaultValues, FieldValues, FieldErrors, FieldPath, FieldError } from 'react-hook-form';
8
+ import { FieldValues, SubmitHandler, UseFormProps, DefaultValues, FieldErrors, FieldPath, FieldError } from 'react-hook-form';
9
9
  import { z } from 'zod';
10
10
  import * as _radix_ui_react_dropdown_menu from '@radix-ui/react-dropdown-menu';
11
11
  import { DropdownMenuProps, DropdownMenuContentProps, DropdownMenuItemProps } from '@radix-ui/react-dropdown-menu';
@@ -89,20 +89,46 @@ declare const AvatarWithName: ({ name, variant, className }: AvatarWithNameProps
89
89
  type Size = "xs" | "sm" | "md" | "lg";
90
90
  type Intent = "primary" | "default" | "danger" | "warning" | "success";
91
91
  type Justify = "start" | "center" | "end" | "between" | "around";
92
- type Soften = "left" | "right" | "both" | "none";
93
92
  type Variant = "default" | "transparent" | "dark";
94
93
 
95
94
  type ButtonSize = Extract<Size, "xs" | "sm" | "md" | "lg">;
96
95
  type ButtonIntent = Extract<Intent, "primary" | "default" | "danger"> | "error";
97
96
  type ButtonRoundedness = "default" | "large";
98
97
  type ButtonStyleProps = {
98
+ /**
99
+ * Stretches the button to fill the width of its container.
100
+ * @default false
101
+ */
99
102
  fullWidth?: boolean;
103
+ /**
104
+ * Controls the height, padding, gap, and text size of the button.
105
+ * @default md
106
+ */
100
107
  size?: ButtonSize;
108
+ /**
109
+ * Semantic intent driving the button's color (background, border, and text).
110
+ * @default default
111
+ */
101
112
  intent?: ButtonIntent;
113
+ /**
114
+ * Visual treatment of the button surface, e.g. solid (`default`), `transparent`, or `dark`.
115
+ * @default default
116
+ */
102
117
  variant?: Variant;
118
+ /**
119
+ * Prevents interaction and dims the button. The button is also disabled while `loading`.
120
+ * @default false
121
+ */
103
122
  disabled?: boolean;
123
+ /**
124
+ * Applies a pulsing animation to signal an in-progress action; also disables the button.
125
+ * @default false
126
+ */
104
127
  loading?: boolean;
105
- soften?: Soften;
128
+ /**
129
+ * Scale of the corner rounding applied to the softened corners.
130
+ * @default default
131
+ */
106
132
  roundedness?: ButtonRoundedness;
107
133
  };
108
134
 
@@ -111,7 +137,7 @@ type ButtonStyleProps = {
111
137
  * `<button>` attributes. Any prop not listed below (`onClick`, `type`, `aria-*`, etc.)
112
138
  * is a standard button attribute and is forwarded to the underlying element.
113
139
  */
114
- type ButtonProps = Simplify<ButtonStyleProps & React$1.ComponentPropsWithoutRef<"button">>;
140
+ type ButtonProps = ButtonStyleProps & React$1.ComponentPropsWithoutRef<"button">;
115
141
  /**
116
142
  * The primary clickable button of the design system.
117
143
  *
@@ -129,17 +155,6 @@ type ButtonProps = Simplify<ButtonStyleProps & React$1.ComponentPropsWithoutRef<
129
155
  */
130
156
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
131
157
 
132
- type ButtonGroupProps<TValue extends string | number> = {
133
- size?: ButtonProps["size"];
134
- value: TValue;
135
- onChange: (value: TValue) => void;
136
- buttons: readonly {
137
- content: React.ReactNode;
138
- value: TValue;
139
- }[];
140
- };
141
- declare const ButtonGroup: <TValue extends string | number>({ size, value, onChange, buttons, }: ButtonGroupProps<TValue>) => react_jsx_runtime.JSX.Element;
142
-
143
158
  type CalloutIntent = Extract<Intent, "default" | "warning" | "primary" | "danger">;
144
159
  type CalloutProps = {
145
160
  /**
@@ -414,7 +429,7 @@ declare const ErrorText: React__default.ForwardRefExoticComponent<Omit<React__de
414
429
  className?: string;
415
430
  } & React__default.RefAttributes<HTMLParagraphElement>>;
416
431
 
417
- type FormSchema = z.ZodTypeAny;
432
+ type FormSchema = z.ZodType<FieldValues>;
418
433
  /** Prevents passing empty `{}` as defaultValues while allowing all-optional objects */
419
434
  type NonEmpty<T extends object> = keyof T extends never ? never : T;
420
435
  type OnSubmitHandler<T extends FormSchema> = SubmitHandler<z.infer<T>>;
@@ -439,7 +454,7 @@ type UseFormOptions<TSchema extends FormSchema, TDefaults extends object> = Pick
439
454
  defaultValues?: NonEmpty<TDefaults>;
440
455
  };
441
456
  declare const useForm: {
442
- <T extends FormSchema, TDefaults extends DefaultValues<z.infer<T>> = DefaultValues<z.TypeOf<T>>>(schema: T, options?: UseFormOptions<T, TDefaults>): react_hook_form.UseFormReturn<z.TypeOf<T>, any, z.TypeOf<T>>;
457
+ <T extends FormSchema, TDefaults extends DefaultValues<z.infer<T>> = DefaultValues<z.core.output<T>>>(schema: T, options?: UseFormOptions<T, TDefaults>): react_hook_form.UseFormReturn<z.core.output<T>, any, z.core.output<T>>;
443
458
  displayName: string;
444
459
  };
445
460
  declare const useControlledFormField: {
@@ -2222,6 +2237,7 @@ declare const useColumnResizing: <T>(options: CustomTableOptions<T>) => {
2222
2237
  onRowClick?: ((row: _tanstack_react_table.Row<T>, e: React.MouseEvent) => void) | undefined;
2223
2238
  emptyText?: React$1.ReactNode;
2224
2239
  staticSubRows?: boolean | undefined;
2240
+ enableColumnReordering?: boolean | undefined;
2225
2241
  infiniteScroll?: {
2226
2242
  hasNextPage: boolean | undefined;
2227
2243
  fetchNextPage: () => void;
@@ -2548,6 +2564,7 @@ declare const useColumnResizing: <T>(options: CustomTableOptions<T>) => {
2548
2564
  onRowClick?: ((row: _tanstack_react_table.Row<T>, e: React.MouseEvent) => void) | undefined;
2549
2565
  emptyText?: React$1.ReactNode;
2550
2566
  staticSubRows?: boolean | undefined;
2567
+ enableColumnReordering?: boolean | undefined;
2551
2568
  infiniteScroll?: {
2552
2569
  hasNextPage: boolean | undefined;
2553
2570
  fetchNextPage: () => void;
@@ -2737,4 +2754,4 @@ declare const Text: <T extends TextTag = "p">(props: TextProps<T> & {
2737
2754
  ref?: React.ForwardedRef<TextTagElementMap[T]>;
2738
2755
  }) => React.ReactElement;
2739
2756
 
2740
- export { AlertModal, type AlertModalBodyProps, type AlertModalProps, type Align, type AllAsNever, AsyncMultiSelect, type AsyncMultiSelectControlledProps, type AsyncMultiSelectProps, AsyncSelect, type AsyncSelectControlledProps, type AsyncSelectProps, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarVariant, AvatarWithName, type AvatarWithNameProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonIntent, type ButtonProps, type ButtonRoundedness, type ButtonSize, type ButtonStyleProps, Callout, type CalloutIntent, type CalloutProps, Card, type CardProps, Checkbox, type CheckboxProps, type ChildrenProps, type ClassNameProps, Collapsible, type CollapsibleProps, CollapsibleSection, type CollapsibleSectionProps, type CommonSelectProps, type ComposableTabContentProps, type ComposableTabDefinition, ComposableTabs, type ComposableTabsListProps, type ComposableTabsProps, type ConfigClassNames, ControlledField, type ControlledFieldProps, ControlledFieldProvider, type CopyEasyProps, Copyable, type CustomTableOptions, DEFAULT_NUM_VALUES_TO_SHOW, DatePicker, type DatePickerInputProps, type DatePickerProps, type DatePickerRangeProps, type DatePickerSharedProps, type DatePickerSingleProps, type DisabledProps, type DiscriminatedSortOptions, type DiscriminatedVisibilityProps, Divider, type DividerProps, DollarInput, type DollarInputProps, Drawer, DrawerHeader, type DrawerHeaderProps, DrawerHeaderSkeleton, type DrawerProps, type DrawerState, DropdownChevron, EmptyState, type EmptyStateProps, type ErrorOr, type ErrorProps, ErrorText, type EventFor, type FalsyValues, FormCheckbox, type FormCheckboxProps, FormDatePicker, type FormDatePickerProps, FormDollarInput, type FormDollarInputProps, type FormFieldNameProps, FormInput, type FormInputProps, type FormItemVariants, FormMultiSelect, type FormMultiSelectProps, FormPercentInput, type FormPercentInputProps, FormRadioButtonGroup, type FormRadioButtonGroupProps, type FormSchema, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, FormTextArea, type FormTextAreaProps, FullscreenModalNamespace as FullscreenModal, type FullscreenModalHeaderProps, type FullscreenModalProps, type GetEventHandlers, HeaderTile, HeaderTileGroup, type HeaderTileGroupProps, type HeaderTileProps, Icon, type IconProps, type InfoTooltip, Input, type InputBaseProps, InputBox, type InputBoxProps, type InputBoxStyleProps, type InputProps, type InputSize, type InputVariants, type Intent, type ItemOptions, type Justify, Label, type LabelIntent, type LabelStyleProps, type LabelVariant, type LoadProps, type LoaderProps, LoadingBar, type LoadingBarProps, LoadingState, type LoadingStateProps, Menu, type MenuContentProps, type MenuItemProps, type MenuItemWithToolTipProps, type MenuProps, Modal, type ModalBodyImplProps, type ModalContentBaseProps, type ModalContentProps, type ModalProps, MultiSelect, type MultiSelectProps, type NonEmpty, type NotUnselectableProps, type OnSubmitHandler, OverflowTooltip, type OverflowTooltipProps, type OverflowTriggerProps, PageContainer, PercentInput, type PercentInputProps, type PersistDrawerWidth, PhoneNumber, Popover, type PopoverBodyProps, type PopoverProps, type PropsWithClassName, RadioButtonGroup, type RadioButtonGroupItem, type RadioButtonGroupProps, RadioButtonItem, type RadioButtonItemProps, ScreenHeightPageContainer, Select, type SelectItem, SelectListItem, type SelectListItemProps, type SelectProps, type SelectValue, SelectWithUnselect, type SelectWithUnselectProps, type SharedFormControlProps, type SharedFormItemProps, type SharedModalProps, type Side, type Size, Skeleton, type SkeletonProps, type SoftDismissProps, type Soften, type SortOptions, Spinner, Stepper, type StepperProps, type StylesProps, Switch, type SwitchIdValue, type TabContentProps, type TabDefinition, TabGroup, type TabGroupProps, Table, type TableProps, type TableVariant, Tabs, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, type TagLabelProps, type TagProps, Text, TextArea, type TextAreaProps, type TextOwnProps, type TextProps, type TextTag, type TextTagElementMap, type TextVariant, type ToggleButtonProps, Tooltip, type TooltipContentProps, type TooltipProps, TwoCirclesSpinner, type TwoCirclesSpinnerProps, UncontrolledField, type UncontrolledFieldProps, UncontrolledFieldProvider, type UncontrolledFormFieldProps, type UnselectableProps, type UseAsyncMultiSelectArgs, type UseAsyncSelectArgs, type UseDrawerResizeParams, type UseFormOptions, type Variant, VirtualizedTable, type VirtualizedTableProps, doesSelectItemMatch, drawerSizes, getFieldError, tableVariants, useAsyncMultiSelect, useAsyncSelect, useColumnResizing, useControlledField, useControlledFormField, useCopyable, useDrawer, useDrawerResize, useForm, useSwitchId, useTable, useUncontrolledField, useUncontrolledFormField };
2757
+ export { AlertModal, type AlertModalBodyProps, type AlertModalProps, type Align, type AllAsNever, AsyncMultiSelect, type AsyncMultiSelectControlledProps, type AsyncMultiSelectProps, AsyncSelect, type AsyncSelectControlledProps, type AsyncSelectProps, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarVariant, AvatarWithName, type AvatarWithNameProps, Button, type ButtonIntent, type ButtonProps, type ButtonRoundedness, type ButtonSize, type ButtonStyleProps, Callout, type CalloutIntent, type CalloutProps, Card, type CardProps, Checkbox, type CheckboxProps, type ChildrenProps, type ClassNameProps, Collapsible, type CollapsibleProps, CollapsibleSection, type CollapsibleSectionProps, type CommonSelectProps, type ComposableTabContentProps, type ComposableTabDefinition, ComposableTabs, type ComposableTabsListProps, type ComposableTabsProps, type ConfigClassNames, ControlledField, type ControlledFieldProps, ControlledFieldProvider, type CopyEasyProps, Copyable, type CustomTableOptions, DEFAULT_NUM_VALUES_TO_SHOW, DatePicker, type DatePickerInputProps, type DatePickerProps, type DatePickerRangeProps, type DatePickerSharedProps, type DatePickerSingleProps, type DisabledProps, type DiscriminatedSortOptions, type DiscriminatedVisibilityProps, Divider, type DividerProps, DollarInput, type DollarInputProps, Drawer, DrawerHeader, type DrawerHeaderProps, DrawerHeaderSkeleton, type DrawerProps, type DrawerState, DropdownChevron, EmptyState, type EmptyStateProps, type ErrorOr, type ErrorProps, ErrorText, type EventFor, type FalsyValues, FormCheckbox, type FormCheckboxProps, FormDatePicker, type FormDatePickerProps, FormDollarInput, type FormDollarInputProps, type FormFieldNameProps, FormInput, type FormInputProps, type FormItemVariants, FormMultiSelect, type FormMultiSelectProps, FormPercentInput, type FormPercentInputProps, FormRadioButtonGroup, type FormRadioButtonGroupProps, type FormSchema, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, FormTextArea, type FormTextAreaProps, FullscreenModalNamespace as FullscreenModal, type FullscreenModalHeaderProps, type FullscreenModalProps, type GetEventHandlers, HeaderTile, HeaderTileGroup, type HeaderTileGroupProps, type HeaderTileProps, Icon, type IconProps, type InfoTooltip, Input, type InputBaseProps, InputBox, type InputBoxProps, type InputBoxStyleProps, type InputProps, type InputSize, type InputVariants, type Intent, type ItemOptions, type Justify, Label, type LabelIntent, type LabelStyleProps, type LabelVariant, type LoadProps, type LoaderProps, LoadingBar, type LoadingBarProps, LoadingState, type LoadingStateProps, Menu, type MenuContentProps, type MenuItemProps, type MenuItemWithToolTipProps, type MenuProps, Modal, type ModalBodyImplProps, type ModalContentBaseProps, type ModalContentProps, type ModalProps, MultiSelect, type MultiSelectProps, type NonEmpty, type NotUnselectableProps, type OnSubmitHandler, OverflowTooltip, type OverflowTooltipProps, type OverflowTriggerProps, PageContainer, PercentInput, type PercentInputProps, type PersistDrawerWidth, PhoneNumber, Popover, type PopoverBodyProps, type PopoverProps, type PropsWithClassName, RadioButtonGroup, type RadioButtonGroupItem, type RadioButtonGroupProps, RadioButtonItem, type RadioButtonItemProps, ScreenHeightPageContainer, Select, type SelectItem, SelectListItem, type SelectListItemProps, type SelectProps, type SelectValue, SelectWithUnselect, type SelectWithUnselectProps, type SharedFormControlProps, type SharedFormItemProps, type SharedModalProps, type Side, type Size, Skeleton, type SkeletonProps, type SoftDismissProps, type SortOptions, Spinner, Stepper, type StepperProps, type StylesProps, Switch, type SwitchIdValue, type TabContentProps, type TabDefinition, TabGroup, type TabGroupProps, Table, type TableProps, type TableVariant, Tabs, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, type TagLabelProps, type TagProps, Text, TextArea, type TextAreaProps, type TextOwnProps, type TextProps, type TextTag, type TextTagElementMap, type TextVariant, type ToggleButtonProps, Tooltip, type TooltipContentProps, type TooltipProps, TwoCirclesSpinner, type TwoCirclesSpinnerProps, UncontrolledField, type UncontrolledFieldProps, UncontrolledFieldProvider, type UncontrolledFormFieldProps, type UnselectableProps, type UseAsyncMultiSelectArgs, type UseAsyncSelectArgs, type UseDrawerResizeParams, type UseFormOptions, type Variant, VirtualizedTable, type VirtualizedTableProps, doesSelectItemMatch, drawerSizes, getFieldError, tableVariants, useAsyncMultiSelect, useAsyncSelect, useColumnResizing, useControlledField, useControlledFormField, useCopyable, useDrawer, useDrawerResize, useForm, useSwitchId, useTable, useUncontrolledField, useUncontrolledFormField };
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@ import { IconDefinition, SizeProp } from '@fortawesome/fontawesome-svg-core';
5
5
  import { Placement } from '@floating-ui/react';
6
6
  import { DatePickerProps as DatePickerProps$1 } from 'react-datepicker';
7
7
  import * as react_hook_form from 'react-hook-form';
8
- import { SubmitHandler, UseFormProps, DefaultValues, FieldValues, FieldErrors, FieldPath, FieldError } from 'react-hook-form';
8
+ import { FieldValues, SubmitHandler, UseFormProps, DefaultValues, FieldErrors, FieldPath, FieldError } from 'react-hook-form';
9
9
  import { z } from 'zod';
10
10
  import * as _radix_ui_react_dropdown_menu from '@radix-ui/react-dropdown-menu';
11
11
  import { DropdownMenuProps, DropdownMenuContentProps, DropdownMenuItemProps } from '@radix-ui/react-dropdown-menu';
@@ -89,20 +89,46 @@ declare const AvatarWithName: ({ name, variant, className }: AvatarWithNameProps
89
89
  type Size = "xs" | "sm" | "md" | "lg";
90
90
  type Intent = "primary" | "default" | "danger" | "warning" | "success";
91
91
  type Justify = "start" | "center" | "end" | "between" | "around";
92
- type Soften = "left" | "right" | "both" | "none";
93
92
  type Variant = "default" | "transparent" | "dark";
94
93
 
95
94
  type ButtonSize = Extract<Size, "xs" | "sm" | "md" | "lg">;
96
95
  type ButtonIntent = Extract<Intent, "primary" | "default" | "danger"> | "error";
97
96
  type ButtonRoundedness = "default" | "large";
98
97
  type ButtonStyleProps = {
98
+ /**
99
+ * Stretches the button to fill the width of its container.
100
+ * @default false
101
+ */
99
102
  fullWidth?: boolean;
103
+ /**
104
+ * Controls the height, padding, gap, and text size of the button.
105
+ * @default md
106
+ */
100
107
  size?: ButtonSize;
108
+ /**
109
+ * Semantic intent driving the button's color (background, border, and text).
110
+ * @default default
111
+ */
101
112
  intent?: ButtonIntent;
113
+ /**
114
+ * Visual treatment of the button surface, e.g. solid (`default`), `transparent`, or `dark`.
115
+ * @default default
116
+ */
102
117
  variant?: Variant;
118
+ /**
119
+ * Prevents interaction and dims the button. The button is also disabled while `loading`.
120
+ * @default false
121
+ */
103
122
  disabled?: boolean;
123
+ /**
124
+ * Applies a pulsing animation to signal an in-progress action; also disables the button.
125
+ * @default false
126
+ */
104
127
  loading?: boolean;
105
- soften?: Soften;
128
+ /**
129
+ * Scale of the corner rounding applied to the softened corners.
130
+ * @default default
131
+ */
106
132
  roundedness?: ButtonRoundedness;
107
133
  };
108
134
 
@@ -111,7 +137,7 @@ type ButtonStyleProps = {
111
137
  * `<button>` attributes. Any prop not listed below (`onClick`, `type`, `aria-*`, etc.)
112
138
  * is a standard button attribute and is forwarded to the underlying element.
113
139
  */
114
- type ButtonProps = Simplify<ButtonStyleProps & React$1.ComponentPropsWithoutRef<"button">>;
140
+ type ButtonProps = ButtonStyleProps & React$1.ComponentPropsWithoutRef<"button">;
115
141
  /**
116
142
  * The primary clickable button of the design system.
117
143
  *
@@ -129,17 +155,6 @@ type ButtonProps = Simplify<ButtonStyleProps & React$1.ComponentPropsWithoutRef<
129
155
  */
130
156
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
131
157
 
132
- type ButtonGroupProps<TValue extends string | number> = {
133
- size?: ButtonProps["size"];
134
- value: TValue;
135
- onChange: (value: TValue) => void;
136
- buttons: readonly {
137
- content: React.ReactNode;
138
- value: TValue;
139
- }[];
140
- };
141
- declare const ButtonGroup: <TValue extends string | number>({ size, value, onChange, buttons, }: ButtonGroupProps<TValue>) => react_jsx_runtime.JSX.Element;
142
-
143
158
  type CalloutIntent = Extract<Intent, "default" | "warning" | "primary" | "danger">;
144
159
  type CalloutProps = {
145
160
  /**
@@ -414,7 +429,7 @@ declare const ErrorText: React__default.ForwardRefExoticComponent<Omit<React__de
414
429
  className?: string;
415
430
  } & React__default.RefAttributes<HTMLParagraphElement>>;
416
431
 
417
- type FormSchema = z.ZodTypeAny;
432
+ type FormSchema = z.ZodType<FieldValues>;
418
433
  /** Prevents passing empty `{}` as defaultValues while allowing all-optional objects */
419
434
  type NonEmpty<T extends object> = keyof T extends never ? never : T;
420
435
  type OnSubmitHandler<T extends FormSchema> = SubmitHandler<z.infer<T>>;
@@ -439,7 +454,7 @@ type UseFormOptions<TSchema extends FormSchema, TDefaults extends object> = Pick
439
454
  defaultValues?: NonEmpty<TDefaults>;
440
455
  };
441
456
  declare const useForm: {
442
- <T extends FormSchema, TDefaults extends DefaultValues<z.infer<T>> = DefaultValues<z.TypeOf<T>>>(schema: T, options?: UseFormOptions<T, TDefaults>): react_hook_form.UseFormReturn<z.TypeOf<T>, any, z.TypeOf<T>>;
457
+ <T extends FormSchema, TDefaults extends DefaultValues<z.infer<T>> = DefaultValues<z.core.output<T>>>(schema: T, options?: UseFormOptions<T, TDefaults>): react_hook_form.UseFormReturn<z.core.output<T>, any, z.core.output<T>>;
443
458
  displayName: string;
444
459
  };
445
460
  declare const useControlledFormField: {
@@ -2222,6 +2237,7 @@ declare const useColumnResizing: <T>(options: CustomTableOptions<T>) => {
2222
2237
  onRowClick?: ((row: _tanstack_react_table.Row<T>, e: React.MouseEvent) => void) | undefined;
2223
2238
  emptyText?: React$1.ReactNode;
2224
2239
  staticSubRows?: boolean | undefined;
2240
+ enableColumnReordering?: boolean | undefined;
2225
2241
  infiniteScroll?: {
2226
2242
  hasNextPage: boolean | undefined;
2227
2243
  fetchNextPage: () => void;
@@ -2548,6 +2564,7 @@ declare const useColumnResizing: <T>(options: CustomTableOptions<T>) => {
2548
2564
  onRowClick?: ((row: _tanstack_react_table.Row<T>, e: React.MouseEvent) => void) | undefined;
2549
2565
  emptyText?: React$1.ReactNode;
2550
2566
  staticSubRows?: boolean | undefined;
2567
+ enableColumnReordering?: boolean | undefined;
2551
2568
  infiniteScroll?: {
2552
2569
  hasNextPage: boolean | undefined;
2553
2570
  fetchNextPage: () => void;
@@ -2737,4 +2754,4 @@ declare const Text: <T extends TextTag = "p">(props: TextProps<T> & {
2737
2754
  ref?: React.ForwardedRef<TextTagElementMap[T]>;
2738
2755
  }) => React.ReactElement;
2739
2756
 
2740
- export { AlertModal, type AlertModalBodyProps, type AlertModalProps, type Align, type AllAsNever, AsyncMultiSelect, type AsyncMultiSelectControlledProps, type AsyncMultiSelectProps, AsyncSelect, type AsyncSelectControlledProps, type AsyncSelectProps, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarVariant, AvatarWithName, type AvatarWithNameProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonIntent, type ButtonProps, type ButtonRoundedness, type ButtonSize, type ButtonStyleProps, Callout, type CalloutIntent, type CalloutProps, Card, type CardProps, Checkbox, type CheckboxProps, type ChildrenProps, type ClassNameProps, Collapsible, type CollapsibleProps, CollapsibleSection, type CollapsibleSectionProps, type CommonSelectProps, type ComposableTabContentProps, type ComposableTabDefinition, ComposableTabs, type ComposableTabsListProps, type ComposableTabsProps, type ConfigClassNames, ControlledField, type ControlledFieldProps, ControlledFieldProvider, type CopyEasyProps, Copyable, type CustomTableOptions, DEFAULT_NUM_VALUES_TO_SHOW, DatePicker, type DatePickerInputProps, type DatePickerProps, type DatePickerRangeProps, type DatePickerSharedProps, type DatePickerSingleProps, type DisabledProps, type DiscriminatedSortOptions, type DiscriminatedVisibilityProps, Divider, type DividerProps, DollarInput, type DollarInputProps, Drawer, DrawerHeader, type DrawerHeaderProps, DrawerHeaderSkeleton, type DrawerProps, type DrawerState, DropdownChevron, EmptyState, type EmptyStateProps, type ErrorOr, type ErrorProps, ErrorText, type EventFor, type FalsyValues, FormCheckbox, type FormCheckboxProps, FormDatePicker, type FormDatePickerProps, FormDollarInput, type FormDollarInputProps, type FormFieldNameProps, FormInput, type FormInputProps, type FormItemVariants, FormMultiSelect, type FormMultiSelectProps, FormPercentInput, type FormPercentInputProps, FormRadioButtonGroup, type FormRadioButtonGroupProps, type FormSchema, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, FormTextArea, type FormTextAreaProps, FullscreenModalNamespace as FullscreenModal, type FullscreenModalHeaderProps, type FullscreenModalProps, type GetEventHandlers, HeaderTile, HeaderTileGroup, type HeaderTileGroupProps, type HeaderTileProps, Icon, type IconProps, type InfoTooltip, Input, type InputBaseProps, InputBox, type InputBoxProps, type InputBoxStyleProps, type InputProps, type InputSize, type InputVariants, type Intent, type ItemOptions, type Justify, Label, type LabelIntent, type LabelStyleProps, type LabelVariant, type LoadProps, type LoaderProps, LoadingBar, type LoadingBarProps, LoadingState, type LoadingStateProps, Menu, type MenuContentProps, type MenuItemProps, type MenuItemWithToolTipProps, type MenuProps, Modal, type ModalBodyImplProps, type ModalContentBaseProps, type ModalContentProps, type ModalProps, MultiSelect, type MultiSelectProps, type NonEmpty, type NotUnselectableProps, type OnSubmitHandler, OverflowTooltip, type OverflowTooltipProps, type OverflowTriggerProps, PageContainer, PercentInput, type PercentInputProps, type PersistDrawerWidth, PhoneNumber, Popover, type PopoverBodyProps, type PopoverProps, type PropsWithClassName, RadioButtonGroup, type RadioButtonGroupItem, type RadioButtonGroupProps, RadioButtonItem, type RadioButtonItemProps, ScreenHeightPageContainer, Select, type SelectItem, SelectListItem, type SelectListItemProps, type SelectProps, type SelectValue, SelectWithUnselect, type SelectWithUnselectProps, type SharedFormControlProps, type SharedFormItemProps, type SharedModalProps, type Side, type Size, Skeleton, type SkeletonProps, type SoftDismissProps, type Soften, type SortOptions, Spinner, Stepper, type StepperProps, type StylesProps, Switch, type SwitchIdValue, type TabContentProps, type TabDefinition, TabGroup, type TabGroupProps, Table, type TableProps, type TableVariant, Tabs, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, type TagLabelProps, type TagProps, Text, TextArea, type TextAreaProps, type TextOwnProps, type TextProps, type TextTag, type TextTagElementMap, type TextVariant, type ToggleButtonProps, Tooltip, type TooltipContentProps, type TooltipProps, TwoCirclesSpinner, type TwoCirclesSpinnerProps, UncontrolledField, type UncontrolledFieldProps, UncontrolledFieldProvider, type UncontrolledFormFieldProps, type UnselectableProps, type UseAsyncMultiSelectArgs, type UseAsyncSelectArgs, type UseDrawerResizeParams, type UseFormOptions, type Variant, VirtualizedTable, type VirtualizedTableProps, doesSelectItemMatch, drawerSizes, getFieldError, tableVariants, useAsyncMultiSelect, useAsyncSelect, useColumnResizing, useControlledField, useControlledFormField, useCopyable, useDrawer, useDrawerResize, useForm, useSwitchId, useTable, useUncontrolledField, useUncontrolledFormField };
2757
+ export { AlertModal, type AlertModalBodyProps, type AlertModalProps, type Align, type AllAsNever, AsyncMultiSelect, type AsyncMultiSelectControlledProps, type AsyncMultiSelectProps, AsyncSelect, type AsyncSelectControlledProps, type AsyncSelectProps, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarVariant, AvatarWithName, type AvatarWithNameProps, Button, type ButtonIntent, type ButtonProps, type ButtonRoundedness, type ButtonSize, type ButtonStyleProps, Callout, type CalloutIntent, type CalloutProps, Card, type CardProps, Checkbox, type CheckboxProps, type ChildrenProps, type ClassNameProps, Collapsible, type CollapsibleProps, CollapsibleSection, type CollapsibleSectionProps, type CommonSelectProps, type ComposableTabContentProps, type ComposableTabDefinition, ComposableTabs, type ComposableTabsListProps, type ComposableTabsProps, type ConfigClassNames, ControlledField, type ControlledFieldProps, ControlledFieldProvider, type CopyEasyProps, Copyable, type CustomTableOptions, DEFAULT_NUM_VALUES_TO_SHOW, DatePicker, type DatePickerInputProps, type DatePickerProps, type DatePickerRangeProps, type DatePickerSharedProps, type DatePickerSingleProps, type DisabledProps, type DiscriminatedSortOptions, type DiscriminatedVisibilityProps, Divider, type DividerProps, DollarInput, type DollarInputProps, Drawer, DrawerHeader, type DrawerHeaderProps, DrawerHeaderSkeleton, type DrawerProps, type DrawerState, DropdownChevron, EmptyState, type EmptyStateProps, type ErrorOr, type ErrorProps, ErrorText, type EventFor, type FalsyValues, FormCheckbox, type FormCheckboxProps, FormDatePicker, type FormDatePickerProps, FormDollarInput, type FormDollarInputProps, type FormFieldNameProps, FormInput, type FormInputProps, type FormItemVariants, FormMultiSelect, type FormMultiSelectProps, FormPercentInput, type FormPercentInputProps, FormRadioButtonGroup, type FormRadioButtonGroupProps, type FormSchema, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, FormTextArea, type FormTextAreaProps, FullscreenModalNamespace as FullscreenModal, type FullscreenModalHeaderProps, type FullscreenModalProps, type GetEventHandlers, HeaderTile, HeaderTileGroup, type HeaderTileGroupProps, type HeaderTileProps, Icon, type IconProps, type InfoTooltip, Input, type InputBaseProps, InputBox, type InputBoxProps, type InputBoxStyleProps, type InputProps, type InputSize, type InputVariants, type Intent, type ItemOptions, type Justify, Label, type LabelIntent, type LabelStyleProps, type LabelVariant, type LoadProps, type LoaderProps, LoadingBar, type LoadingBarProps, LoadingState, type LoadingStateProps, Menu, type MenuContentProps, type MenuItemProps, type MenuItemWithToolTipProps, type MenuProps, Modal, type ModalBodyImplProps, type ModalContentBaseProps, type ModalContentProps, type ModalProps, MultiSelect, type MultiSelectProps, type NonEmpty, type NotUnselectableProps, type OnSubmitHandler, OverflowTooltip, type OverflowTooltipProps, type OverflowTriggerProps, PageContainer, PercentInput, type PercentInputProps, type PersistDrawerWidth, PhoneNumber, Popover, type PopoverBodyProps, type PopoverProps, type PropsWithClassName, RadioButtonGroup, type RadioButtonGroupItem, type RadioButtonGroupProps, RadioButtonItem, type RadioButtonItemProps, ScreenHeightPageContainer, Select, type SelectItem, SelectListItem, type SelectListItemProps, type SelectProps, type SelectValue, SelectWithUnselect, type SelectWithUnselectProps, type SharedFormControlProps, type SharedFormItemProps, type SharedModalProps, type Side, type Size, Skeleton, type SkeletonProps, type SoftDismissProps, type SortOptions, Spinner, Stepper, type StepperProps, type StylesProps, Switch, type SwitchIdValue, type TabContentProps, type TabDefinition, TabGroup, type TabGroupProps, Table, type TableProps, type TableVariant, Tabs, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, type TagLabelProps, type TagProps, Text, TextArea, type TextAreaProps, type TextOwnProps, type TextProps, type TextTag, type TextTagElementMap, type TextVariant, type ToggleButtonProps, Tooltip, type TooltipContentProps, type TooltipProps, TwoCirclesSpinner, type TwoCirclesSpinnerProps, UncontrolledField, type UncontrolledFieldProps, UncontrolledFieldProvider, type UncontrolledFormFieldProps, type UnselectableProps, type UseAsyncMultiSelectArgs, type UseAsyncSelectArgs, type UseDrawerResizeParams, type UseFormOptions, type Variant, VirtualizedTable, type VirtualizedTableProps, doesSelectItemMatch, drawerSizes, getFieldError, tableVariants, useAsyncMultiSelect, useAsyncSelect, useColumnResizing, useControlledField, useControlledFormField, useCopyable, useDrawer, useDrawerResize, useForm, useSwitchId, useTable, useUncontrolledField, useUncontrolledFormField };