gitextract_94viukuh/ ├── .babelrc ├── .editorconfig ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── docs/ │ ├── CNAME │ ├── assets/ │ │ ├── css/ │ │ │ ├── app.css │ │ │ ├── guide.css │ │ │ ├── header.css │ │ │ ├── highlight.css │ │ │ ├── index.css │ │ │ ├── normalize.css │ │ │ ├── table.css │ │ │ └── variables.css │ │ └── js/ │ │ ├── add-preview-buttons.js │ │ ├── index.js │ │ └── landing-text-rotater.js │ ├── docs/ │ │ └── index.html │ ├── guides/ │ │ └── index.html │ └── index.html ├── docs-src/ │ ├── assets/ │ │ ├── css/ │ │ │ ├── app.styl │ │ │ ├── guide.styl │ │ │ ├── header.styl │ │ │ ├── highlight.styl │ │ │ ├── index.styl │ │ │ ├── normalize.styl │ │ │ ├── table.styl │ │ │ └── variables.styl │ │ └── js/ │ │ ├── add-preview-buttons.js │ │ ├── index.js │ │ └── landing-text-rotater.js │ ├── docs/ │ │ └── index.md │ ├── guides/ │ │ └── index.md │ ├── index.hbs │ ├── layout-docs.hbs │ ├── layout-guides.hbs │ └── layout.hbs ├── package.json ├── postcss.config.js ├── src/ │ ├── core.ts │ ├── css/ │ │ ├── button-loader.css │ │ ├── buttons.css │ │ ├── content.css │ │ ├── icons/ │ │ │ ├── error.css │ │ │ ├── info.css │ │ │ ├── success.css │ │ │ └── warning.css │ │ ├── icons.css │ │ └── text.css │ ├── modules/ │ │ ├── actions.ts │ │ ├── class-list/ │ │ │ └── index.ts │ │ ├── event-listeners.ts │ │ ├── init/ │ │ │ ├── buttons.ts │ │ │ ├── content.ts │ │ │ ├── icon.ts │ │ │ ├── index.ts │ │ │ ├── modal.ts │ │ │ ├── overlay.ts │ │ │ └── text.ts │ │ ├── markup/ │ │ │ ├── buttons.ts │ │ │ ├── content.ts │ │ │ ├── icons.ts │ │ │ ├── index.ts │ │ │ ├── modal.ts │ │ │ └── overlay.ts │ │ ├── options/ │ │ │ ├── buttons.ts │ │ │ ├── content.ts │ │ │ ├── deprecations.ts │ │ │ └── index.ts │ │ ├── state.ts │ │ └── utils.ts │ ├── polyfills.js │ ├── sweetalert.css │ ├── sweetalert.d.ts │ └── sweetalert.js ├── test/ │ ├── actions.test.ts │ ├── button-options.test.ts │ ├── buttons.test.ts │ ├── content.test.ts │ ├── icons.test.ts │ ├── index.test.ts │ └── utils.ts ├── tsconfig.json ├── tslint.json ├── typings/ │ ├── core.d.ts │ ├── modules/ │ │ ├── actions.d.ts │ │ ├── class-list/ │ │ │ └── index.d.ts │ │ ├── event-listeners.d.ts │ │ ├── init/ │ │ │ ├── buttons.d.ts │ │ │ ├── content.d.ts │ │ │ ├── icon.d.ts │ │ │ ├── index.d.ts │ │ │ ├── modal.d.ts │ │ │ ├── overlay.d.ts │ │ │ └── text.d.ts │ │ ├── markup/ │ │ │ ├── buttons.d.ts │ │ │ ├── content.d.ts │ │ │ ├── icons.d.ts │ │ │ ├── index.d.ts │ │ │ ├── modal.d.ts │ │ │ └── overlay.d.ts │ │ ├── options/ │ │ │ ├── buttons.d.ts │ │ │ ├── content.d.ts │ │ │ ├── deprecations.d.ts │ │ │ └── index.d.ts │ │ ├── state.d.ts │ │ └── utils.d.ts │ └── sweetalert.d.ts └── webpack.config.js