Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ProAngular/ngx-gist
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.1
Choose a base ref
...
head repository: ProAngular/ngx-gist
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v19.0.0
Choose a head ref
  • 2 commits
  • 73 files changed
  • 1 contributor

Commits on Feb 9, 2025

  1. v19.0.0 (#11)

    CodyTolene authored Feb 9, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    a5bb56e View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5cceace View commit details
Showing with 13,877 additions and 29,957 deletions.
  1. +0 −1 .eslintignore
  2. +194 −180 .eslintrc.json
  3. +1 −0 .github/CODEOWNERS
  4. +1 −1 .github/FUNDING.yml
  5. +5 −0 .github/images/ng-icons/Angular Material Icons.url
  6. +12 −0 .github/images/ng-icons/email.svg
  7. +15 −0 .github/images/ng-icons/info.svg
  8. +15 −0 .github/images/ng-icons/warn.svg
  9. 0 .github/images/screenshots/.gitkeep
  10. +2 −0 .github/images/simple-icons/Simple Icons.url
  11. +15 −0 .github/images/simple-icons/bitcoin-btc-logo.svg
  12. +1 −0 .github/images/simple-icons/buymeacoffee.svg
  13. +1 −0 .github/images/simple-icons/github.svg
  14. +3 −3 .github/workflows/on-merge-main-deploy-gpr.yml
  15. +3 −3 .github/workflows/on-merge-main-deploy-npmjs.yml
  16. +1 −1 .github/workflows/verify-pull-request.yml
  17. +1 −28 .gitignore
  18. +0 −3 .husky/pre-commit
  19. +10 −4 .prettierignore
  20. +0 −7 .prettierrc.json
  21. +1 −1 LICENSE → LICENSE.md
  22. +227 −137 README.md
  23. +25 −40 angular.json
  24. +0 −44 karma.conf.js
  25. +12,726 −28,868 package-lock.json
  26. +54 −49 package.json
  27. +34 −0 prettier.config.js
  28. BIN {src/assets → public}/images/demo-gist.gif
  29. 0 {src/assets → public}/images/git-hub.svg
  30. BIN {src/assets → public}/images/pro-angular-logo-full.png
  31. BIN {src/assets → public}/images/pro-angular-logo.png
  32. +11 −0 src/app/app.component.html
  33. +4 −0 src/app/app.component.scss
  34. +11 −1 src/app/app.component.spec.ts
  35. +14 −122 src/app/app.component.ts
  36. +15 −0 src/app/app.config.ts
  37. +0 −24 src/app/app.module.ts
  38. +3 −0 src/app/app.routes.ts
  39. +62 −0 src/app/example/example.component.html
  40. +7 −0 src/app/example/example.component.scss
  41. +43 −0 src/app/example/example.component.ts
  42. +1 −0 src/app/layout/body.component.html
  43. +10 −0 src/app/layout/body.component.scss
  44. +4 −17 src/app/layout/body.component.ts
  45. +22 −0 src/app/layout/footer.component.html
  46. +25 −0 src/app/layout/footer.component.scss
  47. +3 −45 src/app/layout/footer.component.ts
  48. +18 −0 src/app/layout/header.component.html
  49. +35 −0 src/app/layout/header.component.scss
  50. +5 −58 src/app/layout/header.component.ts
  51. +22 −27 src/app/public/ngx-gist-line-numbers.service.ts
  52. +12 −48 src/app/public/ngx-gist-theme.service.ts
  53. +31 −0 src/app/public/ngx-gist.component.html
  54. +28 −71 src/app/public/ngx-gist.component.ts
  55. +0 −24 src/app/public/ngx-gist.module.ts
  56. +3 −9 src/app/public/public.ts
  57. +37 −0 src/app/styles/_breakpoints.scss
  58. +13 −0 src/app/styles/_variables.scss
  59. +10 −0 src/app/styles/body.scss
  60. +35 −0 src/app/styles/headers.scss
  61. +3 −0 src/app/styles/html.scss
  62. +13 −0 src/app/styles/material.scss
  63. +0 −3 src/environments/environment.prod.ts
  64. +0 −16 src/environments/environment.ts
  65. BIN src/favicon.ico
  66. +2 −2 src/index.html
  67. +6 −11 src/main.ts
  68. +0 −52 src/polyfills.ts
  69. +4 −21 src/styles.scss
  70. +0 −14 src/test.ts
  71. +3 −3 tsconfig.app.json
  72. +13 −14 tsconfig.json
  73. +2 −5 tsconfig.spec.json
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
src/polyfills.ts
Loading