@hybridcore/ui 1.6.4 → 1.6.5

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/CATALOG.md CHANGED
@@ -71,6 +71,7 @@ import { ComponentName } from '@hybridcore/ui';
71
71
  | ChartWrapper | HCChartWrapper | Switches between 14 chart types from a single config | chart, wrapper |
72
72
  | CandlestickChart | HCCandlestickChart | Financial OHLC candlestick chart | chart, financial, ohlc |
73
73
  | ColumnLineMix | HCColumnLineMix | Mixed column + line chart for combined metrics | chart, column, line |
74
+ | DonutChart | HCDonutChart | Pie chart with a hollow center (donut) for an extra metric | chart, pie, donut |
74
75
  | DrillDownTreemap | HCDrillDownTreemap | Treemap with click-to-drill-down hierarchy | chart, treemap, hierarchy |
75
76
  | DrillDownVoronoiTreemap | HCDrillDownVoronoiTreemap | Voronoi-tessellation treemap with drill-down | chart, treemap, voronoi |
76
77
  | Heatmap | HCHeatmap | Categorical heatmap (X/Y axes, color-coded values) | chart, heatmap |
@@ -1,45 +1,47 @@
1
1
  import { jsxs as i, jsx as r, Fragment as l } from "react/jsx-runtime";
2
- import { Typography as d, Divider as h } from "@mui/material";
3
- import { Loading as C } from "../../loading/index.js";
2
+ import { Typography as h, Divider as C } from "@mui/material";
3
+ import { Loading as d } from "../../loading/index.js";
4
4
  import { CandlestickChart as c } from "../candlestick/index.js";
5
5
  import { ColumnLineMix as f } from "../column-line-mix/index.js";
6
- import { DrillDownTreemap as s } from "../drill-down-treemap/index.js";
7
- import { DrillDownVoronoiTreemap as u } from "../drill-down-voronoi-treemap/index.js";
6
+ import { DonutChart as s } from "../donut-chart/index.js";
7
+ import { DrillDownTreemap as u } from "../drill-down-treemap/index.js";
8
+ import { DrillDownVoronoiTreemap as D } from "../drill-down-voronoi-treemap/index.js";
8
9
  import { Heatmap as L } from "../heatmap/index.js";
9
10
  import { LineChart as g } from "../line/index.js";
10
11
  import { LogaritmicScale as x } from "../logaritmic-scale/index.js";
11
- import { MultipleValueAxes as D } from "../multiple-value-axes/index.js";
12
- import { NestedPie as k } from "../nested-pie/index.js";
13
- import { PackedCircles as S } from "../packed-circles/index.js";
14
- import { PieChart as P } from "../pie-chart/index.js";
15
- import { StackedAreaRadar as w } from "../stacked-area-radar/index.js";
16
- import { StackedColumnChart as A } from "../stacked-column-chart/index.js";
17
- import { XYChart as T } from "../xy-chart/index.js";
18
- import { useChartWrapperLogic as W } from "./logic.js";
19
- import { ChartWrapperRoot as M, ChartWrapperHeader as V, ChartWrapperContent as v } from "./styled.js";
20
- const U = (a) => {
21
- const { title: m, type: e, chartProps: o, loading: p, ownerState: t, sx: n } = W(a);
22
- return /* @__PURE__ */ i(M, { ownerState: t, sx: n, children: [
23
- /* @__PURE__ */ r(V, { ownerState: t, children: /* @__PURE__ */ r(d, { sx: { paddingLeft: "0.5rem" }, variant: "h3", children: m }) }),
24
- /* @__PURE__ */ r(h, {}),
25
- /* @__PURE__ */ r(v, { ownerState: t, children: p ? /* @__PURE__ */ r(C, { show: !0, position: "absolute" }) : /* @__PURE__ */ i(l, { children: [
26
- e === "MultipleValueAxes" && /* @__PURE__ */ r(D, { ...o }),
27
- e === "XYChart" && /* @__PURE__ */ r(T, { ...o }),
28
- e === "HeatLegend" && /* @__PURE__ */ r(L, { ...o }),
29
- e === "PieChart" && /* @__PURE__ */ r(P, { ...o }),
30
- e === "StackedColumnChart" && /* @__PURE__ */ r(A, { ...o }),
31
- e === "StackedAreaRadar" && /* @__PURE__ */ r(w, { ...o }),
32
- e === "LineChart" && /* @__PURE__ */ r(g, { ...o }),
33
- e === "NestedPie" && /* @__PURE__ */ r(k, { ...o }),
34
- e === "SingleLevelPackedCircles" && /* @__PURE__ */ r(S, { ...o }),
35
- e === "LogarithmicScale" && /* @__PURE__ */ r(x, { ...o }),
36
- e === "ColumnAndLineMix" && /* @__PURE__ */ r(f, { ...o }),
37
- e === "DrillDownTreemap" && /* @__PURE__ */ r(s, { ...o }),
38
- e === "DrillDownVoronoiTreemap" && /* @__PURE__ */ r(u, { ...o }),
39
- e === "CandlestickChart" && /* @__PURE__ */ r(c, { ...o })
12
+ import { MultipleValueAxes as k } from "../multiple-value-axes/index.js";
13
+ import { NestedPie as S } from "../nested-pie/index.js";
14
+ import { PackedCircles as P } from "../packed-circles/index.js";
15
+ import { PieChart as w } from "../pie-chart/index.js";
16
+ import { StackedAreaRadar as A } from "../stacked-area-radar/index.js";
17
+ import { StackedColumnChart as T } from "../stacked-column-chart/index.js";
18
+ import { XYChart as W } from "../xy-chart/index.js";
19
+ import { useChartWrapperLogic as M } from "./logic.js";
20
+ import { ChartWrapperRoot as V, ChartWrapperHeader as v, ChartWrapperContent as y } from "./styled.js";
21
+ const _ = (a) => {
22
+ const { title: m, type: o, chartProps: e, loading: p, ownerState: t, sx: n } = M(a);
23
+ return /* @__PURE__ */ i(V, { ownerState: t, sx: n, children: [
24
+ /* @__PURE__ */ r(v, { ownerState: t, children: /* @__PURE__ */ r(h, { sx: { paddingLeft: "0.5rem" }, variant: "h3", children: m }) }),
25
+ /* @__PURE__ */ r(C, {}),
26
+ /* @__PURE__ */ r(y, { ownerState: t, children: p ? /* @__PURE__ */ r(d, { show: !0, position: "absolute" }) : /* @__PURE__ */ i(l, { children: [
27
+ o === "MultipleValueAxes" && /* @__PURE__ */ r(k, { ...e }),
28
+ o === "XYChart" && /* @__PURE__ */ r(W, { ...e }),
29
+ o === "HeatLegend" && /* @__PURE__ */ r(L, { ...e }),
30
+ o === "PieChart" && /* @__PURE__ */ r(w, { ...e }),
31
+ o === "DonutChart" && /* @__PURE__ */ r(s, { ...e }),
32
+ o === "StackedColumnChart" && /* @__PURE__ */ r(T, { ...e }),
33
+ o === "StackedAreaRadar" && /* @__PURE__ */ r(A, { ...e }),
34
+ o === "LineChart" && /* @__PURE__ */ r(g, { ...e }),
35
+ o === "NestedPie" && /* @__PURE__ */ r(S, { ...e }),
36
+ o === "SingleLevelPackedCircles" && /* @__PURE__ */ r(P, { ...e }),
37
+ o === "LogarithmicScale" && /* @__PURE__ */ r(x, { ...e }),
38
+ o === "ColumnAndLineMix" && /* @__PURE__ */ r(f, { ...e }),
39
+ o === "DrillDownTreemap" && /* @__PURE__ */ r(u, { ...e }),
40
+ o === "DrillDownVoronoiTreemap" && /* @__PURE__ */ r(D, { ...e }),
41
+ o === "CandlestickChart" && /* @__PURE__ */ r(c, { ...e })
40
42
  ] }) })
41
43
  ] });
42
44
  };
43
45
  export {
44
- U as ChartWrapper
46
+ _ as ChartWrapper
45
47
  };
@@ -0,0 +1,11 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import { ChartError as n } from "../_common/chart-error.js";
3
+ import { useDonutChartLogic as s } from "./logic.js";
4
+ import { DonutChartRoot as a } from "./styled.js";
5
+ const f = (o) => {
6
+ const { chartId: e, ownerState: h, sx: i, error: t, other: m } = s(o);
7
+ return /* @__PURE__ */ r(a, { ownerState: h, sx: i, ...m, children: t ? /* @__PURE__ */ r(n, { message: t }) : /* @__PURE__ */ r("div", { id: e, style: { width: "100%", height: "100%" } }) });
8
+ };
9
+ export {
10
+ f as DonutChart
11
+ };
@@ -0,0 +1,66 @@
1
+ import { R as w, A as x } from "../../../AnimatedTheme-jnasw6rT.js";
2
+ import { useThemeProps as A, useTheme as C } from "@mui/material";
3
+ import D from "dayjs";
4
+ import { useId as P, useRef as R, useEffect as F } from "react";
5
+ import { colorSetFromPalette as L } from "../_common/utils.js";
6
+ import { P as I, a as S } from "../../../PieSeries-B2fW3z0s.js";
7
+ import { p as m, c as u } from "../../../ColorSet-C7vpNXhM.js";
8
+ import { L as E } from "../../../Legend-Dp_MKfS4.js";
9
+ const G = (Y) => {
10
+ const d = A({ props: Y, name: "HCDonutChart" }), {
11
+ dimensions: t,
12
+ values: a,
13
+ data: n,
14
+ initDelay: v = 0,
15
+ colors: p,
16
+ sx: y,
17
+ ...M
18
+ } = d, o = C(), f = `hc-donut-chart-${P().replace(/:/g, "")}`, i = R(null);
19
+ let r = null;
20
+ t.length < 1 ? r = "Missing dimensions config!" : a.length < 1 && (r = "Missing values config!"), F(() => {
21
+ if (r) return;
22
+ let l;
23
+ return l = setTimeout(() => {
24
+ const e = w.new(f);
25
+ i.current = e, e.setThemes([x.new(e)]);
26
+ const h = e.container.children.push(
27
+ I.new(e, {
28
+ layout: e.verticalLayout,
29
+ innerRadius: m(50)
30
+ })
31
+ );
32
+ e.interfaceColors.setAll({
33
+ text: u(o.palette.text.primary),
34
+ grid: u(o.palette.divider),
35
+ stroke: u(o.palette.divider)
36
+ });
37
+ const s = h.series.push(
38
+ S.new(e, {
39
+ valueField: a[0].dataFieldName,
40
+ categoryField: t[0].value
41
+ })
42
+ );
43
+ s.set("colors", L(e, p)), t[0].type === "date" && n.forEach((g) => {
44
+ let c = "YYYY";
45
+ t[0].value.includes("month") ? c = "MMM YYYY" : t[0].value.includes("day") && (c = "DD MMM YYYY"), g[t[0].value] = D(g[t[0].value]).format(
46
+ c
47
+ );
48
+ }), s.data.setAll(n), h.children.push(
49
+ E.new(e, {
50
+ centerX: m(50),
51
+ x: m(50),
52
+ marginTop: 15,
53
+ marginBottom: 15
54
+ })
55
+ ).data.setAll(s.dataItems), s.appear(1e3, 100);
56
+ }, v), () => {
57
+ var e;
58
+ l && clearTimeout(l), (e = i.current) == null || e.dispose(), i.current = null;
59
+ };
60
+ }, [n, t, a, o.palette.mode, p]);
61
+ const T = { ...d };
62
+ return { chartId: f, ownerState: T, sx: y, error: r, other: M };
63
+ };
64
+ export {
65
+ G as useDonutChartLogic
66
+ };
@@ -0,0 +1,12 @@
1
+ import { styled as t, Box as r } from "@mui/material";
2
+ const h = t(r, {
3
+ name: "HCDonutChart",
4
+ slot: "Root",
5
+ shouldForwardProp: (o) => o !== "ownerState"
6
+ })(() => ({
7
+ width: "100%",
8
+ height: "100%"
9
+ }));
10
+ export {
11
+ h as DonutChartRoot
12
+ };
package/dist/main.d.ts CHANGED
@@ -229,6 +229,7 @@ export declare type ChartNameType =
229
229
  | "XYChart"
230
230
  | "MultipleValueAxes"
231
231
  | "PieChart"
232
+ | "DonutChart"
232
233
  | "StackedAreaRadar"
233
234
  | "StackedColumnChart"
234
235
  | "LineChart"
@@ -575,6 +576,15 @@ export declare interface DocumentViewerProps {
575
576
  sx?: SxProps<Theme>;
576
577
  }
577
578
 
579
+ export declare const DonutChart: (inProps: DonutChartProps) => JSX_2.Element;
580
+
581
+ export declare type DonutChartComponentOverride<Theme = unknown> = {
582
+ defaultProps?: Partial<DonutChartProps>;
583
+ styleOverrides?: ComponentsOverrides_2<Theme>["HCDonutChart"];
584
+ };
585
+
586
+ export declare type DonutChartProps = ChartProps;
587
+
578
588
  export declare const DrillDownTreemap: (inProps: DrillDownTreemapProps) => JSX_2.Element;
579
589
 
580
590
  export declare type DrillDownTreemapComponentOverride<Theme = unknown> = {
@@ -2267,6 +2277,22 @@ declare module "@mui/material/styles" {
2267
2277
 
2268
2278
 
2269
2279
 
2280
+ declare module "@mui/material/styles" {
2281
+ interface ComponentNameToClassKey {
2282
+ HCDonutChart: "root";
2283
+ }
2284
+
2285
+ interface ComponentsPropsList {
2286
+ HCDonutChart: Partial<DonutChartProps>;
2287
+ }
2288
+
2289
+ interface Components<Theme = unknown> {
2290
+ HCDonutChart?: DonutChartComponentOverride<Theme>;
2291
+ }
2292
+ }
2293
+
2294
+
2295
+
2270
2296
  declare module "@mui/material/styles" {
2271
2297
  interface ComponentNameToClassKey {
2272
2298
  HCDrillDownTreemap: "root";
package/dist/main.js CHANGED
@@ -6,173 +6,175 @@ 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 L } from "./components/charts/column-line-mix/index.js";
10
- import { DrillDownTreemap as u } from "./components/charts/drill-down-treemap/index.js";
11
- import { DrillDownVoronoiTreemap as I } from "./components/charts/drill-down-voronoi-treemap/index.js";
12
- import { Heatmap as y } from "./components/charts/heatmap/index.js";
13
- import { HighlightLineChart as F } from "./components/charts/highlighting-line-data/index.js";
14
- import { LineChart as k } from "./components/charts/line/index.js";
15
- import { LogaritmicScale as R } from "./components/charts/logaritmic-scale/index.js";
16
- import { MultipleValueAxes as v } from "./components/charts/multiple-value-axes/index.js";
17
- import { NestedPie as E } from "./components/charts/nested-pie/index.js";
18
- import { PackedCircles as H } from "./components/charts/packed-circles/index.js";
19
- import { PieChart as W } from "./components/charts/pie-chart/index.js";
20
- import { StackedAreaRadar as O } from "./components/charts/stacked-area-radar/index.js";
21
- import { StackedColumnChart as N } from "./components/charts/stacked-column-chart/index.js";
22
- import { XYChart as z } from "./components/charts/xy-chart/index.js";
23
- import { DEFAULT_VIRIDIS_COOL as Y } from "./components/charts/_common/utils.js";
24
- import { Button as J } from "./components/button/index.js";
25
- import { ColorPicker as Q } from "./components/color-picker/index.js";
26
- import { CollapsibleCard as $ } from "./components/collapsible-card/index.js";
27
- import { ConditionalWrapper as or } from "./components/conditional-wrapper/index.js";
28
- import { alert as tr, confirm as pr } from "./components/confirm/index.js";
29
- import { HCNotificationProvider as ar } from "./components/notification/index.js";
30
- import { Container as fr } from "./components/container/index.js";
31
- import { ContextMenu as lr } from "./components/context-menu/index.js";
32
- import { DataGrid as cr } from "./components/data-grid/index.js";
33
- import { DataMap as dr } from "./components/data-map/index.js";
34
- import { DisseminationList as Pr } from "./components/data-security-selectors/dissemination-list/index.js";
35
- import { SecurityLevel as Dr } from "./components/data-security-selectors/security-level/index.js";
36
- import { A as hr, D as ur } from "./index-e9xTIYWt.js";
37
- import { DEFAULT_RELATIVE_PRESET_LABELS as Ir } from "./components/date-picker-with-custom-range/logic.js";
38
- import { DateTimePicker as yr } from "./components/date-time-picker/index.js";
39
- import { Divider as Fr } from "./components/divider/index.js";
40
- import { DateRangePicker as kr } from "./components/date-range-picker/index.js";
41
- import { DocumentViewer as Rr } from "./components/document-viewer/index.js";
42
- import { DurationSelect as vr } from "./components/duration-select/index.js";
43
- import { EditableText as Er } from "./components/editable-text/index.js";
44
- import { GeometryPicker as Hr } from "./components/geometry-picker/index.js";
45
- import { Geometry as Wr } from "./components/geometry-picker/geometry/index.js";
46
- import { Parser as Or } from "./components/geometry-picker/parser/index.js";
47
- import { HeatMap as Nr } from "./components/heat-map/index.js";
48
- import { IconButton as zr } from "./components/icon-button/index.js";
49
- import { InstanceForm as Yr } from "./components/instance-form/index.js";
50
- import { InstanceHierarchyTable as Jr } from "./components/instance-hierarchy-table/index.js";
51
- import { InstanceTable as Qr } from "./components/instance-table/index.js";
52
- import { InstanceVariableList as $r } from "./components/instance-variable-list/index.js";
53
- import { LinearIndicator as oo } from "./components/linear-indicator/index.js";
54
- import { Loading as to } from "./components/loading/index.js";
55
- import { Map as mo } from "./components/map/index.js";
56
- import { MetricCard as xo } from "./components/metric-card/index.js";
57
- import { ObjectProfileCard as io } from "./components/object-profile-card/index.js";
58
- import { PaginatedList as no } from "./components/paginated-list/index.js";
59
- import { PhoneInput as so } from "./components/phone-input/index.js";
60
- import { Placeholder as Po } from "./components/placeholder/index.js";
61
- import { PositionalTooltip as Do } from "./components/positional-tooltip/index.js";
62
- import { PrrMap as ho } from "./components/prr-map/index.js";
63
- import { RangeSelector as So } from "./components/range-selector/index.js";
64
- import { RasterGridMap as go } from "./components/raster-grid-map/index.js";
65
- import { SearchInput as Ao } from "./components/search-input/index.js";
66
- import { ScrollDrag as bo } from "./components/scroll-drag/index.js";
67
- import { SimplePivotTable as Mo } from "./components/simple-pivot-table/index.js";
68
- import { SortableList as Vo } from "./components/sortable-list/index.js";
69
- import { StatsBox as wo } from "./components/stats-box/index.js";
70
- import { StaticText as Go } from "./components/static-text/index.js";
71
- import { Tabs as Bo } from "./components/tabs/index.js";
72
- import { TextOverflow as _o } from "./components/text-overflow/index.js";
73
- import { TemplateFilters as Uo } from "./components/template-filters/index.js";
74
- import { TemplateForm as jo } from "./components/template-form/index.js";
75
- import { TemplatePropertyFilters as Xo } from "./components/template-property-filters/index.js";
76
- import { Property as qo } from "./components/template-property-filters/property.js";
77
- import { TimelineWidget as Ko } from "./components/timeline/index.js";
78
- import { ToggleViewButton as Zo } from "./components/toggle-view-button/index.js";
79
- import { TreeSelect as re } from "./components/tree-select/index.js";
80
- import { TreeViewFilter as ee } from "./components/treeview-filter/index.js";
81
- import { Uploader as pe } from "./components/uploader/index.js";
82
- import { VisuallyHiddenInput as ae } from "./components/visually-hidden-input/styled.js";
83
- import { Widget as fe } from "./components/widget/styled.js";
84
- import { FlexCol as le } from "./components/flex-col/index.js";
85
- import { FlexRow as ce } from "./components/flex-row/index.js";
86
- import { notify as de, removeNotification as Ce } from "./components/notification/store.js";
9
+ import { ColumnLineMix as h } from "./components/charts/column-line-mix/index.js";
10
+ import { DonutChart as L } from "./components/charts/donut-chart/index.js";
11
+ import { DrillDownTreemap as I } from "./components/charts/drill-down-treemap/index.js";
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";
17
+ import { MultipleValueAxes as E } from "./components/charts/multiple-value-axes/index.js";
18
+ import { NestedPie as H } from "./components/charts/nested-pie/index.js";
19
+ import { PackedCircles as W } from "./components/charts/packed-circles/index.js";
20
+ import { PieChart as O } from "./components/charts/pie-chart/index.js";
21
+ import { StackedAreaRadar as N } from "./components/charts/stacked-area-radar/index.js";
22
+ import { StackedColumnChart as z } from "./components/charts/stacked-column-chart/index.js";
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";
87
88
  export {
88
89
  x as Access,
89
90
  i as AccessUtils,
90
- hr as AdapterDayjs,
91
- J as Button,
91
+ Sr as AdapterDayjs,
92
+ Q as Button,
92
93
  T as CandlestickChart,
93
94
  n as Card,
94
95
  s as CardAlternate,
95
96
  C as ChartWrapper,
96
- $ as CollapsibleCard,
97
- Q as ColorPicker,
98
- L as ColumnLineMix,
99
- or as ConditionalWrapper,
100
- fr as Container,
101
- lr as ContextMenu,
102
- Ir as DEFAULT_RELATIVE_PRESET_LABELS,
103
- Y as DEFAULT_VIRIDIS_COOL,
104
- cr as DataGrid,
105
- dr as DataMap,
106
- ur as DatePickerWithCustomRange,
107
- kr as DateRangePicker,
108
- yr as DateTimePicker,
109
- Pr as DisseminationList,
110
- Fr as Divider,
111
- Rr as DocumentViewer,
112
- u as DrillDownTreemap,
113
- I as DrillDownVoronoiTreemap,
114
- vr as DurationSelect,
115
- Er as EditableText,
116
- le as FlexCol,
117
- ce as FlexRow,
118
- Wr as GeometryDraw,
119
- Or as GeometryParser,
120
- Hr as GeometryPicker,
121
- ar as HCNotificationProvider,
122
- Nr as HeatMap,
123
- y as Heatmap,
124
- F as HighlightLineChart,
125
- zr as IconButton,
126
- Yr as InstanceForm,
127
- Jr as InstanceHierarchyTable,
128
- Qr as InstanceTable,
129
- $r as InstanceVariableList,
130
- k as LineChart,
131
- oo as LinearIndicator,
132
- to as Loading,
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,
113
+ L as DonutChart,
114
+ I as DrillDownTreemap,
115
+ 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,
133
135
  m as LocalizationProvider,
134
- R as LogaritmicScale,
135
- mo as Map,
136
- xo as MetricCard,
137
- v as MultipleValueAxes,
138
- E as NestedPie,
139
- io as ObjectProfileCard,
140
- H as PackedCircles,
141
- no as PaginatedList,
142
- so as PhoneInput,
143
- W as PieChart,
144
- Po as Placeholder,
145
- Do as PositionalTooltip,
146
- qo as PropertyFilterInput,
147
- ho as PrrMap,
148
- So as RangeSelector,
149
- go as RasterGridMap,
150
- bo as ScrollDrag,
151
- Ao as SearchInput,
152
- Dr as SecurityLevel,
153
- Mo as SimplePivotTable,
154
- Vo as SortableList,
155
- O as StackedAreaRadar,
156
- N as StackedColumnChart,
157
- Go as StaticText,
158
- wo as StatsBox,
159
- Bo as Tabs,
160
- Uo as TemplateFilters,
161
- jo as TemplateForm,
162
- Xo as TemplatePropertyFilters,
163
- _o as TextOverflow,
136
+ v as LogaritmicScale,
137
+ xo as Map,
138
+ io as MetricCard,
139
+ E as MultipleValueAxes,
140
+ H as NestedPie,
141
+ no as ObjectProfileCard,
142
+ W as PackedCircles,
143
+ so as PaginatedList,
144
+ Po as PhoneInput,
145
+ 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,
157
+ N as StackedAreaRadar,
158
+ 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,
164
166
  e as ThemeProvider,
165
- Ko as TimelineWidget,
166
- Zo as ToggleViewButton,
167
- re as TreeSelect,
168
- ee as TreeViewFilter,
169
- pe as Uploader,
170
- ae as VisuallyHiddenInput,
171
- fe as Widget,
172
- z as XYChart,
173
- tr as alert,
174
- pr as confirm,
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,
174
+ Y as XYChart,
175
+ mr as alert,
176
+ ar as confirm,
175
177
  t as createTheme,
176
- de as notify,
177
- Ce as removeNotification
178
+ Pe as notify,
179
+ Te as removeNotification
178
180
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hybridcore/ui",
3
3
  "description": "Hybrid Core UI Library",
4
- "version": "1.6.4",
4
+ "version": "1.6.5",
5
5
  "author": "Hybrid Core",
6
6
  "license": "ISC",
7
7
  "type": "module",