@hybridcore/ui 1.6.3 → 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 +1 -0
- package/dist/LinearGradient-DiRq5YcI.js +93 -0
- package/dist/components/charts/chart-wrapper/index.js +43 -40
- package/dist/components/charts/chart-wrapper/logic.js +14 -12
- package/dist/components/charts/donut-chart/index.js +11 -0
- package/dist/components/charts/donut-chart/logic.js +66 -0
- package/dist/components/charts/donut-chart/styled.js +12 -0
- package/dist/components/charts/heatmap/logic.js +155 -242
- package/dist/components/metric-card/MetricChart.js +65 -50
- package/dist/components/metric-card/helpers.js +18 -0
- package/dist/components/metric-card/index.js +83 -73
- package/dist/components/metric-card/logic.js +64 -76
- package/dist/components/metric-card/styled.js +125 -137
- package/dist/components/sortable-list/index.js +1992 -346
- package/dist/main.d.ts +49 -5
- package/dist/main.js +161 -159
- package/package.json +5 -2
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"
|
|
@@ -248,6 +249,12 @@ export declare interface ChartProps {
|
|
|
248
249
|
initDelay?: number;
|
|
249
250
|
interval?: string;
|
|
250
251
|
baseInterval?: BaseInterval;
|
|
252
|
+
/**
|
|
253
|
+
* When `true`, the chart is still waiting on its async config/data. The wrapper
|
|
254
|
+
* holds back rendering (and the "missing config" validation error) until this
|
|
255
|
+
* clears, so a misconfiguration only surfaces once the data has settled.
|
|
256
|
+
*/
|
|
257
|
+
loading?: boolean;
|
|
251
258
|
/**
|
|
252
259
|
* Color palette used for series. Defaults to the lib's built-in viridis-cool
|
|
253
260
|
* palette. Pass `theme.palette.viridisCool` (or any sequential palette) from
|
|
@@ -337,13 +344,13 @@ declare interface ConditionalWrapperProps {
|
|
|
337
344
|
*/
|
|
338
345
|
condition: boolean;
|
|
339
346
|
/**
|
|
340
|
-
* @param children React.
|
|
347
|
+
* @param children React.ReactNode
|
|
341
348
|
*/
|
|
342
|
-
wrapper(children: default_2.
|
|
349
|
+
wrapper(children: default_2.ReactNode): default_2.ReactNode;
|
|
343
350
|
/**
|
|
344
351
|
* Child components to wrap
|
|
345
352
|
*/
|
|
346
|
-
children: default_2.
|
|
353
|
+
children: default_2.ReactNode;
|
|
347
354
|
}
|
|
348
355
|
|
|
349
356
|
declare function confirm_2(title: string, description: string, options?: OptionsType): Promise<unknown>;
|
|
@@ -569,6 +576,15 @@ export declare interface DocumentViewerProps {
|
|
|
569
576
|
sx?: SxProps<Theme>;
|
|
570
577
|
}
|
|
571
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
|
+
|
|
572
588
|
export declare const DrillDownTreemap: (inProps: DrillDownTreemapProps) => JSX_2.Element;
|
|
573
589
|
|
|
574
590
|
export declare type DrillDownTreemapComponentOverride<Theme = unknown> = {
|
|
@@ -1124,6 +1140,15 @@ export declare interface MetricCardProps {
|
|
|
1124
1140
|
variant?: MetricVariant;
|
|
1125
1141
|
loading?: boolean;
|
|
1126
1142
|
|
|
1143
|
+
// "overlay" (default) = chart bleeds behind the value; "panel" = value/badge on the
|
|
1144
|
+
// left, chart inset on the right, wrapped in a nested card.
|
|
1145
|
+
layout?: MetricLayout;
|
|
1146
|
+
|
|
1147
|
+
// Rendered verbatim around the formatted number, e.g. valuePrefix "€ " → "€ 1,577",
|
|
1148
|
+
// valueSuffix " kg" → "1,577 kg". Include any spacing in the string itself.
|
|
1149
|
+
valuePrefix?: string;
|
|
1150
|
+
valueSuffix?: string;
|
|
1151
|
+
|
|
1127
1152
|
showChange?: boolean;
|
|
1128
1153
|
changeType?: MetricChangeType;
|
|
1129
1154
|
|
|
@@ -1158,6 +1183,8 @@ export declare type MetricIconPosition =
|
|
|
1158
1183
|
| "bottom-left"
|
|
1159
1184
|
| "bottom-right";
|
|
1160
1185
|
|
|
1186
|
+
declare type MetricLayout = "overlay" | "panel";
|
|
1187
|
+
|
|
1161
1188
|
export declare type MetricTrend = "up" | "down" | "neutral";
|
|
1162
1189
|
|
|
1163
1190
|
export declare type MetricVariant =
|
|
@@ -2250,6 +2277,22 @@ declare module "@mui/material/styles" {
|
|
|
2250
2277
|
|
|
2251
2278
|
|
|
2252
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
|
+
|
|
2253
2296
|
declare module "@mui/material/styles" {
|
|
2254
2297
|
interface ComponentNameToClassKey {
|
|
2255
2298
|
HCDrillDownTreemap: "root";
|
|
@@ -3190,11 +3233,12 @@ declare module "@mui/material/styles" {
|
|
|
3190
3233
|
| "label"
|
|
3191
3234
|
| "value"
|
|
3192
3235
|
| "trendContainer"
|
|
3193
|
-
| "trendValue"
|
|
3194
3236
|
| "description"
|
|
3195
3237
|
| "icon"
|
|
3196
3238
|
| "cornerIcon"
|
|
3197
|
-
| "chart"
|
|
3239
|
+
| "chart"
|
|
3240
|
+
| "panel"
|
|
3241
|
+
| "sideChart";
|
|
3198
3242
|
}
|
|
3199
3243
|
|
|
3200
3244
|
interface ComponentsPropsList {
|
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
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
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 {
|
|
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
|
-
|
|
91
|
-
|
|
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
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
I as
|
|
114
|
-
|
|
115
|
-
Er as
|
|
116
|
-
|
|
117
|
-
ce as
|
|
118
|
-
|
|
119
|
-
Or as
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
F as
|
|
125
|
-
|
|
126
|
-
Yr as
|
|
127
|
-
Jr as
|
|
128
|
-
Qr as
|
|
129
|
-
$r as
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
to as
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
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
|
-
|
|
177
|
-
|
|
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
|
+
"version": "1.6.5",
|
|
5
5
|
"author": "Hybrid Core",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"type": "module",
|
|
@@ -55,7 +55,8 @@
|
|
|
55
55
|
"react-number-format": "^5.3.4",
|
|
56
56
|
"react-phone-number-input": "^3.3.7",
|
|
57
57
|
"react-select": "^5.8.0",
|
|
58
|
-
"react-sortablejs": "^6.1.4"
|
|
58
|
+
"react-sortablejs": "^6.1.4",
|
|
59
|
+
"sortablejs": "^1"
|
|
59
60
|
},
|
|
60
61
|
"dependencies": {
|
|
61
62
|
"@amcharts/amcharts5": "^5.14.4",
|
|
@@ -98,6 +99,7 @@
|
|
|
98
99
|
"@types/react": "^18.3.10",
|
|
99
100
|
"@types/react-color": "^3.0.12",
|
|
100
101
|
"@types/react-dom": "^18.3.0",
|
|
102
|
+
"@types/sortablejs": "^1",
|
|
101
103
|
"@types/terraformer__wkt": "^2",
|
|
102
104
|
"@vitejs/plugin-react": "^4.3.2",
|
|
103
105
|
"@wojtekmaj/react-daterange-picker": "^5.5.0",
|
|
@@ -123,6 +125,7 @@
|
|
|
123
125
|
"react-phone-number-input": "^3.3.7",
|
|
124
126
|
"react-select": "^5.8.0",
|
|
125
127
|
"react-sortablejs": "^6.1.4",
|
|
128
|
+
"sortablejs": "^1",
|
|
126
129
|
"storybook": "^8.3.5",
|
|
127
130
|
"typescript": "^5.5.3",
|
|
128
131
|
"typescript-eslint": "^8.7.0",
|