@texturehq/edges 1.15.1 → 1.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.manifest.json +25 -3
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +67 -13
- package/dist/index.d.ts +67 -13
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/styles/computed.css +4 -4
- package/dist/styles.css +17 -0
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ import { Key, ValidationResult, BreadcrumbProps, BreadcrumbsProps, ButtonProps a
|
|
|
2
2
|
export { BreadcrumbProps, BreadcrumbsProps, DialogTrigger } from 'react-aria-components';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import React__default, { RefObject, HTMLAttributes, ReactNode, ComponentProps, CSSProperties, ComponentType, Component, ErrorInfo } from 'react';
|
|
5
|
-
import { F as FieldValue, B as BooleanFormat, a as FormattedValue, C as CurrentFormat, D as DateFormat, b as DistanceFormat, E as EnergyFormat, c as CurrencyFormat, N as NumberFormat, P as PhoneFormat, d as PowerFormat, e as FormatterFunction, R as ResistanceFormat, T as TemperatureUnitString, f as TemperatureUnit, g as TemperatureFormat, h as TextFormat, V as VoltageFormat, i as FieldFormat, j as BaseDataPoint, I as Icon, k as BadgeProps, Y as YFormatType, l as TooltipData, m as IconName$
|
|
5
|
+
import { F as FieldValue, B as BooleanFormat, a as FormattedValue, C as CurrentFormat, D as DateFormat, b as DistanceFormat, E as EnergyFormat, c as CurrencyFormat, N as NumberFormat, P as PhoneFormat, d as PowerFormat, e as FormatterFunction, R as ResistanceFormat, T as TemperatureUnitString, f as TemperatureUnit, g as TemperatureFormat, h as TextFormat, V as VoltageFormat, i as FieldFormat, j as BaseDataPoint, I as Icon, k as BadgeProps, Y as YFormatType, l as TooltipData, m as IconName$3, n as DeviceState, G as GridState, o as ComponentFormatter, L as LayerSpec, p as CustomPinsSpec, q as GeoJsonLayerSpec, r as RasterLayerSpec, s as VectorLayerSpec, t as ClusteredVectorLayerSpec } from './server-2XGnhJXF.cjs';
|
|
6
6
|
export { A as ActionItem, v as ActionMenu, u as ActionMenuProps, x as AppShell, w as AppShellProps, z as Avatar, y as AvatarProps, H as Badge, aH as BaseFormat, ao as ChartContext, aq as ChartMargin, O as CodeEditor, J as CodeEditorProps, K as CodeLanguage, M as CodeTheme, $ as ColorSpec, aE as ComponentFormatOptions, aP as CurrentUnit, aS as CustomFormat, S as DateField, Q as DateFieldProps, aL as DateFormatStyle, aR as DistanceUnit, aM as EnergyUnit, W as FileUpload, U as FileUploadProps, X as Heading, a7 as InteractiveMap, a0 as InteractiveMapProps, a1 as LayerFeature, a2 as LayerStyle, Z as Loader, _ as Logo, a8 as MAP_TYPES, a3 as MapPoint, ab as Meter, aa as MeterProps, aT as MetricFormat, aK as PercentageFormat, aN as PowerUnit, a4 as RenderType, aQ as ResistanceUnit, ad as RichTextEditor, ac as RichTextEditorProps, af as SegmentOption, ag as SegmentedControl, ae as SegmentedControlProps, aj as SideNav, ah as SideNavItem, ai as SideNavProps, a9 as StaticMap, a5 as StaticMapProps, ak as TextLink, aI as TextTransform, aJ as TextTruncatePosition, an as TooltipSeries, am as TopNav, al as TopNavProps, aO as VoltageUnit, av as YFormatSettings, a6 as ZoomStops, aV as activeDeviceStates, aw as clearColorCache, ax as createCategoryColorMap, ar as createXScale, as as createYScale, at as defaultMargin, aW as deviceStateLabels, aU as deviceStateMetricFormats, aF as formatComponentValue, ay as getContrastingTextColor, az as getDefaultChartColor, aA as getDefaultColors, aY as getDeviceStateDisplayLabel, aY as getDeviceStateLabel, a_ as getGridStateLabel, aB as getResolvedColor, aC as getThemeCategoricalColors, au as getYFormatSettings, aZ as gridStateLabels, aX as isActiveDeviceState, aX as isActiveState, aD as isLightColor, ap as useChartContext, aG as useComponentFormatter } from './server-2XGnhJXF.cjs';
|
|
7
7
|
import { Virtualizer } from '@tanstack/react-virtual';
|
|
8
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -1560,7 +1560,7 @@ declare function BreadcrumbItem(props: BreadcrumbProps & {
|
|
|
1560
1560
|
href?: string;
|
|
1561
1561
|
}): react_jsx_runtime.JSX.Element;
|
|
1562
1562
|
|
|
1563
|
-
type IconName$
|
|
1563
|
+
type IconName$2 = ComponentProps<typeof Icon>["name"];
|
|
1564
1564
|
type BaseButtonProps = Omit<ButtonProps$1, "className">;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* Button
|
|
@@ -1581,7 +1581,7 @@ interface ButtonProps extends BaseButtonProps {
|
|
|
1581
1581
|
badgeVariant?: "primary" | "destructive";
|
|
1582
1582
|
badgePosition?: "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1583
1583
|
fullWidth?: boolean;
|
|
1584
|
-
icon?: IconName$
|
|
1584
|
+
icon?: IconName$2;
|
|
1585
1585
|
iconWeight?: "thin" | "light" | "regular" | "bold" | "fill" | "duotone";
|
|
1586
1586
|
iconPosition?: "left" | "right";
|
|
1587
1587
|
isLoading?: boolean;
|
|
@@ -2464,7 +2464,7 @@ interface DataTableProps<T> {
|
|
|
2464
2464
|
interface Action<T = any> {
|
|
2465
2465
|
id: string;
|
|
2466
2466
|
label?: string;
|
|
2467
|
-
icon?: IconName$
|
|
2467
|
+
icon?: IconName$3;
|
|
2468
2468
|
onClick: (row: T) => void;
|
|
2469
2469
|
disabled?: boolean | ((row: T) => boolean);
|
|
2470
2470
|
hidden?: boolean | ((row: T) => boolean);
|
|
@@ -2487,8 +2487,8 @@ interface BooleanCellProps<T = any> extends CellComponentProps<T> {
|
|
|
2487
2487
|
format?: "icon" | "text" | "badge";
|
|
2488
2488
|
trueText?: string;
|
|
2489
2489
|
falseText?: string;
|
|
2490
|
-
trueIcon?: IconName$
|
|
2491
|
-
falseIcon?: IconName$
|
|
2490
|
+
trueIcon?: IconName$3;
|
|
2491
|
+
falseIcon?: IconName$3;
|
|
2492
2492
|
showFalse?: boolean;
|
|
2493
2493
|
align?: "left" | "center" | "right";
|
|
2494
2494
|
emphasis?: CellEmphasis;
|
|
@@ -2583,7 +2583,7 @@ interface DeviceStateCellProps<T = any> extends Omit<CellComponentProps<T>, "val
|
|
|
2583
2583
|
/** Custom label override */
|
|
2584
2584
|
label?: string | ((state: DeviceState, row: T) => string);
|
|
2585
2585
|
/** Optional icon */
|
|
2586
|
-
icon?: IconName$
|
|
2586
|
+
icon?: IconName$3;
|
|
2587
2587
|
/** Fixed width for column alignment (defaults to true for tables) */
|
|
2588
2588
|
fixedWidth?: boolean;
|
|
2589
2589
|
/** Alignment */
|
|
@@ -2814,7 +2814,7 @@ interface DeviceStateBadgeProps extends Omit<BadgeProps, "variant" | "children">
|
|
|
2814
2814
|
/** Custom label override (defaults to auto-capitalized state name) */
|
|
2815
2815
|
label?: string;
|
|
2816
2816
|
/** Optional icon to display before the label */
|
|
2817
|
-
icon?: IconName$
|
|
2817
|
+
icon?: IconName$3;
|
|
2818
2818
|
/** Loading state */
|
|
2819
2819
|
isLoading?: boolean;
|
|
2820
2820
|
/** Fixed width for column alignment (useful in tables) */
|
|
@@ -2999,7 +2999,7 @@ interface EmptyStateAction {
|
|
|
2999
2999
|
}
|
|
3000
3000
|
interface EmptyStateProps {
|
|
3001
3001
|
/** Icon name from Icon component to show at the top of the empty state. */
|
|
3002
|
-
icon?: IconName$
|
|
3002
|
+
icon?: IconName$3;
|
|
3003
3003
|
/** Primary title describing the state. */
|
|
3004
3004
|
title: ReactNode;
|
|
3005
3005
|
/** Optional description providing more context. */
|
|
@@ -4087,12 +4087,12 @@ type PageHeaderProps = {
|
|
|
4087
4087
|
breadcrumbs?: PageBreadcrumbItem[];
|
|
4088
4088
|
/** Custom breadcrumbs node if you don't want the built-in renderer */
|
|
4089
4089
|
breadcrumbsNode?: React__default.ReactNode;
|
|
4090
|
-
/** Optional right-aligned meta area (badges, status, small stats) */
|
|
4091
|
-
meta?: React__default.ReactNode;
|
|
4092
4090
|
/** Optional media content (images, maps, etc.) rendered after title/subtitle */
|
|
4093
4091
|
media?: React__default.ReactNode;
|
|
4094
4092
|
/** Optional actions (buttons, filters) - right-aligned on desktop, below subtitle on mobile. Array ensures consistent gap spacing. */
|
|
4095
4093
|
actions?: React__default.ReactNode[];
|
|
4094
|
+
/** Optional metadata bar shown below actions with top border. Renders as-is for full control. */
|
|
4095
|
+
metadata?: React__default.ReactNode;
|
|
4096
4096
|
/** Optional slot to replace the default heading element */
|
|
4097
4097
|
headingAs?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
4098
4098
|
/** Make header sticky at top of viewport */
|
|
@@ -4101,9 +4101,11 @@ type PageHeaderProps = {
|
|
|
4101
4101
|
stickyTop?: string;
|
|
4102
4102
|
/** Z-index for sticky positioning (default: 10) */
|
|
4103
4103
|
zIndex?: number;
|
|
4104
|
+
/** Show skeleton loaders based on provided props */
|
|
4105
|
+
isLoading?: boolean;
|
|
4104
4106
|
className?: string;
|
|
4105
4107
|
};
|
|
4106
|
-
declare function Header({ title, subtitle, breadcrumbs, breadcrumbsNode,
|
|
4108
|
+
declare function Header({ title, subtitle, breadcrumbs, breadcrumbsNode, media, actions, metadata, headingAs, sticky, stickyTop, zIndex, isLoading, className, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
4107
4109
|
type PageLayoutTab = {
|
|
4108
4110
|
id: string;
|
|
4109
4111
|
label: React__default.ReactNode;
|
|
@@ -4852,6 +4854,58 @@ interface TimeFieldProps extends Omit<TimeFieldProps$1<TimeValue>, "size" | "cla
|
|
|
4852
4854
|
*/
|
|
4853
4855
|
declare function TimeField({ label, description, errorMessage, size, tooltip, isRequired, transparent, validationResult, ...props }: TimeFieldProps): react_jsx_runtime.JSX.Element;
|
|
4854
4856
|
|
|
4857
|
+
interface TimelineProps {
|
|
4858
|
+
children: ReactNode;
|
|
4859
|
+
className?: string;
|
|
4860
|
+
}
|
|
4861
|
+
/**
|
|
4862
|
+
* Timeline
|
|
4863
|
+
*
|
|
4864
|
+
* A vertical timeline component for displaying hierarchical or sequential information.
|
|
4865
|
+
* Connects items with a visual line to show relationships or flow.
|
|
4866
|
+
*
|
|
4867
|
+
* @example
|
|
4868
|
+
* ```tsx
|
|
4869
|
+
* <Timeline>
|
|
4870
|
+
* <TimelineItem>First item</TimelineItem>
|
|
4871
|
+
* <TimelineItem>Second item</TimelineItem>
|
|
4872
|
+
* <TimelineItem>Third item</TimelineItem>
|
|
4873
|
+
* </Timeline>
|
|
4874
|
+
* ```
|
|
4875
|
+
*/
|
|
4876
|
+
declare function Timeline({ children, className }: TimelineProps): react_jsx_runtime.JSX.Element;
|
|
4877
|
+
|
|
4878
|
+
type IconName$1 = React.ComponentProps<typeof Icon>["name"];
|
|
4879
|
+
type TimelineItemVariant = "default" | "active" | "muted";
|
|
4880
|
+
interface TimelineItemProps {
|
|
4881
|
+
children: ReactNode;
|
|
4882
|
+
/** Visual variant of the timeline item */
|
|
4883
|
+
variant?: TimelineItemVariant;
|
|
4884
|
+
/** Optional icon to display in the connector dot */
|
|
4885
|
+
icon?: IconName$1;
|
|
4886
|
+
/** Label text displayed above the main content */
|
|
4887
|
+
label?: string;
|
|
4888
|
+
/** Whether this is the last item (hides the connecting line below) */
|
|
4889
|
+
isLast?: boolean;
|
|
4890
|
+
className?: string;
|
|
4891
|
+
}
|
|
4892
|
+
/**
|
|
4893
|
+
* TimelineItem
|
|
4894
|
+
*
|
|
4895
|
+
* Individual item in a Timeline component. Displays content with a connecting line
|
|
4896
|
+
* and optional icon/label. Supports different visual variants for emphasis.
|
|
4897
|
+
*
|
|
4898
|
+
* @example
|
|
4899
|
+
* ```tsx
|
|
4900
|
+
* <Timeline>
|
|
4901
|
+
* <TimelineItem label="Site" icon="MapPin">1020 Jordan Lane</TimelineItem>
|
|
4902
|
+
* <TimelineItem label="Utility" icon="Lightning">Pacific Gas & Electric</TimelineItem>
|
|
4903
|
+
* <TimelineItem label="ISO Market" icon="ChartNetwork" isLast>CAISO</TimelineItem>
|
|
4904
|
+
* </Timeline>
|
|
4905
|
+
* ```
|
|
4906
|
+
*/
|
|
4907
|
+
declare function TimelineItem({ children, variant, icon, label, isLast, className, }: TimelineItemProps): react_jsx_runtime.JSX.Element;
|
|
4908
|
+
|
|
4855
4909
|
type IconName = ComponentProps<typeof Icon>["name"];
|
|
4856
4910
|
interface ToggleButtonProps {
|
|
4857
4911
|
variant?: "default" | "brand";
|
|
@@ -4996,4 +5050,4 @@ type StatTone = "success" | "warning" | "error" | "info" | "neutral";
|
|
|
4996
5050
|
*/
|
|
4997
5051
|
declare function getStateTone(state: DeviceState): StatTone;
|
|
4998
5052
|
|
|
4999
|
-
export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BadgeProps, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, Button, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, type CellAlignment, type CellComponent, type CellComponentProps, type CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, type ChartExportMetadata, ChartTooltip, Checkbox, CheckboxGroup, Chip, ClearButton, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, Description, type DescriptionProps, DeviceHealthBadge, type DeviceHealthBadgeProps, DeviceMetaDisplay, type DeviceMetaDisplayProps, DeviceState, DeviceStateBadge, type DeviceStateBadgeProps, DeviceStateCell, DeviceStateWithMetric, type DeviceStateWithMetricProps, type DeviceType, DeviceTypeIcon, type DeviceTypeIconProps, Dialog, type DialogAction, type DialogFooterConfig, DialogHeader, type DialogHeaderConfig, type DialogHeaderProps, type DialogProps, DistanceFormat, Drawer, type DrawerProps, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type ExportType, type FacetConfig, type FacetCounts, type FacetType, FieldError, type FieldErrorProps, FieldFormat, FieldGroup, type FieldGroupProps, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedValue, FormatterFunction, FunnelSeries, type FunnelSeriesProps, type FunnelStage as FunnelSeriesStage, GeoJsonLayerSpec, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, GridState, GridStateBadge, type GridStateBadgeProps, type HealthStatus, Icon, InfiniteScrollIndicator, type InfiniteScrollIndicatorProps, Input, type InputProps, type InputStyleProps, InputWrapper, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, Label, type LabelProps, LayerSpec, LineSeries, type LinkBehavior, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type LoadingState, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberField, NumberFormat, type PageAsideProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageScrollableContentProps, PhoneFormat, PlaceSearch, Popover, PowerFormat, ProgressBar, Radio, RadioCard, RadioCardGroup, type RadioCardGroupProps, type RadioCardProps, RadioGroup, RangeCalendar, RasterLayerSpec, ResistanceFormat, type ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, type SearchConfig, SearchControl, type SearchControlProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, Select, SelectCell, type SelectCellProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, 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, Switch, Tab, TabList, TabPanel, type TableDensity, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextArea, TextAreaWithChips, TextCell, type TextCellProps, TextField, TextFormat, TimeField, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type UseBreakpointReturn, type UseClientDataControlsOptions, type UseClientDataControlsResult, type UseDataControlsClientOptions, type UseDataControlsOptions, type UseDataControlsResult, type UseDataControlsServerOptions, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseServerDataControlsOptions, VectorLayerSpec, VoltageFormat, YFormatType, addFilterCondition, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createEmptyFilter, createFilter, createFilters, createFormat, enumToSentenceCase, exportChart, 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, getExportFormatName, getFieldGroupStyles, getFilterFields, getInputBackgroundStyles, getInputBaseStyles, getInputStateStyles, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, 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, ucFirst, useBreakpoint, useClientDataControls, useColorMode, useDataControls, useDebounce, useInfiniteScroll, useInputFocus, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, yardsToMeters };
|
|
5053
|
+
export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BadgeProps, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, Button, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, type CellAlignment, type CellComponent, type CellComponentProps, type CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, type ChartExportMetadata, ChartTooltip, Checkbox, CheckboxGroup, Chip, ClearButton, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, Description, type DescriptionProps, DeviceHealthBadge, type DeviceHealthBadgeProps, DeviceMetaDisplay, type DeviceMetaDisplayProps, DeviceState, DeviceStateBadge, type DeviceStateBadgeProps, DeviceStateCell, DeviceStateWithMetric, type DeviceStateWithMetricProps, type DeviceType, DeviceTypeIcon, type DeviceTypeIconProps, Dialog, type DialogAction, type DialogFooterConfig, DialogHeader, type DialogHeaderConfig, type DialogHeaderProps, type DialogProps, DistanceFormat, Drawer, type DrawerProps, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type ExportType, type FacetConfig, type FacetCounts, type FacetType, FieldError, type FieldErrorProps, FieldFormat, FieldGroup, type FieldGroupProps, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedValue, FormatterFunction, FunnelSeries, type FunnelSeriesProps, type FunnelStage as FunnelSeriesStage, GeoJsonLayerSpec, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, GridState, GridStateBadge, type GridStateBadgeProps, type HealthStatus, Icon, InfiniteScrollIndicator, type InfiniteScrollIndicatorProps, Input, type InputProps, type InputStyleProps, InputWrapper, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, Label, type LabelProps, LayerSpec, LineSeries, type LinkBehavior, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type LoadingState, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberField, NumberFormat, type PageAsideProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageScrollableContentProps, PhoneFormat, PlaceSearch, Popover, PowerFormat, ProgressBar, Radio, RadioCard, RadioCardGroup, type RadioCardGroupProps, type RadioCardProps, RadioGroup, RangeCalendar, RasterLayerSpec, ResistanceFormat, type ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, type SearchConfig, SearchControl, type SearchControlProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, Select, SelectCell, type SelectCellProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, 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, Switch, Tab, TabList, TabPanel, type TableDensity, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextArea, TextAreaWithChips, TextCell, type TextCellProps, TextField, TextFormat, TimeField, Timeline, TimelineItem, type TimelineItemProps, type TimelineItemVariant, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type UseBreakpointReturn, type UseClientDataControlsOptions, type UseClientDataControlsResult, type UseDataControlsClientOptions, type UseDataControlsOptions, type UseDataControlsResult, type UseDataControlsServerOptions, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseServerDataControlsOptions, VectorLayerSpec, VoltageFormat, YFormatType, addFilterCondition, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createEmptyFilter, createFilter, createFilters, createFormat, enumToSentenceCase, exportChart, 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, getExportFormatName, getFieldGroupStyles, getFilterFields, getInputBackgroundStyles, getInputBaseStyles, getInputStateStyles, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, 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, ucFirst, useBreakpoint, useClientDataControls, useColorMode, useDataControls, useDebounce, useInfiniteScroll, useInputFocus, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, yardsToMeters };
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Key, ValidationResult, BreadcrumbProps, BreadcrumbsProps, ButtonProps a
|
|
|
2
2
|
export { BreadcrumbProps, BreadcrumbsProps, DialogTrigger } from 'react-aria-components';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import React__default, { RefObject, HTMLAttributes, ReactNode, ComponentProps, CSSProperties, ComponentType, Component, ErrorInfo } from 'react';
|
|
5
|
-
import { F as FieldValue, B as BooleanFormat, a as FormattedValue, C as CurrentFormat, D as DateFormat, b as DistanceFormat, E as EnergyFormat, c as CurrencyFormat, N as NumberFormat, P as PhoneFormat, d as PowerFormat, e as FormatterFunction, R as ResistanceFormat, T as TemperatureUnitString, f as TemperatureUnit, g as TemperatureFormat, h as TextFormat, V as VoltageFormat, i as FieldFormat, j as BaseDataPoint, I as Icon, k as BadgeProps, Y as YFormatType, l as TooltipData, m as IconName$
|
|
5
|
+
import { F as FieldValue, B as BooleanFormat, a as FormattedValue, C as CurrentFormat, D as DateFormat, b as DistanceFormat, E as EnergyFormat, c as CurrencyFormat, N as NumberFormat, P as PhoneFormat, d as PowerFormat, e as FormatterFunction, R as ResistanceFormat, T as TemperatureUnitString, f as TemperatureUnit, g as TemperatureFormat, h as TextFormat, V as VoltageFormat, i as FieldFormat, j as BaseDataPoint, I as Icon, k as BadgeProps, Y as YFormatType, l as TooltipData, m as IconName$3, n as DeviceState, G as GridState, o as ComponentFormatter, L as LayerSpec, p as CustomPinsSpec, q as GeoJsonLayerSpec, r as RasterLayerSpec, s as VectorLayerSpec, t as ClusteredVectorLayerSpec } from './server-2XGnhJXF.js';
|
|
6
6
|
export { A as ActionItem, v as ActionMenu, u as ActionMenuProps, x as AppShell, w as AppShellProps, z as Avatar, y as AvatarProps, H as Badge, aH as BaseFormat, ao as ChartContext, aq as ChartMargin, O as CodeEditor, J as CodeEditorProps, K as CodeLanguage, M as CodeTheme, $ as ColorSpec, aE as ComponentFormatOptions, aP as CurrentUnit, aS as CustomFormat, S as DateField, Q as DateFieldProps, aL as DateFormatStyle, aR as DistanceUnit, aM as EnergyUnit, W as FileUpload, U as FileUploadProps, X as Heading, a7 as InteractiveMap, a0 as InteractiveMapProps, a1 as LayerFeature, a2 as LayerStyle, Z as Loader, _ as Logo, a8 as MAP_TYPES, a3 as MapPoint, ab as Meter, aa as MeterProps, aT as MetricFormat, aK as PercentageFormat, aN as PowerUnit, a4 as RenderType, aQ as ResistanceUnit, ad as RichTextEditor, ac as RichTextEditorProps, af as SegmentOption, ag as SegmentedControl, ae as SegmentedControlProps, aj as SideNav, ah as SideNavItem, ai as SideNavProps, a9 as StaticMap, a5 as StaticMapProps, ak as TextLink, aI as TextTransform, aJ as TextTruncatePosition, an as TooltipSeries, am as TopNav, al as TopNavProps, aO as VoltageUnit, av as YFormatSettings, a6 as ZoomStops, aV as activeDeviceStates, aw as clearColorCache, ax as createCategoryColorMap, ar as createXScale, as as createYScale, at as defaultMargin, aW as deviceStateLabels, aU as deviceStateMetricFormats, aF as formatComponentValue, ay as getContrastingTextColor, az as getDefaultChartColor, aA as getDefaultColors, aY as getDeviceStateDisplayLabel, aY as getDeviceStateLabel, a_ as getGridStateLabel, aB as getResolvedColor, aC as getThemeCategoricalColors, au as getYFormatSettings, aZ as gridStateLabels, aX as isActiveDeviceState, aX as isActiveState, aD as isLightColor, ap as useChartContext, aG as useComponentFormatter } from './server-2XGnhJXF.js';
|
|
7
7
|
import { Virtualizer } from '@tanstack/react-virtual';
|
|
8
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -1560,7 +1560,7 @@ declare function BreadcrumbItem(props: BreadcrumbProps & {
|
|
|
1560
1560
|
href?: string;
|
|
1561
1561
|
}): react_jsx_runtime.JSX.Element;
|
|
1562
1562
|
|
|
1563
|
-
type IconName$
|
|
1563
|
+
type IconName$2 = ComponentProps<typeof Icon>["name"];
|
|
1564
1564
|
type BaseButtonProps = Omit<ButtonProps$1, "className">;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* Button
|
|
@@ -1581,7 +1581,7 @@ interface ButtonProps extends BaseButtonProps {
|
|
|
1581
1581
|
badgeVariant?: "primary" | "destructive";
|
|
1582
1582
|
badgePosition?: "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1583
1583
|
fullWidth?: boolean;
|
|
1584
|
-
icon?: IconName$
|
|
1584
|
+
icon?: IconName$2;
|
|
1585
1585
|
iconWeight?: "thin" | "light" | "regular" | "bold" | "fill" | "duotone";
|
|
1586
1586
|
iconPosition?: "left" | "right";
|
|
1587
1587
|
isLoading?: boolean;
|
|
@@ -2464,7 +2464,7 @@ interface DataTableProps<T> {
|
|
|
2464
2464
|
interface Action<T = any> {
|
|
2465
2465
|
id: string;
|
|
2466
2466
|
label?: string;
|
|
2467
|
-
icon?: IconName$
|
|
2467
|
+
icon?: IconName$3;
|
|
2468
2468
|
onClick: (row: T) => void;
|
|
2469
2469
|
disabled?: boolean | ((row: T) => boolean);
|
|
2470
2470
|
hidden?: boolean | ((row: T) => boolean);
|
|
@@ -2487,8 +2487,8 @@ interface BooleanCellProps<T = any> extends CellComponentProps<T> {
|
|
|
2487
2487
|
format?: "icon" | "text" | "badge";
|
|
2488
2488
|
trueText?: string;
|
|
2489
2489
|
falseText?: string;
|
|
2490
|
-
trueIcon?: IconName$
|
|
2491
|
-
falseIcon?: IconName$
|
|
2490
|
+
trueIcon?: IconName$3;
|
|
2491
|
+
falseIcon?: IconName$3;
|
|
2492
2492
|
showFalse?: boolean;
|
|
2493
2493
|
align?: "left" | "center" | "right";
|
|
2494
2494
|
emphasis?: CellEmphasis;
|
|
@@ -2583,7 +2583,7 @@ interface DeviceStateCellProps<T = any> extends Omit<CellComponentProps<T>, "val
|
|
|
2583
2583
|
/** Custom label override */
|
|
2584
2584
|
label?: string | ((state: DeviceState, row: T) => string);
|
|
2585
2585
|
/** Optional icon */
|
|
2586
|
-
icon?: IconName$
|
|
2586
|
+
icon?: IconName$3;
|
|
2587
2587
|
/** Fixed width for column alignment (defaults to true for tables) */
|
|
2588
2588
|
fixedWidth?: boolean;
|
|
2589
2589
|
/** Alignment */
|
|
@@ -2814,7 +2814,7 @@ interface DeviceStateBadgeProps extends Omit<BadgeProps, "variant" | "children">
|
|
|
2814
2814
|
/** Custom label override (defaults to auto-capitalized state name) */
|
|
2815
2815
|
label?: string;
|
|
2816
2816
|
/** Optional icon to display before the label */
|
|
2817
|
-
icon?: IconName$
|
|
2817
|
+
icon?: IconName$3;
|
|
2818
2818
|
/** Loading state */
|
|
2819
2819
|
isLoading?: boolean;
|
|
2820
2820
|
/** Fixed width for column alignment (useful in tables) */
|
|
@@ -2999,7 +2999,7 @@ interface EmptyStateAction {
|
|
|
2999
2999
|
}
|
|
3000
3000
|
interface EmptyStateProps {
|
|
3001
3001
|
/** Icon name from Icon component to show at the top of the empty state. */
|
|
3002
|
-
icon?: IconName$
|
|
3002
|
+
icon?: IconName$3;
|
|
3003
3003
|
/** Primary title describing the state. */
|
|
3004
3004
|
title: ReactNode;
|
|
3005
3005
|
/** Optional description providing more context. */
|
|
@@ -4087,12 +4087,12 @@ type PageHeaderProps = {
|
|
|
4087
4087
|
breadcrumbs?: PageBreadcrumbItem[];
|
|
4088
4088
|
/** Custom breadcrumbs node if you don't want the built-in renderer */
|
|
4089
4089
|
breadcrumbsNode?: React__default.ReactNode;
|
|
4090
|
-
/** Optional right-aligned meta area (badges, status, small stats) */
|
|
4091
|
-
meta?: React__default.ReactNode;
|
|
4092
4090
|
/** Optional media content (images, maps, etc.) rendered after title/subtitle */
|
|
4093
4091
|
media?: React__default.ReactNode;
|
|
4094
4092
|
/** Optional actions (buttons, filters) - right-aligned on desktop, below subtitle on mobile. Array ensures consistent gap spacing. */
|
|
4095
4093
|
actions?: React__default.ReactNode[];
|
|
4094
|
+
/** Optional metadata bar shown below actions with top border. Renders as-is for full control. */
|
|
4095
|
+
metadata?: React__default.ReactNode;
|
|
4096
4096
|
/** Optional slot to replace the default heading element */
|
|
4097
4097
|
headingAs?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
4098
4098
|
/** Make header sticky at top of viewport */
|
|
@@ -4101,9 +4101,11 @@ type PageHeaderProps = {
|
|
|
4101
4101
|
stickyTop?: string;
|
|
4102
4102
|
/** Z-index for sticky positioning (default: 10) */
|
|
4103
4103
|
zIndex?: number;
|
|
4104
|
+
/** Show skeleton loaders based on provided props */
|
|
4105
|
+
isLoading?: boolean;
|
|
4104
4106
|
className?: string;
|
|
4105
4107
|
};
|
|
4106
|
-
declare function Header({ title, subtitle, breadcrumbs, breadcrumbsNode,
|
|
4108
|
+
declare function Header({ title, subtitle, breadcrumbs, breadcrumbsNode, media, actions, metadata, headingAs, sticky, stickyTop, zIndex, isLoading, className, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
4107
4109
|
type PageLayoutTab = {
|
|
4108
4110
|
id: string;
|
|
4109
4111
|
label: React__default.ReactNode;
|
|
@@ -4852,6 +4854,58 @@ interface TimeFieldProps extends Omit<TimeFieldProps$1<TimeValue>, "size" | "cla
|
|
|
4852
4854
|
*/
|
|
4853
4855
|
declare function TimeField({ label, description, errorMessage, size, tooltip, isRequired, transparent, validationResult, ...props }: TimeFieldProps): react_jsx_runtime.JSX.Element;
|
|
4854
4856
|
|
|
4857
|
+
interface TimelineProps {
|
|
4858
|
+
children: ReactNode;
|
|
4859
|
+
className?: string;
|
|
4860
|
+
}
|
|
4861
|
+
/**
|
|
4862
|
+
* Timeline
|
|
4863
|
+
*
|
|
4864
|
+
* A vertical timeline component for displaying hierarchical or sequential information.
|
|
4865
|
+
* Connects items with a visual line to show relationships or flow.
|
|
4866
|
+
*
|
|
4867
|
+
* @example
|
|
4868
|
+
* ```tsx
|
|
4869
|
+
* <Timeline>
|
|
4870
|
+
* <TimelineItem>First item</TimelineItem>
|
|
4871
|
+
* <TimelineItem>Second item</TimelineItem>
|
|
4872
|
+
* <TimelineItem>Third item</TimelineItem>
|
|
4873
|
+
* </Timeline>
|
|
4874
|
+
* ```
|
|
4875
|
+
*/
|
|
4876
|
+
declare function Timeline({ children, className }: TimelineProps): react_jsx_runtime.JSX.Element;
|
|
4877
|
+
|
|
4878
|
+
type IconName$1 = React.ComponentProps<typeof Icon>["name"];
|
|
4879
|
+
type TimelineItemVariant = "default" | "active" | "muted";
|
|
4880
|
+
interface TimelineItemProps {
|
|
4881
|
+
children: ReactNode;
|
|
4882
|
+
/** Visual variant of the timeline item */
|
|
4883
|
+
variant?: TimelineItemVariant;
|
|
4884
|
+
/** Optional icon to display in the connector dot */
|
|
4885
|
+
icon?: IconName$1;
|
|
4886
|
+
/** Label text displayed above the main content */
|
|
4887
|
+
label?: string;
|
|
4888
|
+
/** Whether this is the last item (hides the connecting line below) */
|
|
4889
|
+
isLast?: boolean;
|
|
4890
|
+
className?: string;
|
|
4891
|
+
}
|
|
4892
|
+
/**
|
|
4893
|
+
* TimelineItem
|
|
4894
|
+
*
|
|
4895
|
+
* Individual item in a Timeline component. Displays content with a connecting line
|
|
4896
|
+
* and optional icon/label. Supports different visual variants for emphasis.
|
|
4897
|
+
*
|
|
4898
|
+
* @example
|
|
4899
|
+
* ```tsx
|
|
4900
|
+
* <Timeline>
|
|
4901
|
+
* <TimelineItem label="Site" icon="MapPin">1020 Jordan Lane</TimelineItem>
|
|
4902
|
+
* <TimelineItem label="Utility" icon="Lightning">Pacific Gas & Electric</TimelineItem>
|
|
4903
|
+
* <TimelineItem label="ISO Market" icon="ChartNetwork" isLast>CAISO</TimelineItem>
|
|
4904
|
+
* </Timeline>
|
|
4905
|
+
* ```
|
|
4906
|
+
*/
|
|
4907
|
+
declare function TimelineItem({ children, variant, icon, label, isLast, className, }: TimelineItemProps): react_jsx_runtime.JSX.Element;
|
|
4908
|
+
|
|
4855
4909
|
type IconName = ComponentProps<typeof Icon>["name"];
|
|
4856
4910
|
interface ToggleButtonProps {
|
|
4857
4911
|
variant?: "default" | "brand";
|
|
@@ -4996,4 +5050,4 @@ type StatTone = "success" | "warning" | "error" | "info" | "neutral";
|
|
|
4996
5050
|
*/
|
|
4997
5051
|
declare function getStateTone(state: DeviceState): StatTone;
|
|
4998
5052
|
|
|
4999
|
-
export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BadgeProps, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, Button, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, type CellAlignment, type CellComponent, type CellComponentProps, type CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, type ChartExportMetadata, ChartTooltip, Checkbox, CheckboxGroup, Chip, ClearButton, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, Description, type DescriptionProps, DeviceHealthBadge, type DeviceHealthBadgeProps, DeviceMetaDisplay, type DeviceMetaDisplayProps, DeviceState, DeviceStateBadge, type DeviceStateBadgeProps, DeviceStateCell, DeviceStateWithMetric, type DeviceStateWithMetricProps, type DeviceType, DeviceTypeIcon, type DeviceTypeIconProps, Dialog, type DialogAction, type DialogFooterConfig, DialogHeader, type DialogHeaderConfig, type DialogHeaderProps, type DialogProps, DistanceFormat, Drawer, type DrawerProps, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type ExportType, type FacetConfig, type FacetCounts, type FacetType, FieldError, type FieldErrorProps, FieldFormat, FieldGroup, type FieldGroupProps, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedValue, FormatterFunction, FunnelSeries, type FunnelSeriesProps, type FunnelStage as FunnelSeriesStage, GeoJsonLayerSpec, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, GridState, GridStateBadge, type GridStateBadgeProps, type HealthStatus, Icon, InfiniteScrollIndicator, type InfiniteScrollIndicatorProps, Input, type InputProps, type InputStyleProps, InputWrapper, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, Label, type LabelProps, LayerSpec, LineSeries, type LinkBehavior, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type LoadingState, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberField, NumberFormat, type PageAsideProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageScrollableContentProps, PhoneFormat, PlaceSearch, Popover, PowerFormat, ProgressBar, Radio, RadioCard, RadioCardGroup, type RadioCardGroupProps, type RadioCardProps, RadioGroup, RangeCalendar, RasterLayerSpec, ResistanceFormat, type ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, type SearchConfig, SearchControl, type SearchControlProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, Select, SelectCell, type SelectCellProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, 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, Switch, Tab, TabList, TabPanel, type TableDensity, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextArea, TextAreaWithChips, TextCell, type TextCellProps, TextField, TextFormat, TimeField, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type UseBreakpointReturn, type UseClientDataControlsOptions, type UseClientDataControlsResult, type UseDataControlsClientOptions, type UseDataControlsOptions, type UseDataControlsResult, type UseDataControlsServerOptions, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseServerDataControlsOptions, VectorLayerSpec, VoltageFormat, YFormatType, addFilterCondition, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createEmptyFilter, createFilter, createFilters, createFormat, enumToSentenceCase, exportChart, 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, getExportFormatName, getFieldGroupStyles, getFilterFields, getInputBackgroundStyles, getInputBaseStyles, getInputStateStyles, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, 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, ucFirst, useBreakpoint, useClientDataControls, useColorMode, useDataControls, useDebounce, useInfiniteScroll, useInputFocus, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, yardsToMeters };
|
|
5053
|
+
export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BadgeProps, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, Button, Calendar, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardMobileRenderer, type CardProps, type CardVariant, type CellAlignment, type CellComponent, type CellComponentProps, type CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, type ChartExportMetadata, ChartTooltip, Checkbox, CheckboxGroup, Chip, ClearButton, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, ComponentFormatter, Confirm, type ConfirmProps, ConnectionStatusBadge, type ConnectionStatusBadgeProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, Description, type DescriptionProps, DeviceHealthBadge, type DeviceHealthBadgeProps, DeviceMetaDisplay, type DeviceMetaDisplayProps, DeviceState, DeviceStateBadge, type DeviceStateBadgeProps, DeviceStateCell, DeviceStateWithMetric, type DeviceStateWithMetricProps, type DeviceType, DeviceTypeIcon, type DeviceTypeIconProps, Dialog, type DialogAction, type DialogFooterConfig, DialogHeader, type DialogHeaderConfig, type DialogHeaderProps, type DialogProps, DistanceFormat, Drawer, type DrawerProps, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, type EnrollmentStatus, EnrollmentStatusBadge, type EnrollmentStatusBadgeProps, ErrorBoundary, type ExportType, type FacetConfig, type FacetCounts, type FacetType, FieldError, type FieldErrorProps, FieldFormat, FieldGroup, type FieldGroupProps, FieldValue, type FilterChip, FilterChips, type FilterChipsProps, type FilterCondition, FilterDialog, type FilterDialogProps, type FilterGroup, type FilterOperator, type FilterState, FirmwareVersionBadge, type FirmwareVersionBadgeProps, Form, FormatRegistry, FormattedValue, FormatterFunction, FunnelSeries, type FunnelSeriesProps, type FunnelStage as FunnelSeriesStage, GeoJsonLayerSpec, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, GridState, GridStateBadge, type GridStateBadgeProps, type HealthStatus, Icon, InfiniteScrollIndicator, type InfiniteScrollIndicatorProps, Input, type InputProps, type InputStyleProps, InputWrapper, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, Label, type LabelProps, LayerSpec, LineSeries, type LinkBehavior, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type LoadingState, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberField, NumberFormat, type PageAsideProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, type PageScrollableContentProps, PhoneFormat, PlaceSearch, Popover, PowerFormat, ProgressBar, Radio, RadioCard, RadioCardGroup, type RadioCardGroupProps, type RadioCardProps, RadioGroup, RangeCalendar, RasterLayerSpec, ResistanceFormat, type ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, type SearchConfig, SearchControl, type SearchControlProps, Section, SectionNav, type SectionNavItem, type SectionNavOrientation, type SectionNavProps, type SectionProps, type SectionSpacing, type SectionVariant, Select, SelectCell, type SelectCellProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, type SortState, 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, Switch, Tab, TabList, TabPanel, type TableDensity, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextArea, TextAreaWithChips, TextCell, type TextCellProps, TextField, TextFormat, TimeField, Timeline, TimelineItem, type TimelineItemProps, type TimelineItemVariant, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type UseBreakpointReturn, type UseClientDataControlsOptions, type UseClientDataControlsResult, type UseDataControlsClientOptions, type UseDataControlsOptions, type UseDataControlsResult, type UseDataControlsServerOptions, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseServerDataControlsOptions, VectorLayerSpec, VoltageFormat, YFormatType, addFilterCondition, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createEmptyFilter, createFilter, createFilters, createFormat, enumToSentenceCase, exportChart, 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, getExportFormatName, getFieldGroupStyles, getFilterFields, getInputBackgroundStyles, getInputBaseStyles, getInputStateStyles, getNumericColorClasses, getSkeletonSize, getStateTone, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isFilterEmpty, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, 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, ucFirst, useBreakpoint, useClientDataControls, useColorMode, useDataControls, useDebounce, useInfiniteScroll, useInputFocus, useLocalStorage, useMediaQuery, useNotice, useServerDataControls, yardsToMeters };
|