├── .editorconfig
├── .github
├── CONTRIBUTING.md
├── ISSUE_TEMPLATE.md
├── PULL_REQUEST_TEMPLATE.md
└── workflows
│ ├── codeql-analysis.yml
│ ├── nodejs.yml
│ ├── npm-publish.yml
│ └── stale.yml
├── .gitignore
├── .vscode
├── cSpell.json
├── launch.json
├── settings.json
├── tasks.json
└── tasks.json.old
├── CHANGELOG.md
├── LICENSE
├── README.md
├── assets
└── igniteui-cli.gif
├── eslint.config.mjs
├── lerna.json
├── output
└── .gitkeep
├── package.json
├── packages
├── cli
│ ├── README.md
│ ├── bin
│ │ └── execute.js
│ ├── ignite-ui-cli.txt
│ ├── lib
│ │ ├── MultiTemplateComponent.ts
│ │ ├── PromptSession.ts
│ │ ├── TemplateManager.ts
│ │ ├── cli.ts
│ │ ├── commands
│ │ │ ├── add.ts
│ │ │ ├── build.ts
│ │ │ ├── config.ts
│ │ │ ├── doc.ts
│ │ │ ├── generate.ts
│ │ │ ├── index.ts
│ │ │ ├── list.ts
│ │ │ ├── new.ts
│ │ │ ├── start.ts
│ │ │ ├── test.ts
│ │ │ ├── types.ts
│ │ │ └── upgrade.ts
│ │ ├── project-utility
│ │ │ └── GridHelper.ts
│ │ └── templates
│ │ │ ├── AngularTemplate.ts
│ │ │ ├── IgniteUIForReactTemplate.ts
│ │ │ ├── IgniteUIForWebComponentsTemplate.ts
│ │ │ ├── ReactTemplate.ts
│ │ │ └── jQueryTemplate.ts
│ ├── migrations
│ │ ├── migration-collection.json
│ │ ├── schema.json
│ │ ├── update-13_1_0
│ │ │ ├── index.spec.ts
│ │ │ └── index.ts
│ │ ├── update-2
│ │ │ ├── index.spec.ts
│ │ │ └── index.ts
│ │ ├── update-3
│ │ │ ├── index.spec.ts
│ │ │ └── index.ts
│ │ ├── update-3_2
│ │ │ ├── index.spec.ts
│ │ │ └── index.ts
│ │ ├── update-4_2_3
│ │ │ ├── index.spec.ts
│ │ │ └── index.ts
│ │ ├── update-5_0_0
│ │ │ ├── index.spec.ts
│ │ │ └── index.ts
│ │ └── update-5_0_3
│ │ │ ├── index.spec.ts
│ │ │ └── index.ts
│ ├── package.json
│ ├── scripts
│ │ ├── install.ts
│ │ └── uninstall.ts
│ └── templates
│ │ ├── .editorconfig
│ │ ├── angular
│ │ ├── ig-ts
│ │ │ ├── bar-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── world-energy-production.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── column-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── world-energy-production.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── combo
│ │ │ │ ├── combo
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── custom-templates
│ │ │ │ ├── editors-calculation-form
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── logo.jpg
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── tree-grid-file-explorer
│ │ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── data-fe.ts
│ │ │ │ │ │ ├── folder.png
│ │ │ │ │ │ └── opened_folder.png
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ ├── doughnut-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── doughnut-data.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── editors
│ │ │ │ ├── default
│ │ │ │ │ └── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ └── index.ts
│ │ │ ├── financial-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── financial-data.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── funnel-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── funnel-data.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── generate
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── template.json
│ │ │ ├── grid
│ │ │ │ ├── basic
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── northwindProducts.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── grid-custom
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── northwindProducts.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── grid-editing
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── northwindProducts.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── grid-export
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── employees.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── grid-templating
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── northwindProductsFlat.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid
│ │ │ │ ├── hierarchical-grid-custom
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── northwind.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── hierarchical-grid-editing
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── northwind.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── hierarchical-grid-export
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── northwind.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── hierarchical-grid
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── northwind.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── index.ts
│ │ │ ├── line-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── line-chart-data.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── pie-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── data.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── projects
│ │ │ │ └── empty
│ │ │ │ │ ├── files
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── __dot__browserslistrc
│ │ │ │ │ ├── __dot__editorconfig
│ │ │ │ │ ├── __dot__gitignore
│ │ │ │ │ ├── angular.json
│ │ │ │ │ ├── ignite-ui-cli.json
│ │ │ │ │ ├── karma.conf.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── app-routing.module.ts
│ │ │ │ │ │ │ ├── app.component.css
│ │ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ │ │ ├── app.component.ts
│ │ │ │ │ │ │ ├── app.module.ts
│ │ │ │ │ │ │ ├── home.component.ts
│ │ │ │ │ │ │ └── shared
│ │ │ │ │ │ │ │ ├── nav-menu.component.css
│ │ │ │ │ │ │ │ └── nav-menu.component.ts
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ ├── Ignite-header-apps-960.png
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── variables.scss
│ │ │ │ │ │ │ └── lines-bottom-right.svg
│ │ │ │ │ │ ├── environments
│ │ │ │ │ │ │ ├── environment.prod.ts
│ │ │ │ │ │ │ └── environment.ts
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── main.ts
│ │ │ │ │ │ ├── polyfills.ts
│ │ │ │ │ │ ├── styles.css
│ │ │ │ │ │ └── test.ts
│ │ │ │ │ ├── tsconfig.app.json
│ │ │ │ │ ├── tsconfig.json
│ │ │ │ │ └── tsconfig.spec.json
│ │ │ │ │ └── index.ts
│ │ │ ├── radial-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── temperature.ts
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ └── tree-grid
│ │ │ │ ├── index.ts
│ │ │ │ ├── tree-grid-custom
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ └── data-custom.ts
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ └── index.ts
│ │ │ │ ├── tree-grid-editing
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ └── data-editing.ts
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ └── index.ts
│ │ │ │ ├── tree-grid-export
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── data-flat.ts
│ │ │ │ │ │ └── data-hierarchical.ts
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ └── index.ts
│ │ │ │ └── tree-grid
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ ├── assets
│ │ │ │ │ └── data-basic.ts
│ │ │ │ │ └── components
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ └── __filePrefix__.spec.ts
│ │ │ │ └── index.ts
│ │ └── index.ts
│ │ ├── jquery
│ │ ├── index.ts
│ │ └── js
│ │ │ ├── bar-chart
│ │ │ ├── bar-chart
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ └── world-energy-production.js
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ │ ├── column-chart
│ │ │ ├── column-chart
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ └── world-energy-production.js
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ │ ├── combo
│ │ │ ├── combo
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ │ ├── custom-templates
│ │ │ ├── dashboard-knockout
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ └── index.html
│ │ │ │ └── index.ts
│ │ │ ├── editors-calculation-form
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ └── index.html
│ │ │ │ └── index.ts
│ │ │ ├── er-dashboard
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ ├── 10.png
│ │ │ │ │ │ ├── 11.png
│ │ │ │ │ │ ├── 12.png
│ │ │ │ │ │ ├── 13.png
│ │ │ │ │ │ ├── 14.png
│ │ │ │ │ │ ├── 15.png
│ │ │ │ │ │ ├── 16.png
│ │ │ │ │ │ ├── 17.png
│ │ │ │ │ │ ├── 18.png
│ │ │ │ │ │ ├── 19.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── 20.png
│ │ │ │ │ │ ├── 21.png
│ │ │ │ │ │ ├── 22.png
│ │ │ │ │ │ ├── 23.png
│ │ │ │ │ │ ├── 24.png
│ │ │ │ │ │ ├── 25.png
│ │ │ │ │ │ ├── 26.png
│ │ │ │ │ │ ├── 27.png
│ │ │ │ │ │ ├── 28.png
│ │ │ │ │ │ ├── 29.png
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 30.png
│ │ │ │ │ │ ├── 31.png
│ │ │ │ │ │ ├── 32.png
│ │ │ │ │ │ ├── 33.png
│ │ │ │ │ │ ├── 34.png
│ │ │ │ │ │ ├── 35.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ ├── 9.png
│ │ │ │ │ │ └── sprite-main.png
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── scripts
│ │ │ │ │ │ ├── dataOrders.js
│ │ │ │ │ │ ├── dataPatients.js
│ │ │ │ │ │ ├── dataTiles.js
│ │ │ │ │ │ ├── scripts.js
│ │ │ │ │ │ └── vitals.js
│ │ │ │ │ │ └── styles.css
│ │ │ │ └── index.ts
│ │ │ └── file-explorer
│ │ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── Index.html
│ │ │ │ │ ├── data.js
│ │ │ │ │ ├── folder.png
│ │ │ │ │ └── opened_folder.png
│ │ │ │ └── index.ts
│ │ │ ├── doughnut-chart
│ │ │ ├── doughnut-chart
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ │ ├── editors
│ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── style.css
│ │ │ └── index.ts
│ │ │ ├── financial-chart
│ │ │ ├── financial-chart
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── financial-data.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ │ ├── funnel-chart
│ │ │ ├── funnel-chart
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ │ ├── generate
│ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ └── index.html
│ │ │ └── template.json
│ │ │ ├── grid
│ │ │ ├── grid-custom
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ ├── grid-editing
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ ├── grid-export
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── employee.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ ├── grid-templating
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── northwind.js
│ │ │ │ └── index.ts
│ │ │ ├── grid
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ │ ├── groups.json
│ │ │ ├── hierarchical-grid
│ │ │ ├── hierarchical-grid-custom
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ └── index.html
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid-editing
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── northwind.js
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid-export
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── northwind.js
│ │ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid
│ │ │ │ ├── files
│ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── northwind.js
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ │ ├── index.ts
│ │ │ ├── line-chart
│ │ │ ├── index.ts
│ │ │ └── line-chart
│ │ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── line-chart-data.js
│ │ │ │ └── index.ts
│ │ │ ├── pie-chart
│ │ │ ├── index.ts
│ │ │ └── pie-chart
│ │ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── data.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── style.css
│ │ │ │ └── index.ts
│ │ │ ├── projects
│ │ │ └── empty
│ │ │ │ ├── files
│ │ │ │ ├── README.md
│ │ │ │ ├── __dot__gitignore
│ │ │ │ ├── assets
│ │ │ │ │ ├── Ignite-header-apps-960.png
│ │ │ │ │ ├── app.css
│ │ │ │ │ ├── lines-bottom-right.svg
│ │ │ │ │ └── navigation.js
│ │ │ │ ├── bs-config.js
│ │ │ │ ├── bs-routes.json
│ │ │ │ ├── ignite-cli-views.js
│ │ │ │ ├── ignite-ui-cli.json
│ │ │ │ ├── index.html
│ │ │ │ ├── karma.conf.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── test-template.spec.js
│ │ │ │ └── index.ts
│ │ │ ├── radial-chart
│ │ │ ├── index.ts
│ │ │ └── radial-chart
│ │ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── style.css
│ │ │ │ │ └── temperature.js
│ │ │ │ └── index.ts
│ │ │ ├── scatter-chart
│ │ │ ├── index.ts
│ │ │ └── scatter-chart
│ │ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── style.css
│ │ │ │ │ └── us-fao-gross-production.js
│ │ │ │ └── index.ts
│ │ │ └── tree-grid
│ │ │ ├── index.ts
│ │ │ ├── tree-grid-custom
│ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── data.js
│ │ │ │ │ └── index.html
│ │ │ └── index.ts
│ │ │ ├── tree-grid-editing
│ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── data.js
│ │ │ │ │ └── index.html
│ │ │ └── index.ts
│ │ │ ├── tree-grid-export
│ │ │ ├── files
│ │ │ │ └── __path__
│ │ │ │ │ ├── data.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── style.css
│ │ │ └── index.ts
│ │ │ └── tree-grid
│ │ │ ├── files
│ │ │ └── __path__
│ │ │ │ ├── data.js
│ │ │ │ └── index.html
│ │ │ └── index.ts
│ │ ├── react
│ │ ├── ReactTypeScriptFileUpdate.ts
│ │ ├── es6
│ │ │ ├── bar-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ ├── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ │ └── index.js
│ │ │ │ │ │ │ └── data
│ │ │ │ │ │ │ └── world-energy-production.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── column-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ ├── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ │ └── index.js
│ │ │ │ │ │ │ └── data
│ │ │ │ │ │ │ └── world-energy-production.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── combo
│ │ │ │ ├── combo
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── doughnut-chart
│ │ │ │ ├── doughnut-chart
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── editors
│ │ │ │ ├── editors
│ │ │ │ │ └── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ └── index.js
│ │ │ │ └── index.ts
│ │ │ ├── financial-chart
│ │ │ │ ├── financial-chart
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ ├── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ │ └── index.js
│ │ │ │ │ │ │ └── data
│ │ │ │ │ │ │ └── financial-data.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── funnel-chart
│ │ │ │ ├── funnel-chart
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── generate
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ └── index.js
│ │ │ │ └── template.json
│ │ │ ├── grid
│ │ │ │ ├── basic
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ └── index.ts
│ │ │ │ ├── grid-custom
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ └── index.ts
│ │ │ │ ├── grid-editing
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ └── index.ts
│ │ │ │ ├── grid-export
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ └── styles.css
│ │ │ │ │ └── index.ts
│ │ │ │ ├── grid-templating
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ └── northwind.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid
│ │ │ │ ├── hierarchical-grid-custom
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ └── northwind.js
│ │ │ │ │ └── index.ts
│ │ │ │ ├── hierarchical-grid-editing
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ └── northwind.js
│ │ │ │ │ └── index.ts
│ │ │ │ ├── hierarchical-grid-export
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── northwind.js
│ │ │ │ │ │ │ └── styles.css
│ │ │ │ │ └── index.ts
│ │ │ │ ├── hierarchical-grid
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ └── northwind.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── index.ts
│ │ │ ├── line-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── components
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── pie-chart
│ │ │ │ ├── index.ts
│ │ │ │ └── pie-chart
│ │ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ └── index.js
│ │ │ │ │ └── index.ts
│ │ │ ├── projects
│ │ │ │ └── empty
│ │ │ │ │ ├── files
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── __dot__editorconfig
│ │ │ │ │ ├── __dot__env
│ │ │ │ │ ├── __dot__eslintrc.json
│ │ │ │ │ ├── __dot__gitignore
│ │ │ │ │ ├── ignite-ui-cli.json
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── public
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── manifest.json
│ │ │ │ │ │ └── robots.txt
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── App.css
│ │ │ │ │ │ ├── App.js
│ │ │ │ │ │ ├── components
│ │ │ │ │ │ ├── home
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ │ └── navigation-header
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ │ ├── hoc
│ │ │ │ │ │ └── asyncComponent.js
│ │ │ │ │ │ ├── igniteuiResources.js
│ │ │ │ │ │ ├── index.css
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── reportWebVitals.js
│ │ │ │ │ │ └── routes.json
│ │ │ │ │ └── index.ts
│ │ │ ├── radial-chart
│ │ │ │ ├── index.ts
│ │ │ │ └── radial-chart
│ │ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ │ └── data
│ │ │ │ │ │ └── temperature.js
│ │ │ │ │ └── index.ts
│ │ │ ├── scatter-chart
│ │ │ │ ├── index.ts
│ │ │ │ └── scatter-chart
│ │ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ │ └── data
│ │ │ │ │ │ └── temperature.js
│ │ │ │ │ └── index.ts
│ │ │ └── tree-grid
│ │ │ │ ├── index.ts
│ │ │ │ ├── tree-grid-custom
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ └── index.js
│ │ │ │ └── index.ts
│ │ │ │ ├── tree-grid-editing
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ └── index.js
│ │ │ │ └── index.ts
│ │ │ │ ├── tree-grid-export
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ └── index.js
│ │ │ │ └── index.ts
│ │ │ │ └── tree-grid
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── components
│ │ │ │ │ └── __path__
│ │ │ │ │ └── index.js
│ │ │ │ └── index.ts
│ │ ├── igr-es6
│ │ │ ├── bullet-graph
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ └── test.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── category-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ └── test.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── doughnut-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ └── test.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── financial-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ └── test.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid
│ │ │ │ ├── basic
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ └── test.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── groups.json
│ │ │ ├── index.ts
│ │ │ ├── linear-gauge
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ └── test.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── pie-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ └── test.js
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── projects
│ │ │ │ ├── _base
│ │ │ │ │ ├── __dot__eslintrc.json
│ │ │ │ │ ├── files
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── __dot__editorconfig
│ │ │ │ │ │ ├── __dot__env
│ │ │ │ │ │ ├── __dot__gitignore
│ │ │ │ │ │ ├── ignite-ui-cli.json
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── public
│ │ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ └── manifest.json
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ ├── App.test.js
│ │ │ │ │ │ │ ├── hoc
│ │ │ │ │ │ │ └── asyncComponent.js
│ │ │ │ │ │ │ ├── index.css
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── routes.json
│ │ │ │ │ │ │ ├── serviceWorker.js
│ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ └── home
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── logo.svg
│ │ │ │ │ │ │ └── style.css
│ │ │ │ │ └── index.ts
│ │ │ │ └── top-nav
│ │ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── App.css
│ │ │ │ │ │ ├── App.js
│ │ │ │ │ │ ├── components
│ │ │ │ │ │ └── navigation-header
│ │ │ │ │ │ │ └── index.js
│ │ │ │ │ │ └── setupTests.js
│ │ │ │ │ └── index.ts
│ │ │ └── radial-gauge
│ │ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── views
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ └── test.js
│ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ ├── igr-ts
│ │ │ ├── bullet-graph
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.test.tsx
│ │ │ │ │ │ │ ├── __filePrefix__.tsx
│ │ │ │ │ │ │ └── style.module.css
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── category-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.test.tsx
│ │ │ │ │ │ │ ├── __filePrefix__.tsx
│ │ │ │ │ │ │ └── style.module.css
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── doughnut-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.test.tsx
│ │ │ │ │ │ │ ├── __filePrefix__.tsx
│ │ │ │ │ │ │ └── style.module.css
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── financial-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.test.tsx
│ │ │ │ │ │ │ ├── __filePrefix__.tsx
│ │ │ │ │ │ │ └── style.module.css
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid
│ │ │ │ ├── basic
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.test.tsx
│ │ │ │ │ │ │ ├── __filePrefix__.tsx
│ │ │ │ │ │ │ ├── data.tsx
│ │ │ │ │ │ │ └── style.module.css
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── groups.json
│ │ │ ├── index.ts
│ │ │ ├── linear-gauge
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.test.tsx
│ │ │ │ │ │ │ ├── __filePrefix__.tsx
│ │ │ │ │ │ │ └── style.module.css
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── pie-chart
│ │ │ │ ├── default
│ │ │ │ │ ├── files
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.test.tsx
│ │ │ │ │ │ │ ├── __filePrefix__.tsx
│ │ │ │ │ │ │ └── style.module.css
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── projects
│ │ │ │ ├── _base
│ │ │ │ │ ├── files
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── __dot__azure
│ │ │ │ │ │ │ └── azure-pipelines.yml
│ │ │ │ │ │ ├── __dot__editorconfig
│ │ │ │ │ │ ├── __dot__github
│ │ │ │ │ │ │ └── workflows
│ │ │ │ │ │ │ │ ├── github-pages.yml
│ │ │ │ │ │ │ │ └── node.js.yml
│ │ │ │ │ │ ├── __dot__gitignore
│ │ │ │ │ │ ├── eslint.config.mjs
│ │ │ │ │ │ ├── ignite-ui-cli.json
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── public
│ │ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ │ ├── app-routes.tsx
│ │ │ │ │ │ │ │ ├── app.test.tsx
│ │ │ │ │ │ │ │ ├── app.tsx
│ │ │ │ │ │ │ │ └── style-utils.ts
│ │ │ │ │ │ │ ├── main.tsx
│ │ │ │ │ │ │ ├── setupTests.ts
│ │ │ │ │ │ │ └── vite-env.d.ts
│ │ │ │ │ │ ├── styles.css
│ │ │ │ │ │ ├── tsconfig.json
│ │ │ │ │ │ └── vite.config.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── _base_with_home
│ │ │ │ │ ├── files
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── public
│ │ │ │ │ │ │ └── logo.svg
│ │ │ │ │ │ └── src
│ │ │ │ │ │ │ └── app
│ │ │ │ │ │ │ ├── app-routes.tsx
│ │ │ │ │ │ │ └── home
│ │ │ │ │ │ │ ├── home.tsx
│ │ │ │ │ │ │ └── style.module.css
│ │ │ │ │ └── index.ts
│ │ │ │ ├── base
│ │ │ │ │ └── index.ts
│ │ │ │ ├── empty
│ │ │ │ │ └── index.ts
│ │ │ │ └── top-nav
│ │ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ ├── app.css
│ │ │ │ │ │ ├── app.test.tsx
│ │ │ │ │ │ └── app.tsx
│ │ │ │ │ │ └── components
│ │ │ │ │ │ └── navigation-header
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ └── index.ts
│ │ │ └── radial-gauge
│ │ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.tsx
│ │ │ │ │ │ ├── __filePrefix__.tsx
│ │ │ │ │ │ └── style.module.css
│ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ ├── index.ts
│ │ └── types
│ │ │ ├── ReactRouteEntry.ts
│ │ │ ├── ReactRouteLike.ts
│ │ │ ├── ReactRouteTarget.ts
│ │ │ └── index.ts
│ │ └── webcomponents
│ │ ├── .editorconfig
│ │ ├── WebComponentsTypeScriptFileUpdate.ts
│ │ ├── igc-ts
│ │ ├── accordion
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── avatar
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ └── avatar1.jpg
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── badge
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── banner
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── button-group
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── button
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── calendar
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── card
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── checkbox
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── chip
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── circular-progress
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── custom-templates
│ │ │ └── subscription-form
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ ├── date-picker
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── date-time-input
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── divider
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── dock-manager
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── dropdown
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── expansion-panel
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── financial-chart
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── StockIndexData.ts
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── form
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── grid
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid-editing
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── DataGridSharedData.ts
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid-summaries
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── NwindData.ts
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── groups.json
│ │ ├── icon-button
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── icon
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── index.ts
│ │ ├── input
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── linear-gauge
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── linear-progress
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── list
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── navbar
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── pie-chart
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ ├── __filePrefix__.ts
│ │ │ │ │ │ └── sampleData.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── projects
│ │ │ ├── _base
│ │ │ │ ├── files
│ │ │ │ │ ├── .npmrc
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── __dot__azure
│ │ │ │ │ │ └── azure-pipelines.yml
│ │ │ │ │ ├── __dot__editorconfig
│ │ │ │ │ ├── __dot__github
│ │ │ │ │ │ └── workflows
│ │ │ │ │ │ │ ├── github-pages.yml
│ │ │ │ │ │ │ └── node.js.yml
│ │ │ │ │ ├── __dot__gitignore
│ │ │ │ │ ├── eslint.config.mjs
│ │ │ │ │ ├── ignite-ui-cli.json
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── app-routing.ts
│ │ │ │ │ │ │ ├── app.test.ts
│ │ │ │ │ │ │ ├── app.ts
│ │ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ │ └── css.d.ts
│ │ │ │ │ │ │ └── not-found
│ │ │ │ │ │ │ │ └── not-found.ts
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ ├── styles.css
│ │ │ │ │ ├── tsconfig.json
│ │ │ │ │ ├── tsconfig.test.json
│ │ │ │ │ ├── vite.config.ts
│ │ │ │ │ └── web-dev-server.config.mjs
│ │ │ │ └── index.ts
│ │ │ ├── _base_with_home
│ │ │ │ ├── files
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ ├── app-routing.ts
│ │ │ │ │ │ └── home
│ │ │ │ │ │ │ ├── home.test.ts
│ │ │ │ │ │ │ └── home.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ └── astronaut-components.svg
│ │ │ │ └── index.ts
│ │ │ ├── base
│ │ │ │ └── index.ts
│ │ │ ├── empty
│ │ │ │ └── index.ts
│ │ │ └── side-nav
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── app.ts
│ │ │ │ └── index.ts
│ │ ├── radial-gauge
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── radio-group
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── rating
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── ripple
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── slider
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── switch
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tabs
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── text-area
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ │ └── __filePrefix__.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ └── tree
│ │ │ ├── default
│ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.test.ts
│ │ │ │ │ └── __filePrefix__.ts
│ │ │ └── index.ts
│ │ │ └── index.ts
│ │ └── index.ts
├── core
│ ├── .npmignore
│ ├── README.md
│ ├── config
│ │ └── defaults.json
│ ├── index.ts
│ ├── package.json
│ ├── packages
│ │ ├── PackageManager.ts
│ │ └── components.ts
│ ├── prompt
│ │ ├── BasePromptSession.ts
│ │ ├── InquirerWrapper.ts
│ │ ├── TaskRunner.ts
│ │ └── index.ts
│ ├── templates
│ │ ├── BaseComponent.ts
│ │ ├── BaseProjectLibrary.ts
│ │ ├── BaseTemplateManager.ts
│ │ └── index.ts
│ ├── types
│ │ ├── AddTemplateArgs.ts
│ │ ├── BaseTemplate.ts
│ │ ├── Component.ts
│ │ ├── ComponentGroup.ts
│ │ ├── Config.ts
│ │ ├── ControlExtraConfiguration.ts
│ │ ├── ExtensionModule.ts
│ │ ├── FileSystem.ts
│ │ ├── Framework.ts
│ │ ├── GoogleAnalyticsParameters.ts
│ │ ├── KeyValuePair.ts
│ │ ├── ProjectLibrary.ts
│ │ ├── ProjectTemplate.ts
│ │ ├── RouteEntry.ts
│ │ ├── RouteLike.ts
│ │ ├── Template.ts
│ │ ├── TemplateDependency.ts
│ │ ├── TemplateReplaceDelimiters.ts
│ │ ├── enumerations
│ │ │ ├── ControlExtraConfigType.ts
│ │ │ └── RouteTarget.ts
│ │ ├── index.ts
│ │ └── types-typescript.ts
│ ├── typescript
│ │ ├── TransformerFactories.ts
│ │ ├── TypeScriptAstTransformer.ts
│ │ ├── TypeScriptExpressionCollector.ts
│ │ ├── TypeScriptFileUpdate.ts
│ │ ├── TypeScriptFormattingService.ts
│ │ ├── TypeScriptNodeFactory.ts
│ │ ├── TypeScriptUtils.ts
│ │ ├── VisitorConditions.ts
│ │ └── index.ts
│ ├── update
│ │ ├── Update.ts
│ │ ├── index.ts
│ │ └── package-resolve.ts
│ └── util
│ │ ├── App.ts
│ │ ├── Container.ts
│ │ ├── FileSystem.ts
│ │ ├── GlobalConstants.ts
│ │ ├── GoogleAnalytics.ts
│ │ ├── ProjectConfig.ts
│ │ ├── Schematics.ts
│ │ ├── Util.ts
│ │ └── index.ts
├── igx-templates
│ ├── .editorconfig
│ ├── .npmignore
│ ├── AngularTypeScriptFileUpdate.ts
│ ├── IgniteUIForAngularTemplate.ts
│ ├── README.md
│ ├── constants.ts
│ ├── igx-ts-legacy
│ │ ├── accordion
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── autocomplete
│ │ │ ├── autocomplete-custom
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── towns-data.ts
│ │ │ │ └── index.ts
│ │ │ ├── autocomplete-extended
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── towns-data-extended.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── bullet-graph
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── calendar
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── carousel
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ ├── slide1@x2.jpg
│ │ │ │ │ │ ├── slide2@x2.jpg
│ │ │ │ │ │ ├── slide3@x2.jpg
│ │ │ │ │ │ └── slide4@x2.jpg
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── category-chart
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── chip
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── combo
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── local-data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── custom-templates
│ │ │ ├── awesome-grid
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── services
│ │ │ │ │ │ │ └── data.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── flags
│ │ │ │ │ │ ├── ad.png
│ │ │ │ │ │ ├── ae.png
│ │ │ │ │ │ ├── af.png
│ │ │ │ │ │ ├── ag.png
│ │ │ │ │ │ ├── al.png
│ │ │ │ │ │ ├── am.png
│ │ │ │ │ │ ├── ao.png
│ │ │ │ │ │ ├── ar.png
│ │ │ │ │ │ ├── at.png
│ │ │ │ │ │ ├── au.png
│ │ │ │ │ │ ├── az.png
│ │ │ │ │ │ ├── ba.png
│ │ │ │ │ │ ├── bb.png
│ │ │ │ │ │ ├── bd.png
│ │ │ │ │ │ ├── be.png
│ │ │ │ │ │ ├── bf.png
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── bh.png
│ │ │ │ │ │ ├── bi.png
│ │ │ │ │ │ ├── bj.png
│ │ │ │ │ │ ├── bn.png
│ │ │ │ │ │ ├── bo.png
│ │ │ │ │ │ ├── br.png
│ │ │ │ │ │ ├── bs.png
│ │ │ │ │ │ ├── bt.png
│ │ │ │ │ │ ├── bw.png
│ │ │ │ │ │ ├── by.png
│ │ │ │ │ │ ├── bz.png
│ │ │ │ │ │ ├── ca.png
│ │ │ │ │ │ ├── cd.png
│ │ │ │ │ │ ├── cf.png
│ │ │ │ │ │ ├── cg.png
│ │ │ │ │ │ ├── ch.png
│ │ │ │ │ │ ├── ci.png
│ │ │ │ │ │ ├── ck.png
│ │ │ │ │ │ ├── cl.png
│ │ │ │ │ │ ├── cm.png
│ │ │ │ │ │ ├── cn.png
│ │ │ │ │ │ ├── co.png
│ │ │ │ │ │ ├── cr.png
│ │ │ │ │ │ ├── cu.png
│ │ │ │ │ │ ├── cv.png
│ │ │ │ │ │ ├── cy.png
│ │ │ │ │ │ ├── cz.png
│ │ │ │ │ │ ├── de.png
│ │ │ │ │ │ ├── dj.png
│ │ │ │ │ │ ├── dk.png
│ │ │ │ │ │ ├── dm.png
│ │ │ │ │ │ ├── do.png
│ │ │ │ │ │ ├── dz.png
│ │ │ │ │ │ ├── ec.png
│ │ │ │ │ │ ├── ee.png
│ │ │ │ │ │ ├── eg.png
│ │ │ │ │ │ ├── eh.png
│ │ │ │ │ │ ├── er.png
│ │ │ │ │ │ ├── es.png
│ │ │ │ │ │ ├── et.png
│ │ │ │ │ │ ├── fi.png
│ │ │ │ │ │ ├── fj.png
│ │ │ │ │ │ ├── fm.png
│ │ │ │ │ │ ├── fr.png
│ │ │ │ │ │ ├── ga.png
│ │ │ │ │ │ ├── gb.png
│ │ │ │ │ │ ├── gd.png
│ │ │ │ │ │ ├── ge.png
│ │ │ │ │ │ ├── gh.png
│ │ │ │ │ │ ├── gm.png
│ │ │ │ │ │ ├── gn.png
│ │ │ │ │ │ ├── gq.png
│ │ │ │ │ │ ├── gr.png
│ │ │ │ │ │ ├── gt.png
│ │ │ │ │ │ ├── gw.png
│ │ │ │ │ │ ├── gy.png
│ │ │ │ │ │ ├── hn.png
│ │ │ │ │ │ ├── hr.png
│ │ │ │ │ │ ├── ht.png
│ │ │ │ │ │ ├── hu.png
│ │ │ │ │ │ ├── id.png
│ │ │ │ │ │ ├── ie.png
│ │ │ │ │ │ ├── il.png
│ │ │ │ │ │ ├── in.png
│ │ │ │ │ │ ├── iq.png
│ │ │ │ │ │ ├── ir.png
│ │ │ │ │ │ ├── is.png
│ │ │ │ │ │ ├── it.png
│ │ │ │ │ │ ├── jm.png
│ │ │ │ │ │ ├── jo.png
│ │ │ │ │ │ ├── jp.png
│ │ │ │ │ │ ├── ke.png
│ │ │ │ │ │ ├── kg.png
│ │ │ │ │ │ ├── kh.png
│ │ │ │ │ │ ├── ki.png
│ │ │ │ │ │ ├── km.png
│ │ │ │ │ │ ├── kn.png
│ │ │ │ │ │ ├── kp.png
│ │ │ │ │ │ ├── kr.png
│ │ │ │ │ │ ├── ks.png
│ │ │ │ │ │ ├── kw.png
│ │ │ │ │ │ ├── kz.png
│ │ │ │ │ │ ├── la.png
│ │ │ │ │ │ ├── lb.png
│ │ │ │ │ │ ├── lc.png
│ │ │ │ │ │ ├── li.png
│ │ │ │ │ │ ├── lk.png
│ │ │ │ │ │ ├── lr.png
│ │ │ │ │ │ ├── ls.png
│ │ │ │ │ │ ├── lt.png
│ │ │ │ │ │ ├── lu.png
│ │ │ │ │ │ ├── lv.png
│ │ │ │ │ │ ├── ly.png
│ │ │ │ │ │ ├── ma.png
│ │ │ │ │ │ ├── mc.png
│ │ │ │ │ │ ├── md.png
│ │ │ │ │ │ ├── me.png
│ │ │ │ │ │ ├── mg.png
│ │ │ │ │ │ ├── mh.png
│ │ │ │ │ │ ├── mk.png
│ │ │ │ │ │ ├── ml.png
│ │ │ │ │ │ ├── mm.png
│ │ │ │ │ │ ├── mn.png
│ │ │ │ │ │ ├── mr.png
│ │ │ │ │ │ ├── mt.png
│ │ │ │ │ │ ├── mu.png
│ │ │ │ │ │ ├── mv.png
│ │ │ │ │ │ ├── mw.png
│ │ │ │ │ │ ├── mx.png
│ │ │ │ │ │ ├── my.png
│ │ │ │ │ │ ├── mz.png
│ │ │ │ │ │ ├── na.png
│ │ │ │ │ │ ├── ne.png
│ │ │ │ │ │ ├── ng.png
│ │ │ │ │ │ ├── ni.png
│ │ │ │ │ │ ├── nl.png
│ │ │ │ │ │ ├── no.png
│ │ │ │ │ │ ├── np.png
│ │ │ │ │ │ ├── nr.png
│ │ │ │ │ │ ├── nu.png
│ │ │ │ │ │ ├── nz.png
│ │ │ │ │ │ ├── om.png
│ │ │ │ │ │ ├── pa.png
│ │ │ │ │ │ ├── pe.png
│ │ │ │ │ │ ├── pg.png
│ │ │ │ │ │ ├── ph.png
│ │ │ │ │ │ ├── pk.png
│ │ │ │ │ │ ├── pl.png
│ │ │ │ │ │ ├── pt.png
│ │ │ │ │ │ ├── pw.png
│ │ │ │ │ │ ├── py.png
│ │ │ │ │ │ ├── qa.png
│ │ │ │ │ │ ├── ro.png
│ │ │ │ │ │ ├── rs.png
│ │ │ │ │ │ ├── ru.png
│ │ │ │ │ │ ├── rw.png
│ │ │ │ │ │ ├── sa.png
│ │ │ │ │ │ ├── sb.png
│ │ │ │ │ │ ├── sc.png
│ │ │ │ │ │ ├── sd.png
│ │ │ │ │ │ ├── se.png
│ │ │ │ │ │ ├── sg.png
│ │ │ │ │ │ ├── si.png
│ │ │ │ │ │ ├── sk.png
│ │ │ │ │ │ ├── sl.png
│ │ │ │ │ │ ├── sm.png
│ │ │ │ │ │ ├── sn.png
│ │ │ │ │ │ ├── so.png
│ │ │ │ │ │ ├── sr.png
│ │ │ │ │ │ ├── st.png
│ │ │ │ │ │ ├── sv.png
│ │ │ │ │ │ ├── sy.png
│ │ │ │ │ │ ├── sz.png
│ │ │ │ │ │ ├── td.png
│ │ │ │ │ │ ├── tg.png
│ │ │ │ │ │ ├── th.png
│ │ │ │ │ │ ├── tj.png
│ │ │ │ │ │ ├── tl.png
│ │ │ │ │ │ ├── tm.png
│ │ │ │ │ │ ├── tn.png
│ │ │ │ │ │ ├── to.png
│ │ │ │ │ │ ├── tr.png
│ │ │ │ │ │ ├── tt.png
│ │ │ │ │ │ ├── tv.png
│ │ │ │ │ │ ├── tw.png
│ │ │ │ │ │ ├── tz.png
│ │ │ │ │ │ ├── ua.png
│ │ │ │ │ │ ├── ug.png
│ │ │ │ │ │ ├── us.png
│ │ │ │ │ │ ├── uy.png
│ │ │ │ │ │ ├── uz.png
│ │ │ │ │ │ ├── va.png
│ │ │ │ │ │ ├── vc.png
│ │ │ │ │ │ ├── ve.png
│ │ │ │ │ │ ├── vn.png
│ │ │ │ │ │ ├── vu.png
│ │ │ │ │ │ ├── ws.png
│ │ │ │ │ │ ├── ye.png
│ │ │ │ │ │ ├── za.png
│ │ │ │ │ │ ├── zm.png
│ │ │ │ │ │ └── zw.png
│ │ │ │ │ │ ├── trophy_bronze.svg
│ │ │ │ │ │ ├── trophy_gold.svg
│ │ │ │ │ │ └── trophy_silver.svg
│ │ │ │ └── index.ts
│ │ │ ├── crm-grid
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── data.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── men
│ │ │ │ │ │ ├── 0.jpg
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 10.jpg
│ │ │ │ │ │ ├── 100.jpg
│ │ │ │ │ │ ├── 11.jpg
│ │ │ │ │ │ ├── 12.jpg
│ │ │ │ │ │ ├── 13.jpg
│ │ │ │ │ │ ├── 14.jpg
│ │ │ │ │ │ ├── 15.jpg
│ │ │ │ │ │ ├── 16.jpg
│ │ │ │ │ │ ├── 17.jpg
│ │ │ │ │ │ ├── 18.jpg
│ │ │ │ │ │ ├── 19.jpg
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 20.jpg
│ │ │ │ │ │ ├── 21.jpg
│ │ │ │ │ │ ├── 22.jpg
│ │ │ │ │ │ ├── 23.jpg
│ │ │ │ │ │ ├── 24.jpg
│ │ │ │ │ │ ├── 25.jpg
│ │ │ │ │ │ ├── 26.jpg
│ │ │ │ │ │ ├── 27.jpg
│ │ │ │ │ │ ├── 28.jpg
│ │ │ │ │ │ ├── 29.jpg
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ ├── 30.jpg
│ │ │ │ │ │ ├── 31.jpg
│ │ │ │ │ │ ├── 32.jpg
│ │ │ │ │ │ ├── 33.jpg
│ │ │ │ │ │ ├── 34.jpg
│ │ │ │ │ │ ├── 35.jpg
│ │ │ │ │ │ ├── 36.jpg
│ │ │ │ │ │ ├── 37.jpg
│ │ │ │ │ │ ├── 38.jpg
│ │ │ │ │ │ ├── 39.jpg
│ │ │ │ │ │ ├── 4.jpg
│ │ │ │ │ │ ├── 40.jpg
│ │ │ │ │ │ ├── 41.jpg
│ │ │ │ │ │ ├── 42.jpg
│ │ │ │ │ │ ├── 43.jpg
│ │ │ │ │ │ ├── 44.jpg
│ │ │ │ │ │ ├── 45.jpg
│ │ │ │ │ │ ├── 46.jpg
│ │ │ │ │ │ ├── 47.jpg
│ │ │ │ │ │ ├── 48.jpg
│ │ │ │ │ │ ├── 49.jpg
│ │ │ │ │ │ ├── 5.jpg
│ │ │ │ │ │ ├── 50.jpg
│ │ │ │ │ │ ├── 51.jpg
│ │ │ │ │ │ ├── 52.jpg
│ │ │ │ │ │ ├── 53.jpg
│ │ │ │ │ │ ├── 54.jpg
│ │ │ │ │ │ ├── 55.jpg
│ │ │ │ │ │ ├── 56.jpg
│ │ │ │ │ │ ├── 57 (1).jpg
│ │ │ │ │ │ ├── 57.jpg
│ │ │ │ │ │ ├── 58.jpg
│ │ │ │ │ │ ├── 59.jpg
│ │ │ │ │ │ ├── 6.jpg
│ │ │ │ │ │ ├── 60.jpg
│ │ │ │ │ │ ├── 61.jpg
│ │ │ │ │ │ ├── 62.jpg
│ │ │ │ │ │ ├── 63.jpg
│ │ │ │ │ │ ├── 64.jpg
│ │ │ │ │ │ ├── 65.jpg
│ │ │ │ │ │ ├── 66.jpg
│ │ │ │ │ │ ├── 67.jpg
│ │ │ │ │ │ ├── 68.jpg
│ │ │ │ │ │ ├── 69.jpg
│ │ │ │ │ │ ├── 7.jpg
│ │ │ │ │ │ ├── 70.jpg
│ │ │ │ │ │ ├── 71.jpg
│ │ │ │ │ │ ├── 72.jpg
│ │ │ │ │ │ ├── 73.jpg
│ │ │ │ │ │ ├── 74.jpg
│ │ │ │ │ │ ├── 75.jpg
│ │ │ │ │ │ ├── 76.jpg
│ │ │ │ │ │ ├── 77.jpg
│ │ │ │ │ │ ├── 78.jpg
│ │ │ │ │ │ ├── 79.jpg
│ │ │ │ │ │ ├── 8.jpg
│ │ │ │ │ │ ├── 80.jpg
│ │ │ │ │ │ ├── 81.jpg
│ │ │ │ │ │ ├── 82.jpg
│ │ │ │ │ │ ├── 83.jpg
│ │ │ │ │ │ ├── 84.jpg
│ │ │ │ │ │ ├── 85.jpg
│ │ │ │ │ │ ├── 86.jpg
│ │ │ │ │ │ ├── 87.jpg
│ │ │ │ │ │ ├── 88.jpg
│ │ │ │ │ │ ├── 89.jpg
│ │ │ │ │ │ ├── 9.jpg
│ │ │ │ │ │ ├── 90.jpg
│ │ │ │ │ │ ├── 91.jpg
│ │ │ │ │ │ ├── 92.jpg
│ │ │ │ │ │ ├── 93.jpg
│ │ │ │ │ │ ├── 94.jpg
│ │ │ │ │ │ ├── 95.jpg
│ │ │ │ │ │ ├── 96.jpg
│ │ │ │ │ │ ├── 97.jpg
│ │ │ │ │ │ ├── 98.jpg
│ │ │ │ │ │ └── 99.jpg
│ │ │ │ │ │ ├── propeller-logo.svg
│ │ │ │ │ │ └── women
│ │ │ │ │ │ ├── 0.jpg
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 10.jpg
│ │ │ │ │ │ ├── 100.jpg
│ │ │ │ │ │ ├── 11.jpg
│ │ │ │ │ │ ├── 12.jpg
│ │ │ │ │ │ ├── 13.jpg
│ │ │ │ │ │ ├── 14.jpg
│ │ │ │ │ │ ├── 15.jpg
│ │ │ │ │ │ ├── 16.jpg
│ │ │ │ │ │ ├── 17.jpg
│ │ │ │ │ │ ├── 18.jpg
│ │ │ │ │ │ ├── 19.jpg
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 20.jpg
│ │ │ │ │ │ ├── 21.jpg
│ │ │ │ │ │ ├── 22.jpg
│ │ │ │ │ │ ├── 23.jpg
│ │ │ │ │ │ ├── 24.jpg
│ │ │ │ │ │ ├── 25.jpg
│ │ │ │ │ │ ├── 26.jpg
│ │ │ │ │ │ ├── 27.jpg
│ │ │ │ │ │ ├── 28.jpg
│ │ │ │ │ │ ├── 29.jpg
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ ├── 30.jpg
│ │ │ │ │ │ ├── 31.jpg
│ │ │ │ │ │ ├── 32.jpg
│ │ │ │ │ │ ├── 33.jpg
│ │ │ │ │ │ ├── 34.jpg
│ │ │ │ │ │ ├── 35.jpg
│ │ │ │ │ │ ├── 36.jpg
│ │ │ │ │ │ ├── 37.jpg
│ │ │ │ │ │ ├── 38.jpg
│ │ │ │ │ │ ├── 39.jpg
│ │ │ │ │ │ ├── 4.jpg
│ │ │ │ │ │ ├── 40.jpg
│ │ │ │ │ │ ├── 41.jpg
│ │ │ │ │ │ ├── 42.jpg
│ │ │ │ │ │ ├── 43.jpg
│ │ │ │ │ │ ├── 44.jpg
│ │ │ │ │ │ ├── 45.jpg
│ │ │ │ │ │ ├── 46.jpg
│ │ │ │ │ │ ├── 47.jpg
│ │ │ │ │ │ ├── 48.jpg
│ │ │ │ │ │ ├── 49.jpg
│ │ │ │ │ │ ├── 5.jpg
│ │ │ │ │ │ ├── 50.jpg
│ │ │ │ │ │ ├── 51.jpg
│ │ │ │ │ │ ├── 52.jpg
│ │ │ │ │ │ ├── 53.jpg
│ │ │ │ │ │ ├── 54.jpg
│ │ │ │ │ │ ├── 55.jpg
│ │ │ │ │ │ ├── 56.jpg
│ │ │ │ │ │ ├── 57.jpg
│ │ │ │ │ │ ├── 58.jpg
│ │ │ │ │ │ ├── 59.jpg
│ │ │ │ │ │ ├── 6.jpg
│ │ │ │ │ │ ├── 60.jpg
│ │ │ │ │ │ ├── 61.jpg
│ │ │ │ │ │ ├── 62.jpg
│ │ │ │ │ │ ├── 63.jpg
│ │ │ │ │ │ ├── 64.jpg
│ │ │ │ │ │ ├── 65.jpg
│ │ │ │ │ │ ├── 66.jpg
│ │ │ │ │ │ ├── 67.jpg
│ │ │ │ │ │ ├── 68.jpg
│ │ │ │ │ │ ├── 69.jpg
│ │ │ │ │ │ ├── 7.jpg
│ │ │ │ │ │ ├── 70.jpg
│ │ │ │ │ │ ├── 71.jpg
│ │ │ │ │ │ ├── 72.jpg
│ │ │ │ │ │ ├── 73.jpg
│ │ │ │ │ │ ├── 74.jpg
│ │ │ │ │ │ ├── 75.jpg
│ │ │ │ │ │ ├── 76.jpg
│ │ │ │ │ │ ├── 77.jpg
│ │ │ │ │ │ ├── 78.jpg
│ │ │ │ │ │ ├── 79.jpg
│ │ │ │ │ │ ├── 8.jpg
│ │ │ │ │ │ ├── 80.jpg
│ │ │ │ │ │ ├── 81.jpg
│ │ │ │ │ │ ├── 82.jpg
│ │ │ │ │ │ ├── 83.jpg
│ │ │ │ │ │ ├── 84.jpg
│ │ │ │ │ │ ├── 85.jpg
│ │ │ │ │ │ ├── 86.jpg
│ │ │ │ │ │ ├── 87.jpg
│ │ │ │ │ │ ├── 88.jpg
│ │ │ │ │ │ ├── 89.jpg
│ │ │ │ │ │ ├── 9.jpg
│ │ │ │ │ │ ├── 90.jpg
│ │ │ │ │ │ ├── 91.jpg
│ │ │ │ │ │ ├── 92.jpg
│ │ │ │ │ │ ├── 93.jpg
│ │ │ │ │ │ ├── 94.jpg
│ │ │ │ │ │ ├── 95.jpg
│ │ │ │ │ │ ├── 96.jpg
│ │ │ │ │ │ ├── 97.jpg
│ │ │ │ │ │ ├── 98.jpg
│ │ │ │ │ │ └── 99.jpg
│ │ │ │ └── index.ts
│ │ │ ├── fintech-grid
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ ├── localData.service.ts
│ │ │ │ │ │ └── localData
│ │ │ │ │ │ └── financialData.ts
│ │ │ │ └── index.ts
│ │ │ ├── fintech-tree-grid
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ └── financialData.ts
│ │ │ │ │ │ ├── localData.service.ts
│ │ │ │ │ │ └── tree-grid-grouping.pipe.ts
│ │ │ │ └── index.ts
│ │ │ ├── login
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── weather-forecast
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ └── weather-data.ts
│ │ │ │ └── index.ts
│ │ ├── date-picker
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── dialog
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── dock-manager
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── __filePrefix__.module.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── dropdown
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── local-data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── financial-chart
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── generate
│ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ └── template.json
│ │ ├── grid
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid-batch-editing
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid-custom
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid-summaries
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ │ ├── index.ts
│ │ │ └── multi-column-headers
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ ├── groups.json
│ │ ├── hierarchical-grid
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid-batch-editing
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ ├── data.ts
│ │ │ │ │ │ └── singer.ts
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid-custom
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid-summaries
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ ├── custom-summary.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── index.ts
│ │ ├── input-group
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── linear-gauge
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── list
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── map
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── pivot-grid
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── projects
│ │ │ ├── _base
│ │ │ │ ├── files
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── __dot__azure
│ │ │ │ │ │ └── azure-pipelines.yml
│ │ │ │ │ ├── __dot__editorconfig
│ │ │ │ │ ├── __dot__github
│ │ │ │ │ │ └── workflows
│ │ │ │ │ │ │ ├── github-pages.yml
│ │ │ │ │ │ │ └── node.js.yml
│ │ │ │ │ ├── __dot__gitignore
│ │ │ │ │ ├── __dot__vscode
│ │ │ │ │ │ ├── extensions.json
│ │ │ │ │ │ ├── launch.json
│ │ │ │ │ │ └── tasks.json
│ │ │ │ │ ├── angular.json
│ │ │ │ │ ├── eslint.config.mjs
│ │ │ │ │ ├── ignite-ui-cli.json
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── public
│ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── app-routing.module.ts
│ │ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ │ │ ├── app.component.ts
│ │ │ │ │ │ │ ├── app.module.ts
│ │ │ │ │ │ │ └── error-routing
│ │ │ │ │ │ │ │ ├── error-routing.module.ts
│ │ │ │ │ │ │ │ ├── error
│ │ │ │ │ │ │ │ ├── global-error-handler.service.ts
│ │ │ │ │ │ │ │ └── uncaught-error.component.ts
│ │ │ │ │ │ │ │ └── not-found
│ │ │ │ │ │ │ │ └── not-found.component.ts
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── __dot__gitkeep
│ │ │ │ │ │ ├── environments
│ │ │ │ │ │ │ ├── environment.prod.ts
│ │ │ │ │ │ │ └── environment.ts
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── main.ts
│ │ │ │ │ │ ├── polyfills.ts
│ │ │ │ │ │ ├── styles.scss
│ │ │ │ │ │ └── test.ts
│ │ │ │ │ ├── tsconfig.app.json
│ │ │ │ │ ├── tsconfig.json
│ │ │ │ │ └── tsconfig.spec.json
│ │ │ │ └── index.ts
│ │ │ ├── _base_with_home
│ │ │ │ ├── files
│ │ │ │ │ ├── __dot__azure
│ │ │ │ │ │ └── azure-pipelines.yml
│ │ │ │ │ ├── __dot__github
│ │ │ │ │ │ └── workflows
│ │ │ │ │ │ │ ├── github-pages.yml
│ │ │ │ │ │ │ └── node.js.yml
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ ├── app-routing.module.ts
│ │ │ │ │ │ └── home
│ │ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ └── responsive.gif
│ │ │ │ └── index.ts
│ │ │ ├── base
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── index.html
│ │ │ │ └── index.ts
│ │ │ ├── empty
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ ├── app-routing.module.ts
│ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ ├── app.component.ts
│ │ │ │ │ │ ├── app.module.ts
│ │ │ │ │ │ └── home
│ │ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ ├── .gitkeep
│ │ │ │ │ │ ├── GitHub
│ │ │ │ │ │ └── github.svg
│ │ │ │ │ │ └── indigo-design.svg
│ │ │ │ └── index.ts
│ │ │ ├── side-nav-auth
│ │ │ │ ├── files
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ │ │ ├── app.module.ts
│ │ │ │ │ │ │ └── authentication
│ │ │ │ │ │ │ │ ├── auth.guard.spec.ts
│ │ │ │ │ │ │ │ ├── auth.guard.ts
│ │ │ │ │ │ │ │ ├── authentication-routing.module.ts
│ │ │ │ │ │ │ │ ├── authentication.module.spec.ts
│ │ │ │ │ │ │ │ ├── authentication.module.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── login-bar
│ │ │ │ │ │ │ │ ├── login-bar.component.html
│ │ │ │ │ │ │ │ ├── login-bar.component.scss
│ │ │ │ │ │ │ │ ├── login-bar.component.spec.ts
│ │ │ │ │ │ │ │ └── login-bar.component.ts
│ │ │ │ │ │ │ │ ├── login-dialog
│ │ │ │ │ │ │ │ ├── login-dialog.component.html
│ │ │ │ │ │ │ │ ├── login-dialog.component.scss
│ │ │ │ │ │ │ │ ├── login-dialog.component.spec.ts
│ │ │ │ │ │ │ │ └── login-dialog.component.ts
│ │ │ │ │ │ │ │ ├── login
│ │ │ │ │ │ │ │ ├── login.component.html
│ │ │ │ │ │ │ │ ├── login.component.scss
│ │ │ │ │ │ │ │ ├── login.component.spec.ts
│ │ │ │ │ │ │ │ └── login.component.ts
│ │ │ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ │ ├── login.ts
│ │ │ │ │ │ │ │ ├── register.ts
│ │ │ │ │ │ │ │ └── user.ts
│ │ │ │ │ │ │ │ ├── profile
│ │ │ │ │ │ │ │ ├── profile.component.html
│ │ │ │ │ │ │ │ ├── profile.component.scss
│ │ │ │ │ │ │ │ ├── profile.component.spec.ts
│ │ │ │ │ │ │ │ └── profile.component.ts
│ │ │ │ │ │ │ │ ├── providers
│ │ │ │ │ │ │ │ ├── auth-provider.ts
│ │ │ │ │ │ │ │ ├── base-oidc-provider.ts
│ │ │ │ │ │ │ │ ├── facebook-provider.ts
│ │ │ │ │ │ │ │ ├── google-provider.ts
│ │ │ │ │ │ │ │ ├── microsoft-provider.ts
│ │ │ │ │ │ │ │ └── providers.spec.ts
│ │ │ │ │ │ │ │ ├── redirect
│ │ │ │ │ │ │ │ ├── redirect.component.spec.ts
│ │ │ │ │ │ │ │ └── redirect.component.ts
│ │ │ │ │ │ │ │ ├── register
│ │ │ │ │ │ │ │ ├── register.component.html
│ │ │ │ │ │ │ │ ├── register.component.scss
│ │ │ │ │ │ │ │ ├── register.component.spec.ts
│ │ │ │ │ │ │ │ └── register.component.ts
│ │ │ │ │ │ │ │ └── services
│ │ │ │ │ │ │ │ ├── authentication.service.ts
│ │ │ │ │ │ │ │ ├── external-auth-configs.ts
│ │ │ │ │ │ │ │ ├── external-auth.service.ts
│ │ │ │ │ │ │ │ ├── fake-backend.service.ts
│ │ │ │ │ │ │ │ ├── jwt-util.ts
│ │ │ │ │ │ │ │ ├── jwt.interceptor.ts
│ │ │ │ │ │ │ │ ├── jwt.spec.ts
│ │ │ │ │ │ │ │ ├── local-storage.ts
│ │ │ │ │ │ │ │ ├── microsoft-keys.ts
│ │ │ │ │ │ │ │ ├── services.spec.ts
│ │ │ │ │ │ │ │ └── user.service.ts
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── tsconfig.app.json
│ │ │ │ │ └── tsconfig.spec.json
│ │ │ │ └── index.ts
│ │ │ └── side-nav
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ ├── app.component.html
│ │ │ │ │ ├── app.component.scss
│ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ ├── app.component.ts
│ │ │ │ │ └── app.module.ts
│ │ │ │ └── index.ts
│ │ ├── radial-gauge
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── select
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ ├── index.ts
│ │ │ ├── select-groups
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.comonent.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── select-in-form
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ ├── stepper
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tabbar
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 12.jpg
│ │ │ │ │ │ ├── 13.jpg
│ │ │ │ │ │ ├── 14.jpg
│ │ │ │ │ │ ├── 15.jpg
│ │ │ │ │ │ ├── 16.jpg
│ │ │ │ │ │ ├── 17.jpg
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ └── 4.jpg
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tabs
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── time-picker
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tooltip
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ └── 2.png
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tree-grid
│ │ │ ├── index.ts
│ │ │ └── tree-grid-custom
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ └── tree
│ │ │ ├── default
│ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ ├── local-data.ts
│ │ │ │ │ └── services
│ │ │ │ │ └── data.service.ts
│ │ │ └── index.ts
│ │ │ └── index.ts
│ ├── igx-ts
│ │ ├── accordion
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── autocomplete
│ │ │ ├── autocomplete-custom
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── towns-data.ts
│ │ │ │ └── index.ts
│ │ │ ├── autocomplete-extended
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── towns-data-extended.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── bullet-graph
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── calendar
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── carousel
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ ├── slide1@x2.jpg
│ │ │ │ │ │ ├── slide2@x2.jpg
│ │ │ │ │ │ ├── slide3@x2.jpg
│ │ │ │ │ │ └── slide4@x2.jpg
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── category-chart
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── chip
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── combo
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── local-data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── custom-templates
│ │ │ ├── awesome-grid
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── services
│ │ │ │ │ │ │ └── data.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── flags
│ │ │ │ │ │ ├── ad.png
│ │ │ │ │ │ ├── ae.png
│ │ │ │ │ │ ├── af.png
│ │ │ │ │ │ ├── ag.png
│ │ │ │ │ │ ├── al.png
│ │ │ │ │ │ ├── am.png
│ │ │ │ │ │ ├── ao.png
│ │ │ │ │ │ ├── ar.png
│ │ │ │ │ │ ├── at.png
│ │ │ │ │ │ ├── au.png
│ │ │ │ │ │ ├── az.png
│ │ │ │ │ │ ├── ba.png
│ │ │ │ │ │ ├── bb.png
│ │ │ │ │ │ ├── bd.png
│ │ │ │ │ │ ├── be.png
│ │ │ │ │ │ ├── bf.png
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── bh.png
│ │ │ │ │ │ ├── bi.png
│ │ │ │ │ │ ├── bj.png
│ │ │ │ │ │ ├── bn.png
│ │ │ │ │ │ ├── bo.png
│ │ │ │ │ │ ├── br.png
│ │ │ │ │ │ ├── bs.png
│ │ │ │ │ │ ├── bt.png
│ │ │ │ │ │ ├── bw.png
│ │ │ │ │ │ ├── by.png
│ │ │ │ │ │ ├── bz.png
│ │ │ │ │ │ ├── ca.png
│ │ │ │ │ │ ├── cd.png
│ │ │ │ │ │ ├── cf.png
│ │ │ │ │ │ ├── cg.png
│ │ │ │ │ │ ├── ch.png
│ │ │ │ │ │ ├── ci.png
│ │ │ │ │ │ ├── ck.png
│ │ │ │ │ │ ├── cl.png
│ │ │ │ │ │ ├── cm.png
│ │ │ │ │ │ ├── cn.png
│ │ │ │ │ │ ├── co.png
│ │ │ │ │ │ ├── cr.png
│ │ │ │ │ │ ├── cu.png
│ │ │ │ │ │ ├── cv.png
│ │ │ │ │ │ ├── cy.png
│ │ │ │ │ │ ├── cz.png
│ │ │ │ │ │ ├── de.png
│ │ │ │ │ │ ├── dj.png
│ │ │ │ │ │ ├── dk.png
│ │ │ │ │ │ ├── dm.png
│ │ │ │ │ │ ├── do.png
│ │ │ │ │ │ ├── dz.png
│ │ │ │ │ │ ├── ec.png
│ │ │ │ │ │ ├── ee.png
│ │ │ │ │ │ ├── eg.png
│ │ │ │ │ │ ├── eh.png
│ │ │ │ │ │ ├── er.png
│ │ │ │ │ │ ├── es.png
│ │ │ │ │ │ ├── et.png
│ │ │ │ │ │ ├── fi.png
│ │ │ │ │ │ ├── fj.png
│ │ │ │ │ │ ├── fm.png
│ │ │ │ │ │ ├── fr.png
│ │ │ │ │ │ ├── ga.png
│ │ │ │ │ │ ├── gb.png
│ │ │ │ │ │ ├── gd.png
│ │ │ │ │ │ ├── ge.png
│ │ │ │ │ │ ├── gh.png
│ │ │ │ │ │ ├── gm.png
│ │ │ │ │ │ ├── gn.png
│ │ │ │ │ │ ├── gq.png
│ │ │ │ │ │ ├── gr.png
│ │ │ │ │ │ ├── gt.png
│ │ │ │ │ │ ├── gw.png
│ │ │ │ │ │ ├── gy.png
│ │ │ │ │ │ ├── hn.png
│ │ │ │ │ │ ├── hr.png
│ │ │ │ │ │ ├── ht.png
│ │ │ │ │ │ ├── hu.png
│ │ │ │ │ │ ├── id.png
│ │ │ │ │ │ ├── ie.png
│ │ │ │ │ │ ├── il.png
│ │ │ │ │ │ ├── in.png
│ │ │ │ │ │ ├── iq.png
│ │ │ │ │ │ ├── ir.png
│ │ │ │ │ │ ├── is.png
│ │ │ │ │ │ ├── it.png
│ │ │ │ │ │ ├── jm.png
│ │ │ │ │ │ ├── jo.png
│ │ │ │ │ │ ├── jp.png
│ │ │ │ │ │ ├── ke.png
│ │ │ │ │ │ ├── kg.png
│ │ │ │ │ │ ├── kh.png
│ │ │ │ │ │ ├── ki.png
│ │ │ │ │ │ ├── km.png
│ │ │ │ │ │ ├── kn.png
│ │ │ │ │ │ ├── kp.png
│ │ │ │ │ │ ├── kr.png
│ │ │ │ │ │ ├── ks.png
│ │ │ │ │ │ ├── kw.png
│ │ │ │ │ │ ├── kz.png
│ │ │ │ │ │ ├── la.png
│ │ │ │ │ │ ├── lb.png
│ │ │ │ │ │ ├── lc.png
│ │ │ │ │ │ ├── li.png
│ │ │ │ │ │ ├── lk.png
│ │ │ │ │ │ ├── lr.png
│ │ │ │ │ │ ├── ls.png
│ │ │ │ │ │ ├── lt.png
│ │ │ │ │ │ ├── lu.png
│ │ │ │ │ │ ├── lv.png
│ │ │ │ │ │ ├── ly.png
│ │ │ │ │ │ ├── ma.png
│ │ │ │ │ │ ├── mc.png
│ │ │ │ │ │ ├── md.png
│ │ │ │ │ │ ├── me.png
│ │ │ │ │ │ ├── mg.png
│ │ │ │ │ │ ├── mh.png
│ │ │ │ │ │ ├── mk.png
│ │ │ │ │ │ ├── ml.png
│ │ │ │ │ │ ├── mm.png
│ │ │ │ │ │ ├── mn.png
│ │ │ │ │ │ ├── mr.png
│ │ │ │ │ │ ├── mt.png
│ │ │ │ │ │ ├── mu.png
│ │ │ │ │ │ ├── mv.png
│ │ │ │ │ │ ├── mw.png
│ │ │ │ │ │ ├── mx.png
│ │ │ │ │ │ ├── my.png
│ │ │ │ │ │ ├── mz.png
│ │ │ │ │ │ ├── na.png
│ │ │ │ │ │ ├── ne.png
│ │ │ │ │ │ ├── ng.png
│ │ │ │ │ │ ├── ni.png
│ │ │ │ │ │ ├── nl.png
│ │ │ │ │ │ ├── no.png
│ │ │ │ │ │ ├── np.png
│ │ │ │ │ │ ├── nr.png
│ │ │ │ │ │ ├── nu.png
│ │ │ │ │ │ ├── nz.png
│ │ │ │ │ │ ├── om.png
│ │ │ │ │ │ ├── pa.png
│ │ │ │ │ │ ├── pe.png
│ │ │ │ │ │ ├── pg.png
│ │ │ │ │ │ ├── ph.png
│ │ │ │ │ │ ├── pk.png
│ │ │ │ │ │ ├── pl.png
│ │ │ │ │ │ ├── pt.png
│ │ │ │ │ │ ├── pw.png
│ │ │ │ │ │ ├── py.png
│ │ │ │ │ │ ├── qa.png
│ │ │ │ │ │ ├── ro.png
│ │ │ │ │ │ ├── rs.png
│ │ │ │ │ │ ├── ru.png
│ │ │ │ │ │ ├── rw.png
│ │ │ │ │ │ ├── sa.png
│ │ │ │ │ │ ├── sb.png
│ │ │ │ │ │ ├── sc.png
│ │ │ │ │ │ ├── sd.png
│ │ │ │ │ │ ├── se.png
│ │ │ │ │ │ ├── sg.png
│ │ │ │ │ │ ├── si.png
│ │ │ │ │ │ ├── sk.png
│ │ │ │ │ │ ├── sl.png
│ │ │ │ │ │ ├── sm.png
│ │ │ │ │ │ ├── sn.png
│ │ │ │ │ │ ├── so.png
│ │ │ │ │ │ ├── sr.png
│ │ │ │ │ │ ├── st.png
│ │ │ │ │ │ ├── sv.png
│ │ │ │ │ │ ├── sy.png
│ │ │ │ │ │ ├── sz.png
│ │ │ │ │ │ ├── td.png
│ │ │ │ │ │ ├── tg.png
│ │ │ │ │ │ ├── th.png
│ │ │ │ │ │ ├── tj.png
│ │ │ │ │ │ ├── tl.png
│ │ │ │ │ │ ├── tm.png
│ │ │ │ │ │ ├── tn.png
│ │ │ │ │ │ ├── to.png
│ │ │ │ │ │ ├── tr.png
│ │ │ │ │ │ ├── tt.png
│ │ │ │ │ │ ├── tv.png
│ │ │ │ │ │ ├── tw.png
│ │ │ │ │ │ ├── tz.png
│ │ │ │ │ │ ├── ua.png
│ │ │ │ │ │ ├── ug.png
│ │ │ │ │ │ ├── us.png
│ │ │ │ │ │ ├── uy.png
│ │ │ │ │ │ ├── uz.png
│ │ │ │ │ │ ├── va.png
│ │ │ │ │ │ ├── vc.png
│ │ │ │ │ │ ├── ve.png
│ │ │ │ │ │ ├── vn.png
│ │ │ │ │ │ ├── vu.png
│ │ │ │ │ │ ├── ws.png
│ │ │ │ │ │ ├── ye.png
│ │ │ │ │ │ ├── za.png
│ │ │ │ │ │ ├── zm.png
│ │ │ │ │ │ └── zw.png
│ │ │ │ │ │ ├── trophy_bronze.svg
│ │ │ │ │ │ ├── trophy_gold.svg
│ │ │ │ │ │ └── trophy_silver.svg
│ │ │ │ └── index.ts
│ │ │ ├── crm-grid
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ │ └── data.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── men
│ │ │ │ │ │ ├── 0.jpg
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 10.jpg
│ │ │ │ │ │ ├── 100.jpg
│ │ │ │ │ │ ├── 11.jpg
│ │ │ │ │ │ ├── 12.jpg
│ │ │ │ │ │ ├── 13.jpg
│ │ │ │ │ │ ├── 14.jpg
│ │ │ │ │ │ ├── 15.jpg
│ │ │ │ │ │ ├── 16.jpg
│ │ │ │ │ │ ├── 17.jpg
│ │ │ │ │ │ ├── 18.jpg
│ │ │ │ │ │ ├── 19.jpg
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 20.jpg
│ │ │ │ │ │ ├── 21.jpg
│ │ │ │ │ │ ├── 22.jpg
│ │ │ │ │ │ ├── 23.jpg
│ │ │ │ │ │ ├── 24.jpg
│ │ │ │ │ │ ├── 25.jpg
│ │ │ │ │ │ ├── 26.jpg
│ │ │ │ │ │ ├── 27.jpg
│ │ │ │ │ │ ├── 28.jpg
│ │ │ │ │ │ ├── 29.jpg
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ ├── 30.jpg
│ │ │ │ │ │ ├── 31.jpg
│ │ │ │ │ │ ├── 32.jpg
│ │ │ │ │ │ ├── 33.jpg
│ │ │ │ │ │ ├── 34.jpg
│ │ │ │ │ │ ├── 35.jpg
│ │ │ │ │ │ ├── 36.jpg
│ │ │ │ │ │ ├── 37.jpg
│ │ │ │ │ │ ├── 38.jpg
│ │ │ │ │ │ ├── 39.jpg
│ │ │ │ │ │ ├── 4.jpg
│ │ │ │ │ │ ├── 40.jpg
│ │ │ │ │ │ ├── 41.jpg
│ │ │ │ │ │ ├── 42.jpg
│ │ │ │ │ │ ├── 43.jpg
│ │ │ │ │ │ ├── 44.jpg
│ │ │ │ │ │ ├── 45.jpg
│ │ │ │ │ │ ├── 46.jpg
│ │ │ │ │ │ ├── 47.jpg
│ │ │ │ │ │ ├── 48.jpg
│ │ │ │ │ │ ├── 49.jpg
│ │ │ │ │ │ ├── 5.jpg
│ │ │ │ │ │ ├── 50.jpg
│ │ │ │ │ │ ├── 51.jpg
│ │ │ │ │ │ ├── 52.jpg
│ │ │ │ │ │ ├── 53.jpg
│ │ │ │ │ │ ├── 54.jpg
│ │ │ │ │ │ ├── 55.jpg
│ │ │ │ │ │ ├── 56.jpg
│ │ │ │ │ │ ├── 57 (1).jpg
│ │ │ │ │ │ ├── 57.jpg
│ │ │ │ │ │ ├── 58.jpg
│ │ │ │ │ │ ├── 59.jpg
│ │ │ │ │ │ ├── 6.jpg
│ │ │ │ │ │ ├── 60.jpg
│ │ │ │ │ │ ├── 61.jpg
│ │ │ │ │ │ ├── 62.jpg
│ │ │ │ │ │ ├── 63.jpg
│ │ │ │ │ │ ├── 64.jpg
│ │ │ │ │ │ ├── 65.jpg
│ │ │ │ │ │ ├── 66.jpg
│ │ │ │ │ │ ├── 67.jpg
│ │ │ │ │ │ ├── 68.jpg
│ │ │ │ │ │ ├── 69.jpg
│ │ │ │ │ │ ├── 7.jpg
│ │ │ │ │ │ ├── 70.jpg
│ │ │ │ │ │ ├── 71.jpg
│ │ │ │ │ │ ├── 72.jpg
│ │ │ │ │ │ ├── 73.jpg
│ │ │ │ │ │ ├── 74.jpg
│ │ │ │ │ │ ├── 75.jpg
│ │ │ │ │ │ ├── 76.jpg
│ │ │ │ │ │ ├── 77.jpg
│ │ │ │ │ │ ├── 78.jpg
│ │ │ │ │ │ ├── 79.jpg
│ │ │ │ │ │ ├── 8.jpg
│ │ │ │ │ │ ├── 80.jpg
│ │ │ │ │ │ ├── 81.jpg
│ │ │ │ │ │ ├── 82.jpg
│ │ │ │ │ │ ├── 83.jpg
│ │ │ │ │ │ ├── 84.jpg
│ │ │ │ │ │ ├── 85.jpg
│ │ │ │ │ │ ├── 86.jpg
│ │ │ │ │ │ ├── 87.jpg
│ │ │ │ │ │ ├── 88.jpg
│ │ │ │ │ │ ├── 89.jpg
│ │ │ │ │ │ ├── 9.jpg
│ │ │ │ │ │ ├── 90.jpg
│ │ │ │ │ │ ├── 91.jpg
│ │ │ │ │ │ ├── 92.jpg
│ │ │ │ │ │ ├── 93.jpg
│ │ │ │ │ │ ├── 94.jpg
│ │ │ │ │ │ ├── 95.jpg
│ │ │ │ │ │ ├── 96.jpg
│ │ │ │ │ │ ├── 97.jpg
│ │ │ │ │ │ ├── 98.jpg
│ │ │ │ │ │ └── 99.jpg
│ │ │ │ │ │ ├── propeller-logo.svg
│ │ │ │ │ │ └── women
│ │ │ │ │ │ ├── 0.jpg
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 10.jpg
│ │ │ │ │ │ ├── 100.jpg
│ │ │ │ │ │ ├── 11.jpg
│ │ │ │ │ │ ├── 12.jpg
│ │ │ │ │ │ ├── 13.jpg
│ │ │ │ │ │ ├── 14.jpg
│ │ │ │ │ │ ├── 15.jpg
│ │ │ │ │ │ ├── 16.jpg
│ │ │ │ │ │ ├── 17.jpg
│ │ │ │ │ │ ├── 18.jpg
│ │ │ │ │ │ ├── 19.jpg
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 20.jpg
│ │ │ │ │ │ ├── 21.jpg
│ │ │ │ │ │ ├── 22.jpg
│ │ │ │ │ │ ├── 23.jpg
│ │ │ │ │ │ ├── 24.jpg
│ │ │ │ │ │ ├── 25.jpg
│ │ │ │ │ │ ├── 26.jpg
│ │ │ │ │ │ ├── 27.jpg
│ │ │ │ │ │ ├── 28.jpg
│ │ │ │ │ │ ├── 29.jpg
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ ├── 30.jpg
│ │ │ │ │ │ ├── 31.jpg
│ │ │ │ │ │ ├── 32.jpg
│ │ │ │ │ │ ├── 33.jpg
│ │ │ │ │ │ ├── 34.jpg
│ │ │ │ │ │ ├── 35.jpg
│ │ │ │ │ │ ├── 36.jpg
│ │ │ │ │ │ ├── 37.jpg
│ │ │ │ │ │ ├── 38.jpg
│ │ │ │ │ │ ├── 39.jpg
│ │ │ │ │ │ ├── 4.jpg
│ │ │ │ │ │ ├── 40.jpg
│ │ │ │ │ │ ├── 41.jpg
│ │ │ │ │ │ ├── 42.jpg
│ │ │ │ │ │ ├── 43.jpg
│ │ │ │ │ │ ├── 44.jpg
│ │ │ │ │ │ ├── 45.jpg
│ │ │ │ │ │ ├── 46.jpg
│ │ │ │ │ │ ├── 47.jpg
│ │ │ │ │ │ ├── 48.jpg
│ │ │ │ │ │ ├── 49.jpg
│ │ │ │ │ │ ├── 5.jpg
│ │ │ │ │ │ ├── 50.jpg
│ │ │ │ │ │ ├── 51.jpg
│ │ │ │ │ │ ├── 52.jpg
│ │ │ │ │ │ ├── 53.jpg
│ │ │ │ │ │ ├── 54.jpg
│ │ │ │ │ │ ├── 55.jpg
│ │ │ │ │ │ ├── 56.jpg
│ │ │ │ │ │ ├── 57.jpg
│ │ │ │ │ │ ├── 58.jpg
│ │ │ │ │ │ ├── 59.jpg
│ │ │ │ │ │ ├── 6.jpg
│ │ │ │ │ │ ├── 60.jpg
│ │ │ │ │ │ ├── 61.jpg
│ │ │ │ │ │ ├── 62.jpg
│ │ │ │ │ │ ├── 63.jpg
│ │ │ │ │ │ ├── 64.jpg
│ │ │ │ │ │ ├── 65.jpg
│ │ │ │ │ │ ├── 66.jpg
│ │ │ │ │ │ ├── 67.jpg
│ │ │ │ │ │ ├── 68.jpg
│ │ │ │ │ │ ├── 69.jpg
│ │ │ │ │ │ ├── 7.jpg
│ │ │ │ │ │ ├── 70.jpg
│ │ │ │ │ │ ├── 71.jpg
│ │ │ │ │ │ ├── 72.jpg
│ │ │ │ │ │ ├── 73.jpg
│ │ │ │ │ │ ├── 74.jpg
│ │ │ │ │ │ ├── 75.jpg
│ │ │ │ │ │ ├── 76.jpg
│ │ │ │ │ │ ├── 77.jpg
│ │ │ │ │ │ ├── 78.jpg
│ │ │ │ │ │ ├── 79.jpg
│ │ │ │ │ │ ├── 8.jpg
│ │ │ │ │ │ ├── 80.jpg
│ │ │ │ │ │ ├── 81.jpg
│ │ │ │ │ │ ├── 82.jpg
│ │ │ │ │ │ ├── 83.jpg
│ │ │ │ │ │ ├── 84.jpg
│ │ │ │ │ │ ├── 85.jpg
│ │ │ │ │ │ ├── 86.jpg
│ │ │ │ │ │ ├── 87.jpg
│ │ │ │ │ │ ├── 88.jpg
│ │ │ │ │ │ ├── 89.jpg
│ │ │ │ │ │ ├── 9.jpg
│ │ │ │ │ │ ├── 90.jpg
│ │ │ │ │ │ ├── 91.jpg
│ │ │ │ │ │ ├── 92.jpg
│ │ │ │ │ │ ├── 93.jpg
│ │ │ │ │ │ ├── 94.jpg
│ │ │ │ │ │ ├── 95.jpg
│ │ │ │ │ │ ├── 96.jpg
│ │ │ │ │ │ ├── 97.jpg
│ │ │ │ │ │ ├── 98.jpg
│ │ │ │ │ │ └── 99.jpg
│ │ │ │ └── index.ts
│ │ │ ├── fintech-grid
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ ├── localData.service.ts
│ │ │ │ │ │ └── localData
│ │ │ │ │ │ └── financialData.ts
│ │ │ │ └── index.ts
│ │ │ ├── fintech-tree-grid
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ └── financialData.ts
│ │ │ │ │ │ ├── localData.service.ts
│ │ │ │ │ │ └── tree-grid-grouping.pipe.ts
│ │ │ │ └── index.ts
│ │ │ ├── login
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── weather-forecast
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ └── weather-data.ts
│ │ │ │ └── index.ts
│ │ ├── date-picker
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── dialog
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── dock-manager
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── dropdown
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── local-data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── financial-chart
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── generate
│ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ └── template.json
│ │ ├── grid
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid-batch-editing
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid-custom
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ │ ├── grid-summaries
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ │ ├── index.ts
│ │ │ └── multi-column-headers
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ ├── groups.json
│ │ ├── hierarchical-grid
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid-batch-editing
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ ├── data.ts
│ │ │ │ │ │ └── singer.ts
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid-custom
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ ├── hierarchical-grid-summaries
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ ├── custom-summary.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── index.ts
│ │ ├── input-group
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── linear-gauge
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── list
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── map
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── pivot-grid
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ │ └── data.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── projects
│ │ │ ├── _base
│ │ │ │ ├── files
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── __dot__azure
│ │ │ │ │ │ └── azure-pipelines.yml
│ │ │ │ │ ├── __dot__editorconfig
│ │ │ │ │ ├── __dot__github
│ │ │ │ │ │ └── workflows
│ │ │ │ │ │ │ ├── github-pages.yml
│ │ │ │ │ │ │ └── node.js.yml
│ │ │ │ │ ├── __dot__gitignore
│ │ │ │ │ ├── __dot__vscode
│ │ │ │ │ │ ├── extensions.json
│ │ │ │ │ │ ├── launch.json
│ │ │ │ │ │ └── tasks.json
│ │ │ │ │ ├── angular.json
│ │ │ │ │ ├── eslint.config.mjs
│ │ │ │ │ ├── ignite-ui-cli.json
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── public
│ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ │ │ ├── app.component.ts
│ │ │ │ │ │ │ ├── app.config.ts
│ │ │ │ │ │ │ ├── app.routes.ts
│ │ │ │ │ │ │ └── error-routing
│ │ │ │ │ │ │ │ ├── error
│ │ │ │ │ │ │ │ ├── global-error-handler.service.ts
│ │ │ │ │ │ │ │ └── uncaught-error.component.ts
│ │ │ │ │ │ │ │ └── not-found
│ │ │ │ │ │ │ │ └── not-found.component.ts
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── __dot__gitkeep
│ │ │ │ │ │ ├── environments
│ │ │ │ │ │ │ ├── environment.prod.ts
│ │ │ │ │ │ │ └── environment.ts
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── main.ts
│ │ │ │ │ │ └── styles.scss
│ │ │ │ │ ├── tsconfig.app.json
│ │ │ │ │ ├── tsconfig.json
│ │ │ │ │ └── tsconfig.spec.json
│ │ │ │ └── index.ts
│ │ │ ├── _base_with_home
│ │ │ │ ├── files
│ │ │ │ │ ├── __dot__azure
│ │ │ │ │ │ └── azure-pipelines.yml
│ │ │ │ │ ├── __dot__github
│ │ │ │ │ │ └── workflows
│ │ │ │ │ │ │ ├── github-pages.yml
│ │ │ │ │ │ │ └── node.js.yml
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ ├── app.config.ts
│ │ │ │ │ │ ├── app.routes.ts
│ │ │ │ │ │ └── home
│ │ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ │ ├── home.component.spec.ts
│ │ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ └── responsive.gif
│ │ │ │ │ │ └── index.html
│ │ │ │ └── index.ts
│ │ │ ├── base
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── index.html
│ │ │ │ └── index.ts
│ │ │ ├── empty
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ ├── app.component.ts
│ │ │ │ │ │ ├── app.config.ts
│ │ │ │ │ │ ├── app.routes.ts
│ │ │ │ │ │ └── home
│ │ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ │ └── home.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ ├── .gitkeep
│ │ │ │ │ │ ├── GitHub
│ │ │ │ │ │ └── github.svg
│ │ │ │ │ │ └── indigo-design.svg
│ │ │ │ └── index.ts
│ │ │ ├── side-nav-auth
│ │ │ │ ├── files
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ │ │ ├── app.component.ts
│ │ │ │ │ │ │ ├── app.config.ts
│ │ │ │ │ │ │ ├── app.module.ts
│ │ │ │ │ │ │ ├── app.routes.ts
│ │ │ │ │ │ │ └── authentication
│ │ │ │ │ │ │ │ ├── auth.guard.spec.ts
│ │ │ │ │ │ │ │ ├── auth.guard.ts
│ │ │ │ │ │ │ │ ├── authentication-routing.module.ts
│ │ │ │ │ │ │ │ ├── authentication.module.spec.ts
│ │ │ │ │ │ │ │ ├── authentication.module.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── login-bar
│ │ │ │ │ │ │ │ ├── login-bar.component.html
│ │ │ │ │ │ │ │ ├── login-bar.component.scss
│ │ │ │ │ │ │ │ ├── login-bar.component.spec.ts
│ │ │ │ │ │ │ │ └── login-bar.component.ts
│ │ │ │ │ │ │ │ ├── login-dialog
│ │ │ │ │ │ │ │ ├── login-dialog.component.html
│ │ │ │ │ │ │ │ ├── login-dialog.component.scss
│ │ │ │ │ │ │ │ ├── login-dialog.component.spec.ts
│ │ │ │ │ │ │ │ └── login-dialog.component.ts
│ │ │ │ │ │ │ │ ├── login
│ │ │ │ │ │ │ │ ├── login.component.html
│ │ │ │ │ │ │ │ ├── login.component.scss
│ │ │ │ │ │ │ │ ├── login.component.spec.ts
│ │ │ │ │ │ │ │ └── login.component.ts
│ │ │ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ │ ├── login.ts
│ │ │ │ │ │ │ │ ├── register.ts
│ │ │ │ │ │ │ │ └── user.ts
│ │ │ │ │ │ │ │ ├── profile
│ │ │ │ │ │ │ │ ├── profile.component.html
│ │ │ │ │ │ │ │ ├── profile.component.scss
│ │ │ │ │ │ │ │ ├── profile.component.spec.ts
│ │ │ │ │ │ │ │ └── profile.component.ts
│ │ │ │ │ │ │ │ ├── providers
│ │ │ │ │ │ │ │ ├── auth-provider.ts
│ │ │ │ │ │ │ │ ├── base-oidc-provider.ts
│ │ │ │ │ │ │ │ ├── facebook-provider.ts
│ │ │ │ │ │ │ │ ├── google-provider.ts
│ │ │ │ │ │ │ │ ├── microsoft-provider.ts
│ │ │ │ │ │ │ │ └── providers.spec.ts
│ │ │ │ │ │ │ │ ├── redirect
│ │ │ │ │ │ │ │ ├── redirect.component.spec.ts
│ │ │ │ │ │ │ │ └── redirect.component.ts
│ │ │ │ │ │ │ │ ├── register
│ │ │ │ │ │ │ │ ├── register.component.html
│ │ │ │ │ │ │ │ ├── register.component.scss
│ │ │ │ │ │ │ │ ├── register.component.spec.ts
│ │ │ │ │ │ │ │ └── register.component.ts
│ │ │ │ │ │ │ │ └── services
│ │ │ │ │ │ │ │ ├── authentication.service.ts
│ │ │ │ │ │ │ │ ├── external-auth-configs.ts
│ │ │ │ │ │ │ │ ├── external-auth.service.ts
│ │ │ │ │ │ │ │ ├── fake-backend.service.ts
│ │ │ │ │ │ │ │ ├── jwt-util.ts
│ │ │ │ │ │ │ │ ├── jwt.interceptor.ts
│ │ │ │ │ │ │ │ ├── jwt.spec.ts
│ │ │ │ │ │ │ │ ├── local-storage.ts
│ │ │ │ │ │ │ │ ├── microsoft-keys.ts
│ │ │ │ │ │ │ │ ├── services.spec.ts
│ │ │ │ │ │ │ │ └── user.service.ts
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── tsconfig.app.json
│ │ │ │ │ └── tsconfig.spec.json
│ │ │ │ └── index.ts
│ │ │ └── side-nav
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ ├── app.component.html
│ │ │ │ │ ├── app.component.scss
│ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ ├── app.component.ts
│ │ │ │ │ └── app.config.ts
│ │ │ │ └── index.ts
│ │ ├── radial-gauge
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── select
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ ├── index.ts
│ │ │ ├── select-groups
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.comonent.spec.ts
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── select-in-form
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ ├── stepper
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tabbar
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 12.jpg
│ │ │ │ │ │ ├── 13.jpg
│ │ │ │ │ │ ├── 14.jpg
│ │ │ │ │ │ ├── 15.jpg
│ │ │ │ │ │ ├── 16.jpg
│ │ │ │ │ │ ├── 17.jpg
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ └── 4.jpg
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tabs
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── time-picker
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ └── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tooltip
│ │ │ ├── default
│ │ │ │ ├── files
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ └── __path__
│ │ │ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ │ │ └── __filePrefix__.component.ts
│ │ │ │ │ │ └── assets
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ └── 2.png
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── tree-grid
│ │ │ ├── index.ts
│ │ │ └── tree-grid-custom
│ │ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ └── localData.ts
│ │ │ │ └── index.ts
│ │ └── tree
│ │ │ ├── default
│ │ │ ├── files
│ │ │ │ └── src
│ │ │ │ │ └── app
│ │ │ │ │ └── __path__
│ │ │ │ │ ├── __filePrefix__.component.html
│ │ │ │ │ ├── __filePrefix__.component.scss
│ │ │ │ │ ├── __filePrefix__.component.spec.ts
│ │ │ │ │ ├── __filePrefix__.component.ts
│ │ │ │ │ ├── local-data.ts
│ │ │ │ │ └── services
│ │ │ │ │ └── data.service.ts
│ │ │ └── index.ts
│ │ │ └── index.ts
│ ├── index.ts
│ ├── package.json
│ └── types
│ │ ├── AngularDecoratorMetaTarget.ts
│ │ ├── AngularRouteEntry.ts
│ │ ├── AngularRouteLike.ts
│ │ ├── enumerations
│ │ ├── AngularDecoratorMetaTargetType.ts
│ │ ├── AngularDecoratorName.ts
│ │ └── AngularRouteTarget.ts
│ │ └── index.ts
└── ng-schematics
│ ├── .npmignore
│ ├── README.md
│ ├── package.json
│ ├── scripts
│ ├── install.ts
│ └── uninstall.ts
│ ├── src
│ ├── SchematicsTemplateManager.ts
│ ├── app-projects
│ │ ├── index.ts
│ │ ├── index_spec.ts
│ │ └── schema.ts
│ ├── cli-config
│ │ ├── files
│ │ │ └── ignite-ui-cli.json
│ │ ├── index.ts
│ │ └── index_spec.ts
│ ├── collection.json
│ ├── component
│ │ ├── index.ts
│ │ ├── index_spec.ts
│ │ ├── schema.json
│ │ └── schema.ts
│ ├── migrations
│ │ ├── interfaces
│ │ │ └── options.ts
│ │ ├── migration-collection.json
│ │ ├── schema.json
│ │ └── update-1
│ │ │ ├── index.spec.ts
│ │ │ └── index.ts
│ ├── ng-new
│ │ ├── index.ts
│ │ ├── index_spec.ts
│ │ ├── schema.json
│ │ └── schema.ts
│ ├── prompt
│ │ └── SchematicsPromptSession.ts
│ ├── start
│ │ └── index.ts
│ ├── tslint.json
│ ├── upgrade-packages
│ │ ├── index.spec.ts
│ │ ├── index.ts
│ │ └── schema.json
│ └── utils
│ │ ├── NgFileSystem.ts
│ │ ├── cli-config.ts
│ │ └── theme-import.ts
│ └── tsconfig.json
├── scripts
├── build-task.ts
├── changelogScript.ts
└── versionScript.ts
├── spec
├── acceptance
│ ├── add-spec.ts
│ ├── config-spec.ts
│ ├── generate-spec.ts
│ ├── help-spec.ts
│ └── new-spec.ts
├── helpers
│ ├── mocks.ts
│ └── utils.ts
├── jasmine-runner.ts
├── templates
│ ├── angular-spec.ts
│ ├── jquery-spec.ts
│ └── react-spec.ts
└── unit
│ ├── BaseProjectLibrary-spec.ts
│ ├── GoogleAnalytic-spec.ts
│ ├── ProjectConfig-spec.ts
│ ├── PromptSession-spec.ts
│ ├── TemplateManager-spec.ts
│ ├── TypeScript-AST-Transformer-spec.ts
│ ├── TypeScriptNodeFactory-spec.ts
│ ├── Util-spec.ts
│ ├── add-spec.ts
│ ├── base-templates
│ ├── AngularTemplate-spec.ts
│ └── IgniteUIForAngularTemplate-spec.ts
│ ├── cli-spec.ts
│ ├── config-spec.ts
│ ├── doc-spec.ts
│ ├── generate-spec.ts
│ ├── gridHelper-spec.ts
│ ├── list-spec.ts
│ ├── new-spec.ts
│ ├── packageManager-spec.ts
│ ├── packageResolve-spec.ts
│ ├── start-spec.ts
│ ├── test-spec.ts
│ ├── ts-transform
│ ├── AngularTypeScriptFileUpdate-spec.ts
│ ├── Mock-FS.ts
│ ├── ReactTypeScriptFileUpdate-spec.ts
│ ├── TypeScriptUtils-spec.ts
│ ├── WebComponentsTypeScriptFileUpdate-spec.ts
│ ├── formatted.ts-template
│ └── unformatted.ts-template
│ ├── update-spec.ts
│ └── upgrade-spec.ts
├── tsconfig-pack.json
├── tsconfig.json
└── yarn.lock
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Closes # .
2 |
3 | Additional information related to this pull request:
4 |
5 |
--------------------------------------------------------------------------------
/assets/igniteui-cli.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IgniteUI/igniteui-cli/471443d024899d53cb75255d01f61c1cca968d6b/assets/igniteui-cli.gif
--------------------------------------------------------------------------------
/lerna.json:
--------------------------------------------------------------------------------
1 | {
2 | "packages": [
3 | "packages/*"
4 | ],
5 | "npmClient": "yarn",
6 | "version": "independent",
7 | "changelog": {
8 | "repo": "igniteui-cli-repo",
9 | "cacheDir": ".changelog"
10 | }
11 | }
--------------------------------------------------------------------------------
/output/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IgniteUI/igniteui-cli/471443d024899d53cb75255d01f61c1cca968d6b/output/.gitkeep
--------------------------------------------------------------------------------
/packages/cli/templates/angular/ig-ts/projects/empty/files/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | :host {
2 | display: flex;
3 | background: url(../assets/lines-bottom-right.svg) right bottom;
4 | background-repeat: no-repeat;
5 | height: 100vh;
6 | }
7 |
--------------------------------------------------------------------------------
/packages/cli/templates/angular/ig-ts/projects/empty/files/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |