@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/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.ReactElement
347
+ * @param children React.ReactNode
341
348
  */
342
- wrapper(children: default_2.ReactElement): default_2.ReactElement;
349
+ wrapper(children: default_2.ReactNode): default_2.ReactNode;
343
350
  /**
344
351
  * Child components to wrap
345
352
  */
346
- children: default_2.ReactElement;
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 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.3",
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",