├── .gitignore ├── LICENSE ├── README.md ├── demo ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── FormListDemo.tsx │ ├── UseFormDemo.jsx │ ├── assets │ │ └── react.svg │ ├── data.js │ ├── index.css │ └── main.jsx └── vite.config.js ├── image.png ├── package.json ├── rollup.config.js ├── src ├── component │ ├── FloatAutoComplete │ │ ├── index.css │ │ └── index.tsx │ ├── FloatCascader │ │ └── index.tsx │ ├── FloatDatePicker │ │ ├── index.css │ │ └── index.tsx │ ├── FloatFormItem │ │ └── index.tsx │ ├── FloatInput │ │ └── index.tsx │ ├── FloatInputNumber │ │ ├── index.css │ │ └── index.tsx │ ├── FloatItemList │ │ ├── FloatItemListProvider.tsx │ │ └── index.tsx │ ├── FloatPassword │ │ ├── index.css │ │ └── index.tsx │ ├── FloatRangePicker │ │ ├── index.css │ │ └── index.tsx │ ├── FloatSelect │ │ ├── index.css │ │ └── index.tsx │ ├── FloatTimePicker │ │ └── index.tsx │ ├── FloatTreeSelect │ │ └── index.tsx │ └── FloattingLabelBox │ │ ├── index.css │ │ └── index.tsx ├── hook │ └── useValueHandle.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | /pnpm-lock.yaml 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/README.md -------------------------------------------------------------------------------- /demo/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/.eslintrc.cjs -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/public/vite.svg -------------------------------------------------------------------------------- /demo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/src/App.css -------------------------------------------------------------------------------- /demo/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/src/App.jsx -------------------------------------------------------------------------------- /demo/src/FormListDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/src/FormListDemo.tsx -------------------------------------------------------------------------------- /demo/src/UseFormDemo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/src/UseFormDemo.jsx -------------------------------------------------------------------------------- /demo/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/src/assets/react.svg -------------------------------------------------------------------------------- /demo/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/src/data.js -------------------------------------------------------------------------------- /demo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/src/index.css -------------------------------------------------------------------------------- /demo/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/src/main.jsx -------------------------------------------------------------------------------- /demo/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/demo/vite.config.js -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/image.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/component/FloatAutoComplete/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatAutoComplete/index.css -------------------------------------------------------------------------------- /src/component/FloatAutoComplete/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatAutoComplete/index.tsx -------------------------------------------------------------------------------- /src/component/FloatCascader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatCascader/index.tsx -------------------------------------------------------------------------------- /src/component/FloatDatePicker/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatDatePicker/index.css -------------------------------------------------------------------------------- /src/component/FloatDatePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatDatePicker/index.tsx -------------------------------------------------------------------------------- /src/component/FloatFormItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatFormItem/index.tsx -------------------------------------------------------------------------------- /src/component/FloatInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatInput/index.tsx -------------------------------------------------------------------------------- /src/component/FloatInputNumber/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatInputNumber/index.css -------------------------------------------------------------------------------- /src/component/FloatInputNumber/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatInputNumber/index.tsx -------------------------------------------------------------------------------- /src/component/FloatItemList/FloatItemListProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatItemList/FloatItemListProvider.tsx -------------------------------------------------------------------------------- /src/component/FloatItemList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatItemList/index.tsx -------------------------------------------------------------------------------- /src/component/FloatPassword/index.css: -------------------------------------------------------------------------------- 1 | .ant-float-label-form-input-password{ 2 | position: static !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/component/FloatPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatPassword/index.tsx -------------------------------------------------------------------------------- /src/component/FloatRangePicker/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatRangePicker/index.css -------------------------------------------------------------------------------- /src/component/FloatRangePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatRangePicker/index.tsx -------------------------------------------------------------------------------- /src/component/FloatSelect/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatSelect/index.css -------------------------------------------------------------------------------- /src/component/FloatSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatSelect/index.tsx -------------------------------------------------------------------------------- /src/component/FloatTimePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatTimePicker/index.tsx -------------------------------------------------------------------------------- /src/component/FloatTreeSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloatTreeSelect/index.tsx -------------------------------------------------------------------------------- /src/component/FloattingLabelBox/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloattingLabelBox/index.css -------------------------------------------------------------------------------- /src/component/FloattingLabelBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/component/FloattingLabelBox/index.tsx -------------------------------------------------------------------------------- /src/hook/useValueHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/hook/useValueHandle.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razr001/ant-float-label/HEAD/tsconfig.json --------------------------------------------------------------------------------