@texturehq/edges 1.9.1 → 1.10.1
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 +9 -9
- package/dist/generated/tailwind-tokens-dark.css +93 -103
- package/dist/generated/tailwind-tokens-light.css +93 -103
- package/dist/generated/viz-runtime.css +89 -89
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +18 -11
- package/dist/index.d.ts +18 -11
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/styles.css +221 -258
- package/dist/utilities.manifest.json +9 -2
- package/package.json +1 -1
- package/scripts/generate-viz-runtime.js +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1098,18 +1098,26 @@ interface AutocompleteProps {
|
|
|
1098
1098
|
}
|
|
1099
1099
|
declare function Autocomplete({ label, staticItems, sections, selectedKey, defaultSelectedKey, onSelectionChange, requestConfig, defaultFilter, placeholder, errorMessage, description, size, tooltip, isRequired, isDisabled, isInvalid, validationResult, showErrors, renderItem, renderLeftIcon, renderSection, autoFocus, }: AutocompleteProps): react_jsx_runtime.JSX.Element;
|
|
1100
1100
|
|
|
1101
|
+
type BreadcrumbItemProps = BreadcrumbProps & {
|
|
1102
|
+
href?: string;
|
|
1103
|
+
};
|
|
1101
1104
|
/**
|
|
1102
1105
|
* Breadcrumbs
|
|
1103
1106
|
*
|
|
1104
1107
|
* Navigation breadcrumbs that show the user's current location in the hierarchy
|
|
1108
|
+
* Automatically collapses middle items into an ellipsis dropdown when the container
|
|
1109
|
+
* width exceeds the maxWidth threshold (default: 600px)
|
|
1105
1110
|
*/
|
|
1106
|
-
declare function Breadcrumbs<T extends object>(props: BreadcrumbsProps<T>
|
|
1111
|
+
declare function Breadcrumbs<T extends object>(props: BreadcrumbsProps<T> & {
|
|
1112
|
+
maxWidth?: number;
|
|
1113
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1107
1114
|
/**
|
|
1108
|
-
*
|
|
1115
|
+
* BreadcrumbItem
|
|
1109
1116
|
*
|
|
1110
1117
|
* Individual breadcrumb item with optional link
|
|
1118
|
+
* The last breadcrumb is automatically styled as the current page (non-interactive, bold)
|
|
1111
1119
|
*/
|
|
1112
|
-
declare function
|
|
1120
|
+
declare function BreadcrumbItem(props: BreadcrumbProps & {
|
|
1113
1121
|
href?: string;
|
|
1114
1122
|
}): react_jsx_runtime.JSX.Element;
|
|
1115
1123
|
|
|
@@ -2133,9 +2141,9 @@ interface EmptyStateProps {
|
|
|
2133
2141
|
title: ReactNode;
|
|
2134
2142
|
/** Optional description providing more context. */
|
|
2135
2143
|
description?: ReactNode;
|
|
2136
|
-
/** Primary action (rendered as a
|
|
2144
|
+
/** Primary action (rendered as a button). */
|
|
2137
2145
|
primaryAction?: EmptyStateAction;
|
|
2138
|
-
/** Secondary action (rendered as a
|
|
2146
|
+
/** Secondary action (rendered as a text link). */
|
|
2139
2147
|
secondaryAction?: EmptyStateAction;
|
|
2140
2148
|
/** Optional custom action area. Use this for complete control over actions. Overrides primaryAction and secondaryAction. */
|
|
2141
2149
|
actions?: ReactNode;
|
|
@@ -2154,8 +2162,8 @@ interface EmptyStateProps {
|
|
|
2154
2162
|
* Minimal, composable empty state surface for communicating lack of data.
|
|
2155
2163
|
* Supports optional icon, description and opinionated action patterns.
|
|
2156
2164
|
*
|
|
2157
|
-
* Use `primaryAction` and `secondaryAction` for consistent styling,
|
|
2158
|
-
* for complete control over the action area.
|
|
2165
|
+
* Use `primaryAction` (button) and `secondaryAction` (text link) for consistent styling,
|
|
2166
|
+
* or use `actions` for complete control over the action area.
|
|
2159
2167
|
*/
|
|
2160
2168
|
declare function EmptyState({ icon, title, description, primaryAction, secondaryAction, actions, size, alignment, fullHeight, className, }: EmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
2161
2169
|
|
|
@@ -3004,9 +3012,8 @@ declare function NumberField({ label, description, errorMessage, size, tooltip,
|
|
|
3004
3012
|
* - Composable: Use with Grid, Section, Card, DataControls and other components for flexible layouts.
|
|
3005
3013
|
* - Styling: token-oriented utility classes (match to your Tailwind preset/tokens).
|
|
3006
3014
|
*/
|
|
3007
|
-
type
|
|
3015
|
+
type PageBreadcrumbItem = BreadcrumbItemProps & {
|
|
3008
3016
|
label: string;
|
|
3009
|
-
href?: string;
|
|
3010
3017
|
};
|
|
3011
3018
|
type PageLayoutProps = {
|
|
3012
3019
|
children: React__default.ReactNode;
|
|
@@ -3027,7 +3034,7 @@ declare namespace PageLayout {
|
|
|
3027
3034
|
type PageHeaderProps = {
|
|
3028
3035
|
title: React__default.ReactNode;
|
|
3029
3036
|
subtitle?: React__default.ReactNode;
|
|
3030
|
-
breadcrumbs?:
|
|
3037
|
+
breadcrumbs?: PageBreadcrumbItem[];
|
|
3031
3038
|
/** Custom breadcrumbs node if you don't want the built-in renderer */
|
|
3032
3039
|
breadcrumbsNode?: React__default.ReactNode;
|
|
3033
3040
|
/** Optional right-aligned meta area (badges, status, small stats) */
|
|
@@ -3717,4 +3724,4 @@ interface ColorModeProviderProps {
|
|
|
3717
3724
|
}
|
|
3718
3725
|
declare const ColorModeProvider: React.FC<ColorModeProviderProps>;
|
|
3719
3726
|
|
|
3720
|
-
export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat,
|
|
3727
|
+
export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, Button, Calendar, Card, CardMobileRenderer, type CardProps, type CardVariant, type CellAlignment, type CellComponent, type CellComponentProps, type CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, type ChartExportMetadata, ChartTooltip, Checkbox, CheckboxGroup, Chip, ClearButton, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, ComponentFormatter, Confirm, type ConfirmProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, Description, type DescriptionProps, Dialog, type DialogAction, type DialogFooterConfig, DialogHeader, type DialogHeaderConfig, type DialogHeaderProps, type DialogProps, DistanceFormat, Drawer, type DrawerProps, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, ErrorBoundary, type ExportType, FieldError, type FieldErrorProps, FieldFormat, FieldGroup, type FieldGroupProps, FieldValue, FilterChips, type FilterChipsProps, Form, FormatRegistry, FormattedValue, FormatterFunction, GeoJsonLayerSpec, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, Icon, Input, type InputProps, type InputStyleProps, InputWrapper, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, Label, type LabelProps, LayerSpec, LineSeries, type LinkBehavior, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberField, NumberFormat, type PageActionsProps, type PageAsideProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, PhoneFormat, PlaceSearch, Popover, PowerFormat, ProgressBar, Radio, RadioGroup, RangeCalendar, RasterLayerSpec, ResistanceFormat, type ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, SearchControl, type SearchControlProps, Section, type SectionProps, type SectionSpacing, type SectionVariant, Select, SelectCell, type SelectCellProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, type StatAlign, type StatFormatter, type StatItem, type StatLayout, StatList, type StatListProps, type StatThreshold, type StatTone, type StatValue, Switch, Tab, TabList, TabPanel, type TableDensity, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextArea, TextAreaWithChips, TextCell, type TextCellProps, TextField, TextFormat, TimeField, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type UseBreakpointReturn, VectorLayerSpec, VoltageFormat, YFormatType, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createFormat, enumToSentenceCase, exportChart, fahrenheitToCelsius, fahrenheitToKelvin, feetToMeters, feetToMiles, formatBoolean, formatCurrency, formatCurrent, formatDate, formatDistance, formatEmptyValue, formatEnergy, formatFieldValue, formatInternationalPhone, formatNumber, formatPhone, formatPhoneNumber, formatPower, formatResistance, formatTemperature, formatText, formatUSPhone, formatVoltage, getBadgeClasses, getBooleanBadgeVariant, getCellAlignmentClasses, getCellContainerClasses, getCellTextClasses, getDateParts, getExportFormatName, getFieldGroupStyles, getInputBackgroundStyles, getInputBaseStyles, getInputStateStyles, getNumericColorClasses, getSkeletonSize, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, resolveValue, snakeCaseToWords, temperatureStringToSymbol, toA, toActiveInactive, toAmps, toBoolean, toCelsius, toCentimeters, toCheckmark, toCompactNumber, toCurrency, toCustomDateFormat, toDateString, toEnabledDisabled, toFahrenheit, toFeet, toFloat, toFormattedNumber, toFullDateTime, toGW, toGWh, toGigawatts, toISOString, toInches, toInteger, toKA, toKV, toKW, toKelvin, toKiloamps, toKilohms, toKilometers, toKilovolts, toKilowatts, toLowerCase, toMA, toMV, toMW, toMWh, toMegawatts, toMegohms, toMeters, toMiles, toMilliamps, toMillimeters, toMilliohms, toMillivolts, toNauticalMiles, toOhms, toOnOff, toPercentage, toRelativeTime, toScientificNotation, toSecret, toSentenceCase, toTemperature, toTitleCase, toTrueFalse, toUpperCase, toV, toVolts, toW, toWatts, toWh, toYards, tokWh, truncateEnd, truncateMiddle, truncateStart, ucFirst, useBreakpoint, useColorMode, useDebounce, useInputFocus, useLocalStorage, useMediaQuery, useNotice, yardsToMeters };
|
package/dist/index.d.ts
CHANGED
|
@@ -1098,18 +1098,26 @@ interface AutocompleteProps {
|
|
|
1098
1098
|
}
|
|
1099
1099
|
declare function Autocomplete({ label, staticItems, sections, selectedKey, defaultSelectedKey, onSelectionChange, requestConfig, defaultFilter, placeholder, errorMessage, description, size, tooltip, isRequired, isDisabled, isInvalid, validationResult, showErrors, renderItem, renderLeftIcon, renderSection, autoFocus, }: AutocompleteProps): react_jsx_runtime.JSX.Element;
|
|
1100
1100
|
|
|
1101
|
+
type BreadcrumbItemProps = BreadcrumbProps & {
|
|
1102
|
+
href?: string;
|
|
1103
|
+
};
|
|
1101
1104
|
/**
|
|
1102
1105
|
* Breadcrumbs
|
|
1103
1106
|
*
|
|
1104
1107
|
* Navigation breadcrumbs that show the user's current location in the hierarchy
|
|
1108
|
+
* Automatically collapses middle items into an ellipsis dropdown when the container
|
|
1109
|
+
* width exceeds the maxWidth threshold (default: 600px)
|
|
1105
1110
|
*/
|
|
1106
|
-
declare function Breadcrumbs<T extends object>(props: BreadcrumbsProps<T>
|
|
1111
|
+
declare function Breadcrumbs<T extends object>(props: BreadcrumbsProps<T> & {
|
|
1112
|
+
maxWidth?: number;
|
|
1113
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1107
1114
|
/**
|
|
1108
|
-
*
|
|
1115
|
+
* BreadcrumbItem
|
|
1109
1116
|
*
|
|
1110
1117
|
* Individual breadcrumb item with optional link
|
|
1118
|
+
* The last breadcrumb is automatically styled as the current page (non-interactive, bold)
|
|
1111
1119
|
*/
|
|
1112
|
-
declare function
|
|
1120
|
+
declare function BreadcrumbItem(props: BreadcrumbProps & {
|
|
1113
1121
|
href?: string;
|
|
1114
1122
|
}): react_jsx_runtime.JSX.Element;
|
|
1115
1123
|
|
|
@@ -2133,9 +2141,9 @@ interface EmptyStateProps {
|
|
|
2133
2141
|
title: ReactNode;
|
|
2134
2142
|
/** Optional description providing more context. */
|
|
2135
2143
|
description?: ReactNode;
|
|
2136
|
-
/** Primary action (rendered as a
|
|
2144
|
+
/** Primary action (rendered as a button). */
|
|
2137
2145
|
primaryAction?: EmptyStateAction;
|
|
2138
|
-
/** Secondary action (rendered as a
|
|
2146
|
+
/** Secondary action (rendered as a text link). */
|
|
2139
2147
|
secondaryAction?: EmptyStateAction;
|
|
2140
2148
|
/** Optional custom action area. Use this for complete control over actions. Overrides primaryAction and secondaryAction. */
|
|
2141
2149
|
actions?: ReactNode;
|
|
@@ -2154,8 +2162,8 @@ interface EmptyStateProps {
|
|
|
2154
2162
|
* Minimal, composable empty state surface for communicating lack of data.
|
|
2155
2163
|
* Supports optional icon, description and opinionated action patterns.
|
|
2156
2164
|
*
|
|
2157
|
-
* Use `primaryAction` and `secondaryAction` for consistent styling,
|
|
2158
|
-
* for complete control over the action area.
|
|
2165
|
+
* Use `primaryAction` (button) and `secondaryAction` (text link) for consistent styling,
|
|
2166
|
+
* or use `actions` for complete control over the action area.
|
|
2159
2167
|
*/
|
|
2160
2168
|
declare function EmptyState({ icon, title, description, primaryAction, secondaryAction, actions, size, alignment, fullHeight, className, }: EmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
2161
2169
|
|
|
@@ -3004,9 +3012,8 @@ declare function NumberField({ label, description, errorMessage, size, tooltip,
|
|
|
3004
3012
|
* - Composable: Use with Grid, Section, Card, DataControls and other components for flexible layouts.
|
|
3005
3013
|
* - Styling: token-oriented utility classes (match to your Tailwind preset/tokens).
|
|
3006
3014
|
*/
|
|
3007
|
-
type
|
|
3015
|
+
type PageBreadcrumbItem = BreadcrumbItemProps & {
|
|
3008
3016
|
label: string;
|
|
3009
|
-
href?: string;
|
|
3010
3017
|
};
|
|
3011
3018
|
type PageLayoutProps = {
|
|
3012
3019
|
children: React__default.ReactNode;
|
|
@@ -3027,7 +3034,7 @@ declare namespace PageLayout {
|
|
|
3027
3034
|
type PageHeaderProps = {
|
|
3028
3035
|
title: React__default.ReactNode;
|
|
3029
3036
|
subtitle?: React__default.ReactNode;
|
|
3030
|
-
breadcrumbs?:
|
|
3037
|
+
breadcrumbs?: PageBreadcrumbItem[];
|
|
3031
3038
|
/** Custom breadcrumbs node if you don't want the built-in renderer */
|
|
3032
3039
|
breadcrumbsNode?: React__default.ReactNode;
|
|
3033
3040
|
/** Optional right-aligned meta area (badges, status, small stats) */
|
|
@@ -3717,4 +3724,4 @@ interface ColorModeProviderProps {
|
|
|
3717
3724
|
}
|
|
3718
3725
|
declare const ColorModeProvider: React.FC<ColorModeProviderProps>;
|
|
3719
3726
|
|
|
3720
|
-
export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat,
|
|
3727
|
+
export { type Action, ActionCell, type ActionCellProps, ActivityFeed, ActivityFeedGroup, type ActivityFeedGroupProps, type ActivityFeedProps, type ActivityFeedSize, type ActivityFeedVariant, ActivityItem, type ActivityItemProps, type ActivityItemSurface, type ActivityItemTone, Alert, type AlertProps, AreaSeries, AutoMobileRenderer, Autocomplete, BREAKPOINTS, BarSeries, BaseDataPoint, type BaseInputProps, type BaseProps, BooleanCell, type BooleanCellProps, BooleanFormat, BreadcrumbItem, type BreadcrumbItemProps, Breadcrumbs, type Breakpoint, type BreakpointState, Button, Calendar, Card, CardMobileRenderer, type CardProps, type CardVariant, type CellAlignment, type CellComponent, type CellComponentProps, type CellContext, type CellEmphasis, ChartAxis, ChartBottomBar, ChartContainer, type ChartExportMetadata, ChartTooltip, Checkbox, CheckboxGroup, Chip, ClearButton, Collapse, CollapseContent, type CollapseContentProps, type CollapseDensity, CollapseHeader, type CollapseHeaderProps, CollapseItem, type CollapseItemProps, type CollapseProps, type CollapseVariant, ColorModeProvider, type Column, ComponentFormatter, Confirm, type ConfirmProps, CopyToClipboard, CurrencyFormat, CurrentFormat, CustomPinsSpec, DataControls, type Filter as DataControlsFilter, type DataControlsProps, type SortOption as DataControlsSortOption, DataTable, type DataTableProps, DateCell, type DateCellProps, DateFormat, DateRangePicker, Description, type DescriptionProps, Dialog, type DialogAction, type DialogFooterConfig, DialogHeader, type DialogHeaderConfig, type DialogHeaderProps, type DialogProps, DistanceFormat, Drawer, type DrawerProps, EmptyState, type EmptyStateAction, type EmptyStateAlignment, type EmptyStateProps, type EmptyStateSize, EnergyFormat, ErrorBoundary, type ExportType, FieldError, type FieldErrorProps, FieldFormat, FieldGroup, type FieldGroupProps, FieldValue, FilterChips, type FilterChipsProps, Form, FormatRegistry, FormattedValue, FormatterFunction, GeoJsonLayerSpec, Grid, type GridAlign, type GridCols, type GridFlow, type GridGap, type GridItemProps, type GridJustify, type GridProps, type GridSpan, Icon, Input, type InputProps, type InputStyleProps, InputWrapper, Kpi, KpiGroup, type KpiGroupAlign, type KpiGroupCols, type KpiGroupGap, type KpiGroupProps, type KpiOrientation, type KpiProps, type KpiSize, type KpiStatus, Label, type LabelProps, LayerSpec, LineSeries, type LinkBehavior, List, ListBox, ListBoxItem, ListItem, type ListItemProps, ListPane, type ListPaneProps, type ListProps, type MobileBreakpoint, type MobileConfig, type MobileRenderer, ModalBackdrop, type ModalBackdropProps, Notice, NoticeContainer, type NoticeContainerProps, type NoticeOptions, type NoticeProps, NoticeProvider, type NoticeProviderProps, type NoticeVariant, NumberCell, type NumberCellProps, NumberField, NumberFormat, type PageActionsProps, type PageAsideProps, type PageBreadcrumbItem, type PageContentProps, type PageHeaderProps, PageLayout, type PageLayoutProps, PhoneFormat, PlaceSearch, Popover, PowerFormat, ProgressBar, Radio, RadioGroup, RangeCalendar, RasterLayerSpec, ResistanceFormat, type ResponsiveValue, ResultsCount, type ResultsCountProps, SKELETON_SIZES, SearchControl, type SearchControlProps, Section, type SectionProps, type SectionSpacing, type SectionVariant, Select, SelectCell, type SelectCellProps, Skeleton, Slider, type SortConfig, SortControl, type SortControlProps, type SortDirection, SplitPane, type SplitPaneOrientation, type SplitPanePanelProps, type SplitPaneProps, type StatAlign, type StatFormatter, type StatItem, type StatLayout, StatList, type StatListProps, type StatThreshold, type StatTone, type StatValue, Switch, Tab, TabList, TabPanel, type TableDensity, type TableLayout, type TableWidth, Tabs, type TabsProps$1 as TabsProps, TemperatureFormat, TemperatureUnit, TemperatureUnitString, TextArea, TextAreaWithChips, TextCell, type TextCellProps, TextField, TextFormat, TimeField, ToggleButton, Tooltip, TooltipData, Tray, type TrayProps, type TrendPoint, type UseBreakpointReturn, VectorLayerSpec, VoltageFormat, YFormatType, autoScaleCurrent, autoScaleDistance, autoScaleEnergy, autoScalePower, autoScaleResistance, autoScaleVoltage, camelCaseToWords, capitalize, celsiusToFahrenheit, celsiusToKelvin, centimetersToInches, createFormat, enumToSentenceCase, exportChart, fahrenheitToCelsius, fahrenheitToKelvin, feetToMeters, feetToMiles, formatBoolean, formatCurrency, formatCurrent, formatDate, formatDistance, formatEmptyValue, formatEnergy, formatFieldValue, formatInternationalPhone, formatNumber, formatPhone, formatPhoneNumber, formatPower, formatResistance, formatTemperature, formatText, formatUSPhone, formatVoltage, getBadgeClasses, getBooleanBadgeVariant, getCellAlignmentClasses, getCellContainerClasses, getCellTextClasses, getDateParts, getExportFormatName, getFieldGroupStyles, getInputBackgroundStyles, getInputBaseStyles, getInputStateStyles, getNumericColorClasses, getSkeletonSize, inchesToCentimeters, isCustomPinsLayer, isExportSupported, isGeoJsonLayer, isNil, isRasterLayer, isVectorLayer, kelvinToCelsius, kelvinToFahrenheit, kilometersToMiles, layer, metersToFeet, metersToMiles, metersToYards, milesToFeet, milesToKilometers, milesToMeters, parseBoolean, resolveValue, snakeCaseToWords, temperatureStringToSymbol, toA, toActiveInactive, toAmps, toBoolean, toCelsius, toCentimeters, toCheckmark, toCompactNumber, toCurrency, toCustomDateFormat, toDateString, toEnabledDisabled, toFahrenheit, toFeet, toFloat, toFormattedNumber, toFullDateTime, toGW, toGWh, toGigawatts, toISOString, toInches, toInteger, toKA, toKV, toKW, toKelvin, toKiloamps, toKilohms, toKilometers, toKilovolts, toKilowatts, toLowerCase, toMA, toMV, toMW, toMWh, toMegawatts, toMegohms, toMeters, toMiles, toMilliamps, toMillimeters, toMilliohms, toMillivolts, toNauticalMiles, toOhms, toOnOff, toPercentage, toRelativeTime, toScientificNotation, toSecret, toSentenceCase, toTemperature, toTitleCase, toTrueFalse, toUpperCase, toV, toVolts, toW, toWatts, toWh, toYards, tokWh, truncateEnd, truncateMiddle, truncateStart, ucFirst, useBreakpoint, useColorMode, useDebounce, useInputFocus, useLocalStorage, useMediaQuery, useNotice, yardsToMeters };
|