├── .gitignore ├── LICENSE ├── README.md ├── demo ├── bind.html ├── call.html ├── cond-required.html ├── css │ └── demo.css ├── dialog.html ├── group-required.html ├── message.html ├── required.html └── rules.html ├── dist ├── cxvalidation.es.js ├── cxvalidation.js └── cxvalidation.min.js ├── index.html ├── package.json ├── rollup.config.js └── src └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/README.md -------------------------------------------------------------------------------- /demo/bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/bind.html -------------------------------------------------------------------------------- /demo/call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/call.html -------------------------------------------------------------------------------- /demo/cond-required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/cond-required.html -------------------------------------------------------------------------------- /demo/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/css/demo.css -------------------------------------------------------------------------------- /demo/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/dialog.html -------------------------------------------------------------------------------- /demo/group-required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/group-required.html -------------------------------------------------------------------------------- /demo/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/message.html -------------------------------------------------------------------------------- /demo/required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/required.html -------------------------------------------------------------------------------- /demo/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/demo/rules.html -------------------------------------------------------------------------------- /dist/cxvalidation.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/dist/cxvalidation.es.js -------------------------------------------------------------------------------- /dist/cxvalidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/dist/cxvalidation.js -------------------------------------------------------------------------------- /dist/cxvalidation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/dist/cxvalidation.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaoca/cxValidation/HEAD/src/index.js --------------------------------------------------------------------------------