@texturehq/edges 1.10.2 → 1.11.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 +13 -2
- package/dist/generated/tailwind-tokens-dark.css +3 -3
- package/dist/generated/tailwind-tokens-light.css +3 -3
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +125 -34
- package/dist/index.d.ts +125 -34
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/styles.css +64 -7
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2990,13 +2990,76 @@ 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
|
+
|
|
2993
3051
|
/**
|
|
2994
3052
|
* PageLayout — opinionated, SSR-friendly page scaffold for dashboards.
|
|
2995
3053
|
*
|
|
2996
3054
|
* Structure:
|
|
2997
3055
|
* <PageLayout>
|
|
2998
|
-
* <PageLayout.Header
|
|
2999
|
-
*
|
|
3056
|
+
* <PageLayout.Header
|
|
3057
|
+
* title="..."
|
|
3058
|
+
* subtitle="..."
|
|
3059
|
+
* breadcrumbs={[...]}
|
|
3060
|
+
* media={<div>images/maps</div>}
|
|
3061
|
+
* actions={[<Button/>, <Button/>]}
|
|
3062
|
+
* />
|
|
3000
3063
|
* <PageLayout.Tabs tabs={[...]} value=... onChange=... />
|
|
3001
3064
|
* <PageLayout.Content>
|
|
3002
3065
|
* <Grid cols={{ base: 1, lg: 4 }} gap="lg">
|
|
@@ -3010,6 +3073,8 @@ declare function NumberField({ label, description, errorMessage, size, tooltip,
|
|
|
3010
3073
|
* - Router-agnostic: Breadcrumbs accept either structured items with a Link component, or a custom ReactNode.
|
|
3011
3074
|
* - Accessible: Header uses h1; Tabs are roving-`tablist`.
|
|
3012
3075
|
* - Composable: Use with Grid, Section, Card, DataControls and other components for flexible layouts.
|
|
3076
|
+
* - Media support: Header can include hero images, maps, or other visual content.
|
|
3077
|
+
* - Actions: Right-aligned on desktop, below subtitle on mobile.
|
|
3013
3078
|
* - Styling: token-oriented utility classes (match to your Tailwind preset/tokens).
|
|
3014
3079
|
*/
|
|
3015
3080
|
type PageBreadcrumbItem = BreadcrumbItemProps & {
|
|
@@ -3026,10 +3091,10 @@ type PageLayoutProps = {
|
|
|
3026
3091
|
declare function PageLayout({ children, maxWidth, paddingXClass, paddingYClass, className, }: PageLayoutProps): react_jsx_runtime.JSX.Element;
|
|
3027
3092
|
declare namespace PageLayout {
|
|
3028
3093
|
var Header: typeof Header;
|
|
3029
|
-
var Actions: typeof Actions;
|
|
3030
3094
|
var Tabs: typeof Tabs$1;
|
|
3031
3095
|
var Content: typeof Content;
|
|
3032
3096
|
var Aside: typeof Aside$1;
|
|
3097
|
+
var SectionNav: typeof SectionNavWithLayout;
|
|
3033
3098
|
}
|
|
3034
3099
|
type PageHeaderProps = {
|
|
3035
3100
|
title: React__default.ReactNode;
|
|
@@ -3039,19 +3104,15 @@ type PageHeaderProps = {
|
|
|
3039
3104
|
breadcrumbsNode?: React__default.ReactNode;
|
|
3040
3105
|
/** Optional right-aligned meta area (badges, status, small stats) */
|
|
3041
3106
|
meta?: React__default.ReactNode;
|
|
3107
|
+
/** Optional media content (images, maps, etc.) rendered after title/subtitle */
|
|
3108
|
+
media?: React__default.ReactNode;
|
|
3109
|
+
/** Optional actions (buttons, filters) - right-aligned on desktop, below subtitle on mobile. Array ensures consistent gap spacing. */
|
|
3110
|
+
actions?: React__default.ReactNode[];
|
|
3042
3111
|
/** Optional slot to replace the default heading element */
|
|
3043
3112
|
headingAs?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
3044
3113
|
className?: string;
|
|
3045
3114
|
};
|
|
3046
|
-
declare function Header({ title, subtitle, breadcrumbs, breadcrumbsNode, meta, headingAs, className, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
3047
|
-
type PageActionsProps = {
|
|
3048
|
-
primary?: React__default.ReactNode;
|
|
3049
|
-
secondary?: React__default.ReactNode;
|
|
3050
|
-
children?: React__default.ReactNode;
|
|
3051
|
-
align?: "start" | "end";
|
|
3052
|
-
className?: string;
|
|
3053
|
-
};
|
|
3054
|
-
declare function Actions({ primary, secondary, children, align, className, }: PageActionsProps): react_jsx_runtime.JSX.Element;
|
|
3115
|
+
declare function Header({ title, subtitle, breadcrumbs, breadcrumbsNode, meta, media, actions, headingAs, className, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
3055
3116
|
type PageLayoutTab = {
|
|
3056
3117
|
id: string;
|
|
3057
3118
|
label: React__default.ReactNode;
|
|
@@ -3078,6 +3139,34 @@ type PageAsideProps = {
|
|
|
3078
3139
|
className?: string;
|
|
3079
3140
|
};
|
|
3080
3141
|
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;
|
|
3081
3170
|
|
|
3082
3171
|
interface Place {
|
|
3083
3172
|
id: string;
|
|
@@ -3158,26 +3247,6 @@ interface ProgressBarProps extends ProgressBarProps$1 {
|
|
|
3158
3247
|
}
|
|
3159
3248
|
declare function ProgressBar({ label, rightLabel, progressWidth, hideLabels, ...props }: ProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
3160
3249
|
|
|
3161
|
-
interface RadioGroupProps extends Omit<RadioGroupProps$1, "children"> {
|
|
3162
|
-
/** Label for the radio group */
|
|
3163
|
-
label?: string;
|
|
3164
|
-
/** Children elements */
|
|
3165
|
-
children?: ReactNode;
|
|
3166
|
-
/** Optional description for the radio group */
|
|
3167
|
-
description?: string;
|
|
3168
|
-
/** Error message to display when validation fails */
|
|
3169
|
-
errorMessage?: string | ((validation: ValidationResult) => string);
|
|
3170
|
-
/** Validation result object for functional errorMessage */
|
|
3171
|
-
validationResult?: ValidationResult;
|
|
3172
|
-
/**
|
|
3173
|
-
* Visual variant of the radio buttons
|
|
3174
|
-
* @default "brand"
|
|
3175
|
-
*/
|
|
3176
|
-
variant?: "default" | "brand";
|
|
3177
|
-
}
|
|
3178
|
-
declare function RadioGroup(props: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
3179
|
-
declare function Radio(props: RadioProps): react_jsx_runtime.JSX.Element;
|
|
3180
|
-
|
|
3181
3250
|
interface RadioCardProps {
|
|
3182
3251
|
/**
|
|
3183
3252
|
* The value of the radio card
|
|
@@ -3257,6 +3326,26 @@ interface RadioCardGroupProps {
|
|
|
3257
3326
|
declare function RadioCard({ value, isDisabled, className, children, size, variant, }: RadioCardProps): react_jsx_runtime.JSX.Element;
|
|
3258
3327
|
declare function RadioCardGroup({ value, defaultValue, onChange, isDisabled, isReadOnly, isRequired, className, children, size, variant, columns, gap, }: RadioCardGroupProps): react_jsx_runtime.JSX.Element;
|
|
3259
3328
|
|
|
3329
|
+
interface RadioGroupProps extends Omit<RadioGroupProps$1, "children"> {
|
|
3330
|
+
/** Label for the radio group */
|
|
3331
|
+
label?: string;
|
|
3332
|
+
/** Children elements */
|
|
3333
|
+
children?: ReactNode;
|
|
3334
|
+
/** Optional description for the radio group */
|
|
3335
|
+
description?: string;
|
|
3336
|
+
/** Error message to display when validation fails */
|
|
3337
|
+
errorMessage?: string | ((validation: ValidationResult) => string);
|
|
3338
|
+
/** Validation result object for functional errorMessage */
|
|
3339
|
+
validationResult?: ValidationResult;
|
|
3340
|
+
/**
|
|
3341
|
+
* Visual variant of the radio buttons
|
|
3342
|
+
* @default "brand"
|
|
3343
|
+
*/
|
|
3344
|
+
variant?: "default" | "brand";
|
|
3345
|
+
}
|
|
3346
|
+
declare function RadioGroup(props: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
3347
|
+
declare function Radio(props: RadioProps): react_jsx_runtime.JSX.Element;
|
|
3348
|
+
|
|
3260
3349
|
/**
|
|
3261
3350
|
* RangeCalendar
|
|
3262
3351
|
*
|
|
@@ -3290,6 +3379,8 @@ declare function RangeCalendar<T extends DateValue>({ errorMessage, ...props }:
|
|
|
3290
3379
|
type SectionVariant = "plain" | "contained" | "bordered";
|
|
3291
3380
|
type SectionSpacing = "none" | "sm" | "md" | "lg";
|
|
3292
3381
|
interface SectionProps {
|
|
3382
|
+
/** Section ID for linking/navigation (e.g., for use with SectionNav) */
|
|
3383
|
+
id?: string;
|
|
3293
3384
|
/** Section title */
|
|
3294
3385
|
title?: React__default.ReactNode;
|
|
3295
3386
|
/** Optional description/subtitle */
|
|
@@ -3309,7 +3400,7 @@ interface SectionProps {
|
|
|
3309
3400
|
/** Section content */
|
|
3310
3401
|
children?: React__default.ReactNode;
|
|
3311
3402
|
}
|
|
3312
|
-
declare function Section({ title, description, actions, variant, spacing, withDivider, headingAs, className, children, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
3403
|
+
declare function Section({ id, title, description, actions, variant, spacing, withDivider, headingAs, className, children, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
3313
3404
|
|
|
3314
3405
|
/**
|
|
3315
3406
|
* Interface defining the shape of items in the Select component
|
|
@@ -3803,4 +3894,4 @@ interface ColorModeProviderProps {
|
|
|
3803
3894
|
}
|
|
3804
3895
|
declare const ColorModeProvider: React.FC<ColorModeProviderProps>;
|
|
3805
3896
|
|
|
3806
|
-
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, 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
|
|
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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -2990,13 +2990,76 @@ 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
|
+
|
|
2993
3051
|
/**
|
|
2994
3052
|
* PageLayout — opinionated, SSR-friendly page scaffold for dashboards.
|
|
2995
3053
|
*
|
|
2996
3054
|
* Structure:
|
|
2997
3055
|
* <PageLayout>
|
|
2998
|
-
* <PageLayout.Header
|
|
2999
|
-
*
|
|
3056
|
+
* <PageLayout.Header
|
|
3057
|
+
* title="..."
|
|
3058
|
+
* subtitle="..."
|
|
3059
|
+
* breadcrumbs={[...]}
|
|
3060
|
+
* media={<div>images/maps</div>}
|
|
3061
|
+
* actions={[<Button/>, <Button/>]}
|
|
3062
|
+
* />
|
|
3000
3063
|
* <PageLayout.Tabs tabs={[...]} value=... onChange=... />
|
|
3001
3064
|
* <PageLayout.Content>
|
|
3002
3065
|
* <Grid cols={{ base: 1, lg: 4 }} gap="lg">
|
|
@@ -3010,6 +3073,8 @@ declare function NumberField({ label, description, errorMessage, size, tooltip,
|
|
|
3010
3073
|
* - Router-agnostic: Breadcrumbs accept either structured items with a Link component, or a custom ReactNode.
|
|
3011
3074
|
* - Accessible: Header uses h1; Tabs are roving-`tablist`.
|
|
3012
3075
|
* - Composable: Use with Grid, Section, Card, DataControls and other components for flexible layouts.
|
|
3076
|
+
* - Media support: Header can include hero images, maps, or other visual content.
|
|
3077
|
+
* - Actions: Right-aligned on desktop, below subtitle on mobile.
|
|
3013
3078
|
* - Styling: token-oriented utility classes (match to your Tailwind preset/tokens).
|
|
3014
3079
|
*/
|
|
3015
3080
|
type PageBreadcrumbItem = BreadcrumbItemProps & {
|
|
@@ -3026,10 +3091,10 @@ type PageLayoutProps = {
|
|
|
3026
3091
|
declare function PageLayout({ children, maxWidth, paddingXClass, paddingYClass, className, }: PageLayoutProps): react_jsx_runtime.JSX.Element;
|
|
3027
3092
|
declare namespace PageLayout {
|
|
3028
3093
|
var Header: typeof Header;
|
|
3029
|
-
var Actions: typeof Actions;
|
|
3030
3094
|
var Tabs: typeof Tabs$1;
|
|
3031
3095
|
var Content: typeof Content;
|
|
3032
3096
|
var Aside: typeof Aside$1;
|
|
3097
|
+
var SectionNav: typeof SectionNavWithLayout;
|
|
3033
3098
|
}
|
|
3034
3099
|
type PageHeaderProps = {
|
|
3035
3100
|
title: React__default.ReactNode;
|
|
@@ -3039,19 +3104,15 @@ type PageHeaderProps = {
|
|
|
3039
3104
|
breadcrumbsNode?: React__default.ReactNode;
|
|
3040
3105
|
/** Optional right-aligned meta area (badges, status, small stats) */
|
|
3041
3106
|
meta?: React__default.ReactNode;
|
|
3107
|
+
/** Optional media content (images, maps, etc.) rendered after title/subtitle */
|
|
3108
|
+
media?: React__default.ReactNode;
|
|
3109
|
+
/** Optional actions (buttons, filters) - right-aligned on desktop, below subtitle on mobile. Array ensures consistent gap spacing. */
|
|
3110
|
+
actions?: React__default.ReactNode[];
|
|
3042
3111
|
/** Optional slot to replace the default heading element */
|
|
3043
3112
|
headingAs?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
3044
3113
|
className?: string;
|
|
3045
3114
|
};
|
|
3046
|
-
declare function Header({ title, subtitle, breadcrumbs, breadcrumbsNode, meta, headingAs, className, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
3047
|
-
type PageActionsProps = {
|
|
3048
|
-
primary?: React__default.ReactNode;
|
|
3049
|
-
secondary?: React__default.ReactNode;
|
|
3050
|
-
children?: React__default.ReactNode;
|
|
3051
|
-
align?: "start" | "end";
|
|
3052
|
-
className?: string;
|
|
3053
|
-
};
|
|
3054
|
-
declare function Actions({ primary, secondary, children, align, className, }: PageActionsProps): react_jsx_runtime.JSX.Element;
|
|
3115
|
+
declare function Header({ title, subtitle, breadcrumbs, breadcrumbsNode, meta, media, actions, headingAs, className, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
3055
3116
|
type PageLayoutTab = {
|
|
3056
3117
|
id: string;
|
|
3057
3118
|
label: React__default.ReactNode;
|
|
@@ -3078,6 +3139,34 @@ type PageAsideProps = {
|
|
|
3078
3139
|
className?: string;
|
|
3079
3140
|
};
|
|
3080
3141
|
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;
|
|
3081
3170
|
|
|
3082
3171
|
interface Place {
|
|
3083
3172
|
id: string;
|
|
@@ -3158,26 +3247,6 @@ interface ProgressBarProps extends ProgressBarProps$1 {
|
|
|
3158
3247
|
}
|
|
3159
3248
|
declare function ProgressBar({ label, rightLabel, progressWidth, hideLabels, ...props }: ProgressBarProps): react_jsx_runtime.JSX.Element;
|
|
3160
3249
|
|
|
3161
|
-
interface RadioGroupProps extends Omit<RadioGroupProps$1, "children"> {
|
|
3162
|
-
/** Label for the radio group */
|
|
3163
|
-
label?: string;
|
|
3164
|
-
/** Children elements */
|
|
3165
|
-
children?: ReactNode;
|
|
3166
|
-
/** Optional description for the radio group */
|
|
3167
|
-
description?: string;
|
|
3168
|
-
/** Error message to display when validation fails */
|
|
3169
|
-
errorMessage?: string | ((validation: ValidationResult) => string);
|
|
3170
|
-
/** Validation result object for functional errorMessage */
|
|
3171
|
-
validationResult?: ValidationResult;
|
|
3172
|
-
/**
|
|
3173
|
-
* Visual variant of the radio buttons
|
|
3174
|
-
* @default "brand"
|
|
3175
|
-
*/
|
|
3176
|
-
variant?: "default" | "brand";
|
|
3177
|
-
}
|
|
3178
|
-
declare function RadioGroup(props: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
3179
|
-
declare function Radio(props: RadioProps): react_jsx_runtime.JSX.Element;
|
|
3180
|
-
|
|
3181
3250
|
interface RadioCardProps {
|
|
3182
3251
|
/**
|
|
3183
3252
|
* The value of the radio card
|
|
@@ -3257,6 +3326,26 @@ interface RadioCardGroupProps {
|
|
|
3257
3326
|
declare function RadioCard({ value, isDisabled, className, children, size, variant, }: RadioCardProps): react_jsx_runtime.JSX.Element;
|
|
3258
3327
|
declare function RadioCardGroup({ value, defaultValue, onChange, isDisabled, isReadOnly, isRequired, className, children, size, variant, columns, gap, }: RadioCardGroupProps): react_jsx_runtime.JSX.Element;
|
|
3259
3328
|
|
|
3329
|
+
interface RadioGroupProps extends Omit<RadioGroupProps$1, "children"> {
|
|
3330
|
+
/** Label for the radio group */
|
|
3331
|
+
label?: string;
|
|
3332
|
+
/** Children elements */
|
|
3333
|
+
children?: ReactNode;
|
|
3334
|
+
/** Optional description for the radio group */
|
|
3335
|
+
description?: string;
|
|
3336
|
+
/** Error message to display when validation fails */
|
|
3337
|
+
errorMessage?: string | ((validation: ValidationResult) => string);
|
|
3338
|
+
/** Validation result object for functional errorMessage */
|
|
3339
|
+
validationResult?: ValidationResult;
|
|
3340
|
+
/**
|
|
3341
|
+
* Visual variant of the radio buttons
|
|
3342
|
+
* @default "brand"
|
|
3343
|
+
*/
|
|
3344
|
+
variant?: "default" | "brand";
|
|
3345
|
+
}
|
|
3346
|
+
declare function RadioGroup(props: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
3347
|
+
declare function Radio(props: RadioProps): react_jsx_runtime.JSX.Element;
|
|
3348
|
+
|
|
3260
3349
|
/**
|
|
3261
3350
|
* RangeCalendar
|
|
3262
3351
|
*
|
|
@@ -3290,6 +3379,8 @@ declare function RangeCalendar<T extends DateValue>({ errorMessage, ...props }:
|
|
|
3290
3379
|
type SectionVariant = "plain" | "contained" | "bordered";
|
|
3291
3380
|
type SectionSpacing = "none" | "sm" | "md" | "lg";
|
|
3292
3381
|
interface SectionProps {
|
|
3382
|
+
/** Section ID for linking/navigation (e.g., for use with SectionNav) */
|
|
3383
|
+
id?: string;
|
|
3293
3384
|
/** Section title */
|
|
3294
3385
|
title?: React__default.ReactNode;
|
|
3295
3386
|
/** Optional description/subtitle */
|
|
@@ -3309,7 +3400,7 @@ interface SectionProps {
|
|
|
3309
3400
|
/** Section content */
|
|
3310
3401
|
children?: React__default.ReactNode;
|
|
3311
3402
|
}
|
|
3312
|
-
declare function Section({ title, description, actions, variant, spacing, withDivider, headingAs, className, children, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
3403
|
+
declare function Section({ id, title, description, actions, variant, spacing, withDivider, headingAs, className, children, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
3313
3404
|
|
|
3314
3405
|
/**
|
|
3315
3406
|
* Interface defining the shape of items in the Select component
|
|
@@ -3803,4 +3894,4 @@ interface ColorModeProviderProps {
|
|
|
3803
3894
|
}
|
|
3804
3895
|
declare const ColorModeProvider: React.FC<ColorModeProviderProps>;
|
|
3805
3896
|
|
|
3806
|
-
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, 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
|
|
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, 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 };
|