new-front-common-library 0.0.62 → 0.0.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/assets/css/_global.scss +30 -1
  2. package/bundles/new-front-common-library.umd.js +176 -130
  3. package/bundles/new-front-common-library.umd.js.map +1 -1
  4. package/esm2015/lib/util/array.service.js +4 -4
  5. package/esm2015/lib/util/component/header/header.component.js +4 -4
  6. package/esm2015/lib/util/component/overlay/overlay.component.js +4 -4
  7. package/esm2015/lib/util/component/overlay/overlay.service.js +4 -4
  8. package/esm2015/lib/util/component/popup/popup-login/popup-login.component.js +4 -4
  9. package/esm2015/lib/util/component/sub-header/sub-header.component.js +4 -4
  10. package/esm2015/lib/util/date/date-adapter.js +4 -4
  11. package/esm2015/lib/util/directives/my-number-formatter-directive.js +4 -4
  12. package/esm2015/lib/util/directives/show-if-truncated.directive.js +4 -4
  13. package/esm2015/lib/util/enums/status-color.enum.js +11 -0
  14. package/esm2015/lib/util/event/header/header-events.service.js +4 -4
  15. package/esm2015/lib/util/event/storage/local-storage-events.service.js +4 -4
  16. package/esm2015/lib/util/event/storage/session-storage-events.service.js +4 -4
  17. package/esm2015/lib/util/http/http-params.builder.js +27 -0
  18. package/esm2015/lib/util/permissions/permissions.service.js +4 -4
  19. package/esm2015/lib/util/pipes/capitalizefirst.pipe.js +4 -4
  20. package/esm2015/lib/util/pipes/comma-separated-number.pipe.js +4 -4
  21. package/esm2015/lib/util/pipes/common-translate.pipe.js +4 -4
  22. package/esm2015/lib/util/pipes/display-html.pipe.js +4 -4
  23. package/esm2015/lib/util/pipes/display-null.pipe.js +4 -4
  24. package/esm2015/lib/util/pipes/format-duration.pipe.js +4 -4
  25. package/esm2015/lib/util/pipes/format-number-input.pipe.js +4 -4
  26. package/esm2015/lib/util/pipes/local-date.pipe.js +4 -4
  27. package/esm2015/lib/util/pipes/my-number.pipe.js +4 -4
  28. package/esm2015/lib/util/pipes/third-party-address.pipe.js +4 -4
  29. package/esm2015/lib/util/pipes/trim-string.pipe.js +4 -4
  30. package/esm2015/lib/util/regex/regex.service.js +4 -4
  31. package/esm2015/lib/util/services/api/common-api.service.js +4 -4
  32. package/esm2015/lib/util/services/elasticsearch/elasticsearch.service.js +4 -4
  33. package/esm2015/lib/util/services/form-action/form-actions-events.service.js +4 -4
  34. package/esm2015/lib/util/services/guard/auth.guard.js +4 -4
  35. package/esm2015/lib/util/services/guard/login.guard.js +4 -4
  36. package/esm2015/lib/util/services/history/history.service.js +4 -4
  37. package/esm2015/lib/util/services/interceptor/auth.interceptor.js +4 -4
  38. package/esm2015/lib/util/services/jwt-security/aes.service.js +4 -4
  39. package/esm2015/lib/util/services/jwt-security/interceptorhttp.service.js +4 -4
  40. package/esm2015/lib/util/services/storage/local-storage.service.js +4 -4
  41. package/esm2015/lib/util/services/storage/session-storage.service.js +4 -4
  42. package/esm2015/lib/util/services/translate-language/lang.service.js +4 -4
  43. package/esm2015/lib/util/theme/theme-event.service.js +4 -4
  44. package/esm2015/lib/util/toaster/toaster-events.service.js +4 -4
  45. package/esm2015/lib/util/util.module.js +5 -5
  46. package/esm2015/public-api.js +3 -1
  47. package/fesm2015/new-front-common-library.js +160 -123
  48. package/fesm2015/new-front-common-library.js.map +1 -1
  49. package/lib/util/enums/status-color.enum.d.ts +9 -0
  50. package/lib/util/http/http-params.builder.d.ts +9 -0
  51. package/package.json +1 -1
  52. package/public-api.d.ts +2 -0
@@ -613,6 +613,8 @@ textarea {
613
613
  color: #009EF7;
614
614
  }
615
615
 
616
+ // END NG-SELECT
617
+
616
618
  .multiline-mat-option.mat-option {
617
619
  white-space: normal;
618
620
  line-height: normal;
@@ -632,5 +634,32 @@ textarea {
632
634
  }
633
635
 
634
636
 
635
- // END NG-SELECT
637
+ .status-blue {
638
+ background: #2485ba;
639
+ color: white;
640
+ }
636
641
 
642
+ .status-green {
643
+ background: #60ba42;
644
+ color: white;
645
+ }
646
+
647
+ .status-orange {
648
+ background: #e8be6e;
649
+ color: white;
650
+ }
651
+
652
+ .status-grey {
653
+ background: #696969;
654
+ color: white;
655
+ }
656
+
657
+ .status-pink {
658
+ background: #a0329a;
659
+ color: white;
660
+ }
661
+
662
+ .status-red {
663
+ background: #f44336;
664
+ color: white;
665
+ }