Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"react-is": "^18.2.0"
},
"devDependencies": {
"@rc-component/father-plugin": "^2.0.1",
"@rc-component/father-plugin": "^2.2.0",
"@rc-component/np": "^1.0.3",
"@testing-library/react": "^16.0.0",
"@types/jest": "^30.0.0",
Expand Down
6 changes: 5 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export {
export { default as canUseDom } from './Dom/canUseDom';
export { default as contains } from './Dom/contains';
export { injectCSS, removeCSS, updateCSS } from './Dom/dynamicCSS';
export type { Prepend } from './Dom/dynamicCSS';
export { getDOM, isDOM } from './Dom/findDOMNode';
export {
getFocusNodeList,
Expand All @@ -46,13 +47,16 @@ export { default as pickAttrs } from './pickAttrs';
export { default as proxyObject } from './proxyObject';
export { default as raf } from './raf';
export { default as toArray } from './Children/toArray';
export type { Option as ToArrayOptions } from './Children/toArray';
export { default as mergeProps } from './mergeProps';

export { default as get } from './utils/get';
export { default as set, merge, mergeWith } from './utils/set';

export { default as warning, noteOnce } from './warning';
export { default as warning, noteOnce, resetWarned } from './warning';

export { render, unmount } from './React/render';
export { spyElementPrototype, spyElementPrototypes } from './test/domHook';
export { default as Portal } from './Portal';
export type { PortalProps, PortalRef } from './Portal';
export type { GetContainer } from './PortalWrapper';
Loading