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.
- package/assets/css/_global.scss +30 -1
- package/bundles/new-front-common-library.umd.js +176 -130
- package/bundles/new-front-common-library.umd.js.map +1 -1
- package/esm2015/lib/util/array.service.js +4 -4
- package/esm2015/lib/util/component/header/header.component.js +4 -4
- package/esm2015/lib/util/component/overlay/overlay.component.js +4 -4
- package/esm2015/lib/util/component/overlay/overlay.service.js +4 -4
- package/esm2015/lib/util/component/popup/popup-login/popup-login.component.js +4 -4
- package/esm2015/lib/util/component/sub-header/sub-header.component.js +4 -4
- package/esm2015/lib/util/date/date-adapter.js +4 -4
- package/esm2015/lib/util/directives/my-number-formatter-directive.js +4 -4
- package/esm2015/lib/util/directives/show-if-truncated.directive.js +4 -4
- package/esm2015/lib/util/enums/status-color.enum.js +11 -0
- package/esm2015/lib/util/event/header/header-events.service.js +4 -4
- package/esm2015/lib/util/event/storage/local-storage-events.service.js +4 -4
- package/esm2015/lib/util/event/storage/session-storage-events.service.js +4 -4
- package/esm2015/lib/util/http/http-params.builder.js +27 -0
- package/esm2015/lib/util/permissions/permissions.service.js +4 -4
- package/esm2015/lib/util/pipes/capitalizefirst.pipe.js +4 -4
- package/esm2015/lib/util/pipes/comma-separated-number.pipe.js +4 -4
- package/esm2015/lib/util/pipes/common-translate.pipe.js +4 -4
- package/esm2015/lib/util/pipes/display-html.pipe.js +4 -4
- package/esm2015/lib/util/pipes/display-null.pipe.js +4 -4
- package/esm2015/lib/util/pipes/format-duration.pipe.js +4 -4
- package/esm2015/lib/util/pipes/format-number-input.pipe.js +4 -4
- package/esm2015/lib/util/pipes/local-date.pipe.js +4 -4
- package/esm2015/lib/util/pipes/my-number.pipe.js +4 -4
- package/esm2015/lib/util/pipes/third-party-address.pipe.js +4 -4
- package/esm2015/lib/util/pipes/trim-string.pipe.js +4 -4
- package/esm2015/lib/util/regex/regex.service.js +4 -4
- package/esm2015/lib/util/services/api/common-api.service.js +4 -4
- package/esm2015/lib/util/services/elasticsearch/elasticsearch.service.js +4 -4
- package/esm2015/lib/util/services/form-action/form-actions-events.service.js +4 -4
- package/esm2015/lib/util/services/guard/auth.guard.js +4 -4
- package/esm2015/lib/util/services/guard/login.guard.js +4 -4
- package/esm2015/lib/util/services/history/history.service.js +4 -4
- package/esm2015/lib/util/services/interceptor/auth.interceptor.js +4 -4
- package/esm2015/lib/util/services/jwt-security/aes.service.js +4 -4
- package/esm2015/lib/util/services/jwt-security/interceptorhttp.service.js +4 -4
- package/esm2015/lib/util/services/storage/local-storage.service.js +4 -4
- package/esm2015/lib/util/services/storage/session-storage.service.js +4 -4
- package/esm2015/lib/util/services/translate-language/lang.service.js +4 -4
- package/esm2015/lib/util/theme/theme-event.service.js +4 -4
- package/esm2015/lib/util/toaster/toaster-events.service.js +4 -4
- package/esm2015/lib/util/util.module.js +5 -5
- package/esm2015/public-api.js +3 -1
- package/fesm2015/new-front-common-library.js +160 -123
- package/fesm2015/new-front-common-library.js.map +1 -1
- package/lib/util/enums/status-color.enum.d.ts +9 -0
- package/lib/util/http/http-params.builder.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
package/assets/css/_global.scss
CHANGED
|
@@ -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
|
-
|
|
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
|
+
}
|