mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 09:26:06 +08:00
chore: remove useless tsx support (#39890)
* chore: remove useless tsx support * add * add * style * fix lint * fix lint * fix lint * update locale entry * update locale entry * update locale entry * delete useless style
This commit is contained in:
parent
1a3ee035da
commit
9aec72c395
@ -5,6 +5,7 @@ export const groupKeysMap = (keys: string[]) => {
|
|||||||
});
|
});
|
||||||
return map;
|
return map;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const groupDisabledKeysMap = <RecordType extends any[]>(dataSource: RecordType) => {
|
export const groupDisabledKeysMap = <RecordType extends any[]>(dataSource: RecordType) => {
|
||||||
const map = new Map<string, number>();
|
const map = new Map<string, number>();
|
||||||
dataSource.forEach(({ disabled, key }, index) => {
|
dataSource.forEach(({ disabled, key }, index) => {
|
||||||
|
@ -16,11 +16,7 @@ export interface CarouselProps extends Omit<Settings, 'dots' | 'dotsClass'> {
|
|||||||
slickGoTo?: number;
|
slickGoTo?: number;
|
||||||
dotPosition?: DotPosition;
|
dotPosition?: DotPosition;
|
||||||
children?: React.ReactNode;
|
children?: React.ReactNode;
|
||||||
dots?:
|
dots?: boolean | { className?: string };
|
||||||
| boolean
|
|
||||||
| {
|
|
||||||
className?: string;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CarouselRef {
|
export interface CarouselRef {
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user