├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .prettierignore ├── .prettierrc.cjs ├── .vscode └── extensions.json ├── Dockerfile-deploy ├── Jenkinsfile ├── Jenkinsfile.build ├── Jenkinsfile.deploy ├── Jenkinsfile.purge_cache ├── Jenkinsfile.purge_kv ├── README.md ├── apps ├── blog-bff │ ├── .dev.vars.example │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── wrangler.toml ├── blog-e2e │ ├── .eslintrc.json │ ├── README.md │ ├── e2e │ │ ├── about-us.spec.ts │ │ ├── migrated-articles.spec.ts │ │ └── navigations.spec.ts │ ├── jest.config.ts │ ├── package.json │ ├── playwright.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── elements │ │ │ ├── author-card.element.ts │ │ │ ├── category-container.element.ts │ │ │ └── newsletter.element.ts │ │ │ └── pages │ │ │ ├── about-us.page.ts │ │ │ ├── article.page.ts │ │ │ ├── author.page.ts │ │ │ ├── base.page.ts │ │ │ ├── become-author.page.ts │ │ │ └── home.page.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── blog │ ├── .env │ ├── .eslintrc.json │ ├── .postcssrc.json │ ├── jest.config.ts │ ├── plugins │ └── env-var-plugin.js │ ├── project.json │ ├── routes.txt │ ├── scripts │ ├── build-routes.mjs │ └── build-sitemap.mjs │ ├── server.ts │ ├── src │ ├── _redirects │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.server.ts │ │ ├── app.config.ts │ │ └── providers │ │ │ ├── seo-provider.ts │ │ │ ├── skeleton-config-provider.ts │ │ │ └── tracking │ │ │ ├── cookie-consent.config.ts │ │ │ ├── index.ts │ │ │ └── tracking.provider.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── GDG-cloud.png │ │ ├── HOA-hire-us.png │ │ ├── HOA-hiring.png │ │ ├── HOA_logo_blue.png │ │ ├── HOA_logo_white.png │ │ ├── angular-community.png │ │ ├── angular-js.png │ │ ├── angular-love-logo.webp │ │ ├── article-placeholder.webp │ │ ├── banners.json │ │ ├── comments-theme.css │ │ ├── favicon │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ └── favicon.ico │ │ ├── fonts │ │ │ ├── inter-v20-cyrillic-ext.woff2 │ │ │ ├── inter-v20-cyrillic.woff2 │ │ │ ├── inter-v20-greek-ext.woff2 │ │ │ ├── inter-v20-greek.woff2 │ │ │ ├── inter-v20-latin-ext.woff2 │ │ │ ├── inter-v20-latin.woff2 │ │ │ └── inter-v20-vietnamese.woff2 │ │ ├── i18n │ │ │ ├── en.json │ │ │ └── pl.json │ │ ├── icons │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── calendar.svg │ │ │ ├── circle-center.svg │ │ │ ├── circle-check.svg │ │ │ ├── clock.svg │ │ │ ├── cross.svg │ │ │ ├── down-arrow.svg │ │ │ ├── facebook.svg │ │ │ ├── github-mark.svg │ │ │ ├── link.svg │ │ │ ├── linkedIn.svg │ │ │ ├── location-pin.svg │ │ │ ├── magnifier-glass.svg │ │ │ ├── moon.svg │ │ │ ├── send.svg │ │ │ ├── sun.svg │ │ │ ├── tick.svg │ │ │ ├── translate.svg │ │ │ ├── twitter-x.svg │ │ │ ├── up-arrow.svg │ │ │ ├── youtube.svg │ │ │ ├── zoom-in.svg │ │ │ ├── zoom-out.svg │ │ │ └── zoom-reset.svg │ │ ├── mock-avatar.png │ │ ├── not-found.svg │ │ ├── roadmap-tiles.json │ │ ├── scripts │ │ │ └── gtm.js │ │ └── turso-logo-dark.png │ ├── environments │ │ ├── app-environment.ts │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.server.ts │ ├── main.ts │ ├── robots.txt │ ├── sitemap.xml │ ├── styles.scss │ ├── test-setup.ts │ └── types.d.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── commitlint.config.js ├── hooks └── debugger-checker.js ├── jest.config.ts ├── jest.preset.js ├── libs ├── blog-bff │ ├── articles │ │ └── api │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── api.ts │ │ │ │ ├── dtos.ts │ │ │ │ ├── mappers.ts │ │ │ │ ├── utils.ts │ │ │ │ └── wp-posts.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── authors │ │ └── api │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── api.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── banners │ │ └── api │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── api.ts │ │ │ │ ├── dtos.ts │ │ │ │ ├── mappers.ts │ │ │ │ └── wp-banners.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── newsletter │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── api.ts │ │ │ │ ├── models.ts │ │ │ │ └── newsletter-client.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── shared │ │ ├── schema │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── schema.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ │ ├── util-drizzle │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ │ ├── util-middleware │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── cache.ts │ │ │ │ ├── kv-cache.ts │ │ │ │ ├── lang.spec.ts │ │ │ │ ├── lang.ts │ │ │ │ └── turso.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ │ └── util-wp │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── utils.ts │ │ │ ├── wp-client.ts │ │ │ └── wp-middleware.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── blog-contracts │ ├── articles │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── articles.ts │ │ │ │ └── languages.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── authors │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── authors.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── banners │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── banners.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── roadmap │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── regular-node.ts │ │ │ │ └── resource.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── shared │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── shared │ │ │ │ └── array-response.model.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── blog │ ├── about-us │ │ └── feature-about-us │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── feature-about-us │ │ │ │ │ ├── feature-about-us.component.html │ │ │ │ │ ├── feature-about-us.component.scss │ │ │ │ │ ├── feature-about-us.component.spec.ts │ │ │ │ │ └── feature-about-us.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── ad-banner │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── infrastructure │ │ │ │ │ │ └── ad-banner.service.ts │ │ │ │ │ └── state │ │ │ │ │ │ └── ad-banner.store.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── ui │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── ad-image-banner │ │ │ │ │ ├── ad-image-banner-data.interface.ts │ │ │ │ │ ├── ad-image-banner.component.html │ │ │ │ │ └── ad-image-banner.component.ts │ │ │ │ ├── banner-carousel │ │ │ │ │ └── al-banner-carousel.component.ts │ │ │ │ ├── infinite-slider-directive │ │ │ │ │ └── al-infinite-slider.directive.ts │ │ │ │ └── top-banner.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── app-theme │ │ └── data-access-app-theme │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── app-theme.store.ts │ │ │ ├── index.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ ├── articles │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── dto │ │ │ │ │ │ └── articles.query.ts │ │ │ │ │ ├── guards │ │ │ │ │ │ ├── article-exists.guard.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── infrastructure │ │ │ │ │ │ └── articles.service.ts │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── comments.provider.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── state │ │ │ │ │ │ ├── article-details.store.ts │ │ │ │ │ │ ├── article-list.store.ts │ │ │ │ │ │ └── related-article.store.ts │ │ │ │ │ └── tokens │ │ │ │ │ │ ├── comments.token.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-article │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── article-details-container │ │ │ │ │ │ ├── article-details-container.component.html │ │ │ │ │ │ └── article-details-container.component.ts │ │ │ │ │ ├── article-details │ │ │ │ │ │ ├── article-details-skeleton.component.ts │ │ │ │ │ │ ├── article-details-skeleton.stories.ts │ │ │ │ │ │ ├── article-details.component.html │ │ │ │ │ │ ├── article-details.component.scss │ │ │ │ │ │ ├── article-details.component.ts │ │ │ │ │ │ └── article-details.stories.ts │ │ │ │ │ └── article-share-icons │ │ │ │ │ │ ├── article-share-icons.component.scss │ │ │ │ │ │ └── article-share-icons.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-category │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── category-articles.component.html │ │ │ │ │ ├── category-articles.component.scss │ │ │ │ │ ├── category-articles.component.spec.ts │ │ │ │ │ └── category-articles.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-comments │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── giscus-comments │ │ │ │ │ │ ├── giscus-comments.component.html │ │ │ │ │ │ ├── giscus-comments.component.scss │ │ │ │ │ │ ├── giscus-comments.component.spec.ts │ │ │ │ │ │ └── giscus-comments.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-latest-articles │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── feature-latest-articles │ │ │ │ │ │ ├── categories.const.ts │ │ │ │ │ │ ├── feature-latest-articles.component.html │ │ │ │ │ │ ├── feature-latest-articles.component.spec.ts │ │ │ │ │ │ └── feature-latest-articles.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-list │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── articles-list-container.component.html │ │ │ │ │ ├── articles-list-container.component.ts │ │ │ │ │ └── category-section-container │ │ │ │ │ │ ├── category-section-container.component.html │ │ │ │ │ │ ├── category-section-container.component.scss │ │ │ │ │ │ └── category-section-container.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-related-articles │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── related-articles.component.spec.ts │ │ │ │ │ └── related-articles.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-shell │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── routes.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-article-card │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── components │ │ │ │ │ │ ├── article-compact-card │ │ │ │ │ │ │ ├── article-compact-card-skeleton.component.ts │ │ │ │ │ │ │ ├── article-compact-card.component.html │ │ │ │ │ │ │ ├── article-compact-card.component.spec.ts │ │ │ │ │ │ │ └── article-compact-card.component.ts │ │ │ │ │ │ ├── article-hero-card │ │ │ │ │ │ │ ├── article-hero-card-skeleton.component.ts │ │ │ │ │ │ │ ├── article-hero-card.component.html │ │ │ │ │ │ │ ├── article-hero-card.component.spec.ts │ │ │ │ │ │ │ └── article-hero-card.component.ts │ │ │ │ │ │ ├── article-horizontal-card │ │ │ │ │ │ │ ├── article-horizontal-card.component.html │ │ │ │ │ │ │ ├── article-horizontal-card.component.spec.ts │ │ │ │ │ │ │ └── article-horizontal-card.component.ts │ │ │ │ │ │ └── article-regular-card │ │ │ │ │ │ │ ├── article-regular-card-skeleton.component.ts │ │ │ │ │ │ │ ├── article-regular-card.component.html │ │ │ │ │ │ │ ├── article-regular-card.component.spec.ts │ │ │ │ │ │ │ └── article-regular-card.component.ts │ │ │ │ │ └── ui-article-card │ │ │ │ │ │ ├── ui-article-card.component.html │ │ │ │ │ │ ├── ui-article-card.component.scss │ │ │ │ │ │ ├── ui-article-card.component.spec.ts │ │ │ │ │ │ ├── ui-article-card.component.ts │ │ │ │ │ │ └── ui-article-card.stories.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-article-content │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── article-content │ │ │ │ │ │ ├── article-content-skeleton.component.ts │ │ │ │ │ │ ├── article-content.component.html │ │ │ │ │ │ ├── article-content.component.scss │ │ │ │ │ │ └── article-content.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-article-list-title │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── ui-article-list-title │ │ │ │ │ │ ├── ui-article-list-title.component.html │ │ │ │ │ │ └── ui-article-list-title.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── ui-table-of-contents │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── table-of-contents │ │ │ │ │ ├── table-of-contents-scroll-spy.directive.ts │ │ │ │ │ ├── table-of-contents.component.html │ │ │ │ │ ├── table-of-contents.component.scss │ │ │ │ │ ├── table-of-contents.component.spec.ts │ │ │ │ │ ├── table-of-contents.component.ts │ │ │ │ │ └── table-of-contents.stories.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── authors │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── dto │ │ │ │ │ │ └── authors.query.ts │ │ │ │ │ ├── infrastructure │ │ │ │ │ │ └── author.service.ts │ │ │ │ │ └── state │ │ │ │ │ │ ├── author-details.store.ts │ │ │ │ │ │ └── author-list-store.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-author │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── feature-author │ │ │ │ │ │ ├── feature-author.component.html │ │ │ │ │ │ ├── feature-author.component.scss │ │ │ │ │ │ ├── feature-author.component.spec.ts │ │ │ │ │ │ └── feature-author.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── ui-author-card │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── author-card │ │ │ │ │ ├── author-card-data-model.ts │ │ │ │ │ ├── author-card-skeleton.component.ts │ │ │ │ │ ├── author-card-template.component.ts │ │ │ │ │ ├── author-card.component.html │ │ │ │ │ ├── author-card.component.spec.ts │ │ │ │ │ ├── author-card.component.ts │ │ │ │ │ └── author-card.stories.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── become-author │ │ └── feature-become-author-page │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── become-author-page │ │ │ │ │ ├── become-author-page.component.html │ │ │ │ │ ├── become-author-page.component.spec.ts │ │ │ │ │ └── become-author-page.component.ts │ │ │ │ └── components │ │ │ │ │ ├── become-author-advertisement │ │ │ │ │ ├── become-author-advertisement.component.html │ │ │ │ │ ├── become-author-advertisement.component.spec.ts │ │ │ │ │ └── become-author-advertisement.component.ts │ │ │ │ │ ├── become-author-benefits │ │ │ │ │ ├── become-author-benefits.component.html │ │ │ │ │ ├── become-author-benefits.component.spec.ts │ │ │ │ │ └── become-author-benefits.component.ts │ │ │ │ │ ├── become-author-improvements │ │ │ │ │ ├── become-author-improvements.component.html │ │ │ │ │ ├── become-author-improvements.component.spec.ts │ │ │ │ │ └── become-author-improvements.component.ts │ │ │ │ │ └── become-author-list-item │ │ │ │ │ ├── become-author-list-item.component.html │ │ │ │ │ ├── become-author-list-item.component.spec.ts │ │ │ │ │ └── become-author-list-item.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── home │ │ └── feature-home │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── home-page │ │ │ │ │ ├── home-page.component.html │ │ │ │ │ ├── home-page.component.scss │ │ │ │ │ ├── home-page.component.spec.ts │ │ │ │ │ ├── home-page.component.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── welcome-message │ │ │ │ │ └── welcome-message.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── i18n │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── guard │ │ │ │ │ │ ├── active-language.guard.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── i18n-headers.interceptor.ts │ │ │ │ │ ├── locale-id.provider.ts │ │ │ │ │ ├── providers.ts │ │ │ │ │ ├── state │ │ │ │ │ │ └── with-lang.state.ts │ │ │ │ │ └── transloco.loader.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── util │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── i18n.service.ts │ │ │ │ ├── localize.pipe.spec.ts │ │ │ │ ├── localize.pipe.ts │ │ │ │ ├── localize.service.spec.ts │ │ │ │ └── localize.service.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── layouts │ │ ├── ui-layouts │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── footer │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── footer-logo.component.ts │ │ │ │ │ │ │ └── footer-social-media-icons.component.ts │ │ │ │ │ │ ├── footer.component.html │ │ │ │ │ │ ├── footer.component.scss │ │ │ │ │ │ ├── footer.component.spec.ts │ │ │ │ │ │ ├── footer.component.stories.ts │ │ │ │ │ │ ├── footer.component.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── partners.ts │ │ │ │ │ ├── header │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── header-hamburger.component.ts │ │ │ │ │ │ │ ├── header-language-button.component.ts │ │ │ │ │ │ │ ├── header-language.component.ts │ │ │ │ │ │ │ ├── header-logo.component.ts │ │ │ │ │ │ │ ├── header-mobile-menu.component.scss │ │ │ │ │ │ │ ├── header-mobile-menu.component.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── header-nav-items.ts │ │ │ │ │ │ ├── header.component.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── layout │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── layout.component.html │ │ │ │ │ │ ├── layout.component.scss │ │ │ │ │ │ ├── layout.component.spec.ts │ │ │ │ │ │ ├── layout.component.stories.ts │ │ │ │ │ │ └── layout.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── ui-navigation │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── language-picker │ │ │ │ │ └── language-picker.component.ts │ │ │ │ └── navigation │ │ │ │ │ ├── navigation.component.html │ │ │ │ │ ├── navigation.component.scss │ │ │ │ │ ├── navigation.component.spec.ts │ │ │ │ │ └── navigation.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── newsletter │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── infrastructure │ │ │ │ │ │ └── newsletter.service.ts │ │ │ │ │ └── state │ │ │ │ │ │ └── newsletter.store.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature-newsletter │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── feature-newsletter │ │ │ │ │ ├── newsletter.component.html │ │ │ │ │ ├── newsletter.component.spec.ts │ │ │ │ │ └── newsletter.component.ts │ │ │ │ └── page │ │ │ │ │ ├── newsletter-example-1.ts │ │ │ │ │ ├── newsletter-example-2.ts │ │ │ │ │ ├── newsletter-examples │ │ │ │ │ ├── newsletter-examples.component.html │ │ │ │ │ └── newsletter-examples.component.ts │ │ │ │ │ ├── newsletter-page.component.html │ │ │ │ │ ├── newsletter-page.component.ts │ │ │ │ │ └── newsletter-succes │ │ │ │ │ ├── newsletter-succes.component.html │ │ │ │ │ └── newsletter-succes.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── partners │ │ └── ui-partners │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── partners-list │ │ │ │ │ ├── partners-list.component.html │ │ │ │ │ ├── partners-list.component.spec.ts │ │ │ │ │ └── partners-list.component.ts │ │ │ │ └── partners │ │ │ │ │ ├── partners.component.html │ │ │ │ │ ├── partners.component.spec.ts │ │ │ │ │ └── partners.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── roadmap │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── infrastructure │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── roadmap.service.ts │ │ │ │ │ ├── state │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── roadmap-store.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── build-roadmap-layers-from-dto.ts │ │ │ │ │ │ └── get-title-layer.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-roadmap │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── feature-roadmap.component.html │ │ │ │ │ ├── feature-roadmap.component.scss │ │ │ │ │ ├── feature-roadmap.component.ts │ │ │ │ │ ├── pan-zoom-initial-config.ts │ │ │ │ │ ├── pan-zoom.service.ts │ │ │ │ │ └── roadmap-dialog-manager.service.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-roadmap-dialog │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── roadmap-dialog-additional-description │ │ │ │ │ │ └── roadmap-dialog-additional-description.component.ts │ │ │ │ │ ├── roadmap-dialog-creators │ │ │ │ │ │ └── roadmap-dialog-creators.component.ts │ │ │ │ │ ├── roadmap-dialog-description │ │ │ │ │ │ └── roadmap-dialog-description.component.ts │ │ │ │ │ ├── roadmap-dialog-footer │ │ │ │ │ │ └── roadmap-dialog-footer.component.ts │ │ │ │ │ ├── roadmap-dialog-header │ │ │ │ │ │ └── roadmap-dialog-header.component.ts │ │ │ │ │ ├── roadmap-dialog-regular-content │ │ │ │ │ │ └── roadmap-dialog-regular-content.component.ts │ │ │ │ │ ├── roadmap-dialog-subtitle │ │ │ │ │ │ └── roadmap-dialog-subtitle.component.ts │ │ │ │ │ ├── roadmap-dialog.component.html │ │ │ │ │ ├── roadmap-dialog.component.scss │ │ │ │ │ └── roadmap-dialog.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-roadmap-node │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── components │ │ │ │ │ │ ├── roadmap-basic-node │ │ │ │ │ │ │ ├── roadmap-basic-node.component.scss │ │ │ │ │ │ │ └── roadmap-basic-node.component.ts │ │ │ │ │ │ ├── roadmap-cluster │ │ │ │ │ │ │ └── roadmap-cluster.component.ts │ │ │ │ │ │ └── roadmap-node-label │ │ │ │ │ │ │ └── roadmap-node-label.component.ts │ │ │ │ │ ├── services │ │ │ │ │ │ └── roadmap-dialog-notifier.service.ts │ │ │ │ │ ├── style │ │ │ │ │ │ └── _roadmap-hover-border-gradient.scss │ │ │ │ │ └── types │ │ │ │ │ │ └── roadmap-node.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── ui-roadmap │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── components │ │ │ │ │ ├── connected-nodes │ │ │ │ │ ├── connected-nodes.component.html │ │ │ │ │ ├── connected-nodes.component.scss │ │ │ │ │ ├── connected-nodes.component.ts │ │ │ │ │ ├── node-connection-point.directive.ts │ │ │ │ │ └── node-connections-group.directive.ts │ │ │ │ │ ├── roadmap-layer │ │ │ │ │ ├── left-slice.pipe.ts │ │ │ │ │ ├── right-slice.pipe.ts │ │ │ │ │ ├── roadmap-layer.component.html │ │ │ │ │ └── roadmap-layer.component.ts │ │ │ │ │ ├── roadmap-svg-controls │ │ │ │ │ └── roadmap-svg-controls.component.ts │ │ │ │ │ └── vertical-connector-arrow │ │ │ │ │ ├── vertical-connector-arrow.component.scss │ │ │ │ │ └── vertical-connector-arrow.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── search │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── infrastructure │ │ │ │ │ │ ├── algolia-search.service.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── search.service.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── algolia-search.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── search.ts │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── search.provider.ts │ │ │ │ │ ├── state │ │ │ │ │ │ ├── global-search.store.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── search-list.store.ts │ │ │ │ │ │ └── search.store-feature.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── hit-to-search-result.util.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-search-results-page │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── search-results-page │ │ │ │ │ │ ├── search-results-page.component.html │ │ │ │ │ │ ├── search-results-page.component.scss │ │ │ │ │ │ ├── search-results-page.component.spec.ts │ │ │ │ │ │ ├── search-results-page.component.ts │ │ │ │ │ │ └── search-results-page.presenter.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-search │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── feature-search │ │ │ │ │ │ ├── global-search.component.ts │ │ │ │ │ │ ├── global-search.service.ts │ │ │ │ │ │ └── search-dialog │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── search-dialog.component.html │ │ │ │ │ │ ├── search-dialog.component.scss │ │ │ │ │ │ ├── search-dialog.component.spec.ts │ │ │ │ │ │ └── search-dialog.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── feature-shell │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── routes.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── ui-search-result │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── search-result-item │ │ │ │ │ ├── search-result-item.component.html │ │ │ │ │ ├── search-result-item.component.scss │ │ │ │ │ ├── search-result-item.component.spec.ts │ │ │ │ │ └── search-result-item.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── shared │ │ ├── types │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── ng-package.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── article-card.ts │ │ │ │ │ └── partner.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-avatar │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── avatar.component.html │ │ │ │ │ ├── avatar.component.scss │ │ │ │ │ └── avatar.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-button │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── button │ │ │ │ │ │ ├── button.component.html │ │ │ │ │ │ ├── button.component.scss │ │ │ │ │ │ ├── button.component.stories.ts │ │ │ │ │ │ └── button.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-card │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── card-skeleton.component.ts │ │ │ │ │ ├── card.component.html │ │ │ │ │ ├── card.component.scss │ │ │ │ │ ├── card.component.ts │ │ │ │ │ └── card.stories.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-difficulty │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── difficulty-level.pipe.ts │ │ │ │ │ ├── ui-difficulty.component.spec.ts │ │ │ │ │ ├── ui-difficulty.component.ts │ │ │ │ │ └── ui-difficulty.stories.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-dynamic-text-clamp │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── dynamic-text-clamp │ │ │ │ │ │ ├── clamped-changed.directive.ts │ │ │ │ │ │ ├── dynamic-text-clamp.component.html │ │ │ │ │ │ ├── dynamic-text-clamp.component.scss │ │ │ │ │ │ ├── dynamic-text-clamp.component.spec.ts │ │ │ │ │ │ ├── dynamic-text-clamp.component.ts │ │ │ │ │ │ └── dynamic-text-clamp.stories.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-focusable │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── focusable-item.directive.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-icon │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── icon │ │ │ │ │ │ ├── icon.component.scss │ │ │ │ │ │ ├── icon.component.spec.ts │ │ │ │ │ │ └── icon.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-not-found │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── not-found-page.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-pagination │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── infinite-scroll-trigger │ │ │ │ │ │ └── infinite-scroll-trigger.directive.ts │ │ │ │ │ └── pagination │ │ │ │ │ │ ├── pagination.component.html │ │ │ │ │ │ ├── pagination.component.scss │ │ │ │ │ │ ├── pagination.component.spec.ts │ │ │ │ │ │ ├── pagination.component.stories.ts │ │ │ │ │ │ ├── pagination.component.ts │ │ │ │ │ │ ├── pagination.store.ts │ │ │ │ │ │ └── query-pagination.directive.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-pill │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── pill.directive.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-social-media-icons │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── social-media-icon-item.component.ts │ │ │ │ │ ├── social-media-icons.component.html │ │ │ │ │ ├── social-media-icons.component.scss │ │ │ │ │ ├── social-media-icons.component.stories.ts │ │ │ │ │ └── social-media-icons.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── ui-tooltip │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ └── ui-tooltip │ │ │ │ │ │ ├── tooltip.directive.ts │ │ │ │ │ │ └── ui-tooltip.component.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── util-seo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── seo.provider.ts │ │ │ │ │ ├── services │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── seo-meta-keys.ts │ │ │ │ │ │ ├── seo-title-keys.ts │ │ │ │ │ │ └── seo.service.ts │ │ │ │ │ ├── state │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── seo.store-feature.ts │ │ │ │ │ └── tokens │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── seo.token.ts │ │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── utils-inject │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── inject-host-resized.event.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── shell │ │ └── feature-shell-web │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── blog-shell.routes.ts │ │ │ │ └── root-shell.component.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── tracking │ │ └── feature │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── const.ts │ │ │ │ ├── cookie-consent │ │ │ │ │ ├── cookie-consent.provider.ts │ │ │ │ │ ├── cookie-consent.service.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ │ ├── partytown │ │ │ │ │ ├── index.ts │ │ │ │ │ └── partytown.service.ts │ │ │ │ ├── scripts-loader.service.ts │ │ │ │ ├── scripts-loader.ts │ │ │ │ ├── scripts │ │ │ │ │ ├── gtm-script.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── meta-pixel.ts │ │ │ │ │ └── meta-script.ts │ │ │ │ └── tracking.ts │ │ │ └── test-setup.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ └── writing-rules │ │ └── feature-writing-rules │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── interfaces │ │ │ │ └── node.interface.ts │ │ │ ├── rule-node │ │ │ │ ├── rule-node.component.html │ │ │ │ ├── rule-node.component.spec.ts │ │ │ │ └── rule-node.component.ts │ │ │ ├── rules-row │ │ │ │ ├── rules-row.component.html │ │ │ │ ├── rules-row.component.spec.ts │ │ │ │ └── rules-row.component.ts │ │ │ └── writing-rules │ │ │ │ ├── rules-content.ts │ │ │ │ ├── writing-rules.component.html │ │ │ │ ├── writing-rules.component.spec.ts │ │ │ │ └── writing-rules.component.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── shared │ ├── assets │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── package.json │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── storybook │ │ │ │ ├── article-featured-image.png │ │ │ │ └── author-image.jpg │ │ │ │ └── styles │ │ │ │ ├── cookies-consent.scss │ │ │ │ ├── global.css │ │ │ │ ├── main.scss │ │ │ │ └── typography.scss │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── config │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── config.service.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── storybook │ │ ├── .eslintrc.json │ │ ├── .storybook │ │ │ ├── main.scss │ │ │ ├── main.ts │ │ │ ├── preview.ts │ │ │ ├── tailwind.config.js │ │ │ └── tsconfig.json │ │ ├── README.md │ │ ├── project.json │ │ ├── stories │ │ │ └── typography.stories.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ ├── utils-algolia │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── algolia.config.ts │ │ │ │ ├── algolia.provider.ts │ │ │ │ └── algolia.service.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── utils-i18n │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── utils-signal-store │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── callstate.type.ts │ │ │ ├── helpers │ │ │ │ ├── capitalize.function.ts │ │ │ │ ├── join.type.ts │ │ │ │ └── uncapitalize.function.ts │ │ │ ├── with-callstate.function.spec.ts │ │ │ └── with-callstate.function.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json └── utils │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ └── directives │ │ │ └── repeat.directive.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── lint-staged.config.mjs ├── migrations.json ├── nx.json ├── package.json ├── pnpm-lock.yaml ├── scripts ├── get_last_build_status.sh ├── get_last_builds_url.sh └── purge_kv.sh ├── storybook-migration-summary.md ├── stylelint.config.mjs ├── tailwind.preset.js └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Dockerfile-deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/Dockerfile-deploy -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkinsfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/Jenkinsfile.build -------------------------------------------------------------------------------- /Jenkinsfile.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/Jenkinsfile.deploy -------------------------------------------------------------------------------- /Jenkinsfile.purge_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/Jenkinsfile.purge_cache -------------------------------------------------------------------------------- /Jenkinsfile.purge_kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/Jenkinsfile.purge_kv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/README.md -------------------------------------------------------------------------------- /apps/blog-bff/.dev.vars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/.dev.vars.example -------------------------------------------------------------------------------- /apps/blog-bff/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/.eslintrc.json -------------------------------------------------------------------------------- /apps/blog-bff/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/jest.config.ts -------------------------------------------------------------------------------- /apps/blog-bff/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/project.json -------------------------------------------------------------------------------- /apps/blog-bff/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/src/main.ts -------------------------------------------------------------------------------- /apps/blog-bff/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/tsconfig.app.json -------------------------------------------------------------------------------- /apps/blog-bff/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/tsconfig.json -------------------------------------------------------------------------------- /apps/blog-bff/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/blog-bff/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-bff/wrangler.toml -------------------------------------------------------------------------------- /apps/blog-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/blog-e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/README.md -------------------------------------------------------------------------------- /apps/blog-e2e/e2e/about-us.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/e2e/about-us.spec.ts -------------------------------------------------------------------------------- /apps/blog-e2e/e2e/migrated-articles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/e2e/migrated-articles.spec.ts -------------------------------------------------------------------------------- /apps/blog-e2e/e2e/navigations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/e2e/navigations.spec.ts -------------------------------------------------------------------------------- /apps/blog-e2e/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/jest.config.ts -------------------------------------------------------------------------------- /apps/blog-e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/package.json -------------------------------------------------------------------------------- /apps/blog-e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/playwright.config.ts -------------------------------------------------------------------------------- /apps/blog-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/project.json -------------------------------------------------------------------------------- /apps/blog-e2e/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog-e2e/src/lib/elements/newsletter.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/src/lib/elements/newsletter.element.ts -------------------------------------------------------------------------------- /apps/blog-e2e/src/lib/pages/about-us.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/src/lib/pages/about-us.page.ts -------------------------------------------------------------------------------- /apps/blog-e2e/src/lib/pages/article.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/src/lib/pages/article.page.ts -------------------------------------------------------------------------------- /apps/blog-e2e/src/lib/pages/author.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/src/lib/pages/author.page.ts -------------------------------------------------------------------------------- /apps/blog-e2e/src/lib/pages/base.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/src/lib/pages/base.page.ts -------------------------------------------------------------------------------- /apps/blog-e2e/src/lib/pages/become-author.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/src/lib/pages/become-author.page.ts -------------------------------------------------------------------------------- /apps/blog-e2e/src/lib/pages/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/src/lib/pages/home.page.ts -------------------------------------------------------------------------------- /apps/blog-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/blog-e2e/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/tsconfig.lib.json -------------------------------------------------------------------------------- /apps/blog-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/blog/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/.env -------------------------------------------------------------------------------- /apps/blog/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/.eslintrc.json -------------------------------------------------------------------------------- /apps/blog/.postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/.postcssrc.json -------------------------------------------------------------------------------- /apps/blog/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/jest.config.ts -------------------------------------------------------------------------------- /apps/blog/plugins/env-var-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/plugins/env-var-plugin.js -------------------------------------------------------------------------------- /apps/blog/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/project.json -------------------------------------------------------------------------------- /apps/blog/routes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/scripts/build-routes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/scripts/build-routes.mjs -------------------------------------------------------------------------------- /apps/blog/scripts/build-sitemap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/scripts/build-sitemap.mjs -------------------------------------------------------------------------------- /apps/blog/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/server.ts -------------------------------------------------------------------------------- /apps/blog/src/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/_redirects -------------------------------------------------------------------------------- /apps/blog/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/blog/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/blog/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/blog/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/app/app.config.server.ts -------------------------------------------------------------------------------- /apps/blog/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/blog/src/app/providers/seo-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/app/providers/seo-provider.ts -------------------------------------------------------------------------------- /apps/blog/src/app/providers/tracking/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tracking.provider'; 2 | -------------------------------------------------------------------------------- /apps/blog/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/src/assets/GDG-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/GDG-cloud.png -------------------------------------------------------------------------------- /apps/blog/src/assets/HOA-hire-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/HOA-hire-us.png -------------------------------------------------------------------------------- /apps/blog/src/assets/HOA-hiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/HOA-hiring.png -------------------------------------------------------------------------------- /apps/blog/src/assets/HOA_logo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/HOA_logo_blue.png -------------------------------------------------------------------------------- /apps/blog/src/assets/HOA_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/HOA_logo_white.png -------------------------------------------------------------------------------- /apps/blog/src/assets/angular-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/angular-community.png -------------------------------------------------------------------------------- /apps/blog/src/assets/angular-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/angular-js.png -------------------------------------------------------------------------------- /apps/blog/src/assets/angular-love-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/angular-love-logo.webp -------------------------------------------------------------------------------- /apps/blog/src/assets/article-placeholder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/article-placeholder.webp -------------------------------------------------------------------------------- /apps/blog/src/assets/banners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/banners.json -------------------------------------------------------------------------------- /apps/blog/src/assets/comments-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/comments-theme.css -------------------------------------------------------------------------------- /apps/blog/src/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/blog/src/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /apps/blog/src/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /apps/blog/src/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /apps/blog/src/assets/fonts/inter-v20-cyrillic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/fonts/inter-v20-cyrillic.woff2 -------------------------------------------------------------------------------- /apps/blog/src/assets/fonts/inter-v20-greek-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/fonts/inter-v20-greek-ext.woff2 -------------------------------------------------------------------------------- /apps/blog/src/assets/fonts/inter-v20-greek.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/fonts/inter-v20-greek.woff2 -------------------------------------------------------------------------------- /apps/blog/src/assets/fonts/inter-v20-latin-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/fonts/inter-v20-latin-ext.woff2 -------------------------------------------------------------------------------- /apps/blog/src/assets/fonts/inter-v20-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/fonts/inter-v20-latin.woff2 -------------------------------------------------------------------------------- /apps/blog/src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/i18n/en.json -------------------------------------------------------------------------------- /apps/blog/src/assets/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/i18n/pl.json -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/arrow-down.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/arrow-left.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/calendar.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/circle-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/circle-center.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/circle-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/circle-check.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/clock.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/cross.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/down-arrow.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/facebook.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/github-mark.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/link.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/linkedIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/linkedIn.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/location-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/location-pin.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/magnifier-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/magnifier-glass.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/moon.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/send.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/sun.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/tick.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/translate.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/twitter-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/twitter-x.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/up-arrow.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/youtube.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/zoom-in.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/zoom-out.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/icons/zoom-reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/icons/zoom-reset.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/mock-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/mock-avatar.png -------------------------------------------------------------------------------- /apps/blog/src/assets/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/not-found.svg -------------------------------------------------------------------------------- /apps/blog/src/assets/roadmap-tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/roadmap-tiles.json -------------------------------------------------------------------------------- /apps/blog/src/assets/scripts/gtm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/scripts/gtm.js -------------------------------------------------------------------------------- /apps/blog/src/assets/turso-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/assets/turso-logo-dark.png -------------------------------------------------------------------------------- /apps/blog/src/environments/app-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/environments/app-environment.ts -------------------------------------------------------------------------------- /apps/blog/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/blog/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/blog/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/index.html -------------------------------------------------------------------------------- /apps/blog/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/main.server.ts -------------------------------------------------------------------------------- /apps/blog/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/main.ts -------------------------------------------------------------------------------- /apps/blog/src/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/robots.txt -------------------------------------------------------------------------------- /apps/blog/src/sitemap.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/styles.scss -------------------------------------------------------------------------------- /apps/blog/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/test-setup.ts -------------------------------------------------------------------------------- /apps/blog/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/src/types.d.ts -------------------------------------------------------------------------------- /apps/blog/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/tailwind.config.js -------------------------------------------------------------------------------- /apps/blog/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/tsconfig.app.json -------------------------------------------------------------------------------- /apps/blog/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/blog/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/tsconfig.json -------------------------------------------------------------------------------- /apps/blog/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/apps/blog/tsconfig.spec.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /hooks/debugger-checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/hooks/debugger-checker.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/README.md -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/project.json -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default as articles } from './lib/api'; 2 | -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/src/lib/api.ts -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/src/lib/dtos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/src/lib/dtos.ts -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/src/lib/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/src/lib/mappers.ts -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/src/lib/utils.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/src/lib/wp-posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/src/lib/wp-posts.ts -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-bff/articles/api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/articles/api/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/README.md -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/project.json -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default as authors } from './lib/api'; 2 | -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/src/lib/api.ts -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-bff/authors/api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/authors/api/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/README.md -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/project.json -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default as banners } from './lib/api'; 2 | -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/src/lib/api.ts -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/src/lib/dtos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/src/lib/dtos.ts -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/src/lib/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/src/lib/mappers.ts -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/src/lib/wp-banners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/src/lib/wp-banners.ts -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-bff/banners/api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/banners/api/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/README.md -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/project.json -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default as newsletter } from './lib/api'; 2 | -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/src/lib/api.ts -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/src/lib/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/src/lib/models.ts -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-bff/newsletter/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/newsletter/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/schema/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/schema/README.md -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/schema/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/schema/project.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/schema'; 2 | -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/src/lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/schema/src/lib/schema.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/schema/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/schema/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/schema/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/schema/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-drizzle/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-drizzle/README.md -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-drizzle/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-drizzle/project.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/utils'; 2 | -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-drizzle/src/lib/utils.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-drizzle/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-drizzle/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-drizzle/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-drizzle/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-middleware/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-middleware/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-middleware/README.md -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-middleware/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-middleware/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-middleware/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-middleware/project.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-middleware/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-middleware/src/index.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-middleware/src/lib/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-middleware/src/lib/lang.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-middleware/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-middleware/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/README.md -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/project.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/src/index.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/src/lib/utils.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/src/lib/wp-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/src/lib/wp-client.ts -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-bff/shared/util-wp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-bff/shared/util-wp/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-contracts/articles/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-contracts/articles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/README.md -------------------------------------------------------------------------------- /libs/blog-contracts/articles/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-contracts/articles/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/project.json -------------------------------------------------------------------------------- /libs/blog-contracts/articles/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/src/index.ts -------------------------------------------------------------------------------- /libs/blog-contracts/articles/src/lib/articles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/src/lib/articles.ts -------------------------------------------------------------------------------- /libs/blog-contracts/articles/src/lib/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/src/lib/languages.ts -------------------------------------------------------------------------------- /libs/blog-contracts/articles/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-contracts/articles/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-contracts/articles/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/articles/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-contracts/authors/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-contracts/authors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/README.md -------------------------------------------------------------------------------- /libs/blog-contracts/authors/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-contracts/authors/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/project.json -------------------------------------------------------------------------------- /libs/blog-contracts/authors/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/authors'; 2 | -------------------------------------------------------------------------------- /libs/blog-contracts/authors/src/lib/authors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/src/lib/authors.ts -------------------------------------------------------------------------------- /libs/blog-contracts/authors/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog-contracts/authors/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-contracts/authors/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-contracts/authors/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/authors/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-contracts/banners/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-contracts/banners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/README.md -------------------------------------------------------------------------------- /libs/blog-contracts/banners/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-contracts/banners/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/project.json -------------------------------------------------------------------------------- /libs/blog-contracts/banners/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/banners'; 2 | -------------------------------------------------------------------------------- /libs/blog-contracts/banners/src/lib/banners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/src/lib/banners.ts -------------------------------------------------------------------------------- /libs/blog-contracts/banners/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog-contracts/banners/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-contracts/banners/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-contracts/banners/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/banners/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/README.md -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/project.json -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/src/index.ts -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/src/lib/regular-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/src/lib/regular-node.ts -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/src/lib/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/src/lib/resource.ts -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-contracts/roadmap/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/roadmap/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog-contracts/shared/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/shared/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog-contracts/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/shared/README.md -------------------------------------------------------------------------------- /libs/blog-contracts/shared/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/shared/jest.config.ts -------------------------------------------------------------------------------- /libs/blog-contracts/shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/shared/project.json -------------------------------------------------------------------------------- /libs/blog-contracts/shared/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared/array-response.model'; 2 | -------------------------------------------------------------------------------- /libs/blog-contracts/shared/src/lib/shared/array-response.model.ts: -------------------------------------------------------------------------------- 1 | export interface ArrayResponse { 2 | data: T[]; 3 | total: number; 4 | } 5 | -------------------------------------------------------------------------------- /libs/blog-contracts/shared/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/shared/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog-contracts/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/shared/tsconfig.json -------------------------------------------------------------------------------- /libs/blog-contracts/shared/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/shared/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog-contracts/shared/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog-contracts/shared/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/about-us/feature-about-us/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/about-us/feature-about-us/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/about-us/feature-about-us/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/about-us/feature-about-us/README.md -------------------------------------------------------------------------------- /libs/blog/about-us/feature-about-us/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/about-us/feature-about-us/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/about-us/feature-about-us/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/about-us/feature-about-us/project.json -------------------------------------------------------------------------------- /libs/blog/about-us/feature-about-us/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/about-us/feature-about-us/src/index.ts -------------------------------------------------------------------------------- /libs/blog/about-us/feature-about-us/src/lib/feature-about-us/feature-about-us.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/about-us/feature-about-us/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/about-us/feature-about-us/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/data-access/README.md -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/data-access/project.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/state/ad-banner.store'; 2 | -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/README.md -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/project.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/src/index.ts -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/ad-banner/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/ad-banner/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/app-theme/data-access-app-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/app-theme/data-access-app-theme/README.md -------------------------------------------------------------------------------- /libs/blog/app-theme/data-access-app-theme/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app-theme.store'; 2 | -------------------------------------------------------------------------------- /libs/blog/articles/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/articles/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/README.md -------------------------------------------------------------------------------- /libs/blog/articles/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/articles/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/project.json -------------------------------------------------------------------------------- /libs/blog/articles/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/blog/articles/data-access/src/lib/guards/index.ts: -------------------------------------------------------------------------------- 1 | export * from './article-exists.guard'; 2 | -------------------------------------------------------------------------------- /libs/blog/articles/data-access/src/lib/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './comments.provider'; 2 | -------------------------------------------------------------------------------- /libs/blog/articles/data-access/src/lib/tokens/index.ts: -------------------------------------------------------------------------------- 1 | export * from './comments.token'; 2 | -------------------------------------------------------------------------------- /libs/blog/articles/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/articles/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/articles/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/articles/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-article/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-article/README.md -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-article/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-article/project.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-article/src/index.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/src/lib/article-details/article-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-article/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-article/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-article/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-article/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-category/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-category/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-category/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-category/README.md -------------------------------------------------------------------------------- /libs/blog/articles/feature-category/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-category/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-category/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-category/project.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-category/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/category-articles.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/articles/feature-category/src/lib/category-articles.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/articles/feature-category/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-category/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-comments/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-comments/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-comments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-comments/README.md -------------------------------------------------------------------------------- /libs/blog/articles/feature-comments/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-comments/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-comments/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-comments/project.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-comments/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-comments/src/index.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-comments/src/lib/giscus-comments/giscus-comments.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/articles/feature-comments/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-comments/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-latest-articles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-latest-articles/README.md -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-list/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-list/README.md -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-list/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-list/project.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/articles-list-container.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/src/lib/category-section-container/category-section-container.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-list/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-list/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-list/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-list/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-list/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-related-articles/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/related-articles.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/README.md -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/project.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/routes'; 2 | -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/src/lib/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/src/lib/routes.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/articles/feature-shell/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/feature-shell/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-card/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-card/README.md -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-card/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-card/project.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-card/src/index.ts -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/src/lib/ui-article-card/ui-article-card.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-card/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-card/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-card/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-card/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-content/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-content/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-content/README.md -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-content/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-content/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-content/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-content/project.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-content/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-content/src/index.ts -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-content/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-content/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-article-list-title/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-article-list-title/README.md -------------------------------------------------------------------------------- /libs/blog/articles/ui-table-of-contents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-table-of-contents/README.md -------------------------------------------------------------------------------- /libs/blog/articles/ui-table-of-contents/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-table-of-contents/project.json -------------------------------------------------------------------------------- /libs/blog/articles/ui-table-of-contents/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/articles/ui-table-of-contents/src/index.ts -------------------------------------------------------------------------------- /libs/blog/articles/ui-table-of-contents/src/lib/table-of-contents/table-of-contents.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/authors/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/authors/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/README.md -------------------------------------------------------------------------------- /libs/blog/authors/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/authors/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/project.json -------------------------------------------------------------------------------- /libs/blog/authors/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/blog/authors/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/authors/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/authors/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/authors/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/README.md -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/project.json -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/src/index.ts -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/src/lib/feature-author/feature-author.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/authors/feature-author/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/feature-author/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/README.md -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/project.json -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/src/index.ts -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/authors/ui-author-card/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/authors/ui-author-card/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/home/feature-home/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/home/feature-home/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/home/feature-home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/home/feature-home/README.md -------------------------------------------------------------------------------- /libs/blog/home/feature-home/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/home/feature-home/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/home/feature-home/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/home/feature-home/project.json -------------------------------------------------------------------------------- /libs/blog/home/feature-home/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/home-page'; 2 | -------------------------------------------------------------------------------- /libs/blog/home/feature-home/src/lib/home-page/home-page.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/home/feature-home/src/lib/home-page/index.ts: -------------------------------------------------------------------------------- 1 | export * from './home-page.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/home/feature-home/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/home/feature-home/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/home/feature-home/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/home/feature-home/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/home/feature-home/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/home/feature-home/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/home/feature-home/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/home/feature-home/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/README.md -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/project.json -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/src/lib/guard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './active-language.guard'; 2 | -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/src/lib/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/src/lib/providers.ts -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/i18n/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/i18n/util/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/i18n/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/README.md -------------------------------------------------------------------------------- /libs/blog/i18n/util/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/i18n/util/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/project.json -------------------------------------------------------------------------------- /libs/blog/i18n/util/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/src/index.ts -------------------------------------------------------------------------------- /libs/blog/i18n/util/src/lib/i18n.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/src/lib/i18n.service.ts -------------------------------------------------------------------------------- /libs/blog/i18n/util/src/lib/localize.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/src/lib/localize.pipe.spec.ts -------------------------------------------------------------------------------- /libs/blog/i18n/util/src/lib/localize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/src/lib/localize.pipe.ts -------------------------------------------------------------------------------- /libs/blog/i18n/util/src/lib/localize.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/src/lib/localize.service.spec.ts -------------------------------------------------------------------------------- /libs/blog/i18n/util/src/lib/localize.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/src/lib/localize.service.ts -------------------------------------------------------------------------------- /libs/blog/i18n/util/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/i18n/util/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/i18n/util/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/i18n/util/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/i18n/util/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/README.md -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/project.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/src/index.ts -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/lib/footer/footer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/lib/footer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './footer.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/lib/header/components/header-language-button.component.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/lib/header/components/header-language.component.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/lib/header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './header.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/lib/layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './layout.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/lib/layout/layout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-layouts/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-layouts/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/README.md -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/project.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/src/index.ts -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/src/lib/navigation/navigation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/layouts/ui-navigation/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/layouts/ui-navigation/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/data-access/README.md -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/data-access/project.json -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/state/newsletter.store'; 2 | -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/newsletter/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/newsletter/feature-newsletter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/feature-newsletter/README.md -------------------------------------------------------------------------------- /libs/blog/newsletter/feature-newsletter/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/feature-newsletter/project.json -------------------------------------------------------------------------------- /libs/blog/newsletter/feature-newsletter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/newsletter/feature-newsletter/src/index.ts -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/README.md -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/project.json -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/src/index.ts -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/partners/ui-partners/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/partners/ui-partners/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/README.md -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/project.json -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/src/lib/infrastructure/index.ts: -------------------------------------------------------------------------------- 1 | export * from './roadmap.service'; 2 | -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/src/lib/state/index.ts: -------------------------------------------------------------------------------- 1 | export * from './roadmap-store'; 2 | -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/roadmap/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/roadmap/feature-roadmap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/feature-roadmap/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/roadmap/feature-roadmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/feature-roadmap/README.md -------------------------------------------------------------------------------- /libs/blog/roadmap/feature-roadmap/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/feature-roadmap/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/feature-roadmap/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/feature-roadmap/project.json -------------------------------------------------------------------------------- /libs/blog/roadmap/feature-roadmap/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/feature-roadmap.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/roadmap/feature-roadmap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/feature-roadmap/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-dialog/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-dialog/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-dialog/README.md -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-dialog/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-dialog/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-dialog/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-dialog/project.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-dialog/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/roadmap-dialog.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-dialog/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-dialog/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-node/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-node/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-node/README.md -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-node/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-node/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-node/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-node/project.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-node/src/index.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap-node/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/README.md -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/project.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/src/index.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/src/lib/components/connected-nodes/connected-nodes.component.scss: -------------------------------------------------------------------------------- 1 | .flipped { 2 | transform: scaleX(-1); 3 | } 4 | -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/src/lib/components/vertical-connector-arrow/vertical-connector-arrow.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/roadmap/ui-roadmap/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/roadmap/ui-roadmap/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/search/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/search/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/README.md -------------------------------------------------------------------------------- /libs/blog/search/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/search/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/project.json -------------------------------------------------------------------------------- /libs/blog/search/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/blog/search/data-access/src/lib/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './search.provider'; 2 | -------------------------------------------------------------------------------- /libs/blog/search/data-access/src/lib/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './hit-to-search-result.util'; 2 | -------------------------------------------------------------------------------- /libs/blog/search/data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/search/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/search/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/search/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/search/feature-search-results-page/src/lib/search-results-page/search-results-page.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/search/feature-search/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/search/feature-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/README.md -------------------------------------------------------------------------------- /libs/blog/search/feature-search/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/search/feature-search/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/project.json -------------------------------------------------------------------------------- /libs/blog/search/feature-search/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/src/index.ts -------------------------------------------------------------------------------- /libs/blog/search/feature-search/src/lib/feature-search/search-dialog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './search-dialog.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/search/feature-search/src/lib/feature-search/search-dialog/search-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/search/feature-search/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/search/feature-search/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/search/feature-search/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/search/feature-search/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-search/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/README.md -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/project.json -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/routes'; 2 | -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/src/lib/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/src/lib/routes.ts -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/search/feature-shell/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/feature-shell/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/search/ui-search-result/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/ui-search-result/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/search/ui-search-result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/ui-search-result/README.md -------------------------------------------------------------------------------- /libs/blog/search/ui-search-result/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/ui-search-result/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/search/ui-search-result/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/ui-search-result/project.json -------------------------------------------------------------------------------- /libs/blog/search/ui-search-result/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/ui-search-result/src/index.ts -------------------------------------------------------------------------------- /libs/blog/search/ui-search-result/src/lib/search-result-item/search-result-item.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/search/ui-search-result/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/search/ui-search-result/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/types/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/README.md -------------------------------------------------------------------------------- /libs/blog/shared/types/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/types/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/ng-package.json -------------------------------------------------------------------------------- /libs/blog/shared/types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/package.json -------------------------------------------------------------------------------- /libs/blog/shared/types/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/project.json -------------------------------------------------------------------------------- /libs/blog/shared/types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/src/index.ts -------------------------------------------------------------------------------- /libs/blog/shared/types/src/lib/article-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/src/lib/article-card.ts -------------------------------------------------------------------------------- /libs/blog/shared/types/src/lib/partner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/src/lib/partner.ts -------------------------------------------------------------------------------- /libs/blog/shared/types/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/types/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/types/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/blog/shared/types/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/types/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-avatar/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-avatar/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-avatar/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-avatar/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/avatar.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/src/lib/avatar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-avatar/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-avatar/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-avatar/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-avatar/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-avatar/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/src/index.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/src/lib/button/button.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-button/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-button/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/src/index.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/src/lib/card.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/src/lib/card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/src/lib/card.component.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/src/lib/card.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/src/lib/card.stories.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-card/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-card/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-difficulty/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-difficulty/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-difficulty/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-difficulty/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/ui-difficulty.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-difficulty/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-difficulty/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-difficulty/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-difficulty/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-difficulty/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-dynamic-text-clamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-dynamic-text-clamp/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-dynamic-text-clamp/src/lib/dynamic-text-clamp/dynamic-text-clamp.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-focusable/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-focusable/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-focusable/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-focusable/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/focusable-item.directive'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-focusable/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-focusable/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-focusable/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-focusable/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-focusable/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/src/index.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-icon/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-icon/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-not-found/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-not-found/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-not-found/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-not-found/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/not-found-page.component'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-not-found/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-not-found/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-not-found/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-not-found/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-not-found/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/src/index.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/src/lib/pagination/pagination.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pagination/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pagination/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/pill.directive'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/src/lib/pill.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/src/lib/pill.directive.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-pill/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-pill/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-social-media-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-social-media-icons/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-social-media-icons/src/lib/social-media-icons.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/README.md -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/project.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/src/index.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/ui-tooltip/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/ui-tooltip/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/README.md -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/project.json -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/src/index.ts -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/src/lib/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './seo.provider'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/src/lib/state/index.ts: -------------------------------------------------------------------------------- 1 | export * from './seo.store-feature'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/src/lib/tokens/index.ts: -------------------------------------------------------------------------------- 1 | export * from './seo.token'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/util-seo/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/util-seo/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/utils-inject/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/utils-inject/README.md -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/utils-inject/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/utils-inject/project.json -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/inject-host-resized.event'; 2 | -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/utils-inject/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/utils-inject/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/utils-inject/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/shared/utils-inject/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shared/utils-inject/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/blog/shell/feature-shell-web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shell/feature-shell-web/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/shell/feature-shell-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shell/feature-shell-web/README.md -------------------------------------------------------------------------------- /libs/blog/shell/feature-shell-web/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shell/feature-shell-web/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/shell/feature-shell-web/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shell/feature-shell-web/project.json -------------------------------------------------------------------------------- /libs/blog/shell/feature-shell-web/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/blog-shell.routes'; 2 | -------------------------------------------------------------------------------- /libs/blog/shell/feature-shell-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/shell/feature-shell-web/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/tracking/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/blog/tracking/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/README.md -------------------------------------------------------------------------------- /libs/blog/tracking/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/blog/tracking/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/project.json -------------------------------------------------------------------------------- /libs/blog/tracking/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/src/index.ts -------------------------------------------------------------------------------- /libs/blog/tracking/feature/src/lib/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/src/lib/const.ts -------------------------------------------------------------------------------- /libs/blog/tracking/feature/src/lib/cookie-consent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './models'; 2 | -------------------------------------------------------------------------------- /libs/blog/tracking/feature/src/lib/partytown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './partytown.service'; 2 | -------------------------------------------------------------------------------- /libs/blog/tracking/feature/src/lib/tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/src/lib/tracking.ts -------------------------------------------------------------------------------- /libs/blog/tracking/feature/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/src/test-setup.ts -------------------------------------------------------------------------------- /libs/blog/tracking/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/blog/tracking/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/blog/tracking/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/blog/tracking/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/assets/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/assets/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/assets/README.md -------------------------------------------------------------------------------- /libs/shared/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/assets/package.json -------------------------------------------------------------------------------- /libs/shared/assets/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/assets/project.json -------------------------------------------------------------------------------- /libs/shared/assets/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/assets/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/assets/src/lib/styles/global.css -------------------------------------------------------------------------------- /libs/shared/assets/src/lib/styles/main.scss: -------------------------------------------------------------------------------- 1 | @use 'typography'; 2 | -------------------------------------------------------------------------------- /libs/shared/assets/src/lib/styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/assets/src/lib/styles/typography.scss -------------------------------------------------------------------------------- /libs/shared/assets/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/assets/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/assets/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/assets/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/config/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/README.md -------------------------------------------------------------------------------- /libs/shared/config/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/config/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/project.json -------------------------------------------------------------------------------- /libs/shared/config/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/config.service'; 2 | -------------------------------------------------------------------------------- /libs/shared/config/src/lib/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/src/lib/config.service.ts -------------------------------------------------------------------------------- /libs/shared/config/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/config/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/config/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/config/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/storybook/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/storybook/.storybook/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/.storybook/main.scss -------------------------------------------------------------------------------- /libs/shared/storybook/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/.storybook/main.ts -------------------------------------------------------------------------------- /libs/shared/storybook/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/.storybook/preview.ts -------------------------------------------------------------------------------- /libs/shared/storybook/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/.storybook/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/storybook/README.md: -------------------------------------------------------------------------------- 1 | # storybook 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/shared/storybook/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/project.json -------------------------------------------------------------------------------- /libs/shared/storybook/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/tailwind.config.js -------------------------------------------------------------------------------- /libs/shared/storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/storybook/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/storybook/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/utils-algolia/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/utils-algolia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/README.md -------------------------------------------------------------------------------- /libs/shared/utils-algolia/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/utils-algolia/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/project.json -------------------------------------------------------------------------------- /libs/shared/utils-algolia/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/src/index.ts -------------------------------------------------------------------------------- /libs/shared/utils-algolia/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/utils-algolia/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/utils-algolia/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/utils-algolia/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-algolia/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/utils-i18n/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-i18n/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/utils-i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-i18n/README.md -------------------------------------------------------------------------------- /libs/shared/utils-i18n/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-i18n/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/utils-i18n/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-i18n/project.json -------------------------------------------------------------------------------- /libs/shared/utils-i18n/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/utils'; 2 | -------------------------------------------------------------------------------- /libs/shared/utils-i18n/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-i18n/src/lib/utils.ts -------------------------------------------------------------------------------- /libs/shared/utils-i18n/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-i18n/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/utils-i18n/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-i18n/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/utils-i18n/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-i18n/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/README.md -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/project.json -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/src/index.ts -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/utils-signal-store/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/shared/utils-signal-store/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/.eslintrc.json -------------------------------------------------------------------------------- /libs/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/README.md -------------------------------------------------------------------------------- /libs/utils/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/jest.config.ts -------------------------------------------------------------------------------- /libs/utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/project.json -------------------------------------------------------------------------------- /libs/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/src/index.ts -------------------------------------------------------------------------------- /libs/utils/src/lib/directives/repeat.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/src/lib/directives/repeat.directive.ts -------------------------------------------------------------------------------- /libs/utils/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/src/test-setup.ts -------------------------------------------------------------------------------- /libs/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/tsconfig.json -------------------------------------------------------------------------------- /libs/utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/utils/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/libs/utils/tsconfig.spec.json -------------------------------------------------------------------------------- /lint-staged.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/lint-staged.config.mjs -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/migrations.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/get_last_build_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/scripts/get_last_build_status.sh -------------------------------------------------------------------------------- /scripts/get_last_builds_url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/scripts/get_last_builds_url.sh -------------------------------------------------------------------------------- /scripts/purge_kv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/scripts/purge_kv.sh -------------------------------------------------------------------------------- /storybook-migration-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/storybook-migration-summary.md -------------------------------------------------------------------------------- /stylelint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/stylelint.config.mjs -------------------------------------------------------------------------------- /tailwind.preset.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseOfAngular/angular-love/HEAD/tsconfig.base.json --------------------------------------------------------------------------------