gitextract_r57jfzom/ ├── .dockerignore ├── .docs.yaml ├── .doctemplate ├── .drone.yml ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── angular/ │ ├── .gitignore │ ├── CHANGELOG.md │ ├── angular.json │ ├── ng-package.json │ ├── package.json │ ├── rollup.config.js │ ├── rollup.config.legacy.js │ ├── src/ │ │ ├── app-init.ts │ │ ├── directives/ │ │ │ ├── proxies-list.txt │ │ │ ├── proxies-utils.ts │ │ │ └── proxies.ts │ │ ├── public-api.ts │ │ └── super-tabs.module.ts │ ├── tsconfig.json │ ├── tsconfig.legacy.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tslint.json ├── core/ │ ├── .gitignore │ ├── CHANGELOG.md │ ├── package.json │ ├── src/ │ │ ├── components.d.ts │ │ ├── index.ts │ │ ├── interface.d.ts │ │ ├── mixins.scss │ │ ├── super-tab/ │ │ │ ├── readme.md │ │ │ ├── super-tab.component.scss │ │ │ └── super-tab.component.tsx │ │ ├── super-tab-button/ │ │ │ ├── readme.md │ │ │ ├── super-tab-button.component.scss │ │ │ └── super-tab-button.component.tsx │ │ ├── super-tab-indicator/ │ │ │ ├── readme.md │ │ │ ├── super-tab-indicator.component.scss │ │ │ └── super-tab-indicator.component.tsx │ │ ├── super-tabs/ │ │ │ ├── readme.md │ │ │ ├── super-tabs.component.scss │ │ │ └── super-tabs.component.tsx │ │ ├── super-tabs-container/ │ │ │ ├── readme.md │ │ │ ├── super-tabs-container.component.scss │ │ │ └── super-tabs-container.component.tsx │ │ ├── super-tabs-toolbar/ │ │ │ ├── readme.md │ │ │ ├── super-tabs-toolbar.component.scss │ │ │ └── super-tabs-toolbar.component.tsx │ │ ├── utils.ts │ │ └── variables.scss │ ├── stencil.config.ts │ └── tsconfig.json ├── doc-pages/ │ ├── configuration.md │ ├── getting-started/ │ │ └── angular.md │ ├── home.md │ └── usage/ │ └── angular.md ├── lerna.json ├── package.json ├── react/ │ ├── .gitignore │ ├── package.json │ ├── rollup.config.js │ ├── src/ │ │ ├── components.ts │ │ ├── index.ts │ │ └── react-component-lib/ │ │ ├── createComponent.tsx │ │ ├── createControllerComponent.tsx │ │ ├── createOverlayComponent.tsx │ │ ├── index.ts │ │ └── utils/ │ │ ├── attachEventProps.ts │ │ └── index.tsx │ └── tsconfig.json └── super-tabs.sh