├── libs
├── .gitkeep
├── auth
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ └── index.ts
│ │ ├── lib
│ │ │ └── auth-shared
│ │ │ │ ├── components
│ │ │ │ └── auth-login-button
│ │ │ │ │ ├── auth-login-button.component.scss
│ │ │ │ │ └── auth-login-button.component.html
│ │ │ │ └── auth-shared.common.ts
│ │ └── assets
│ │ │ └── i18n
│ │ │ ├── en.json
│ │ │ └── ru.json
│ ├── tsconfig.lib.prod.json
│ ├── README.md
│ ├── tsconfig.json
│ ├── tsconfig.spec.json
│ ├── tslint.json
│ └── jest.config.js
├── common
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ └── index.ts
│ │ ├── lib
│ │ │ ├── types
│ │ │ │ └── dictionary.type.ts
│ │ │ └── common.tokens.ts
│ │ └── index.ts
│ ├── tsconfig.json
│ ├── README.md
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── events
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ └── index.ts
│ │ └── lib
│ │ │ ├── events
│ │ │ ├── components
│ │ │ │ └── event-new-field-wrapper
│ │ │ │ │ └── event-new-field-wrapper.component.scss
│ │ │ └── containers
│ │ │ │ └── event-new
│ │ │ │ └── event-new.component.scss
│ │ │ └── events-core
│ │ │ └── interfaces
│ │ │ └── events-core-options.interface.ts
│ ├── tsconfig.json
│ ├── README.md
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── shared
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ └── index.ts
│ │ ├── lib
│ │ │ ├── components
│ │ │ │ ├── infinite-scroll
│ │ │ │ │ ├── infinite-scroll.component.scss
│ │ │ │ │ └── infinite-scroll.component.html
│ │ │ │ └── icon
│ │ │ │ │ └── icon.component.ts
│ │ │ └── pipes
│ │ │ │ ├── localized-date.pipe.spec.ts
│ │ │ │ └── language-label.pipe.ts
│ │ └── index.ts
│ ├── tsconfig.json
│ ├── README.md
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── store
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ ├── index.ts
│ │ │ └── stubs
│ │ │ │ └── payload.stub.ts
│ │ └── lib
│ │ │ ├── +state
│ │ │ ├── root.reducer.spec.ts
│ │ │ └── root.effects.ts
│ │ │ └── interfaces
│ │ │ ├── payload.interface.ts
│ │ │ └── router-url-state.interface.ts
│ ├── README.md
│ ├── tsconfig.json
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── users
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ ├── index.ts
│ │ │ └── stubs
│ │ │ │ └── user.stub.ts
│ │ └── lib
│ │ │ ├── users-shared
│ │ │ ├── components
│ │ │ │ └── user-load-button
│ │ │ │ │ ├── user-load-button.component.scss
│ │ │ │ │ └── user-load-button.component.html
│ │ │ └── users-shared.common.ts
│ │ │ └── users-core
│ │ │ ├── interfaces
│ │ │ ├── user.interface.ts
│ │ │ └── user-apollo.interface.ts
│ │ │ └── graphql
│ │ │ └── user.queries.ts
│ ├── tsconfig.lib.prod.json
│ ├── README.md
│ ├── tsconfig.json
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── layouts
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── lib
│ │ │ ├── layout
│ │ │ │ ├── components
│ │ │ │ │ ├── side-languages
│ │ │ │ │ │ └── side-languages.component.scss
│ │ │ │ │ ├── footer-copyright
│ │ │ │ │ │ ├── footer-copyright.component.html
│ │ │ │ │ │ └── footer-copyright.component.scss
│ │ │ │ │ ├── logo
│ │ │ │ │ │ ├── logo.component.html
│ │ │ │ │ │ ├── logo.component.scss
│ │ │ │ │ │ └── logo.component.ts
│ │ │ │ │ ├── side-tools
│ │ │ │ │ │ ├── side-tools.component.html
│ │ │ │ │ │ └── side-tools.component.ts
│ │ │ │ │ ├── toolbar
│ │ │ │ │ │ ├── toolbar.component.scss
│ │ │ │ │ │ ├── toolbar.component.html
│ │ │ │ │ │ └── toolbar.component.ts
│ │ │ │ │ ├── sidebar
│ │ │ │ │ │ └── sidebar.component.html
│ │ │ │ │ ├── side-search
│ │ │ │ │ │ └── side-search.component.html
│ │ │ │ │ ├── footer-bottom
│ │ │ │ │ │ ├── footer-bottom.component.html
│ │ │ │ │ │ ├── footer-bottom.component.ts
│ │ │ │ │ │ └── footer-bottom.component.scss
│ │ │ │ │ ├── footer
│ │ │ │ │ │ ├── footer.component.scss
│ │ │ │ │ │ └── footer.component.ts
│ │ │ │ │ ├── hamburger
│ │ │ │ │ │ └── hamburger.component.html
│ │ │ │ │ ├── search
│ │ │ │ │ │ └── search.component.scss
│ │ │ │ │ ├── header
│ │ │ │ │ │ └── header.component.html
│ │ │ │ │ └── footer-social
│ │ │ │ │ │ └── footer-social.component.html
│ │ │ │ ├── containers
│ │ │ │ │ └── base-layout
│ │ │ │ │ │ └── base-layout.component.scss
│ │ │ │ ├── interfaces
│ │ │ │ │ └── promo-top.interface.ts
│ │ │ │ └── layouts.tokens.ts
│ │ │ ├── layout-breadcrumbs
│ │ │ │ └── layout-breadcrumbs.common.ts
│ │ │ └── layout-core
│ │ │ │ └── interfaces
│ │ │ │ └── breadcrumb.interface.ts
│ │ ├── testing
│ │ │ ├── index.ts
│ │ │ └── stubs
│ │ │ │ └── payloads.stub.ts
│ │ └── assets
│ │ │ └── images
│ │ │ ├── slides
│ │ │ ├── slide-1.webp
│ │ │ ├── slide-2.webp
│ │ │ └── slide-3.webp
│ │ │ ├── layouts
│ │ │ └── footer-bg.webp
│ │ │ ├── promo-top
│ │ │ └── promo-top-1.webp
│ │ │ ├── transitions
│ │ │ └── slider-sprite.png
│ │ │ └── icons
│ │ │ └── down-arrow.svg
│ ├── tsconfig.json
│ ├── README.md
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── responsive
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ └── index.ts
│ │ └── lib
│ │ │ ├── responsive.tokens.ts
│ │ │ └── interfaces
│ │ │ └── adaptive.interface.ts
│ ├── tsconfig.json
│ ├── README.md
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── storage
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ └── index.ts
│ │ └── lib
│ │ │ └── interfaces
│ │ │ ├── local-storage.interface.ts
│ │ │ ├── session-storage.interface.ts
│ │ │ └── memory-storage.interface.ts
│ ├── tsconfig.json
│ ├── README.md
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── translation
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── testing
│ │ │ └── index.ts
│ │ ├── assets
│ │ │ └── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── ru.json
│ │ └── lib
│ │ │ ├── interfaces
│ │ │ └── translation.interface.ts
│ │ │ └── loaders
│ │ │ ├── server-translate.loader.spec.ts
│ │ │ └── browser-translate.loader.spec.ts
│ ├── tsconfig.json
│ ├── README.md
│ ├── tsconfig.spec.json
│ └── jest.config.js
├── dynamic-forms
│ ├── src
│ │ ├── test-setup.ts
│ │ ├── lib
│ │ │ ├── components
│ │ │ │ ├── field-input
│ │ │ │ │ └── field-input.component.scss
│ │ │ │ ├── field-textarea
│ │ │ │ │ └── field-textarea.component.scss
│ │ │ │ ├── field-typehead
│ │ │ │ │ └── field-typehead.component.scss
│ │ │ │ ├── field-wrapper
│ │ │ │ │ └── field-wrapper.component.scss
│ │ │ │ ├── field-input-mask
│ │ │ │ │ └── field-input-mask.component.scss
│ │ │ │ ├── field-empty-wrapper
│ │ │ │ │ ├── field-empty-wrapper.component.scss
│ │ │ │ │ └── field-empty-wrapper.component.html
│ │ │ │ ├── field-input-ucfirst
│ │ │ │ │ └── field-input-ucfirst.component.scss
│ │ │ │ ├── form
│ │ │ │ │ ├── form.component.scss
│ │ │ │ │ └── form.component.html
│ │ │ │ ├── field-date
│ │ │ │ │ └── field-date.component.scss
│ │ │ │ ├── field-radio
│ │ │ │ │ └── field-radio.component.scss
│ │ │ │ ├── field-checkbox
│ │ │ │ │ └── field-checkbox.component.scss
│ │ │ │ ├── field-input-range
│ │ │ │ │ └── field-input-range.component.scss
│ │ │ │ └── field-select
│ │ │ │ │ └── field-select.component.scss
│ │ │ ├── directives
│ │ │ │ ├── form-host.directive.ts
│ │ │ │ ├── form-host.directive.spec.ts
│ │ │ │ ├── input-range.directive.spec.ts
│ │ │ │ ├── input-mask.directive.spec.ts
│ │ │ │ └── input-ucfirst.directive.spec.ts
│ │ │ └── interfaces
│ │ │ │ └── dynamic-forms-options.interface.ts
│ │ └── testing
│ │ │ └── index.ts
│ ├── tsconfig.json
│ ├── README.md
│ ├── tsconfig.spec.json
│ └── jest.config.js
└── entities
│ ├── tsconfig.json
│ ├── src
│ └── lib
│ │ └── interfaces
│ │ └── types
│ │ ├── entity-options.type.ts
│ │ └── locale.type.ts
│ ├── README.md
│ ├── tsconfig.lib.json
│ ├── jest.config.js
│ └── tsconfig.spec.json
├── tools
├── schematics
│ └── .gitkeep
└── tsconfig.tools.json
├── apps
├── backend
│ └── api
│ │ ├── src
│ │ ├── app
│ │ │ ├── .gitkeep
│ │ │ ├── app.graphql
│ │ │ ├── users
│ │ │ │ ├── users.graphql
│ │ │ │ └── decorators
│ │ │ │ │ └── user.decorator.ts
│ │ │ ├── app.controller.ts
│ │ │ └── auth
│ │ │ │ ├── auth.graphql
│ │ │ │ └── decorators
│ │ │ │ └── auth.decorator.ts
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── uploads
│ │ │ │ ├── image-1.webp
│ │ │ │ ├── image-10.jpg
│ │ │ │ ├── image-2.jpg
│ │ │ │ ├── image-3.webp
│ │ │ │ ├── image-4.webp
│ │ │ │ ├── image-5.webp
│ │ │ │ ├── image-6.jpg
│ │ │ │ ├── image-7.webp
│ │ │ │ ├── image-8.jpg
│ │ │ │ └── image-9.jpg
│ │ └── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── tslint.json
│ │ ├── jest.config.js
│ │ ├── tsconfig.json
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.spec.json
│ │ ├── tsconfig.migrations.json
│ │ └── tsconfig.entities.json
└── frontend
│ ├── base
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── app
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.ts
│ │ │ └── app.browser.module.ts
│ │ ├── test-setup.ts
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ ├── styles.scss
│ │ ├── favicon.ico
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── jest.config.js
│ ├── tsconfig.spec.json
│ ├── tslint.json
│ └── tsconfig.server.json
│ ├── css
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── stylesheets
│ │ │ ├── mixins
│ │ │ │ └── .gitkeep
│ │ │ ├── utils.scss
│ │ │ ├── style.scss
│ │ │ └── common
│ │ │ │ └── theme.scss
│ │ ├── test-setup.ts
│ │ ├── app
│ │ │ ├── grids
│ │ │ │ ├── containers
│ │ │ │ │ └── grids-demo
│ │ │ │ │ │ ├── grids-demo.component.scss
│ │ │ │ │ │ └── grids-demo.component.ts
│ │ │ │ └── components
│ │ │ │ │ ├── grid-new
│ │ │ │ │ └── grid-new.component.ts
│ │ │ │ │ ├── grid-old
│ │ │ │ │ └── grid-old.component.ts
│ │ │ │ │ └── grid-feature
│ │ │ │ │ └── grid-feature.component.ts
│ │ │ ├── fixed-adaptive
│ │ │ │ └── containers
│ │ │ │ │ └── fixed-adaptive-demo
│ │ │ │ │ ├── fixed-adaptive-demo.component.scss
│ │ │ │ │ └── fixed-adaptive-demo.component.html
│ │ │ ├── home
│ │ │ │ ├── containers
│ │ │ │ │ └── home
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ └── home.common.ts
│ │ │ └── app.component.ts
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ ├── favicon.ico
│ │ ├── styles.scss
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── jest.config.js
│ ├── forms
│ ├── proxy.conf.json
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── images
│ │ │ │ ├── home
│ │ │ │ └── main.webp
│ │ │ │ └── events
│ │ │ │ └── main.webp
│ │ ├── app
│ │ │ ├── core
│ │ │ │ └── containers
│ │ │ │ │ └── app
│ │ │ │ │ ├── app.component.scss
│ │ │ │ │ └── app.component.html
│ │ │ ├── home
│ │ │ │ └── containers
│ │ │ │ │ └── home
│ │ │ │ │ └── home.component.scss
│ │ │ └── events
│ │ │ │ └── events.common.ts
│ │ ├── test-setup.ts
│ │ ├── favicon.ico
│ │ ├── styles.scss
│ │ ├── styles
│ │ │ ├── common
│ │ │ │ ├── buttons.scss
│ │ │ │ └── theme.scss
│ │ │ ├── utils.scss
│ │ │ ├── mixins
│ │ │ │ └── layouts.scss
│ │ │ ├── material
│ │ │ │ └── theme.scss
│ │ │ └── style.scss
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ ├── main.server.ts
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── graphql
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── images
│ │ │ │ ├── home
│ │ │ │ └── main.webp
│ │ │ │ └── events
│ │ │ │ └── main.webp
│ │ ├── app
│ │ │ ├── core
│ │ │ │ └── containers
│ │ │ │ │ └── app
│ │ │ │ │ ├── app.component.scss
│ │ │ │ │ └── app.component.html
│ │ │ ├── home
│ │ │ │ └── containers
│ │ │ │ │ └── home
│ │ │ │ │ └── home.component.scss
│ │ │ └── events
│ │ │ │ └── events.common.ts
│ │ ├── test-setup.ts
│ │ ├── favicon.ico
│ │ ├── styles
│ │ │ ├── common
│ │ │ │ ├── theme.scss
│ │ │ │ └── buttons.scss
│ │ │ ├── utils.scss
│ │ │ ├── mixins
│ │ │ │ └── layouts.scss
│ │ │ ├── material
│ │ │ │ └── theme.scss
│ │ │ └── style.scss
│ │ ├── styles.scss
│ │ └── environments
│ │ │ └── environment.prod.ts
│ ├── proxy.conf.json
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── markup
│ ├── proxy.conf.json
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── images
│ │ │ │ ├── home
│ │ │ │ └── main.webp
│ │ │ │ └── events
│ │ │ │ └── main.webp
│ │ ├── app
│ │ │ ├── core
│ │ │ │ └── containers
│ │ │ │ │ └── app
│ │ │ │ │ ├── app.component.scss
│ │ │ │ │ └── app.component.html
│ │ │ ├── events
│ │ │ │ └── containers
│ │ │ │ │ └── events
│ │ │ │ │ ├── events.component.html
│ │ │ │ │ ├── events.component.scss
│ │ │ │ │ └── events.component.ts
│ │ │ └── home
│ │ │ │ └── containers
│ │ │ │ └── home
│ │ │ │ ├── home.component.scss
│ │ │ │ └── home.component.html
│ │ ├── test-setup.ts
│ │ ├── favicon.ico
│ │ ├── styles.scss
│ │ ├── styles
│ │ │ ├── common
│ │ │ │ ├── theme.scss
│ │ │ │ └── buttons.scss
│ │ │ ├── utils.scss
│ │ │ ├── mixins
│ │ │ │ └── layouts.scss
│ │ │ ├── material
│ │ │ │ └── theme.scss
│ │ │ └── style.scss
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── redux
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── ru.json
│ │ ├── app
│ │ │ ├── users
│ │ │ │ ├── containers
│ │ │ │ │ └── user
│ │ │ │ │ │ ├── user.component.scss
│ │ │ │ │ │ ├── user.component.html
│ │ │ │ │ │ └── user.component.ts
│ │ │ │ ├── +state
│ │ │ │ │ └── user.models.ts
│ │ │ │ └── users.common.ts
│ │ │ ├── app.component.ts
│ │ │ ├── home
│ │ │ │ ├── home.common.ts
│ │ │ │ └── containers
│ │ │ │ │ └── home
│ │ │ │ │ └── home.component.ts
│ │ │ └── app.common.ts
│ │ ├── test-setup.ts
│ │ ├── styles.scss
│ │ ├── favicon.ico
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── tsconfig.server.json
│ └── jest.config.js
│ ├── shared
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── app
│ │ │ ├── core
│ │ │ │ ├── containers
│ │ │ │ │ └── app
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ └── app.component.html
│ │ │ │ └── core.common.ts
│ │ │ └── home
│ │ │ │ ├── home.common.ts
│ │ │ │ └── containers
│ │ │ │ └── home
│ │ │ │ └── home.component.scss
│ │ ├── test-setup.ts
│ │ ├── favicon.ico
│ │ ├── styles.scss
│ │ ├── styles
│ │ │ ├── utils.scss
│ │ │ └── style.scss
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── storage
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── app
│ │ │ ├── core
│ │ │ │ ├── containers
│ │ │ │ │ └── app
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ └── app.component.ts
│ │ │ │ └── core.common.ts
│ │ │ ├── home
│ │ │ │ ├── containers
│ │ │ │ │ └── home
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ └── home.component.html
│ │ │ │ ├── home.common.ts
│ │ │ │ └── home.module.ts
│ │ │ └── app.module.ts
│ │ ├── test-setup.ts
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ ├── styles.scss
│ │ └── favicon.ico
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── store
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── ru.json
│ │ ├── app
│ │ │ ├── core
│ │ │ │ ├── containers
│ │ │ │ │ └── app
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ └── app.component.ts
│ │ │ │ └── core.common.ts
│ │ │ └── home
│ │ │ │ ├── containers
│ │ │ │ └── home
│ │ │ │ │ └── home.component.scss
│ │ │ │ └── home.common.ts
│ │ ├── test-setup.ts
│ │ ├── styles.scss
│ │ ├── favicon.ico
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── testing
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── ru.json
│ │ ├── app
│ │ │ ├── home
│ │ │ │ ├── containers
│ │ │ │ │ ├── user
│ │ │ │ │ │ ├── user.component.scss
│ │ │ │ │ │ └── user.component.html
│ │ │ │ │ └── home
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ └── components
│ │ │ │ │ ├── banner
│ │ │ │ │ ├── banner.component.scss
│ │ │ │ │ └── banner.component.html
│ │ │ │ │ ├── welcome
│ │ │ │ │ ├── welcome.component.scss
│ │ │ │ │ └── welcome.component.html
│ │ │ │ │ ├── banner-edit
│ │ │ │ │ ├── banner-edit.component.scss
│ │ │ │ │ └── banner-edit.component.html
│ │ │ │ │ ├── banner-list
│ │ │ │ │ ├── banner-list.component.scss
│ │ │ │ │ └── banner-list.component.html
│ │ │ │ │ ├── banner-toggle
│ │ │ │ │ ├── banner-toggle.component.scss
│ │ │ │ │ └── banner-toggle.component.html
│ │ │ │ │ ├── lightswitch
│ │ │ │ │ ├── lightswitch.component.scss
│ │ │ │ │ └── lightswitch.component.html
│ │ │ │ │ ├── welcome-mock
│ │ │ │ │ ├── welcome-mock.component.scss
│ │ │ │ │ └── welcome-mock.component.html
│ │ │ │ │ ├── banner-details
│ │ │ │ │ ├── banner-details.component.scss
│ │ │ │ │ └── banner-details.component.html
│ │ │ │ │ ├── dashboard-hero
│ │ │ │ │ ├── dashboard-hero.component.scss
│ │ │ │ │ └── dashboard-hero.component.html
│ │ │ │ │ └── banner-title
│ │ │ │ │ ├── banner-title.component.html
│ │ │ │ │ └── banner-title.component.scss
│ │ │ ├── users
│ │ │ │ ├── containers
│ │ │ │ │ └── user
│ │ │ │ │ │ ├── user.component.scss
│ │ │ │ │ │ ├── user.component.html
│ │ │ │ │ │ └── user.component.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── user-box
│ │ │ │ │ │ └── user-box.component.scss
│ │ │ │ │ └── user-card
│ │ │ │ │ │ ├── user-card.component.scss
│ │ │ │ │ │ └── user-card.component.html
│ │ │ │ └── services
│ │ │ │ │ ├── simple.service.ts
│ │ │ │ │ ├── multiply.service.ts
│ │ │ │ │ ├── user-easy.service.ts
│ │ │ │ │ └── simple.service.spec.ts
│ │ │ ├── app.component.ts
│ │ │ └── app.common.ts
│ │ ├── test-setup.ts
│ │ ├── favicon.ico
│ │ ├── styles.scss
│ │ ├── styles
│ │ │ ├── common
│ │ │ │ ├── buttons.scss
│ │ │ │ └── theme.scss
│ │ │ ├── utils.scss
│ │ │ ├── mixins
│ │ │ │ └── layouts.scss
│ │ │ ├── material
│ │ │ │ └── theme.scss
│ │ │ └── style.scss
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── tsconfig.server.json
│ ├── theming
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── ru.json
│ │ ├── app
│ │ │ ├── core
│ │ │ │ ├── containers
│ │ │ │ │ └── app
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ └── app.component.html
│ │ │ │ └── core.common.ts
│ │ │ └── home
│ │ │ │ ├── containers
│ │ │ │ └── home
│ │ │ │ │ └── home.component.scss
│ │ │ │ └── home.common.ts
│ │ ├── test-setup.ts
│ │ ├── favicon.ico
│ │ ├── styles.scss
│ │ ├── styles
│ │ │ ├── utils.scss
│ │ │ └── style.scss
│ │ └── environments
│ │ │ └── environment.prod.ts
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── universal
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── test-setup.ts
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ ├── styles.scss
│ │ ├── favicon.ico
│ │ ├── app
│ │ │ ├── app.component.ts
│ │ │ └── app.server.module.ts
│ │ └── index.html
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── tsconfig.server.json
│ ├── common-styles
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── ru.json
│ │ ├── app
│ │ │ ├── core
│ │ │ │ ├── containers
│ │ │ │ │ └── app
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ └── app.component.html
│ │ │ │ └── core.common.ts
│ │ │ └── home
│ │ │ │ └── containers
│ │ │ │ └── home
│ │ │ │ └── home.component.scss
│ │ ├── test-setup.ts
│ │ ├── favicon.ico
│ │ ├── styles.scss
│ │ ├── styles
│ │ │ ├── style.scss
│ │ │ └── utils.scss
│ │ └── environments
│ │ │ └── environment.prod.ts
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── localization
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── app
│ │ │ ├── home
│ │ │ │ ├── containers
│ │ │ │ │ └── home
│ │ │ │ │ │ ├── home.component.scss
│ │ │ │ │ │ ├── home.component.html
│ │ │ │ │ │ └── home.component.ts
│ │ │ │ ├── home.common.ts
│ │ │ │ └── home.module.ts
│ │ │ ├── app.component.ts
│ │ │ └── app.common.ts
│ │ ├── test-setup.ts
│ │ ├── styles.scss
│ │ ├── favicon.ico
│ │ └── environments
│ │ │ └── environment.prod.ts
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── tsconfig.server.json
│ ├── responsive
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── i18n
│ │ │ │ └── en.json
│ │ ├── app
│ │ │ ├── core
│ │ │ │ ├── containers
│ │ │ │ │ └── app
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ └── app.component.html
│ │ │ │ └── core.common.ts
│ │ │ └── home
│ │ │ │ ├── containers
│ │ │ │ └── home
│ │ │ │ │ └── home.component.scss
│ │ │ │ └── home.common.ts
│ │ ├── test-setup.ts
│ │ ├── favicon.ico
│ │ ├── styles.scss
│ │ ├── styles
│ │ │ ├── utils.scss
│ │ │ └── style.scss
│ │ └── environments
│ │ │ └── environment.prod.ts
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── translation
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── ru.json
│ │ ├── app
│ │ │ ├── core
│ │ │ │ ├── containers
│ │ │ │ │ └── app
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ └── app.component.ts
│ │ │ │ └── core.common.ts
│ │ │ └── home
│ │ │ │ ├── containers
│ │ │ │ └── home
│ │ │ │ │ └── home.component.scss
│ │ │ │ └── home.common.ts
│ │ ├── test-setup.ts
│ │ ├── styles.scss
│ │ ├── favicon.ico
│ │ └── environments
│ │ │ └── environment.prod.ts
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ ├── infinite-scroll
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── test-setup.ts
│ │ ├── styles.scss
│ │ ├── favicon.ico
│ │ └── environments
│ │ │ └── environment.prod.ts
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── tsconfig.server.json
│ ├── translation-state
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── i18n
│ │ │ │ ├── en.json
│ │ │ │ └── ru.json
│ │ ├── app
│ │ │ ├── core
│ │ │ │ ├── containers
│ │ │ │ │ └── app
│ │ │ │ │ │ ├── app.component.scss
│ │ │ │ │ │ └── app.component.html
│ │ │ │ └── core.common.ts
│ │ │ └── home
│ │ │ │ └── containers
│ │ │ │ └── home
│ │ │ │ └── home.component.scss
│ │ ├── test-setup.ts
│ │ ├── styles.scss
│ │ ├── favicon.ico
│ │ ├── styles
│ │ │ ├── common
│ │ │ │ ├── buttons.scss
│ │ │ │ └── theme.scss
│ │ │ ├── utils.scss
│ │ │ ├── mixins
│ │ │ │ └── layouts.scss
│ │ │ ├── material
│ │ │ │ └── theme.scss
│ │ │ └── style.scss
│ │ └── environments
│ │ │ └── environment.prod.ts
│ ├── tsconfig.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── jest.config.js
│ └── tsconfig.server.json
│ └── base-e2e
│ ├── src
│ ├── support
│ │ └── app.po.ts
│ ├── fixtures
│ │ └── example.json
│ └── integration
│ │ └── app.spec.ts
│ ├── tsconfig.json
│ └── tsconfig.e2e.json
├── styles
├── mixins.scss
├── common
│ ├── forms.scss
│ ├── buttons.scss
│ └── fonts.scss
├── variables.scss
├── style.scss
├── utils.scss
└── material
│ └── theme.scss
├── .vscode
└── extensions.json
├── .eslintrc
├── .prettierignore
├── jest.config.js
├── .editorconfig
├── .prettierrc
├── docker-compose
└── docker-compose.yml
└── ormconfig.example.json
/libs/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tools/schematics/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/backend/api/src/app/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/backend/api/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/base/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/css/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/forms/proxy.conf.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/apps/frontend/forms/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/graphql/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/markup/proxy.conf.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/apps/frontend/markup/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/redux/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/shared/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/storage/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/store/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/theming/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/universal/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/base/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/common-styles/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/graphql/proxy.conf.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/apps/frontend/localization/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/responsive/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/translation/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/styles/mixins.scss:
--------------------------------------------------------------------------------
1 | @import 'mixins/buttons';
2 |
--------------------------------------------------------------------------------
/apps/frontend/css/src/stylesheets/mixins/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/infinite-scroll/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/translation-state/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/auth/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/auth/src/testing/index.ts:
--------------------------------------------------------------------------------
1 | export const authTest = 1;
2 |
--------------------------------------------------------------------------------
/libs/common/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/events/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/shared/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/store/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/users/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/forms/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/graphql/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/markup/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/shared/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/storage/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/store/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/store/src/app/home/containers/home/home.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/theming/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/layouts/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/responsive/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/shared/src/testing/index.ts:
--------------------------------------------------------------------------------
1 | export const sharedTest = 1;
2 |
--------------------------------------------------------------------------------
/libs/storage/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/storage/src/testing/index.ts:
--------------------------------------------------------------------------------
1 | export const storageTest = 1;
2 |
--------------------------------------------------------------------------------
/libs/translation/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/base/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/css/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/forms/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/graphql/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/markup/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/redux/src/app/users/containers/user/user.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/redux/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/responsive/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/shared/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/storage/src/app/home/containers/home/home.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/storage/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/store/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/containers/user/user.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/users/containers/user/user.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/theming/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/translation/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/common/src/testing/index.ts:
--------------------------------------------------------------------------------
1 | export * from './stub/error.stub';
2 |
--------------------------------------------------------------------------------
/libs/dynamic-forms/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/events/src/testing/index.ts:
--------------------------------------------------------------------------------
1 | export * from './stubs/event.stub';
2 |
--------------------------------------------------------------------------------
/libs/users/src/testing/index.ts:
--------------------------------------------------------------------------------
1 | export * from './stubs/user.stub';
2 |
--------------------------------------------------------------------------------
/apps/frontend/common-styles/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/common-styles/src/app/home/containers/home/home.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/localization/src/app/home/containers/home/home.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/localization/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/responsive/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/banner/banner.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/welcome/welcome.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/containers/home/home.component.scss:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/apps/frontend/translation-state/src/app/core/containers/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/translation/src/app/home/containers/home/home.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/translation/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/universal/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/dynamic-forms/src/lib/components/field-input/field-input.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/common-styles/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/css/src/app/grids/containers/grids-demo/grids-demo.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/infinite-scroll/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/users/components/user-box/user-box.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/users/components/user-card/user-card.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/translation-state/src/test-setup.ts:
--------------------------------------------------------------------------------
1 | import 'jest-preset-angular';
2 |
--------------------------------------------------------------------------------
/libs/dynamic-forms/src/lib/components/field-textarea/field-textarea.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/dynamic-forms/src/lib/components/field-typehead/field-typehead.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/dynamic-forms/src/lib/components/field-wrapper/field-wrapper.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/responsive/src/testing/index.ts:
--------------------------------------------------------------------------------
1 | export * from './stubs/responsive.stub';
2 |
--------------------------------------------------------------------------------
/libs/translation/src/testing/index.ts:
--------------------------------------------------------------------------------
1 | export * from './stubs/translation.stub';
2 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/banner-edit/banner-edit.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/banner-list/banner-list.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/banner-toggle/banner-toggle.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/lightswitch/lightswitch.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/welcome-mock/welcome-mock.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/dynamic-forms/src/lib/components/field-input-mask/field-input-mask.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/banner-details/banner-details.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/testing/src/app/home/components/dashboard-hero/dashboard-hero.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/translation/src/assets/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "brand": "Medium stories"
3 | }
4 |
--------------------------------------------------------------------------------
/apps/frontend/translation/src/assets/i18n/ru.json:
--------------------------------------------------------------------------------
1 | {
2 | "brand": "Medium stories"
3 | }
4 |
--------------------------------------------------------------------------------
/libs/auth/src/lib/auth-shared/components/auth-login-button/auth-login-button.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/dynamic-forms/src/lib/components/field-empty-wrapper/field-empty-wrapper.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/dynamic-forms/src/lib/components/field-input-ucfirst/field-input-ucfirst.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/users/src/lib/users-shared/components/user-load-button/user-load-button.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/apps/frontend/base-e2e/src/support/app.po.ts:
--------------------------------------------------------------------------------
1 | export const getGreeting = () => cy.get('h1');
2 |
--------------------------------------------------------------------------------
/styles/common/forms.scss:
--------------------------------------------------------------------------------
1 | @import '../utils';
2 |
3 | textarea {
4 | max-width: 100%;
5 | }
6 |
--------------------------------------------------------------------------------
/apps/frontend/forms/src/app/core/containers/app/app.component.html:
--------------------------------------------------------------------------------
1 |
banner works!
2 | -------------------------------------------------------------------------------- /libs/events/src/lib/events/components/event-new-field-wrapper/event-new-field-wrapper.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/css/src/app/fixed-adaptive/containers/fixed-adaptive-demo/fixed-adaptive-demo.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/graphql/src/app/core/containers/app/app.component.html: -------------------------------------------------------------------------------- 1 |Hello, {{ user.username }}!
2 | -------------------------------------------------------------------------------- /apps/frontend/universal/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/frontend/universal/src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /libs/layouts/src/testing/index.ts: -------------------------------------------------------------------------------- 1 | export * from './stubs/nav-menu.stub'; 2 | export * from './stubs/payloads.stub'; 3 | -------------------------------------------------------------------------------- /apps/frontend/base/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fafnur/medium-stories/HEAD/apps/frontend/base/src/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/forms/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fafnur/medium-stories/HEAD/apps/frontend/forms/src/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/localization/src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /apps/frontend/redux/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fafnur/medium-stories/HEAD/apps/frontend/redux/src/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/store/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fafnur/medium-stories/HEAD/apps/frontend/store/src/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/translation/src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /libs/dynamic-forms/src/testing/index.ts: -------------------------------------------------------------------------------- 1 | export * from './stubs/form.stub'; 2 | export * from './utils/field-component.util'; 3 | -------------------------------------------------------------------------------- /apps/frontend/graphql/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fafnur/medium-stories/HEAD/apps/frontend/graphql/src/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/infinite-scroll/src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /apps/frontend/markup/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fafnur/medium-stories/HEAD/apps/frontend/markup/src/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/redux/src/app/users/containers/user/user.component.html: -------------------------------------------------------------------------------- 1 |user works!
3 |user works!
2 |3 | 4 |
5 | -------------------------------------------------------------------------------- /apps/frontend/translation-state/src/app/home/containers/home/home.component.scss: -------------------------------------------------------------------------------- 1 | @import 'utils'; 2 | 3 | :host { 4 | display: block; 5 | @include layout-padding-top(); 6 | } 7 | -------------------------------------------------------------------------------- /libs/auth/README.md: -------------------------------------------------------------------------------- 1 | # auth 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test auth` to execute the unit tests. 8 | -------------------------------------------------------------------------------- /libs/auth/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/common/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/entities/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/events/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/layouts/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/shared/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/storage/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/store/README.md: -------------------------------------------------------------------------------- 1 | # store 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test store` to execute the unit tests. 8 | -------------------------------------------------------------------------------- /libs/store/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/users/README.md: -------------------------------------------------------------------------------- 1 | # users 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test users` to execute the unit tests. 8 | -------------------------------------------------------------------------------- /libs/users/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/common/README.md: -------------------------------------------------------------------------------- 1 | # common 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test common` to execute the unit tests. 8 | -------------------------------------------------------------------------------- /libs/dynamic-forms/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/events/README.md: -------------------------------------------------------------------------------- 1 | # events 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test events` to execute the unit tests. 8 | -------------------------------------------------------------------------------- /libs/layouts/README.md: -------------------------------------------------------------------------------- 1 | # layouts 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test layouts` to execute the unit tests. 8 | -------------------------------------------------------------------------------- /libs/responsive/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /libs/shared/README.md: -------------------------------------------------------------------------------- 1 | # shared 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test shared` to execute the unit tests. 8 | -------------------------------------------------------------------------------- /libs/storage/README.md: -------------------------------------------------------------------------------- 1 | # storage 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test storage` to execute the unit tests. 8 | -------------------------------------------------------------------------------- /libs/translation/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /apps/backend/api/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | name: 'backend-api', 3 | preset: '../../../jest.config.js', 4 | coverageDirectory: '../../../coverage/apps/backend/api' 5 | }; 6 | -------------------------------------------------------------------------------- /apps/frontend/base/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /apps/frontend/forms/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /apps/frontend/markup/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /apps/frontend/redux/src/app/users/+state/user.models.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Interface for the 'User' data 3 | */ 4 | export interface UserEntity { 5 | id: string | number; // Primary ID 6 | } 7 | -------------------------------------------------------------------------------- /apps/frontend/shared/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /apps/frontend/store/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "types": ["node", "jest"] 5 | }, 6 | "include": ["**/*.ts"] 7 | } 8 | -------------------------------------------------------------------------------- /apps/frontend/testing/src/app/home/components/lightswitch/lightswitch.component.html: -------------------------------------------------------------------------------- 1 |