@texturehq/edges 3.2.0 → 5.0.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/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { BreadcrumbProps, BreadcrumbsProps, DateValue, CalendarProps as CalendarProps$1, ValidationResult, DisclosureGroupProps, DisclosurePanelProps, ButtonProps, DisclosureProps, DateRangePickerProps as DateRangePickerProps$1, FormProps, TooltipTriggerComponentProps, TooltipProps as TooltipProps$1, ListBoxProps as ListBoxProps$1, ListBoxItemProps, ModalOverlayProps, Key, PopoverProps as PopoverProps$1, ProgressBarProps as ProgressBarProps$1, RangeCalendarProps as RangeCalendarProps$1, TabProps as TabProps$1, TabListProps as TabListProps$1, TabPanelProps, TabsProps as TabsProps$2 } from 'react-aria-components';
2
- export { BreadcrumbProps, BreadcrumbsProps, DialogTrigger } from 'react-aria-components';
2
+ export { BreadcrumbProps, BreadcrumbsProps, DialogTrigger, Focusable } from 'react-aria-components';
3
3
  import { B as BadgeProps, ak as FieldValue, al as BooleanFormat, am as FormattedValue, an as FieldFormat, ao as CurrentFormat, ap as DateFormat, aq as DistanceFormat, ar as EnergyUnit, as as EnergyFormat, at as CurrencyFormat, au as NumberFormat, av as PhoneFormat, aw as PowerFormat, ax as FormatterFunction, ay as ResistanceFormat, az as TemperatureFormat, aA as TemperatureUnitString, aB as TemperatureUnit, aC as TextFormat, aD as VoltageFormat, e as BaseDataPoint, R as YFormatType, N as TooltipData, D as DeviceState, q as GridState, aE as ComponentFormatter, aF as LayerSpec, aG as CustomPinsSpec, aH as GeoJsonLayerSpec, aI as RasterLayerSpec, aJ as VectorLayerSpec, aK as ClusteredVectorLayerSpec, aL as ColorSpec } from './colors-CYFLoBNY.cjs';
4
4
  export { A as ABSENT_GRID_FIELDS, a as ActionItem, aM as ActionMenu, b as ActionMenuProps, aN as AppShell, c as AppShellProps, aO as Avatar, d as AvatarProps, aP as Badge, aQ as BaseFormat, aR as ChartContext, C as ChartMargin, aS as CodeEditor, f as CodeEditorProps, g as CodeLanguage, h as CodeTheme, aT as ComponentFormatOptions, aU as CurrentUnit, aV as CustomFormat, aW as DEFAULT_MAP_TYPE, aX as DateFormatStyle, aY as DistanceUnit, aZ as ENTITY_CATEGORY_CONFIG, E as ENTITY_CONFIG, i as EntityArchetype, a_ as EntityCategory, a$ as EntityCategoryConfig, j as EntityConfig, k as EntityStateRule, l as EntityType, G as GRID_ELEMENT_TYPE_BY_ENTITY, b0 as GRID_STATE_COLORS, m as GRID_STAT_LIST, n as GridElementSourceType, o as GridStatField, p as GridStatFieldFormat, b1 as GridStateColor, H as HEADLINE_METRIC_BOUNDS, r as Heading, s as HeadlineMetric, b2 as InteractiveMap, b3 as InteractiveMapHandle, I as InteractiveMapProps, b4 as LayerCheckState, b5 as LayerFeature, b6 as LayerSelection, b7 as LayerStyle, b8 as LayerTreeNode, b9 as LayerVisibilityPatch, L as Loader, t as Logo, ba as MAP_TYPES, M as MapPoint, bb as MapType, bc as Meter, u as MeterProps, v as MetricFormat, w as MetricSource, bd as PercentageFormat, be as PowerUnit, bf as RenderType, bg as ResistanceUnit, S as SegmentOption, bh as SegmentedControl, x as SegmentedControlProps, y as SerializableFieldFormat, z as SideNav, F as SideNavItem, J as SideNavProps, bi as StackNav, bj as StackNavGroup, bk as StackNavItem, bl as StackNavLinkComponentProps, bm as StackNavProps, bn as StackNavRenderRow, bo as StackNavRowRenderProps, bp as StackNavTheme, bq as StaticMap, K as StaticMapProps, T as TextLink, br as TextTransform, bs as TextTruncatePosition, O as TooltipSeries, P as TopNav, Q as TopNavProps, bt as UNVERIFIED_VOLTAGE_UNIT_ROWS, bu as VoltageUnit, Y as YFormatSettings, bv as ZoomStops, U as activeDeviceStates, V as archetypeFor, bw as baselineFromPoint, W as clearColorCache, X as createCategoryColorMap, Z as createXScale, _ as createYScale, $ as defaultMargin, a0 as deviceStateLabels, a1 as deviceStateMetricFormats, a2 as entityHasDetailPage, a3 as entityHasStatList, a4 as entityShowsNow, bx as formatComponentValue, a5 as getContrastingTextColor, a6 as getDefaultChartColor, a7 as getDefaultColors, a8 as getDeviceStateDisplayLabel, a8 as getDeviceStateLabel, by as getEntityCategory, a9 as getEntityConfig, aa as getEntityIcon, ab as getEntityLabel, ac as getEntityStatList, ad as getGridStateLabel, ae as getResolvedColor, af as getThemeCategoricalColors, ag as getYFormatSettings, ah as gridStateLabels, ai as isActiveDeviceState, ai as isActiveState, aj as isLightColor, bz as mapValuesToCategoricalColors, bA as useChartContext, bB as useComponentFormatter } from './colors-CYFLoBNY.cjs';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -2416,9 +2416,9 @@ interface BarSeriesProps {
2416
2416
  declare const BarSeries: React__default.FC<BarSeriesProps>;
2417
2417
 
2418
2418
  interface CategoryDataPoint {
2419
- /** Category label (x-axis) */
2419
+ /** Category label */
2420
2420
  label: string;
2421
- /** Numeric value (y-axis) */
2421
+ /** Numeric value */
2422
2422
  value: number;
2423
2423
  /** Optional color override for this bar */
2424
2424
  color?: string;
@@ -2462,8 +2462,14 @@ interface CategoryBarChartProps {
2462
2462
  /** Inline styles */
2463
2463
  style?: React__default.CSSProperties;
2464
2464
  /** Accessible label */
2465
- "aria-label"?: string;
2466
- /** Orientation: vertical (default) or horizontal */
2465
+ /**
2466
+ * The chart's accessible name. Required, not optional-with-a-default: a default
2467
+ * means every categorical chart announces identically, which is the bug ALL-2539
2468
+ * fixed in the two time-series engines. Required makes the type checker the
2469
+ * alarm, so a chart cannot be added without one (ALL-2715).
2470
+ */
2471
+ "aria-label": string;
2472
+ /** Orientation: horizontal (default) or vertical */
2467
2473
  orientation?: "vertical" | "horizontal";
2468
2474
  /** Show tooltip on hover (default true) */
2469
2475
  showTooltip?: boolean;
@@ -2705,6 +2711,8 @@ interface ChartContainerProps {
2705
2711
  hideBottomBar?: boolean;
2706
2712
  /** Trailing actions rendered in the `ChartHeader`, opposite the title. */
2707
2713
  headerActions?: React__default.ReactNode;
2714
+ /** Control cluster rendered in the `ChartHeader` — `TimeControls` today. */
2715
+ headerControls?: React__default.ReactNode;
2708
2716
  }
2709
2717
  /**
2710
2718
  * ChartContainer
@@ -2839,9 +2847,16 @@ interface ChartEventSpansProps {
2839
2847
  declare function ChartEventSpans({ spans, opacity, color }: ChartEventSpansProps): react_jsx_runtime.JSX.Element | null;
2840
2848
 
2841
2849
  /**
2842
- * Total vertical space the header claims when it renders, in px. Both engines
2843
- * subtract this from the measured parent height before sizing the plot, the
2844
- * same way they already account for `ChartBottomBar`.
2850
+ * The height the header is assumed to claim before it has been measured, in px.
2851
+ *
2852
+ * This was once the whole story — a constant both engines subtracted from the
2853
+ * measured parent height. `TimeControls` ended that: it is `w-full flex-wrap`,
2854
+ * so a header hosting it is two rows at narrow widths and one row at wide ones.
2855
+ * No constant describes that, and a constant that disagrees with the render is
2856
+ * exactly the drift this component exists to remove.
2857
+ *
2858
+ * It survives as the first-paint estimate. Without it the header reserves zero
2859
+ * until the observer fires and every chart on the page visibly reflows.
2845
2860
  */
2846
2861
  declare const CHART_HEADER_HEIGHT = 48;
2847
2862
  /**
@@ -2859,11 +2874,22 @@ declare function ChartOwnsItsTitle({ children }: {
2859
2874
  children: ReactNode;
2860
2875
  }): react_jsx_runtime.JSX.Element;
2861
2876
  /**
2862
- * Height the header will actually claim here. The engines use this for their
2863
- * plot math so the reserve and the render never disagree — both read the same
2864
- * context, so there is no third place for them to drift apart.
2877
+ * The height the header claims here, and the ref that establishes it.
2878
+ *
2879
+ * Both engines subtract `headerHeight` from the measured parent height before
2880
+ * sizing the plot, and pass `headerRef` to the `ChartHeader` they render. The
2881
+ * reserve is therefore the render, measured — not a second statement of it that
2882
+ * someone has to keep in agreement.
2883
+ *
2884
+ * Returns 0 when the header will render nothing, so a chart that is already
2885
+ * labelled and has no slots filled loses no plot height to empty chrome.
2865
2886
  */
2866
- declare function useChartHeaderHeight(hasActions: boolean): number;
2887
+ declare function useChartHeaderMetrics(hasActions: boolean, hasControls: boolean): {
2888
+ headerRef: (node: HTMLDivElement | null) => void;
2889
+ headerHeight: number;
2890
+ };
2891
+ /** Returns `true` when the chart should render its own visible title. */
2892
+ declare function useChartOwnsItsTitle(): boolean;
2867
2893
  interface ChartHeaderProps {
2868
2894
  /**
2869
2895
  * The chart's title. Both engines pass the same string they render as the SVG
@@ -2871,8 +2897,26 @@ interface ChartHeaderProps {
2871
2897
  * apart (ALL-2539). Shown only when nothing above already labels the chart.
2872
2898
  */
2873
2899
  title: string;
2900
+ /**
2901
+ * Control cluster — `TimeControls` today.
2902
+ *
2903
+ * Separate from `actions` because it is not a trailing icon: it is full-width
2904
+ * and it wraps, which is the whole reason this header measures itself rather
2905
+ * than reserving a constant.
2906
+ *
2907
+ * Belongs here when it governs exactly this chart. Controls that govern a
2908
+ * composed panel stay at panel level: `SiteEnergyCharts` pairs them with a KPI
2909
+ * strip and expands the whole body as one unit, `Dnp3TelemetryChartsSection`
2910
+ * drives a grid of charts from one cluster, and `TiledTimeSeriesExplorer`
2911
+ * swaps its chart for an `EmptyState` — moving those controls inside the chart
2912
+ * would reorder them, or make them vanish exactly when the window needs
2913
+ * changing.
2914
+ */
2915
+ controls?: ReactNode;
2874
2916
  /** Trailing action slot — expand first, more later. */
2875
2917
  actions?: ReactNode;
2918
+ /** Measurement ref from `useChartHeaderMetrics`. */
2919
+ containerRef?: (node: HTMLDivElement | null) => void;
2876
2920
  marginLeft?: number;
2877
2921
  marginRight?: number;
2878
2922
  }
@@ -2890,7 +2934,7 @@ interface ChartHeaderProps {
2890
2934
  * Deliberately has no `hideHeader` prop. `hideBottomBar` is how a shared feature
2891
2935
  * becomes optional and then absent.
2892
2936
  */
2893
- declare function ChartHeader({ title, actions, marginLeft, marginRight }: ChartHeaderProps): react_jsx_runtime.JSX.Element | null;
2937
+ declare function ChartHeader({ title, controls, actions, containerRef, marginLeft, marginRight, }: ChartHeaderProps): react_jsx_runtime.JSX.Element | null;
2894
2938
 
2895
2939
  interface ExpandedSize {
2896
2940
  width: number;
@@ -3039,6 +3083,8 @@ interface TiledTimeSeriesChartProps {
3039
3083
  title: string;
3040
3084
  /** Trailing actions rendered in the `ChartHeader`, opposite the title. */
3041
3085
  headerActions?: React__default.ReactNode;
3086
+ /** Control cluster rendered in the `ChartHeader` — `TimeControls` today. */
3087
+ headerControls?: React__default.ReactNode;
3042
3088
  /** The camera. Drives the x-scale directly, decoupled from the data extent. */
3043
3089
  viewport: TiledTimeSeriesChartViewport;
3044
3090
  /** Optional clamp for pan gestures. New viewports stay within these bounds. */
@@ -7914,6 +7960,19 @@ declare function getStateTone(state: DeviceState): StatTone;
7914
7960
  * import { TextField } from "@texturehq/edges/TextField"
7915
7961
  * ```
7916
7962
  */
7963
+ /**
7964
+ * Re-exported so consumers can hand `Tooltip`/`HoverCard` a trigger that is a
7965
+ * custom component rather than a DOM element. `TooltipTrigger` passes its
7966
+ * hover/focus/aria props to whatever it renders first; a component with a
7967
+ * closed prop list drops them and the overlay then renders unanchored with no
7968
+ * `aria-describedby`. Wrapping the trigger in `Focusable` re-establishes the
7969
+ * link through context and the child's ref.
7970
+ *
7971
+ * This must be imported from here rather than from `react-aria-components`
7972
+ * directly: this package bundles its own copy of react-aria, so a `Focusable`
7973
+ * resolved elsewhere is a different module instance whose context never meets
7974
+ * this package's `TooltipTrigger`.
7975
+ */
7917
7976
 
7918
7977
  /**
7919
7978
  * Type for custom link components (e.g., Next.js Link).
@@ -7922,4 +7981,4 @@ declare function getStateTone(state: DeviceState): StatTone;
7922
7981
  */
7923
7982
  type LinkComponentType = React.ComponentType<any>;
7924
7983
 
7925
- export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, type AgentCellConfigOf, type AgentCellValueOf, type AgentSerializable, Alert, type AlertProps, type ApplyDataOperationsOptions, type ApplyDataOperationsResult, AreaSeries, type AssembleSeriesArgs, type AssembledSeries, AutoMobileRenderer, BREAKPOINTS, BadgeCell, type BadgeCellProps, BadgeProps, Banner, type BannerAction, type BannerAppearance, type BannerProps, type BannerVariant, BarSeries, BaseDataPoint, BaseInputProps, BooleanCell, type BooleanCellProps, BooleanFormat, BrandProvider, type BrandProviderProps, type BrandVariables, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, CATEGORICAL_RAMP, CHART_HEADER_HEIGHT, COLOR_RAMPS, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, CarouselAutoplayTrigger, CarouselControl, type CarouselControlProps, CarouselIndicator, CarouselIndicatorGroup, type CarouselIndicatorProps, CarouselItem, CarouselItemGroup, type CarouselItemGroupProps, type CarouselItemProps, CarouselNextTrigger, CarouselPrevTrigger, CarouselProgressText, CarouselRoot, type CarouselRootProps, type CarouselTriggerProps, CategoryBarChart, type CategoryDataPoint as CategoryBarChartDataPoint, type CategoryBarChartProps, type CategoryDataPoint, type CellAlignment, type CellComponent, type CellComponentProps, type CellConfigOf, type CellContext, type CellEmphasis, type CellValueOf, ChartAxis, ChartBottomBar, ChartContainer, ChartEventMarkers, type ChartEventMarkersProps, ChartEventSpans, type ChartEventSpansProps, type ChartExpand, ChartExpandOwnedByAncestor, type ChartExportMetadata, ChartHeader, type ChartHeaderProps, ChartLabelledBy, ChartOwnsItsTitle, ChartTooltip, Chip, ChipInputField, type ChipInputFieldProps, type ClassicPresetId, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type ColorRampInput, type ColorRampKind, type ColorRampOption, ColorSpec, type Column, CommandPalette, type CommandPaletteProps, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ContactCard, type ContactCardProps, ContactMetaCell, type ContactMetaCellProps, ContactMetaDisplay, type ContactMetaDisplayProps, ContainerQueryProvider, CopyToClipboard, type Coverage, CurrencyFormat, CurrentFormat, CustomCell, type CustomCellProps, CustomPinsSpec, DIVERGING_RAMPS, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, DeltaCell, type DeltaCellProps, type DeltaDirection, type DeltaFormat, type DeltaTone, DeviceHealthBadge, type DeviceHealthBadgeProps, DeviceMetaCell, type DeviceMetaCellProps, DeviceMetaDisplay, type DeviceMetaDisplayProps, DeviceState, DeviceStateBadge, type DeviceStateBadgeProps, DeviceStateCell, type DeviceStateCellProps, DeviceStateWithMetric, type DeviceStateWithMetricProps, type DeviceType, DeviceTypeIcon, type DeviceTypeIconProps, DialogAction, DialogFooterConfig, DialogHeader, DialogHeaderConfig, type DialogHeaderProps, DistanceFormat, type ElementSize, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, EnergyUnit, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type EventMarker, type EventMarkerType, type EventSpan, type ExportType, type FacetConfig, type FacetCounts, type FacetType, type FetchTile, FieldFormat, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedCell, type FormattedCellProps, FormattedValue, FormatterFunction, FunnelSeries, type FunnelSeriesProps, type FunnelStage as FunnelSeriesStage, GeoJsonLayerSpec, GlobalSearch, type GlobalSearchProps, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, GridState, GridStateBadge, type GridStateBadgeProps, type HealthStatus, HierarchyExplorer, type HierarchyExplorerProps, type HierarchyNode, HorizontalBarCell, type HorizontalBarCellProps, HoverCard, type HoverCardContentProps, type HoverCardRootProps, Icon$1 as Icon, IconName$2 as IconName, InfiniteScrollIndicator, type InfiniteScrollIndicatorProps, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, LayerSpec, LineSeries, type LinkBehavior, type LinkComponentType, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type LoadingState, MiniBarCell, type MiniBarCellProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, type NodeState, type NonSerializableCellProp, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberFormat, type PageAsideProps, PageBanner, type PageBannerProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageScrollableContentProps, PercentBarCell, type PercentBarCellProps, PhoneFormat, type Place, PlaceSearch, type PlaceSearchProps, Popover, PowerFormat, type PresetRange, ProgressBar, Prose, type ProseProps, type ProseSize, type ProseTone, RangeCalendar, RasterLayerSpec, type RegisterPhosphorIconOptions, ResistanceFormat, type ResolutionLadder, type ResponsiveValue, ResultsCount, type ResultsCountProps, SEQUENTIAL_RAMPS, SKELETON_SIZES, SOURCE_UNIT_TO_WH, type SearchConfig, SearchControl, type SearchControlProps, SearchEmptyState, type SearchEmptyStateProps, SearchLoadingState, type SearchLoadingStateProps, SearchResultGroup, type SearchResultGroupProps, SearchResultItem, type SearchResultItemProps, SearchResultsList, type SearchResultsListProps, SearchTrigger, type SearchTriggerProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, SelectCell, type SelectCellProps, type Serializable, SiteCard, type SiteCardProps, SiteContactCard, type SiteContactCardProps, SiteMetaCell, type SiteMetaCellProps, SiteMetaDisplay, type SiteMetaDisplayProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, SparklineCell, type SparklineCellProps, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, type StatAlign, type StatFormatter, type StatItem, type StatLayout, StatList, type StatListProps, type StatThreshold, type StatTone$1 as StatTone, type StatValue, Tab, TabList, TabPanel, type TableDensity, type TableExportMetadata, type TableExportOptions, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextAreaWithChips, TextCell, type TextCellProps, TextFormat, type Tier, type TileAction, type TileData, type TileEntry, type TileRef, type TileStatus, type TileStore, type TiledCameraPreviewDomain, type TiledCameraSyncGroup, TiledTimeSeriesChart, type TiledTimeSeriesChartProps, type TiledTimeSeriesChartViewport, TiledTimeSeriesExplorer, type TiledTimeSeriesExplorerProps, type TiledTimeSeriesSource, TimeControls, type TimeControlsProps, type TimeRange, Timeline, TimelineItem, type TimelineItemProps, type TimelineItemVariant, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type TypographyRole, type UseBreakpointReturn, type UseClientDataControlsOptions, type UseClientDataControlsResult, type UseDataControlsClientOptions, type UseDataControlsOptions, type UseDataControlsResult, type UseDataControlsServerOptions, type UseElementSizeResult, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseServerDataControlsOptions, type UseTableExportOptions, type UseTableExportReturn, type UseTileWindowArgs, type UseTileWindowResult, type UseTiledTimeSeriesArgs, type UseTiledTimeSeriesResult, VectorLayerSpec, type Viewport, VoltageFormat, type WindowSize, type WindowSizeOption, YFormatType, addFilterCondition, applyDataOperations, assembleSeries, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, classicPresetRanges, createEmptyFilter, createFilter, createFilters, createFormat, createTextureIcon, createTiledCameraSyncGroup, csvUnitFor, csvValueFor, deltaDirectionFromValue, emptyStore, enumToSentenceCase, exportChart, exportTableAsCSV, fahrenheitToCelsius, fahrenheitToKelvin, feetToMeters, feetToMiles, filterToChips, formatBoolean, formatCapacity, formatCurrency, formatCurrent, formatDate, formatDistance, formatEmptyValue, formatEnergy, formatFieldValue, formatInternationalPhone, formatNumber, formatPercent, formatPhone, formatPhoneNumber, formatPower, formatPowerRating, formatResistance, formatTemperature, formatText, formatUSPhone, formatVoltage, getBadgeClasses, getBooleanBadgeVariant, getCellAlignmentClasses, getCellContainerClasses, getCellTextClasses, getColorRamp, getColorRampsByKind, getDateParts, getEventColor, getExportFormatName, getExportHeaders, getFilterFields, getLinkClasses, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, pickEnergyUnit, prepareTableDataForExport, registerPhosphorIcon, removeFilterCondition, resolveValue, snakeCaseToWords, telemetryPresetRanges, temperatureStringToSymbol, tierForViewport, tileIndexAt, tileKey, tileReducer, tilesForViewport, 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, typeRole, typographyRole, ucFirst, useBreakpoint, useChartExpand, useChartHeaderHeight, useClientDataControls, useColorMode, useContainerBreakpoint, useDataControls, useDebounce, useElementSize, useInfiniteScroll, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, useTableExport, useTileWindow, useTiledTimeSeries, wrapWithLink, yardsToMeters };
7984
+ export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, type AgentCellConfigOf, type AgentCellValueOf, type AgentSerializable, Alert, type AlertProps, type ApplyDataOperationsOptions, type ApplyDataOperationsResult, AreaSeries, type AssembleSeriesArgs, type AssembledSeries, AutoMobileRenderer, BREAKPOINTS, BadgeCell, type BadgeCellProps, BadgeProps, Banner, type BannerAction, type BannerAppearance, type BannerProps, type BannerVariant, BarSeries, BaseDataPoint, BaseInputProps, BooleanCell, type BooleanCellProps, BooleanFormat, BrandProvider, type BrandProviderProps, type BrandVariables, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, CATEGORICAL_RAMP, CHART_HEADER_HEIGHT, COLOR_RAMPS, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, CarouselAutoplayTrigger, CarouselControl, type CarouselControlProps, CarouselIndicator, CarouselIndicatorGroup, type CarouselIndicatorProps, CarouselItem, CarouselItemGroup, type CarouselItemGroupProps, type CarouselItemProps, CarouselNextTrigger, CarouselPrevTrigger, CarouselProgressText, CarouselRoot, type CarouselRootProps, type CarouselTriggerProps, CategoryBarChart, type CategoryDataPoint as CategoryBarChartDataPoint, type CategoryBarChartProps, type CategoryDataPoint, type CellAlignment, type CellComponent, type CellComponentProps, type CellConfigOf, type CellContext, type CellEmphasis, type CellValueOf, ChartAxis, ChartBottomBar, ChartContainer, ChartEventMarkers, type ChartEventMarkersProps, ChartEventSpans, type ChartEventSpansProps, type ChartExpand, ChartExpandOwnedByAncestor, type ChartExportMetadata, ChartHeader, type ChartHeaderProps, ChartLabelledBy, ChartOwnsItsTitle, ChartTooltip, Chip, ChipInputField, type ChipInputFieldProps, type ClassicPresetId, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type ColorRampInput, type ColorRampKind, type ColorRampOption, ColorSpec, type Column, CommandPalette, type CommandPaletteProps, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ContactCard, type ContactCardProps, ContactMetaCell, type ContactMetaCellProps, ContactMetaDisplay, type ContactMetaDisplayProps, ContainerQueryProvider, CopyToClipboard, type Coverage, CurrencyFormat, CurrentFormat, CustomCell, type CustomCellProps, CustomPinsSpec, DIVERGING_RAMPS, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, DeltaCell, type DeltaCellProps, type DeltaDirection, type DeltaFormat, type DeltaTone, DeviceHealthBadge, type DeviceHealthBadgeProps, DeviceMetaCell, type DeviceMetaCellProps, DeviceMetaDisplay, type DeviceMetaDisplayProps, DeviceState, DeviceStateBadge, type DeviceStateBadgeProps, DeviceStateCell, type DeviceStateCellProps, DeviceStateWithMetric, type DeviceStateWithMetricProps, type DeviceType, DeviceTypeIcon, type DeviceTypeIconProps, DialogAction, DialogFooterConfig, DialogHeader, DialogHeaderConfig, type DialogHeaderProps, DistanceFormat, type ElementSize, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, EnergyUnit, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type EventMarker, type EventMarkerType, type EventSpan, type ExportType, type FacetConfig, type FacetCounts, type FacetType, type FetchTile, FieldFormat, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedCell, type FormattedCellProps, FormattedValue, FormatterFunction, FunnelSeries, type FunnelSeriesProps, type FunnelStage as FunnelSeriesStage, GeoJsonLayerSpec, GlobalSearch, type GlobalSearchProps, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, GridState, GridStateBadge, type GridStateBadgeProps, type HealthStatus, HierarchyExplorer, type HierarchyExplorerProps, type HierarchyNode, HorizontalBarCell, type HorizontalBarCellProps, HoverCard, type HoverCardContentProps, type HoverCardRootProps, Icon$1 as Icon, IconName$2 as IconName, InfiniteScrollIndicator, type InfiniteScrollIndicatorProps, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, LayerSpec, LineSeries, type LinkBehavior, type LinkComponentType, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type LoadingState, MiniBarCell, type MiniBarCellProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, type NodeState, type NonSerializableCellProp, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberFormat, type PageAsideProps, PageBanner, type PageBannerProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageScrollableContentProps, PercentBarCell, type PercentBarCellProps, PhoneFormat, type Place, PlaceSearch, type PlaceSearchProps, Popover, PowerFormat, type PresetRange, ProgressBar, Prose, type ProseProps, type ProseSize, type ProseTone, RangeCalendar, RasterLayerSpec, type RegisterPhosphorIconOptions, ResistanceFormat, type ResolutionLadder, type ResponsiveValue, ResultsCount, type ResultsCountProps, SEQUENTIAL_RAMPS, SKELETON_SIZES, SOURCE_UNIT_TO_WH, type SearchConfig, SearchControl, type SearchControlProps, SearchEmptyState, type SearchEmptyStateProps, SearchLoadingState, type SearchLoadingStateProps, SearchResultGroup, type SearchResultGroupProps, SearchResultItem, type SearchResultItemProps, SearchResultsList, type SearchResultsListProps, SearchTrigger, type SearchTriggerProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, SelectCell, type SelectCellProps, type Serializable, SiteCard, type SiteCardProps, SiteContactCard, type SiteContactCardProps, SiteMetaCell, type SiteMetaCellProps, SiteMetaDisplay, type SiteMetaDisplayProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, SparklineCell, type SparklineCellProps, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, type StatAlign, type StatFormatter, type StatItem, type StatLayout, StatList, type StatListProps, type StatThreshold, type StatTone$1 as StatTone, type StatValue, Tab, TabList, TabPanel, type TableDensity, type TableExportMetadata, type TableExportOptions, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextAreaWithChips, TextCell, type TextCellProps, TextFormat, type Tier, type TileAction, type TileData, type TileEntry, type TileRef, type TileStatus, type TileStore, type TiledCameraPreviewDomain, type TiledCameraSyncGroup, TiledTimeSeriesChart, type TiledTimeSeriesChartProps, type TiledTimeSeriesChartViewport, TiledTimeSeriesExplorer, type TiledTimeSeriesExplorerProps, type TiledTimeSeriesSource, TimeControls, type TimeControlsProps, type TimeRange, Timeline, TimelineItem, type TimelineItemProps, type TimelineItemVariant, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type TypographyRole, type UseBreakpointReturn, type UseClientDataControlsOptions, type UseClientDataControlsResult, type UseDataControlsClientOptions, type UseDataControlsOptions, type UseDataControlsResult, type UseDataControlsServerOptions, type UseElementSizeResult, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseServerDataControlsOptions, type UseTableExportOptions, type UseTableExportReturn, type UseTileWindowArgs, type UseTileWindowResult, type UseTiledTimeSeriesArgs, type UseTiledTimeSeriesResult, VectorLayerSpec, type Viewport, VoltageFormat, type WindowSize, type WindowSizeOption, YFormatType, addFilterCondition, applyDataOperations, assembleSeries, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, classicPresetRanges, createEmptyFilter, createFilter, createFilters, createFormat, createTextureIcon, createTiledCameraSyncGroup, csvUnitFor, csvValueFor, deltaDirectionFromValue, emptyStore, enumToSentenceCase, exportChart, exportTableAsCSV, fahrenheitToCelsius, fahrenheitToKelvin, feetToMeters, feetToMiles, filterToChips, formatBoolean, formatCapacity, formatCurrency, formatCurrent, formatDate, formatDistance, formatEmptyValue, formatEnergy, formatFieldValue, formatInternationalPhone, formatNumber, formatPercent, formatPhone, formatPhoneNumber, formatPower, formatPowerRating, formatResistance, formatTemperature, formatText, formatUSPhone, formatVoltage, getBadgeClasses, getBooleanBadgeVariant, getCellAlignmentClasses, getCellContainerClasses, getCellTextClasses, getColorRamp, getColorRampsByKind, getDateParts, getEventColor, getExportFormatName, getExportHeaders, getFilterFields, getLinkClasses, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, pickEnergyUnit, prepareTableDataForExport, registerPhosphorIcon, removeFilterCondition, resolveValue, snakeCaseToWords, telemetryPresetRanges, temperatureStringToSymbol, tierForViewport, tileIndexAt, tileKey, tileReducer, tilesForViewport, 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, typeRole, typographyRole, ucFirst, useBreakpoint, useChartExpand, useChartHeaderMetrics, useChartOwnsItsTitle, useClientDataControls, useColorMode, useContainerBreakpoint, useDataControls, useDebounce, useElementSize, useInfiniteScroll, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, useTableExport, useTileWindow, useTiledTimeSeries, wrapWithLink, yardsToMeters };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { BreadcrumbProps, BreadcrumbsProps, DateValue, CalendarProps as CalendarProps$1, ValidationResult, DisclosureGroupProps, DisclosurePanelProps, ButtonProps, DisclosureProps, DateRangePickerProps as DateRangePickerProps$1, FormProps, TooltipTriggerComponentProps, TooltipProps as TooltipProps$1, ListBoxProps as ListBoxProps$1, ListBoxItemProps, ModalOverlayProps, Key, PopoverProps as PopoverProps$1, ProgressBarProps as ProgressBarProps$1, RangeCalendarProps as RangeCalendarProps$1, TabProps as TabProps$1, TabListProps as TabListProps$1, TabPanelProps, TabsProps as TabsProps$2 } from 'react-aria-components';
2
- export { BreadcrumbProps, BreadcrumbsProps, DialogTrigger } from 'react-aria-components';
2
+ export { BreadcrumbProps, BreadcrumbsProps, DialogTrigger, Focusable } from 'react-aria-components';
3
3
  import { B as BadgeProps, ak as FieldValue, al as BooleanFormat, am as FormattedValue, an as FieldFormat, ao as CurrentFormat, ap as DateFormat, aq as DistanceFormat, ar as EnergyUnit, as as EnergyFormat, at as CurrencyFormat, au as NumberFormat, av as PhoneFormat, aw as PowerFormat, ax as FormatterFunction, ay as ResistanceFormat, az as TemperatureFormat, aA as TemperatureUnitString, aB as TemperatureUnit, aC as TextFormat, aD as VoltageFormat, e as BaseDataPoint, R as YFormatType, N as TooltipData, D as DeviceState, q as GridState, aE as ComponentFormatter, aF as LayerSpec, aG as CustomPinsSpec, aH as GeoJsonLayerSpec, aI as RasterLayerSpec, aJ as VectorLayerSpec, aK as ClusteredVectorLayerSpec, aL as ColorSpec } from './colors-CG2ClL96.js';
4
4
  export { A as ABSENT_GRID_FIELDS, a as ActionItem, aM as ActionMenu, b as ActionMenuProps, aN as AppShell, c as AppShellProps, aO as Avatar, d as AvatarProps, aP as Badge, aQ as BaseFormat, aR as ChartContext, C as ChartMargin, aS as CodeEditor, f as CodeEditorProps, g as CodeLanguage, h as CodeTheme, aT as ComponentFormatOptions, aU as CurrentUnit, aV as CustomFormat, aW as DEFAULT_MAP_TYPE, aX as DateFormatStyle, aY as DistanceUnit, aZ as ENTITY_CATEGORY_CONFIG, E as ENTITY_CONFIG, i as EntityArchetype, a_ as EntityCategory, a$ as EntityCategoryConfig, j as EntityConfig, k as EntityStateRule, l as EntityType, G as GRID_ELEMENT_TYPE_BY_ENTITY, b0 as GRID_STATE_COLORS, m as GRID_STAT_LIST, n as GridElementSourceType, o as GridStatField, p as GridStatFieldFormat, b1 as GridStateColor, H as HEADLINE_METRIC_BOUNDS, r as Heading, s as HeadlineMetric, b2 as InteractiveMap, b3 as InteractiveMapHandle, I as InteractiveMapProps, b4 as LayerCheckState, b5 as LayerFeature, b6 as LayerSelection, b7 as LayerStyle, b8 as LayerTreeNode, b9 as LayerVisibilityPatch, L as Loader, t as Logo, ba as MAP_TYPES, M as MapPoint, bb as MapType, bc as Meter, u as MeterProps, v as MetricFormat, w as MetricSource, bd as PercentageFormat, be as PowerUnit, bf as RenderType, bg as ResistanceUnit, S as SegmentOption, bh as SegmentedControl, x as SegmentedControlProps, y as SerializableFieldFormat, z as SideNav, F as SideNavItem, J as SideNavProps, bi as StackNav, bj as StackNavGroup, bk as StackNavItem, bl as StackNavLinkComponentProps, bm as StackNavProps, bn as StackNavRenderRow, bo as StackNavRowRenderProps, bp as StackNavTheme, bq as StaticMap, K as StaticMapProps, T as TextLink, br as TextTransform, bs as TextTruncatePosition, O as TooltipSeries, P as TopNav, Q as TopNavProps, bt as UNVERIFIED_VOLTAGE_UNIT_ROWS, bu as VoltageUnit, Y as YFormatSettings, bv as ZoomStops, U as activeDeviceStates, V as archetypeFor, bw as baselineFromPoint, W as clearColorCache, X as createCategoryColorMap, Z as createXScale, _ as createYScale, $ as defaultMargin, a0 as deviceStateLabels, a1 as deviceStateMetricFormats, a2 as entityHasDetailPage, a3 as entityHasStatList, a4 as entityShowsNow, bx as formatComponentValue, a5 as getContrastingTextColor, a6 as getDefaultChartColor, a7 as getDefaultColors, a8 as getDeviceStateDisplayLabel, a8 as getDeviceStateLabel, by as getEntityCategory, a9 as getEntityConfig, aa as getEntityIcon, ab as getEntityLabel, ac as getEntityStatList, ad as getGridStateLabel, ae as getResolvedColor, af as getThemeCategoricalColors, ag as getYFormatSettings, ah as gridStateLabels, ai as isActiveDeviceState, ai as isActiveState, aj as isLightColor, bz as mapValuesToCategoricalColors, bA as useChartContext, bB as useComponentFormatter } from './colors-CG2ClL96.js';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -2416,9 +2416,9 @@ interface BarSeriesProps {
2416
2416
  declare const BarSeries: React__default.FC<BarSeriesProps>;
2417
2417
 
2418
2418
  interface CategoryDataPoint {
2419
- /** Category label (x-axis) */
2419
+ /** Category label */
2420
2420
  label: string;
2421
- /** Numeric value (y-axis) */
2421
+ /** Numeric value */
2422
2422
  value: number;
2423
2423
  /** Optional color override for this bar */
2424
2424
  color?: string;
@@ -2462,8 +2462,14 @@ interface CategoryBarChartProps {
2462
2462
  /** Inline styles */
2463
2463
  style?: React__default.CSSProperties;
2464
2464
  /** Accessible label */
2465
- "aria-label"?: string;
2466
- /** Orientation: vertical (default) or horizontal */
2465
+ /**
2466
+ * The chart's accessible name. Required, not optional-with-a-default: a default
2467
+ * means every categorical chart announces identically, which is the bug ALL-2539
2468
+ * fixed in the two time-series engines. Required makes the type checker the
2469
+ * alarm, so a chart cannot be added without one (ALL-2715).
2470
+ */
2471
+ "aria-label": string;
2472
+ /** Orientation: horizontal (default) or vertical */
2467
2473
  orientation?: "vertical" | "horizontal";
2468
2474
  /** Show tooltip on hover (default true) */
2469
2475
  showTooltip?: boolean;
@@ -2705,6 +2711,8 @@ interface ChartContainerProps {
2705
2711
  hideBottomBar?: boolean;
2706
2712
  /** Trailing actions rendered in the `ChartHeader`, opposite the title. */
2707
2713
  headerActions?: React__default.ReactNode;
2714
+ /** Control cluster rendered in the `ChartHeader` — `TimeControls` today. */
2715
+ headerControls?: React__default.ReactNode;
2708
2716
  }
2709
2717
  /**
2710
2718
  * ChartContainer
@@ -2839,9 +2847,16 @@ interface ChartEventSpansProps {
2839
2847
  declare function ChartEventSpans({ spans, opacity, color }: ChartEventSpansProps): react_jsx_runtime.JSX.Element | null;
2840
2848
 
2841
2849
  /**
2842
- * Total vertical space the header claims when it renders, in px. Both engines
2843
- * subtract this from the measured parent height before sizing the plot, the
2844
- * same way they already account for `ChartBottomBar`.
2850
+ * The height the header is assumed to claim before it has been measured, in px.
2851
+ *
2852
+ * This was once the whole story — a constant both engines subtracted from the
2853
+ * measured parent height. `TimeControls` ended that: it is `w-full flex-wrap`,
2854
+ * so a header hosting it is two rows at narrow widths and one row at wide ones.
2855
+ * No constant describes that, and a constant that disagrees with the render is
2856
+ * exactly the drift this component exists to remove.
2857
+ *
2858
+ * It survives as the first-paint estimate. Without it the header reserves zero
2859
+ * until the observer fires and every chart on the page visibly reflows.
2845
2860
  */
2846
2861
  declare const CHART_HEADER_HEIGHT = 48;
2847
2862
  /**
@@ -2859,11 +2874,22 @@ declare function ChartOwnsItsTitle({ children }: {
2859
2874
  children: ReactNode;
2860
2875
  }): react_jsx_runtime.JSX.Element;
2861
2876
  /**
2862
- * Height the header will actually claim here. The engines use this for their
2863
- * plot math so the reserve and the render never disagree — both read the same
2864
- * context, so there is no third place for them to drift apart.
2877
+ * The height the header claims here, and the ref that establishes it.
2878
+ *
2879
+ * Both engines subtract `headerHeight` from the measured parent height before
2880
+ * sizing the plot, and pass `headerRef` to the `ChartHeader` they render. The
2881
+ * reserve is therefore the render, measured — not a second statement of it that
2882
+ * someone has to keep in agreement.
2883
+ *
2884
+ * Returns 0 when the header will render nothing, so a chart that is already
2885
+ * labelled and has no slots filled loses no plot height to empty chrome.
2865
2886
  */
2866
- declare function useChartHeaderHeight(hasActions: boolean): number;
2887
+ declare function useChartHeaderMetrics(hasActions: boolean, hasControls: boolean): {
2888
+ headerRef: (node: HTMLDivElement | null) => void;
2889
+ headerHeight: number;
2890
+ };
2891
+ /** Returns `true` when the chart should render its own visible title. */
2892
+ declare function useChartOwnsItsTitle(): boolean;
2867
2893
  interface ChartHeaderProps {
2868
2894
  /**
2869
2895
  * The chart's title. Both engines pass the same string they render as the SVG
@@ -2871,8 +2897,26 @@ interface ChartHeaderProps {
2871
2897
  * apart (ALL-2539). Shown only when nothing above already labels the chart.
2872
2898
  */
2873
2899
  title: string;
2900
+ /**
2901
+ * Control cluster — `TimeControls` today.
2902
+ *
2903
+ * Separate from `actions` because it is not a trailing icon: it is full-width
2904
+ * and it wraps, which is the whole reason this header measures itself rather
2905
+ * than reserving a constant.
2906
+ *
2907
+ * Belongs here when it governs exactly this chart. Controls that govern a
2908
+ * composed panel stay at panel level: `SiteEnergyCharts` pairs them with a KPI
2909
+ * strip and expands the whole body as one unit, `Dnp3TelemetryChartsSection`
2910
+ * drives a grid of charts from one cluster, and `TiledTimeSeriesExplorer`
2911
+ * swaps its chart for an `EmptyState` — moving those controls inside the chart
2912
+ * would reorder them, or make them vanish exactly when the window needs
2913
+ * changing.
2914
+ */
2915
+ controls?: ReactNode;
2874
2916
  /** Trailing action slot — expand first, more later. */
2875
2917
  actions?: ReactNode;
2918
+ /** Measurement ref from `useChartHeaderMetrics`. */
2919
+ containerRef?: (node: HTMLDivElement | null) => void;
2876
2920
  marginLeft?: number;
2877
2921
  marginRight?: number;
2878
2922
  }
@@ -2890,7 +2934,7 @@ interface ChartHeaderProps {
2890
2934
  * Deliberately has no `hideHeader` prop. `hideBottomBar` is how a shared feature
2891
2935
  * becomes optional and then absent.
2892
2936
  */
2893
- declare function ChartHeader({ title, actions, marginLeft, marginRight }: ChartHeaderProps): react_jsx_runtime.JSX.Element | null;
2937
+ declare function ChartHeader({ title, controls, actions, containerRef, marginLeft, marginRight, }: ChartHeaderProps): react_jsx_runtime.JSX.Element | null;
2894
2938
 
2895
2939
  interface ExpandedSize {
2896
2940
  width: number;
@@ -3039,6 +3083,8 @@ interface TiledTimeSeriesChartProps {
3039
3083
  title: string;
3040
3084
  /** Trailing actions rendered in the `ChartHeader`, opposite the title. */
3041
3085
  headerActions?: React__default.ReactNode;
3086
+ /** Control cluster rendered in the `ChartHeader` — `TimeControls` today. */
3087
+ headerControls?: React__default.ReactNode;
3042
3088
  /** The camera. Drives the x-scale directly, decoupled from the data extent. */
3043
3089
  viewport: TiledTimeSeriesChartViewport;
3044
3090
  /** Optional clamp for pan gestures. New viewports stay within these bounds. */
@@ -7914,6 +7960,19 @@ declare function getStateTone(state: DeviceState): StatTone;
7914
7960
  * import { TextField } from "@texturehq/edges/TextField"
7915
7961
  * ```
7916
7962
  */
7963
+ /**
7964
+ * Re-exported so consumers can hand `Tooltip`/`HoverCard` a trigger that is a
7965
+ * custom component rather than a DOM element. `TooltipTrigger` passes its
7966
+ * hover/focus/aria props to whatever it renders first; a component with a
7967
+ * closed prop list drops them and the overlay then renders unanchored with no
7968
+ * `aria-describedby`. Wrapping the trigger in `Focusable` re-establishes the
7969
+ * link through context and the child's ref.
7970
+ *
7971
+ * This must be imported from here rather than from `react-aria-components`
7972
+ * directly: this package bundles its own copy of react-aria, so a `Focusable`
7973
+ * resolved elsewhere is a different module instance whose context never meets
7974
+ * this package's `TooltipTrigger`.
7975
+ */
7917
7976
 
7918
7977
  /**
7919
7978
  * Type for custom link components (e.g., Next.js Link).
@@ -7922,4 +7981,4 @@ declare function getStateTone(state: DeviceState): StatTone;
7922
7981
  */
7923
7982
  type LinkComponentType = React.ComponentType<any>;
7924
7983
 
7925
- export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, type AgentCellConfigOf, type AgentCellValueOf, type AgentSerializable, Alert, type AlertProps, type ApplyDataOperationsOptions, type ApplyDataOperationsResult, AreaSeries, type AssembleSeriesArgs, type AssembledSeries, AutoMobileRenderer, BREAKPOINTS, BadgeCell, type BadgeCellProps, BadgeProps, Banner, type BannerAction, type BannerAppearance, type BannerProps, type BannerVariant, BarSeries, BaseDataPoint, BaseInputProps, BooleanCell, type BooleanCellProps, BooleanFormat, BrandProvider, type BrandProviderProps, type BrandVariables, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, CATEGORICAL_RAMP, CHART_HEADER_HEIGHT, COLOR_RAMPS, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, CarouselAutoplayTrigger, CarouselControl, type CarouselControlProps, CarouselIndicator, CarouselIndicatorGroup, type CarouselIndicatorProps, CarouselItem, CarouselItemGroup, type CarouselItemGroupProps, type CarouselItemProps, CarouselNextTrigger, CarouselPrevTrigger, CarouselProgressText, CarouselRoot, type CarouselRootProps, type CarouselTriggerProps, CategoryBarChart, type CategoryDataPoint as CategoryBarChartDataPoint, type CategoryBarChartProps, type CategoryDataPoint, type CellAlignment, type CellComponent, type CellComponentProps, type CellConfigOf, type CellContext, type CellEmphasis, type CellValueOf, ChartAxis, ChartBottomBar, ChartContainer, ChartEventMarkers, type ChartEventMarkersProps, ChartEventSpans, type ChartEventSpansProps, type ChartExpand, ChartExpandOwnedByAncestor, type ChartExportMetadata, ChartHeader, type ChartHeaderProps, ChartLabelledBy, ChartOwnsItsTitle, ChartTooltip, Chip, ChipInputField, type ChipInputFieldProps, type ClassicPresetId, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type ColorRampInput, type ColorRampKind, type ColorRampOption, ColorSpec, type Column, CommandPalette, type CommandPaletteProps, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ContactCard, type ContactCardProps, ContactMetaCell, type ContactMetaCellProps, ContactMetaDisplay, type ContactMetaDisplayProps, ContainerQueryProvider, CopyToClipboard, type Coverage, CurrencyFormat, CurrentFormat, CustomCell, type CustomCellProps, CustomPinsSpec, DIVERGING_RAMPS, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, DeltaCell, type DeltaCellProps, type DeltaDirection, type DeltaFormat, type DeltaTone, DeviceHealthBadge, type DeviceHealthBadgeProps, DeviceMetaCell, type DeviceMetaCellProps, DeviceMetaDisplay, type DeviceMetaDisplayProps, DeviceState, DeviceStateBadge, type DeviceStateBadgeProps, DeviceStateCell, type DeviceStateCellProps, DeviceStateWithMetric, type DeviceStateWithMetricProps, type DeviceType, DeviceTypeIcon, type DeviceTypeIconProps, DialogAction, DialogFooterConfig, DialogHeader, DialogHeaderConfig, type DialogHeaderProps, DistanceFormat, type ElementSize, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, EnergyUnit, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type EventMarker, type EventMarkerType, type EventSpan, type ExportType, type FacetConfig, type FacetCounts, type FacetType, type FetchTile, FieldFormat, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedCell, type FormattedCellProps, FormattedValue, FormatterFunction, FunnelSeries, type FunnelSeriesProps, type FunnelStage as FunnelSeriesStage, GeoJsonLayerSpec, GlobalSearch, type GlobalSearchProps, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, GridState, GridStateBadge, type GridStateBadgeProps, type HealthStatus, HierarchyExplorer, type HierarchyExplorerProps, type HierarchyNode, HorizontalBarCell, type HorizontalBarCellProps, HoverCard, type HoverCardContentProps, type HoverCardRootProps, Icon$1 as Icon, IconName$2 as IconName, InfiniteScrollIndicator, type InfiniteScrollIndicatorProps, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, LayerSpec, LineSeries, type LinkBehavior, type LinkComponentType, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type LoadingState, MiniBarCell, type MiniBarCellProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, type NodeState, type NonSerializableCellProp, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberFormat, type PageAsideProps, PageBanner, type PageBannerProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageScrollableContentProps, PercentBarCell, type PercentBarCellProps, PhoneFormat, type Place, PlaceSearch, type PlaceSearchProps, Popover, PowerFormat, type PresetRange, ProgressBar, Prose, type ProseProps, type ProseSize, type ProseTone, RangeCalendar, RasterLayerSpec, type RegisterPhosphorIconOptions, ResistanceFormat, type ResolutionLadder, type ResponsiveValue, ResultsCount, type ResultsCountProps, SEQUENTIAL_RAMPS, SKELETON_SIZES, SOURCE_UNIT_TO_WH, type SearchConfig, SearchControl, type SearchControlProps, SearchEmptyState, type SearchEmptyStateProps, SearchLoadingState, type SearchLoadingStateProps, SearchResultGroup, type SearchResultGroupProps, SearchResultItem, type SearchResultItemProps, SearchResultsList, type SearchResultsListProps, SearchTrigger, type SearchTriggerProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, SelectCell, type SelectCellProps, type Serializable, SiteCard, type SiteCardProps, SiteContactCard, type SiteContactCardProps, SiteMetaCell, type SiteMetaCellProps, SiteMetaDisplay, type SiteMetaDisplayProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, SparklineCell, type SparklineCellProps, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, type StatAlign, type StatFormatter, type StatItem, type StatLayout, StatList, type StatListProps, type StatThreshold, type StatTone$1 as StatTone, type StatValue, Tab, TabList, TabPanel, type TableDensity, type TableExportMetadata, type TableExportOptions, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextAreaWithChips, TextCell, type TextCellProps, TextFormat, type Tier, type TileAction, type TileData, type TileEntry, type TileRef, type TileStatus, type TileStore, type TiledCameraPreviewDomain, type TiledCameraSyncGroup, TiledTimeSeriesChart, type TiledTimeSeriesChartProps, type TiledTimeSeriesChartViewport, TiledTimeSeriesExplorer, type TiledTimeSeriesExplorerProps, type TiledTimeSeriesSource, TimeControls, type TimeControlsProps, type TimeRange, Timeline, TimelineItem, type TimelineItemProps, type TimelineItemVariant, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type TypographyRole, type UseBreakpointReturn, type UseClientDataControlsOptions, type UseClientDataControlsResult, type UseDataControlsClientOptions, type UseDataControlsOptions, type UseDataControlsResult, type UseDataControlsServerOptions, type UseElementSizeResult, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseServerDataControlsOptions, type UseTableExportOptions, type UseTableExportReturn, type UseTileWindowArgs, type UseTileWindowResult, type UseTiledTimeSeriesArgs, type UseTiledTimeSeriesResult, VectorLayerSpec, type Viewport, VoltageFormat, type WindowSize, type WindowSizeOption, YFormatType, addFilterCondition, applyDataOperations, assembleSeries, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, classicPresetRanges, createEmptyFilter, createFilter, createFilters, createFormat, createTextureIcon, createTiledCameraSyncGroup, csvUnitFor, csvValueFor, deltaDirectionFromValue, emptyStore, enumToSentenceCase, exportChart, exportTableAsCSV, fahrenheitToCelsius, fahrenheitToKelvin, feetToMeters, feetToMiles, filterToChips, formatBoolean, formatCapacity, formatCurrency, formatCurrent, formatDate, formatDistance, formatEmptyValue, formatEnergy, formatFieldValue, formatInternationalPhone, formatNumber, formatPercent, formatPhone, formatPhoneNumber, formatPower, formatPowerRating, formatResistance, formatTemperature, formatText, formatUSPhone, formatVoltage, getBadgeClasses, getBooleanBadgeVariant, getCellAlignmentClasses, getCellContainerClasses, getCellTextClasses, getColorRamp, getColorRampsByKind, getDateParts, getEventColor, getExportFormatName, getExportHeaders, getFilterFields, getLinkClasses, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, pickEnergyUnit, prepareTableDataForExport, registerPhosphorIcon, removeFilterCondition, resolveValue, snakeCaseToWords, telemetryPresetRanges, temperatureStringToSymbol, tierForViewport, tileIndexAt, tileKey, tileReducer, tilesForViewport, 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, typeRole, typographyRole, ucFirst, useBreakpoint, useChartExpand, useChartHeaderHeight, useClientDataControls, useColorMode, useContainerBreakpoint, useDataControls, useDebounce, useElementSize, useInfiniteScroll, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, useTableExport, useTileWindow, useTiledTimeSeries, wrapWithLink, yardsToMeters };
7984
+ export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, type AgentCellConfigOf, type AgentCellValueOf, type AgentSerializable, Alert, type AlertProps, type ApplyDataOperationsOptions, type ApplyDataOperationsResult, AreaSeries, type AssembleSeriesArgs, type AssembledSeries, AutoMobileRenderer, BREAKPOINTS, BadgeCell, type BadgeCellProps, BadgeProps, Banner, type BannerAction, type BannerAppearance, type BannerProps, type BannerVariant, BarSeries, BaseDataPoint, BaseInputProps, BooleanCell, type BooleanCellProps, BooleanFormat, BrandProvider, type BrandProviderProps, type BrandVariables, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, CATEGORICAL_RAMP, CHART_HEADER_HEIGHT, COLOR_RAMPS, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, CarouselAutoplayTrigger, CarouselControl, type CarouselControlProps, CarouselIndicator, CarouselIndicatorGroup, type CarouselIndicatorProps, CarouselItem, CarouselItemGroup, type CarouselItemGroupProps, type CarouselItemProps, CarouselNextTrigger, CarouselPrevTrigger, CarouselProgressText, CarouselRoot, type CarouselRootProps, type CarouselTriggerProps, CategoryBarChart, type CategoryDataPoint as CategoryBarChartDataPoint, type CategoryBarChartProps, type CategoryDataPoint, type CellAlignment, type CellComponent, type CellComponentProps, type CellConfigOf, type CellContext, type CellEmphasis, type CellValueOf, ChartAxis, ChartBottomBar, ChartContainer, ChartEventMarkers, type ChartEventMarkersProps, ChartEventSpans, type ChartEventSpansProps, type ChartExpand, ChartExpandOwnedByAncestor, type ChartExportMetadata, ChartHeader, type ChartHeaderProps, ChartLabelledBy, ChartOwnsItsTitle, ChartTooltip, Chip, ChipInputField, type ChipInputFieldProps, type ClassicPresetId, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type ColorRampInput, type ColorRampKind, type ColorRampOption, ColorSpec, type Column, CommandPalette, type CommandPaletteProps, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ContactCard, type ContactCardProps, ContactMetaCell, type ContactMetaCellProps, ContactMetaDisplay, type ContactMetaDisplayProps, ContainerQueryProvider, CopyToClipboard, type Coverage, CurrencyFormat, CurrentFormat, CustomCell, type CustomCellProps, CustomPinsSpec, DIVERGING_RAMPS, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, DeltaCell, type DeltaCellProps, type DeltaDirection, type DeltaFormat, type DeltaTone, DeviceHealthBadge, type DeviceHealthBadgeProps, DeviceMetaCell, type DeviceMetaCellProps, DeviceMetaDisplay, type DeviceMetaDisplayProps, DeviceState, DeviceStateBadge, type DeviceStateBadgeProps, DeviceStateCell, type DeviceStateCellProps, DeviceStateWithMetric, type DeviceStateWithMetricProps, type DeviceType, DeviceTypeIcon, type DeviceTypeIconProps, DialogAction, DialogFooterConfig, DialogHeader, DialogHeaderConfig, type DialogHeaderProps, DistanceFormat, type ElementSize, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, EnergyUnit, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type EventMarker, type EventMarkerType, type EventSpan, type ExportType, type FacetConfig, type FacetCounts, type FacetType, type FetchTile, FieldFormat, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedCell, type FormattedCellProps, FormattedValue, FormatterFunction, FunnelSeries, type FunnelSeriesProps, type FunnelStage as FunnelSeriesStage, GeoJsonLayerSpec, GlobalSearch, type GlobalSearchProps, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, GridState, GridStateBadge, type GridStateBadgeProps, type HealthStatus, HierarchyExplorer, type HierarchyExplorerProps, type HierarchyNode, HorizontalBarCell, type HorizontalBarCellProps, HoverCard, type HoverCardContentProps, type HoverCardRootProps, Icon$1 as Icon, IconName$2 as IconName, InfiniteScrollIndicator, type InfiniteScrollIndicatorProps, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, LayerSpec, LineSeries, type LinkBehavior, type LinkComponentType, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type LoadingState, MiniBarCell, type MiniBarCellProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, type NodeState, type NonSerializableCellProp, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberFormat, type PageAsideProps, PageBanner, type PageBannerProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageScrollableContentProps, PercentBarCell, type PercentBarCellProps, PhoneFormat, type Place, PlaceSearch, type PlaceSearchProps, Popover, PowerFormat, type PresetRange, ProgressBar, Prose, type ProseProps, type ProseSize, type ProseTone, RangeCalendar, RasterLayerSpec, type RegisterPhosphorIconOptions, ResistanceFormat, type ResolutionLadder, type ResponsiveValue, ResultsCount, type ResultsCountProps, SEQUENTIAL_RAMPS, SKELETON_SIZES, SOURCE_UNIT_TO_WH, type SearchConfig, SearchControl, type SearchControlProps, SearchEmptyState, type SearchEmptyStateProps, SearchLoadingState, type SearchLoadingStateProps, SearchResultGroup, type SearchResultGroupProps, SearchResultItem, type SearchResultItemProps, SearchResultsList, type SearchResultsListProps, SearchTrigger, type SearchTriggerProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, SelectCell, type SelectCellProps, type Serializable, SiteCard, type SiteCardProps, SiteContactCard, type SiteContactCardProps, SiteMetaCell, type SiteMetaCellProps, SiteMetaDisplay, type SiteMetaDisplayProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, SparklineCell, type SparklineCellProps, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, type StatAlign, type StatFormatter, type StatItem, type StatLayout, StatList, type StatListProps, type StatThreshold, type StatTone$1 as StatTone, type StatValue, Tab, TabList, TabPanel, type TableDensity, type TableExportMetadata, type TableExportOptions, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextAreaWithChips, TextCell, type TextCellProps, TextFormat, type Tier, type TileAction, type TileData, type TileEntry, type TileRef, type TileStatus, type TileStore, type TiledCameraPreviewDomain, type TiledCameraSyncGroup, TiledTimeSeriesChart, type TiledTimeSeriesChartProps, type TiledTimeSeriesChartViewport, TiledTimeSeriesExplorer, type TiledTimeSeriesExplorerProps, type TiledTimeSeriesSource, TimeControls, type TimeControlsProps, type TimeRange, Timeline, TimelineItem, type TimelineItemProps, type TimelineItemVariant, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type TypographyRole, type UseBreakpointReturn, type UseClientDataControlsOptions, type UseClientDataControlsResult, type UseDataControlsClientOptions, type UseDataControlsOptions, type UseDataControlsResult, type UseDataControlsServerOptions, type UseElementSizeResult, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseServerDataControlsOptions, type UseTableExportOptions, type UseTableExportReturn, type UseTileWindowArgs, type UseTileWindowResult, type UseTiledTimeSeriesArgs, type UseTiledTimeSeriesResult, VectorLayerSpec, type Viewport, VoltageFormat, type WindowSize, type WindowSizeOption, YFormatType, addFilterCondition, applyDataOperations, assembleSeries, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, classicPresetRanges, createEmptyFilter, createFilter, createFilters, createFormat, createTextureIcon, createTiledCameraSyncGroup, csvUnitFor, csvValueFor, deltaDirectionFromValue, emptyStore, enumToSentenceCase, exportChart, exportTableAsCSV, fahrenheitToCelsius, fahrenheitToKelvin, feetToMeters, feetToMiles, filterToChips, formatBoolean, formatCapacity, formatCurrency, formatCurrent, formatDate, formatDistance, formatEmptyValue, formatEnergy, formatFieldValue, formatInternationalPhone, formatNumber, formatPercent, formatPhone, formatPhoneNumber, formatPower, formatPowerRating, formatResistance, formatTemperature, formatText, formatUSPhone, formatVoltage, getBadgeClasses, getBooleanBadgeVariant, getCellAlignmentClasses, getCellContainerClasses, getCellTextClasses, getColorRamp, getColorRampsByKind, getDateParts, getEventColor, getExportFormatName, getExportHeaders, getFilterFields, getLinkClasses, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, pickEnergyUnit, prepareTableDataForExport, registerPhosphorIcon, removeFilterCondition, resolveValue, snakeCaseToWords, telemetryPresetRanges, temperatureStringToSymbol, tierForViewport, tileIndexAt, tileKey, tileReducer, tilesForViewport, 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, typeRole, typographyRole, ucFirst, useBreakpoint, useChartExpand, useChartHeaderMetrics, useChartOwnsItsTitle, useClientDataControls, useColorMode, useContainerBreakpoint, useDataControls, useDebounce, useElementSize, useInfiniteScroll, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, useTableExport, useTileWindow, useTiledTimeSeries, wrapWithLink, yardsToMeters };