@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.
- package/dist/IconX-C2wmVYSK.js +11 -0
- package/dist/components/charts/_common/format.js +55 -0
- package/dist/components/charts/_common/utils.js +12 -7
- package/dist/components/charts/chart-wrapper/helpers.js +46 -21
- package/dist/components/charts/chart-wrapper/logic.js +57 -40
- package/dist/components/charts/column-line-mix/logic.js +87 -86
- package/dist/components/charts/donut-chart/logic.js +37 -36
- package/dist/components/charts/drill-down-treemap/logic.js +123 -123
- package/dist/components/charts/drill-down-voronoi-treemap/logic.js +253 -252
- package/dist/components/charts/heatmap/logic.js +73 -73
- package/dist/components/charts/line/logic.js +201 -103
- package/dist/components/charts/logaritmic-scale/logic.js +65 -65
- package/dist/components/charts/multiple-value-axes/logic.js +96 -94
- package/dist/components/charts/nested-pie/logic.js +43 -42
- package/dist/components/charts/packed-circles/logic.js +111 -110
- package/dist/components/charts/pie-chart/logic.js +40 -39
- package/dist/components/charts/stacked-area-radar/logic.js +68 -67
- package/dist/components/charts/stacked-column-chart/logic.js +71 -70
- package/dist/components/charts/xy-chart/logic.js +82 -76
- package/dist/components/color-picker/index.js +1645 -1602
- package/dist/components/color-picker/logic.js +21 -12
- package/dist/components/color-picker/styled.js +4 -2
- package/dist/components/date-range-picker/index.js +359 -365
- package/dist/components/metric-card/helpers.js +12 -5
- package/dist/components/metric-card/index.js +58 -54
- package/dist/components/metric-card/logic.js +78 -61
- package/dist/components/metric-card/styled.js +63 -45
- package/dist/components/simple-pivot-table/index.js +129 -54
- package/dist/components/simple-pivot-table/logic.js +111 -45
- package/dist/components/simple-pivot-table/styled.js +31 -11
- package/dist/main.d.ts +125 -8
- package/dist/main.js +145 -141
- package/dist/{styled-Db1RdcPA.js → styled-SoqbyrkW.js} +116 -89
- 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
|
-
|
|
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:
|
|
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
|
|
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
|
|
14
|
-
import { HighlightLineChart as
|
|
15
|
-
import { LineChart as
|
|
16
|
-
import { LogaritmicScale as
|
|
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 {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
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
|
-
|
|
92
|
-
|
|
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
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
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
|
-
|
|
137
|
-
|
|
138
|
-
|
|
137
|
+
R as LogaritmicScale,
|
|
138
|
+
no as Map,
|
|
139
|
+
so as MetricCard,
|
|
139
140
|
E as MultipleValueAxes,
|
|
140
141
|
H as NestedPie,
|
|
141
|
-
|
|
142
|
+
Po as ObjectProfileCard,
|
|
142
143
|
W as PackedCircles,
|
|
143
|
-
|
|
144
|
-
|
|
144
|
+
Do as PaginatedList,
|
|
145
|
+
ho as PhoneInput,
|
|
145
146
|
O as PieChart,
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
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
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
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
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
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
|
-
|
|
176
|
-
|
|
176
|
+
ir as alert,
|
|
177
|
+
lr as confirm,
|
|
177
178
|
t as createTheme,
|
|
178
|
-
|
|
179
|
-
|
|
179
|
+
J as formatValue,
|
|
180
|
+
K as humanizeLabel,
|
|
181
|
+
he as notify,
|
|
182
|
+
Le as removeNotification,
|
|
183
|
+
Q as resolveConditionalStyle
|
|
180
184
|
};
|