10 | {{ item.description }} 11 |
12 |├── diagrams
├── .gitkeep
├── auth
│ └── .gitkeep
├── cards
│ └── .gitkeep
├── comps
│ └── .gitkeep
├── news
│ └── .gitkeep
├── phone
│ └── .gitkeep
├── pipes
│ └── .gitkeep
├── ts
│ └── .gitkeep
├── wrx
│ └── .gitkeep
├── creditcard
│ └── .gitkeep
├── directives
│ └── .gitkeep
├── modules
│ └── .gitkeep
├── photos
│ └── .gitkeep
├── typing
│ └── .gitkeep
└── wikisearch
│ └── .gitkeep
├── pw
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ └── app.module.ts
│ ├── favicon.ico
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── cards
├── src
│ ├── assets
│ │ ├── .gitkeep
│ │ ├── tree.jpeg
│ │ ├── biking.jpeg
│ │ └── mountain.jpeg
│ ├── app
│ │ ├── card
│ │ │ ├── card.component.css
│ │ │ ├── card.component.ts
│ │ │ ├── card.component.html
│ │ │ └── card.component.spec.ts
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ └── app.module.ts
│ ├── favicon.ico
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── comps
├── src
│ ├── assets
│ │ ├── .gitkeep
│ │ └── images
│ │ │ ├── couch.jpeg
│ │ │ └── dresser.jpeg
│ ├── app
│ │ ├── app.component.css
│ │ ├── home
│ │ │ ├── home.component.css
│ │ │ ├── home.component.html
│ │ │ ├── home.component.ts
│ │ │ └── home.component.spec.ts
│ │ ├── not-found
│ │ │ ├── not-found.component.css
│ │ │ ├── not-found.component.html
│ │ │ └── not-found.component.ts
│ │ ├── collections
│ │ │ ├── table
│ │ │ │ ├── table.component.css
│ │ │ │ ├── table.component.html
│ │ │ │ ├── table.component.ts
│ │ │ │ └── table.component.spec.ts
│ │ │ ├── tabs
│ │ │ │ ├── tabs.component.css
│ │ │ │ ├── tabs.component.ts
│ │ │ │ ├── tabs.component.html
│ │ │ │ └── tabs.component.spec.ts
│ │ │ ├── partners
│ │ │ │ ├── partners.component.css
│ │ │ │ ├── partners.component.html
│ │ │ │ └── partners.component.ts
│ │ │ ├── biography
│ │ │ │ ├── biography.component.css
│ │ │ │ ├── biography.component.html
│ │ │ │ └── biography.component.ts
│ │ │ ├── companies
│ │ │ │ ├── companies.component.css
│ │ │ │ ├── companies.component.html
│ │ │ │ └── companies.component.ts
│ │ │ └── collections-home
│ │ │ │ ├── collections-home.component.css
│ │ │ │ └── collections-home.component.html
│ │ ├── mods
│ │ │ ├── accordion
│ │ │ │ ├── accordion.component.css
│ │ │ │ ├── accordion.component.html
│ │ │ │ └── accordion.component.ts
│ │ │ ├── mods-home
│ │ │ │ ├── mods-home.component.css
│ │ │ │ ├── mods-home.component.html
│ │ │ │ └── mods-home.component.ts
│ │ │ ├── modal
│ │ │ │ ├── modal.component.css
│ │ │ │ ├── modal.component.ts
│ │ │ │ ├── modal.component.html
│ │ │ │ └── modal.component.spec.ts
│ │ │ ├── mods-routing.module.ts
│ │ │ └── mods.module.ts
│ │ ├── views
│ │ │ ├── item-list
│ │ │ │ ├── item-list.component.css
│ │ │ │ ├── item-list.component.ts
│ │ │ │ └── item-list.component.html
│ │ │ ├── statistics
│ │ │ │ ├── statistics.component.css
│ │ │ │ ├── statistics.component.html
│ │ │ │ └── statistics.component.ts
│ │ │ ├── views-home
│ │ │ │ ├── views-home.component.css
│ │ │ │ └── views-home.component.html
│ │ │ ├── views-routing.module.ts
│ │ │ └── views.module.ts
│ │ ├── elements
│ │ │ ├── placeholder
│ │ │ │ ├── placeholder.component.css
│ │ │ │ ├── placeholder.component.html
│ │ │ │ └── placeholder.component.ts
│ │ │ ├── elements-home
│ │ │ │ ├── elements-home.component.css
│ │ │ │ ├── elements-home.component.ts
│ │ │ │ └── elements-home.component.html
│ │ │ ├── segment
│ │ │ │ ├── segment.component.css
│ │ │ │ ├── segment.component.html
│ │ │ │ ├── segment.component.ts
│ │ │ │ └── segment.component.spec.ts
│ │ │ ├── times.directive.spec.ts
│ │ │ ├── elements-routing.module.ts
│ │ │ └── times.directive.ts
│ │ ├── shared
│ │ │ ├── divider
│ │ │ │ ├── divider.component.css
│ │ │ │ ├── divider.component.html
│ │ │ │ ├── divider.component.ts
│ │ │ │ └── divider.component.spec.ts
│ │ │ └── shared.module.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ └── app.component.html
│ ├── favicon.ico
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── landing
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── shared
│ │ │ ├── paginator
│ │ │ │ ├── paginator.component.css
│ │ │ │ ├── paginator.component.html
│ │ │ │ └── paginator.component.ts
│ │ │ └── shared.module.ts
│ │ ├── news-api
│ │ │ ├── na-article-list
│ │ │ │ ├── na-article-list.component.css
│ │ │ │ ├── na-article-list.component.html
│ │ │ │ └── na-article-list.component.ts
│ │ │ ├── trim-outlet-name.pipe.spec.ts
│ │ │ ├── trim-outlet-name.pipe.ts
│ │ │ ├── news-api.service.spec.ts
│ │ │ └── news-api.module.ts
│ │ ├── notifications
│ │ │ ├── notification-list
│ │ │ │ ├── notification-list.component.css
│ │ │ │ └── notification-list.component.html
│ │ │ ├── notifications.module.ts
│ │ │ └── notifications.service.spec.ts
│ │ ├── app.component.ts
│ │ ├── app.component.html
│ │ ├── weather
│ │ │ ├── forecast
│ │ │ │ ├── forecast.component.html
│ │ │ │ ├── forecast.component.css
│ │ │ │ └── forecast.component.ts
│ │ │ ├── weather.module.ts
│ │ │ └── forecast.service.spec.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── mathform
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── math-validators.spec.ts
│ │ ├── app.component.ts
│ │ ├── equation
│ │ │ ├── equation.component.html
│ │ │ └── equation.component.css
│ │ ├── answer-highlight.directive.spec.ts
│ │ ├── math-validators.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── pages
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── class.directive.spec.ts
│ │ ├── times.directive.spec.ts
│ │ ├── app.module.ts
│ │ ├── class.directive.ts
│ │ └── times.directive.ts
│ ├── favicon.ico
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── photos
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── photo-show
│ │ │ ├── photo-show.component.css
│ │ │ ├── photo-show.component.html
│ │ │ └── photo-show.component.ts
│ │ ├── app.component.ts
│ │ ├── photos.service.spec.ts
│ │ ├── app.module.ts
│ │ └── photos.service.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── pipes
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── convert.pipe.spec.ts
│ │ ├── app.module.ts
│ │ └── convert.pipe.ts
│ ├── favicon.ico
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── typing
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── app
│ │ ├── app.component.css
│ │ ├── app.module.ts
│ │ ├── app.component.ts
│ │ └── app.component.html
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── wsearch
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── search-bar
│ │ │ ├── search-bar.component.css
│ │ │ ├── search-bar.component.html
│ │ │ └── search-bar.component.ts
│ │ ├── page-list
│ │ │ ├── page-list.component.css
│ │ │ ├── page-list.component.ts
│ │ │ └── page-list.component.html
│ │ ├── app.component.html
│ │ ├── wikipedia.service.spec.ts
│ │ ├── app.component.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── creditcard
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── card-form
│ │ │ └── card-form.component.css
│ │ ├── input
│ │ │ ├── input.component.css
│ │ │ ├── input.component.ts
│ │ │ └── input.component.spec.ts
│ │ ├── app.component.html
│ │ ├── date-form-control.spec.ts
│ │ ├── app.component.ts
│ │ ├── card
│ │ │ ├── card.component.ts
│ │ │ └── card.component.spec.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── emailclient
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── inbox
│ │ │ ├── home
│ │ │ │ ├── home.component.css
│ │ │ │ ├── home.component.html
│ │ │ │ ├── home.component.ts
│ │ │ │ └── home.component.spec.ts
│ │ │ ├── email-form
│ │ │ │ ├── email-form.component.css
│ │ │ │ └── email-form.component.html
│ │ │ ├── email-reply
│ │ │ │ ├── email-reply.component.css
│ │ │ │ └── email-reply.component.html
│ │ │ ├── not-found
│ │ │ │ ├── not-found.component.css
│ │ │ │ ├── not-found.component.html
│ │ │ │ └── not-found.component.ts
│ │ │ ├── placeholder
│ │ │ │ ├── placeholder.component.css
│ │ │ │ ├── placeholder.component.html
│ │ │ │ └── placeholder.component.ts
│ │ │ ├── email-create
│ │ │ │ ├── email-create.component.css
│ │ │ │ └── email-create.component.html
│ │ │ ├── email-show
│ │ │ │ ├── email-show.component.css
│ │ │ │ ├── email-show.component.html
│ │ │ │ └── email-show.component.ts
│ │ │ ├── email.ts
│ │ │ ├── email.service.spec.ts
│ │ │ ├── email-index
│ │ │ │ ├── email-index.component.html
│ │ │ │ ├── email-index.component.css
│ │ │ │ └── email-index.component.ts
│ │ │ └── email-resolver.service.spec.ts
│ │ ├── auth
│ │ │ ├── signout
│ │ │ │ ├── signout.component.css
│ │ │ │ ├── signout.component.html
│ │ │ │ └── signout.component.ts
│ │ │ ├── signin
│ │ │ │ ├── signin.component.css
│ │ │ │ ├── signin.component.html
│ │ │ │ └── signin.component.spec.ts
│ │ │ ├── signup
│ │ │ │ ├── signup.component.css
│ │ │ │ └── signup.component.spec.ts
│ │ │ ├── auth-validators.spec.ts
│ │ │ ├── validators
│ │ │ │ ├── match-password.spec.ts
│ │ │ │ ├── unique-username.spec.ts
│ │ │ │ └── match-password.ts
│ │ │ ├── auth-http-interceptor.spec.ts
│ │ │ ├── auth.service.spec.ts
│ │ │ ├── auth.guard.spec.ts
│ │ │ ├── auth-routing.module.ts
│ │ │ ├── auth.module.ts
│ │ │ └── auth-http-interceptor.ts
│ │ ├── shared
│ │ │ ├── input
│ │ │ │ ├── input.component.css
│ │ │ │ ├── input.component.ts
│ │ │ │ └── input.component.spec.ts
│ │ │ ├── modal
│ │ │ │ ├── modal.component.css
│ │ │ │ ├── modal.component.html
│ │ │ │ ├── modal.component.ts
│ │ │ │ └── modal.component.spec.ts
│ │ │ └── shared.module.ts
│ │ ├── app-routing.module.ts
│ │ ├── app.component.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── emailform
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ └── test.ts
├── e2e
│ ├── tsconfig.json
│ └── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
└── tsconfig.json
├── .gitignore
├── README.md
├── ts
├── index.ts
├── Car.ts
└── package.json
└── di
├── index.js
├── package.json
└── wikipedia-search.js
/diagrams/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pw/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cards/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/diagrams/auth/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/cards/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/comps/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/news/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/phone/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/pipes/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/ts/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/wrx/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/landing/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mathform/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pages/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/photos/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pipes/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pw/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/typing/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/wsearch/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/creditcard/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/diagrams/creditcard/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/directives/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/modules/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/photos/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/typing/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/diagrams/wikisearch/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/emailclient/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailform/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/landing/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pages/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/photos/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pipes/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/wsearch/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/home/home.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/creditcard/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailclient/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailform/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mathform/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 |
--------------------------------------------------------------------------------
/comps/src/app/not-found/not-found.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/collections/table/table.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/collections/tabs/tabs.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/mods/accordion/accordion.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/mods/mods-home/mods-home.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/views/item-list/item-list.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/creditcard/src/app/card-form/card-form.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailclient/src/app/inbox/home/home.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/wsearch/src/app/search-bar/search-bar.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/collections/partners/partners.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/views/statistics/statistics.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/views/views-home/views-home.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailclient/src/app/auth/signout/signout.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/landing/src/app/shared/paginator/paginator.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/wsearch/src/app/page-list/page-list.component.css:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Companion repo for a course hosted on udemy.com
2 |
--------------------------------------------------------------------------------
/comps/src/app/collections/biography/biography.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/collections/companies/companies.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/elements/placeholder/placeholder.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailclient/src/app/inbox/email-form/email-form.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailclient/src/app/inbox/email-reply/email-reply.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailclient/src/app/inbox/not-found/not-found.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/emailclient/src/app/inbox/placeholder/placeholder.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/elements/elements-home/elements-home.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/comps/src/app/collections/collections-home/collections-home.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/landing/src/app/news-api/na-article-list/na-article-list.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mathform/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
biography works!
2 | -------------------------------------------------------------------------------- /comps/src/app/collections/companies/companies.component.html: -------------------------------------------------------------------------------- 1 |companies works!
2 | -------------------------------------------------------------------------------- /comps/src/app/collections/partners/partners.component.html: -------------------------------------------------------------------------------- 1 |partners works!
2 | -------------------------------------------------------------------------------- /comps/src/app/not-found/not-found.component.html: -------------------------------------------------------------------------------- 1 |3 | This app will show how to use a couple of different components 4 |
5 | -------------------------------------------------------------------------------- /emailclient/src/app/inbox/email-show/email-show.component.css: -------------------------------------------------------------------------------- 1 | .header { 2 | display: flex; 3 | justify-content: space-between; 4 | flex-wrap: wrap; 5 | } 6 | -------------------------------------------------------------------------------- /ts/index.ts: -------------------------------------------------------------------------------- 1 | import { map } from 'lodash'; 2 | 3 | const strings = map([1, 2, 3], value => { 4 | return `Value is: ${value}`; 5 | }); 6 | 7 | console.log(strings); 8 | -------------------------------------------------------------------------------- /photos/src/app/photo-show/photo-show.component.html: -------------------------------------------------------------------------------- 1 |{{ forecast.temp | number: '1.0-0' }}°C
7 |{{ forecast.dateString | date: 'E' }}
8 || 5 | {{ header.label }} 6 | | 7 |
|---|
| 12 | {{ record[header.key] }} 13 | | 14 |
10 | {{ item.description }} 11 |
12 |{{ title }}
10 |@{{ username }}
11 |{{ item.content }}
13 |6 | I am a REUSABLE modal window!!! 7 |
8 || Title | 5 |Word Count | 6 |Snippet | 7 |
|---|---|---|
| 12 | 16 | {{ page.title }} 17 | 18 | | 19 |{{ page.wordcount }} | 20 |21 | |
7 | {{ letter }} 12 |
13 | 14 |