@texturehq/edges 1.36.1 → 1.38.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-CBDlvX1A.d.cts} +238 -11
- package/dist/{colors-Dq4EZi3c.d.ts → colors-op_IMV5O.d.ts} +238 -11
- package/dist/index.cjs +30 -96
- 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 +51 -439
- package/dist/index.d.ts +51 -439
- package/dist/index.js +30 -96
- package/dist/index.js.map +1 -1
- package/dist/rhf/index.cjs +1 -1
- package/dist/rhf/index.cjs.map +1 -1
- package/dist/rhf/index.js +1 -1
- package/dist/rhf/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 -16
- 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-CBDlvX1A.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 mapValuesToCategoricalColors, b3 as useChartContext, b4 as useComponentFormatter } from './colors-CBDlvX1A.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';
|
|
@@ -2541,6 +2541,23 @@ interface ChartContainerProps {
|
|
|
2541
2541
|
* @example "energy", "currency", { type: "temperature", unit: "F" }
|
|
2542
2542
|
*/
|
|
2543
2543
|
yFormatter?: YFormatType;
|
|
2544
|
+
/**
|
|
2545
|
+
* Explicit y-axis domain `[min, max]`. Overrides the default behavior of
|
|
2546
|
+
* anchoring the axis at zero for all-positive data. Use for deviation-style
|
|
2547
|
+
* metrics (voltage ~240V, frequency ~60Hz, power factor ~1.0) where the
|
|
2548
|
+
* signal is variation around a nominal value, not magnitude from zero.
|
|
2549
|
+
*/
|
|
2550
|
+
yDomain?: [number, number];
|
|
2551
|
+
/**
|
|
2552
|
+
* Horizontal reference lines drawn across the plot at fixed y-values — e.g.
|
|
2553
|
+
* regulatory limits (ANSI voltage bounds), targets, or thresholds. Rendered
|
|
2554
|
+
* as dashed lines with an optional right-aligned label.
|
|
2555
|
+
*/
|
|
2556
|
+
referenceLines?: {
|
|
2557
|
+
value: number;
|
|
2558
|
+
label?: string;
|
|
2559
|
+
color?: string;
|
|
2560
|
+
}[];
|
|
2544
2561
|
isLoading?: boolean;
|
|
2545
2562
|
/** Enable scroll-to-zoom and pan on main chart */
|
|
2546
2563
|
enableZoom?: boolean;
|
|
@@ -2548,8 +2565,34 @@ interface ChartContainerProps {
|
|
|
2548
2565
|
enableBrush?: boolean;
|
|
2549
2566
|
/** Height of brush chart (default: 60px) */
|
|
2550
2567
|
brushHeight?: number;
|
|
2551
|
-
/**
|
|
2568
|
+
/**
|
|
2569
|
+
* Notification callback when the zoom range changes.
|
|
2570
|
+
*
|
|
2571
|
+
* Fires on every transition, including the initial `null` render. Use this
|
|
2572
|
+
* for one-way "observe the zoom" plumbing (e.g. driving an external panel
|
|
2573
|
+
* showing the current window).
|
|
2574
|
+
*
|
|
2575
|
+
* In controlled-zoom mode (when the `zoomDomain` prop is provided), this is
|
|
2576
|
+
* ALSO the change callback the parent uses to update its own state —
|
|
2577
|
+
* mirroring the `onHiddenSeriesChange` pattern. The parent should treat the
|
|
2578
|
+
* incoming `domain` argument as the next value to commit to its state.
|
|
2579
|
+
*/
|
|
2552
2580
|
onZoomChange?: (domain: [Date, Date] | null) => void;
|
|
2581
|
+
/**
|
|
2582
|
+
* Controlled zoom domain. When provided, ChartContainer uses this value
|
|
2583
|
+
* instead of its internal useState (controlled mode). Mirrors the
|
|
2584
|
+
* `hiddenSeriesLabels` pattern — useful when an inline + dialog instance
|
|
2585
|
+
* pair need to share zoom state (see BOLT-1160 Phase 3 / SiteEnergyCharts).
|
|
2586
|
+
*
|
|
2587
|
+
* Pass `null` for "full domain, no zoom". Omit entirely to use the default
|
|
2588
|
+
* uncontrolled behaviour (ChartContainer manages its own zoom state).
|
|
2589
|
+
*
|
|
2590
|
+
* When controlled, the visx Zoom transform is kept in sync with the
|
|
2591
|
+
* incoming prop via an internal effect, so brush + scroll-zoom + reset
|
|
2592
|
+
* all continue to work — they just route the new domain through
|
|
2593
|
+
* `onZoomChange` to the parent, which echoes it back via the prop.
|
|
2594
|
+
*/
|
|
2595
|
+
zoomDomain?: [Date, Date] | null;
|
|
2553
2596
|
/**
|
|
2554
2597
|
* Controlled set of hidden series labels. When provided, ChartContainer
|
|
2555
2598
|
* uses this value instead of its internal useState (controlled mode).
|
|
@@ -2653,6 +2696,8 @@ interface EventSpan {
|
|
|
2653
2696
|
label: string;
|
|
2654
2697
|
/** Optional type for color coding */
|
|
2655
2698
|
type?: EventMarkerType;
|
|
2699
|
+
/** Optional per-span color override; takes precedence over the component-level color prop */
|
|
2700
|
+
color?: string;
|
|
2656
2701
|
/** Optional metadata to display in tooltip */
|
|
2657
2702
|
metadata?: Record<string, string | number>;
|
|
2658
2703
|
}
|
|
@@ -2662,7 +2707,7 @@ interface ChartEventSpansProps {
|
|
|
2662
2707
|
*/
|
|
2663
2708
|
spans: EventSpan[];
|
|
2664
2709
|
/**
|
|
2665
|
-
* Override fill opacity (default 0.
|
|
2710
|
+
* Override fill opacity (default 0.25). Hover state doubles this up to a cap.
|
|
2666
2711
|
*/
|
|
2667
2712
|
opacity?: number;
|
|
2668
2713
|
/**
|
|
@@ -5402,259 +5447,6 @@ interface ExtendedListBoxItemProps extends Omit<ListBoxItemProps, "className"> {
|
|
|
5402
5447
|
}
|
|
5403
5448
|
declare function ListBoxItem({ size, className, ...props }: ExtendedListBoxItemProps): react_jsx_runtime.JSX.Element;
|
|
5404
5449
|
|
|
5405
|
-
/**
|
|
5406
|
-
* Map marker design tokens.
|
|
5407
|
-
*
|
|
5408
|
-
* Centralised so the capsule chip, the cluster pill, and any external
|
|
5409
|
-
* count badge stay in lockstep when the design evolves. Exported from
|
|
5410
|
-
* the package so consumers can introspect (e.g. to compose a custom
|
|
5411
|
-
* badge) or override individual values via the `tokens` prop on each
|
|
5412
|
-
* marker component.
|
|
5413
|
-
*
|
|
5414
|
-
* Sourced from the Texture design system (`canvases/markers/markers.jsx`
|
|
5415
|
-
* in the explore-ux-design handoff).
|
|
5416
|
-
*/
|
|
5417
|
-
interface ChipTokens {
|
|
5418
|
-
/** Background color. */
|
|
5419
|
-
bg: string;
|
|
5420
|
-
/** Border color. */
|
|
5421
|
-
border: string;
|
|
5422
|
-
/** Foreground (text / icon) color. */
|
|
5423
|
-
fg: string;
|
|
5424
|
-
}
|
|
5425
|
-
interface ExternalBadgeTokens {
|
|
5426
|
-
bg: string;
|
|
5427
|
-
fg: string;
|
|
5428
|
-
borderColor: string;
|
|
5429
|
-
fontSize: number;
|
|
5430
|
-
diameter: number;
|
|
5431
|
-
}
|
|
5432
|
-
interface InlineBadgeTokens {
|
|
5433
|
-
fg: string;
|
|
5434
|
-
fontSize: number;
|
|
5435
|
-
}
|
|
5436
|
-
interface BadgeTokens {
|
|
5437
|
-
/** Default external badge — a small pill positioned at the chip's top-right. */
|
|
5438
|
-
external: ExternalBadgeTokens;
|
|
5439
|
-
/** Compact inline count rendered alongside the chip's primary glyph. */
|
|
5440
|
-
inline: InlineBadgeTokens;
|
|
5441
|
-
}
|
|
5442
|
-
interface MapMarkerTokens {
|
|
5443
|
-
/** Capsule chip — neutral default. */
|
|
5444
|
-
chip: ChipTokens;
|
|
5445
|
-
/** Active/selected chip. */
|
|
5446
|
-
active: ChipTokens;
|
|
5447
|
-
/** Cluster-pill accent colors, keyed by a free-form tone string. */
|
|
5448
|
-
cluster: Record<string, string>;
|
|
5449
|
-
/** Count-badge variants. */
|
|
5450
|
-
badge: BadgeTokens;
|
|
5451
|
-
}
|
|
5452
|
-
declare const mapMarkerTokens: MapMarkerTokens;
|
|
5453
|
-
/**
|
|
5454
|
-
* Compute a tokens object with deep-merged overrides applied. Use when
|
|
5455
|
-
* a consumer wants to override a single field (e.g. `cluster.primary`)
|
|
5456
|
-
* without restating the whole tokens object.
|
|
5457
|
-
*/
|
|
5458
|
-
declare function mergeMapMarkerTokens(overrides?: DeepPartial<MapMarkerTokens>): MapMarkerTokens;
|
|
5459
|
-
/**
|
|
5460
|
-
* Recursively make every property optional. Exported so the marker
|
|
5461
|
-
* components can type their `tokens` prop as a deep partial — passing
|
|
5462
|
-
* `{ chip: { bg: "red" } }` should not require restating every nested
|
|
5463
|
-
* field.
|
|
5464
|
-
*/
|
|
5465
|
-
type DeepPartial<T> = {
|
|
5466
|
-
[K in keyof T]?: T[K] extends object ? DeepPartial<T[K]> : T[K];
|
|
5467
|
-
};
|
|
5468
|
-
|
|
5469
|
-
interface MapClusterMarkerProps {
|
|
5470
|
-
/**
|
|
5471
|
-
* The count to display. Pre-formatted strings (e.g. `"1.2k"`) render
|
|
5472
|
-
* verbatim; numbers render via tabular-nums for stable column width.
|
|
5473
|
-
*/
|
|
5474
|
-
count: number | string;
|
|
5475
|
-
/**
|
|
5476
|
-
* Up to ~3 small glyphs rendered after the count. Designed for
|
|
5477
|
-
* cluster pills that hint at the member types inside the cluster.
|
|
5478
|
-
*/
|
|
5479
|
-
glyphs?: ReactNode[];
|
|
5480
|
-
/**
|
|
5481
|
-
* Accent color for the pill's border. Either a named key from the
|
|
5482
|
-
* tokens' `cluster` map (e.g. `"primary"`, `"neutral"`) or any raw
|
|
5483
|
-
* CSS color string.
|
|
5484
|
-
*/
|
|
5485
|
-
tone?: string;
|
|
5486
|
-
/** Click handler. Renders as a `<button>` when set. */
|
|
5487
|
-
onClick?: (event: React__default.MouseEvent<HTMLElement>) => void;
|
|
5488
|
-
/** Accessible label for screen readers. */
|
|
5489
|
-
ariaLabel?: string;
|
|
5490
|
-
/**
|
|
5491
|
-
* Token overrides. Deep-partial: pass `{ cluster: { primary: "red" } }`
|
|
5492
|
-
* and the rest of the token tree keeps its defaults.
|
|
5493
|
-
*/
|
|
5494
|
-
tokens?: DeepPartial<MapMarkerTokens>;
|
|
5495
|
-
/** Additional class on the pill element. */
|
|
5496
|
-
className?: string;
|
|
5497
|
-
/** Inline style overrides applied last. */
|
|
5498
|
-
style?: CSSProperties;
|
|
5499
|
-
}
|
|
5500
|
-
/**
|
|
5501
|
-
* MapClusterMarker — a capsule pill with a count and optional glyph
|
|
5502
|
-
* row, designed for clustered map data.
|
|
5503
|
-
*
|
|
5504
|
-
* The component is map-library agnostic; drop it inside any positioned
|
|
5505
|
-
* container (e.g. `react-map-gl`'s `<Marker>`). Border color is driven
|
|
5506
|
-
* by the `tone` prop, which resolves against the tokens' `cluster` map
|
|
5507
|
-
* or accepts a raw color string.
|
|
5508
|
-
*
|
|
5509
|
-
* @example
|
|
5510
|
-
* ```tsx
|
|
5511
|
-
* <MapClusterMarker
|
|
5512
|
-
* count={42}
|
|
5513
|
-
* tone="primary"
|
|
5514
|
-
* glyphs={memberTypes.map((t) => <Icon key={t} type={t} size={11} />)}
|
|
5515
|
-
* ariaLabel="42 sites"
|
|
5516
|
-
* onClick={() => zoomTo(cluster)}
|
|
5517
|
-
* />
|
|
5518
|
-
* ```
|
|
5519
|
-
*/
|
|
5520
|
-
declare const MapClusterMarker: React__default.ForwardRefExoticComponent<MapClusterMarkerProps & React__default.RefAttributes<HTMLElement>>;
|
|
5521
|
-
|
|
5522
|
-
interface MapLegendItem {
|
|
5523
|
-
/** Stable key for React. */
|
|
5524
|
-
id?: string;
|
|
5525
|
-
/**
|
|
5526
|
-
* The swatch. Pass a string to render a small colored dot, or any
|
|
5527
|
-
* ReactNode (e.g. a custom shape, an icon) for full control.
|
|
5528
|
-
*/
|
|
5529
|
-
swatch: string | ReactNode;
|
|
5530
|
-
/** Label shown next to the swatch. */
|
|
5531
|
-
label: ReactNode;
|
|
5532
|
-
}
|
|
5533
|
-
interface MapLegendProps {
|
|
5534
|
-
/** Items to display, in render order. */
|
|
5535
|
-
items: MapLegendItem[];
|
|
5536
|
-
/** Optional title shown above the items. */
|
|
5537
|
-
title?: ReactNode;
|
|
5538
|
-
/** Layout direction. Default `"horizontal"` (wraps). */
|
|
5539
|
-
orientation?: "horizontal" | "vertical";
|
|
5540
|
-
/** Additional class on the wrapper. */
|
|
5541
|
-
className?: string;
|
|
5542
|
-
/** Inline style overrides. */
|
|
5543
|
-
style?: CSSProperties;
|
|
5544
|
-
}
|
|
5545
|
-
/**
|
|
5546
|
-
* MapLegend — a generic legend for map visualisations.
|
|
5547
|
-
*
|
|
5548
|
-
* The component is intentionally agnostic about what each swatch
|
|
5549
|
-
* represents. Pass a CSS color string for the default dot swatch, or
|
|
5550
|
-
* any ReactNode to render a custom shape (e.g. a striped pattern, a
|
|
5551
|
-
* line indicator for a vector layer).
|
|
5552
|
-
*
|
|
5553
|
-
* @example
|
|
5554
|
-
* ```tsx
|
|
5555
|
-
* <MapLegend
|
|
5556
|
-
* title="Sites"
|
|
5557
|
-
* items={[
|
|
5558
|
-
* { id: "online", swatch: "var(--color-state-on)", label: "Online" },
|
|
5559
|
-
* { id: "offline", swatch: "var(--color-state-off)", label: "Offline" },
|
|
5560
|
-
* ]}
|
|
5561
|
-
* />
|
|
5562
|
-
* ```
|
|
5563
|
-
*/
|
|
5564
|
-
declare function MapLegend({ items, title, orientation, className, style }: MapLegendProps): react_jsx_runtime.JSX.Element | null;
|
|
5565
|
-
|
|
5566
|
-
interface MapMarkerProps {
|
|
5567
|
-
/**
|
|
5568
|
-
* Glyph rendered inside the chip. Typically a Phosphor icon, but any
|
|
5569
|
-
* ReactNode works. Leave undefined for a glyph-less chip.
|
|
5570
|
-
*/
|
|
5571
|
-
icon?: ReactNode;
|
|
5572
|
-
/**
|
|
5573
|
-
* Optional label rendered to the right of the icon. When present the
|
|
5574
|
-
* chip widens to fit the text. Most map markers are icon-only.
|
|
5575
|
-
*/
|
|
5576
|
-
label?: ReactNode;
|
|
5577
|
-
/**
|
|
5578
|
-
* Visual state. `active` flips to the inverted/selected color pair
|
|
5579
|
-
* defined in the tokens.
|
|
5580
|
-
*/
|
|
5581
|
-
active?: boolean;
|
|
5582
|
-
/**
|
|
5583
|
-
* Optional badge rendered absolutely-positioned at the top-right of
|
|
5584
|
-
* the chip. Use the `<MapMarkerBadge>` component for the canonical
|
|
5585
|
-
* design, or pass any ReactNode for full control.
|
|
5586
|
-
*/
|
|
5587
|
-
badge?: ReactNode;
|
|
5588
|
-
/**
|
|
5589
|
-
* Click handler. When provided, the chip renders as a `<button>` and
|
|
5590
|
-
* picks up cursor + keyboard activation. Without it the chip is a
|
|
5591
|
-
* `<span>` (decorative).
|
|
5592
|
-
*/
|
|
5593
|
-
onClick?: (event: React__default.MouseEvent<HTMLElement>) => void;
|
|
5594
|
-
/** Accessible label for screen readers. */
|
|
5595
|
-
ariaLabel?: string;
|
|
5596
|
-
/**
|
|
5597
|
-
* Override individual token values. Useful for theming or one-off
|
|
5598
|
-
* accent colors (e.g. the cluster pill on top of the chip primitive).
|
|
5599
|
-
*
|
|
5600
|
-
* Deep-partial: pass `{ chip: { bg: "red" } }` and the rest of
|
|
5601
|
-
* `chip` is left untouched.
|
|
5602
|
-
*/
|
|
5603
|
-
tokens?: DeepPartial<MapMarkerTokens>;
|
|
5604
|
-
/**
|
|
5605
|
-
* Optional class to extend the chip element. Most styling is inline
|
|
5606
|
-
* (the design system's colors live in the tokens), but consumers can
|
|
5607
|
-
* layer transitions / animations here.
|
|
5608
|
-
*/
|
|
5609
|
-
className?: string;
|
|
5610
|
-
/** Inline style overrides applied last. */
|
|
5611
|
-
style?: CSSProperties;
|
|
5612
|
-
}
|
|
5613
|
-
/**
|
|
5614
|
-
* MapMarker — the capsule chip primitive.
|
|
5615
|
-
*
|
|
5616
|
-
* A small circular (or pill-shaped when labeled) DOM marker designed to
|
|
5617
|
-
* sit on top of a map at a feature's coordinates. Two visual states:
|
|
5618
|
-
* `default` and `active` (typically the currently-selected feature).
|
|
5619
|
-
*
|
|
5620
|
-
* The component is map-library agnostic. Drop it inside a
|
|
5621
|
-
* `react-map-gl` `<Marker>`, a Mapbox HTML marker, or any absolutely-
|
|
5622
|
-
* positioned container.
|
|
5623
|
-
*
|
|
5624
|
-
* @example
|
|
5625
|
-
* ```tsx
|
|
5626
|
-
* <MapMarker
|
|
5627
|
-
* icon={<HouseIcon size={13} />}
|
|
5628
|
-
* ariaLabel="Site"
|
|
5629
|
-
* active={isSelected}
|
|
5630
|
-
* onClick={() => onSelect(siteId)}
|
|
5631
|
-
* />
|
|
5632
|
-
* ```
|
|
5633
|
-
*/
|
|
5634
|
-
declare const MapMarker: React__default.ForwardRefExoticComponent<MapMarkerProps & React__default.RefAttributes<HTMLElement>>;
|
|
5635
|
-
interface MapMarkerBadgeProps {
|
|
5636
|
-
/** Content of the badge — typically a small count. */
|
|
5637
|
-
children: ReactNode;
|
|
5638
|
-
/**
|
|
5639
|
-
* Visual variant. `external` is the design's onyx pill (sits at the
|
|
5640
|
-
* top-right of the chip). `inline` is a flatter style for compact
|
|
5641
|
-
* counts.
|
|
5642
|
-
*/
|
|
5643
|
-
variant?: "external" | "inline";
|
|
5644
|
-
/**
|
|
5645
|
-
* Token overrides. Deep-partial: pass `{ badge: { external: { bg: "red" } } }`
|
|
5646
|
-
* and unspecified fields keep their defaults.
|
|
5647
|
-
*/
|
|
5648
|
-
tokens?: DeepPartial<MapMarkerTokens>;
|
|
5649
|
-
/** Accessible label override. */
|
|
5650
|
-
ariaLabel?: string;
|
|
5651
|
-
}
|
|
5652
|
-
/**
|
|
5653
|
-
* MapMarkerBadge — small count indicator designed to sit on top of a
|
|
5654
|
-
* `<MapMarker>` (via its `badge` prop) or alongside it inline.
|
|
5655
|
-
*/
|
|
5656
|
-
declare function MapMarkerBadge({ children, variant, tokens, ariaLabel }: MapMarkerBadgeProps): react_jsx_runtime.JSX.Element;
|
|
5657
|
-
|
|
5658
5450
|
/**
|
|
5659
5451
|
* Layer Builder Functions
|
|
5660
5452
|
*
|
|
@@ -6741,186 +6533,6 @@ declare namespace SplitPane {
|
|
|
6741
6533
|
declare function Main({ className, children }: SplitPanePanelProps): react_jsx_runtime.JSX.Element;
|
|
6742
6534
|
declare function Aside({ className, children }: SplitPanePanelProps): react_jsx_runtime.JSX.Element;
|
|
6743
6535
|
|
|
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
6536
|
/**
|
|
6925
6537
|
* StatList — Compact key-value statistics display
|
|
6926
6538
|
*
|
|
@@ -7084,7 +6696,7 @@ declare function TextAreaWithChips({ label, description, errorMessage, size, too
|
|
|
7084
6696
|
* Window size for data aggregation
|
|
7085
6697
|
* Matches GraphQL WindowSize enum
|
|
7086
6698
|
*/
|
|
7087
|
-
type WindowSize = "FIFTEEN_MINUTES" | "HOUR" | "DAY" | "WEEK" | "MONTH" | "YEAR";
|
|
6699
|
+
type WindowSize = "FIVE_MINUTES" | "FIFTEEN_MINUTES" | "HOUR" | "DAY" | "WEEK" | "MONTH" | "YEAR";
|
|
7088
6700
|
/**
|
|
7089
6701
|
* Date range with native Date objects
|
|
7090
6702
|
*/
|
|
@@ -7501,4 +7113,4 @@ declare function getStateTone(state: DeviceState): StatTone;
|
|
|
7501
7113
|
*/
|
|
7502
7114
|
type LinkComponentType = React.ComponentType<any>;
|
|
7503
7115
|
|
|
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 };
|
|
7116
|
+
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, 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, 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 };
|