├── .gitignore
├── README.md
├── assets
└── screen-shot.png
├── domain-model
├── staffer-domain-model.mdzip
└── staffer-domain-model.png
├── staffer-ng2-basic
├── .clang-format
├── .editorconfig
├── .gitignore
├── README.md
├── angular-cli-build.js
├── angular-cli.json
├── config
│ ├── environment.dev.ts
│ ├── environment.js
│ ├── environment.prod.ts
│ ├── karma-test-shim.js
│ ├── karma.conf.js
│ └── protractor.conf.js
├── e2e
│ ├── app.e2e.ts
│ ├── app.po.ts
│ ├── tsconfig.json
│ └── typings.d.ts
├── package.json
├── public
│ ├── .npmignore
│ └── main.scss
├── src
│ ├── app
│ │ ├── environment.ts
│ │ ├── index.ts
│ │ ├── needs-panel
│ │ │ ├── index.ts
│ │ │ ├── needs-filter
│ │ │ │ ├── index.ts
│ │ │ │ ├── needs-filter.component.html
│ │ │ │ ├── needs-filter.component.scss
│ │ │ │ ├── needs-filter.component.spec.ts
│ │ │ │ └── needs-filter.component.ts
│ │ │ ├── needs-panel.component.html
│ │ │ ├── needs-panel.component.scss
│ │ │ ├── needs-panel.component.spec.ts
│ │ │ ├── needs-panel.component.ts
│ │ │ └── needs-table
│ │ │ │ ├── index.ts
│ │ │ │ ├── needs-table.component.html
│ │ │ │ ├── needs-table.component.scss
│ │ │ │ ├── needs-table.component.spec.ts
│ │ │ │ └── needs-table.component.ts
│ │ ├── people-panel
│ │ │ ├── index.ts
│ │ │ ├── people-panel.component.html
│ │ │ ├── people-panel.component.scss
│ │ │ ├── people-panel.component.spec.ts
│ │ │ ├── people-panel.component.ts
│ │ │ └── people-table
│ │ │ │ ├── index.ts
│ │ │ │ ├── people-table.component.html
│ │ │ │ ├── people-table.component.scss
│ │ │ │ ├── people-table.component.spec.ts
│ │ │ │ └── people-table.component.ts
│ │ ├── shared
│ │ │ ├── config
│ │ │ │ └── app.config.ts
│ │ │ ├── index.ts
│ │ │ ├── models
│ │ │ │ └── index.ts
│ │ │ └── services
│ │ │ │ ├── event.service.spec.ts
│ │ │ │ ├── event.service.ts
│ │ │ │ ├── needs.service.spec.ts
│ │ │ │ ├── needs.service.ts
│ │ │ │ ├── people.service.spec.ts
│ │ │ │ ├── people.service.ts
│ │ │ │ ├── projects.service.spec.ts
│ │ │ │ ├── projects.service.ts
│ │ │ │ ├── skills.service.spec.ts
│ │ │ │ └── skills.service.ts
│ │ ├── staffer-ng2.component.html
│ │ ├── staffer-ng2.component.scss
│ │ ├── staffer-ng2.component.spec.ts
│ │ └── staffer-ng2.component.ts
│ ├── favicon.png
│ ├── index.html
│ ├── main.ts
│ ├── system-config.ts
│ ├── tsconfig.json
│ └── typings.d.ts
├── tslint.json
└── typings.json
├── staffer-ng2-falcor
├── .clang-format
├── .editorconfig
├── .gitignore
├── README.md
├── angular-cli-build.js
├── angular-cli.json
├── config
│ ├── environment.dev.ts
│ ├── environment.js
│ ├── environment.prod.ts
│ ├── karma-test-shim.js
│ ├── karma.conf.js
│ └── protractor.conf.js
├── e2e
│ ├── app.e2e.ts
│ ├── app.po.ts
│ ├── tsconfig.json
│ └── typings.d.ts
├── package.json
├── public
│ ├── .npmignore
│ └── main.scss
├── src
│ ├── app
│ │ ├── environment.ts
│ │ ├── index.ts
│ │ ├── needs-panel
│ │ │ ├── index.ts
│ │ │ ├── needs-filter
│ │ │ │ ├── index.ts
│ │ │ │ ├── needs-filter.component.html
│ │ │ │ ├── needs-filter.component.scss
│ │ │ │ ├── needs-filter.component.spec.ts
│ │ │ │ └── needs-filter.component.ts
│ │ │ ├── needs-panel.component.html
│ │ │ ├── needs-panel.component.scss
│ │ │ ├── needs-panel.component.spec.ts
│ │ │ ├── needs-panel.component.ts
│ │ │ └── needs-table
│ │ │ │ ├── index.ts
│ │ │ │ ├── needs-table.component.html
│ │ │ │ ├── needs-table.component.scss
│ │ │ │ ├── needs-table.component.spec.ts
│ │ │ │ └── needs-table.component.ts
│ │ ├── people-panel
│ │ │ ├── index.ts
│ │ │ ├── people-panel.component.html
│ │ │ ├── people-panel.component.scss
│ │ │ ├── people-panel.component.spec.ts
│ │ │ ├── people-panel.component.ts
│ │ │ └── people-table
│ │ │ │ ├── index.ts
│ │ │ │ ├── people-table.component.html
│ │ │ │ ├── people-table.component.scss
│ │ │ │ ├── people-table.component.spec.ts
│ │ │ │ └── people-table.component.ts
│ │ ├── shared
│ │ │ ├── config
│ │ │ │ └── app.config.ts
│ │ │ ├── index.ts
│ │ │ ├── models
│ │ │ │ └── index.ts
│ │ │ └── services
│ │ │ │ ├── event.service.spec.ts
│ │ │ │ ├── event.service.ts
│ │ │ │ ├── falcor.service.spec.ts
│ │ │ │ ├── falcor.service.ts
│ │ │ │ ├── needs.service.spec.ts
│ │ │ │ ├── needs.service.ts
│ │ │ │ ├── people.service.spec.ts
│ │ │ │ ├── people.service.ts
│ │ │ │ ├── projects.service.spec.ts
│ │ │ │ ├── projects.service.ts
│ │ │ │ ├── skills.service.spec.ts
│ │ │ │ └── skills.service.ts
│ │ ├── staffer-ng2.component.html
│ │ ├── staffer-ng2.component.scss
│ │ ├── staffer-ng2.component.spec.ts
│ │ └── staffer-ng2.component.ts
│ ├── favicon.png
│ ├── index.html
│ ├── main.ts
│ ├── system-config.ts
│ ├── tsconfig.json
│ └── typings.d.ts
├── tslint.json
└── typings.json
├── staffer-ng2-ngrxstore
├── .clang-format
├── .editorconfig
├── .gitignore
├── README.md
├── angular-cli-build.js
├── angular-cli.json
├── config
│ ├── environment.dev.ts
│ ├── environment.js
│ ├── environment.prod.ts
│ ├── karma-test-shim.js
│ ├── karma.conf.js
│ └── protractor.conf.js
├── e2e
│ ├── app.e2e.ts
│ ├── app.po.ts
│ ├── tsconfig.json
│ └── typings.d.ts
├── package.json
├── public
│ ├── .npmignore
│ └── main.scss
├── src
│ ├── app
│ │ ├── app-bar
│ │ │ ├── app-bar.component.html
│ │ │ ├── app-bar.component.scss
│ │ │ ├── app-bar.component.spec.ts
│ │ │ ├── app-bar.component.ts
│ │ │ └── index.ts
│ │ ├── environment.ts
│ │ ├── index.ts
│ │ ├── needs-panel
│ │ │ ├── index.ts
│ │ │ ├── needs-filter
│ │ │ │ ├── index.ts
│ │ │ │ ├── needs-filter.component.html
│ │ │ │ ├── needs-filter.component.scss
│ │ │ │ ├── needs-filter.component.spec.ts
│ │ │ │ └── needs-filter.component.ts
│ │ │ ├── needs-panel.component.html
│ │ │ ├── needs-panel.component.scss
│ │ │ ├── needs-panel.component.spec.ts
│ │ │ ├── needs-panel.component.ts
│ │ │ └── needs-table
│ │ │ │ ├── index.ts
│ │ │ │ ├── needs-table.component.html
│ │ │ │ ├── needs-table.component.scss
│ │ │ │ ├── needs-table.component.spec.ts
│ │ │ │ └── needs-table.component.ts
│ │ ├── people-panel
│ │ │ ├── index.ts
│ │ │ ├── people-panel.component.html
│ │ │ ├── people-panel.component.scss
│ │ │ ├── people-panel.component.spec.ts
│ │ │ ├── people-panel.component.ts
│ │ │ └── people-table
│ │ │ │ ├── index.ts
│ │ │ │ ├── people-table.component.html
│ │ │ │ ├── people-table.component.scss
│ │ │ │ ├── people-table.component.spec.ts
│ │ │ │ └── people-table.component.ts
│ │ ├── shared
│ │ │ ├── config
│ │ │ │ └── app.config.ts
│ │ │ ├── index.ts
│ │ │ ├── models
│ │ │ │ └── index.ts
│ │ │ ├── services
│ │ │ │ ├── event.service.spec.ts
│ │ │ │ ├── event.service.ts
│ │ │ │ ├── needs.service.spec.ts
│ │ │ │ ├── needs.service.ts
│ │ │ │ ├── people.service.spec.ts
│ │ │ │ ├── people.service.ts
│ │ │ │ ├── projects.service.spec.ts
│ │ │ │ ├── projects.service.ts
│ │ │ │ ├── skills.service.spec.ts
│ │ │ │ └── skills.service.ts
│ │ │ └── store
│ │ │ │ ├── action-creator.ts
│ │ │ │ ├── reducers.ts
│ │ │ │ └── state.ts
│ │ ├── staffer-ng2.component.html
│ │ ├── staffer-ng2.component.scss
│ │ ├── staffer-ng2.component.spec.ts
│ │ └── staffer-ng2.component.ts
│ ├── favicon.png
│ ├── index.html
│ ├── main.ts
│ ├── system-config.ts
│ ├── tsconfig.json
│ └── typings.d.ts
├── tslint.json
└── typings.json
├── staffer-ng2-redux
├── .clang-format
├── .editorconfig
├── .gitignore
├── README.md
├── angular-cli-build.js
├── angular-cli.json
├── config
│ ├── environment.dev.ts
│ ├── environment.js
│ ├── environment.prod.ts
│ ├── karma-test-shim.js
│ ├── karma.conf.js
│ └── protractor.conf.js
├── e2e
│ ├── app.e2e.ts
│ ├── app.po.ts
│ ├── tsconfig.json
│ └── typings.d.ts
├── package.json
├── public
│ ├── .npmignore
│ └── main.scss
├── src
│ ├── app
│ │ ├── environment.ts
│ │ ├── index.ts
│ │ ├── needs-panel
│ │ │ ├── index.ts
│ │ │ ├── needs-filter
│ │ │ │ ├── index.ts
│ │ │ │ ├── needs-filter.component.html
│ │ │ │ ├── needs-filter.component.scss
│ │ │ │ ├── needs-filter.component.spec.ts
│ │ │ │ └── needs-filter.component.ts
│ │ │ ├── needs-panel.component.html
│ │ │ ├── needs-panel.component.scss
│ │ │ ├── needs-panel.component.spec.ts
│ │ │ ├── needs-panel.component.ts
│ │ │ └── needs-table
│ │ │ │ ├── index.ts
│ │ │ │ ├── needs-table.component.html
│ │ │ │ ├── needs-table.component.scss
│ │ │ │ ├── needs-table.component.spec.ts
│ │ │ │ └── needs-table.component.ts
│ │ ├── people-panel
│ │ │ ├── index.ts
│ │ │ ├── people-panel.component.html
│ │ │ ├── people-panel.component.scss
│ │ │ ├── people-panel.component.spec.ts
│ │ │ ├── people-panel.component.ts
│ │ │ └── people-table
│ │ │ │ ├── index.ts
│ │ │ │ ├── people-table.component.html
│ │ │ │ ├── people-table.component.scss
│ │ │ │ ├── people-table.component.spec.ts
│ │ │ │ └── people-table.component.ts
│ │ ├── shared
│ │ │ ├── config
│ │ │ │ └── app.config.ts
│ │ │ ├── index.ts
│ │ │ ├── models
│ │ │ │ └── index.ts
│ │ │ ├── services
│ │ │ │ ├── needs.service.spec.ts
│ │ │ │ ├── needs.service.ts
│ │ │ │ ├── people.service.spec.ts
│ │ │ │ ├── people.service.ts
│ │ │ │ ├── projects.service.spec.ts
│ │ │ │ ├── projects.service.ts
│ │ │ │ ├── skills.service.spec.ts
│ │ │ │ └── skills.service.ts
│ │ │ └── store
│ │ │ │ ├── actions.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── reducer.ts
│ │ ├── staffer-ng2.component.html
│ │ ├── staffer-ng2.component.scss
│ │ ├── staffer-ng2.component.spec.ts
│ │ └── staffer-ng2.component.ts
│ ├── favicon.png
│ ├── index.html
│ ├── main.ts
│ ├── system-config.ts
│ ├── tsconfig.json
│ └── typings.d.ts
├── tslint.json
└── typings.json
├── staffer-react-mobx
├── README.md
├── package.json
├── src
│ ├── ContextProvider.jsx
│ ├── StafferView.jsx
│ ├── app-bar
│ │ ├── AppBar.jsx
│ │ └── app-bar.scss
│ ├── index.html
│ ├── main.js
│ ├── main.scss
│ ├── needs-panel
│ │ ├── NeedsPanel.jsx
│ │ ├── needs-filter
│ │ │ ├── NeedsFilter.jsx
│ │ │ └── needs-filter.scss
│ │ └── needs-table
│ │ │ ├── NeedsTable.jsx
│ │ │ └── needs-table.scss
│ ├── people-panel
│ │ ├── PeoplePanel.jsx
│ │ └── people-table
│ │ │ ├── PeopleTable.jsx
│ │ │ └── people-table.scss
│ ├── store.js
│ └── styles
│ │ └── _utilities.scss
└── webpack.config.js
├── staffer-react-redux
├── .eslintrc.json
├── .gitignore
├── README.md
├── package.json
├── src
│ ├── app
│ │ ├── components
│ │ │ └── app.jsx
│ │ ├── index.js
│ │ ├── reducer.js
│ │ └── store.js
│ ├── index.html
│ ├── main.js
│ ├── staffing
│ │ ├── actions.js
│ │ ├── components
│ │ │ ├── header
│ │ │ │ ├── header.css
│ │ │ │ ├── header.jsx
│ │ │ │ └── index.js
│ │ │ ├── needs-filter
│ │ │ │ ├── index.js
│ │ │ │ ├── needs-filter.css
│ │ │ │ └── needs-filter.jsx
│ │ │ ├── needs-table
│ │ │ │ ├── index.js
│ │ │ │ ├── needs-table.css
│ │ │ │ └── needs-table.jsx
│ │ │ ├── people-table
│ │ │ │ ├── index.js
│ │ │ │ ├── people-table.css
│ │ │ │ └── people-table.jsx
│ │ │ ├── staffing-page.css
│ │ │ └── staffing-page.jsx
│ │ ├── constants.js
│ │ ├── index.js
│ │ ├── reducer.js
│ │ └── selectors.js
│ └── styles
│ │ ├── _colors.css
│ │ └── styles.css
└── webpack.config.js
├── staffer-server-concepts
├── .gitignore
├── README.md
├── package.json
└── src
│ ├── data.js
│ ├── public
│ ├── .gitignore
│ ├── index.html
│ ├── main.js
│ └── package.json
│ └── server.js
├── staffer-server-falcor
├── .gitignore
├── README.md
├── package.json
└── src
│ ├── public
│ ├── .gitignore
│ ├── index.html
│ ├── main.js
│ └── package.json
│ └── server.js
├── staffer-server-rest
├── .gitignore
├── README.md
├── gulp.config.js
├── gulpfile.js
├── package.json
├── src
│ └── server.ts
├── tsconfig.json
├── tslint.json
└── typings.json
├── staffer-sql
├── README.md
├── create-schema.sql
├── generate-data
│ ├── .gitignore
│ ├── README.md
│ ├── gulp.config.js
│ ├── gulpfile.js
│ ├── package.json
│ ├── src
│ │ └── generate-data.ts
│ ├── tsconfig.json
│ ├── tslint.json
│ └── typings.json
├── load-data.sql
└── search-needs.sql
└── staffer-vue
├── .babelrc
├── .editorconfig
├── .eslintrc.js
├── .gitignore
├── README.md
├── index.html
├── package.json
├── src
├── app
│ ├── app.html
│ ├── app.scss
│ └── index.js
├── format-date.js
├── main.js
├── needs-filter
│ ├── index.js
│ ├── needs-filter.html
│ └── needs-filter.scss
├── needs-table
│ ├── index.js
│ ├── need.html
│ ├── needs-table.html
│ └── needs-table.scss
├── people-table
│ ├── index.js
│ ├── people-table.html
│ ├── people-table.scss
│ └── person.html
├── store.js
└── styles
│ ├── _base.scss
│ ├── _flex-box.scss
│ └── _theme.scss
└── webpack.config.js
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/.gitignore
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/README.md
--------------------------------------------------------------------------------
/assets/screen-shot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/assets/screen-shot.png
--------------------------------------------------------------------------------
/domain-model/staffer-domain-model.mdzip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/domain-model/staffer-domain-model.mdzip
--------------------------------------------------------------------------------
/domain-model/staffer-domain-model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/domain-model/staffer-domain-model.png
--------------------------------------------------------------------------------
/staffer-ng2-basic/.clang-format:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/.clang-format
--------------------------------------------------------------------------------
/staffer-ng2-basic/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/.editorconfig
--------------------------------------------------------------------------------
/staffer-ng2-basic/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/.gitignore
--------------------------------------------------------------------------------
/staffer-ng2-basic/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/README.md
--------------------------------------------------------------------------------
/staffer-ng2-basic/angular-cli-build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/angular-cli-build.js
--------------------------------------------------------------------------------
/staffer-ng2-basic/angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/angular-cli.json
--------------------------------------------------------------------------------
/staffer-ng2-basic/config/environment.dev.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: false
3 | };
4 |
--------------------------------------------------------------------------------
/staffer-ng2-basic/config/environment.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/config/environment.js
--------------------------------------------------------------------------------
/staffer-ng2-basic/config/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/staffer-ng2-basic/config/karma-test-shim.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/config/karma-test-shim.js
--------------------------------------------------------------------------------
/staffer-ng2-basic/config/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/config/karma.conf.js
--------------------------------------------------------------------------------
/staffer-ng2-basic/config/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/config/protractor.conf.js
--------------------------------------------------------------------------------
/staffer-ng2-basic/e2e/app.e2e.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/e2e/app.e2e.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/e2e/app.po.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/e2e/tsconfig.json
--------------------------------------------------------------------------------
/staffer-ng2-basic/e2e/typings.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/staffer-ng2-basic/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/package.json
--------------------------------------------------------------------------------
/staffer-ng2-basic/public/.npmignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/staffer-ng2-basic/public/main.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/public/main.scss
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/environment.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-filter/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-filter/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-filter/needs-filter.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-filter/needs-filter.component.html
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-filter/needs-filter.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-filter/needs-filter.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-filter/needs-filter.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-filter/needs-filter.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-filter/needs-filter.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-filter/needs-filter.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-panel.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-panel.component.html
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-panel.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-panel.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-panel.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-panel.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-panel.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-panel.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-table/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-table/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-table/needs-table.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-table/needs-table.component.html
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-table/needs-table.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-table/needs-table.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-table/needs-table.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-table/needs-table.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/needs-panel/needs-table/needs-table.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/needs-panel/needs-table/needs-table.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-panel.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-panel.component.html
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-panel.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-panel.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-panel.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-panel.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-panel.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-panel.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-table/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-table/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-table/people-table.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-table/people-table.component.html
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-table/people-table.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-table/people-table.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-table/people-table.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-table/people-table.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/people-panel/people-table/people-table.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/people-panel/people-table/people-table.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/config/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/config/app.config.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/models/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/models/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/event.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/event.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/event.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/event.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/needs.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/needs.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/needs.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/needs.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/people.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/people.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/people.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/people.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/projects.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/projects.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/projects.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/projects.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/skills.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/skills.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/shared/services/skills.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/shared/services/skills.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/staffer-ng2.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/staffer-ng2.component.html
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/staffer-ng2.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/staffer-ng2.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/staffer-ng2.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/staffer-ng2.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/app/staffer-ng2.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/app/staffer-ng2.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/favicon.png
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/index.html
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/main.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/system-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/system-config.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/tsconfig.json
--------------------------------------------------------------------------------
/staffer-ng2-basic/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/src/typings.d.ts
--------------------------------------------------------------------------------
/staffer-ng2-basic/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/tslint.json
--------------------------------------------------------------------------------
/staffer-ng2-basic/typings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-basic/typings.json
--------------------------------------------------------------------------------
/staffer-ng2-falcor/.clang-format:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/.clang-format
--------------------------------------------------------------------------------
/staffer-ng2-falcor/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/.editorconfig
--------------------------------------------------------------------------------
/staffer-ng2-falcor/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/.gitignore
--------------------------------------------------------------------------------
/staffer-ng2-falcor/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/README.md
--------------------------------------------------------------------------------
/staffer-ng2-falcor/angular-cli-build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/angular-cli-build.js
--------------------------------------------------------------------------------
/staffer-ng2-falcor/angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/angular-cli.json
--------------------------------------------------------------------------------
/staffer-ng2-falcor/config/environment.dev.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: false
3 | };
4 |
--------------------------------------------------------------------------------
/staffer-ng2-falcor/config/environment.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/config/environment.js
--------------------------------------------------------------------------------
/staffer-ng2-falcor/config/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/staffer-ng2-falcor/config/karma-test-shim.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/config/karma-test-shim.js
--------------------------------------------------------------------------------
/staffer-ng2-falcor/config/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/config/karma.conf.js
--------------------------------------------------------------------------------
/staffer-ng2-falcor/config/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/config/protractor.conf.js
--------------------------------------------------------------------------------
/staffer-ng2-falcor/e2e/app.e2e.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/e2e/app.e2e.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/e2e/app.po.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/e2e/tsconfig.json
--------------------------------------------------------------------------------
/staffer-ng2-falcor/e2e/typings.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/staffer-ng2-falcor/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/package.json
--------------------------------------------------------------------------------
/staffer-ng2-falcor/public/.npmignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/staffer-ng2-falcor/public/main.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/public/main.scss
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/environment.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-filter/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-filter/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-filter/needs-filter.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-filter/needs-filter.component.html
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-filter/needs-filter.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-filter/needs-filter.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-filter/needs-filter.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-filter/needs-filter.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-filter/needs-filter.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-filter/needs-filter.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-panel.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-panel.component.html
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-panel.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-panel.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-panel.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-panel.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-panel.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-panel.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-table/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-table/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-table/needs-table.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-table/needs-table.component.html
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-table/needs-table.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-table/needs-table.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-table/needs-table.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-table/needs-table.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/needs-panel/needs-table/needs-table.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/needs-panel/needs-table/needs-table.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-panel.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-panel.component.html
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-panel.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-panel.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-panel.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-panel.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-panel.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-panel.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-table/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-table/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-table/people-table.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-table/people-table.component.html
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-table/people-table.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-table/people-table.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-table/people-table.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-table/people-table.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/people-panel/people-table/people-table.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/people-panel/people-table/people-table.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/config/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/config/app.config.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/models/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/models/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/event.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/event.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/event.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/event.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/falcor.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/falcor.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/falcor.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/falcor.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/needs.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/needs.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/needs.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/needs.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/people.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/people.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/people.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/people.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/projects.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/projects.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/projects.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/projects.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/skills.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/skills.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/shared/services/skills.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/shared/services/skills.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/staffer-ng2.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/staffer-ng2.component.html
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/staffer-ng2.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/staffer-ng2.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/staffer-ng2.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/staffer-ng2.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/app/staffer-ng2.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/app/staffer-ng2.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/favicon.png
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/index.html
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/main.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/system-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/system-config.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/tsconfig.json
--------------------------------------------------------------------------------
/staffer-ng2-falcor/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/src/typings.d.ts
--------------------------------------------------------------------------------
/staffer-ng2-falcor/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/tslint.json
--------------------------------------------------------------------------------
/staffer-ng2-falcor/typings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-falcor/typings.json
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/.clang-format:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/.clang-format
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/.editorconfig
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/.gitignore
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/README.md
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/angular-cli-build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/angular-cli-build.js
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/angular-cli.json
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/config/environment.dev.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: false
3 | };
4 |
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/config/environment.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/config/environment.js
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/config/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/config/karma-test-shim.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/config/karma-test-shim.js
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/config/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/config/karma.conf.js
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/config/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/config/protractor.conf.js
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/e2e/app.e2e.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/e2e/app.e2e.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/e2e/app.po.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/e2e/tsconfig.json
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/e2e/typings.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/package.json
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/public/.npmignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/public/main.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/public/main.scss
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/app-bar/app-bar.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/app-bar/app-bar.component.html
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/app-bar/app-bar.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/app-bar/app-bar.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/app-bar/app-bar.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/app-bar/app-bar.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/app-bar/app-bar.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/app-bar/app-bar.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/app-bar/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/app-bar/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/environment.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/needs-filter.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/needs-filter.component.html
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/needs-filter.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/needs-filter.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/needs-filter.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/needs-filter.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/needs-filter.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-filter/needs-filter.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-panel.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-panel.component.html
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-panel.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-panel.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-panel.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-panel.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-panel.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-panel.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/needs-table.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/needs-table.component.html
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/needs-table.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/needs-table.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/needs-table.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/needs-table.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/needs-table.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/needs-panel/needs-table/needs-table.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-panel.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-panel.component.html
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-panel.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-panel.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-panel.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-panel.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-panel.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-panel.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-table/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-table/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-table/people-table.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-table/people-table.component.html
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-table/people-table.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-table/people-table.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-table/people-table.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-table/people-table.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/people-panel/people-table/people-table.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/people-panel/people-table/people-table.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/config/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/config/app.config.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/models/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/models/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/event.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/event.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/event.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/event.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/needs.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/needs.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/needs.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/needs.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/people.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/people.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/people.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/people.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/projects.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/projects.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/projects.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/projects.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/skills.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/skills.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/services/skills.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/services/skills.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/store/action-creator.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/store/action-creator.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/store/reducers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/store/reducers.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/shared/store/state.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/shared/store/state.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/staffer-ng2.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/staffer-ng2.component.html
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/staffer-ng2.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/staffer-ng2.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/staffer-ng2.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/staffer-ng2.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/app/staffer-ng2.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/app/staffer-ng2.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/favicon.png
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/index.html
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/main.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/system-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/system-config.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/tsconfig.json
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/src/typings.d.ts
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/tslint.json
--------------------------------------------------------------------------------
/staffer-ng2-ngrxstore/typings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-ngrxstore/typings.json
--------------------------------------------------------------------------------
/staffer-ng2-redux/.clang-format:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/.clang-format
--------------------------------------------------------------------------------
/staffer-ng2-redux/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/.editorconfig
--------------------------------------------------------------------------------
/staffer-ng2-redux/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/.gitignore
--------------------------------------------------------------------------------
/staffer-ng2-redux/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/README.md
--------------------------------------------------------------------------------
/staffer-ng2-redux/angular-cli-build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/angular-cli-build.js
--------------------------------------------------------------------------------
/staffer-ng2-redux/angular-cli.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/angular-cli.json
--------------------------------------------------------------------------------
/staffer-ng2-redux/config/environment.dev.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: false
3 | };
4 |
--------------------------------------------------------------------------------
/staffer-ng2-redux/config/environment.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/config/environment.js
--------------------------------------------------------------------------------
/staffer-ng2-redux/config/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/staffer-ng2-redux/config/karma-test-shim.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/config/karma-test-shim.js
--------------------------------------------------------------------------------
/staffer-ng2-redux/config/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/config/karma.conf.js
--------------------------------------------------------------------------------
/staffer-ng2-redux/config/protractor.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/config/protractor.conf.js
--------------------------------------------------------------------------------
/staffer-ng2-redux/e2e/app.e2e.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/e2e/app.e2e.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/e2e/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/e2e/app.po.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/e2e/tsconfig.json
--------------------------------------------------------------------------------
/staffer-ng2-redux/e2e/typings.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/staffer-ng2-redux/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/package.json
--------------------------------------------------------------------------------
/staffer-ng2-redux/public/.npmignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/staffer-ng2-redux/public/main.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/public/main.scss
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/environment.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-filter/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-filter/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-filter/needs-filter.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-filter/needs-filter.component.html
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-filter/needs-filter.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-filter/needs-filter.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-filter/needs-filter.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-filter/needs-filter.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-filter/needs-filter.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-filter/needs-filter.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-panel.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-panel.component.html
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-panel.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-panel.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-panel.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-panel.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-panel.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-panel.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-table/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-table/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-table/needs-table.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-table/needs-table.component.html
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-table/needs-table.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-table/needs-table.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-table/needs-table.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-table/needs-table.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/needs-panel/needs-table/needs-table.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/needs-panel/needs-table/needs-table.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-panel.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-panel.component.html
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-panel.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-panel.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-panel.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-panel.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-panel.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-panel.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-table/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-table/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-table/people-table.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-table/people-table.component.html
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-table/people-table.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-table/people-table.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-table/people-table.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-table/people-table.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/people-panel/people-table/people-table.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/people-panel/people-table/people-table.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/config/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/config/app.config.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/models/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/models/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/services/needs.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/services/needs.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/services/needs.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/services/needs.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/services/people.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/services/people.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/services/people.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/services/people.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/services/projects.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/services/projects.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/services/projects.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/services/projects.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/services/skills.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/services/skills.service.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/services/skills.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/services/skills.service.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/store/actions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/store/actions.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/store/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/store/index.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/shared/store/reducer.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/shared/store/reducer.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/staffer-ng2.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/staffer-ng2.component.html
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/staffer-ng2.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/staffer-ng2.component.scss
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/staffer-ng2.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/staffer-ng2.component.spec.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/app/staffer-ng2.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/app/staffer-ng2.component.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/favicon.png
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/index.html
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/main.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/system-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/system-config.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/tsconfig.json
--------------------------------------------------------------------------------
/staffer-ng2-redux/src/typings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/src/typings.d.ts
--------------------------------------------------------------------------------
/staffer-ng2-redux/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/tslint.json
--------------------------------------------------------------------------------
/staffer-ng2-redux/typings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-ng2-redux/typings.json
--------------------------------------------------------------------------------
/staffer-react-mobx/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/README.md
--------------------------------------------------------------------------------
/staffer-react-mobx/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/package.json
--------------------------------------------------------------------------------
/staffer-react-mobx/src/ContextProvider.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/ContextProvider.jsx
--------------------------------------------------------------------------------
/staffer-react-mobx/src/StafferView.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/StafferView.jsx
--------------------------------------------------------------------------------
/staffer-react-mobx/src/app-bar/AppBar.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/app-bar/AppBar.jsx
--------------------------------------------------------------------------------
/staffer-react-mobx/src/app-bar/app-bar.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/app-bar/app-bar.scss
--------------------------------------------------------------------------------
/staffer-react-mobx/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/index.html
--------------------------------------------------------------------------------
/staffer-react-mobx/src/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/main.js
--------------------------------------------------------------------------------
/staffer-react-mobx/src/main.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/main.scss
--------------------------------------------------------------------------------
/staffer-react-mobx/src/needs-panel/NeedsPanel.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/needs-panel/NeedsPanel.jsx
--------------------------------------------------------------------------------
/staffer-react-mobx/src/needs-panel/needs-filter/NeedsFilter.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/needs-panel/needs-filter/NeedsFilter.jsx
--------------------------------------------------------------------------------
/staffer-react-mobx/src/needs-panel/needs-filter/needs-filter.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/needs-panel/needs-filter/needs-filter.scss
--------------------------------------------------------------------------------
/staffer-react-mobx/src/needs-panel/needs-table/NeedsTable.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/needs-panel/needs-table/NeedsTable.jsx
--------------------------------------------------------------------------------
/staffer-react-mobx/src/needs-panel/needs-table/needs-table.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/needs-panel/needs-table/needs-table.scss
--------------------------------------------------------------------------------
/staffer-react-mobx/src/people-panel/PeoplePanel.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/people-panel/PeoplePanel.jsx
--------------------------------------------------------------------------------
/staffer-react-mobx/src/people-panel/people-table/PeopleTable.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/people-panel/people-table/PeopleTable.jsx
--------------------------------------------------------------------------------
/staffer-react-mobx/src/people-panel/people-table/people-table.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/people-panel/people-table/people-table.scss
--------------------------------------------------------------------------------
/staffer-react-mobx/src/store.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/store.js
--------------------------------------------------------------------------------
/staffer-react-mobx/src/styles/_utilities.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/src/styles/_utilities.scss
--------------------------------------------------------------------------------
/staffer-react-mobx/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-mobx/webpack.config.js
--------------------------------------------------------------------------------
/staffer-react-redux/.eslintrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/.eslintrc.json
--------------------------------------------------------------------------------
/staffer-react-redux/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/.gitignore
--------------------------------------------------------------------------------
/staffer-react-redux/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/README.md
--------------------------------------------------------------------------------
/staffer-react-redux/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/package.json
--------------------------------------------------------------------------------
/staffer-react-redux/src/app/components/app.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/app/components/app.jsx
--------------------------------------------------------------------------------
/staffer-react-redux/src/app/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/app/index.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/app/reducer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/app/reducer.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/app/store.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/app/store.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/index.html
--------------------------------------------------------------------------------
/staffer-react-redux/src/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/main.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/actions.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/actions.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/header/header.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/header/header.css
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/header/header.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/header/header.jsx
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/header/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/header/index.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/needs-filter/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/needs-filter/index.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/needs-filter/needs-filter.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/needs-filter/needs-filter.css
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/needs-filter/needs-filter.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/needs-filter/needs-filter.jsx
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/needs-table/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/needs-table/index.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/needs-table/needs-table.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/needs-table/needs-table.css
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/needs-table/needs-table.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/needs-table/needs-table.jsx
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/people-table/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/people-table/index.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/people-table/people-table.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/people-table/people-table.css
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/people-table/people-table.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/people-table/people-table.jsx
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/staffing-page.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/staffing-page.css
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/components/staffing-page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/components/staffing-page.jsx
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/constants.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/constants.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/index.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/reducer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/reducer.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/staffing/selectors.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/staffing/selectors.js
--------------------------------------------------------------------------------
/staffer-react-redux/src/styles/_colors.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/styles/_colors.css
--------------------------------------------------------------------------------
/staffer-react-redux/src/styles/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/src/styles/styles.css
--------------------------------------------------------------------------------
/staffer-react-redux/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-react-redux/webpack.config.js
--------------------------------------------------------------------------------
/staffer-server-concepts/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/.gitignore
--------------------------------------------------------------------------------
/staffer-server-concepts/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/README.md
--------------------------------------------------------------------------------
/staffer-server-concepts/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/package.json
--------------------------------------------------------------------------------
/staffer-server-concepts/src/data.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/src/data.js
--------------------------------------------------------------------------------
/staffer-server-concepts/src/public/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/src/public/.gitignore
--------------------------------------------------------------------------------
/staffer-server-concepts/src/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/src/public/index.html
--------------------------------------------------------------------------------
/staffer-server-concepts/src/public/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/src/public/main.js
--------------------------------------------------------------------------------
/staffer-server-concepts/src/public/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/src/public/package.json
--------------------------------------------------------------------------------
/staffer-server-concepts/src/server.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-concepts/src/server.js
--------------------------------------------------------------------------------
/staffer-server-falcor/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-falcor/.gitignore
--------------------------------------------------------------------------------
/staffer-server-falcor/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-falcor/README.md
--------------------------------------------------------------------------------
/staffer-server-falcor/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-falcor/package.json
--------------------------------------------------------------------------------
/staffer-server-falcor/src/public/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-falcor/src/public/.gitignore
--------------------------------------------------------------------------------
/staffer-server-falcor/src/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-falcor/src/public/index.html
--------------------------------------------------------------------------------
/staffer-server-falcor/src/public/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-falcor/src/public/main.js
--------------------------------------------------------------------------------
/staffer-server-falcor/src/public/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-falcor/src/public/package.json
--------------------------------------------------------------------------------
/staffer-server-falcor/src/server.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-falcor/src/server.js
--------------------------------------------------------------------------------
/staffer-server-rest/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/.gitignore
--------------------------------------------------------------------------------
/staffer-server-rest/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/README.md
--------------------------------------------------------------------------------
/staffer-server-rest/gulp.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/gulp.config.js
--------------------------------------------------------------------------------
/staffer-server-rest/gulpfile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/gulpfile.js
--------------------------------------------------------------------------------
/staffer-server-rest/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/package.json
--------------------------------------------------------------------------------
/staffer-server-rest/src/server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/src/server.ts
--------------------------------------------------------------------------------
/staffer-server-rest/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/tsconfig.json
--------------------------------------------------------------------------------
/staffer-server-rest/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/tslint.json
--------------------------------------------------------------------------------
/staffer-server-rest/typings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-server-rest/typings.json
--------------------------------------------------------------------------------
/staffer-sql/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/README.md
--------------------------------------------------------------------------------
/staffer-sql/create-schema.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/create-schema.sql
--------------------------------------------------------------------------------
/staffer-sql/generate-data/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/.gitignore
--------------------------------------------------------------------------------
/staffer-sql/generate-data/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/README.md
--------------------------------------------------------------------------------
/staffer-sql/generate-data/gulp.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/gulp.config.js
--------------------------------------------------------------------------------
/staffer-sql/generate-data/gulpfile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/gulpfile.js
--------------------------------------------------------------------------------
/staffer-sql/generate-data/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/package.json
--------------------------------------------------------------------------------
/staffer-sql/generate-data/src/generate-data.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/src/generate-data.ts
--------------------------------------------------------------------------------
/staffer-sql/generate-data/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/tsconfig.json
--------------------------------------------------------------------------------
/staffer-sql/generate-data/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/tslint.json
--------------------------------------------------------------------------------
/staffer-sql/generate-data/typings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/generate-data/typings.json
--------------------------------------------------------------------------------
/staffer-sql/load-data.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/load-data.sql
--------------------------------------------------------------------------------
/staffer-sql/search-needs.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-sql/search-needs.sql
--------------------------------------------------------------------------------
/staffer-vue/.babelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/.babelrc
--------------------------------------------------------------------------------
/staffer-vue/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/.editorconfig
--------------------------------------------------------------------------------
/staffer-vue/.eslintrc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/.eslintrc.js
--------------------------------------------------------------------------------
/staffer-vue/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/.gitignore
--------------------------------------------------------------------------------
/staffer-vue/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/README.md
--------------------------------------------------------------------------------
/staffer-vue/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/index.html
--------------------------------------------------------------------------------
/staffer-vue/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/package.json
--------------------------------------------------------------------------------
/staffer-vue/src/app/app.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/app/app.html
--------------------------------------------------------------------------------
/staffer-vue/src/app/app.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/app/app.scss
--------------------------------------------------------------------------------
/staffer-vue/src/app/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/app/index.js
--------------------------------------------------------------------------------
/staffer-vue/src/format-date.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/format-date.js
--------------------------------------------------------------------------------
/staffer-vue/src/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/main.js
--------------------------------------------------------------------------------
/staffer-vue/src/needs-filter/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/needs-filter/index.js
--------------------------------------------------------------------------------
/staffer-vue/src/needs-filter/needs-filter.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/needs-filter/needs-filter.html
--------------------------------------------------------------------------------
/staffer-vue/src/needs-filter/needs-filter.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/needs-filter/needs-filter.scss
--------------------------------------------------------------------------------
/staffer-vue/src/needs-table/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/needs-table/index.js
--------------------------------------------------------------------------------
/staffer-vue/src/needs-table/need.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/needs-table/need.html
--------------------------------------------------------------------------------
/staffer-vue/src/needs-table/needs-table.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/needs-table/needs-table.html
--------------------------------------------------------------------------------
/staffer-vue/src/needs-table/needs-table.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/needs-table/needs-table.scss
--------------------------------------------------------------------------------
/staffer-vue/src/people-table/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/people-table/index.js
--------------------------------------------------------------------------------
/staffer-vue/src/people-table/people-table.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/people-table/people-table.html
--------------------------------------------------------------------------------
/staffer-vue/src/people-table/people-table.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/people-table/people-table.scss
--------------------------------------------------------------------------------
/staffer-vue/src/people-table/person.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/people-table/person.html
--------------------------------------------------------------------------------
/staffer-vue/src/store.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/store.js
--------------------------------------------------------------------------------
/staffer-vue/src/styles/_base.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/styles/_base.scss
--------------------------------------------------------------------------------
/staffer-vue/src/styles/_flex-box.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/styles/_flex-box.scss
--------------------------------------------------------------------------------
/staffer-vue/src/styles/_theme.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/src/styles/_theme.scss
--------------------------------------------------------------------------------
/staffer-vue/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapientglobalmarkets/staffer/HEAD/staffer-vue/webpack.config.js
--------------------------------------------------------------------------------