@texturehq/edges 1.11.1 → 1.12.0
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/components.manifest.json +3 -3
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +89 -90
- package/dist/index.d.ts +89 -90
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/styles.css +10 -6
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2990,64 +2990,6 @@ interface NumberFieldProps extends Omit<NumberFieldProps$1, "size" | "className"
|
|
|
2990
2990
|
}
|
|
2991
2991
|
declare function NumberField({ label, description, errorMessage, size, tooltip, isRequired, transparent, validationResult, ...props }: NumberFieldProps): react_jsx_runtime.JSX.Element;
|
|
2992
2992
|
|
|
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
2993
|
/**
|
|
3052
2994
|
* PageLayout — opinionated, SSR-friendly page scaffold for dashboards.
|
|
3053
2995
|
*
|
|
@@ -3066,7 +3008,15 @@ declare function SectionNav({ sections, activeSection: controlledActiveSection,
|
|
|
3066
3008
|
* ...cards/tables/content...
|
|
3067
3009
|
* </Grid>
|
|
3068
3010
|
* </PageLayout.Content>
|
|
3069
|
-
*
|
|
3011
|
+
* </PageLayout>
|
|
3012
|
+
*
|
|
3013
|
+
* With Section Navigation:
|
|
3014
|
+
* <PageLayout>
|
|
3015
|
+
* <PageLayout.Header title="..." />
|
|
3016
|
+
* <PageLayout.Content withSectionNav="left">
|
|
3017
|
+
* <Section id="overview" navLabel="Overview" title="Overview">...</Section>
|
|
3018
|
+
* <Section id="details" navLabel="Details" title="Details">...</Section>
|
|
3019
|
+
* </PageLayout.Content>
|
|
3070
3020
|
* </PageLayout>
|
|
3071
3021
|
*
|
|
3072
3022
|
* Notes:
|
|
@@ -3075,6 +3025,7 @@ declare function SectionNav({ sections, activeSection: controlledActiveSection,
|
|
|
3075
3025
|
* - Composable: Use with Grid, Section, Card, DataControls and other components for flexible layouts.
|
|
3076
3026
|
* - Media support: Header can include hero images, maps, or other visual content.
|
|
3077
3027
|
* - Actions: Right-aligned on desktop, below subtitle on mobile.
|
|
3028
|
+
* - Section nav: Automatically extracts navigation from Section children when withSectionNav is enabled.
|
|
3078
3029
|
* - Styling: token-oriented utility classes (match to your Tailwind preset/tokens).
|
|
3079
3030
|
*/
|
|
3080
3031
|
type PageBreadcrumbItem = BreadcrumbItemProps & {
|
|
@@ -3094,7 +3045,6 @@ declare namespace PageLayout {
|
|
|
3094
3045
|
var Tabs: typeof Tabs$1;
|
|
3095
3046
|
var Content: typeof Content;
|
|
3096
3047
|
var Aside: typeof Aside$1;
|
|
3097
|
-
var SectionNav: typeof SectionNavWithLayout;
|
|
3098
3048
|
}
|
|
3099
3049
|
type PageHeaderProps = {
|
|
3100
3050
|
title: React__default.ReactNode;
|
|
@@ -3130,8 +3080,22 @@ declare function Tabs$1({ tabs, value, defaultValue, onChange, className, childr
|
|
|
3130
3080
|
type PageContentProps = {
|
|
3131
3081
|
children: React__default.ReactNode;
|
|
3132
3082
|
className?: string;
|
|
3083
|
+
/** Enable section navigation. Position: 'above' (horizontal), 'left' (vertical), 'right' (vertical) */
|
|
3084
|
+
withSectionNav?: "above" | "left" | "right";
|
|
3085
|
+
/** Custom nav width when positioned left/right (default: 240px) */
|
|
3086
|
+
navWidth?: string;
|
|
3087
|
+
/** Gap between nav and content when positioned left/right (default: 3rem) */
|
|
3088
|
+
gap?: string;
|
|
3089
|
+
/** Active section ID (controlled mode) */
|
|
3090
|
+
activeSection?: string | null;
|
|
3091
|
+
/** Callback when active section changes */
|
|
3092
|
+
onSectionChange?: (sectionId: string) => void;
|
|
3093
|
+
/** Custom scroll behavior */
|
|
3094
|
+
scrollBehavior?: ScrollBehavior;
|
|
3095
|
+
/** ID prefix for section elements (default: 'section-') */
|
|
3096
|
+
sectionIdPrefix?: string;
|
|
3133
3097
|
};
|
|
3134
|
-
declare function Content({ children, className }: PageContentProps): react_jsx_runtime.JSX.Element;
|
|
3098
|
+
declare function Content({ children, className, withSectionNav, navWidth, gap, activeSection, onSectionChange, scrollBehavior, sectionIdPrefix, }: PageContentProps): react_jsx_runtime.JSX.Element;
|
|
3135
3099
|
type PageAsideProps = {
|
|
3136
3100
|
children: React__default.ReactNode;
|
|
3137
3101
|
/** Sticky aside on wide screens */
|
|
@@ -3139,34 +3103,6 @@ type PageAsideProps = {
|
|
|
3139
3103
|
className?: string;
|
|
3140
3104
|
};
|
|
3141
3105
|
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
3106
|
|
|
3171
3107
|
interface Place {
|
|
3172
3108
|
id: string;
|
|
@@ -3399,8 +3335,71 @@ interface SectionProps {
|
|
|
3399
3335
|
className?: string;
|
|
3400
3336
|
/** Section content */
|
|
3401
3337
|
children?: React__default.ReactNode;
|
|
3338
|
+
/** Label used by in-page navigation (PageLayout.Content with withSectionNav). Falls back to title when omitted */
|
|
3339
|
+
navLabel?: string;
|
|
3402
3340
|
}
|
|
3403
3341
|
declare function Section({ id, title, description, actions, variant, spacing, withDivider, headingAs, className, children, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
3342
|
+
declare namespace Section {
|
|
3343
|
+
var displayName: string;
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
/**
|
|
3347
|
+
* SectionNav — In-page navigation for content sections with smooth scrolling
|
|
3348
|
+
*
|
|
3349
|
+
* Provides sticky sidebar navigation on desktop and horizontal scrollable tabs on mobile.
|
|
3350
|
+
* Automatically tracks the active section based on scroll position and enables smooth
|
|
3351
|
+
* scrolling to sections when clicked.
|
|
3352
|
+
*
|
|
3353
|
+
* ## Features
|
|
3354
|
+
* - Responsive: Sidebar on desktop (lg+), horizontal tabs on mobile
|
|
3355
|
+
* - Sticky positioning for persistent visibility
|
|
3356
|
+
* - Smooth scroll to sections
|
|
3357
|
+
* - Active state management
|
|
3358
|
+
* - Customizable styling and positioning
|
|
3359
|
+
*
|
|
3360
|
+
* @example
|
|
3361
|
+
* ```tsx
|
|
3362
|
+
* <SectionNav
|
|
3363
|
+
* sections={[
|
|
3364
|
+
* { id: 'overview', label: 'Overview' },
|
|
3365
|
+
* { id: 'features', label: 'Features' },
|
|
3366
|
+
* { id: 'pricing', label: 'Pricing' }
|
|
3367
|
+
* ]}
|
|
3368
|
+
* activeSection="overview"
|
|
3369
|
+
* onSectionChange={(id) => console.log('Active section:', id)}
|
|
3370
|
+
* />
|
|
3371
|
+
* ```
|
|
3372
|
+
*/
|
|
3373
|
+
type SectionNavItem = {
|
|
3374
|
+
/** Unique identifier that matches the section's HTML id */
|
|
3375
|
+
id: string;
|
|
3376
|
+
/** Display label for the navigation item */
|
|
3377
|
+
label: string;
|
|
3378
|
+
/** Optional count badge to display next to the label */
|
|
3379
|
+
count?: number;
|
|
3380
|
+
};
|
|
3381
|
+
type SectionNavOrientation = "vertical" | "horizontal" | "responsive";
|
|
3382
|
+
type SectionNavProps = {
|
|
3383
|
+
/** Array of section items to navigate between */
|
|
3384
|
+
sections: SectionNavItem[];
|
|
3385
|
+
/** Currently active section id */
|
|
3386
|
+
activeSection?: string | null;
|
|
3387
|
+
/** Callback when active section changes (controlled mode) */
|
|
3388
|
+
onSectionChange?: (sectionId: string) => void;
|
|
3389
|
+
/** Navigation orientation: vertical (sidebar), horizontal (tabs), or responsive (auto) */
|
|
3390
|
+
orientation?: SectionNavOrientation;
|
|
3391
|
+
/** Additional CSS classes for the nav container */
|
|
3392
|
+
className?: string;
|
|
3393
|
+
/** Custom scroll behavior options */
|
|
3394
|
+
scrollBehavior?: ScrollBehavior;
|
|
3395
|
+
/** Top offset for sticky positioning (default: 24px / 1.5rem) */
|
|
3396
|
+
stickyTop?: string;
|
|
3397
|
+
/** ID prefix for section elements (default: 'section-') */
|
|
3398
|
+
sectionIdPrefix?: string;
|
|
3399
|
+
/** Custom filter function to determine which sections are visible */
|
|
3400
|
+
filterSection?: (section: SectionNavItem) => boolean;
|
|
3401
|
+
};
|
|
3402
|
+
declare function SectionNav({ sections, activeSection: controlledActiveSection, onSectionChange, orientation, className, scrollBehavior, stickyTop, sectionIdPrefix, filterSection, }: SectionNavProps): react_jsx_runtime.JSX.Element | null;
|
|
3404
3403
|
|
|
3405
3404
|
/**
|
|
3406
3405
|
* Interface defining the shape of items in the Select component
|
|
@@ -3894,4 +3893,4 @@ interface ColorModeProviderProps {
|
|
|
3894
3893
|
}
|
|
3895
3894
|
declare const ColorModeProvider: React.FC<ColorModeProviderProps>;
|
|
3896
3895
|
|
|
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,
|
|
3896
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -2990,64 +2990,6 @@ interface NumberFieldProps extends Omit<NumberFieldProps$1, "size" | "className"
|
|
|
2990
2990
|
}
|
|
2991
2991
|
declare function NumberField({ label, description, errorMessage, size, tooltip, isRequired, transparent, validationResult, ...props }: NumberFieldProps): react_jsx_runtime.JSX.Element;
|
|
2992
2992
|
|
|
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
2993
|
/**
|
|
3052
2994
|
* PageLayout — opinionated, SSR-friendly page scaffold for dashboards.
|
|
3053
2995
|
*
|
|
@@ -3066,7 +3008,15 @@ declare function SectionNav({ sections, activeSection: controlledActiveSection,
|
|
|
3066
3008
|
* ...cards/tables/content...
|
|
3067
3009
|
* </Grid>
|
|
3068
3010
|
* </PageLayout.Content>
|
|
3069
|
-
*
|
|
3011
|
+
* </PageLayout>
|
|
3012
|
+
*
|
|
3013
|
+
* With Section Navigation:
|
|
3014
|
+
* <PageLayout>
|
|
3015
|
+
* <PageLayout.Header title="..." />
|
|
3016
|
+
* <PageLayout.Content withSectionNav="left">
|
|
3017
|
+
* <Section id="overview" navLabel="Overview" title="Overview">...</Section>
|
|
3018
|
+
* <Section id="details" navLabel="Details" title="Details">...</Section>
|
|
3019
|
+
* </PageLayout.Content>
|
|
3070
3020
|
* </PageLayout>
|
|
3071
3021
|
*
|
|
3072
3022
|
* Notes:
|
|
@@ -3075,6 +3025,7 @@ declare function SectionNav({ sections, activeSection: controlledActiveSection,
|
|
|
3075
3025
|
* - Composable: Use with Grid, Section, Card, DataControls and other components for flexible layouts.
|
|
3076
3026
|
* - Media support: Header can include hero images, maps, or other visual content.
|
|
3077
3027
|
* - Actions: Right-aligned on desktop, below subtitle on mobile.
|
|
3028
|
+
* - Section nav: Automatically extracts navigation from Section children when withSectionNav is enabled.
|
|
3078
3029
|
* - Styling: token-oriented utility classes (match to your Tailwind preset/tokens).
|
|
3079
3030
|
*/
|
|
3080
3031
|
type PageBreadcrumbItem = BreadcrumbItemProps & {
|
|
@@ -3094,7 +3045,6 @@ declare namespace PageLayout {
|
|
|
3094
3045
|
var Tabs: typeof Tabs$1;
|
|
3095
3046
|
var Content: typeof Content;
|
|
3096
3047
|
var Aside: typeof Aside$1;
|
|
3097
|
-
var SectionNav: typeof SectionNavWithLayout;
|
|
3098
3048
|
}
|
|
3099
3049
|
type PageHeaderProps = {
|
|
3100
3050
|
title: React__default.ReactNode;
|
|
@@ -3130,8 +3080,22 @@ declare function Tabs$1({ tabs, value, defaultValue, onChange, className, childr
|
|
|
3130
3080
|
type PageContentProps = {
|
|
3131
3081
|
children: React__default.ReactNode;
|
|
3132
3082
|
className?: string;
|
|
3083
|
+
/** Enable section navigation. Position: 'above' (horizontal), 'left' (vertical), 'right' (vertical) */
|
|
3084
|
+
withSectionNav?: "above" | "left" | "right";
|
|
3085
|
+
/** Custom nav width when positioned left/right (default: 240px) */
|
|
3086
|
+
navWidth?: string;
|
|
3087
|
+
/** Gap between nav and content when positioned left/right (default: 3rem) */
|
|
3088
|
+
gap?: string;
|
|
3089
|
+
/** Active section ID (controlled mode) */
|
|
3090
|
+
activeSection?: string | null;
|
|
3091
|
+
/** Callback when active section changes */
|
|
3092
|
+
onSectionChange?: (sectionId: string) => void;
|
|
3093
|
+
/** Custom scroll behavior */
|
|
3094
|
+
scrollBehavior?: ScrollBehavior;
|
|
3095
|
+
/** ID prefix for section elements (default: 'section-') */
|
|
3096
|
+
sectionIdPrefix?: string;
|
|
3133
3097
|
};
|
|
3134
|
-
declare function Content({ children, className }: PageContentProps): react_jsx_runtime.JSX.Element;
|
|
3098
|
+
declare function Content({ children, className, withSectionNav, navWidth, gap, activeSection, onSectionChange, scrollBehavior, sectionIdPrefix, }: PageContentProps): react_jsx_runtime.JSX.Element;
|
|
3135
3099
|
type PageAsideProps = {
|
|
3136
3100
|
children: React__default.ReactNode;
|
|
3137
3101
|
/** Sticky aside on wide screens */
|
|
@@ -3139,34 +3103,6 @@ type PageAsideProps = {
|
|
|
3139
3103
|
className?: string;
|
|
3140
3104
|
};
|
|
3141
3105
|
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
3106
|
|
|
3171
3107
|
interface Place {
|
|
3172
3108
|
id: string;
|
|
@@ -3399,8 +3335,71 @@ interface SectionProps {
|
|
|
3399
3335
|
className?: string;
|
|
3400
3336
|
/** Section content */
|
|
3401
3337
|
children?: React__default.ReactNode;
|
|
3338
|
+
/** Label used by in-page navigation (PageLayout.Content with withSectionNav). Falls back to title when omitted */
|
|
3339
|
+
navLabel?: string;
|
|
3402
3340
|
}
|
|
3403
3341
|
declare function Section({ id, title, description, actions, variant, spacing, withDivider, headingAs, className, children, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
3342
|
+
declare namespace Section {
|
|
3343
|
+
var displayName: string;
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
/**
|
|
3347
|
+
* SectionNav — In-page navigation for content sections with smooth scrolling
|
|
3348
|
+
*
|
|
3349
|
+
* Provides sticky sidebar navigation on desktop and horizontal scrollable tabs on mobile.
|
|
3350
|
+
* Automatically tracks the active section based on scroll position and enables smooth
|
|
3351
|
+
* scrolling to sections when clicked.
|
|
3352
|
+
*
|
|
3353
|
+
* ## Features
|
|
3354
|
+
* - Responsive: Sidebar on desktop (lg+), horizontal tabs on mobile
|
|
3355
|
+
* - Sticky positioning for persistent visibility
|
|
3356
|
+
* - Smooth scroll to sections
|
|
3357
|
+
* - Active state management
|
|
3358
|
+
* - Customizable styling and positioning
|
|
3359
|
+
*
|
|
3360
|
+
* @example
|
|
3361
|
+
* ```tsx
|
|
3362
|
+
* <SectionNav
|
|
3363
|
+
* sections={[
|
|
3364
|
+
* { id: 'overview', label: 'Overview' },
|
|
3365
|
+
* { id: 'features', label: 'Features' },
|
|
3366
|
+
* { id: 'pricing', label: 'Pricing' }
|
|
3367
|
+
* ]}
|
|
3368
|
+
* activeSection="overview"
|
|
3369
|
+
* onSectionChange={(id) => console.log('Active section:', id)}
|
|
3370
|
+
* />
|
|
3371
|
+
* ```
|
|
3372
|
+
*/
|
|
3373
|
+
type SectionNavItem = {
|
|
3374
|
+
/** Unique identifier that matches the section's HTML id */
|
|
3375
|
+
id: string;
|
|
3376
|
+
/** Display label for the navigation item */
|
|
3377
|
+
label: string;
|
|
3378
|
+
/** Optional count badge to display next to the label */
|
|
3379
|
+
count?: number;
|
|
3380
|
+
};
|
|
3381
|
+
type SectionNavOrientation = "vertical" | "horizontal" | "responsive";
|
|
3382
|
+
type SectionNavProps = {
|
|
3383
|
+
/** Array of section items to navigate between */
|
|
3384
|
+
sections: SectionNavItem[];
|
|
3385
|
+
/** Currently active section id */
|
|
3386
|
+
activeSection?: string | null;
|
|
3387
|
+
/** Callback when active section changes (controlled mode) */
|
|
3388
|
+
onSectionChange?: (sectionId: string) => void;
|
|
3389
|
+
/** Navigation orientation: vertical (sidebar), horizontal (tabs), or responsive (auto) */
|
|
3390
|
+
orientation?: SectionNavOrientation;
|
|
3391
|
+
/** Additional CSS classes for the nav container */
|
|
3392
|
+
className?: string;
|
|
3393
|
+
/** Custom scroll behavior options */
|
|
3394
|
+
scrollBehavior?: ScrollBehavior;
|
|
3395
|
+
/** Top offset for sticky positioning (default: 24px / 1.5rem) */
|
|
3396
|
+
stickyTop?: string;
|
|
3397
|
+
/** ID prefix for section elements (default: 'section-') */
|
|
3398
|
+
sectionIdPrefix?: string;
|
|
3399
|
+
/** Custom filter function to determine which sections are visible */
|
|
3400
|
+
filterSection?: (section: SectionNavItem) => boolean;
|
|
3401
|
+
};
|
|
3402
|
+
declare function SectionNav({ sections, activeSection: controlledActiveSection, onSectionChange, orientation, className, scrollBehavior, stickyTop, sectionIdPrefix, filterSection, }: SectionNavProps): react_jsx_runtime.JSX.Element | null;
|
|
3404
3403
|
|
|
3405
3404
|
/**
|
|
3406
3405
|
* Interface defining the shape of items in the Select component
|
|
@@ -3894,4 +3893,4 @@ interface ColorModeProviderProps {
|
|
|
3894
3893
|
}
|
|
3895
3894
|
declare const ColorModeProvider: React.FC<ColorModeProviderProps>;
|
|
3896
3895
|
|
|
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,
|
|
3896
|
+
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 };
|