@hybridcore/ui 1.6.4 → 1.6.6
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/IconX-C2wmVYSK.js +11 -0
- package/dist/components/charts/_common/format.js +49 -0
- package/dist/components/charts/_common/utils.js +12 -7
- package/dist/components/charts/chart-wrapper/index.js +36 -34
- package/dist/components/charts/column-line-mix/logic.js +78 -78
- package/dist/components/charts/donut-chart/index.js +11 -0
- package/dist/components/charts/donut-chart/logic.js +67 -0
- package/dist/components/charts/donut-chart/styled.js +12 -0
- 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 +66 -66
- package/dist/components/charts/logaritmic-scale/logic.js +65 -65
- package/dist/components/charts/multiple-value-axes/logic.js +75 -74
- 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 +51 -51
- package/dist/components/charts/stacked-column-chart/logic.js +79 -79
- package/dist/components/charts/xy-chart/logic.js +71 -71
- 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/logic.js +65 -57
- package/dist/components/metric-card/styled.js +55 -47
- 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 +128 -8
- package/dist/main.js +163 -157
- package/dist/{styled-Db1RdcPA.js → styled-SoqbyrkW.js} +116 -89
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -6,173 +6,179 @@ 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
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
9
|
+
import { ColumnLineMix as u } 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 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";
|
|
15
16
|
import { LogaritmicScale as R } from "./components/charts/logaritmic-scale/index.js";
|
|
16
|
-
import { MultipleValueAxes as
|
|
17
|
-
import { NestedPie as
|
|
18
|
-
import { PackedCircles as
|
|
19
|
-
import { PieChart as
|
|
20
|
-
import { StackedAreaRadar as
|
|
21
|
-
import { StackedColumnChart as
|
|
22
|
-
import { XYChart as
|
|
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 {
|
|
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 { 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";
|
|
87
89
|
export {
|
|
88
90
|
x as Access,
|
|
89
91
|
i as AccessUtils,
|
|
90
|
-
|
|
91
|
-
|
|
92
|
+
Ar as AdapterDayjs,
|
|
93
|
+
or as Button,
|
|
92
94
|
T as CandlestickChart,
|
|
93
95
|
n as Card,
|
|
94
96
|
s as CardAlternate,
|
|
95
97
|
C as ChartWrapper,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
I as
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
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,
|
|
114
|
+
L as DonutChart,
|
|
115
|
+
I as DrillDownTreemap,
|
|
116
|
+
y as DrillDownVoronoiTreemap,
|
|
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,
|
|
133
136
|
m as LocalizationProvider,
|
|
134
137
|
R as LogaritmicScale,
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
138
|
+
no as Map,
|
|
139
|
+
so as MetricCard,
|
|
140
|
+
E as MultipleValueAxes,
|
|
141
|
+
H as NestedPie,
|
|
142
|
+
Po as ObjectProfileCard,
|
|
143
|
+
W as PackedCircles,
|
|
144
|
+
Do as PaginatedList,
|
|
145
|
+
ho as PhoneInput,
|
|
146
|
+
O as PieChart,
|
|
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,
|
|
158
|
+
N as StackedAreaRadar,
|
|
159
|
+
z as StackedColumnChart,
|
|
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,
|
|
164
167
|
e as ThemeProvider,
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
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,
|
|
175
|
+
Y as XYChart,
|
|
176
|
+
ir as alert,
|
|
177
|
+
lr as confirm,
|
|
175
178
|
t as createTheme,
|
|
176
|
-
|
|
177
|
-
|
|
179
|
+
J as formatValue,
|
|
180
|
+
K as humanizeLabel,
|
|
181
|
+
he as notify,
|
|
182
|
+
Le as removeNotification,
|
|
183
|
+
Q as resolveConditionalStyle
|
|
178
184
|
};
|