@texturehq/edges 1.36.1 → 1.37.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/{colors-DlH6URGg.d.cts → colors-CIEgeqF8.d.cts} +230 -10
- package/dist/{colors-Dq4EZi3c.d.ts → colors-CQJMI7Wz.d.ts} +230 -10
- package/dist/index.cjs +29 -95
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +30 -184
- package/dist/index.d.ts +30 -184
- package/dist/index.js +29 -95
- package/dist/index.js.map +1 -1
- package/dist/server.cjs +2 -92
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +2 -92
- package/dist/server.js.map +1 -1
- package/dist/styles.css +33 -3
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.
|
|
1
|
+
.edges-stack-nav{--edges-stack-nav-pane-shift: 12%;--edges-stack-nav-pane-duration: var(--motion-duration-normal, .2s);--edges-stack-nav-pane-opacity-duration: var(--motion-duration-fast, .15s);--edges-stack-nav-pane-easing: var(--motion-easing-standard, ease);background:var(--edges-stack-nav-background, var(--color-background-surface));border-right:1px solid var(--edges-stack-nav-border-color, var(--color-border-default))}.edges-stack-nav__logo{display:flex;align-items:center;justify-content:space-between;height:60px;padding:0 24px;border-bottom:1px solid var(--edges-stack-nav-border-color, var(--color-border-default))}.edges-stack-nav__header{border-bottom:1px solid var(--edges-stack-nav-border-color, var(--color-border-default))}.edges-stack-nav__footer,.edges-stack-nav__divider,.edges-stack-nav__bottom-items{border-top:1px solid var(--edges-stack-nav-border-color, var(--color-border-default))}.edges-stack-nav__back{border-bottom:1px solid var(--edges-stack-nav-border-color, var(--color-border-default))}.edges-stack-nav__pane{opacity:0;pointer-events:none}.edges-stack-nav--animated .edges-stack-nav__pane{transition:transform var(--edges-stack-nav-pane-duration) var(--edges-stack-nav-pane-easing),opacity var(--edges-stack-nav-pane-opacity-duration) var(--edges-stack-nav-pane-easing)}.edges-stack-nav__pane--top{transform:translate(0);opacity:1;pointer-events:auto}.edges-stack-nav__pane--above{transform:translate(calc(var(--edges-stack-nav-pane-shift) * -1))}.edges-stack-nav__pane--below{transform:translate(var(--edges-stack-nav-pane-shift))}.edges-stack-nav__pane--instant{transition:none}.edges-stack-nav__row:hover,.edges-stack-nav__row:focus-visible{background:var(--edges-stack-nav-row-hover-background, var(--color-background-hover))}.edges-stack-nav__row--active,.edges-stack-nav__row--active:hover,.edges-stack-nav__row--active:focus-visible{background:var(--edges-stack-nav-row-active-background, var(--color-background-selected));color:var(--edges-stack-nav-row-active-color, var(--color-text-primary))}.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button{background-color:transparent!important;box-shadow:none!important;border:1px solid var(--color-border-muted, rgba(0, 0, 0, .2))!important;opacity:.6}.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button:hover{opacity:1}.map-tooltip .mapboxgl-popup-content{padding:.75rem 1rem;background-color:var(--color-background-surface);border:1px solid var(--color-border-default);border-radius:.5rem;box-shadow:0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;font-family:inherit;max-width:none!important}.map-tooltip .mapboxgl-popup-tip{border-top-color:var(--color-background-surface)}.map-tooltip-bare .mapboxgl-popup-content{padding:0!important;background:transparent!important;border:none!important;border-radius:0!important;box-shadow:none!important}.map-tooltip-bare .mapboxgl-popup-tip{display:none!important}
|
|
2
2
|
/*# sourceMappingURL=index.css.map */
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/components/
|
|
1
|
+
{"version":3,"sources":["../src/components/StackNav/StackNav.css","../src/components/Maps/mapbox-overrides.css"],"sourcesContent":["/**\n * StackNav surface + row affordances.\n *\n * All surface colors come from CSS custom properties on the rail so consumers\n * can override per-instance (via the `theme` prop) or globally (by setting\n * `--edges-stack-nav-*` on an ancestor). The component intentionally does NOT\n * default to the `--color-background-paper` (linen) surface — apps that want\n * the docs-style paper look opt in by passing `theme={{ background:\n * \"var(--color-background-paper)\" }}` or by setting the CSS variable.\n */\n\n.edges-stack-nav {\n --edges-stack-nav-pane-shift: 12%;\n --edges-stack-nav-pane-duration: var(--motion-duration-normal, 200ms);\n --edges-stack-nav-pane-opacity-duration: var(--motion-duration-fast, 150ms);\n --edges-stack-nav-pane-easing: var(--motion-easing-standard, ease);\n\n background: var(--edges-stack-nav-background, var(--color-background-surface));\n border-right: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));\n}\n\n.edges-stack-nav__logo {\n display: flex;\n align-items: center;\n justify-content: space-between;\n height: 60px;\n padding: 0 24px;\n border-bottom: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));\n}\n\n.edges-stack-nav__header {\n border-bottom: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));\n}\n\n.edges-stack-nav__footer {\n border-top: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));\n}\n\n.edges-stack-nav__divider {\n border-top: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));\n}\n\n.edges-stack-nav__bottom-items {\n border-top: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));\n}\n\n.edges-stack-nav__back {\n border-bottom: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));\n}\n\n.edges-stack-nav__pane {\n opacity: 0;\n pointer-events: none;\n}\n\n.edges-stack-nav--animated .edges-stack-nav__pane {\n transition:\n transform var(--edges-stack-nav-pane-duration) var(--edges-stack-nav-pane-easing),\n opacity var(--edges-stack-nav-pane-opacity-duration) var(--edges-stack-nav-pane-easing);\n}\n\n.edges-stack-nav__pane--top {\n transform: translateX(0);\n opacity: 1;\n pointer-events: auto;\n}\n\n.edges-stack-nav__pane--above {\n transform: translateX(calc(var(--edges-stack-nav-pane-shift) * -1));\n}\n\n.edges-stack-nav__pane--below {\n transform: translateX(var(--edges-stack-nav-pane-shift));\n}\n\n.edges-stack-nav__pane--instant {\n transition: none;\n}\n\n.edges-stack-nav__row:hover,\n.edges-stack-nav__row:focus-visible {\n background: var(--edges-stack-nav-row-hover-background, var(--color-background-hover));\n}\n\n.edges-stack-nav__row--active,\n.edges-stack-nav__row--active:hover,\n.edges-stack-nav__row--active:focus-visible {\n background: var(--edges-stack-nav-row-active-background, var(--color-background-selected));\n color: var(--edges-stack-nav-row-active-color, var(--color-text-primary));\n}\n","/* Attribution toggle button - muted style for mobile */\n.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button {\n background-color: transparent !important;\n box-shadow: none !important;\n border: 1px solid var(--color-border-muted, rgba(0, 0, 0, 0.2)) !important;\n opacity: 0.6;\n}\n\n.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button:hover {\n opacity: 1;\n}\n\n/* Tooltip popup styling */\n.map-tooltip .mapboxgl-popup-content {\n padding: 0.75rem 1rem;\n background-color: var(--color-background-surface);\n border: 1px solid var(--color-border-default);\n border-radius: 0.5rem;\n box-shadow:\n 0 20px 25px -5px rgb(0 0 0 / 0.1),\n 0 8px 10px -6px rgb(0 0 0 / 0.1);\n font-family: inherit;\n max-width: none !important; /* Allow custom tooltip widths */\n}\n\n.map-tooltip .mapboxgl-popup-tip {\n border-top-color: var(--color-background-surface);\n}\n\n/* Bare tooltip — strip the default popup chrome so the content (which\n brings its own card styling) sits directly over the map. Hides the\n built-in tip arrow; consumers can render their own caret if desired. */\n.map-tooltip-bare .mapboxgl-popup-content {\n padding: 0 !important;\n background: transparent !important;\n border: none !important;\n border-radius: 0 !important;\n box-shadow: none !important;\n}\n\n.map-tooltip-bare .mapboxgl-popup-tip {\n display: none !important;\n}\n"],"mappings":"AAWA,CAAC,gBACC,8BAA8B,IAC9B,iCAAiC,IAAI,wBAAwB,EAAE,KAC/D,yCAAyC,IAAI,sBAAsB,EAAE,MACrE,+BAA+B,IAAI,wBAAwB,EAAE,MAE7D,WAAY,IAAI,4BAA4B,EAAE,IAAI,6BAClD,aAAc,IAAI,MAAM,IAAI,8BAA8B,EAAE,IAAI,wBAClE,CAEA,CAAC,sBACC,QAAS,KACT,YAAa,OACb,gBAAiB,cACjB,OAAQ,KAzBV,QA0BW,EAAE,KACX,cAAe,IAAI,MAAM,IAAI,8BAA8B,EAAE,IAAI,wBACnE,CAEA,CAAC,wBACC,cAAe,IAAI,MAAM,IAAI,8BAA8B,EAAE,IAAI,wBACnE,CAEA,CAAC,wBAID,CAAC,yBAID,CAAC,8BAPC,WAAY,IAAI,MAAM,IAAI,8BAA8B,EAAE,IAAI,wBAChE,CAUA,CAAC,sBACC,cAAe,IAAI,MAAM,IAAI,8BAA8B,EAAE,IAAI,wBACnE,CAEA,CAAC,sBACC,QAAS,EACT,eAAgB,IAClB,CAEA,CAAC,0BAA0B,CAL1B,sBAMC,WACE,UAAU,IAAI,iCAAiC,IAAI,8BAA8B,CACjF,QAAQ,IAAI,yCAAyC,IAAI,8BAC7D,CAEA,CAAC,2BACC,UAAW,UAAW,GACtB,QAAS,EACT,eAAgB,IAClB,CAEA,CAAC,6BACC,UAAW,UAAW,KAAK,IAAI,8BAA8B,EAAE,IACjE,CAEA,CAAC,6BACC,UAAW,UAAW,IAAI,8BAC5B,CAEA,CAAC,+BACC,WAAY,IACd,CAEA,CAAC,oBAAoB,OACrB,CADC,oBACoB,eACnB,WAAY,IAAI,sCAAsC,EAAE,IAAI,0BAC9D,CAEA,CAAC,6BACD,CADC,4BAC4B,OAC7B,CAFC,4BAE4B,eAC3B,WAAY,IAAI,uCAAuC,EAAE,IAAI,8BAC7D,MAAO,IAAI,kCAAkC,EAAE,IAAI,sBACrD,CCxFA,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,4BACtC,iBAAkB,sBAClB,WAAY,eACZ,OAAQ,IAAI,MAAM,IAAI,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,eAC1D,QAAS,EACX,CAEA,CAPC,oBAOoB,CAPC,iBAOiB,CAPC,2BAO2B,OACjE,QAAS,CACX,CAGA,CAAC,YAAY,CAAC,uBAbd,QAcW,OAAQ,KACjB,iBAAkB,IAAI,4BACtB,OAAQ,IAAI,MAAM,IAAI,wBAhBxB,cAiBiB,MACf,WACE,EAAE,KAAK,KAAK,KAAK,SAAgB,CACjC,EAAE,IAAI,KAAK,KAAK,UAClB,YAAa,QACb,UAAW,cACb,CAEA,CAZC,YAYY,CAAC,mBACZ,iBAAkB,IAAI,2BACxB,CAKA,CAAC,iBAAiB,CAnBJ,uBAbd,QAiCW,YACT,WAAY,sBACZ,OAAQ,eAnCV,cAoCiB,YACf,WAAY,cACd,CAEA,CARC,iBAQiB,CAfJ,mBAgBZ,QAAS,cACX","names":[]}
|
package/dist/index.d.cts
CHANGED
|
@@ -2,8 +2,8 @@ import { BreadcrumbProps, BreadcrumbsProps, DateValue, CalendarProps as Calendar
|
|
|
2
2
|
export { BreadcrumbProps, BreadcrumbsProps, DialogTrigger } from 'react-aria-components';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import React__default, { RefObject, ComponentType, ReactNode, HTMLAttributes, ComponentProps, CSSProperties, Component, ErrorInfo } from 'react';
|
|
5
|
-
import {
|
|
6
|
-
export { A as ActionItem,
|
|
5
|
+
import { U as FieldValue, V as BooleanFormat, W as FormattedValue, X as CurrentFormat, Z as DateFormat, _ as DistanceFormat, $ as EnergyFormat, a0 as CurrencyFormat, a1 as NumberFormat, a2 as PhoneFormat, a3 as PowerFormat, a4 as FormatterFunction, a5 as ResistanceFormat, a6 as TemperatureFormat, a7 as TemperatureUnitString, a8 as TemperatureUnit, a9 as TextFormat, aa as VoltageFormat, ab as FieldFormat, d as BaseDataPoint, B as BadgeProps, u as YFormatType, q as TooltipData, ac as DeviceState, ad as GridState, ae as ComponentFormatter, af as LayerSpec, ag as CustomPinsSpec, ah as GeoJsonLayerSpec, ai as RasterLayerSpec, aj as VectorLayerSpec, ak as ClusteredVectorLayerSpec } from './colors-CIEgeqF8.cjs';
|
|
6
|
+
export { A as ActionItem, al as ActionMenu, a as ActionMenuProps, am as AppShell, b as AppShellProps, an as Avatar, c as AvatarProps, ao as Badge, ap as BaseFormat, aq as ChartContext, C as ChartMargin, ar as CodeEditor, e as CodeEditorProps, f as CodeLanguage, g as CodeTheme, as as ColorSpec, at as ComponentFormatOptions, au as CurrentUnit, av as CustomFormat, aw as DEFAULT_MAP_TYPE, ax as DateFormatStyle, ay as DistanceUnit, E as ENTITY_CONFIG, az as EnergyUnit, h as EntityConfig, i as EntityType, H as Heading, aA as InteractiveMap, I as InteractiveMapProps, aB as LayerFeature, aC as LayerStyle, L as Loader, j as Logo, aD as MAP_TYPES, M as MapPoint, aE as MapType, aF as Meter, k as MeterProps, aG as MetricFormat, aH as PercentageFormat, aI as PowerUnit, aJ as RenderType, aK as ResistanceUnit, S as SegmentOption, aL as SegmentedControl, l as SegmentedControlProps, m as SideNav, n as SideNavItem, o as SideNavProps, aM as StackNav, aN as StackNavItem, aO as StackNavLinkComponentProps, aP as StackNavProps, aQ as StackNavTheme, aR as StaticMap, p as StaticMapProps, T as TextLink, aS as TextTransform, aT as TextTruncatePosition, r as TooltipSeries, s as TopNav, t as TopNavProps, aU as VoltageUnit, Y as YFormatSettings, aV as ZoomStops, aW as activeDeviceStates, v as clearColorCache, w as createCategoryColorMap, x as createXScale, y as createYScale, z as defaultMargin, aX as deviceStateLabels, aY as deviceStateMetricFormats, aZ as formatComponentValue, D as getContrastingTextColor, F as getDefaultChartColor, G as getDefaultColors, a_ as getDeviceStateDisplayLabel, a_ as getDeviceStateLabel, J as getEntityConfig, K as getEntityIcon, N as getEntityLabel, a$ as getGridStateLabel, O as getResolvedColor, P as getThemeCategoricalColors, Q as getYFormatSettings, b0 as gridStateLabels, b1 as isActiveDeviceState, b1 as isActiveState, R as isLightColor, b2 as useChartContext, b3 as useComponentFormatter } from './colors-CIEgeqF8.cjs';
|
|
7
7
|
import { Virtualizer } from '@tanstack/react-virtual';
|
|
8
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
9
9
|
import { I as Icon, S as Size, d as IconName$2, B as BaseInputProps } from './RichTextEditor-diZqy_s1.cjs';
|
|
@@ -2548,8 +2548,34 @@ interface ChartContainerProps {
|
|
|
2548
2548
|
enableBrush?: boolean;
|
|
2549
2549
|
/** Height of brush chart (default: 60px) */
|
|
2550
2550
|
brushHeight?: number;
|
|
2551
|
-
/**
|
|
2551
|
+
/**
|
|
2552
|
+
* Notification callback when the zoom range changes.
|
|
2553
|
+
*
|
|
2554
|
+
* Fires on every transition, including the initial `null` render. Use this
|
|
2555
|
+
* for one-way "observe the zoom" plumbing (e.g. driving an external panel
|
|
2556
|
+
* showing the current window).
|
|
2557
|
+
*
|
|
2558
|
+
* In controlled-zoom mode (when the `zoomDomain` prop is provided), this is
|
|
2559
|
+
* ALSO the change callback the parent uses to update its own state —
|
|
2560
|
+
* mirroring the `onHiddenSeriesChange` pattern. The parent should treat the
|
|
2561
|
+
* incoming `domain` argument as the next value to commit to its state.
|
|
2562
|
+
*/
|
|
2552
2563
|
onZoomChange?: (domain: [Date, Date] | null) => void;
|
|
2564
|
+
/**
|
|
2565
|
+
* Controlled zoom domain. When provided, ChartContainer uses this value
|
|
2566
|
+
* instead of its internal useState (controlled mode). Mirrors the
|
|
2567
|
+
* `hiddenSeriesLabels` pattern — useful when an inline + dialog instance
|
|
2568
|
+
* pair need to share zoom state (see BOLT-1160 Phase 3 / SiteEnergyCharts).
|
|
2569
|
+
*
|
|
2570
|
+
* Pass `null` for "full domain, no zoom". Omit entirely to use the default
|
|
2571
|
+
* uncontrolled behaviour (ChartContainer manages its own zoom state).
|
|
2572
|
+
*
|
|
2573
|
+
* When controlled, the visx Zoom transform is kept in sync with the
|
|
2574
|
+
* incoming prop via an internal effect, so brush + scroll-zoom + reset
|
|
2575
|
+
* all continue to work — they just route the new domain through
|
|
2576
|
+
* `onZoomChange` to the parent, which echoes it back via the prop.
|
|
2577
|
+
*/
|
|
2578
|
+
zoomDomain?: [Date, Date] | null;
|
|
2553
2579
|
/**
|
|
2554
2580
|
* Controlled set of hidden series labels. When provided, ChartContainer
|
|
2555
2581
|
* uses this value instead of its internal useState (controlled mode).
|
|
@@ -6741,186 +6767,6 @@ declare namespace SplitPane {
|
|
|
6741
6767
|
declare function Main({ className, children }: SplitPanePanelProps): react_jsx_runtime.JSX.Element;
|
|
6742
6768
|
declare function Aside({ className, children }: SplitPanePanelProps): react_jsx_runtime.JSX.Element;
|
|
6743
6769
|
|
|
6744
|
-
/**
|
|
6745
|
-
* StackNav — Sliding-pane navigation rail with unbounded depth.
|
|
6746
|
-
*
|
|
6747
|
-
* Each item can carry `children` of the same shape. Selecting an item that has
|
|
6748
|
-
* children pushes a new pane onto the navigation stack (sliding the rail one
|
|
6749
|
-
* level deeper); a back affordance pops the top pane. Items that have an
|
|
6750
|
-
* `href` (and no `children`) behave as leaves and call `onSelect` when clicked.
|
|
6751
|
-
*
|
|
6752
|
-
* The metaphor is a navigation stack — like a UIKit `UINavigationController`
|
|
6753
|
-
* but living inside a sidebar. Nesting is recursive: any pane can drill into
|
|
6754
|
-
* the next, so the same shape composes from one level deep to N levels deep
|
|
6755
|
-
* with no code changes.
|
|
6756
|
-
*
|
|
6757
|
-
* @example
|
|
6758
|
-
* ```tsx
|
|
6759
|
-
* const items: StackNavItem[] = [
|
|
6760
|
-
* { id: "home", label: "Home", href: "/" },
|
|
6761
|
-
* {
|
|
6762
|
-
* id: "components",
|
|
6763
|
-
* label: "Components",
|
|
6764
|
-
* href: "/components",
|
|
6765
|
-
* children: [
|
|
6766
|
-
* { id: "button", label: "Button", href: "/components/button" },
|
|
6767
|
-
* {
|
|
6768
|
-
* id: "data",
|
|
6769
|
-
* label: "Data",
|
|
6770
|
-
* children: [
|
|
6771
|
-
* { id: "table", label: "Table", href: "/components/data/table" },
|
|
6772
|
-
* ],
|
|
6773
|
-
* },
|
|
6774
|
-
* ],
|
|
6775
|
-
* },
|
|
6776
|
-
* ];
|
|
6777
|
-
*
|
|
6778
|
-
* <StackNav items={items} value="/components/button" />
|
|
6779
|
-
* ```
|
|
6780
|
-
*/
|
|
6781
|
-
type StackNavItem = {
|
|
6782
|
-
/** Stable identifier. Required for groups; for leaves defaults to `href`. */
|
|
6783
|
-
id: string;
|
|
6784
|
-
/** Display label. */
|
|
6785
|
-
label: string;
|
|
6786
|
-
/**
|
|
6787
|
-
* Target URL for leaves. When omitted (or when `children` is non-empty and
|
|
6788
|
-
* `pushOnSelect` is false), the row acts as a "drill-in" affordance only.
|
|
6789
|
-
*
|
|
6790
|
-
* If both `href` and `children` are present, clicking the row both navigates
|
|
6791
|
-
* to `href` (a section overview) and pushes its sub-pane onto the stack.
|
|
6792
|
-
* This mirrors the Vercel/Linear/Edges dashboard pattern.
|
|
6793
|
-
*/
|
|
6794
|
-
href?: string;
|
|
6795
|
-
/** Optional leading-edge icon. Alias-friendly for item models shared with SideNav. */
|
|
6796
|
-
icon?: React$1.ReactNode;
|
|
6797
|
-
/** Optional trailing-edge content (badge, count, kbd hint, etc.). */
|
|
6798
|
-
trailing?: React$1.ReactNode;
|
|
6799
|
-
/** Optional leading-edge content. Overrides `icon` when both are provided. */
|
|
6800
|
-
leading?: React$1.ReactNode;
|
|
6801
|
-
/** Marks the leaf as a divider — purely visual, not focusable. */
|
|
6802
|
-
divider?: boolean;
|
|
6803
|
-
/** Renders the entry as an uppercase group label rather than a row. */
|
|
6804
|
-
groupLabel?: boolean;
|
|
6805
|
-
/** Nested children. Triggers the drill-in arrow and pushes a new pane. */
|
|
6806
|
-
children?: StackNavItem[];
|
|
6807
|
-
/**
|
|
6808
|
-
* When `false` and the row has `children`, selecting the row only navigates
|
|
6809
|
-
* to `href` (if present) — it does not push a sub-pane. Useful for
|
|
6810
|
-
* "Overview" leaves that live in the same array as their siblings. Defaults
|
|
6811
|
-
* to `true`.
|
|
6812
|
-
*/
|
|
6813
|
-
pushOnSelect?: boolean;
|
|
6814
|
-
/** Aria-label override for screen readers. */
|
|
6815
|
-
ariaLabel?: string;
|
|
6816
|
-
};
|
|
6817
|
-
type StackNavLinkComponentProps = {
|
|
6818
|
-
href: string;
|
|
6819
|
-
"aria-label"?: string;
|
|
6820
|
-
className?: string;
|
|
6821
|
-
children?: React$1.ReactNode;
|
|
6822
|
-
"aria-current"?: "page" | undefined;
|
|
6823
|
-
onClick?: (event: React$1.MouseEvent<HTMLAnchorElement>) => void;
|
|
6824
|
-
};
|
|
6825
|
-
/**
|
|
6826
|
-
* Color overrides for the rail surface and row affordances. Any value accepted
|
|
6827
|
-
* by CSS (`#hex`, `rgb()`, `var(--token)`, etc.) is fine; each entry maps to a
|
|
6828
|
-
* CSS custom property on the rail container, so consumers can also override
|
|
6829
|
-
* the same variables in CSS instead of via props. See `Theming` below.
|
|
6830
|
-
*/
|
|
6831
|
-
type StackNavTheme = {
|
|
6832
|
-
/** Rail container background. Defaults to `var(--color-background-surface)`. */
|
|
6833
|
-
background?: string;
|
|
6834
|
-
/** Active row background. Defaults to `var(--color-background-selected)`. */
|
|
6835
|
-
activeBackground?: string;
|
|
6836
|
-
/** Active row text color. Defaults to `var(--color-text-primary)`. */
|
|
6837
|
-
activeColor?: string;
|
|
6838
|
-
/** Hover row background. Defaults to `var(--color-background-hover)`. */
|
|
6839
|
-
hoverBackground?: string;
|
|
6840
|
-
/** Border color (rail border, header/footer separators, dividers). Defaults to `var(--color-border-default)`. */
|
|
6841
|
-
borderColor?: string;
|
|
6842
|
-
};
|
|
6843
|
-
type StackNavProps = {
|
|
6844
|
-
/** Root pane items. Each item can recurse with `children`. */
|
|
6845
|
-
items: StackNavItem[];
|
|
6846
|
-
/**
|
|
6847
|
-
* Additional L1 items pinned to the bottom of the root pane. Behave identically
|
|
6848
|
-
* to `items` — leaves navigate, parents push a sub-pane on click, deep-links
|
|
6849
|
-
* via `value` open them. Use for "tool" sections that sit at the same level
|
|
6850
|
-
* as the primary IA but visually belong at the bottom (e.g., Settings,
|
|
6851
|
-
* Help, Inspector). A subtle border separates them from `items`.
|
|
6852
|
-
*
|
|
6853
|
-
* **Constraint:** L1 `id` and `href` values must be unique across `items` and
|
|
6854
|
-
* `bottomItems`. Stack tokens and `value` lookups use these as keys, so a
|
|
6855
|
-
* collision causes the wrong entry to resolve. Dev builds log a warning when
|
|
6856
|
-
* a duplicate is detected.
|
|
6857
|
-
*/
|
|
6858
|
-
bottomItems?: StackNavItem[];
|
|
6859
|
-
/**
|
|
6860
|
-
* Active leaf identifier (matched against `href` or `id`). When set, the
|
|
6861
|
-
* StackNav auto-opens the path that contains it on first render and again
|
|
6862
|
-
* whenever `value` changes externally.
|
|
6863
|
-
*/
|
|
6864
|
-
value?: string | null;
|
|
6865
|
-
/**
|
|
6866
|
-
* Initial open stack (array of ids from root to deepest pane). Ignored
|
|
6867
|
-
* after first render — for ongoing control use `stack` + `onStackChange`.
|
|
6868
|
-
*/
|
|
6869
|
-
defaultStack?: string[];
|
|
6870
|
-
/**
|
|
6871
|
-
* Fully-controlled open stack. When provided, the component does not manage
|
|
6872
|
-
* its own pane state.
|
|
6873
|
-
*/
|
|
6874
|
-
stack?: string[];
|
|
6875
|
-
/** Fires when the open pane stack changes (drill-in / back). */
|
|
6876
|
-
onStackChange?: (stack: string[]) => void;
|
|
6877
|
-
/**
|
|
6878
|
-
* Fires when a leaf row is clicked (after `href` is followed). Receives the
|
|
6879
|
-
* full item plus its ancestor breadcrumb. Use this to track activation
|
|
6880
|
-
* outside of router-driven flows.
|
|
6881
|
-
*/
|
|
6882
|
-
onSelect?: (item: StackNavItem, breadcrumb: StackNavItem[]) => void;
|
|
6883
|
-
/**
|
|
6884
|
-
* Custom anchor component (Next.js `Link`, react-router `Link`, etc.).
|
|
6885
|
-
* Receives `href`, `className`, `aria-current`, `onClick`, and `children`.
|
|
6886
|
-
* Defaults to a native `<a>`.
|
|
6887
|
-
*/
|
|
6888
|
-
linkComponent?: React$1.ComponentType<StackNavLinkComponentProps>;
|
|
6889
|
-
/** Fixed top region (logo, search trigger). */
|
|
6890
|
-
header?: React$1.ReactNode;
|
|
6891
|
-
/** Fixed bottom region (theme toggle, account menu). */
|
|
6892
|
-
footer?: React$1.ReactNode;
|
|
6893
|
-
/** Title shown above the root pane (optional — usually folded into header). */
|
|
6894
|
-
rootLabel?: string;
|
|
6895
|
-
/**
|
|
6896
|
-
* Whether the rail itself should size itself to the viewport and stick.
|
|
6897
|
-
* Defaults to `true`. Disable for embedded / non-fullheight contexts.
|
|
6898
|
-
*/
|
|
6899
|
-
sticky?: boolean;
|
|
6900
|
-
/** Width of the rail in pixels. Defaults to 260. */
|
|
6901
|
-
width?: number;
|
|
6902
|
-
/** Aria-label for the rail's `<aside>`. Defaults to "Navigation". */
|
|
6903
|
-
ariaLabel?: string;
|
|
6904
|
-
/**
|
|
6905
|
-
* Per-instance color overrides for the rail surface and row affordances.
|
|
6906
|
-
* Each key maps to a CSS custom property (see {@link StackNavTheme}).
|
|
6907
|
-
* Anything left unset falls back to the corresponding `--edges-stack-nav-*`
|
|
6908
|
-
* variable on the rail, which itself defaults to a neutral Edges token.
|
|
6909
|
-
*/
|
|
6910
|
-
theme?: StackNavTheme;
|
|
6911
|
-
/**
|
|
6912
|
-
* Enables the subtle pane slide/fade transition when drilling in or popping
|
|
6913
|
-
* back. Defaults to `true`; set `false` for tests, perf-sensitive embedded
|
|
6914
|
-
* contexts, or users/surfaces that need instant pane swaps.
|
|
6915
|
-
*/
|
|
6916
|
-
animated?: boolean;
|
|
6917
|
-
/** Inline style passthrough on the rail container (merged with theme vars). */
|
|
6918
|
-
style?: React$1.CSSProperties;
|
|
6919
|
-
/** Extra classes appended to the rail container. */
|
|
6920
|
-
className?: string;
|
|
6921
|
-
};
|
|
6922
|
-
declare function StackNav({ items, bottomItems, value, defaultStack, stack: controlledStack, onStackChange, onSelect, linkComponent: LinkComponent, header, footer, rootLabel, sticky, width, ariaLabel, theme, animated, style, className, }: StackNavProps): react_jsx_runtime.JSX.Element;
|
|
6923
|
-
|
|
6924
6770
|
/**
|
|
6925
6771
|
* StatList — Compact key-value statistics display
|
|
6926
6772
|
*
|
|
@@ -7501,4 +7347,4 @@ declare function getStateTone(state: DeviceState): StatTone;
|
|
|
7501
7347
|
*/
|
|
7502
7348
|
type LinkComponentType = React.ComponentType<any>;
|
|
7503
7349
|
|
|
7504
|
-
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, type ApplyDataOperationsOptions, type ApplyDataOperationsResult, AreaSeries, 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, 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 CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, ChartEventMarkers, type ChartEventMarkersProps, ChartEventSpans, type ChartEventSpansProps, type ChartExportMetadata, ChartTooltip, Chip, ChipInputField, type ChipInputFieldProps, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, CommandPalette, type CommandPaletteProps, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ContactCard, type ContactCardProps, ContactMetaCell, ContactMetaDisplay, type ContactMetaDisplayProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomCell, type CustomCellProps, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, 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, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type EventMarker, type EventMarkerType, type EventSpan, type ExportType, type FacetConfig, type FacetCounts, type FacetType, FieldFormat, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedCell, 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, 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, MapClusterMarker, type MapClusterMarkerProps, MapLegend, type MapLegendItem, type MapLegendProps, MapMarker, MapMarkerBadge, type MapMarkerBadgeProps, type BadgeTokens as MapMarkerBadgeTokens, type ChipTokens as MapMarkerChipTokens, type ExternalBadgeTokens as MapMarkerExternalBadgeTokens, type InlineBadgeTokens as MapMarkerInlineBadgeTokens, type MapMarkerProps, type MapMarkerTokens, MiniBarCell, type MiniBarCellProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, type NodeState, 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 ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, 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, SiteCard, type SiteCardProps, SiteContactCard, type SiteContactCardProps, SiteMetaCell, SiteMetaDisplay, type SiteMetaDisplayProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, SparklineCell, type SparklineCellProps, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, StackNav, type StackNavItem, type StackNavLinkComponentProps, type StackNavProps, type StackNavTheme, 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, 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, VectorLayerSpec, VoltageFormat, type WindowSize, type WindowSizeOption, YFormatType, addFilterCondition, applyDataOperations, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createEmptyFilter, createFilter, createFilters, createFormat, 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, getDateParts, getEventColor, getExportFormatName, getExportHeaders, getFilterFields, getLinkClasses, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, mapMarkerTokens, mergeMapMarkerTokens, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, prepareTableDataForExport, registerPhosphorIcon, removeFilterCondition, 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, typeRole, typographyRole, ucFirst, useBreakpoint, useClientDataControls, useColorMode, useDataControls, useDebounce, useElementSize, useInfiniteScroll, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, useTableExport, wrapWithLink, yardsToMeters };
|
|
7350
|
+
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, type ApplyDataOperationsOptions, type ApplyDataOperationsResult, AreaSeries, 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, 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 CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, ChartEventMarkers, type ChartEventMarkersProps, ChartEventSpans, type ChartEventSpansProps, type ChartExportMetadata, ChartTooltip, Chip, ChipInputField, type ChipInputFieldProps, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, CommandPalette, type CommandPaletteProps, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ContactCard, type ContactCardProps, ContactMetaCell, ContactMetaDisplay, type ContactMetaDisplayProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomCell, type CustomCellProps, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, 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, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type EventMarker, type EventMarkerType, type EventSpan, type ExportType, type FacetConfig, type FacetCounts, type FacetType, FieldFormat, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedCell, 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, 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, MapClusterMarker, type MapClusterMarkerProps, MapLegend, type MapLegendItem, type MapLegendProps, MapMarker, MapMarkerBadge, type MapMarkerBadgeProps, type BadgeTokens as MapMarkerBadgeTokens, type ChipTokens as MapMarkerChipTokens, type ExternalBadgeTokens as MapMarkerExternalBadgeTokens, type InlineBadgeTokens as MapMarkerInlineBadgeTokens, type MapMarkerProps, type MapMarkerTokens, MiniBarCell, type MiniBarCellProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, type NodeState, 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 ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, 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, SiteCard, type SiteCardProps, SiteContactCard, type SiteContactCardProps, SiteMetaCell, 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, 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, VectorLayerSpec, VoltageFormat, type WindowSize, type WindowSizeOption, YFormatType, addFilterCondition, applyDataOperations, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createEmptyFilter, createFilter, createFilters, createFormat, 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, getDateParts, getEventColor, getExportFormatName, getExportHeaders, getFilterFields, getLinkClasses, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, mapMarkerTokens, mergeMapMarkerTokens, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, prepareTableDataForExport, registerPhosphorIcon, removeFilterCondition, 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, typeRole, typographyRole, ucFirst, useBreakpoint, useClientDataControls, useColorMode, useDataControls, useDebounce, useElementSize, useInfiniteScroll, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, useTableExport, wrapWithLink, yardsToMeters };
|
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { BreadcrumbProps, BreadcrumbsProps, DateValue, CalendarProps as Calendar
|
|
|
2
2
|
export { BreadcrumbProps, BreadcrumbsProps, DialogTrigger } from 'react-aria-components';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import React__default, { RefObject, ComponentType, ReactNode, HTMLAttributes, ComponentProps, CSSProperties, Component, ErrorInfo } from 'react';
|
|
5
|
-
import {
|
|
6
|
-
export { A as ActionItem,
|
|
5
|
+
import { U as FieldValue, V as BooleanFormat, W as FormattedValue, X as CurrentFormat, Z as DateFormat, _ as DistanceFormat, $ as EnergyFormat, a0 as CurrencyFormat, a1 as NumberFormat, a2 as PhoneFormat, a3 as PowerFormat, a4 as FormatterFunction, a5 as ResistanceFormat, a6 as TemperatureFormat, a7 as TemperatureUnitString, a8 as TemperatureUnit, a9 as TextFormat, aa as VoltageFormat, ab as FieldFormat, d as BaseDataPoint, B as BadgeProps, u as YFormatType, q as TooltipData, ac as DeviceState, ad as GridState, ae as ComponentFormatter, af as LayerSpec, ag as CustomPinsSpec, ah as GeoJsonLayerSpec, ai as RasterLayerSpec, aj as VectorLayerSpec, ak as ClusteredVectorLayerSpec } from './colors-CQJMI7Wz.js';
|
|
6
|
+
export { A as ActionItem, al as ActionMenu, a as ActionMenuProps, am as AppShell, b as AppShellProps, an as Avatar, c as AvatarProps, ao as Badge, ap as BaseFormat, aq as ChartContext, C as ChartMargin, ar as CodeEditor, e as CodeEditorProps, f as CodeLanguage, g as CodeTheme, as as ColorSpec, at as ComponentFormatOptions, au as CurrentUnit, av as CustomFormat, aw as DEFAULT_MAP_TYPE, ax as DateFormatStyle, ay as DistanceUnit, E as ENTITY_CONFIG, az as EnergyUnit, h as EntityConfig, i as EntityType, H as Heading, aA as InteractiveMap, I as InteractiveMapProps, aB as LayerFeature, aC as LayerStyle, L as Loader, j as Logo, aD as MAP_TYPES, M as MapPoint, aE as MapType, aF as Meter, k as MeterProps, aG as MetricFormat, aH as PercentageFormat, aI as PowerUnit, aJ as RenderType, aK as ResistanceUnit, S as SegmentOption, aL as SegmentedControl, l as SegmentedControlProps, m as SideNav, n as SideNavItem, o as SideNavProps, aM as StackNav, aN as StackNavItem, aO as StackNavLinkComponentProps, aP as StackNavProps, aQ as StackNavTheme, aR as StaticMap, p as StaticMapProps, T as TextLink, aS as TextTransform, aT as TextTruncatePosition, r as TooltipSeries, s as TopNav, t as TopNavProps, aU as VoltageUnit, Y as YFormatSettings, aV as ZoomStops, aW as activeDeviceStates, v as clearColorCache, w as createCategoryColorMap, x as createXScale, y as createYScale, z as defaultMargin, aX as deviceStateLabels, aY as deviceStateMetricFormats, aZ as formatComponentValue, D as getContrastingTextColor, F as getDefaultChartColor, G as getDefaultColors, a_ as getDeviceStateDisplayLabel, a_ as getDeviceStateLabel, J as getEntityConfig, K as getEntityIcon, N as getEntityLabel, a$ as getGridStateLabel, O as getResolvedColor, P as getThemeCategoricalColors, Q as getYFormatSettings, b0 as gridStateLabels, b1 as isActiveDeviceState, b1 as isActiveState, R as isLightColor, b2 as useChartContext, b3 as useComponentFormatter } from './colors-CQJMI7Wz.js';
|
|
7
7
|
import { Virtualizer } from '@tanstack/react-virtual';
|
|
8
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
9
9
|
import { I as Icon, S as Size, d as IconName$2, B as BaseInputProps } from './RichTextEditor-diZqy_s1.js';
|
|
@@ -2548,8 +2548,34 @@ interface ChartContainerProps {
|
|
|
2548
2548
|
enableBrush?: boolean;
|
|
2549
2549
|
/** Height of brush chart (default: 60px) */
|
|
2550
2550
|
brushHeight?: number;
|
|
2551
|
-
/**
|
|
2551
|
+
/**
|
|
2552
|
+
* Notification callback when the zoom range changes.
|
|
2553
|
+
*
|
|
2554
|
+
* Fires on every transition, including the initial `null` render. Use this
|
|
2555
|
+
* for one-way "observe the zoom" plumbing (e.g. driving an external panel
|
|
2556
|
+
* showing the current window).
|
|
2557
|
+
*
|
|
2558
|
+
* In controlled-zoom mode (when the `zoomDomain` prop is provided), this is
|
|
2559
|
+
* ALSO the change callback the parent uses to update its own state —
|
|
2560
|
+
* mirroring the `onHiddenSeriesChange` pattern. The parent should treat the
|
|
2561
|
+
* incoming `domain` argument as the next value to commit to its state.
|
|
2562
|
+
*/
|
|
2552
2563
|
onZoomChange?: (domain: [Date, Date] | null) => void;
|
|
2564
|
+
/**
|
|
2565
|
+
* Controlled zoom domain. When provided, ChartContainer uses this value
|
|
2566
|
+
* instead of its internal useState (controlled mode). Mirrors the
|
|
2567
|
+
* `hiddenSeriesLabels` pattern — useful when an inline + dialog instance
|
|
2568
|
+
* pair need to share zoom state (see BOLT-1160 Phase 3 / SiteEnergyCharts).
|
|
2569
|
+
*
|
|
2570
|
+
* Pass `null` for "full domain, no zoom". Omit entirely to use the default
|
|
2571
|
+
* uncontrolled behaviour (ChartContainer manages its own zoom state).
|
|
2572
|
+
*
|
|
2573
|
+
* When controlled, the visx Zoom transform is kept in sync with the
|
|
2574
|
+
* incoming prop via an internal effect, so brush + scroll-zoom + reset
|
|
2575
|
+
* all continue to work — they just route the new domain through
|
|
2576
|
+
* `onZoomChange` to the parent, which echoes it back via the prop.
|
|
2577
|
+
*/
|
|
2578
|
+
zoomDomain?: [Date, Date] | null;
|
|
2553
2579
|
/**
|
|
2554
2580
|
* Controlled set of hidden series labels. When provided, ChartContainer
|
|
2555
2581
|
* uses this value instead of its internal useState (controlled mode).
|
|
@@ -6741,186 +6767,6 @@ declare namespace SplitPane {
|
|
|
6741
6767
|
declare function Main({ className, children }: SplitPanePanelProps): react_jsx_runtime.JSX.Element;
|
|
6742
6768
|
declare function Aside({ className, children }: SplitPanePanelProps): react_jsx_runtime.JSX.Element;
|
|
6743
6769
|
|
|
6744
|
-
/**
|
|
6745
|
-
* StackNav — Sliding-pane navigation rail with unbounded depth.
|
|
6746
|
-
*
|
|
6747
|
-
* Each item can carry `children` of the same shape. Selecting an item that has
|
|
6748
|
-
* children pushes a new pane onto the navigation stack (sliding the rail one
|
|
6749
|
-
* level deeper); a back affordance pops the top pane. Items that have an
|
|
6750
|
-
* `href` (and no `children`) behave as leaves and call `onSelect` when clicked.
|
|
6751
|
-
*
|
|
6752
|
-
* The metaphor is a navigation stack — like a UIKit `UINavigationController`
|
|
6753
|
-
* but living inside a sidebar. Nesting is recursive: any pane can drill into
|
|
6754
|
-
* the next, so the same shape composes from one level deep to N levels deep
|
|
6755
|
-
* with no code changes.
|
|
6756
|
-
*
|
|
6757
|
-
* @example
|
|
6758
|
-
* ```tsx
|
|
6759
|
-
* const items: StackNavItem[] = [
|
|
6760
|
-
* { id: "home", label: "Home", href: "/" },
|
|
6761
|
-
* {
|
|
6762
|
-
* id: "components",
|
|
6763
|
-
* label: "Components",
|
|
6764
|
-
* href: "/components",
|
|
6765
|
-
* children: [
|
|
6766
|
-
* { id: "button", label: "Button", href: "/components/button" },
|
|
6767
|
-
* {
|
|
6768
|
-
* id: "data",
|
|
6769
|
-
* label: "Data",
|
|
6770
|
-
* children: [
|
|
6771
|
-
* { id: "table", label: "Table", href: "/components/data/table" },
|
|
6772
|
-
* ],
|
|
6773
|
-
* },
|
|
6774
|
-
* ],
|
|
6775
|
-
* },
|
|
6776
|
-
* ];
|
|
6777
|
-
*
|
|
6778
|
-
* <StackNav items={items} value="/components/button" />
|
|
6779
|
-
* ```
|
|
6780
|
-
*/
|
|
6781
|
-
type StackNavItem = {
|
|
6782
|
-
/** Stable identifier. Required for groups; for leaves defaults to `href`. */
|
|
6783
|
-
id: string;
|
|
6784
|
-
/** Display label. */
|
|
6785
|
-
label: string;
|
|
6786
|
-
/**
|
|
6787
|
-
* Target URL for leaves. When omitted (or when `children` is non-empty and
|
|
6788
|
-
* `pushOnSelect` is false), the row acts as a "drill-in" affordance only.
|
|
6789
|
-
*
|
|
6790
|
-
* If both `href` and `children` are present, clicking the row both navigates
|
|
6791
|
-
* to `href` (a section overview) and pushes its sub-pane onto the stack.
|
|
6792
|
-
* This mirrors the Vercel/Linear/Edges dashboard pattern.
|
|
6793
|
-
*/
|
|
6794
|
-
href?: string;
|
|
6795
|
-
/** Optional leading-edge icon. Alias-friendly for item models shared with SideNav. */
|
|
6796
|
-
icon?: React$1.ReactNode;
|
|
6797
|
-
/** Optional trailing-edge content (badge, count, kbd hint, etc.). */
|
|
6798
|
-
trailing?: React$1.ReactNode;
|
|
6799
|
-
/** Optional leading-edge content. Overrides `icon` when both are provided. */
|
|
6800
|
-
leading?: React$1.ReactNode;
|
|
6801
|
-
/** Marks the leaf as a divider — purely visual, not focusable. */
|
|
6802
|
-
divider?: boolean;
|
|
6803
|
-
/** Renders the entry as an uppercase group label rather than a row. */
|
|
6804
|
-
groupLabel?: boolean;
|
|
6805
|
-
/** Nested children. Triggers the drill-in arrow and pushes a new pane. */
|
|
6806
|
-
children?: StackNavItem[];
|
|
6807
|
-
/**
|
|
6808
|
-
* When `false` and the row has `children`, selecting the row only navigates
|
|
6809
|
-
* to `href` (if present) — it does not push a sub-pane. Useful for
|
|
6810
|
-
* "Overview" leaves that live in the same array as their siblings. Defaults
|
|
6811
|
-
* to `true`.
|
|
6812
|
-
*/
|
|
6813
|
-
pushOnSelect?: boolean;
|
|
6814
|
-
/** Aria-label override for screen readers. */
|
|
6815
|
-
ariaLabel?: string;
|
|
6816
|
-
};
|
|
6817
|
-
type StackNavLinkComponentProps = {
|
|
6818
|
-
href: string;
|
|
6819
|
-
"aria-label"?: string;
|
|
6820
|
-
className?: string;
|
|
6821
|
-
children?: React$1.ReactNode;
|
|
6822
|
-
"aria-current"?: "page" | undefined;
|
|
6823
|
-
onClick?: (event: React$1.MouseEvent<HTMLAnchorElement>) => void;
|
|
6824
|
-
};
|
|
6825
|
-
/**
|
|
6826
|
-
* Color overrides for the rail surface and row affordances. Any value accepted
|
|
6827
|
-
* by CSS (`#hex`, `rgb()`, `var(--token)`, etc.) is fine; each entry maps to a
|
|
6828
|
-
* CSS custom property on the rail container, so consumers can also override
|
|
6829
|
-
* the same variables in CSS instead of via props. See `Theming` below.
|
|
6830
|
-
*/
|
|
6831
|
-
type StackNavTheme = {
|
|
6832
|
-
/** Rail container background. Defaults to `var(--color-background-surface)`. */
|
|
6833
|
-
background?: string;
|
|
6834
|
-
/** Active row background. Defaults to `var(--color-background-selected)`. */
|
|
6835
|
-
activeBackground?: string;
|
|
6836
|
-
/** Active row text color. Defaults to `var(--color-text-primary)`. */
|
|
6837
|
-
activeColor?: string;
|
|
6838
|
-
/** Hover row background. Defaults to `var(--color-background-hover)`. */
|
|
6839
|
-
hoverBackground?: string;
|
|
6840
|
-
/** Border color (rail border, header/footer separators, dividers). Defaults to `var(--color-border-default)`. */
|
|
6841
|
-
borderColor?: string;
|
|
6842
|
-
};
|
|
6843
|
-
type StackNavProps = {
|
|
6844
|
-
/** Root pane items. Each item can recurse with `children`. */
|
|
6845
|
-
items: StackNavItem[];
|
|
6846
|
-
/**
|
|
6847
|
-
* Additional L1 items pinned to the bottom of the root pane. Behave identically
|
|
6848
|
-
* to `items` — leaves navigate, parents push a sub-pane on click, deep-links
|
|
6849
|
-
* via `value` open them. Use for "tool" sections that sit at the same level
|
|
6850
|
-
* as the primary IA but visually belong at the bottom (e.g., Settings,
|
|
6851
|
-
* Help, Inspector). A subtle border separates them from `items`.
|
|
6852
|
-
*
|
|
6853
|
-
* **Constraint:** L1 `id` and `href` values must be unique across `items` and
|
|
6854
|
-
* `bottomItems`. Stack tokens and `value` lookups use these as keys, so a
|
|
6855
|
-
* collision causes the wrong entry to resolve. Dev builds log a warning when
|
|
6856
|
-
* a duplicate is detected.
|
|
6857
|
-
*/
|
|
6858
|
-
bottomItems?: StackNavItem[];
|
|
6859
|
-
/**
|
|
6860
|
-
* Active leaf identifier (matched against `href` or `id`). When set, the
|
|
6861
|
-
* StackNav auto-opens the path that contains it on first render and again
|
|
6862
|
-
* whenever `value` changes externally.
|
|
6863
|
-
*/
|
|
6864
|
-
value?: string | null;
|
|
6865
|
-
/**
|
|
6866
|
-
* Initial open stack (array of ids from root to deepest pane). Ignored
|
|
6867
|
-
* after first render — for ongoing control use `stack` + `onStackChange`.
|
|
6868
|
-
*/
|
|
6869
|
-
defaultStack?: string[];
|
|
6870
|
-
/**
|
|
6871
|
-
* Fully-controlled open stack. When provided, the component does not manage
|
|
6872
|
-
* its own pane state.
|
|
6873
|
-
*/
|
|
6874
|
-
stack?: string[];
|
|
6875
|
-
/** Fires when the open pane stack changes (drill-in / back). */
|
|
6876
|
-
onStackChange?: (stack: string[]) => void;
|
|
6877
|
-
/**
|
|
6878
|
-
* Fires when a leaf row is clicked (after `href` is followed). Receives the
|
|
6879
|
-
* full item plus its ancestor breadcrumb. Use this to track activation
|
|
6880
|
-
* outside of router-driven flows.
|
|
6881
|
-
*/
|
|
6882
|
-
onSelect?: (item: StackNavItem, breadcrumb: StackNavItem[]) => void;
|
|
6883
|
-
/**
|
|
6884
|
-
* Custom anchor component (Next.js `Link`, react-router `Link`, etc.).
|
|
6885
|
-
* Receives `href`, `className`, `aria-current`, `onClick`, and `children`.
|
|
6886
|
-
* Defaults to a native `<a>`.
|
|
6887
|
-
*/
|
|
6888
|
-
linkComponent?: React$1.ComponentType<StackNavLinkComponentProps>;
|
|
6889
|
-
/** Fixed top region (logo, search trigger). */
|
|
6890
|
-
header?: React$1.ReactNode;
|
|
6891
|
-
/** Fixed bottom region (theme toggle, account menu). */
|
|
6892
|
-
footer?: React$1.ReactNode;
|
|
6893
|
-
/** Title shown above the root pane (optional — usually folded into header). */
|
|
6894
|
-
rootLabel?: string;
|
|
6895
|
-
/**
|
|
6896
|
-
* Whether the rail itself should size itself to the viewport and stick.
|
|
6897
|
-
* Defaults to `true`. Disable for embedded / non-fullheight contexts.
|
|
6898
|
-
*/
|
|
6899
|
-
sticky?: boolean;
|
|
6900
|
-
/** Width of the rail in pixels. Defaults to 260. */
|
|
6901
|
-
width?: number;
|
|
6902
|
-
/** Aria-label for the rail's `<aside>`. Defaults to "Navigation". */
|
|
6903
|
-
ariaLabel?: string;
|
|
6904
|
-
/**
|
|
6905
|
-
* Per-instance color overrides for the rail surface and row affordances.
|
|
6906
|
-
* Each key maps to a CSS custom property (see {@link StackNavTheme}).
|
|
6907
|
-
* Anything left unset falls back to the corresponding `--edges-stack-nav-*`
|
|
6908
|
-
* variable on the rail, which itself defaults to a neutral Edges token.
|
|
6909
|
-
*/
|
|
6910
|
-
theme?: StackNavTheme;
|
|
6911
|
-
/**
|
|
6912
|
-
* Enables the subtle pane slide/fade transition when drilling in or popping
|
|
6913
|
-
* back. Defaults to `true`; set `false` for tests, perf-sensitive embedded
|
|
6914
|
-
* contexts, or users/surfaces that need instant pane swaps.
|
|
6915
|
-
*/
|
|
6916
|
-
animated?: boolean;
|
|
6917
|
-
/** Inline style passthrough on the rail container (merged with theme vars). */
|
|
6918
|
-
style?: React$1.CSSProperties;
|
|
6919
|
-
/** Extra classes appended to the rail container. */
|
|
6920
|
-
className?: string;
|
|
6921
|
-
};
|
|
6922
|
-
declare function StackNav({ items, bottomItems, value, defaultStack, stack: controlledStack, onStackChange, onSelect, linkComponent: LinkComponent, header, footer, rootLabel, sticky, width, ariaLabel, theme, animated, style, className, }: StackNavProps): react_jsx_runtime.JSX.Element;
|
|
6923
|
-
|
|
6924
6770
|
/**
|
|
6925
6771
|
* StatList — Compact key-value statistics display
|
|
6926
6772
|
*
|
|
@@ -7501,4 +7347,4 @@ declare function getStateTone(state: DeviceState): StatTone;
|
|
|
7501
7347
|
*/
|
|
7502
7348
|
type LinkComponentType = React.ComponentType<any>;
|
|
7503
7349
|
|
|
7504
|
-
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, type ApplyDataOperationsOptions, type ApplyDataOperationsResult, AreaSeries, 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, 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 CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, ChartEventMarkers, type ChartEventMarkersProps, ChartEventSpans, type ChartEventSpansProps, type ChartExportMetadata, ChartTooltip, Chip, ChipInputField, type ChipInputFieldProps, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, CommandPalette, type CommandPaletteProps, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ContactCard, type ContactCardProps, ContactMetaCell, ContactMetaDisplay, type ContactMetaDisplayProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomCell, type CustomCellProps, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, 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, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type EventMarker, type EventMarkerType, type EventSpan, type ExportType, type FacetConfig, type FacetCounts, type FacetType, FieldFormat, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedCell, 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, 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, MapClusterMarker, type MapClusterMarkerProps, MapLegend, type MapLegendItem, type MapLegendProps, MapMarker, MapMarkerBadge, type MapMarkerBadgeProps, type BadgeTokens as MapMarkerBadgeTokens, type ChipTokens as MapMarkerChipTokens, type ExternalBadgeTokens as MapMarkerExternalBadgeTokens, type InlineBadgeTokens as MapMarkerInlineBadgeTokens, type MapMarkerProps, type MapMarkerTokens, MiniBarCell, type MiniBarCellProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, type NodeState, 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 ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, 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, SiteCard, type SiteCardProps, SiteContactCard, type SiteContactCardProps, SiteMetaCell, SiteMetaDisplay, type SiteMetaDisplayProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, SparklineCell, type SparklineCellProps, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, StackNav, type StackNavItem, type StackNavLinkComponentProps, type StackNavProps, type StackNavTheme, 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, 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, VectorLayerSpec, VoltageFormat, type WindowSize, type WindowSizeOption, YFormatType, addFilterCondition, applyDataOperations, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createEmptyFilter, createFilter, createFilters, createFormat, 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, getDateParts, getEventColor, getExportFormatName, getExportHeaders, getFilterFields, getLinkClasses, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, mapMarkerTokens, mergeMapMarkerTokens, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, prepareTableDataForExport, registerPhosphorIcon, removeFilterCondition, 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, typeRole, typographyRole, ucFirst, useBreakpoint, useClientDataControls, useColorMode, useDataControls, useDebounce, useElementSize, useInfiniteScroll, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, useTableExport, wrapWithLink, yardsToMeters };
|
|
7350
|
+
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, type ApplyDataOperationsOptions, type ApplyDataOperationsResult, AreaSeries, 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, 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 CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, ChartEventMarkers, type ChartEventMarkersProps, ChartEventSpans, type ChartEventSpansProps, type ChartExportMetadata, ChartTooltip, Chip, ChipInputField, type ChipInputFieldProps, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, CommandPalette, type CommandPaletteProps, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, ContactCard, type ContactCardProps, ContactMetaCell, ContactMetaDisplay, type ContactMetaDisplayProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomCell, type CustomCellProps, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, 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, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type EventMarker, type EventMarkerType, type EventSpan, type ExportType, type FacetConfig, type FacetCounts, type FacetType, FieldFormat, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedCell, 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, 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, MapClusterMarker, type MapClusterMarkerProps, MapLegend, type MapLegendItem, type MapLegendProps, MapMarker, MapMarkerBadge, type MapMarkerBadgeProps, type BadgeTokens as MapMarkerBadgeTokens, type ChipTokens as MapMarkerChipTokens, type ExternalBadgeTokens as MapMarkerExternalBadgeTokens, type InlineBadgeTokens as MapMarkerInlineBadgeTokens, type MapMarkerProps, type MapMarkerTokens, MiniBarCell, type MiniBarCellProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, type NodeState, 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 ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, 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, SiteCard, type SiteCardProps, SiteContactCard, type SiteContactCardProps, SiteMetaCell, 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, 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, VectorLayerSpec, VoltageFormat, type WindowSize, type WindowSizeOption, YFormatType, addFilterCondition, applyDataOperations, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createEmptyFilter, createFilter, createFilters, createFormat, 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, getDateParts, getEventColor, getExportFormatName, getExportHeaders, getFilterFields, getLinkClasses, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, mapMarkerTokens, mergeMapMarkerTokens, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, prepareTableDataForExport, registerPhosphorIcon, removeFilterCondition, 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, typeRole, typographyRole, ucFirst, useBreakpoint, useClientDataControls, useColorMode, useDataControls, useDebounce, useElementSize, useInfiniteScroll, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, useTableExport, wrapWithLink, yardsToMeters };
|