@hybridcore/ui 1.6.21 → 1.6.22
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 +1 -0
- package/dist/components/button/index.js +10 -7
- package/dist/components/charts/chart-wrapper/index.js +34 -32
- package/dist/components/charts/column-line-mix/logic.js +27 -27
- package/dist/components/charts/histogram/index.js +11 -0
- package/dist/components/charts/histogram/logic.js +133 -0
- package/dist/components/charts/histogram/styled.js +12 -0
- package/dist/components/charts/line/logic.js +48 -48
- package/dist/components/charts/logaritmic-scale/logic.js +33 -33
- package/dist/components/charts/multiple-value-axes/logic.js +70 -70
- package/dist/components/charts/xy-chart/logic.js +9 -1
- package/dist/main.d.ts +48 -1
- package/dist/main.js +158 -156
- package/package.json +1 -1
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
|
|
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 {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
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 {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
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
|
-
|
|
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
|
-
|
|
102
|
-
|
|
102
|
+
nr as CollapsibleCard,
|
|
103
|
+
ir as ColorPicker,
|
|
103
104
|
I as ColumnLineMix,
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
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
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
121
|
+
jr as DurationSelect,
|
|
122
|
+
Xr as EditableText,
|
|
123
|
+
Ie as FlexCol,
|
|
124
|
+
ye as FlexRow,
|
|
124
125
|
L as ForecastConeChart,
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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
|
-
|
|
133
|
-
eo as
|
|
134
|
-
|
|
135
|
-
ao as
|
|
136
|
-
fo as
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
co as
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
To as
|
|
144
|
-
|
|
145
|
-
O as
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
Vo as
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
Ro as
|
|
156
|
-
Eo as
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
No as
|
|
162
|
-
|
|
163
|
-
J as
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
oe as
|
|
170
|
-
te as
|
|
171
|
-
|
|
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
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
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
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
186
|
+
or as formatValue,
|
|
187
|
+
er as humanizeLabel,
|
|
188
|
+
be as notify,
|
|
189
|
+
Ae as removeNotification,
|
|
190
|
+
tr as resolveConditionalStyle
|
|
189
191
|
};
|