├── .eslintrc ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── components │ ├── Button.tsx │ ├── Example.tsx │ └── FieldGroup.tsx ├── examples │ ├── CustomPositioningExample.tsx │ ├── DefaultBehaviorExample.tsx │ ├── StyledPlaceholderExample.tsx │ ├── StylingWithPropsExample.tsx │ └── TypicalUsageExample.tsx ├── index.html ├── index.tsx ├── screen-recordings │ ├── custom-positioning.gif │ ├── styled-placeholder.gif │ ├── styling-with-props.gif │ └── typical-usage.gif └── webpack.demo.js ├── index.tsx ├── package.json ├── tsconfig.json └── webpack.dist.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/README.md -------------------------------------------------------------------------------- /demo/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/components/Button.tsx -------------------------------------------------------------------------------- /demo/components/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/components/Example.tsx -------------------------------------------------------------------------------- /demo/components/FieldGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/components/FieldGroup.tsx -------------------------------------------------------------------------------- /demo/examples/CustomPositioningExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/examples/CustomPositioningExample.tsx -------------------------------------------------------------------------------- /demo/examples/DefaultBehaviorExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/examples/DefaultBehaviorExample.tsx -------------------------------------------------------------------------------- /demo/examples/StyledPlaceholderExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/examples/StyledPlaceholderExample.tsx -------------------------------------------------------------------------------- /demo/examples/StylingWithPropsExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/examples/StylingWithPropsExample.tsx -------------------------------------------------------------------------------- /demo/examples/TypicalUsageExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/examples/TypicalUsageExample.tsx -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/index.tsx -------------------------------------------------------------------------------- /demo/screen-recordings/custom-positioning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/screen-recordings/custom-positioning.gif -------------------------------------------------------------------------------- /demo/screen-recordings/styled-placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/screen-recordings/styled-placeholder.gif -------------------------------------------------------------------------------- /demo/screen-recordings/styling-with-props.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/screen-recordings/styling-with-props.gif -------------------------------------------------------------------------------- /demo/screen-recordings/typical-usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/screen-recordings/typical-usage.gif -------------------------------------------------------------------------------- /demo/webpack.demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/demo/webpack.demo.js -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/index.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihor/react-styled-floating-label/HEAD/webpack.dist.js --------------------------------------------------------------------------------