Added portal-FE-common - angular upgrade code 71/99271/2
authorSudarshan Kumar <sudarshan.kumar@att.com>
Fri, 6 Dec 2019 17:20:16 +0000 (22:50 +0530)
committerSudarshan Kumar <sudarshan.kumar@att.com>
Tue, 10 Dec 2019 16:11:01 +0000 (21:41 +0530)
commitf446cfb57f14004d6b34b137f8fa9802f6fdbdf6
tree3470b3a5991cd5a5d281dbbca39e449fb3648f0a
parentffd9af970318c1f5a0bad46d7aad5d4611414aae
Added portal-FE-common -  angular upgrade code

Added Layout Component- Footeter, global-search, header, header-menu, search-user, sidebar, tabbar, userbar and also added Account Onbaording changes

Issue-ID: PORTAL-795
Change-Id: I815add150ba12c868c1b0f80f3dfcdf4ea804d70
Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
150 files changed:
portal-FE-common/.gitignore [new file with mode: 0644]
portal-FE-common/pom.xml [new file with mode: 0644]
portal-FE-common/src/app/layout/components/footer/footer.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/components/footer/footer.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/components/footer/footer.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/footer/footer.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/global-search/global-search.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/components/global-search/global-search.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/components/global-search/global-search.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/global-search/global-search.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/header-menu/header-menu.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/components/header-menu/header-menu.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/components/header-menu/header-menu.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/header-menu/header-menu.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/header/header.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/components/header/header.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/components/header/header.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/header/header.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/search-users/search-users.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/components/search-users/search-users.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/components/search-users/search-users.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/search-users/search-users.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/sidebar/sidebar.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/components/sidebar/sidebar.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/components/sidebar/sidebar.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/sidebar/sidebar.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/tabbar/tab.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/components/tabbar/tabbar.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/components/tabbar/tabbar.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/tabbar/tabbar.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/userbar/userbar.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/components/userbar/userbar.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/components/userbar/userbar.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/components/userbar/userbar.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/layout-routing.module.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/layout.component.html [new file with mode: 0644]
portal-FE-common/src/app/layout/layout.component.scss [new file with mode: 0644]
portal-FE-common/src/app/layout/layout.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/layout.component.ts [new file with mode: 0644]
portal-FE-common/src/app/layout/layout.module.ts [new file with mode: 0644]
portal-FE-common/src/app/modals/confirmation-modal/confirmation-modal.component.html [new file with mode: 0644]
portal-FE-common/src/app/modals/confirmation-modal/confirmation-modal.component.scss [new file with mode: 0644]
portal-FE-common/src/app/modals/confirmation-modal/confirmation-modal.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/modals/confirmation-modal/confirmation-modal.component.ts [new file with mode: 0644]
portal-FE-common/src/app/modals/information-modal/information-modal.component.html [new file with mode: 0644]
portal-FE-common/src/app/modals/information-modal/information-modal.component.scss [new file with mode: 0644]
portal-FE-common/src/app/modals/information-modal/information-modal.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/modals/information-modal/information-modal.component.ts [new file with mode: 0644]
portal-FE-common/src/app/ng-material-module.ts [new file with mode: 0644]
portal-FE-common/src/app/pages/account-onboarding/account-add-details/account-add-details.component.html [new file with mode: 0644]
portal-FE-common/src/app/pages/account-onboarding/account-add-details/account-add-details.component.scss [new file with mode: 0644]
portal-FE-common/src/app/pages/account-onboarding/account-add-details/account-add-details.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/pages/account-onboarding/account-add-details/account-add-details.component.ts [new file with mode: 0644]
portal-FE-common/src/app/pages/account-onboarding/account-onboarding.component.html [new file with mode: 0644]
portal-FE-common/src/app/pages/account-onboarding/account-onboarding.component.scss [new file with mode: 0644]
portal-FE-common/src/app/pages/account-onboarding/account-onboarding.component.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/pages/account-onboarding/account-onboarding.component.ts [new file with mode: 0644]
portal-FE-common/src/app/shared/model/account-onboarding/accountOnboarding.ts [new file with mode: 0644]
portal-FE-common/src/app/shared/services/basic-auth-account/basic-auth-account.service.spec.ts [new file with mode: 0644]
portal-FE-common/src/app/shared/services/basic-auth-account/basic-auth-account.service.ts [new file with mode: 0644]
portal-FE-common/src/assets/images/spinner.gif [new file with mode: 0644]
portal-FE-common/src/styles/_fonts.scss [new file with mode: 0644]
portal-FE-common/src/styles/_responsive.scss [new file with mode: 0644]
portal-FE-common/src/styles/_spinner.scss [new file with mode: 0644]
portal-FE-common/src/styles/_utils.scss [new file with mode: 0644]
portal-FE-common/src/styles/app.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_alert.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_badge.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_breadcrumb.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_button-group.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_buttons.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_card.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_carousel.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_close.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_code.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_custom-forms.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_dropdown.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_forms.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_functions.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_grid.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_images.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_input-group.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_jumbotron.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_list-group.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_media.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_mixins.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_modal.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_nav.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_navbar.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_pagination.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_popover.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_print.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_progress.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_reboot.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_root.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_tables.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_tooltip.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_transitions.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_type.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_utilities.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/_variables.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/bootstrap-grid.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/bootstrap-reboot.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/bootstrap.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_alert.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_background-variant.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_badge.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_border-radius.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_box-shadow.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_breakpoints.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_buttons.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_caret.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_clearfix.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_float.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_forms.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_gradients.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_grid-framework.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_grid.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_hover.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_image.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_list-group.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_lists.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_nav-divider.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_navbar-align.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_pagination.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_reset-text.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_resize.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_screen-reader.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_size.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_table-row.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_text-emphasis.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_text-hide.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_text-truncate.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_transition.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/mixins/_visibility.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_align.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_background.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_borders.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_clearfix.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_display.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_embed.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_flex.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_float.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_position.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_screenreaders.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_sizing.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_spacing.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_text.scss [new file with mode: 0644]
portal-FE-common/src/styles/bootstrap/utilities/_visibility.scss [new file with mode: 0644]