mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
395c549049
* chore: init measure * chore: out of space * refactor: Multiple render * chore: auto cut * feat: render split * fix: ellipsis logic of suffix * fix: ref missing * fix: Tooltip missing * test: snapshot * chore: opt for textarea * test: back part of ellipsis * chore: back of ellipsis logic * ellipsis logic * fix: init ellipsis measure * fix: ellipsis event * chore: clean up * test: Update snapshot * fix: test * test: Update snapshot * chore: lazy ellipsis * fix: check css ellipsis logic * test: Update snapshot * test: back of coverage * chore: clean up * test: ignore else * test: clean up
19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
import * as React from 'react';
|
|
|
|
export default function useMergedConfig<Target>(
|
|
propConfig: any,
|
|
templateConfig?: Target,
|
|
): [boolean, Target] {
|
|
return React.useMemo(() => {
|
|
const support = !!propConfig;
|
|
|
|
return [
|
|
support,
|
|
{
|
|
...templateConfig,
|
|
...(support && typeof propConfig === 'object' ? propConfig : null),
|
|
},
|
|
];
|
|
}, [propConfig]);
|
|
}
|