gitextract_xrdk3epu/ ├── .babelrc ├── .eslintrc ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── assets/ │ ├── js/ │ │ ├── boilerform.js │ │ └── modules/ │ │ └── validation.js │ └── scss/ │ ├── _config.scss │ ├── _functions.scss │ ├── _helpers.scss │ ├── _reset.scss │ ├── boilerform.scss │ ├── components/ │ │ ├── _c-button.scss │ │ ├── _c-check-field.scss │ │ ├── _c-input-field.scss │ │ ├── _c-label.scss │ │ └── _c-select-field.scss │ ├── layouts/ │ │ └── _l-form.scss │ └── mixins/ │ └── _namespace.scss ├── astrum-config.json ├── dist/ │ ├── css/ │ │ └── boilerform.css │ ├── js/ │ │ └── boilerform.js │ └── markup/ │ ├── button/ │ │ └── default/ │ │ └── markup.html │ ├── check-field/ │ │ ├── checkbox/ │ │ │ └── markup.html │ │ ├── error-state/ │ │ │ └── markup.html │ │ └── radio/ │ │ └── markup.html │ ├── input-field/ │ │ ├── email/ │ │ │ └── markup.html │ │ ├── error-state/ │ │ │ └── markup.html │ │ ├── number/ │ │ │ └── markup.html │ │ ├── search/ │ │ │ └── markup.html │ │ ├── tel/ │ │ │ └── markup.html │ │ ├── text/ │ │ │ └── markup.html │ │ └── text-area/ │ │ └── markup.html │ ├── label/ │ │ └── default/ │ │ └── markup.html │ └── select-field/ │ ├── error-state/ │ │ └── markup.html │ └── select-menu/ │ └── markup.html ├── generator/ │ └── dist.js ├── package.json ├── pattern-library/ │ ├── LICENSE.txt │ ├── app/ │ │ ├── css/ │ │ │ └── styles.css │ │ └── js/ │ │ └── main.js │ ├── assets/ │ │ └── js/ │ │ └── patterns.js │ ├── components/ │ │ ├── button/ │ │ │ ├── default/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ └── description.md │ │ ├── check-field/ │ │ │ ├── checkbox/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ ├── description.md │ │ │ ├── error-state/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ └── radio/ │ │ │ ├── description.md │ │ │ └── markup.html │ │ ├── input-field/ │ │ │ ├── description.md │ │ │ ├── email/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ ├── error-state/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ ├── number/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ ├── search/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ ├── tel/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ ├── text/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ └── text-area/ │ │ │ ├── description.md │ │ │ └── markup.html │ │ ├── label/ │ │ │ ├── default/ │ │ │ │ ├── description.md │ │ │ │ └── markup.html │ │ │ └── description.md │ │ └── select-field/ │ │ ├── description.md │ │ ├── error-state/ │ │ │ ├── description.md │ │ │ └── markup.html │ │ └── select-menu/ │ │ ├── description.md │ │ └── markup.html │ ├── data.json │ └── index.html ├── readme.md └── webpack.config.js