Skip to content

Commit

Permalink
chore: bump resize observer
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ committed Jan 28, 2025
1 parent 497e755 commit b35332c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@rc-component/context": "^1.4.0",
"@rc-component/util": "^1.1.0",
"classnames": "^2.2.5",
"rc-resize-observer": "^1.1.0",
"@rc-component/resize-observer": "^1.0.0",
"rc-virtual-list": "^3.14.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/Body/MeasureCell.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import ResizeObserver from 'rc-resize-observer';
import ResizeObserver from '@rc-component/resize-observer';

export interface MeasureCellProps {
columnKey: React.Key;
Expand Down
2 changes: 1 addition & 1 deletion src/Body/MeasureRow.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import ResizeObserver from 'rc-resize-observer';
import ResizeObserver from '@rc-component/resize-observer';
import MeasureCell from './MeasureCell';

export interface MeasureCellProps {
Expand Down
2 changes: 1 addition & 1 deletion src/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

import type { CompareProps } from '@rc-component/context/lib/Immutable';
import classNames from 'classnames';
import ResizeObserver from 'rc-resize-observer';
import ResizeObserver from '@rc-component/resize-observer';
import isVisible from '@rc-component/util/lib/Dom/isVisible';
import { isStyleSupport } from '@rc-component/util/lib/Dom/styleChecker';
import { getTargetScrollBarSize } from '@rc-component/util/lib/getScrollBarSize';
Expand Down

0 comments on commit b35332c

Please sign in to comment.