├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 1-bug-report.md │ └── 2-feature-request.md ├── PULL_REQUEST_TEMPLATE.md ├── hooks │ ├── commit-msg │ └── pre-commit ├── scripts │ └── setup_hooks.sh └── workflows │ ├── gh-pages.yml │ ├── publish.yml │ ├── quality-check.yml │ └── scripts │ ├── quality.sh │ └── replace_template.sh ├── .gitignore ├── .gitmodules ├── .lintstagedrc ├── .postcssrc.json ├── .prettierignore ├── .prettierrc.json ├── .releaserc.yaml ├── .stylelintignore ├── .stylelintrc.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── bun.lock ├── commitlint.config.js ├── eslint.config.js ├── package.json ├── projects └── ngx-loader-indicator-lib │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── ngx-loader-indicator.config.ts │ │ ├── ngx-loader-indicator.directive.spec.ts │ │ ├── ngx-loader-indicator.directive.ts │ │ └── ngx-loader-indicator.providers.ts │ ├── public-api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── cards │ │ ├── cards.component.html │ │ ├── cards.component.scss │ │ ├── cards.component.ts │ │ └── cards.type.ts │ ├── custom-loader │ │ ├── custom-loader.component.css │ │ ├── custom-loader.component.html │ │ └── custom-loader.component.ts │ └── shared │ │ └── form │ │ ├── form.component.html │ │ ├── form.component.scss │ │ ├── form.component.ts │ │ └── form.type.ts ├── assets │ ├── .gitkeep │ ├── content │ │ ├── card.ts │ │ └── lists.ts │ └── images │ │ ├── content │ │ └── scroll-shadow.svg │ │ ├── open-source │ │ ├── accordion │ │ │ ├── options-active.svg │ │ │ ├── options.svg │ │ │ ├── white-chevron-down.svg │ │ │ ├── yellow-chevron-down.svg │ │ │ └── yellow-chevron-up.svg │ │ ├── cards │ │ │ ├── hand-box.svg │ │ │ └── input-vector.svg │ │ ├── footer │ │ │ └── all-rights-reserved.svg │ │ ├── header │ │ │ ├── burger.svg │ │ │ ├── close.svg │ │ │ ├── logo-white.svg │ │ │ └── logo.svg │ │ └── visit-btn │ │ │ └── button-chevron.svg │ │ └── shared │ │ ├── done-yellow.svg │ │ ├── github.svg │ │ └── rotate-logo.svg ├── favicon.ico ├── index.html ├── main.ts ├── styles.scss └── test.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.eslint.json ├── tsconfig.json ├── tsconfig.spec.json └── vitest.config.ts /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/ISSUE_TEMPLATE/2-feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/hooks/commit-msg -------------------------------------------------------------------------------- /.github/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/hooks/pre-commit -------------------------------------------------------------------------------- /.github/scripts/setup_hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/scripts/setup_hooks.sh -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/quality-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/workflows/quality-check.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/quality.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/workflows/scripts/quality.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/replace_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.github/workflows/scripts/replace_template.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.postcssrc.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | ssl -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.releaserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.releaserc.yaml -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/angular.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/bun.lock -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/package.json -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/ng-package.json -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/package.json -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/src/lib/ngx-loader-indicator.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/src/lib/ngx-loader-indicator.config.ts -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/src/lib/ngx-loader-indicator.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/src/lib/ngx-loader-indicator.directive.spec.ts -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/src/lib/ngx-loader-indicator.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/src/lib/ngx-loader-indicator.directive.ts -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/src/lib/ngx-loader-indicator.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/src/lib/ngx-loader-indicator.providers.ts -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/src/public-api.ts -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/src/test.ts -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/ngx-loader-indicator-lib/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/projects/ngx-loader-indicator-lib/tsconfig.spec.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/cards/cards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/cards/cards.component.html -------------------------------------------------------------------------------- /src/app/cards/cards.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/cards/cards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/cards/cards.component.ts -------------------------------------------------------------------------------- /src/app/cards/cards.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/cards/cards.type.ts -------------------------------------------------------------------------------- /src/app/custom-loader/custom-loader.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/custom-loader/custom-loader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/custom-loader/custom-loader.component.html -------------------------------------------------------------------------------- /src/app/custom-loader/custom-loader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/custom-loader/custom-loader.component.ts -------------------------------------------------------------------------------- /src/app/shared/form/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/shared/form/form.component.html -------------------------------------------------------------------------------- /src/app/shared/form/form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/form/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/shared/form/form.component.ts -------------------------------------------------------------------------------- /src/app/shared/form/form.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/app/shared/form/form.type.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/content/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/content/card.ts -------------------------------------------------------------------------------- /src/assets/content/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/content/lists.ts -------------------------------------------------------------------------------- /src/assets/images/content/scroll-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/content/scroll-shadow.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/accordion/options-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/accordion/options-active.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/accordion/options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/accordion/options.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/accordion/white-chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/accordion/white-chevron-down.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/accordion/yellow-chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/accordion/yellow-chevron-down.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/accordion/yellow-chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/accordion/yellow-chevron-up.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/cards/hand-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/cards/hand-box.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/cards/input-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/cards/input-vector.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/footer/all-rights-reserved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/footer/all-rights-reserved.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/header/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/header/burger.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/header/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/header/close.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/header/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/header/logo-white.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/header/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/header/logo.svg -------------------------------------------------------------------------------- /src/assets/images/open-source/visit-btn/button-chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/open-source/visit-btn/button-chevron.svg -------------------------------------------------------------------------------- /src/assets/images/shared/done-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/shared/done-yellow.svg -------------------------------------------------------------------------------- /src/assets/images/shared/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/shared/github.svg -------------------------------------------------------------------------------- /src/assets/images/shared/rotate-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/assets/images/shared/rotate-logo.svg -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsDaddy/ngx-loader-indicator/HEAD/vitest.config.ts --------------------------------------------------------------------------------