@texturehq/edges 1.11.1 → 1.12.1

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.ts CHANGED
@@ -934,6 +934,28 @@ interface DialogProps extends Omit<DialogHeaderConfig, "onClose">, DialogFooterC
934
934
  * @default "400px"
935
935
  */
936
936
  minWidth?: string;
937
+ /**
938
+ * Maximum height of the dialog on desktop
939
+ * @default "85vh"
940
+ */
941
+ maxHeight?: string;
942
+ /**
943
+ * Explicit height of the dialog on desktop (overrides maxHeight if set)
944
+ * Content will scroll within this fixed height
945
+ * @default undefined
946
+ */
947
+ height?: string;
948
+ /**
949
+ * Maximum height of the dialog on mobile (tray version)
950
+ * @default "90vh"
951
+ */
952
+ mobileMaxHeight?: string;
953
+ /**
954
+ * Explicit height of the dialog on mobile (overrides mobileMaxHeight if set)
955
+ * Content will scroll within this fixed height
956
+ * @default undefined
957
+ */
958
+ mobileHeight?: string;
937
959
  /**
938
960
  * Whether to include padding inside the content area
939
961
  * @default true
@@ -950,7 +972,7 @@ interface DialogProps extends Omit<DialogHeaderConfig, "onClose">, DialogFooterC
950
972
  * Responsive modal dialog component with backdrop.
951
973
  *
952
974
  * **Desktop (≥768px):** Centered modal with scale and fade animation
953
- * **Mobile (<768px):** Bottom sheet that slides up from bottom
975
+ * **Mobile (<768px):** Uses Tray component for native bottom sheet experience with drag handle
954
976
  *
955
977
  * Includes optional header with title/back button and footer with action buttons.
956
978
  *
@@ -977,7 +999,7 @@ interface DialogProps extends Omit<DialogHeaderConfig, "onClose">, DialogFooterC
977
999
  * </Dialog>
978
1000
  * ```
979
1001
  */
980
- declare function Dialog({ isOpen, onClose, title, headerContent, titleAlign, hideCloseIcon, hasBackArrow, onBack, children, primaryAction, secondaryAction, footerContent, transparentOverlay, maxWidth, minWidth, contentPadding, className, }: DialogProps): react_jsx_runtime.JSX.Element | null;
1002
+ declare function Dialog({ isOpen, onClose, title, headerContent, titleAlign, hideCloseIcon, hasBackArrow, onBack, children, primaryAction, secondaryAction, footerContent, transparentOverlay, maxWidth, minWidth, maxHeight, height, mobileMaxHeight, mobileHeight, contentPadding, className, }: DialogProps): react_jsx_runtime.JSX.Element | null;
981
1003
 
982
1004
  interface AlertProps {
983
1005
  /**
@@ -2135,8 +2157,8 @@ interface EmptyStateAction {
2135
2157
  isDisabled?: boolean;
2136
2158
  }
2137
2159
  interface EmptyStateProps {
2138
- /** Optional icon or illustration shown at the top of the empty state. */
2139
- icon?: ReactNode;
2160
+ /** Icon name from Icon component to show at the top of the empty state. */
2161
+ icon?: IconName$2;
2140
2162
  /** Primary title describing the state. */
2141
2163
  title: ReactNode;
2142
2164
  /** Optional description providing more context. */
@@ -2990,64 +3012,6 @@ interface NumberFieldProps extends Omit<NumberFieldProps$1, "size" | "className"
2990
3012
  }
2991
3013
  declare function NumberField({ label, description, errorMessage, size, tooltip, isRequired, transparent, validationResult, ...props }: NumberFieldProps): react_jsx_runtime.JSX.Element;
2992
3014
 
2993
- /**
2994
- * SectionNav — In-page navigation for content sections with smooth scrolling
2995
- *
2996
- * Provides sticky sidebar navigation on desktop and horizontal scrollable tabs on mobile.
2997
- * Automatically tracks the active section based on scroll position and enables smooth
2998
- * scrolling to sections when clicked.
2999
- *
3000
- * ## Features
3001
- * - Responsive: Sidebar on desktop (lg+), horizontal tabs on mobile
3002
- * - Sticky positioning for persistent visibility
3003
- * - Smooth scroll to sections
3004
- * - Active state management
3005
- * - Customizable styling and positioning
3006
- *
3007
- * @example
3008
- * ```tsx
3009
- * <SectionNav
3010
- * sections={[
3011
- * { id: 'overview', label: 'Overview' },
3012
- * { id: 'features', label: 'Features' },
3013
- * { id: 'pricing', label: 'Pricing' }
3014
- * ]}
3015
- * activeSection="overview"
3016
- * onSectionChange={(id) => console.log('Active section:', id)}
3017
- * />
3018
- * ```
3019
- */
3020
- type SectionNavItem = {
3021
- /** Unique identifier that matches the section's HTML id */
3022
- id: string;
3023
- /** Display label for the navigation item */
3024
- label: string;
3025
- /** Optional count badge to display next to the label */
3026
- count?: number;
3027
- };
3028
- type SectionNavOrientation = "vertical" | "horizontal" | "responsive";
3029
- type SectionNavProps = {
3030
- /** Array of section items to navigate between */
3031
- sections: SectionNavItem[];
3032
- /** Currently active section id */
3033
- activeSection?: string | null;
3034
- /** Callback when active section changes (controlled mode) */
3035
- onSectionChange?: (sectionId: string) => void;
3036
- /** Navigation orientation: vertical (sidebar), horizontal (tabs), or responsive (auto) */
3037
- orientation?: SectionNavOrientation;
3038
- /** Additional CSS classes for the nav container */
3039
- className?: string;
3040
- /** Custom scroll behavior options */
3041
- scrollBehavior?: ScrollBehavior;
3042
- /** Top offset for sticky positioning (default: 24px / 1.5rem) */
3043
- stickyTop?: string;
3044
- /** ID prefix for section elements (default: 'section-') */
3045
- sectionIdPrefix?: string;
3046
- /** Custom filter function to determine which sections are visible */
3047
- filterSection?: (section: SectionNavItem) => boolean;
3048
- };
3049
- declare function SectionNav({ sections, activeSection: controlledActiveSection, onSectionChange, orientation, className, scrollBehavior, stickyTop, sectionIdPrefix, filterSection, }: SectionNavProps): react_jsx_runtime.JSX.Element | null;
3050
-
3051
3015
  /**
3052
3016
  * PageLayout — opinionated, SSR-friendly page scaffold for dashboards.
3053
3017
  *
@@ -3066,7 +3030,15 @@ declare function SectionNav({ sections, activeSection: controlledActiveSection,
3066
3030
  * ...cards/tables/content...
3067
3031
  * </Grid>
3068
3032
  * </PageLayout.Content>
3069
- * <PageLayout.Aside>...sticky insights/help...</PageLayout.Aside>
3033
+ * </PageLayout>
3034
+ *
3035
+ * With Section Navigation:
3036
+ * <PageLayout>
3037
+ * <PageLayout.Header title="..." />
3038
+ * <PageLayout.Content withSectionNav="left">
3039
+ * <Section id="overview" navLabel="Overview" title="Overview">...</Section>
3040
+ * <Section id="details" navLabel="Details" title="Details">...</Section>
3041
+ * </PageLayout.Content>
3070
3042
  * </PageLayout>
3071
3043
  *
3072
3044
  * Notes:
@@ -3075,6 +3047,7 @@ declare function SectionNav({ sections, activeSection: controlledActiveSection,
3075
3047
  * - Composable: Use with Grid, Section, Card, DataControls and other components for flexible layouts.
3076
3048
  * - Media support: Header can include hero images, maps, or other visual content.
3077
3049
  * - Actions: Right-aligned on desktop, below subtitle on mobile.
3050
+ * - Section nav: Automatically extracts navigation from Section children when withSectionNav is enabled.
3078
3051
  * - Styling: token-oriented utility classes (match to your Tailwind preset/tokens).
3079
3052
  */
3080
3053
  type PageBreadcrumbItem = BreadcrumbItemProps & {
@@ -3094,7 +3067,6 @@ declare namespace PageLayout {
3094
3067
  var Tabs: typeof Tabs$1;
3095
3068
  var Content: typeof Content;
3096
3069
  var Aside: typeof Aside$1;
3097
- var SectionNav: typeof SectionNavWithLayout;
3098
3070
  }
3099
3071
  type PageHeaderProps = {
3100
3072
  title: React__default.ReactNode;
@@ -3130,8 +3102,22 @@ declare function Tabs$1({ tabs, value, defaultValue, onChange, className, childr
3130
3102
  type PageContentProps = {
3131
3103
  children: React__default.ReactNode;
3132
3104
  className?: string;
3105
+ /** Enable section navigation. Position: 'above' (horizontal), 'left' (vertical), 'right' (vertical) */
3106
+ withSectionNav?: "above" | "left" | "right";
3107
+ /** Custom nav width when positioned left/right (default: 240px) */
3108
+ navWidth?: string;
3109
+ /** Gap between nav and content when positioned left/right (default: 3rem) */
3110
+ gap?: string;
3111
+ /** Active section ID (controlled mode) */
3112
+ activeSection?: string | null;
3113
+ /** Callback when active section changes */
3114
+ onSectionChange?: (sectionId: string) => void;
3115
+ /** Custom scroll behavior */
3116
+ scrollBehavior?: ScrollBehavior;
3117
+ /** ID prefix for section elements (default: 'section-') */
3118
+ sectionIdPrefix?: string;
3133
3119
  };
3134
- declare function Content({ children, className }: PageContentProps): react_jsx_runtime.JSX.Element;
3120
+ declare function Content({ children, className, withSectionNav, navWidth, gap, activeSection, onSectionChange, scrollBehavior, sectionIdPrefix, }: PageContentProps): react_jsx_runtime.JSX.Element;
3135
3121
  type PageAsideProps = {
3136
3122
  children: React__default.ReactNode;
3137
3123
  /** Sticky aside on wide screens */
@@ -3139,34 +3125,6 @@ type PageAsideProps = {
3139
3125
  className?: string;
3140
3126
  };
3141
3127
  declare function Aside$1({ children, sticky, className }: PageAsideProps): react_jsx_runtime.JSX.Element;
3142
- type PageSectionNavProps = {
3143
- sections: SectionNavItem[];
3144
- activeSection?: string | null;
3145
- onSectionChange?: (sectionId: string) => void;
3146
- /** Position on desktop: 'above' (horizontal), 'left' (vertical), 'right' (vertical). Default: 'left' */
3147
- position?: "above" | "left" | "right";
3148
- /** Custom nav width when positioned left/right (default: 240px) */
3149
- navWidth?: string;
3150
- /** Gap between nav and content when positioned left/right (default: 1.5rem) */
3151
- gap?: string;
3152
- /** The main content with sections */
3153
- children: React__default.ReactNode;
3154
- className?: string;
3155
- scrollBehavior?: ScrollBehavior;
3156
- sectionIdPrefix?: string;
3157
- filterSection?: (section: SectionNavItem) => boolean;
3158
- };
3159
- /**
3160
- * PageLayout.SectionNav
3161
- *
3162
- * Renders section navigation with flexible positioning:
3163
- * - `position="above"`: Horizontal nav above content (desktop and mobile)
3164
- * - `position="left"`: Vertical nav on left side (desktop), horizontal above (mobile)
3165
- * - `position="right"`: Vertical nav on right side with right-aligned text (desktop), horizontal above (mobile)
3166
- *
3167
- * Navigation is sticky in all positions.
3168
- */
3169
- declare function SectionNavWithLayout({ sections, activeSection, onSectionChange, position, navWidth, gap, children, className, scrollBehavior, sectionIdPrefix, filterSection, }: PageSectionNavProps): react_jsx_runtime.JSX.Element;
3170
3128
 
3171
3129
  interface Place {
3172
3130
  id: string;
@@ -3399,8 +3357,71 @@ interface SectionProps {
3399
3357
  className?: string;
3400
3358
  /** Section content */
3401
3359
  children?: React__default.ReactNode;
3360
+ /** Label used by in-page navigation (PageLayout.Content with withSectionNav). Falls back to title when omitted */
3361
+ navLabel?: string;
3402
3362
  }
3403
3363
  declare function Section({ id, title, description, actions, variant, spacing, withDivider, headingAs, className, children, }: SectionProps): react_jsx_runtime.JSX.Element;
3364
+ declare namespace Section {
3365
+ var displayName: string;
3366
+ }
3367
+
3368
+ /**
3369
+ * SectionNav — In-page navigation for content sections with smooth scrolling
3370
+ *
3371
+ * Provides sticky sidebar navigation on desktop and horizontal scrollable tabs on mobile.
3372
+ * Automatically tracks the active section based on scroll position and enables smooth
3373
+ * scrolling to sections when clicked.
3374
+ *
3375
+ * ## Features
3376
+ * - Responsive: Sidebar on desktop (lg+), horizontal tabs on mobile
3377
+ * - Sticky positioning for persistent visibility
3378
+ * - Smooth scroll to sections
3379
+ * - Active state management
3380
+ * - Customizable styling and positioning
3381
+ *
3382
+ * @example
3383
+ * ```tsx
3384
+ * <SectionNav
3385
+ * sections={[
3386
+ * { id: 'overview', label: 'Overview' },
3387
+ * { id: 'features', label: 'Features' },
3388
+ * { id: 'pricing', label: 'Pricing' }
3389
+ * ]}
3390
+ * activeSection="overview"
3391
+ * onSectionChange={(id) => console.log('Active section:', id)}
3392
+ * />
3393
+ * ```
3394
+ */
3395
+ type SectionNavItem = {
3396
+ /** Unique identifier that matches the section's HTML id */
3397
+ id: string;
3398
+ /** Display label for the navigation item */
3399
+ label: string;
3400
+ /** Optional count badge to display next to the label */
3401
+ count?: number;
3402
+ };
3403
+ type SectionNavOrientation = "vertical" | "horizontal" | "responsive";
3404
+ type SectionNavProps = {
3405
+ /** Array of section items to navigate between */
3406
+ sections: SectionNavItem[];
3407
+ /** Currently active section id */
3408
+ activeSection?: string | null;
3409
+ /** Callback when active section changes (controlled mode) */
3410
+ onSectionChange?: (sectionId: string) => void;
3411
+ /** Navigation orientation: vertical (sidebar), horizontal (tabs), or responsive (auto) */
3412
+ orientation?: SectionNavOrientation;
3413
+ /** Additional CSS classes for the nav container */
3414
+ className?: string;
3415
+ /** Custom scroll behavior options */
3416
+ scrollBehavior?: ScrollBehavior;
3417
+ /** Top offset for sticky positioning (default: 24px / 1.5rem) */
3418
+ stickyTop?: string;
3419
+ /** ID prefix for section elements (default: 'section-') */
3420
+ sectionIdPrefix?: string;
3421
+ /** Custom filter function to determine which sections are visible */
3422
+ filterSection?: (section: SectionNavItem) => boolean;
3423
+ };
3424
+ declare function SectionNav({ sections, activeSection: controlledActiveSection, onSectionChange, orientation, className, scrollBehavior, stickyTop, sectionIdPrefix, filterSection, }: SectionNavProps): react_jsx_runtime.JSX.Element | null;
3404
3425
 
3405
3426
  /**
3406
3427
  * Interface defining the shape of items in the Select component
@@ -3659,6 +3680,11 @@ type TabsProps = TabsProps$2 & {
3659
3680
  };
3660
3681
  type TabListProps<T extends object> = TabListProps$1<T> & {
3661
3682
  variant?: TabVariant;
3683
+ /**
3684
+ * Makes the tab list sticky at the top of its scroll container
3685
+ * @default false
3686
+ */
3687
+ sticky?: boolean;
3662
3688
  };
3663
3689
  /**
3664
3690
  * Tabs
@@ -3670,7 +3696,7 @@ declare function Tabs({ variant, ...props }: TabsProps): react_jsx_runtime.JSX.E
3670
3696
  /**
3671
3697
  * TabList container.
3672
3698
  */
3673
- declare function TabList<T extends object>({ variant, ...props }: TabListProps<T>): react_jsx_runtime.JSX.Element;
3699
+ declare function TabList<T extends object>({ variant, sticky, ...props }: TabListProps<T>): react_jsx_runtime.JSX.Element;
3674
3700
  /**
3675
3701
  * Tab trigger element.
3676
3702
  */
@@ -3846,6 +3872,12 @@ interface TrayProps extends DialogHeaderConfig, DialogFooterConfig {
3846
3872
  * @default "80vh"
3847
3873
  */
3848
3874
  maxHeight?: string;
3875
+ /**
3876
+ * Explicit height for the tray (overrides maxHeight if set)
3877
+ * Content will scroll within this fixed height
3878
+ * @default undefined
3879
+ */
3880
+ height?: string;
3849
3881
  /**
3850
3882
  * Maximum width of the tray
3851
3883
  * @default "640px"
@@ -3878,7 +3910,7 @@ interface TrayProps extends DialogHeaderConfig, DialogFooterConfig {
3878
3910
  * Bottom anchored overlay optimized for mobile experiences.
3879
3911
  * Provides optional header/footer slots that align with Dialog & Drawer APIs.
3880
3912
  */
3881
- declare function Tray({ children, title, headerContent, titleAlign, hideCloseIcon, hasBackArrow, onBack, isOpen, onClose, isDismissable, transparentOverlay, primaryAction, secondaryAction, footerContent, maxHeight, maxWidth, contentPadding, showHandle, animationVariant, className, }: TrayProps): react_jsx_runtime.JSX.Element | null;
3913
+ declare function Tray({ children, title, headerContent, titleAlign, hideCloseIcon, hasBackArrow, onBack, isOpen, onClose, isDismissable, transparentOverlay, primaryAction, secondaryAction, footerContent, maxHeight, height, maxWidth, contentPadding, showHandle, animationVariant, className, }: TrayProps): react_jsx_runtime.JSX.Element | null;
3882
3914
  declare namespace Tray {
3883
3915
  var displayName: string;
3884
3916
  }
@@ -3894,4 +3926,4 @@ interface ColorModeProviderProps {
3894
3926
  }
3895
3927
  declare const ColorModeProvider: React.FC<ColorModeProviderProps>;
3896
3928
 
3897
- export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, Button, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, type CellAlignment, type CellComponent, type CellComponentProps, type CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, type ChartExportMetadata, ChartTooltip, Checkbox, CheckboxGroup, Chip, ClearButton, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, ComponentFormatter, Confirm, type ConfirmProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, Description, type DescriptionProps, Dialog, type DialogAction, type DialogFooterConfig, DialogHeader, type DialogHeaderConfig, type DialogHeaderProps, type DialogProps, DistanceFormat, Drawer, type DrawerProps, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, ErrorBoundary, type ExportType, FieldError, type FieldErrorProps, FieldFormat, FieldGroup, type FieldGroupProps, FieldValue, FilterChips, type FilterChipsProps, Form, FormatRegistry, FormattedValue, FormatterFunction, GeoJsonLayerSpec, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, Icon, Input, type InputProps, type InputStyleProps, InputWrapper, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, Label, type LabelProps, LayerSpec, LineSeries, type LinkBehavior, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberField, NumberFormat, type PageAsideProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageSectionNavProps, PhoneFormat, PlaceSearch, Popover, PowerFormat, ProgressBar, Radio, RadioCard, RadioCardGroup, type RadioCardGroupProps, type RadioCardProps, RadioGroup, RangeCalendar, RasterLayerSpec, ResistanceFormat, type ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, SearchControl, type SearchControlProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, Select, SelectCell, type SelectCellProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, type StatAlign, type StatFormatter, type StatItem, type StatLayout, StatList, type StatListProps, type StatThreshold, type StatTone, type StatValue, Switch, Tab, TabList, TabPanel, type TableDensity, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextArea, TextAreaWithChips, TextCell, type TextCellProps, TextField, TextFormat, TimeField, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type UseBreakpointReturn, VectorLayerSpec, VoltageFormat, YFormatType, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createFormat, enumToSentenceCase, exportChart, fahrenheitToCelsius, fahrenheitToKelvin, feetToMeters, feetToMiles, formatBoolean, formatCurrency, formatCurrent, formatDate, formatDistance, formatEmptyValue, formatEnergy, formatFieldValue, formatInternationalPhone, formatNumber, formatPhone, formatPhoneNumber, formatPower, formatResistance, formatTemperature, formatText, formatUSPhone, formatVoltage, getBadgeClasses, getBooleanBadgeVariant, getCellAlignmentClasses, getCellContainerClasses, getCellTextClasses, getDateParts, getExportFormatName, getFieldGroupStyles, getInputBackgroundStyles, getInputBaseStyles, getInputStateStyles, getNumericColorClasses, getSkeletonSize, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, resolveValue, snakeCaseToWords, temperatureStringToSymbol, toA, toActiveInactive, toAmps, toBoolean, toCelsius, toCentimeters, toCheckmark, toCompactNumber, toCurrency, toCustomDateFormat, toDateString, toEnabledDisabled, toFahrenheit, toFeet, toFloat, toFormattedNumber, toFullDateTime, toGW, toGWh, toGigawatts, toISOString, toInches, toInteger, toKA, toKV, toKW, toKelvin, toKiloamps, toKilohms, toKilometers, toKilovolts, toKilowatts, toLowerCase, toMA, toMV, toMW, toMWh, toMegawatts, toMegohms, toMeters, toMiles, toMilliamps, toMillimeters, toMilliohms, toMillivolts, toNauticalMiles, toOhms, toOnOff, toPercentage, toRelativeTime, toScientificNotation, toSecret, toSentenceCase, toTemperature, toTitleCase, toTrueFalse, toUpperCase, toV, toVolts, toW, toWatts, toWh, toYards, tokWh, truncateEnd, truncateMiddle, truncateStart, ucFirst, useBreakpoint, useColorMode, useDebounce, useInputFocus, useLocalStorage, useMediaQuery, useNotice, yardsToMeters };
3929
+ export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, Button, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, type CellAlignment, type CellComponent, type CellComponentProps, type CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, type ChartExportMetadata, ChartTooltip, Checkbox, CheckboxGroup, Chip, ClearButton, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, ComponentFormatter, Confirm, type ConfirmProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, Description, type DescriptionProps, Dialog, type DialogAction, type DialogFooterConfig, DialogHeader, type DialogHeaderConfig, type DialogHeaderProps, type DialogProps, DistanceFormat, Drawer, type DrawerProps, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, ErrorBoundary, type ExportType, FieldError, type FieldErrorProps, FieldFormat, FieldGroup, type FieldGroupProps, FieldValue, FilterChips, type FilterChipsProps, Form, FormatRegistry, FormattedValue, FormatterFunction, GeoJsonLayerSpec, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, Icon, Input, type InputProps, type InputStyleProps, InputWrapper, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, Label, type LabelProps, LayerSpec, LineSeries, type LinkBehavior, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberField, NumberFormat, type PageAsideProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, PhoneFormat, PlaceSearch, Popover, PowerFormat, ProgressBar, Radio, RadioCard, RadioCardGroup, type RadioCardGroupProps, type RadioCardProps, RadioGroup, RangeCalendar, RasterLayerSpec, ResistanceFormat, type ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, SearchControl, type SearchControlProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, Select, SelectCell, type SelectCellProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, type StatAlign, type StatFormatter, type StatItem, type StatLayout, StatList, type StatListProps, type StatThreshold, type StatTone, type StatValue, Switch, Tab, TabList, TabPanel, type TableDensity, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextArea, TextAreaWithChips, TextCell, type TextCellProps, TextField, TextFormat, TimeField, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type UseBreakpointReturn, VectorLayerSpec, VoltageFormat, YFormatType, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createFormat, enumToSentenceCase, exportChart, fahrenheitToCelsius, fahrenheitToKelvin, feetToMeters, feetToMiles, formatBoolean, formatCurrency, formatCurrent, formatDate, formatDistance, formatEmptyValue, formatEnergy, formatFieldValue, formatInternationalPhone, formatNumber, formatPhone, formatPhoneNumber, formatPower, formatResistance, formatTemperature, formatText, formatUSPhone, formatVoltage, getBadgeClasses, getBooleanBadgeVariant, getCellAlignmentClasses, getCellContainerClasses, getCellTextClasses, getDateParts, getExportFormatName, getFieldGroupStyles, getInputBackgroundStyles, getInputBaseStyles, getInputStateStyles, getNumericColorClasses, getSkeletonSize, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, resolveValue, snakeCaseToWords, temperatureStringToSymbol, toA, toActiveInactive, toAmps, toBoolean, toCelsius, toCentimeters, toCheckmark, toCompactNumber, toCurrency, toCustomDateFormat, toDateString, toEnabledDisabled, toFahrenheit, toFeet, toFloat, toFormattedNumber, toFullDateTime, toGW, toGWh, toGigawatts, toISOString, toInches, toInteger, toKA, toKV, toKW, toKelvin, toKiloamps, toKilohms, toKilometers, toKilovolts, toKilowatts, toLowerCase, toMA, toMV, toMW, toMWh, toMegawatts, toMegohms, toMeters, toMiles, toMilliamps, toMillimeters, toMilliohms, toMillivolts, toNauticalMiles, toOhms, toOnOff, toPercentage, toRelativeTime, toScientificNotation, toSecret, toSentenceCase, toTemperature, toTitleCase, toTrueFalse, toUpperCase, toV, toVolts, toW, toWatts, toWh, toYards, tokWh, truncateEnd, truncateMiddle, truncateStart, ucFirst, useBreakpoint, useColorMode, useDebounce, useInputFocus, useLocalStorage, useMediaQuery, useNotice, yardsToMeters };