gitextract_q_zk3947/ ├── .editorconfig ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config/ │ └── update-type-consts.js ├── demo/ │ ├── index.css │ └── index.html ├── jsdoc.json ├── lerna.json ├── package.json ├── packages/ │ ├── croact-guides/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── demo/ │ │ │ └── index.html │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── index.umd.ts │ │ ├── tsconfig.declaration.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── guides/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── Guides.tsx │ │ │ ├── GuidesManager.tsx │ │ │ ├── InnerGuides.tsx │ │ │ ├── consts.ts │ │ │ ├── index.cjs.ts │ │ │ ├── index.esm.ts │ │ │ ├── index.ts │ │ │ └── index.umd.ts │ │ ├── test/ │ │ │ └── manual/ │ │ │ ├── guides.html │ │ │ └── index.html │ │ ├── tsconfig.declaration.json │ │ ├── tsconfig.json │ │ ├── tsconfig.test.json │ │ └── tslint.json │ ├── ngx-guides/ │ │ ├── .browserslistrc │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── projects/ │ │ │ └── ngx-guides/ │ │ │ ├── .browserslistrc │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── karma.conf.js │ │ │ ├── ng-package.json │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── lib/ │ │ │ │ │ ├── consts.ts │ │ │ │ │ ├── ngx-guides.component.spec.ts │ │ │ │ │ ├── ngx-guides.component.ts │ │ │ │ │ ├── ngx-guides.interface.ts │ │ │ │ │ ├── ngx-guides.module.ts │ │ │ │ │ ├── ngx-guides.service.spec.ts │ │ │ │ │ ├── ngx-guides.service.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── public-api.ts │ │ │ │ └── test.ts │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── assets/ │ │ │ │ └── .gitkeep │ │ │ ├── environments/ │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ ├── preact-guides/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── demo/ │ │ │ └── index.html │ │ ├── package.json │ │ ├── rollup.config.demo.js │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── demo/ │ │ │ │ ├── App.css │ │ │ │ ├── App.tsx │ │ │ │ └── index.tsx │ │ │ └── preact-guides/ │ │ │ ├── Guides.d.ts │ │ │ ├── Guides.js │ │ │ ├── index.esm.ts │ │ │ ├── index.ts │ │ │ └── index.umd.ts │ │ ├── tsconfig.build.json │ │ ├── tsconfig.declaration.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── react-guides/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── demo/ │ │ │ │ ├── App.css │ │ │ │ ├── App.tsx │ │ │ │ ├── InfiniteViewer.css │ │ │ │ ├── InfiniteViewer.tsx │ │ │ │ └── serviceWorker.ts │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ └── react-guides/ │ │ │ ├── Guides.tsx │ │ │ ├── consts.ts │ │ │ ├── index.esm.ts │ │ │ ├── index.ts │ │ │ ├── index.umd.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── tsconfig.build.json │ │ ├── tsconfig.declaration.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── svelte-guides/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── global.css │ │ │ └── index.html │ │ ├── rollup.build.config.js │ │ ├── rollup.config.js │ │ ├── rollup_start_dev.js │ │ ├── src/ │ │ │ ├── App.svelte │ │ │ ├── Guides.svelte │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── main.js │ │ ├── svelte.config.js │ │ └── tsconfig.json │ ├── vue-guides/ │ │ ├── .browserslistrc │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public/ │ │ │ └── index.html │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── App.vue │ │ │ ├── App2.vue │ │ │ ├── components/ │ │ │ │ ├── Guides.vue │ │ │ │ ├── Guides.vue.d.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── main.ts │ │ │ ├── shims-tsx.d.ts │ │ │ └── shims-vue.d.ts │ │ ├── tsconfig.declaration.json │ │ └── tsconfig.json │ └── vue3-guides/ │ ├── .browserslistrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── demo/ │ │ ├── App.vue │ │ ├── App2.vue │ │ ├── index.ts │ │ └── shims-vue.d.ts │ ├── package.json │ ├── postcss.config.js │ ├── public/ │ │ └── index.html │ ├── rollup.config.js │ ├── src/ │ │ ├── Guides.vue │ │ ├── Guides.vue.d.ts │ │ ├── index.ts │ │ └── types.ts │ ├── tsconfig.declaration.json │ └── tsconfig.json ├── rollup.config.js ├── static/ │ └── scripts/ │ └── custom.js ├── tsconfig.declaration.json ├── tsconfig.json ├── tsconfig.test.json └── tslint.json