File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -10,5 +10,10 @@ module.exports = {
10
10
'react/sort-comp' : 0 ,
11
11
'jsx-a11y/label-has-for' : 0 ,
12
12
'jsx-a11y/label-has-associated-control' : 0 ,
13
+ '@typescript-eslint/consistent-indexed-object-style' : 0 ,
14
+ '@typescript-eslint/no-parameter-properties' : 0 ,
15
+ '@typescript-eslint/ban-types' : 0 ,
16
+ '@typescript-eslint/type-annotation-spacing' : 0 ,
17
+ '@typescript-eslint/no-throw-literal' : 0 ,
13
18
} ,
14
19
} ;
Original file line number Diff line number Diff line change 61
61
"react" : " ^18.0.0" ,
62
62
"react-dom" : " ^18.0.0" ,
63
63
"regenerator-runtime" : " ^0.14.0" ,
64
- "typescript" : " ^ 5.1.6"
64
+ "typescript" : " ~ 5.1.6"
65
65
},
66
66
"dependencies" : {
67
67
"@rc-component/motion" : " ^1.1.4" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import useEvent from '@rc-component/util/lib/hooks/useEvent';
8
8
import useId from '@rc-component/util/lib/hooks/useId' ;
9
9
import useLayoutEffect from '@rc-component/util/lib/hooks/useLayoutEffect' ;
10
10
import * as React from 'react' ;
11
- import Popup , { MobileConfig } from './Popup' ;
11
+ import Popup , { type MobileConfig } from './Popup' ;
12
12
import TriggerWrapper from './TriggerWrapper' ;
13
13
import type { TriggerContextProps } from './context' ;
14
14
import TriggerContext from './context' ;
Original file line number Diff line number Diff line change 1
- import type { CSSMotionProps } from '@rc-component/motion' ;
2
-
3
1
export type Placement =
4
2
| 'top'
5
3
| 'left'
You can’t perform that action at this time.
0 commit comments