@kubit-ui-web/react-charts 1.3.0 → 1.4.0

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 (53) hide show
  1. package/dist/types/charts/barChart/barChart.d.ts +5 -5
  2. package/dist/types/charts/barChart/barChart.type.d.ts +1 -1
  3. package/dist/types/charts/barChart/context/barChartContext.d.ts +1 -1
  4. package/dist/types/charts/barChart/fragments/barChartSeparator.d.ts +1 -1
  5. package/dist/types/charts/barChart/fragments/barChartXAxis.d.ts +1 -1
  6. package/dist/types/charts/barChart/fragments/barChartYAxis.d.ts +1 -1
  7. package/dist/types/charts/lineChart/context/lineChartContext.d.ts +1 -1
  8. package/dist/types/charts/lineChart/fragments/lineChartPath.d.ts +1 -1
  9. package/dist/types/charts/lineChart/fragments/lineChartProjection.d.ts +1 -1
  10. package/dist/types/charts/lineChart/fragments/lineChartSeparator.d.ts +1 -1
  11. package/dist/types/charts/lineChart/fragments/lineChartXAxis.d.ts +1 -1
  12. package/dist/types/charts/lineChart/lineChart.d.ts +5 -5
  13. package/dist/types/charts/lineChart/lineChart.type.d.ts +1 -1
  14. package/dist/types/charts/lineChart/lineChartStructure.d.ts +1 -1
  15. package/dist/types/charts/pieChart/context/pieChartContext.d.ts +1 -1
  16. package/dist/types/charts/pieChart/fragments/pieChartForeign.d.ts +1 -1
  17. package/dist/types/charts/pieChart/fragments/pieChartPath.d.ts +1 -1
  18. package/dist/types/charts/pieChart/pieChart.d.ts +3 -3
  19. package/dist/types/charts/pieChart/pieChart.type.d.ts +1 -1
  20. package/dist/types/charts/pieChart/pieChartStructure.d.ts +1 -1
  21. package/dist/types/components/axisChart/xAxis/xAxis.d.ts +1 -1
  22. package/dist/types/components/axisChart/yAxis/yAxis.d.ts +1 -1
  23. package/dist/types/components/bar/bar.d.ts +1 -1
  24. package/dist/types/components/bar/fragments/barChartSegment.d.ts +1 -1
  25. package/dist/types/components/chartText/chartText.d.ts +1 -1
  26. package/dist/types/components/foreignObject/foreignObject.d.ts +1 -1
  27. package/dist/types/components/foreignObject/foreignObject.types.d.ts +1 -1
  28. package/dist/types/components/line/line.d.ts +1 -1
  29. package/dist/types/components/node/components/circle/circle.d.ts +1 -1
  30. package/dist/types/components/node/components/hexagon/hexagon.d.ts +1 -1
  31. package/dist/types/components/node/components/pentagon/pentagon.d.ts +1 -1
  32. package/dist/types/components/node/components/square/square.d.ts +1 -1
  33. package/dist/types/components/node/components/star/star.d.ts +1 -1
  34. package/dist/types/components/node/components/straight/straight.d.ts +1 -1
  35. package/dist/types/components/node/components/triangle/triangle.d.ts +1 -1
  36. package/dist/types/components/node/node.d.ts +1 -1
  37. package/dist/types/components/path/components/nodePath/nodePath.d.ts +2 -2
  38. package/dist/types/components/path/path.d.ts +1 -1
  39. package/dist/types/components/path/path.types.d.ts +1 -1
  40. package/dist/types/components/plot/components/circle/circle.d.ts +1 -1
  41. package/dist/types/components/plot/components/square/square.d.ts +1 -1
  42. package/dist/types/components/plot/components/triangle/triangle.d.ts +1 -1
  43. package/dist/types/components/plot/plot.d.ts +1 -1
  44. package/dist/types/components/svgContainer/svgContainer.d.ts +1 -1
  45. package/dist/types/components/tick/tick.d.ts +1 -1
  46. package/dist/types/components/zoomArea/components/HandlerIcon.d.ts +1 -1
  47. package/dist/types/components/zoomArea/components/LineRenderer.d.ts +1 -1
  48. package/dist/types/components/zoomArea/components/SelectionArea.d.ts +1 -1
  49. package/dist/types/components/zoomArea/components/ZoomHandler.d.ts +1 -1
  50. package/dist/types/hooks/useFocus/useFocus.types.d.ts +1 -1
  51. package/dist/types/hooks/useHover/useHover.types.d.ts +1 -1
  52. package/dist/types/utils/getChildrenAttr/getChildrenAttr.d.ts +1 -1
  53. package/package.json +6 -4
@@ -1,8 +1,8 @@
1
- declare const BarChart: import('react').FC<import('./barChart.type').BarChartProps> & {
2
- Path: import('react').FC<import('./barChart.type').BarChartPathProps>;
3
- Separator: import('react').FC<import('./barChart.type').BarChartSeparatorProps>;
4
- XAxis: import('react').FC<import('./barChart.type').BarChartXAxisProps>;
5
- YAxis: import('react').FC<import('./barChart.type').BarChartYAxisProps>;
1
+ declare const BarChart: import('../../../node_modules/react').FC<import('./barChart.type').BarChartProps> & {
2
+ Path: import('../../../node_modules/react').FC<import('./barChart.type').BarChartPathProps>;
3
+ Separator: import('../../../node_modules/react').FC<import('./barChart.type').BarChartSeparatorProps>;
4
+ XAxis: import('../../../node_modules/react').FC<import('./barChart.type').BarChartXAxisProps>;
5
+ YAxis: import('../../../node_modules/react').FC<import('./barChart.type').BarChartYAxisProps>;
6
6
  };
7
7
  export { BarChart };
8
8
  export * from './barChart.type';
@@ -1,4 +1,4 @@
1
- import { ReactElement, ReactNode } from 'react';
1
+ import { ReactElement, ReactNode } from '../../../node_modules/react';
2
2
  import { XAxisProps } from '../../components/axisChart/xAxis/xAxis.types';
3
3
  import { YAxisProps } from '../../components/axisChart/yAxis/yAxis.types';
4
4
  import { BarChartStyles, BarOrientation } from '../../components/bar/bar.type';
@@ -1,3 +1,3 @@
1
1
  import { BarChartContextType } from '../barChart.type';
2
- export declare const BarChartContext: import('react').Context<BarChartContextType>;
2
+ export declare const BarChartContext: import('../../../../node_modules/react').Context<BarChartContextType>;
3
3
  //# sourceMappingURL=barChartContext.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { BarChartSeparatorProps } from '../barChart.type';
3
3
  export declare const BarChartSeparator: FC<BarChartSeparatorProps>;
4
4
  //# sourceMappingURL=barChartSeparator.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { BarChartXAxisProps } from '../barChart.type';
3
3
  export declare const BarChartXAxis: FC<BarChartXAxisProps>;
4
4
  //# sourceMappingURL=barChartXAxis.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { BarChartYAxisProps } from '../barChart.type';
3
3
  export declare const BarChartYAxis: FC<BarChartYAxisProps>;
4
4
  //# sourceMappingURL=barChartYAxis.d.ts.map
@@ -1,3 +1,3 @@
1
1
  import { LineChartContextType } from '../lineChart.type';
2
- export declare const LineChartContext: import('react').Context<LineChartContextType>;
2
+ export declare const LineChartContext: import('../../../../node_modules/react').Context<LineChartContextType>;
3
3
  //# sourceMappingURL=lineChartContext.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { LineChartPathProps } from '../lineChart.type';
3
3
  export declare const LineChartPath: FC<LineChartPathProps>;
4
4
  //# sourceMappingURL=lineChartPath.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { LineChartProjectionProps } from '../lineChart.type';
3
3
  export declare const LineChartProjection: FC<LineChartProjectionProps>;
4
4
  //# sourceMappingURL=lineChartProjection.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { LineChartSeparatorProps } from '../lineChart.type';
3
3
  export declare const LineChartSeparator: FC<LineChartSeparatorProps>;
4
4
  //# sourceMappingURL=lineChartSeparator.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { LineChartXAxisProps } from '../lineChart.type';
3
3
  export declare const LineChartXAxis: FC<LineChartXAxisProps>;
4
4
  //# sourceMappingURL=lineChartXAxis.d.ts.map
@@ -1,8 +1,8 @@
1
- declare const LineChart: import('react').FC<import('./lineChart.type').LineChartProps> & {
2
- Path: import('react').FC<import('./lineChart.type').LineChartPathProps>;
3
- Separator: import('react').FC<import('./lineChart.type').LineChartSeparatorProps>;
4
- XAxis: import('react').FC<import('./lineChart.type').LineChartXAxisProps>;
5
- YAxis: import('react').FC<import('./lineChart.type').LineChartYAxisProps>;
1
+ declare const LineChart: import('../../../node_modules/react').FC<import('./lineChart.type').LineChartProps> & {
2
+ Path: import('../../../node_modules/react').FC<import('./lineChart.type').LineChartPathProps>;
3
+ Separator: import('../../../node_modules/react').FC<import('./lineChart.type').LineChartSeparatorProps>;
4
+ XAxis: import('../../../node_modules/react').FC<import('./lineChart.type').LineChartXAxisProps>;
5
+ YAxis: import('../../../node_modules/react').FC<import('./lineChart.type').LineChartYAxisProps>;
6
6
  };
7
7
  export { LineChart };
8
8
  export * from './lineChart.type';
@@ -1,4 +1,4 @@
1
- import { ReactElement, ReactNode } from 'react';
1
+ import { ReactElement, ReactNode } from '../../../node_modules/react';
2
2
  import { XAxisProps } from '../../components/axisChart/xAxis/xAxis.types';
3
3
  import { YAxisProps } from '../../components/axisChart/yAxis/yAxis.types';
4
4
  import { LineProps } from '../../components/line/line.types';
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../node_modules/react';
2
2
  import { LineChartProps } from './lineChart.type';
3
3
  /**
4
4
  * Renders a line chart component.
@@ -1,3 +1,3 @@
1
1
  import { PieChartContextType } from '../pieChart.type';
2
- export declare const PieChartContext: import('react').Context<PieChartContextType>;
2
+ export declare const PieChartContext: import('../../../../node_modules/react').Context<PieChartContextType>;
3
3
  //# sourceMappingURL=pieChartContext.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { ForeignObjectProps } from '../../../components/foreignObject/foreignObject.types';
3
3
  export declare const PieChartForeign: FC<ForeignObjectProps>;
4
4
  //# sourceMappingURL=pieChartForeign.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { PathProps } from '../../../components/path/path.types';
3
3
  /**
4
4
  * Renders the path for a pie chart.
@@ -1,6 +1,6 @@
1
- declare const PieChart: import('react').FC<import('./pieChart.type').PieChartProps> & {
2
- Foreign: import('react').FC<import('../..').ForeignObjectProps>;
3
- Path: import('react').FC<import('../..').PathProps>;
1
+ declare const PieChart: import('../../../node_modules/react').FC<import('./pieChart.type').PieChartProps> & {
2
+ Foreign: import('../../../node_modules/react').FC<import('../..').ForeignObjectProps>;
3
+ Path: import('../../../node_modules/react').FC<import('../..').PathProps>;
4
4
  };
5
5
  export { PieChart };
6
6
  export * from './pieChart.type';
@@ -1,4 +1,4 @@
1
- import { ReactElement, ReactNode } from 'react';
1
+ import { ReactElement, ReactNode } from '../../../node_modules/react';
2
2
  import { PathProps } from '../../components/path/path.types';
3
3
  import { CanvasConfig } from '../../types/canvas.type';
4
4
  interface Group {
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../node_modules/react';
2
2
  import { PieChartProps } from './pieChart.type';
3
3
  /**
4
4
  * Renders a pie chart component.
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { XAxisProps } from './xAxis.types';
3
3
  /**
4
4
  * Renders the X-axis of a chart, including tick marks and labels.
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  import { YAxisProps } from './yAxis.types';
3
3
  /**
4
4
  * Renders a Y-axis for a chart, including tick marks and labels.
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../node_modules/react';
2
2
  import { BarProps } from './bar.type';
3
3
  export declare const Bar: FC<BarProps>;
4
4
  //# sourceMappingURL=bar.d.ts.map
@@ -1,3 +1,3 @@
1
- import { ReactElement } from 'react';
1
+ import { ReactElement } from '../../../../node_modules/react';
2
2
  export declare const BarChartSegment: () => ReactElement;
3
3
  //# sourceMappingURL=barChartSegment.d.ts.map
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../node_modules/react';
2
2
  import { ChartTextProps } from './chartText.types';
3
3
  /**
4
4
  * Functional component for rendering SVG text elements in React.
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../node_modules/react';
2
2
  import { ForeignObjectProps } from './foreignObject.types';
3
3
  export declare const ForeignObject: FC<ForeignObjectProps>;
4
4
  //# sourceMappingURL=foreignObject.d.ts.map
@@ -1,4 +1,4 @@
1
- import { ReactNode } from 'react';
1
+ import { ReactNode } from '../../../node_modules/react';
2
2
  export interface ForeignObjectProps {
3
3
  children?: ReactNode;
4
4
  width?: string | number;
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../node_modules/react';
2
2
  import { LineProps } from './line.types';
3
3
  /**
4
4
  * `Line` component that renders an SVG line element with customizable properties.
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { NodeProps } from '../../node.types';
3
3
  export declare const Circle: (props: NodeProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { NodeProps } from '../../node.types';
3
3
  export declare const Hexagon: (props: NodeProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { NodeProps } from '../../node.types';
3
3
  export declare const Pentagon: (props: NodeProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { NodeProps } from '../../node.types';
3
3
  export declare const Square: (props: NodeProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { NodeProps } from '../../node.types';
3
3
  export declare const Star: (props: NodeProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { NodeProps } from '../../node.types';
3
3
  export declare const Straight: (props: NodeProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { NodeProps } from '../../node.types';
3
3
  export declare const Triangle: (props: NodeProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../node_modules/react';
2
2
  import { NodeProps } from './node.types';
3
3
  export declare const Node: (props: NodeProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,5 +1,5 @@
1
1
  import { NodePathProps } from '../../path.types';
2
- export declare const NodePath: import('react').ForwardRefExoticComponent<{
2
+ export declare const NodePath: import('../../../../../node_modules/react').ForwardRefExoticComponent<{
3
3
  nodeConfig?: NodePathProps;
4
4
  data?: {
5
5
  index?: number;
@@ -10,5 +10,5 @@ export declare const NodePath: import('react').ForwardRefExoticComponent<{
10
10
  x: number;
11
11
  y: number;
12
12
  tabIndex?: number;
13
- } & import('react').RefAttributes<SVGSVGElement>>;
13
+ } & import('../../../../../node_modules/react').RefAttributes<SVGSVGElement>>;
14
14
  //# sourceMappingURL=nodePath.d.ts.map
@@ -1,3 +1,3 @@
1
1
  import { PathProps } from './path.types';
2
- export declare const Path: import('react').ForwardRefExoticComponent<PathProps & import('react').RefAttributes<unknown>>;
2
+ export declare const Path: import('../../../node_modules/react').ForwardRefExoticComponent<PathProps & import('../../../node_modules/react').RefAttributes<unknown>>;
3
3
  //# sourceMappingURL=path.d.ts.map
@@ -1,4 +1,4 @@
1
- import { AriaAttributes } from 'react';
1
+ import { AriaAttributes } from '../../../node_modules/react';
2
2
  import { ShadowSvgConfig } from '../../utils/shadowSvg/shadowSvg.types';
3
3
  import { NodeProps } from '../node/node.types';
4
4
  interface IDataPoint {
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { PlotShapeProps } from '../../plot.types';
3
3
  export declare const Circle: (props: PlotShapeProps & {
4
4
  ref?: ForwardedRef<SVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { PlotShapeProps } from '../../plot.types';
3
3
  export declare const Square: (props: PlotShapeProps & {
4
4
  ref?: ForwardedRef<SVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../../../node_modules/react';
2
2
  import { PlotShapeProps } from '../../plot.types';
3
3
  export declare const Triangle: (props: PlotShapeProps & {
4
4
  ref?: ForwardedRef<SVGElement>;
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../node_modules/react';
2
2
  import { PlotProps } from './plot.types';
3
3
  /**
4
4
  * `Plot` component which renders an interactive point in a chart with hover effects and accessibility features.
@@ -1,4 +1,4 @@
1
- import { ForwardedRef } from 'react';
1
+ import { ForwardedRef } from '../../../node_modules/react';
2
2
  import { SvgContainerProps } from './svgContainer.types';
3
3
  export declare const SvgContainer: (props: SvgContainerProps & {
4
4
  ref?: ForwardedRef<SVGSVGElement>;
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../node_modules/react';
2
2
  import { TickProps } from './tick.types';
3
3
  /**
4
4
  * Functional component for rendering a tick mark in a chart or graph.
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  /**
3
3
  * Props for the HandlerIcon component
4
4
  */
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { FC } from '../../../../node_modules/react';
2
2
  /**
3
3
  * Line data for rendering
4
4
  */
@@ -1,4 +1,4 @@
1
- import { FC, KeyboardEvent, MouseEvent, TouchEvent } from 'react';
1
+ import { FC, KeyboardEvent, MouseEvent, TouchEvent } from '../../../../node_modules/react';
2
2
  import { FocusConfig } from '../../../types/focusConfig.type';
3
3
  import { ZoomAreaSelectionConfig, ZoomRange } from '../zoomArea.type';
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { KeyboardEvent, MouseEvent, TouchEvent } from 'react';
1
+ import { KeyboardEvent, MouseEvent, TouchEvent } from '../../../../node_modules/react';
2
2
  import { FocusConfig } from '../../../types/focusConfig.type';
3
3
  import { ZoomAreaElements, ZoomAreaHandlerConfig } from '../zoomArea.type';
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { FocusEvent } from 'react';
1
+ import { FocusEvent } from '../../../node_modules/react';
2
2
  /**
3
3
  * Defines a generic focus event handler function type.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { MouseEvent } from 'react';
1
+ import { MouseEvent } from '../../../node_modules/react';
2
2
  /**
3
3
  * Defines a generic hover event handler function type.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { ReactNode } from 'react';
1
+ import { ReactNode } from '../../../node_modules/react';
2
2
  interface GetChildrenAttrProps {
3
3
  attrName: string;
4
4
  originalValue: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubit-ui-web/react-charts",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "private": false,
5
5
  "main": "dist/kubit-ui-web-react-charts.cjs.js",
6
6
  "module": "dist/kubit-ui-web-react-charts.es.js",
@@ -110,7 +110,8 @@
110
110
  "vitest": "vitest",
111
111
  "vitest-report": "vitest --ui --coverage.enabled=true",
112
112
  "vitest:watch": "vitest - watch",
113
- "dist:all": "yarn run vite build"
113
+ "dist:all": "yarn run vite build",
114
+ "chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
114
115
  },
115
116
  "repository": {
116
117
  "type": "git",
@@ -158,6 +159,7 @@
158
159
  "@storybook/addon-a11y": "10.0.7",
159
160
  "@storybook/addon-coverage": "3.0.0",
160
161
  "@storybook/addon-designs": "11.0.1",
162
+ "@storybook/addon-docs": "10.0.7",
161
163
  "@storybook/addon-links": "10.0.7",
162
164
  "@storybook/addon-themes": "10.0.7",
163
165
  "@storybook/react-vite": "10.0.7",
@@ -177,6 +179,7 @@
177
179
  "@vitest/coverage-v8": "^4.0.9",
178
180
  "@vitest/ui": "^4.0.9",
179
181
  "add": "^2.0.6",
182
+ "chromatic": "^13.3.3",
180
183
  "cpy-cli": "^6.0.0",
181
184
  "eslint": "^9.39.1",
182
185
  "eslint-config-kubit": "1.2.0",
@@ -211,8 +214,7 @@
211
214
  "vitest": "^4.0.9",
212
215
  "vitest-axe": "^0.1.0",
213
216
  "yarn": "^1.22.22",
214
- "yarn-deduplicate": "^6.0.2",
215
- "@storybook/addon-docs": "10.0.7"
217
+ "yarn-deduplicate": "^6.0.2"
216
218
  },
217
219
  "dependencies": {
218
220
  "react": "18.3.1",