Skip to content

Commit

Permalink
chore: bump util & father plugin (#298)
Browse files Browse the repository at this point in the history
* chore: bump util

* chore: bump father plugin
  • Loading branch information
zombieJ authored Jan 16, 2025
1 parent 7f2e8f5 commit 0119e2a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rc-segmented",
"version": "2.7.0",
"name": "@rc-component/segmented",
"version": "1.0.0-1",
"description": "React segmented controls used in ant.design",
"keywords": [
"react",
Expand Down Expand Up @@ -49,10 +49,10 @@
"@babel/runtime": "^7.11.1",
"classnames": "^2.2.1",
"rc-motion": "^2.4.4",
"rc-util": "^5.17.0"
"@rc-component/util": "^1.1.0"
},
"devDependencies": {
"@rc-component/father-plugin": "^1.0.1",
"@rc-component/father-plugin": "^2.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
Expand Down
4 changes: 2 additions & 2 deletions src/MotionThumb.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import useLayoutEffect from '@rc-component/util/lib/hooks/useLayoutEffect';
import { composeRef } from '@rc-component/util/lib/ref';
import classNames from 'classnames';
import CSSMotion from 'rc-motion';
import useLayoutEffect from 'rc-util/lib/hooks/useLayoutEffect';
import { composeRef } from 'rc-util/lib/ref';
import * as React from 'react';
import type { SegmentedValue } from '.';

Expand Down
6 changes: 3 additions & 3 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import useMergedState from '@rc-component/util/lib/hooks/useMergedState';
import omit from '@rc-component/util/lib/omit';
import { composeRef } from '@rc-component/util/lib/ref';
import classNames from 'classnames';
import useMergedState from 'rc-util/lib/hooks/useMergedState';
import omit from 'rc-util/lib/omit';
import { composeRef } from 'rc-util/lib/ref';
import * as React from 'react';

import MotionThumb from './MotionThumb';
Expand Down

0 comments on commit 0119e2a

Please sign in to comment.