@geomak/ui 5.5.0 → 5.5.2

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.cts CHANGED
@@ -788,34 +788,6 @@ interface TreeProps {
788
788
  */
789
789
  declare function Tree({ nodes, onNodeClick, defaultExpandAll, defaultExpandedKeys, }: TreeProps): react_jsx_runtime.JSX.Element;
790
790
 
791
- interface ToggleItem {
792
- key: string;
793
- label?: React$1.ReactNode;
794
- icon?: React$1.ReactNode;
795
- }
796
- interface ToggleButtonProps {
797
- items: ToggleItem[];
798
- onChange: (key: string) => void;
799
- activeKey: string;
800
- }
801
- /**
802
- * Segmented toggle-button group powered by Radix ToggleGroup.
803
- *
804
- * Radix handles keyboard navigation (arrow keys), focus ring, and
805
- * `role="group"` / `aria-pressed` ARIA attributes.
806
- *
807
- * @example
808
- * <ToggleButton
809
- * items={[
810
- * { key: 'grid', icon: <Icon.Grid /> },
811
- * { key: 'list', icon: <Icon.List /> },
812
- * ]}
813
- * activeKey={view}
814
- * onChange={setView}
815
- * />
816
- */
817
- declare function ToggleButton({ items, onChange, activeKey }: ToggleButtonProps): react_jsx_runtime.JSX.Element;
818
-
819
791
  /** ─────────────────── types ─────────────────── */
820
792
  type NotificationType = 'info' | 'success' | 'warning' | 'danger';
821
793
  type NotificationPosition = 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center';
@@ -1032,6 +1004,15 @@ interface ScalableContainerProps {
1032
1004
  width?: React$1.CSSProperties['width'];
1033
1005
  /** Resting height. Any CSS length / percent. Default `'auto'`. */
1034
1006
  height?: React$1.CSSProperties['height'];
1007
+ /** Width when expanded. Default `'100%'` (fills parent). */
1008
+ expandedWidth?: React$1.CSSProperties['width'];
1009
+ /** Height when expanded. Default `'100%'`. Set a concrete value (e.g. 420)
1010
+ * when the container lives in normal flow and should push siblings down. */
1011
+ expandedHeight?: React$1.CSSProperties['height'];
1012
+ /** Controlled expanded state. */
1013
+ expanded?: boolean;
1014
+ /** Fires when the user toggles. */
1015
+ onExpandedChange?: (expanded: boolean) => void;
1035
1016
  /** Content to render inside. */
1036
1017
  children?: React$1.ReactNode;
1037
1018
  /** CSS class appended to the expanded children wrapper. */
@@ -1071,7 +1052,7 @@ interface ScalableContainerProps {
1071
1052
  * </ScalableContainer>
1072
1053
  * ```
1073
1054
  */
1074
- declare function ScalableContainer({ width, height, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
1055
+ declare function ScalableContainer({ width, height, expandedWidth, expandedHeight, expanded, onExpandedChange, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
1075
1056
 
1076
1057
  interface GridCardItem {
1077
1058
  key: string | number;
@@ -2102,6 +2083,18 @@ interface CheckboxProps {
2102
2083
  htmlFor?: string;
2103
2084
  errorMessage?: React$1.ReactNode;
2104
2085
  disabled?: boolean;
2086
+ /**
2087
+ * Box + label arrangement.
2088
+ * - `'horizontal'` (default): box and label on one row.
2089
+ * - `'vertical'`: box and label stacked.
2090
+ */
2091
+ layout?: 'horizontal' | 'vertical';
2092
+ /**
2093
+ * Where the label sits relative to the box.
2094
+ * - In horizontal: `'right'` (default) → box then label; `'left'` → label then box.
2095
+ * - In vertical: `'right'` (default) → box then label below; `'left'` → label above then box.
2096
+ */
2097
+ labelPosition?: 'left' | 'right';
2105
2098
  /** @deprecated Use `checked` */
2106
2099
  value?: boolean;
2107
2100
  }
@@ -2120,7 +2113,7 @@ interface CheckboxProps {
2120
2113
  * />
2121
2114
  */
2122
2115
  declare function Checkbox({ checked, value, // legacy alias
2123
- onChange, label, name, htmlFor, errorMessage, disabled, }: CheckboxProps): react_jsx_runtime.JSX.Element;
2116
+ onChange, label, name, htmlFor, errorMessage, disabled, layout, labelPosition, }: CheckboxProps): react_jsx_runtime.JSX.Element;
2124
2117
 
2125
2118
  interface RadioOption {
2126
2119
  /** Stable value submitted / reported on change. */
@@ -2232,13 +2225,6 @@ interface DropdownProps {
2232
2225
  disabled?: boolean;
2233
2226
  /** Label/input orientation. Defaults to `'vertical'`. */
2234
2227
  layout?: 'horizontal' | 'vertical';
2235
- /**
2236
- * Show a "+N more" pill alongside the first selected item in multiselect
2237
- * mode. Defaults to `false` — a single pill is shown with the first
2238
- * selection and consumers typically open the dropdown to see the rest.
2239
- * Set `true` if you want the count visible on the trigger.
2240
- */
2241
- showSelectedCount?: boolean;
2242
2228
  errorMessage?: React$1.ReactNode;
2243
2229
  style?: React$1.CSSProperties;
2244
2230
  htmlFor?: string;
@@ -2263,7 +2249,7 @@ interface DropdownProps {
2263
2249
  * // Multi-select
2264
2250
  * <Dropdown isMultiselect label="Fuels" items={fuels} value={form.fuels} onChange={handleChange} />
2265
2251
  */
2266
- declare function Dropdown({ isMultiselect, hasSearch, label, name, value, onChange, disabled, layout, errorMessage, style, htmlFor, items, labelStyle, placeholder, showSelectedCount, size, }: DropdownProps): react_jsx_runtime.JSX.Element;
2252
+ declare function Dropdown({ isMultiselect, hasSearch, label, name, value, onChange, disabled, layout, errorMessage, style, htmlFor, items, labelStyle, placeholder, size, }: DropdownProps): react_jsx_runtime.JSX.Element;
2267
2253
 
2268
2254
  interface AutoCompleteItem {
2269
2255
  key: string;
@@ -2307,6 +2293,11 @@ interface AutoCompleteProps {
2307
2293
  size?: FieldSize;
2308
2294
  /** Override the leading search icon (hidden while loading). */
2309
2295
  icon?: React$1.ReactNode;
2296
+ /** Validation message — turns the field red and links via aria-describedby. */
2297
+ errorMessage?: React$1.ReactNode;
2298
+ /** Mark required (asterisk after the label). */
2299
+ required?: boolean;
2300
+ htmlFor?: string;
2310
2301
  }
2311
2302
  /**
2312
2303
  * Search-as-you-type autocomplete powered by Radix Popover. Supports two
@@ -2344,7 +2335,7 @@ interface AutoCompleteProps {
2344
2335
  * />
2345
2336
  * ```
2346
2337
  */
2347
- declare function AutoComplete({ disabled, label, placeholder, name, inputStyle, style, layout, items, onSearch, debounce, onItemClick, emptyText, loadingText, size, icon, }: AutoCompleteProps): react_jsx_runtime.JSX.Element;
2338
+ declare function AutoComplete({ disabled, label, placeholder, name, inputStyle, style, layout, items, onSearch, debounce, onItemClick, emptyText, loadingText, size, icon, errorMessage, required, htmlFor, }: AutoCompleteProps): react_jsx_runtime.JSX.Element;
2348
2339
 
2349
2340
  interface TreeSelectNode {
2350
2341
  key: string | number;
@@ -2919,4 +2910,4 @@ interface ColorPickerProps {
2919
2910
  */
2920
2911
  declare function ColorPicker({ value, onChange, label, htmlFor, name, layout, size, swatches, allowCustom, disabled, errorMessage, required, placeholder, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
2921
2912
 
2922
- export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldProps, type FieldShellOptions, type FieldSize, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, ToggleButton, type ToggleButtonProps, type ToggleItem, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, Wizard, type WizardProps, type WizardStep, fieldShell, useNotification };
2913
+ export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldProps, type FieldShellOptions, type FieldSize, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, Wizard, type WizardProps, type WizardStep, fieldShell, useNotification };
package/dist/index.d.ts CHANGED
@@ -788,34 +788,6 @@ interface TreeProps {
788
788
  */
789
789
  declare function Tree({ nodes, onNodeClick, defaultExpandAll, defaultExpandedKeys, }: TreeProps): react_jsx_runtime.JSX.Element;
790
790
 
791
- interface ToggleItem {
792
- key: string;
793
- label?: React$1.ReactNode;
794
- icon?: React$1.ReactNode;
795
- }
796
- interface ToggleButtonProps {
797
- items: ToggleItem[];
798
- onChange: (key: string) => void;
799
- activeKey: string;
800
- }
801
- /**
802
- * Segmented toggle-button group powered by Radix ToggleGroup.
803
- *
804
- * Radix handles keyboard navigation (arrow keys), focus ring, and
805
- * `role="group"` / `aria-pressed` ARIA attributes.
806
- *
807
- * @example
808
- * <ToggleButton
809
- * items={[
810
- * { key: 'grid', icon: <Icon.Grid /> },
811
- * { key: 'list', icon: <Icon.List /> },
812
- * ]}
813
- * activeKey={view}
814
- * onChange={setView}
815
- * />
816
- */
817
- declare function ToggleButton({ items, onChange, activeKey }: ToggleButtonProps): react_jsx_runtime.JSX.Element;
818
-
819
791
  /** ─────────────────── types ─────────────────── */
820
792
  type NotificationType = 'info' | 'success' | 'warning' | 'danger';
821
793
  type NotificationPosition = 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center';
@@ -1032,6 +1004,15 @@ interface ScalableContainerProps {
1032
1004
  width?: React$1.CSSProperties['width'];
1033
1005
  /** Resting height. Any CSS length / percent. Default `'auto'`. */
1034
1006
  height?: React$1.CSSProperties['height'];
1007
+ /** Width when expanded. Default `'100%'` (fills parent). */
1008
+ expandedWidth?: React$1.CSSProperties['width'];
1009
+ /** Height when expanded. Default `'100%'`. Set a concrete value (e.g. 420)
1010
+ * when the container lives in normal flow and should push siblings down. */
1011
+ expandedHeight?: React$1.CSSProperties['height'];
1012
+ /** Controlled expanded state. */
1013
+ expanded?: boolean;
1014
+ /** Fires when the user toggles. */
1015
+ onExpandedChange?: (expanded: boolean) => void;
1035
1016
  /** Content to render inside. */
1036
1017
  children?: React$1.ReactNode;
1037
1018
  /** CSS class appended to the expanded children wrapper. */
@@ -1071,7 +1052,7 @@ interface ScalableContainerProps {
1071
1052
  * </ScalableContainer>
1072
1053
  * ```
1073
1054
  */
1074
- declare function ScalableContainer({ width, height, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
1055
+ declare function ScalableContainer({ width, height, expandedWidth, expandedHeight, expanded, onExpandedChange, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
1075
1056
 
1076
1057
  interface GridCardItem {
1077
1058
  key: string | number;
@@ -2102,6 +2083,18 @@ interface CheckboxProps {
2102
2083
  htmlFor?: string;
2103
2084
  errorMessage?: React$1.ReactNode;
2104
2085
  disabled?: boolean;
2086
+ /**
2087
+ * Box + label arrangement.
2088
+ * - `'horizontal'` (default): box and label on one row.
2089
+ * - `'vertical'`: box and label stacked.
2090
+ */
2091
+ layout?: 'horizontal' | 'vertical';
2092
+ /**
2093
+ * Where the label sits relative to the box.
2094
+ * - In horizontal: `'right'` (default) → box then label; `'left'` → label then box.
2095
+ * - In vertical: `'right'` (default) → box then label below; `'left'` → label above then box.
2096
+ */
2097
+ labelPosition?: 'left' | 'right';
2105
2098
  /** @deprecated Use `checked` */
2106
2099
  value?: boolean;
2107
2100
  }
@@ -2120,7 +2113,7 @@ interface CheckboxProps {
2120
2113
  * />
2121
2114
  */
2122
2115
  declare function Checkbox({ checked, value, // legacy alias
2123
- onChange, label, name, htmlFor, errorMessage, disabled, }: CheckboxProps): react_jsx_runtime.JSX.Element;
2116
+ onChange, label, name, htmlFor, errorMessage, disabled, layout, labelPosition, }: CheckboxProps): react_jsx_runtime.JSX.Element;
2124
2117
 
2125
2118
  interface RadioOption {
2126
2119
  /** Stable value submitted / reported on change. */
@@ -2232,13 +2225,6 @@ interface DropdownProps {
2232
2225
  disabled?: boolean;
2233
2226
  /** Label/input orientation. Defaults to `'vertical'`. */
2234
2227
  layout?: 'horizontal' | 'vertical';
2235
- /**
2236
- * Show a "+N more" pill alongside the first selected item in multiselect
2237
- * mode. Defaults to `false` — a single pill is shown with the first
2238
- * selection and consumers typically open the dropdown to see the rest.
2239
- * Set `true` if you want the count visible on the trigger.
2240
- */
2241
- showSelectedCount?: boolean;
2242
2228
  errorMessage?: React$1.ReactNode;
2243
2229
  style?: React$1.CSSProperties;
2244
2230
  htmlFor?: string;
@@ -2263,7 +2249,7 @@ interface DropdownProps {
2263
2249
  * // Multi-select
2264
2250
  * <Dropdown isMultiselect label="Fuels" items={fuels} value={form.fuels} onChange={handleChange} />
2265
2251
  */
2266
- declare function Dropdown({ isMultiselect, hasSearch, label, name, value, onChange, disabled, layout, errorMessage, style, htmlFor, items, labelStyle, placeholder, showSelectedCount, size, }: DropdownProps): react_jsx_runtime.JSX.Element;
2252
+ declare function Dropdown({ isMultiselect, hasSearch, label, name, value, onChange, disabled, layout, errorMessage, style, htmlFor, items, labelStyle, placeholder, size, }: DropdownProps): react_jsx_runtime.JSX.Element;
2267
2253
 
2268
2254
  interface AutoCompleteItem {
2269
2255
  key: string;
@@ -2307,6 +2293,11 @@ interface AutoCompleteProps {
2307
2293
  size?: FieldSize;
2308
2294
  /** Override the leading search icon (hidden while loading). */
2309
2295
  icon?: React$1.ReactNode;
2296
+ /** Validation message — turns the field red and links via aria-describedby. */
2297
+ errorMessage?: React$1.ReactNode;
2298
+ /** Mark required (asterisk after the label). */
2299
+ required?: boolean;
2300
+ htmlFor?: string;
2310
2301
  }
2311
2302
  /**
2312
2303
  * Search-as-you-type autocomplete powered by Radix Popover. Supports two
@@ -2344,7 +2335,7 @@ interface AutoCompleteProps {
2344
2335
  * />
2345
2336
  * ```
2346
2337
  */
2347
- declare function AutoComplete({ disabled, label, placeholder, name, inputStyle, style, layout, items, onSearch, debounce, onItemClick, emptyText, loadingText, size, icon, }: AutoCompleteProps): react_jsx_runtime.JSX.Element;
2338
+ declare function AutoComplete({ disabled, label, placeholder, name, inputStyle, style, layout, items, onSearch, debounce, onItemClick, emptyText, loadingText, size, icon, errorMessage, required, htmlFor, }: AutoCompleteProps): react_jsx_runtime.JSX.Element;
2348
2339
 
2349
2340
  interface TreeSelectNode {
2350
2341
  key: string | number;
@@ -2919,4 +2910,4 @@ interface ColorPickerProps {
2919
2910
  */
2920
2911
  declare function ColorPicker({ value, onChange, label, htmlFor, name, layout, size, swatches, allowCustom, disabled, errorMessage, required, placeholder, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
2921
2912
 
2922
- export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldProps, type FieldShellOptions, type FieldSize, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, ToggleButton, type ToggleButtonProps, type ToggleItem, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, Wizard, type WizardProps, type WizardStep, fieldShell, useNotification };
2913
+ export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldProps, type FieldShellOptions, type FieldSize, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, Wizard, type WizardProps, type WizardStep, fieldShell, useNotification };