@hybridcore/ui 1.6.5 → 1.6.7

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.
Files changed (34) hide show
  1. package/dist/IconX-C2wmVYSK.js +11 -0
  2. package/dist/components/charts/_common/format.js +55 -0
  3. package/dist/components/charts/_common/utils.js +12 -7
  4. package/dist/components/charts/chart-wrapper/helpers.js +46 -21
  5. package/dist/components/charts/chart-wrapper/logic.js +57 -40
  6. package/dist/components/charts/column-line-mix/logic.js +87 -86
  7. package/dist/components/charts/donut-chart/logic.js +37 -36
  8. package/dist/components/charts/drill-down-treemap/logic.js +123 -123
  9. package/dist/components/charts/drill-down-voronoi-treemap/logic.js +253 -252
  10. package/dist/components/charts/heatmap/logic.js +73 -73
  11. package/dist/components/charts/line/logic.js +201 -103
  12. package/dist/components/charts/logaritmic-scale/logic.js +65 -65
  13. package/dist/components/charts/multiple-value-axes/logic.js +96 -94
  14. package/dist/components/charts/nested-pie/logic.js +43 -42
  15. package/dist/components/charts/packed-circles/logic.js +111 -110
  16. package/dist/components/charts/pie-chart/logic.js +40 -39
  17. package/dist/components/charts/stacked-area-radar/logic.js +68 -67
  18. package/dist/components/charts/stacked-column-chart/logic.js +71 -70
  19. package/dist/components/charts/xy-chart/logic.js +82 -76
  20. package/dist/components/color-picker/index.js +1645 -1602
  21. package/dist/components/color-picker/logic.js +21 -12
  22. package/dist/components/color-picker/styled.js +4 -2
  23. package/dist/components/date-range-picker/index.js +359 -365
  24. package/dist/components/metric-card/helpers.js +12 -5
  25. package/dist/components/metric-card/index.js +58 -54
  26. package/dist/components/metric-card/logic.js +78 -61
  27. package/dist/components/metric-card/styled.js +63 -45
  28. package/dist/components/simple-pivot-table/index.js +129 -54
  29. package/dist/components/simple-pivot-table/logic.js +111 -45
  30. package/dist/components/simple-pivot-table/styled.js +31 -11
  31. package/dist/main.d.ts +125 -8
  32. package/dist/main.js +145 -141
  33. package/dist/{styled-Db1RdcPA.js → styled-SoqbyrkW.js} +116 -89
  34. package/package.json +1 -1
package/dist/main.d.ts CHANGED
@@ -84,11 +84,6 @@ export declare namespace AccessUtils {
84
84
 
85
85
  export { AdapterDayjs }
86
86
 
87
- declare interface Aggregation {
88
- label: string;
89
- value: number | string;
90
- }
91
-
92
87
  declare function alert_2(title: string, message: string): Promise<unknown>;
93
88
  export { alert_2 as alert }
94
89
 
@@ -222,6 +217,10 @@ export declare interface CardProps {
222
217
  export declare interface ChartDimension {
223
218
  value: string;
224
219
  type: string;
220
+ /** Display label override; falls back to a humanized `value` when unset. */
221
+ label?: string;
222
+ /** dayjs format for date-typed dimensions; falls back to a grain-based default. */
223
+ dateFormat?: string;
225
224
  }
226
225
 
227
226
  export declare type ChartNameType =
@@ -261,6 +260,15 @@ export declare interface ChartProps {
261
260
  * a custom theme to override per-deployment.
262
261
  */
263
262
  colors?: readonly string[];
263
+ /**
264
+ * Controls whether a line series bridges gaps in the data. When `true` (the
265
+ * default) the line is drawn continuously across missing points. When `false`,
266
+ * the line breaks wherever data is missing — on a date axis a gap is detected
267
+ * when the spacing between adjacent points exceeds the base interval, so
268
+ * absent dates become visible breaks instead of a straight fill. Line-type
269
+ * charts only.
270
+ */
271
+ connectMissingData?: boolean;
264
272
  sx?: SxProps<Theme>;
265
273
  }
266
274
 
@@ -270,6 +278,10 @@ export declare interface ChartValue {
270
278
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
271
279
  operator: any;
272
280
  dataFieldName: string;
281
+ /** Optional per-value formatting + conditional styling. */
282
+ format?: ValueFormat;
283
+ /** Display label override; falls back to a humanized `name` when unset. */
284
+ label?: string;
273
285
  }
274
286
 
275
287
  export declare const ChartWrapper: (inProps: ChartWrapperProps) => JSX_2.Element;
@@ -314,10 +326,18 @@ export declare type ColorPickerComponentOverride<Theme = unknown> = {
314
326
  export declare interface ColorPickerProps {
315
327
  value: string;
316
328
  swatches?: string[];
329
+ /**
330
+ * "inline" (default) — the legacy swatch row + advanced-picker icon.
331
+ * "popover" — a single swatch/hex trigger button that opens the familiar
332
+ * saturation + hue + hex picker with preset swatches in a popover.
333
+ */
334
+ variant?: ColorPickerVariant;
317
335
  sx?: SxProps<Theme>;
318
336
  onChange(value: string): void;
319
337
  }
320
338
 
339
+ declare type ColorPickerVariant = "inline" | "popover";
340
+
321
341
  export declare const ColumnLineMix: (inProps: ColumnLineMixProps) => JSX_2.Element;
322
342
 
323
343
  export declare type ColumnLineMixComponentOverride<Theme = unknown> = {
@@ -327,6 +347,16 @@ export declare type ColumnLineMixComponentOverride<Theme = unknown> = {
327
347
 
328
348
  export declare type ColumnLineMixProps = ChartProps;
329
349
 
350
+ declare interface ColumnSummary {
351
+ field: string;
352
+ name: string;
353
+ count: number;
354
+ sum: number;
355
+ avg: number;
356
+ min: number;
357
+ max: number;
358
+ }
359
+
330
360
  export declare interface CompositeListRangeProps {
331
361
  value: SIMULATION.RandomInfoComposite;
332
362
  mapboxAccessToken: string;
@@ -336,6 +366,26 @@ export declare interface CompositeListRangeProps {
336
366
  onChange(value: SIMULATION.RandomInfoComposite): void;
337
367
  }
338
368
 
369
+ export declare type ConditionalOp =
370
+ | "lt"
371
+ | "lte"
372
+ | "gt"
373
+ | "gte"
374
+ | "eq"
375
+ | "neq"
376
+ | "between";
377
+
378
+ export declare interface ConditionalRule {
379
+ op: ConditionalOp;
380
+ value: number;
381
+ /** Upper bound, used only when `op` is "between". */
382
+ value2?: number;
383
+ /** Text color applied when the rule matches (theme token path or CSS color). */
384
+ color?: string;
385
+ /** Background color applied when the rule matches. */
386
+ backgroundColor?: string;
387
+ }
388
+
339
389
  export declare const ConditionalWrapper: ({ condition, wrapper, children, }: ConditionalWrapperProps) => JSX_2.Element;
340
390
 
341
391
  declare interface ConditionalWrapperProps {
@@ -645,6 +695,13 @@ export declare const FlexRow: StyledComponent<BoxOwnProps<Theme> & Omit<Omit<Det
645
695
  ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLDivElement> | null | undefined;
646
696
  }, keyof BoxOwnProps<Theme>> & MUIStyledCommonProps<Theme>, {}, {}>;
647
697
 
698
+ /**
699
+ * Format a raw value for display: numbers get locale grouping + the configured
700
+ * decimals, then the prefix/suffix are wrapped around the result. Non-numeric
701
+ * values are returned as-is; empty values become an em dash.
702
+ */
703
+ export declare const formatValue: (value: unknown, format?: ValueFormat, empty?: string) => string;
704
+
648
705
  export declare const GeometryDraw: ({ mapId, mapboxAccessToken, value: defaultValue, disableActions, variant, defaultExtent, onCancel, onSubmit, onChange, }: GeometryDrawProps) => JSX_2.Element;
649
706
 
650
707
  export declare interface GeometryDrawProps {
@@ -763,6 +820,13 @@ export declare interface HighlightLineChartProps {
763
820
  sx?: SxProps<Theme>;
764
821
  }
765
822
 
823
+ /**
824
+ * Turn a raw field key into a human label: snake_case / kebab-case / camelCase
825
+ * → Title Case (e.g. "total_revenue" / "totalRevenue" → "Total Revenue"). Used
826
+ * as the default display label when no explicit label is set.
827
+ */
828
+ export declare const humanizeLabel: (raw: string) => string;
829
+
766
830
  export declare const IconButton: (props: IconButtonProps) => JSX_2.Element;
767
831
 
768
832
  export declare type IconButtonComponentOverride<Theme = unknown> = {
@@ -1136,6 +1200,12 @@ export declare interface MetricCardDataPoint {
1136
1200
  export declare interface MetricCardProps {
1137
1201
  label: string;
1138
1202
  value: MetricCardDataPoint[];
1203
+ // Optional denominator series rendered as a muted "value / secondValue" pair.
1204
+ // Like `value`, only the latest point is shown; it never picks up conditional
1205
+ // coloring. Formatted by `secondValueFormat` when set, else falls back to
1206
+ // `format` (so a "/ " separator can be carried as `secondValueFormat.prefix`).
1207
+ secondValue?: MetricCardDataPoint[];
1208
+ secondValueFormat?: ValueFormat;
1139
1209
  description?: string;
1140
1210
  variant?: MetricVariant;
1141
1211
  loading?: boolean;
@@ -1146,9 +1216,15 @@ export declare interface MetricCardProps {
1146
1216
 
1147
1217
  // Rendered verbatim around the formatted number, e.g. valuePrefix "€ " → "€ 1,577",
1148
1218
  // valueSuffix " kg" → "1,577 kg". Include any spacing in the string itself.
1219
+ // Superseded by `format.prefix` / `format.suffix` when those are set.
1149
1220
  valuePrefix?: string;
1150
1221
  valueSuffix?: string;
1151
1222
 
1223
+ // Per-value formatting + conditional coloring (shared with charts/pivot).
1224
+ // `format.prefix`/`format.suffix`/`format.decimals` control the displayed
1225
+ // number; `format.conditionalRules` color the value by threshold.
1226
+ format?: ValueFormat;
1227
+
1152
1228
  showChange?: boolean;
1153
1229
  changeType?: MetricChangeType;
1154
1230
 
@@ -1572,6 +1648,18 @@ export declare type RelativeDatePreset =
1572
1648
 
1573
1649
  export declare const removeNotification: (id: string) => void;
1574
1650
 
1651
+ /**
1652
+ * Resolve a value's text/background color: the format's base `color`/
1653
+ * `backgroundColor` apply unconditionally, then the first matching conditional
1654
+ * rule overrides them per-field (a rule that only sets one color keeps the base
1655
+ * for the other). Returns an empty object when nothing is configured, so callers
1656
+ * can spread it safely.
1657
+ */
1658
+ export declare const resolveConditionalStyle: (value: unknown, format?: ValueFormat) => {
1659
+ color?: string;
1660
+ backgroundColor?: string;
1661
+ };
1662
+
1575
1663
  export declare const ScrollDrag: (props: ScrollDragProps) => JSX_2.Element;
1576
1664
 
1577
1665
  export declare type ScrollDragComponentOverride<Theme = unknown> = {
@@ -1671,7 +1759,8 @@ export declare interface SimplePivotTableProps {
1671
1759
 
1672
1760
  export declare interface SimplePivotTableSnapshot
1673
1761
  extends Omit<SimplePivotTableProps, "sx"> {
1674
- aggregations: Aggregation[];
1762
+ /** Per-(numeric)-column summary stats — for export/snapshot context. */
1763
+ summaries: ColumnSummary[];
1675
1764
  }
1676
1765
 
1677
1766
  export declare const SortableList: (props: SortableListProps) => JSX_2.Element;
@@ -2091,6 +2180,28 @@ export declare interface UploaderProps {
2091
2180
 
2092
2181
  export declare type UploaderType = "IMAGE" | "VIDEO" | "FILE" | "AUDIO" | "OTHER";
2093
2182
 
2183
+ /**
2184
+ * Per-value display configuration. Numbers are formatted, then wrapped with
2185
+ * `prefix`/`suffix`; the first matching `conditionalRules` entry contributes
2186
+ * the cell/value color. Presentation only — the underlying numeric value is
2187
+ * untouched so aggregation, sorting, and conditional rules keep working.
2188
+ */
2189
+ export declare interface ValueFormat {
2190
+ /** Rendered verbatim before the number, e.g. "$" or "€ ". Include spacing. */
2191
+ prefix?: string;
2192
+ /** Rendered verbatim after the number, e.g. " kg" or "%". Include spacing. */
2193
+ suffix?: string;
2194
+ /** Fixed number of fraction digits; defaults to "up to 2" when unset. */
2195
+ decimals?: number;
2196
+ /** Base text color applied unconditionally (theme token path or CSS color). A
2197
+ * matching `conditionalRules` entry overrides it. */
2198
+ color?: string;
2199
+ /** Base background color applied unconditionally. A matching rule overrides it. */
2200
+ backgroundColor?: string;
2201
+ /** First matching rule wins; its colors override the base `color`/`backgroundColor`. */
2202
+ conditionalRules?: ConditionalRule[];
2203
+ }
2204
+
2094
2205
  export declare interface VariableDataType {
2095
2206
  title: string;
2096
2207
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -2551,7 +2662,7 @@ declare module "@mui/material/styles" {
2551
2662
 
2552
2663
  declare module "@mui/material/styles" {
2553
2664
  interface ComponentNameToClassKey {
2554
- HCColorPicker: "root" | "radio" | "pickerWrapper";
2665
+ HCColorPicker: "root" | "radio" | "pickerWrapper" | "trigger" | "swatch";
2555
2666
  }
2556
2667
 
2557
2668
  interface ComponentsPropsList {
@@ -3232,6 +3343,7 @@ declare module "@mui/material/styles" {
3232
3343
  | "content"
3233
3344
  | "label"
3234
3345
  | "value"
3346
+ | "secondValue"
3235
3347
  | "trendContainer"
3236
3348
  | "description"
3237
3349
  | "icon"
@@ -3403,7 +3515,12 @@ declare module "@mui/material/styles" {
3403
3515
 
3404
3516
  declare module "@mui/material/styles" {
3405
3517
  interface ComponentNameToClassKey {
3406
- HCSimplePivotTable: "root" | "header" | "content" | "footer";
3518
+ HCSimplePivotTable:
3519
+ | "root"
3520
+ | "header"
3521
+ | "content"
3522
+ | "footer"
3523
+ | "scrollHint";
3407
3524
  }
3408
3525
 
3409
3526
  interface ComponentsPropsList {
package/dist/main.js CHANGED
@@ -6,14 +6,14 @@ import { Card as n } from "./components/card/index.js";
6
6
  import { CardAlternate as s } from "./components/card-alternate/index.js";
7
7
  import { ChartWrapper as C } from "./components/charts/chart-wrapper/index.js";
8
8
  import { CandlestickChart as T } from "./components/charts/candlestick/index.js";
9
- import { ColumnLineMix as h } from "./components/charts/column-line-mix/index.js";
9
+ import { ColumnLineMix as u } from "./components/charts/column-line-mix/index.js";
10
10
  import { DonutChart as L } from "./components/charts/donut-chart/index.js";
11
11
  import { DrillDownTreemap as I } from "./components/charts/drill-down-treemap/index.js";
12
12
  import { DrillDownVoronoiTreemap as y } from "./components/charts/drill-down-voronoi-treemap/index.js";
13
- import { Heatmap as F } from "./components/charts/heatmap/index.js";
14
- import { HighlightLineChart as k } from "./components/charts/highlighting-line-data/index.js";
15
- import { LineChart as R } from "./components/charts/line/index.js";
16
- import { LogaritmicScale as v } from "./components/charts/logaritmic-scale/index.js";
13
+ import { Heatmap as b } from "./components/charts/heatmap/index.js";
14
+ import { HighlightLineChart as V } from "./components/charts/highlighting-line-data/index.js";
15
+ import { LineChart as v } from "./components/charts/line/index.js";
16
+ import { LogaritmicScale as R } from "./components/charts/logaritmic-scale/index.js";
17
17
  import { MultipleValueAxes as E } from "./components/charts/multiple-value-axes/index.js";
18
18
  import { NestedPie as H } from "./components/charts/nested-pie/index.js";
19
19
  import { PackedCircles as W } from "./components/charts/packed-circles/index.js";
@@ -21,160 +21,164 @@ import { PieChart as O } from "./components/charts/pie-chart/index.js";
21
21
  import { StackedAreaRadar as N } from "./components/charts/stacked-area-radar/index.js";
22
22
  import { StackedColumnChart as z } from "./components/charts/stacked-column-chart/index.js";
23
23
  import { XYChart as Y } from "./components/charts/xy-chart/index.js";
24
- import { DEFAULT_VIRIDIS_COOL as J } from "./components/charts/_common/utils.js";
25
- import { Button as Q } from "./components/button/index.js";
26
- import { ColorPicker as $ } from "./components/color-picker/index.js";
27
- import { CollapsibleCard as or } from "./components/collapsible-card/index.js";
28
- import { ConditionalWrapper as tr } from "./components/conditional-wrapper/index.js";
29
- import { alert as mr, confirm as ar } from "./components/confirm/index.js";
30
- import { HCNotificationProvider as fr } from "./components/notification/index.js";
31
- import { Container as lr } from "./components/container/index.js";
32
- import { ContextMenu as cr } from "./components/context-menu/index.js";
33
- import { DataGrid as dr } from "./components/data-grid/index.js";
34
- import { DataMap as Pr } from "./components/data-map/index.js";
35
- import { DisseminationList as Dr } from "./components/data-security-selectors/dissemination-list/index.js";
36
- import { SecurityLevel as ur } from "./components/data-security-selectors/security-level/index.js";
37
- import { A as Sr, D as Ir } from "./index-e9xTIYWt.js";
38
- import { DEFAULT_RELATIVE_PRESET_LABELS as yr } from "./components/date-picker-with-custom-range/logic.js";
39
- import { DateTimePicker as Fr } from "./components/date-time-picker/index.js";
40
- import { Divider as kr } from "./components/divider/index.js";
41
- import { DateRangePicker as Rr } from "./components/date-range-picker/index.js";
42
- import { DocumentViewer as vr } from "./components/document-viewer/index.js";
43
- import { DurationSelect as Er } from "./components/duration-select/index.js";
44
- import { EditableText as Hr } from "./components/editable-text/index.js";
45
- import { GeometryPicker as Wr } from "./components/geometry-picker/index.js";
46
- import { Geometry as Or } from "./components/geometry-picker/geometry/index.js";
47
- import { Parser as Nr } from "./components/geometry-picker/parser/index.js";
48
- import { HeatMap as zr } from "./components/heat-map/index.js";
49
- import { IconButton as Yr } from "./components/icon-button/index.js";
50
- import { InstanceForm as Jr } from "./components/instance-form/index.js";
51
- import { InstanceHierarchyTable as Qr } from "./components/instance-hierarchy-table/index.js";
52
- import { InstanceTable as $r } from "./components/instance-table/index.js";
53
- import { InstanceVariableList as oo } from "./components/instance-variable-list/index.js";
54
- import { LinearIndicator as to } from "./components/linear-indicator/index.js";
55
- import { Loading as mo } from "./components/loading/index.js";
56
- import { Map as xo } from "./components/map/index.js";
57
- import { MetricCard as io } from "./components/metric-card/index.js";
58
- import { ObjectProfileCard as no } from "./components/object-profile-card/index.js";
59
- import { PaginatedList as so } from "./components/paginated-list/index.js";
60
- import { PhoneInput as Po } from "./components/phone-input/index.js";
61
- import { Placeholder as Do } from "./components/placeholder/index.js";
62
- import { PositionalTooltip as uo } from "./components/positional-tooltip/index.js";
63
- import { PrrMap as So } from "./components/prr-map/index.js";
64
- import { RangeSelector as go } from "./components/range-selector/index.js";
65
- import { RasterGridMap as Ao } from "./components/raster-grid-map/index.js";
66
- import { SearchInput as bo } from "./components/search-input/index.js";
67
- import { ScrollDrag as Mo } from "./components/scroll-drag/index.js";
68
- import { SimplePivotTable as Vo } from "./components/simple-pivot-table/index.js";
69
- import { SortableList as wo } from "./components/sortable-list/index.js";
70
- import { StatsBox as Go } from "./components/stats-box/index.js";
71
- import { StaticText as Bo } from "./components/static-text/index.js";
72
- import { Tabs as _o } from "./components/tabs/index.js";
73
- import { TextOverflow as Uo } from "./components/text-overflow/index.js";
74
- import { TemplateFilters as jo } from "./components/template-filters/index.js";
75
- import { TemplateForm as Xo } from "./components/template-form/index.js";
76
- import { TemplatePropertyFilters as qo } from "./components/template-property-filters/index.js";
77
- import { Property as Ko } from "./components/template-property-filters/property.js";
78
- import { TimelineWidget as Zo } from "./components/timeline/index.js";
79
- import { ToggleViewButton as re } from "./components/toggle-view-button/index.js";
80
- import { TreeSelect as ee } from "./components/tree-select/index.js";
81
- import { TreeViewFilter as pe } from "./components/treeview-filter/index.js";
82
- import { Uploader as ae } from "./components/uploader/index.js";
83
- import { VisuallyHiddenInput as fe } from "./components/visually-hidden-input/styled.js";
84
- import { Widget as le } from "./components/widget/styled.js";
85
- import { FlexCol as ce } from "./components/flex-col/index.js";
86
- import { FlexRow as de } from "./components/flex-row/index.js";
87
- import { notify as Pe, removeNotification as Te } from "./components/notification/store.js";
24
+ import { formatValue as J, humanizeLabel as K, resolveConditionalStyle as Q } from "./components/charts/_common/format.js";
25
+ import { DEFAULT_VIRIDIS_COOL as $ } from "./components/charts/_common/utils.js";
26
+ import { Button as or } from "./components/button/index.js";
27
+ import { ColorPicker as tr } from "./components/color-picker/index.js";
28
+ import { CollapsibleCard as mr } from "./components/collapsible-card/index.js";
29
+ import { ConditionalWrapper as xr } from "./components/conditional-wrapper/index.js";
30
+ import { alert as ir, confirm as lr } from "./components/confirm/index.js";
31
+ import { HCNotificationProvider as cr } from "./components/notification/index.js";
32
+ import { Container as dr } from "./components/container/index.js";
33
+ import { ContextMenu as Pr } from "./components/context-menu/index.js";
34
+ import { DataGrid as Dr } from "./components/data-grid/index.js";
35
+ import { DataMap as hr } from "./components/data-map/index.js";
36
+ import { DisseminationList as Sr } from "./components/data-security-selectors/dissemination-list/index.js";
37
+ import { SecurityLevel as gr } from "./components/data-security-selectors/security-level/index.js";
38
+ import { A as Ar, D as br } from "./index-e9xTIYWt.js";
39
+ import { DEFAULT_RELATIVE_PRESET_LABELS as Vr } from "./components/date-picker-with-custom-range/logic.js";
40
+ import { DateTimePicker as vr } from "./components/date-time-picker/index.js";
41
+ import { Divider as Rr } from "./components/divider/index.js";
42
+ import { DateRangePicker as Er } from "./components/date-range-picker/index.js";
43
+ import { DocumentViewer as Hr } from "./components/document-viewer/index.js";
44
+ import { DurationSelect as Wr } from "./components/duration-select/index.js";
45
+ import { EditableText as Or } from "./components/editable-text/index.js";
46
+ import { GeometryPicker as Nr } from "./components/geometry-picker/index.js";
47
+ import { Geometry as zr } from "./components/geometry-picker/geometry/index.js";
48
+ import { Parser as Yr } from "./components/geometry-picker/parser/index.js";
49
+ import { HeatMap as Jr } from "./components/heat-map/index.js";
50
+ import { IconButton as Qr } from "./components/icon-button/index.js";
51
+ import { InstanceForm as $r } from "./components/instance-form/index.js";
52
+ import { InstanceHierarchyTable as oo } from "./components/instance-hierarchy-table/index.js";
53
+ import { InstanceTable as to } from "./components/instance-table/index.js";
54
+ import { InstanceVariableList as mo } from "./components/instance-variable-list/index.js";
55
+ import { LinearIndicator as xo } from "./components/linear-indicator/index.js";
56
+ import { Loading as io } from "./components/loading/index.js";
57
+ import { Map as no } from "./components/map/index.js";
58
+ import { MetricCard as so } from "./components/metric-card/index.js";
59
+ import { ObjectProfileCard as Po } from "./components/object-profile-card/index.js";
60
+ import { PaginatedList as Do } from "./components/paginated-list/index.js";
61
+ import { PhoneInput as ho } from "./components/phone-input/index.js";
62
+ import { Placeholder as So } from "./components/placeholder/index.js";
63
+ import { PositionalTooltip as go } from "./components/positional-tooltip/index.js";
64
+ import { PrrMap as Ao } from "./components/prr-map/index.js";
65
+ import { RangeSelector as Fo } from "./components/range-selector/index.js";
66
+ import { RasterGridMap as ko } from "./components/raster-grid-map/index.js";
67
+ import { SearchInput as Mo } from "./components/search-input/index.js";
68
+ import { ScrollDrag as wo } from "./components/scroll-drag/index.js";
69
+ import { SimplePivotTable as Go } from "./components/simple-pivot-table/index.js";
70
+ import { SortableList as Bo } from "./components/sortable-list/index.js";
71
+ import { StatsBox as _o } from "./components/stats-box/index.js";
72
+ import { StaticText as Uo } from "./components/static-text/index.js";
73
+ import { Tabs as jo } from "./components/tabs/index.js";
74
+ import { TextOverflow as Xo } from "./components/text-overflow/index.js";
75
+ import { TemplateFilters as qo } from "./components/template-filters/index.js";
76
+ import { TemplateForm as Ko } from "./components/template-form/index.js";
77
+ import { TemplatePropertyFilters as Zo } from "./components/template-property-filters/index.js";
78
+ import { Property as re } from "./components/template-property-filters/property.js";
79
+ import { TimelineWidget as ee } from "./components/timeline/index.js";
80
+ import { ToggleViewButton as pe } from "./components/toggle-view-button/index.js";
81
+ import { TreeSelect as ae } from "./components/tree-select/index.js";
82
+ import { TreeViewFilter as fe } from "./components/treeview-filter/index.js";
83
+ import { Uploader as le } from "./components/uploader/index.js";
84
+ import { VisuallyHiddenInput as ce } from "./components/visually-hidden-input/styled.js";
85
+ import { Widget as de } from "./components/widget/styled.js";
86
+ import { FlexCol as Pe } from "./components/flex-col/index.js";
87
+ import { FlexRow as De } from "./components/flex-row/index.js";
88
+ import { notify as he, removeNotification as Le } from "./components/notification/store.js";
88
89
  export {
89
90
  x as Access,
90
91
  i as AccessUtils,
91
- Sr as AdapterDayjs,
92
- Q as Button,
92
+ Ar as AdapterDayjs,
93
+ or as Button,
93
94
  T as CandlestickChart,
94
95
  n as Card,
95
96
  s as CardAlternate,
96
97
  C as ChartWrapper,
97
- or as CollapsibleCard,
98
- $ as ColorPicker,
99
- h as ColumnLineMix,
100
- tr as ConditionalWrapper,
101
- lr as Container,
102
- cr as ContextMenu,
103
- yr as DEFAULT_RELATIVE_PRESET_LABELS,
104
- J as DEFAULT_VIRIDIS_COOL,
105
- dr as DataGrid,
106
- Pr as DataMap,
107
- Ir as DatePickerWithCustomRange,
108
- Rr as DateRangePicker,
109
- Fr as DateTimePicker,
110
- Dr as DisseminationList,
111
- kr as Divider,
112
- vr as DocumentViewer,
98
+ mr as CollapsibleCard,
99
+ tr as ColorPicker,
100
+ u as ColumnLineMix,
101
+ xr as ConditionalWrapper,
102
+ dr as Container,
103
+ Pr as ContextMenu,
104
+ Vr as DEFAULT_RELATIVE_PRESET_LABELS,
105
+ $ as DEFAULT_VIRIDIS_COOL,
106
+ Dr as DataGrid,
107
+ hr as DataMap,
108
+ br as DatePickerWithCustomRange,
109
+ Er as DateRangePicker,
110
+ vr as DateTimePicker,
111
+ Sr as DisseminationList,
112
+ Rr as Divider,
113
+ Hr as DocumentViewer,
113
114
  L as DonutChart,
114
115
  I as DrillDownTreemap,
115
116
  y as DrillDownVoronoiTreemap,
116
- Er as DurationSelect,
117
- Hr as EditableText,
118
- ce as FlexCol,
119
- de as FlexRow,
120
- Or as GeometryDraw,
121
- Nr as GeometryParser,
122
- Wr as GeometryPicker,
123
- fr as HCNotificationProvider,
124
- zr as HeatMap,
125
- F as Heatmap,
126
- k as HighlightLineChart,
127
- Yr as IconButton,
128
- Jr as InstanceForm,
129
- Qr as InstanceHierarchyTable,
130
- $r as InstanceTable,
131
- oo as InstanceVariableList,
132
- R as LineChart,
133
- to as LinearIndicator,
134
- mo as Loading,
117
+ Wr as DurationSelect,
118
+ Or as EditableText,
119
+ Pe as FlexCol,
120
+ De as FlexRow,
121
+ zr as GeometryDraw,
122
+ Yr as GeometryParser,
123
+ Nr as GeometryPicker,
124
+ cr as HCNotificationProvider,
125
+ Jr as HeatMap,
126
+ b as Heatmap,
127
+ V as HighlightLineChart,
128
+ Qr as IconButton,
129
+ $r as InstanceForm,
130
+ oo as InstanceHierarchyTable,
131
+ to as InstanceTable,
132
+ mo as InstanceVariableList,
133
+ v as LineChart,
134
+ xo as LinearIndicator,
135
+ io as Loading,
135
136
  m as LocalizationProvider,
136
- v as LogaritmicScale,
137
- xo as Map,
138
- io as MetricCard,
137
+ R as LogaritmicScale,
138
+ no as Map,
139
+ so as MetricCard,
139
140
  E as MultipleValueAxes,
140
141
  H as NestedPie,
141
- no as ObjectProfileCard,
142
+ Po as ObjectProfileCard,
142
143
  W as PackedCircles,
143
- so as PaginatedList,
144
- Po as PhoneInput,
144
+ Do as PaginatedList,
145
+ ho as PhoneInput,
145
146
  O as PieChart,
146
- Do as Placeholder,
147
- uo as PositionalTooltip,
148
- Ko as PropertyFilterInput,
149
- So as PrrMap,
150
- go as RangeSelector,
151
- Ao as RasterGridMap,
152
- Mo as ScrollDrag,
153
- bo as SearchInput,
154
- ur as SecurityLevel,
155
- Vo as SimplePivotTable,
156
- wo as SortableList,
147
+ So as Placeholder,
148
+ go as PositionalTooltip,
149
+ re as PropertyFilterInput,
150
+ Ao as PrrMap,
151
+ Fo as RangeSelector,
152
+ ko as RasterGridMap,
153
+ wo as ScrollDrag,
154
+ Mo as SearchInput,
155
+ gr as SecurityLevel,
156
+ Go as SimplePivotTable,
157
+ Bo as SortableList,
157
158
  N as StackedAreaRadar,
158
159
  z as StackedColumnChart,
159
- Bo as StaticText,
160
- Go as StatsBox,
161
- _o as Tabs,
162
- jo as TemplateFilters,
163
- Xo as TemplateForm,
164
- qo as TemplatePropertyFilters,
165
- Uo as TextOverflow,
160
+ Uo as StaticText,
161
+ _o as StatsBox,
162
+ jo as Tabs,
163
+ qo as TemplateFilters,
164
+ Ko as TemplateForm,
165
+ Zo as TemplatePropertyFilters,
166
+ Xo as TextOverflow,
166
167
  e as ThemeProvider,
167
- Zo as TimelineWidget,
168
- re as ToggleViewButton,
169
- ee as TreeSelect,
170
- pe as TreeViewFilter,
171
- ae as Uploader,
172
- fe as VisuallyHiddenInput,
173
- le as Widget,
168
+ ee as TimelineWidget,
169
+ pe as ToggleViewButton,
170
+ ae as TreeSelect,
171
+ fe as TreeViewFilter,
172
+ le as Uploader,
173
+ ce as VisuallyHiddenInput,
174
+ de as Widget,
174
175
  Y as XYChart,
175
- mr as alert,
176
- ar as confirm,
176
+ ir as alert,
177
+ lr as confirm,
177
178
  t as createTheme,
178
- Pe as notify,
179
- Te as removeNotification
179
+ J as formatValue,
180
+ K as humanizeLabel,
181
+ he as notify,
182
+ Le as removeNotification,
183
+ Q as resolveConditionalStyle
180
184
  };