├── projects ├── go-tester │ ├── src │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── app │ │ │ ├── app.component.scss │ │ │ ├── components │ │ │ │ ├── search-test │ │ │ │ │ ├── search-test.component.html │ │ │ │ │ └── search-test.component.ts │ │ │ │ ├── test-page-1 │ │ │ │ │ ├── test-page-1.component.html │ │ │ │ │ └── test-page-1.component.ts │ │ │ │ └── test-page-2 │ │ │ │ │ ├── test-page-2.component.ts │ │ │ │ │ └── test-page-2.component.html │ │ │ ├── app.guard.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.service.ts │ │ │ ├── app.module.ts │ │ │ └── app.component.html │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── test.ts │ │ ├── styles.scss │ │ └── polyfills.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ ├── tslint.json │ ├── browserslist │ └── karma.conf.js ├── go-lib │ ├── src │ │ ├── lib │ │ │ ├── animations │ │ │ │ ├── _configs.ts │ │ │ │ ├── off-canvas.animation.ts │ │ │ │ ├── toasts.ts │ │ │ │ ├── fade.animation.ts │ │ │ │ ├── route.animation.ts │ │ │ │ └── search.animation.ts │ │ │ ├── components │ │ │ │ ├── go-icon │ │ │ │ │ ├── go-icon.component.html │ │ │ │ │ ├── go-icon.module.ts │ │ │ │ │ ├── go-icon.component.ts │ │ │ │ │ └── go-icon.component.spec.ts │ │ │ │ ├── go-accordion │ │ │ │ │ ├── go-accordion.component.html │ │ │ │ │ ├── go-accordion.component.scss │ │ │ │ │ ├── go-accordion.module.ts │ │ │ │ │ ├── go-accordion-panel.component.ts │ │ │ │ │ ├── go-accordion.component.spec.ts │ │ │ │ │ ├── go-accordion-panel.component.spec.ts │ │ │ │ │ ├── go-accordion-panel.component.html │ │ │ │ │ ├── go-accordion.component.ts │ │ │ │ │ └── go-accordion-panel.component.scss │ │ │ │ ├── go-toaster │ │ │ │ │ ├── go-toaster.model.ts │ │ │ │ │ ├── go-toaster.component.html │ │ │ │ │ ├── go-toaster.component.scss │ │ │ │ │ ├── go-toaster.component.ts │ │ │ │ │ ├── go-toaster.module.ts │ │ │ │ │ └── go-toaster.service.ts │ │ │ │ ├── go-side-nav │ │ │ │ │ ├── nav-item.model.ts │ │ │ │ │ ├── nav-group.model.ts │ │ │ │ │ ├── go-side-nav │ │ │ │ │ │ ├── go-side-nav.component.html │ │ │ │ │ │ ├── go-side-nav.service.ts │ │ │ │ │ │ ├── go-side-nav.component.scss │ │ │ │ │ │ └── go-side-nav.component.ts │ │ │ │ │ ├── go-nav-item │ │ │ │ │ │ ├── go-nav-item.component.ts │ │ │ │ │ │ ├── go-nav-item.component.html │ │ │ │ │ │ └── go-nav-item.component.scss │ │ │ │ │ ├── go-side-nav.module.ts │ │ │ │ │ └── go-nav-group │ │ │ │ │ │ ├── go-nav-group.component.ts │ │ │ │ │ │ ├── go-nav-group.component.scss │ │ │ │ │ │ └── go-nav-group.component.html │ │ │ │ ├── go-modal │ │ │ │ │ ├── go-modal.item.ts │ │ │ │ │ ├── go-modal.directive.ts │ │ │ │ │ ├── go-modal.component.html │ │ │ │ │ ├── go-modal.module.ts │ │ │ │ │ ├── go-modal.service.ts │ │ │ │ │ ├── go-modal.component.spec.ts │ │ │ │ │ ├── go-modal.component.scss │ │ │ │ │ └── go-modal.component.ts │ │ │ │ ├── go-off-canvas │ │ │ │ │ ├── go-off-canvas.interface.ts │ │ │ │ │ ├── go-off-canvas.directive.ts │ │ │ │ │ ├── go-off-canvas.component.html │ │ │ │ │ ├── go-off-canvas.module.ts │ │ │ │ │ ├── go-off-canvas.service.ts │ │ │ │ │ ├── go-off-canvas.component.scss │ │ │ │ │ └── go-off-canvas.component.ts │ │ │ │ ├── go-card │ │ │ │ │ ├── go-card.component.html │ │ │ │ │ ├── go-card.module.ts │ │ │ │ │ ├── go-card.component.ts │ │ │ │ │ ├── go-card.component.scss │ │ │ │ │ └── go-card.component.spec.ts │ │ │ │ ├── go-table │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── go-table-paging.model.ts │ │ │ │ │ ├── go-table-sort.model.ts │ │ │ │ │ ├── go-table-column.component.ts │ │ │ │ │ ├── go-table-utils.ts │ │ │ │ │ ├── go-table.module.ts │ │ │ │ │ ├── go-table-config.model.ts │ │ │ │ │ ├── go-table.component.spec.ts │ │ │ │ │ ├── go-table.component.scss │ │ │ │ │ ├── go-table.component.html │ │ │ │ │ └── go-table.component.ts │ │ │ │ ├── go-icon-button │ │ │ │ │ ├── go-icon-button.component.html │ │ │ │ │ ├── go-icon-button.module.ts │ │ │ │ │ ├── go-icon-button.component.scss │ │ │ │ │ └── go-icon-button.component.ts │ │ │ │ ├── go-button │ │ │ │ │ ├── go-button.component.html │ │ │ │ │ ├── go-button.module.ts │ │ │ │ │ ├── go-button.component.ts │ │ │ │ │ └── go-button.component.spec.ts │ │ │ │ ├── go-toast │ │ │ │ │ ├── go-toast.module.ts │ │ │ │ │ ├── go-toast.component.html │ │ │ │ │ ├── go-toast.component.ts │ │ │ │ │ ├── go-toast.component.scss │ │ │ │ │ └── go-toast.component.spec.ts │ │ │ │ ├── go-action-sheet │ │ │ │ │ ├── go-action-sheet.component.html │ │ │ │ │ ├── go-action-sheet.module.ts │ │ │ │ │ ├── go-panel │ │ │ │ │ │ ├── go-panel.component.spec.ts │ │ │ │ │ │ ├── go-panel.component.html │ │ │ │ │ │ ├── go-panel.component.ts │ │ │ │ │ │ └── go-panel.component.scss │ │ │ │ │ ├── go-action-sheet.component.spec.ts │ │ │ │ │ ├── go-action-sheet.component.ts │ │ │ │ │ └── go-action-sheet.component.scss │ │ │ │ ├── go-loader │ │ │ │ │ ├── go-loader.module.ts │ │ │ │ │ ├── go-loader.component.html │ │ │ │ │ ├── go-loader.component.ts │ │ │ │ │ ├── go-loader.component.scss │ │ │ │ │ └── go-loader.component.spec.ts │ │ │ │ ├── go-header │ │ │ │ │ ├── go-header.module.ts │ │ │ │ │ ├── go-header.component.spec.ts │ │ │ │ │ ├── go-header.component.html │ │ │ │ │ ├── go-header.component.ts │ │ │ │ │ └── go-header.component.scss │ │ │ │ ├── go-layout │ │ │ │ │ ├── go-layout.component.html │ │ │ │ │ ├── go-layout.component.scss │ │ │ │ │ ├── go-layout.component.ts │ │ │ │ │ ├── go-layout.module.ts │ │ │ │ │ └── go-layout.component.spec.ts │ │ │ │ └── go-search │ │ │ │ │ ├── go-search.module.ts │ │ │ │ │ ├── go-search.component.spec.ts │ │ │ │ │ ├── go-search.component.html │ │ │ │ │ ├── go-search.service.ts │ │ │ │ │ ├── go-search.component.ts │ │ │ │ │ └── go-search.component.scss │ │ │ └── go-shared.module.ts │ │ ├── styles │ │ │ ├── _mixins.scss │ │ │ └── _variables.scss │ │ ├── test.ts │ │ └── public_api.ts │ ├── ng-package.json │ ├── tslint.json │ ├── tsconfig.spec.json │ ├── package.json │ ├── karma.conf.js │ └── tsconfig.lib.json └── go-tester-e2e │ ├── src │ ├── app.po.ts │ └── app.e2e-spec.ts │ ├── tsconfig.e2e.json │ └── protractor.conf.js ├── sass-port.sh ├── .travis.yml ├── local_install.js ├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── --feature-request.md │ └── --bug-report.md ├── .gitignore ├── tsconfig.json ├── tslint.json ├── LICENSE ├── package.json ├── README.md ├── CODE_OF_CONDUCT.md └── angular.json /projects/go-tester/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/go-tester/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects/go-tester/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /projects/go-tester/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eligolding/goponents/master/projects/go-tester/src/favicon.ico -------------------------------------------------------------------------------- /projects/go-lib/src/lib/animations/_configs.ts: -------------------------------------------------------------------------------- 1 | export const timing = '.5s '; 2 | export const easing = 'cubic-bezier(.25, .8, .25, 1)'; 3 | -------------------------------------------------------------------------------- /projects/go-lib/src/lib/components/go-icon/go-icon.component.html: -------------------------------------------------------------------------------- 1 | 5 | {{ icon }} 6 | 7 | -------------------------------------------------------------------------------- /projects/go-lib/src/lib/components/go-accordion/go-accordion.component.html: -------------------------------------------------------------------------------- 1 |
| {{ item.id }} | 4 |{{ item.name.first }} | 5 |{{ item.name.last }} | 6 |{{ item.email }} | 7 |{{ item.gender }} | 8 |{{ item.ip_address }} | 9 |
|
20 |
21 |
29 | |
30 |
|---|
|
42 | |
49 |
| {{ localTableConfig.noDataText }} |