@ztwoint/z-ui 0.1.121 → 0.1.123

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.
Files changed (92) hide show
  1. package/dist/components/chart-card/builders/bar-chart-builder.d.ts +1 -1
  2. package/dist/components/chart-card/builders/bar-chart-builder.js +78 -31
  3. package/dist/components/chart-card/builders/chart-builder-factory.d.ts +1 -1
  4. package/dist/components/chart-card/builders/chart-builder-factory.js +15 -15
  5. package/dist/components/chart-card/builders/line-chart-builder.d.ts +1 -1
  6. package/dist/components/chart-card/builders/line-chart-builder.js +85 -38
  7. package/dist/components/chart-card/builders/pie-chart-builder.d.ts +1 -1
  8. package/dist/components/chart-card/builders/pie-chart-builder.js +37 -34
  9. package/dist/components/chart-card/chart-card.config.types.d.ts +27 -0
  10. package/dist/components/chart-card/chart-card.d.ts +1 -1
  11. package/dist/components/chart-card/chart-card.js +25 -23
  12. package/dist/components/chart-card/chart-card.types.d.ts +2 -0
  13. package/dist/components/chart-card/config/defaults.d.ts +28 -0
  14. package/dist/components/chart-card/config/defaults.js +105 -88
  15. package/dist/components/table/components/cell/avatar-cell.js +13 -6
  16. package/dist/components/table/table-provider.js +7 -0
  17. package/dist/components/table-card/table-card.js +52 -45
  18. package/dist/components/z2map/components/index.d.ts +5 -0
  19. package/dist/components/z2map/components/map-controls.d.ts +12 -0
  20. package/dist/components/z2map/components/map-controls.js +29 -0
  21. package/dist/components/z2map/components/map-empty-state.d.ts +2 -0
  22. package/dist/components/z2map/components/map-empty-state.js +10 -0
  23. package/dist/components/z2map/components/map-loading-state.d.ts +8 -0
  24. package/dist/components/z2map/components/map-loading-state.js +45 -0
  25. package/dist/components/z2map/components/map-pin-content.d.ts +8 -0
  26. package/dist/components/z2map/components/map-pin-content.js +27 -0
  27. package/dist/components/z2map/components/map-pin.d.ts +19 -0
  28. package/dist/components/z2map/components/map-pin.js +116 -0
  29. package/dist/components/z2map/components/map-style-control.d.ts +8 -0
  30. package/dist/components/z2map/components/map-style-control.js +45 -0
  31. package/dist/components/z2map/components/map-zoom-control.d.ts +8 -0
  32. package/dist/components/z2map/components/map-zoom-control.js +49 -0
  33. package/dist/components/z2map/index.d.ts +9 -0
  34. package/dist/components/z2map/map.constants.d.ts +47 -0
  35. package/dist/components/z2map/map.constants.js +40 -0
  36. package/dist/components/z2map/map.d.ts +4 -0
  37. package/dist/components/z2map/map.hook.d.ts +33 -0
  38. package/dist/components/z2map/map.hook.js +99 -0
  39. package/dist/components/z2map/map.js +161 -0
  40. package/dist/components/z2map/map.type.d.ts +45 -0
  41. package/dist/components/z2map/map.utils.d.ts +10 -0
  42. package/dist/components/z2map/map.utils.js +37 -0
  43. package/dist/css/node_modules/mapbox-gl/dist/mapbox-gl.css +1 -0
  44. package/dist/css/styles/tailwind.css +1 -1
  45. package/dist/index.d.ts +1 -0
  46. package/dist/index.js +128 -112
  47. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/attribution-control.js +12 -0
  48. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/fullscreen-control.js +12 -0
  49. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/geolocate-control.js +30 -0
  50. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/map.js +54 -0
  51. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/marker.js +56 -0
  52. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/navigation-control.js +12 -0
  53. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/popup.js +35 -0
  54. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/scale-control.js +14 -0
  55. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/use-control.js +14 -0
  56. package/dist/node_modules/@vis.gl/react-mapbox/dist/components/use-map.js +6 -0
  57. package/dist/node_modules/@vis.gl/react-mapbox/dist/mapbox/create-ref.js +77 -0
  58. package/dist/node_modules/@vis.gl/react-mapbox/dist/mapbox/mapbox.js +315 -0
  59. package/dist/node_modules/@vis.gl/react-mapbox/dist/mapbox/proxy-transform.js +35 -0
  60. package/dist/node_modules/@vis.gl/react-mapbox/dist/utils/apply-react-style.js +13 -0
  61. package/dist/node_modules/@vis.gl/react-mapbox/dist/utils/compare-class-names.js +16 -0
  62. package/dist/node_modules/@vis.gl/react-mapbox/dist/utils/deep-equal.js +33 -0
  63. package/dist/node_modules/@vis.gl/react-mapbox/dist/utils/set-globals.js +18 -0
  64. package/dist/node_modules/@vis.gl/react-mapbox/dist/utils/style-utils.js +25 -0
  65. package/dist/node_modules/@vis.gl/react-mapbox/dist/utils/transform.js +40 -0
  66. package/dist/node_modules/@vis.gl/react-mapbox/dist/utils/use-isomorphic-layout-effect.js +5 -0
  67. package/dist/routes/map.d.ts +2 -0
  68. package/dist/types/components/chart-card/builders/bar-chart-builder.d.ts +1 -1
  69. package/dist/types/components/chart-card/builders/chart-builder-factory.d.ts +1 -1
  70. package/dist/types/components/chart-card/builders/line-chart-builder.d.ts +1 -1
  71. package/dist/types/components/chart-card/builders/pie-chart-builder.d.ts +1 -1
  72. package/dist/types/components/chart-card/chart-card.config.types.d.ts +27 -0
  73. package/dist/types/components/chart-card/chart-card.d.ts +1 -1
  74. package/dist/types/components/chart-card/chart-card.types.d.ts +2 -0
  75. package/dist/types/components/chart-card/config/defaults.d.ts +28 -0
  76. package/dist/types/components/z2map/components/index.d.ts +5 -0
  77. package/dist/types/components/z2map/components/map-controls.d.ts +12 -0
  78. package/dist/types/components/z2map/components/map-empty-state.d.ts +2 -0
  79. package/dist/types/components/z2map/components/map-loading-state.d.ts +8 -0
  80. package/dist/types/components/z2map/components/map-pin-content.d.ts +8 -0
  81. package/dist/types/components/z2map/components/map-pin.d.ts +19 -0
  82. package/dist/types/components/z2map/components/map-style-control.d.ts +8 -0
  83. package/dist/types/components/z2map/components/map-zoom-control.d.ts +8 -0
  84. package/dist/types/components/z2map/index.d.ts +9 -0
  85. package/dist/types/components/z2map/map.constants.d.ts +47 -0
  86. package/dist/types/components/z2map/map.d.ts +5 -0
  87. package/dist/types/components/z2map/map.hook.d.ts +33 -0
  88. package/dist/types/components/z2map/map.type.d.ts +45 -0
  89. package/dist/types/components/z2map/map.utils.d.ts +10 -0
  90. package/dist/types/index.d.ts +1 -0
  91. package/dist/types/routes/map.d.ts +2 -0
  92. package/package.json +6 -2
@@ -1,3 +1,3 @@
1
1
  import type { EChartsOption } from 'echarts';
2
2
  import type { BarChartConfig, ChartData } from '../chart-card.config.types';
3
- export declare function buildBarChartOptions(config: BarChartConfig, data: ChartData): EChartsOption;
3
+ export declare function buildBarChartOptions(config: BarChartConfig, data: ChartData, scrollable?: boolean, scrollableLegend?: boolean): EChartsOption;
@@ -1,5 +1,5 @@
1
1
  import type { EChartsOption } from 'echarts';
2
2
  import type { ChartConfig, ChartData, ChartType } from '../chart-card.config.types';
3
- export declare function buildChartOptions(config: ChartConfig, data: ChartData): EChartsOption;
3
+ export declare function buildChartOptions(config: ChartConfig, data: ChartData, scrollable?: boolean, scrollableLegend?: boolean): EChartsOption;
4
4
  export declare function isChartTypeSupported(type: string): type is ChartType;
5
5
  export declare const registeredChartTypes: readonly ChartType[];
@@ -1,3 +1,3 @@
1
1
  import type { EChartsOption } from 'echarts';
2
2
  import type { ChartData, LineChartConfig } from '../chart-card.config.types';
3
- export declare function buildLineChartOptions(config: LineChartConfig, data: ChartData): EChartsOption;
3
+ export declare function buildLineChartOptions(config: LineChartConfig, data: ChartData, scrollable?: boolean, scrollableLegend?: boolean): EChartsOption;
@@ -1,3 +1,3 @@
1
1
  import type { EChartsOption } from 'echarts';
2
2
  import type { ChartData, PieChartConfig } from '../chart-card.config.types';
3
- export declare function buildPieChartOptions(config: PieChartConfig, data: ChartData): EChartsOption;
3
+ export declare function buildPieChartOptions(config: PieChartConfig, data: ChartData, _scrollable?: boolean, scrollableLegend?: boolean): EChartsOption;
@@ -29,6 +29,18 @@ export interface ChartOptions {
29
29
  position?: 'top' | 'bottom' | 'left' | 'right';
30
30
  align?: 'left' | 'center' | 'right';
31
31
  orient?: 'horizontal' | 'vertical';
32
+ scrollable?: boolean;
33
+ pageButtonItemGap?: number;
34
+ pageButtonGap?: number;
35
+ pageButtonPosition?: 'start' | 'end';
36
+ pageFormatter?: string;
37
+ pageIconColor?: string;
38
+ pageIconInactiveColor?: string;
39
+ pageIconSize?: number;
40
+ pageTextStyle?: {
41
+ color?: string;
42
+ fontSize?: number;
43
+ };
32
44
  };
33
45
  tooltip?: {
34
46
  show?: boolean;
@@ -67,6 +79,21 @@ export interface ChartOptions {
67
79
  showLabel?: boolean;
68
80
  showLabelLine?: boolean;
69
81
  };
82
+ scrollable?: {
83
+ enabled?: boolean;
84
+ type?: 'slider' | 'inside' | 'both';
85
+ start?: number;
86
+ end?: number;
87
+ height?: number;
88
+ width?: number;
89
+ position?: 'bottom' | 'top' | 'left' | 'right';
90
+ showDetail?: boolean;
91
+ showDataShadow?: boolean;
92
+ realtime?: boolean;
93
+ filterMode?: 'filter' | 'empty' | 'none';
94
+ xAxisIndex?: number[];
95
+ yAxisIndex?: number[];
96
+ };
70
97
  }
71
98
  interface BaseChartConfig {
72
99
  name: string;
@@ -1,2 +1,2 @@
1
1
  import type { ChartCardProps } from './chart-card.types';
2
- export declare function ChartCard({ config, data, loading, error, className, style, chartProps, }: ChartCardProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function ChartCard({ config, data, loading, error, className, style, chartProps, scrollable, scrollableLegend, }: ChartCardProps): import("react/jsx-runtime").JSX.Element;
@@ -9,4 +9,6 @@ export interface ChartCardProps {
9
9
  className?: string;
10
10
  style?: CSSProperties;
11
11
  chartProps?: Omit<EChartsReactProps, 'option'>;
12
+ scrollable?: boolean;
13
+ scrollableLegend?: boolean;
12
14
  }
@@ -44,6 +44,34 @@ export declare function buildLegendConfig(data: string[], hasTitle?: boolean, op
44
44
  };
45
45
  itemWidth: number;
46
46
  itemHeight: number;
47
+ } | {
48
+ type: string;
49
+ pageButtonItemGap: number;
50
+ pageButtonGap: number;
51
+ pageButtonPosition: "end" | "start";
52
+ pageFormatter: string;
53
+ pageIconColor: string;
54
+ pageIconInactiveColor: string;
55
+ pageIconSize: number;
56
+ pageTextStyle: {
57
+ color: string;
58
+ fontSize: number;
59
+ };
60
+ data: string[];
61
+ top: string | number;
62
+ bottom: string | number | undefined;
63
+ left: string | number;
64
+ right: string | number | undefined;
65
+ orient: "horizontal" | "vertical";
66
+ itemGap: number;
67
+ padding: number[];
68
+ textStyle: {
69
+ fontSize: number;
70
+ fontFamily: string;
71
+ color: "#000000";
72
+ };
73
+ itemWidth: number;
74
+ itemHeight: number;
47
75
  } | undefined;
48
76
  export declare function buildAxisLabelConfig(rotate?: number): {
49
77
  rotate?: number | undefined;
@@ -0,0 +1,5 @@
1
+ export { MapControls } from './map-controls';
2
+ export { MapPinComponent } from './map-pin';
3
+ export { MapPinContent } from './map-pin-content';
4
+ export { MapLoadingState } from './map-loading-state';
5
+ export { MapEmptyState } from './map-empty-state';
@@ -0,0 +1,12 @@
1
+ import { FC } from 'react';
2
+ import { MapVariant } from '../map.constants';
3
+ export interface MapControlsProps {
4
+ showZoomControls?: boolean;
5
+ onZoomIn?: () => void;
6
+ onZoomOut?: () => void;
7
+ showStyleSwitcher?: boolean;
8
+ activeStyle?: MapVariant;
9
+ onStyleChange?: (style: MapVariant) => void;
10
+ className?: string;
11
+ }
12
+ export declare const MapControls: FC<MapControlsProps>;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const MapEmptyState: FC;
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ interface MapLoadingStateProps {
3
+ width: string | number;
4
+ height: string | number;
5
+ className?: string;
6
+ }
7
+ export declare const MapLoadingState: FC<MapLoadingStateProps>;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ import { FC, ReactNode } from 'react';
2
+ import { Location } from '../map.type';
3
+ export interface MapPinContentProps {
4
+ location: Location;
5
+ customContent?: ReactNode;
6
+ className?: string;
7
+ }
8
+ export declare const MapPinContent: FC<MapPinContentProps>;
@@ -0,0 +1,19 @@
1
+ import { FC, ReactNode } from 'react';
2
+ import { type VariantProps } from 'class-variance-authority';
3
+ import { PinSize, PinVariant } from '../map.type';
4
+ declare const pinVariants: (props?: ({
5
+ variant?: "success" | "warning" | "danger" | "neutral" | "brand" | null | undefined;
6
+ active?: boolean | null | undefined;
7
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
8
+ export interface MapPinProps extends VariantProps<typeof pinVariants> {
9
+ icon?: ReactNode;
10
+ className?: string;
11
+ onClick?: () => void;
12
+ onMouseEnter?: () => void;
13
+ onMouseLeave?: () => void;
14
+ active?: boolean;
15
+ variant?: PinVariant;
16
+ size?: PinSize;
17
+ }
18
+ export declare const MapPinComponent: FC<MapPinProps>;
19
+ export {};
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ import { MapVariant } from '../map.constants';
3
+ export interface MapStyleControlProps {
4
+ activeStyle: MapVariant;
5
+ onStyleChange: (style: MapVariant) => void;
6
+ className?: string;
7
+ }
8
+ export declare const MapStyleControl: FC<MapStyleControlProps>;
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ export interface MapZoomControlProps {
3
+ onZoomIn: () => void;
4
+ onZoomOut: () => void;
5
+ className?: string;
6
+ disabled?: boolean;
7
+ }
8
+ export declare const MapZoomControl: FC<MapZoomControlProps>;
@@ -0,0 +1,9 @@
1
+ export { default as Z2Map } from './map';
2
+ export type { Location, MapProps, PinVariant, PinSize, Coordinate } from './map.type';
3
+ export { MAP_VARIANTS, DEFAULT_MAP_CONFIG, PIN_SIZES } from './map.constants';
4
+ export type { MapVariant } from './map.constants';
5
+ export { MapPinComponent } from './components/map-pin';
6
+ export { MapPinContent } from './components/map-pin-content';
7
+ export { MapControls } from './components/map-controls';
8
+ export { MapZoomControl } from './components/map-zoom-control';
9
+ export { MapStyleControl } from './components/map-style-control';
@@ -0,0 +1,47 @@
1
+ export declare const MAP_VARIANTS: {
2
+ readonly STREETS: "streets";
3
+ readonly SATELLITE: "satellite";
4
+ readonly TERRAIN: "terrain";
5
+ readonly DARK: "dark";
6
+ readonly LIGHT: "light";
7
+ };
8
+ export type MapVariant = (typeof MAP_VARIANTS)[keyof typeof MAP_VARIANTS];
9
+ export declare const MAPBOX_STYLE_MAP: Record<MapVariant, string>;
10
+ export declare const DEFAULT_MAP_CONFIG: {
11
+ center: {
12
+ lat: number;
13
+ lng: number;
14
+ };
15
+ zoom: number;
16
+ minZoom: number;
17
+ maxZoom: number;
18
+ variant: MapVariant;
19
+ width: string;
20
+ height: number;
21
+ interactive: boolean;
22
+ draggable: boolean;
23
+ scrollZoom: boolean;
24
+ showZoomControls: boolean;
25
+ showStyleSwitcher: boolean;
26
+ fitBoundsToLocations: boolean;
27
+ popoverDisabled: boolean;
28
+ pinVariant: "brand";
29
+ pinSize: "md";
30
+ };
31
+ export declare const PIN_SIZES: {
32
+ readonly sm: {
33
+ readonly width: 22;
34
+ readonly height: 22;
35
+ readonly iconSize: 12;
36
+ };
37
+ readonly md: {
38
+ readonly width: 32;
39
+ readonly height: 32;
40
+ readonly iconSize: 16;
41
+ };
42
+ readonly lg: {
43
+ readonly width: 40;
44
+ readonly height: 40;
45
+ readonly iconSize: 20;
46
+ };
47
+ };
@@ -0,0 +1,5 @@
1
+ import { FC } from 'react';
2
+ import { MapProps } from './map.type';
3
+ import 'mapbox-gl/dist/mapbox-gl.css';
4
+ declare const Map: FC<MapProps>;
5
+ export default Map;
@@ -0,0 +1,33 @@
1
+ import type { MapRef } from 'react-map-gl/mapbox';
2
+ import { MapProps, Location } from './map.type';
3
+ import { MapVariant } from './map.constants';
4
+ export declare const useMap: (props: MapProps) => {
5
+ mapRef: import("react").RefObject<MapRef | null>;
6
+ initialViewState: {
7
+ latitude: number;
8
+ longitude: number;
9
+ zoom: number;
10
+ };
11
+ currentVariant: MapVariant;
12
+ activeLocation: Location | null;
13
+ openPopoverId: string | null;
14
+ setOpenPopoverId: import("react").Dispatch<import("react").SetStateAction<string | null>>;
15
+ mapStyle: string;
16
+ containerStyle: {
17
+ width: string;
18
+ height: string;
19
+ };
20
+ handleZoomIn: () => void;
21
+ handleZoomOut: () => void;
22
+ handleStyleChange: (newStyle: MapVariant) => void;
23
+ handlePinHover: (location: Location | null) => void;
24
+ handlePinClick: (location: Location) => void;
25
+ handlePinClickWrapper: (location: Location) => void;
26
+ handleMove: (evt: {
27
+ viewState: {
28
+ latitude: number;
29
+ longitude: number;
30
+ zoom: number;
31
+ };
32
+ }) => void;
33
+ };
@@ -0,0 +1,45 @@
1
+ import { ReactNode } from 'react';
2
+ import { MapVariant } from './map.constants';
3
+ export interface Coordinate {
4
+ lat: number;
5
+ lng: number;
6
+ }
7
+ export interface Location {
8
+ id: string;
9
+ name: string;
10
+ coordinate: Coordinate;
11
+ title: string;
12
+ description?: string;
13
+ specs?: string[];
14
+ icon?: ReactNode;
15
+ metadata?: Record<string, unknown>;
16
+ }
17
+ export type PinVariant = 'brand' | 'neutral' | 'danger' | 'success' | 'warning';
18
+ export type PinSize = 'sm' | 'md' | 'lg';
19
+ export interface MapProps {
20
+ locations: Location[];
21
+ mapboxToken?: string;
22
+ onPinClick?: (location: Location) => void;
23
+ onPinHover?: (location: Location | null) => void;
24
+ onMapMove?: (center: Coordinate, zoom: number) => void;
25
+ center?: Coordinate;
26
+ zoom?: number;
27
+ minZoom?: number;
28
+ maxZoom?: number;
29
+ variant?: MapVariant;
30
+ width?: string | number;
31
+ height?: string | number;
32
+ className?: string;
33
+ pinVariant?: PinVariant;
34
+ pinSize?: PinSize;
35
+ renderPin?: (location: Location) => ReactNode;
36
+ interactive?: boolean;
37
+ draggable?: boolean;
38
+ scrollZoom?: boolean;
39
+ showZoomControls?: boolean;
40
+ showStyleSwitcher?: boolean;
41
+ renderPopover?: (location: Location) => ReactNode;
42
+ popoverDisabled?: boolean;
43
+ fitBoundsToLocations?: boolean;
44
+ loading?: boolean;
45
+ }
@@ -0,0 +1,10 @@
1
+ import { Coordinate } from './map.type';
2
+ export declare const calculateCenter: (coordinates: Coordinate[]) => Coordinate;
3
+ export declare const calculateBounds: (coordinates: Coordinate[]) => {
4
+ north: number;
5
+ south: number;
6
+ east: number;
7
+ west: number;
8
+ center: Coordinate;
9
+ };
10
+ export declare const formatDimension: (value: string | number) => string;
@@ -31,5 +31,6 @@ export * from './components/dynamic-table';
31
31
  export * from './components/chart';
32
32
  export * from './components/chart-card';
33
33
  export * from './components/radio-card/radio-card';
34
+ export * from './components/z2map';
34
35
  export * from './lib/theme.hook';
35
36
  export * from './lib/utils';
@@ -0,0 +1,2 @@
1
+ declare const Map: () => import("react/jsx-runtime").JSX.Element;
2
+ export default Map;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ztwoint/z-ui",
3
- "version": "0.1.121",
3
+ "version": "0.1.123",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -86,6 +86,7 @@
86
86
  "@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.4",
87
87
  "@fontsource-variable/inter": "^5.2.5",
88
88
  "@heroicons/react": "^2.2.0",
89
+ "@math.gl/web-mercator": "^4.1.0",
89
90
  "@radix-ui/react-checkbox": "^1.3.2",
90
91
  "@radix-ui/react-dialog": "^1.1.14",
91
92
  "@radix-ui/react-dropdown-menu": "^2.1.15",
@@ -97,6 +98,7 @@
97
98
  "@radix-ui/react-tabs": "^1.1.12",
98
99
  "@radix-ui/react-tooltip": "^1.2.7",
99
100
  "@tanstack/react-table": "^8.21.3",
101
+ "@types/mapbox-gl": "^3.4.1",
100
102
  "class-variance-authority": "^0.7.1",
101
103
  "classnames": "^2.5.1",
102
104
  "clsx": "^2.1.1",
@@ -104,8 +106,10 @@
104
106
  "echarts": "^5.6.0",
105
107
  "echarts-for-react": "^3.0.2",
106
108
  "lucide-react": "^0.525.0",
109
+ "mapbox-gl": "^3.15.0",
107
110
  "radix-ui": "^1.4.3",
108
111
  "react-country-flag": "^3.1.0",
112
+ "react-map-gl": "^8.1.0",
109
113
  "react-router-dom": "^7.7.1",
110
114
  "react-virtuoso": "^4.14.0",
111
115
  "tailwind-merge": "^3.3.0",
@@ -115,4 +119,4 @@
115
119
  "react": "19.1.0",
116
120
  "react-dom": "19.1.0"
117
121
  }
118
- }
122
+ }