@hybridcore/ui 1.6.21 → 1.6.23

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.
@@ -178,7 +178,15 @@ const Be = (I) => {
178
178
  var t;
179
179
  x && clearTimeout(x), (t = h.current) == null || t.dispose(), h.current = null;
180
180
  };
181
- }, [f, l, c, n.palette.mode, w, b, D]);
181
+ }, [
182
+ f,
183
+ l,
184
+ c,
185
+ n.palette.mode,
186
+ w,
187
+ b,
188
+ D
189
+ ]);
182
190
  const j = { ...g };
183
191
  return { chartId: X, ownerState: j, sx: W, error: C, other: N };
184
192
  };
package/dist/main.d.ts CHANGED
@@ -97,7 +97,7 @@ export declare interface BaseInterval {
97
97
  count: number;
98
98
  }
99
99
 
100
- export declare const Button: (props: ButtonProps) => JSX_2.Element;
100
+ export declare const Button: (props: ButtonProps & default_2.RefAttributes<HTMLButtonElement>) => default_2.ReactNode | null;
101
101
 
102
102
  export declare type ButtonComponentOverride<Theme = unknown> = {
103
103
  defaultProps?: Partial<ButtonProps>;
@@ -232,6 +232,7 @@ export declare interface ChartDimension {
232
232
 
233
233
  export declare type ChartNameType =
234
234
  | "HeatLegend"
235
+ | "Histogram"
235
236
  | "XYChart"
236
237
  | "XYChartHorizontal"
237
238
  | "MultipleValueAxes"
@@ -786,21 +787,31 @@ export declare interface ForecastConeChartProps {
786
787
  * Omit for the single-cone behaviour (cone extracted from `data`).
787
788
  */
788
789
  forecasts?: ForecastSnapshot[];
790
+ /**
791
+ * Multi-cone mode only. When `true` (default) each forecast origin gets a
792
+ * bullet on the history line: hovering one previews that run's cone, clicking
793
+ * it selects the run. When `false` the origins are marked with faint dashed
794
+ * ticks instead and only the pager switches cones.
795
+ */
796
+ showOriginMarkers?: boolean;
789
797
  /** Vertical "now" marker; defaults to the last history timestamp. */
790
798
  nowValue?: number | string;
791
799
  /** Band/centre hue (theme token or CSS color). Defaults to a theme token. */
792
800
  color?: string;
793
801
  /**
794
- * History line behaviour across missing dates. `true` (default) bridges gaps
795
- * (and connects the history end to the cone apex); `false` breaks the line
796
- * wherever a history point is missing and drops the bridge to the forecast.
797
- * Affects the history series only the bands/centre are contiguous.
802
+ * Line behaviour across missing dates. `true` (default) bridges gaps (and, in
803
+ * single-cone mode, connects the history end to the cone apex); `false` breaks
804
+ * the line wherever a point is missing and drops the bridge to the forecast.
805
+ * Applies to the history line and to the cone (bands + centre) alike, so a
806
+ * horizon row missing its bounds splits the cone instead of bridging it.
798
807
  */
799
808
  connectMissingData?: boolean;
800
809
  /**
801
- * When `true`, the date axis drops intervals with no data (`GaplessDateAxis`),
802
- * so only dates with values are shown. Default `false` keeps the continuous
803
- * timeline.
810
+ * When `true` (default), the date axis drops intervals with no data
811
+ * (`GaplessDateAxis`), so only dates with values are shown closed hours and
812
+ * weekends collapse instead of rendering as flat gaps. `false` keeps the
813
+ * continuous timeline. In multi-cone mode the axis is fed the union of every
814
+ * snapshot's dates, so the frame stays fixed while scrubbing.
804
815
  */
805
816
  skipEmptyDates?: boolean;
806
817
  baseInterval?: BaseInterval;
@@ -955,6 +966,36 @@ export declare interface HighlightLineChartProps {
955
966
  sx?: SxProps<Theme>;
956
967
  }
957
968
 
969
+ export declare const Histogram: (inProps: HistogramProps) => JSX_2.Element;
970
+
971
+ export declare type HistogramComponentOverride<Theme = unknown> = {
972
+ defaultProps?: Partial<HistogramProps>;
973
+ styleOverrides?: ComponentsOverrides_2<Theme>["HCHistogram"];
974
+ };
975
+
976
+ export declare type HistogramProps = ChartProps & {
977
+ /**
978
+ * Explicit bin width, in dimension units. When omitted, the width is inferred
979
+ * from the smallest positive gap between adjacent bin starts — correct for
980
+ * uniformly pre-binned data (e.g. 250-wide buckets). Set this when bins are
981
+ * non-uniform, or when a single bin makes the gap impossible to infer.
982
+ */
983
+ binWidth?: number;
984
+ /**
985
+ * Fractional gap between adjacent bars, `0`–`1`. `0` (default) makes bars
986
+ * touch edge-to-edge — the defining histogram look. Raise it toward a spaced
987
+ * bar chart if a visual separation is wanted.
988
+ */
989
+ barGap?: number;
990
+ /**
991
+ * Draw the frequency (Y) axis on a logarithmic scale. Useful when one bin
992
+ * dwarfs the rest (e.g. a large zero/overflow bucket) and a linear axis would
993
+ * flatten every other bar. Zero-count bins are treated as the axis floor, so
994
+ * they simply render as no bar. Default `false` (linear, zero-baselined).
995
+ */
996
+ logarithmic?: boolean;
997
+ };
998
+
958
999
  /**
959
1000
  * Turn a raw field key into a human label: snake_case / kebab-case / camelCase
960
1001
  * → Title Case (e.g. "total_revenue" / "totalRevenue" → "Total Revenue"). Used
@@ -2690,6 +2731,22 @@ declare module "@mui/material/styles" {
2690
2731
 
2691
2732
 
2692
2733
 
2734
+ declare module "@mui/material/styles" {
2735
+ interface ComponentNameToClassKey {
2736
+ HCHistogram: "root";
2737
+ }
2738
+
2739
+ interface ComponentsPropsList {
2740
+ HCHistogram: Partial<HistogramProps>;
2741
+ }
2742
+
2743
+ interface Components<Theme = unknown> {
2744
+ HCHistogram?: HistogramComponentOverride<Theme>;
2745
+ }
2746
+ }
2747
+
2748
+
2749
+
2693
2750
  declare module "@mui/material/styles" {
2694
2751
  interface ComponentNameToClassKey {
2695
2752
  HCLineChart: "root";
package/dist/main.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ThemeProvider as e, createTheme as t } from "@mui/material";
2
- import { LocalizationProvider as m } from "@mui/x-date-pickers";
2
+ import { LocalizationProvider as p } from "@mui/x-date-pickers";
3
3
  import { AdapterDayjs as x } from "@mui/x-date-pickers/AdapterDayjs";
4
4
  import { Access as i } from "./components/access/index.js";
5
5
  import { h as n } from "./helpers-D4uXfBfO.js";
@@ -14,176 +14,178 @@ import { DrillDownTreemap as b } from "./components/charts/drill-down-treemap/in
14
14
  import { DrillDownVoronoiTreemap as V } from "./components/charts/drill-down-voronoi-treemap/index.js";
15
15
  import { Heatmap as v } from "./components/charts/heatmap/index.js";
16
16
  import { HighlightLineChart as R } from "./components/charts/highlighting-line-data/index.js";
17
- import { LineChart as E } from "./components/charts/line/index.js";
18
- import { LogaritmicScale as H } from "./components/charts/logaritmic-scale/index.js";
19
- import { MultipleValueAxes as W } from "./components/charts/multiple-value-axes/index.js";
20
- import { NestedPie as O } from "./components/charts/nested-pie/index.js";
21
- import { PackedCircles as N } from "./components/charts/packed-circles/index.js";
22
- import { PieChart as z } from "./components/charts/pie-chart/index.js";
23
- import { StackedAreaRadar as Y } from "./components/charts/stacked-area-radar/index.js";
24
- import { StackedColumnChart as J } from "./components/charts/stacked-column-chart/index.js";
25
- import { XYChart as Q } from "./components/charts/xy-chart/index.js";
26
- import { formatValue as $, humanizeLabel as rr, resolveConditionalStyle as or } from "./components/charts/_common/format.js";
27
- import { DEFAULT_VIRIDIS_COOL as tr } from "./components/charts/_common/utils.js";
28
- import { Button as mr } from "./components/button/index.js";
29
- import { ColorPicker as xr } from "./components/color-picker/index.js";
30
- import { CollapsibleCard as ir } from "./components/collapsible-card/index.js";
31
- import { ConditionalWrapper as nr } from "./components/conditional-wrapper/index.js";
32
- import { alert as sr, confirm as dr } from "./components/confirm/index.js";
33
- import { HCNotificationProvider as Pr } from "./components/notification/index.js";
34
- import { Container as ur } from "./components/container/index.js";
35
- import { ContextMenu as Dr } from "./components/context-menu/index.js";
36
- import { DataGrid as Sr } from "./components/data-grid/index.js";
37
- import { DataMap as gr } from "./components/data-map/index.js";
38
- import { DisseminationList as Fr } from "./components/data-security-selectors/dissemination-list/index.js";
39
- import { SecurityLevel as Ar } from "./components/data-security-selectors/security-level/index.js";
40
- import { DatePickerWithCustomRange as kr } from "./components/date-picker-with-custom-range/index.js";
41
- import { DEFAULT_RELATIVE_PRESET_LABELS as Mr } from "./components/date-picker-with-custom-range/logic.js";
42
- import { DateTimePicker as wr } from "./components/date-time-picker/index.js";
43
- import { Divider as Gr } from "./components/divider/index.js";
44
- import { DateRangePicker as Br } from "./components/date-range-picker/index.js";
45
- import { DocumentViewer as _r } from "./components/document-viewer/index.js";
46
- import { DurationSelect as Ur } from "./components/duration-select/index.js";
47
- import { EditableText as jr } from "./components/editable-text/index.js";
48
- import { GeometryPicker as Xr } from "./components/geometry-picker/index.js";
49
- import { Geometry as qr } from "./components/geometry-picker/geometry/index.js";
50
- import { Parser as Kr } from "./components/geometry-picker/parser/index.js";
51
- import { HeatMap as Zr } from "./components/heat-map/index.js";
52
- import { IconButton as ro } from "./components/icon-button/index.js";
53
- import { InstanceForm as eo } from "./components/instance-form/index.js";
54
- import { InstanceHierarchyTable as po } from "./components/instance-hierarchy-table/index.js";
55
- import { InstanceTable as ao } from "./components/instance-table/index.js";
56
- import { InstanceVariableList as fo } from "./components/instance-variable-list/index.js";
57
- import { LinearIndicator as lo } from "./components/linear-indicator/index.js";
58
- import { Loading as co } from "./components/loading/index.js";
59
- import { Map as Co } from "./components/map/index.js";
60
- import { MetricCard as To } from "./components/metric-card/index.js";
61
- import { ObjectProfileCard as ho } from "./components/object-profile-card/index.js";
62
- import { PaginatedList as Lo } from "./components/paginated-list/index.js";
63
- import { StatusIndicator as Io } from "./components/status-indicator/index.js";
64
- import { PhoneInput as yo } from "./components/phone-input/index.js";
65
- import { Placeholder as bo } from "./components/placeholder/index.js";
66
- import { PositionalTooltip as Vo } from "./components/positional-tooltip/index.js";
67
- import { PrrMap as vo } from "./components/prr-map/index.js";
68
- import { RangeSelector as Ro } from "./components/range-selector/index.js";
69
- import { RasterGridMap as Eo } from "./components/raster-grid-map/index.js";
70
- import { SearchInput as Ho } from "./components/search-input/index.js";
71
- import { ScrollDrag as Wo } from "./components/scroll-drag/index.js";
72
- import { SimplePivotTable as Oo } from "./components/simple-pivot-table/index.js";
73
- import { SortableList as No } from "./components/sortable-list/index.js";
74
- import { StatsBox as zo } from "./components/stats-box/index.js";
75
- import { StaticText as Yo } from "./components/static-text/index.js";
76
- import { Tabs as Jo } from "./components/tabs/index.js";
77
- import { TextOverflow as Qo } from "./components/text-overflow/index.js";
78
- import { TemplateFilters as $o } from "./components/template-filters/index.js";
79
- import { TemplateForm as oe } from "./components/template-form/index.js";
80
- import { TemplatePropertyFilters as te } from "./components/template-property-filters/index.js";
81
- import { Property as me } from "./components/template-property-filters/property.js";
82
- import { TimelineWidget as xe } from "./components/timeline/index.js";
83
- import { ToggleViewButton as ie } from "./components/toggle-view-button/index.js";
84
- import { TreeSelect as ne } from "./components/tree-select/index.js";
85
- import { TreeViewFilter as se } from "./components/treeview-filter/index.js";
86
- import { Uploader as Ce } from "./components/uploader/index.js";
87
- import { VisuallyHiddenInput as Te } from "./components/visually-hidden-input/styled.js";
88
- import { Widget as he } from "./components/widget/styled.js";
89
- import { FlexCol as Le } from "./components/flex-col/index.js";
90
- import { FlexRow as Ie } from "./components/flex-row/index.js";
91
- import { notify as ye, removeNotification as Fe } from "./components/notification/store.js";
17
+ import { Histogram as E } from "./components/charts/histogram/index.js";
18
+ import { LineChart as G } from "./components/charts/line/index.js";
19
+ import { LogaritmicScale as W } from "./components/charts/logaritmic-scale/index.js";
20
+ import { MultipleValueAxes as O } from "./components/charts/multiple-value-axes/index.js";
21
+ import { NestedPie as N } from "./components/charts/nested-pie/index.js";
22
+ import { PackedCircles as z } from "./components/charts/packed-circles/index.js";
23
+ import { PieChart as Y } from "./components/charts/pie-chart/index.js";
24
+ import { StackedAreaRadar as J } from "./components/charts/stacked-area-radar/index.js";
25
+ import { StackedColumnChart as Q } from "./components/charts/stacked-column-chart/index.js";
26
+ import { XYChart as $ } from "./components/charts/xy-chart/index.js";
27
+ import { formatValue as or, humanizeLabel as er, resolveConditionalStyle as tr } from "./components/charts/_common/format.js";
28
+ import { DEFAULT_VIRIDIS_COOL as pr } from "./components/charts/_common/utils.js";
29
+ import { Button as xr } from "./components/button/index.js";
30
+ import { ColorPicker as ir } from "./components/color-picker/index.js";
31
+ import { CollapsibleCard as nr } from "./components/collapsible-card/index.js";
32
+ import { ConditionalWrapper as sr } from "./components/conditional-wrapper/index.js";
33
+ import { alert as Cr, confirm as Pr } from "./components/confirm/index.js";
34
+ import { HCNotificationProvider as ur } from "./components/notification/index.js";
35
+ import { Container as Dr } from "./components/container/index.js";
36
+ import { ContextMenu as Sr } from "./components/context-menu/index.js";
37
+ import { DataGrid as gr } from "./components/data-grid/index.js";
38
+ import { DataMap as Fr } from "./components/data-map/index.js";
39
+ import { DisseminationList as Ar } from "./components/data-security-selectors/dissemination-list/index.js";
40
+ import { SecurityLevel as kr } from "./components/data-security-selectors/security-level/index.js";
41
+ import { DatePickerWithCustomRange as Mr } from "./components/date-picker-with-custom-range/index.js";
42
+ import { DEFAULT_RELATIVE_PRESET_LABELS as wr } from "./components/date-picker-with-custom-range/logic.js";
43
+ import { DateTimePicker as Hr } from "./components/date-time-picker/index.js";
44
+ import { Divider as Br } from "./components/divider/index.js";
45
+ import { DateRangePicker as _r } from "./components/date-range-picker/index.js";
46
+ import { DocumentViewer as Ur } from "./components/document-viewer/index.js";
47
+ import { DurationSelect as jr } from "./components/duration-select/index.js";
48
+ import { EditableText as Xr } from "./components/editable-text/index.js";
49
+ import { GeometryPicker as qr } from "./components/geometry-picker/index.js";
50
+ import { Geometry as Kr } from "./components/geometry-picker/geometry/index.js";
51
+ import { Parser as Zr } from "./components/geometry-picker/parser/index.js";
52
+ import { HeatMap as ro } from "./components/heat-map/index.js";
53
+ import { IconButton as eo } from "./components/icon-button/index.js";
54
+ import { InstanceForm as mo } from "./components/instance-form/index.js";
55
+ import { InstanceHierarchyTable as ao } from "./components/instance-hierarchy-table/index.js";
56
+ import { InstanceTable as fo } from "./components/instance-table/index.js";
57
+ import { InstanceVariableList as lo } from "./components/instance-variable-list/index.js";
58
+ import { LinearIndicator as co } from "./components/linear-indicator/index.js";
59
+ import { Loading as Co } from "./components/loading/index.js";
60
+ import { Map as To } from "./components/map/index.js";
61
+ import { MetricCard as ho } from "./components/metric-card/index.js";
62
+ import { ObjectProfileCard as Lo } from "./components/object-profile-card/index.js";
63
+ import { PaginatedList as Io } from "./components/paginated-list/index.js";
64
+ import { StatusIndicator as yo } from "./components/status-indicator/index.js";
65
+ import { PhoneInput as bo } from "./components/phone-input/index.js";
66
+ import { Placeholder as Vo } from "./components/placeholder/index.js";
67
+ import { PositionalTooltip as vo } from "./components/positional-tooltip/index.js";
68
+ import { PrrMap as Ro } from "./components/prr-map/index.js";
69
+ import { RangeSelector as Eo } from "./components/range-selector/index.js";
70
+ import { RasterGridMap as Go } from "./components/raster-grid-map/index.js";
71
+ import { SearchInput as Wo } from "./components/search-input/index.js";
72
+ import { ScrollDrag as Oo } from "./components/scroll-drag/index.js";
73
+ import { SimplePivotTable as No } from "./components/simple-pivot-table/index.js";
74
+ import { SortableList as zo } from "./components/sortable-list/index.js";
75
+ import { StatsBox as Yo } from "./components/stats-box/index.js";
76
+ import { StaticText as Jo } from "./components/static-text/index.js";
77
+ import { Tabs as Qo } from "./components/tabs/index.js";
78
+ import { TextOverflow as $o } from "./components/text-overflow/index.js";
79
+ import { TemplateFilters as oe } from "./components/template-filters/index.js";
80
+ import { TemplateForm as te } from "./components/template-form/index.js";
81
+ import { TemplatePropertyFilters as pe } from "./components/template-property-filters/index.js";
82
+ import { Property as xe } from "./components/template-property-filters/property.js";
83
+ import { TimelineWidget as ie } from "./components/timeline/index.js";
84
+ import { ToggleViewButton as ne } from "./components/toggle-view-button/index.js";
85
+ import { TreeSelect as se } from "./components/tree-select/index.js";
86
+ import { TreeViewFilter as Ce } from "./components/treeview-filter/index.js";
87
+ import { Uploader as Te } from "./components/uploader/index.js";
88
+ import { VisuallyHiddenInput as he } from "./components/visually-hidden-input/styled.js";
89
+ import { Widget as Le } from "./components/widget/styled.js";
90
+ import { FlexCol as Ie } from "./components/flex-col/index.js";
91
+ import { FlexRow as ye } from "./components/flex-row/index.js";
92
+ import { notify as be, removeNotification as Ae } from "./components/notification/store.js";
92
93
  export {
93
94
  i as Access,
94
95
  n as AccessUtils,
95
96
  x as AdapterDayjs,
96
- mr as Button,
97
+ xr as Button,
97
98
  h as CandlestickChart,
98
99
  s as Card,
99
100
  C as CardAlternate,
100
101
  T as ChartWrapper,
101
- ir as CollapsibleCard,
102
- xr as ColorPicker,
102
+ nr as CollapsibleCard,
103
+ ir as ColorPicker,
103
104
  I as ColumnLineMix,
104
- nr as ConditionalWrapper,
105
- ur as Container,
106
- Dr as ContextMenu,
107
- Mr as DEFAULT_RELATIVE_PRESET_LABELS,
108
- tr as DEFAULT_VIRIDIS_COOL,
109
- Sr as DataGrid,
110
- gr as DataMap,
111
- kr as DatePickerWithCustomRange,
112
- Br as DateRangePicker,
113
- wr as DateTimePicker,
114
- Fr as DisseminationList,
115
- Gr as Divider,
116
- _r as DocumentViewer,
105
+ sr as ConditionalWrapper,
106
+ Dr as Container,
107
+ Sr as ContextMenu,
108
+ wr as DEFAULT_RELATIVE_PRESET_LABELS,
109
+ pr as DEFAULT_VIRIDIS_COOL,
110
+ gr as DataGrid,
111
+ Fr as DataMap,
112
+ Mr as DatePickerWithCustomRange,
113
+ _r as DateRangePicker,
114
+ Hr as DateTimePicker,
115
+ Ar as DisseminationList,
116
+ Br as Divider,
117
+ Ur as DocumentViewer,
117
118
  y as DonutChart,
118
119
  b as DrillDownTreemap,
119
120
  V as DrillDownVoronoiTreemap,
120
- Ur as DurationSelect,
121
- jr as EditableText,
122
- Le as FlexCol,
123
- Ie as FlexRow,
121
+ jr as DurationSelect,
122
+ Xr as EditableText,
123
+ Ie as FlexCol,
124
+ ye as FlexRow,
124
125
  L as ForecastConeChart,
125
- qr as GeometryDraw,
126
- Kr as GeometryParser,
127
- Xr as GeometryPicker,
128
- Pr as HCNotificationProvider,
129
- Zr as HeatMap,
126
+ Kr as GeometryDraw,
127
+ Zr as GeometryParser,
128
+ qr as GeometryPicker,
129
+ ur as HCNotificationProvider,
130
+ ro as HeatMap,
130
131
  v as Heatmap,
131
132
  R as HighlightLineChart,
132
- ro as IconButton,
133
- eo as InstanceForm,
134
- po as InstanceHierarchyTable,
135
- ao as InstanceTable,
136
- fo as InstanceVariableList,
137
- E as LineChart,
138
- lo as LinearIndicator,
139
- co as Loading,
140
- m as LocalizationProvider,
141
- H as LogaritmicScale,
142
- Co as Map,
143
- To as MetricCard,
144
- W as MultipleValueAxes,
145
- O as NestedPie,
146
- ho as ObjectProfileCard,
147
- N as PackedCircles,
148
- Lo as PaginatedList,
149
- yo as PhoneInput,
150
- z as PieChart,
151
- bo as Placeholder,
152
- Vo as PositionalTooltip,
153
- me as PropertyFilterInput,
154
- vo as PrrMap,
155
- Ro as RangeSelector,
156
- Eo as RasterGridMap,
157
- Wo as ScrollDrag,
158
- Ho as SearchInput,
159
- Ar as SecurityLevel,
160
- Oo as SimplePivotTable,
161
- No as SortableList,
162
- Y as StackedAreaRadar,
163
- J as StackedColumnChart,
164
- Yo as StaticText,
165
- zo as StatsBox,
166
- Io as StatusIndicator,
167
- Jo as Tabs,
168
- $o as TemplateFilters,
169
- oe as TemplateForm,
170
- te as TemplatePropertyFilters,
171
- Qo as TextOverflow,
133
+ E as Histogram,
134
+ eo as IconButton,
135
+ mo as InstanceForm,
136
+ ao as InstanceHierarchyTable,
137
+ fo as InstanceTable,
138
+ lo as InstanceVariableList,
139
+ G as LineChart,
140
+ co as LinearIndicator,
141
+ Co as Loading,
142
+ p as LocalizationProvider,
143
+ W as LogaritmicScale,
144
+ To as Map,
145
+ ho as MetricCard,
146
+ O as MultipleValueAxes,
147
+ N as NestedPie,
148
+ Lo as ObjectProfileCard,
149
+ z as PackedCircles,
150
+ Io as PaginatedList,
151
+ bo as PhoneInput,
152
+ Y as PieChart,
153
+ Vo as Placeholder,
154
+ vo as PositionalTooltip,
155
+ xe as PropertyFilterInput,
156
+ Ro as PrrMap,
157
+ Eo as RangeSelector,
158
+ Go as RasterGridMap,
159
+ Oo as ScrollDrag,
160
+ Wo as SearchInput,
161
+ kr as SecurityLevel,
162
+ No as SimplePivotTable,
163
+ zo as SortableList,
164
+ J as StackedAreaRadar,
165
+ Q as StackedColumnChart,
166
+ Jo as StaticText,
167
+ Yo as StatsBox,
168
+ yo as StatusIndicator,
169
+ Qo as Tabs,
170
+ oe as TemplateFilters,
171
+ te as TemplateForm,
172
+ pe as TemplatePropertyFilters,
173
+ $o as TextOverflow,
172
174
  e as ThemeProvider,
173
- xe as TimelineWidget,
174
- ie as ToggleViewButton,
175
- ne as TreeSelect,
176
- se as TreeViewFilter,
177
- Ce as Uploader,
178
- Te as VisuallyHiddenInput,
179
- he as Widget,
180
- Q as XYChart,
181
- sr as alert,
182
- dr as confirm,
175
+ ie as TimelineWidget,
176
+ ne as ToggleViewButton,
177
+ se as TreeSelect,
178
+ Ce as TreeViewFilter,
179
+ Te as Uploader,
180
+ he as VisuallyHiddenInput,
181
+ Le as Widget,
182
+ $ as XYChart,
183
+ Cr as alert,
184
+ Pr as confirm,
183
185
  t as createTheme,
184
- $ as formatValue,
185
- rr as humanizeLabel,
186
- ye as notify,
187
- Fe as removeNotification,
188
- or as resolveConditionalStyle
186
+ or as formatValue,
187
+ er as humanizeLabel,
188
+ be as notify,
189
+ Ae as removeNotification,
190
+ tr as resolveConditionalStyle
189
191
  };
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.21",
4
+ "version": "1.6.23",
5
5
  "author": "Hybrid Core",
6
6
  "license": "ISC",
7
7
  "type": "module",