├── .dumi ├── app.tsx └── tsconfig.json ├── .dumirc.ts ├── .editorconfig ├── .eslintrc.js ├── .fatherrc.js ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── react-component-ci.yml │ └── site-deploy.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── boostrap │ └── anim.less ├── bootstrap.less └── bootstrap_white.less ├── docs ├── changelog.md ├── demo │ ├── arrowContent.md │ ├── formError.md │ ├── onVisibleChange.md │ ├── placement.md │ ├── point.md │ ├── showArrow.md │ ├── simple.md │ └── twoButtons.md ├── examples │ ├── arrowContent.tsx │ ├── formError.tsx │ ├── onVisibleChange.tsx │ ├── placement.tsx │ ├── point.tsx │ ├── showArrow.tsx │ ├── simple.tsx │ └── twoButtons.tsx └── index.md ├── package.json ├── src ├── Popup.tsx ├── Tooltip.tsx ├── index.tsx └── placements.tsx ├── tests ├── __mocks__ │ └── @rc-component │ │ └── trigger.js ├── index.test.tsx ├── popup.test.tsx └── setup.js ├── tsconfig.json ├── type.d.ts └── vercel.json /.dumi/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.dumi/app.tsx -------------------------------------------------------------------------------- /.dumi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.dumi/tsconfig.json -------------------------------------------------------------------------------- /.dumirc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.dumirc.ts -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.fatherrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.fatherrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/react-component-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.github/workflows/react-component-ci.yml -------------------------------------------------------------------------------- /.github/workflows/site-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.github/workflows/site-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/README.md -------------------------------------------------------------------------------- /assets/boostrap/anim.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/assets/boostrap/anim.less -------------------------------------------------------------------------------- /assets/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/assets/bootstrap.less -------------------------------------------------------------------------------- /assets/bootstrap_white.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/assets/bootstrap_white.less -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/demo/arrowContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/demo/arrowContent.md -------------------------------------------------------------------------------- /docs/demo/formError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/demo/formError.md -------------------------------------------------------------------------------- /docs/demo/onVisibleChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/demo/onVisibleChange.md -------------------------------------------------------------------------------- /docs/demo/placement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/demo/placement.md -------------------------------------------------------------------------------- /docs/demo/point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/demo/point.md -------------------------------------------------------------------------------- /docs/demo/showArrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/demo/showArrow.md -------------------------------------------------------------------------------- /docs/demo/simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/demo/simple.md -------------------------------------------------------------------------------- /docs/demo/twoButtons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/demo/twoButtons.md -------------------------------------------------------------------------------- /docs/examples/arrowContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/examples/arrowContent.tsx -------------------------------------------------------------------------------- /docs/examples/formError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/examples/formError.tsx -------------------------------------------------------------------------------- /docs/examples/onVisibleChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/examples/onVisibleChange.tsx -------------------------------------------------------------------------------- /docs/examples/placement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/examples/placement.tsx -------------------------------------------------------------------------------- /docs/examples/point.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/examples/point.tsx -------------------------------------------------------------------------------- /docs/examples/showArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/examples/showArrow.tsx -------------------------------------------------------------------------------- /docs/examples/simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/examples/simple.tsx -------------------------------------------------------------------------------- /docs/examples/twoButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/examples/twoButtons.tsx -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/docs/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/package.json -------------------------------------------------------------------------------- /src/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/src/Popup.tsx -------------------------------------------------------------------------------- /src/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/src/Tooltip.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/placements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/src/placements.tsx -------------------------------------------------------------------------------- /tests/__mocks__/@rc-component/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/tests/__mocks__/@rc-component/trigger.js -------------------------------------------------------------------------------- /tests/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/tests/index.test.tsx -------------------------------------------------------------------------------- /tests/popup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/tests/popup.test.tsx -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/tests/setup.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/tsconfig.json -------------------------------------------------------------------------------- /type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/type.d.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/tooltip/HEAD/vercel.json --------------------------------------------------------------------------------