@geomak/ui 5.0.2 → 5.0.3
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.cjs +147 -95
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +45 -63
- package/dist/index.d.ts +45 -63
- package/dist/index.js +148 -93
- package/dist/index.js.map +1 -1
- package/dist/styles.css +104 -17
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { C as COLORS, S as SemanticColorKey, a as SemanticSharedKey, V as VarColorKey, b as VarDensityKey, c as VarMotionKey, d as VarRadiusKey, e as VarShadowKey, f as VarTypoKey, g as VarZIndexKey, P as palette, s as semanticTokens, v as vars } from './index-CvyV3YPI.cjs';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import React$1
|
|
3
|
+
import React$1 from 'react';
|
|
4
4
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
5
5
|
|
|
6
6
|
declare const Icon: {
|
|
@@ -599,7 +599,7 @@ declare function useNotification(): {
|
|
|
599
599
|
danger: (props: Omit<NotificationPayload, "type">) => void;
|
|
600
600
|
};
|
|
601
601
|
|
|
602
|
-
type LoadingSpinnerSize = 'sm' | 'md' | 'lg';
|
|
602
|
+
type LoadingSpinnerSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
603
603
|
interface LoadingSpinnerProps {
|
|
604
604
|
/**
|
|
605
605
|
* Text revealed letter-by-letter beneath the spinner. Optional — pass
|
|
@@ -720,22 +720,50 @@ interface ListProps {
|
|
|
720
720
|
declare function List({ items, onItemClick, activeKey }: ListProps): react_jsx_runtime.JSX.Element;
|
|
721
721
|
|
|
722
722
|
interface ScalableContainerProps {
|
|
723
|
+
/** Resting width. Any CSS length / percent. Default `'100%'`. */
|
|
723
724
|
width?: React$1.CSSProperties['width'];
|
|
725
|
+
/** Resting height. Any CSS length / percent. Default `'auto'`. */
|
|
724
726
|
height?: React$1.CSSProperties['height'];
|
|
727
|
+
/** Content to render inside. */
|
|
725
728
|
children?: React$1.ReactNode;
|
|
726
|
-
/** CSS class
|
|
729
|
+
/** CSS class appended to the expanded children wrapper. */
|
|
727
730
|
assignClassOnClick?: string;
|
|
731
|
+
/** Override the expand-button icon. */
|
|
732
|
+
expandIcon?: React$1.ReactNode;
|
|
733
|
+
/** Override the collapse-button icon. */
|
|
734
|
+
collapseIcon?: React$1.ReactNode;
|
|
735
|
+
/**
|
|
736
|
+
* Position of the toggle button inside the container.
|
|
737
|
+
* Default `'top-right'` — matches the OS-window convention.
|
|
738
|
+
*/
|
|
739
|
+
togglePosition?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
728
740
|
}
|
|
729
741
|
/**
|
|
730
|
-
* Container that
|
|
731
|
-
*
|
|
742
|
+
* Container that smoothly expands to fill its parent on click and
|
|
743
|
+
* collapses back to its resting size. Reads like a macOS / Windows
|
|
744
|
+
* window resizing — subtle elevation shift, smooth scale, no flash
|
|
745
|
+
* of colour or harsh background change.
|
|
746
|
+
*
|
|
747
|
+
* **What's different from the previous version**
|
|
748
|
+
* - Animates BOTH width and height (was width-only).
|
|
749
|
+
* - No baked-in background — the container is transparent by default,
|
|
750
|
+
* so it overlays whatever surface the consumer puts behind it.
|
|
751
|
+
* - Shadow lifts on expand (`shadow-md` → `shadow-2xl`) like a window
|
|
752
|
+
* being raised. No colour change.
|
|
753
|
+
* - The toggle button is a plain rounded chip with the chevron icon,
|
|
754
|
+
* not the old `IconButton` with the heavy background. Floats over
|
|
755
|
+
* the content via absolute positioning so it doesn't push layout.
|
|
756
|
+
* - Configurable toggle position (default top-right, matching OS
|
|
757
|
+
* close-button convention).
|
|
732
758
|
*
|
|
733
759
|
* @example
|
|
734
|
-
*
|
|
735
|
-
*
|
|
760
|
+
* ```tsx
|
|
761
|
+
* <ScalableContainer width={480} height={300}>
|
|
762
|
+
* <Chart data={metrics} />
|
|
736
763
|
* </ScalableContainer>
|
|
764
|
+
* ```
|
|
737
765
|
*/
|
|
738
|
-
declare function ScalableContainer({ width, height, children, assignClassOnClick, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
766
|
+
declare function ScalableContainer({ width, height, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
739
767
|
|
|
740
768
|
interface GridCardItem {
|
|
741
769
|
key: string | number;
|
|
@@ -821,50 +849,6 @@ interface CatalogProps {
|
|
|
821
849
|
*/
|
|
822
850
|
declare function Catalog({ display, items, buttonText, onOpen }: CatalogProps): react_jsx_runtime.JSX.Element;
|
|
823
851
|
|
|
824
|
-
interface MenuBarItemProps {
|
|
825
|
-
icon: React$1.ReactNode;
|
|
826
|
-
isActive: boolean;
|
|
827
|
-
title: string;
|
|
828
|
-
/** Called when the item is clicked (navigation or logout etc.) */
|
|
829
|
-
onClick?: () => void;
|
|
830
|
-
}
|
|
831
|
-
/**
|
|
832
|
-
* Single item in the MenuBar sidebar.
|
|
833
|
-
*
|
|
834
|
-
* Decoupled from React Router and context — navigation is delegated to `onClick`.
|
|
835
|
-
* The Tooltip is powered by Radix (same as the standalone Tooltip component).
|
|
836
|
-
*
|
|
837
|
-
* @example
|
|
838
|
-
* <MenuBarItem
|
|
839
|
-
* icon={<Icon.Dashboard />}
|
|
840
|
-
* title="Dashboard"
|
|
841
|
-
* isActive={pathname === '/dashboard'}
|
|
842
|
-
* onClick={() => navigate('/dashboard')}
|
|
843
|
-
* />
|
|
844
|
-
*/
|
|
845
|
-
declare function MenuBarItem({ icon, isActive, title, onClick }: MenuBarItemProps): react_jsx_runtime.JSX.Element;
|
|
846
|
-
|
|
847
|
-
interface MenuBarItemConfig extends MenuBarItemProps {
|
|
848
|
-
key: string;
|
|
849
|
-
}
|
|
850
|
-
interface MenuBarProps {
|
|
851
|
-
items: MenuBarItemConfig[];
|
|
852
|
-
}
|
|
853
|
-
/**
|
|
854
|
-
* Vertical icon sidebar (left edge of the app).
|
|
855
|
-
*
|
|
856
|
-
* Decoupled from React Router, useAuth, and useData.
|
|
857
|
-
* The app composes the items array (with `onClick` handlers) and passes it in.
|
|
858
|
-
*
|
|
859
|
-
* @example
|
|
860
|
-
* const items: MenuBarItemConfig[] = [
|
|
861
|
-
* { key: 'dash', icon: <Icon.Dashboard />, title: 'Dashboard', isActive: pathname === '/dashboard', onClick: () => navigate('/dashboard') },
|
|
862
|
-
* { key: 'logout', icon: <Icon.PowerOff />, title: 'Sign Out', isActive: false, onClick: logOut },
|
|
863
|
-
* ]
|
|
864
|
-
* <MenuBar items={items} />
|
|
865
|
-
*/
|
|
866
|
-
declare function MenuBar({ items }: MenuBarProps): react_jsx_runtime.JSX.Element;
|
|
867
|
-
|
|
868
852
|
/**
|
|
869
853
|
* A single action in the context menu.
|
|
870
854
|
*
|
|
@@ -1662,15 +1646,6 @@ interface SearchInputProps {
|
|
|
1662
1646
|
*/
|
|
1663
1647
|
declare const SearchInput: React$1.ForwardRefExoticComponent<SearchInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1664
1648
|
|
|
1665
|
-
interface DropdownPillProps {
|
|
1666
|
-
value?: ReactNode;
|
|
1667
|
-
hasSiblings?: boolean;
|
|
1668
|
-
}
|
|
1669
|
-
/**
|
|
1670
|
-
* Pill chip used inside Dropdown to display selected values.
|
|
1671
|
-
*/
|
|
1672
|
-
declare function DropdownPill({ value, hasSiblings }: DropdownPillProps): react_jsx_runtime.JSX.Element;
|
|
1673
|
-
|
|
1674
1649
|
interface CheckboxProps {
|
|
1675
1650
|
/** Controlled checked state */
|
|
1676
1651
|
checked?: boolean;
|
|
@@ -1765,6 +1740,13 @@ interface DropdownProps {
|
|
|
1765
1740
|
disabled?: boolean;
|
|
1766
1741
|
/** Label/input orientation. Defaults to `'vertical'`. */
|
|
1767
1742
|
layout?: 'horizontal' | 'vertical';
|
|
1743
|
+
/**
|
|
1744
|
+
* Show a "+N more" pill alongside the first selected item in multiselect
|
|
1745
|
+
* mode. Defaults to `false` — a single pill is shown with the first
|
|
1746
|
+
* selection and consumers typically open the dropdown to see the rest.
|
|
1747
|
+
* Set `true` if you want the count visible on the trigger.
|
|
1748
|
+
*/
|
|
1749
|
+
showSelectedCount?: boolean;
|
|
1768
1750
|
errorMessage?: React$1.ReactNode;
|
|
1769
1751
|
style?: React$1.CSSProperties;
|
|
1770
1752
|
htmlFor?: string;
|
|
@@ -1787,7 +1769,7 @@ interface DropdownProps {
|
|
|
1787
1769
|
* // Multi-select
|
|
1788
1770
|
* <Dropdown isMultiselect label="Fuels" items={fuels} value={form.fuels} onChange={handleChange} />
|
|
1789
1771
|
*/
|
|
1790
|
-
declare function Dropdown({ isMultiselect, hasSearch, label, name, value, onChange, disabled, layout, errorMessage, style, htmlFor, items, labelStyle, placeholder, }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
1772
|
+
declare function Dropdown({ isMultiselect, hasSearch, label, name, value, onChange, disabled, layout, errorMessage, style, htmlFor, items, labelStyle, placeholder, showSelectedCount, }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
1791
1773
|
|
|
1792
1774
|
interface AutoCompleteItem {
|
|
1793
1775
|
key: string;
|
|
@@ -1998,4 +1980,4 @@ type TemporalPickerProps = DatePickerProps;
|
|
|
1998
1980
|
*/
|
|
1999
1981
|
declare function DatePicker({ value, onChange, label, placeholder, htmlFor, name: _name, layout, disabled, errorMessage, min, max, style, format, weekStartsOn, clearable, }: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
2000
1982
|
|
|
2001
|
-
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, Drawer, type DrawerProps, Dropdown, type DropdownItem,
|
|
1983
|
+
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, FileInput, type FileInputProps, GridCard, type GridCardItem, type GridCardProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, DatePicker as Temporal, type TemporalPickerProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, ToggleButton, type ToggleButtonProps, type ToggleItem, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Wizard, type WizardProps, type WizardStep, useNotification };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { C as COLORS, S as SemanticColorKey, a as SemanticSharedKey, V as VarColorKey, b as VarDensityKey, c as VarMotionKey, d as VarRadiusKey, e as VarShadowKey, f as VarTypoKey, g as VarZIndexKey, P as palette, s as semanticTokens, v as vars } from './index-CvyV3YPI.js';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import React$1
|
|
3
|
+
import React$1 from 'react';
|
|
4
4
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
5
5
|
|
|
6
6
|
declare const Icon: {
|
|
@@ -599,7 +599,7 @@ declare function useNotification(): {
|
|
|
599
599
|
danger: (props: Omit<NotificationPayload, "type">) => void;
|
|
600
600
|
};
|
|
601
601
|
|
|
602
|
-
type LoadingSpinnerSize = 'sm' | 'md' | 'lg';
|
|
602
|
+
type LoadingSpinnerSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
603
603
|
interface LoadingSpinnerProps {
|
|
604
604
|
/**
|
|
605
605
|
* Text revealed letter-by-letter beneath the spinner. Optional — pass
|
|
@@ -720,22 +720,50 @@ interface ListProps {
|
|
|
720
720
|
declare function List({ items, onItemClick, activeKey }: ListProps): react_jsx_runtime.JSX.Element;
|
|
721
721
|
|
|
722
722
|
interface ScalableContainerProps {
|
|
723
|
+
/** Resting width. Any CSS length / percent. Default `'100%'`. */
|
|
723
724
|
width?: React$1.CSSProperties['width'];
|
|
725
|
+
/** Resting height. Any CSS length / percent. Default `'auto'`. */
|
|
724
726
|
height?: React$1.CSSProperties['height'];
|
|
727
|
+
/** Content to render inside. */
|
|
725
728
|
children?: React$1.ReactNode;
|
|
726
|
-
/** CSS class
|
|
729
|
+
/** CSS class appended to the expanded children wrapper. */
|
|
727
730
|
assignClassOnClick?: string;
|
|
731
|
+
/** Override the expand-button icon. */
|
|
732
|
+
expandIcon?: React$1.ReactNode;
|
|
733
|
+
/** Override the collapse-button icon. */
|
|
734
|
+
collapseIcon?: React$1.ReactNode;
|
|
735
|
+
/**
|
|
736
|
+
* Position of the toggle button inside the container.
|
|
737
|
+
* Default `'top-right'` — matches the OS-window convention.
|
|
738
|
+
*/
|
|
739
|
+
togglePosition?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
728
740
|
}
|
|
729
741
|
/**
|
|
730
|
-
* Container that
|
|
731
|
-
*
|
|
742
|
+
* Container that smoothly expands to fill its parent on click and
|
|
743
|
+
* collapses back to its resting size. Reads like a macOS / Windows
|
|
744
|
+
* window resizing — subtle elevation shift, smooth scale, no flash
|
|
745
|
+
* of colour or harsh background change.
|
|
746
|
+
*
|
|
747
|
+
* **What's different from the previous version**
|
|
748
|
+
* - Animates BOTH width and height (was width-only).
|
|
749
|
+
* - No baked-in background — the container is transparent by default,
|
|
750
|
+
* so it overlays whatever surface the consumer puts behind it.
|
|
751
|
+
* - Shadow lifts on expand (`shadow-md` → `shadow-2xl`) like a window
|
|
752
|
+
* being raised. No colour change.
|
|
753
|
+
* - The toggle button is a plain rounded chip with the chevron icon,
|
|
754
|
+
* not the old `IconButton` with the heavy background. Floats over
|
|
755
|
+
* the content via absolute positioning so it doesn't push layout.
|
|
756
|
+
* - Configurable toggle position (default top-right, matching OS
|
|
757
|
+
* close-button convention).
|
|
732
758
|
*
|
|
733
759
|
* @example
|
|
734
|
-
*
|
|
735
|
-
*
|
|
760
|
+
* ```tsx
|
|
761
|
+
* <ScalableContainer width={480} height={300}>
|
|
762
|
+
* <Chart data={metrics} />
|
|
736
763
|
* </ScalableContainer>
|
|
764
|
+
* ```
|
|
737
765
|
*/
|
|
738
|
-
declare function ScalableContainer({ width, height, children, assignClassOnClick, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
766
|
+
declare function ScalableContainer({ width, height, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
739
767
|
|
|
740
768
|
interface GridCardItem {
|
|
741
769
|
key: string | number;
|
|
@@ -821,50 +849,6 @@ interface CatalogProps {
|
|
|
821
849
|
*/
|
|
822
850
|
declare function Catalog({ display, items, buttonText, onOpen }: CatalogProps): react_jsx_runtime.JSX.Element;
|
|
823
851
|
|
|
824
|
-
interface MenuBarItemProps {
|
|
825
|
-
icon: React$1.ReactNode;
|
|
826
|
-
isActive: boolean;
|
|
827
|
-
title: string;
|
|
828
|
-
/** Called when the item is clicked (navigation or logout etc.) */
|
|
829
|
-
onClick?: () => void;
|
|
830
|
-
}
|
|
831
|
-
/**
|
|
832
|
-
* Single item in the MenuBar sidebar.
|
|
833
|
-
*
|
|
834
|
-
* Decoupled from React Router and context — navigation is delegated to `onClick`.
|
|
835
|
-
* The Tooltip is powered by Radix (same as the standalone Tooltip component).
|
|
836
|
-
*
|
|
837
|
-
* @example
|
|
838
|
-
* <MenuBarItem
|
|
839
|
-
* icon={<Icon.Dashboard />}
|
|
840
|
-
* title="Dashboard"
|
|
841
|
-
* isActive={pathname === '/dashboard'}
|
|
842
|
-
* onClick={() => navigate('/dashboard')}
|
|
843
|
-
* />
|
|
844
|
-
*/
|
|
845
|
-
declare function MenuBarItem({ icon, isActive, title, onClick }: MenuBarItemProps): react_jsx_runtime.JSX.Element;
|
|
846
|
-
|
|
847
|
-
interface MenuBarItemConfig extends MenuBarItemProps {
|
|
848
|
-
key: string;
|
|
849
|
-
}
|
|
850
|
-
interface MenuBarProps {
|
|
851
|
-
items: MenuBarItemConfig[];
|
|
852
|
-
}
|
|
853
|
-
/**
|
|
854
|
-
* Vertical icon sidebar (left edge of the app).
|
|
855
|
-
*
|
|
856
|
-
* Decoupled from React Router, useAuth, and useData.
|
|
857
|
-
* The app composes the items array (with `onClick` handlers) and passes it in.
|
|
858
|
-
*
|
|
859
|
-
* @example
|
|
860
|
-
* const items: MenuBarItemConfig[] = [
|
|
861
|
-
* { key: 'dash', icon: <Icon.Dashboard />, title: 'Dashboard', isActive: pathname === '/dashboard', onClick: () => navigate('/dashboard') },
|
|
862
|
-
* { key: 'logout', icon: <Icon.PowerOff />, title: 'Sign Out', isActive: false, onClick: logOut },
|
|
863
|
-
* ]
|
|
864
|
-
* <MenuBar items={items} />
|
|
865
|
-
*/
|
|
866
|
-
declare function MenuBar({ items }: MenuBarProps): react_jsx_runtime.JSX.Element;
|
|
867
|
-
|
|
868
852
|
/**
|
|
869
853
|
* A single action in the context menu.
|
|
870
854
|
*
|
|
@@ -1662,15 +1646,6 @@ interface SearchInputProps {
|
|
|
1662
1646
|
*/
|
|
1663
1647
|
declare const SearchInput: React$1.ForwardRefExoticComponent<SearchInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1664
1648
|
|
|
1665
|
-
interface DropdownPillProps {
|
|
1666
|
-
value?: ReactNode;
|
|
1667
|
-
hasSiblings?: boolean;
|
|
1668
|
-
}
|
|
1669
|
-
/**
|
|
1670
|
-
* Pill chip used inside Dropdown to display selected values.
|
|
1671
|
-
*/
|
|
1672
|
-
declare function DropdownPill({ value, hasSiblings }: DropdownPillProps): react_jsx_runtime.JSX.Element;
|
|
1673
|
-
|
|
1674
1649
|
interface CheckboxProps {
|
|
1675
1650
|
/** Controlled checked state */
|
|
1676
1651
|
checked?: boolean;
|
|
@@ -1765,6 +1740,13 @@ interface DropdownProps {
|
|
|
1765
1740
|
disabled?: boolean;
|
|
1766
1741
|
/** Label/input orientation. Defaults to `'vertical'`. */
|
|
1767
1742
|
layout?: 'horizontal' | 'vertical';
|
|
1743
|
+
/**
|
|
1744
|
+
* Show a "+N more" pill alongside the first selected item in multiselect
|
|
1745
|
+
* mode. Defaults to `false` — a single pill is shown with the first
|
|
1746
|
+
* selection and consumers typically open the dropdown to see the rest.
|
|
1747
|
+
* Set `true` if you want the count visible on the trigger.
|
|
1748
|
+
*/
|
|
1749
|
+
showSelectedCount?: boolean;
|
|
1768
1750
|
errorMessage?: React$1.ReactNode;
|
|
1769
1751
|
style?: React$1.CSSProperties;
|
|
1770
1752
|
htmlFor?: string;
|
|
@@ -1787,7 +1769,7 @@ interface DropdownProps {
|
|
|
1787
1769
|
* // Multi-select
|
|
1788
1770
|
* <Dropdown isMultiselect label="Fuels" items={fuels} value={form.fuels} onChange={handleChange} />
|
|
1789
1771
|
*/
|
|
1790
|
-
declare function Dropdown({ isMultiselect, hasSearch, label, name, value, onChange, disabled, layout, errorMessage, style, htmlFor, items, labelStyle, placeholder, }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
1772
|
+
declare function Dropdown({ isMultiselect, hasSearch, label, name, value, onChange, disabled, layout, errorMessage, style, htmlFor, items, labelStyle, placeholder, showSelectedCount, }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
1791
1773
|
|
|
1792
1774
|
interface AutoCompleteItem {
|
|
1793
1775
|
key: string;
|
|
@@ -1998,4 +1980,4 @@ type TemporalPickerProps = DatePickerProps;
|
|
|
1998
1980
|
*/
|
|
1999
1981
|
declare function DatePicker({ value, onChange, label, placeholder, htmlFor, name: _name, layout, disabled, errorMessage, min, max, style, format, weekStartsOn, clearable, }: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
2000
1982
|
|
|
2001
|
-
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, Drawer, type DrawerProps, Dropdown, type DropdownItem,
|
|
1983
|
+
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, FileInput, type FileInputProps, GridCard, type GridCardItem, type GridCardProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, DatePicker as Temporal, type TemporalPickerProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, ToggleButton, type ToggleButtonProps, type ToggleItem, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Wizard, type WizardProps, type WizardStep, useNotification };
|