new-front-common-library 0.0.32 → 0.0.35
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/_dark-theme.scss +14 -1
- package/assets/css/_global.scss +7 -1
- package/assets/css/_light-theme.scss +8 -0
- package/bundles/new-front-common-library.umd.js +165 -73
- package/bundles/new-front-common-library.umd.js.map +1 -1
- package/esm2015/lib/util/component/header/header.component.js +43 -36
- package/esm2015/lib/util/config.js +3 -2
- package/esm2015/lib/util/enums/rapid-search-item-type.enum.js +10 -0
- package/esm2015/lib/util/i18n/de.js +6 -1
- package/esm2015/lib/util/i18n/en.js +6 -1
- package/esm2015/lib/util/i18n/fr.js +6 -1
- package/esm2015/lib/util/models/expenditure-commitment/purchase-order-search.model.js +3 -0
- package/esm2015/lib/util/models/video/product-search.model.js +3 -0
- package/esm2015/lib/util/models/video/support-search.model.js +3 -0
- package/esm2015/lib/util/services/elasticsearch/elasticsearch.service.js +47 -0
- package/esm2015/lib/util/util.module.js +13 -6
- package/esm2015/public-api.js +2 -1
- package/fesm2015/new-front-common-library.js +127 -48
- package/fesm2015/new-front-common-library.js.map +1 -1
- package/lib/util/component/header/header.component.d.ts +11 -3
- package/lib/util/config.d.ts +1 -0
- package/lib/util/enums/rapid-search-item-type.enum.d.ts +8 -0
- package/lib/util/i18n/de.d.ts +5 -0
- package/lib/util/i18n/en.d.ts +5 -0
- package/lib/util/i18n/fr.d.ts +5 -0
- package/lib/util/models/expenditure-commitment/purchase-order-search.model.d.ts +10 -0
- package/lib/util/models/video/product-search.model.d.ts +8 -0
- package/lib/util/models/video/support-search.model.d.ts +6 -0
- package/lib/util/services/elasticsearch/elasticsearch.service.d.ts +16 -0
- package/lib/util/util.module.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
//6
|
|
33
33
|
mat-row:hover {
|
|
34
|
-
background-color:
|
|
34
|
+
background-color: adjust-color($background-lvl2, $lightness: 10%);
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.expandable-row:hover {
|
|
@@ -572,6 +572,19 @@
|
|
|
572
572
|
border-right: 2px solid $background-lvl5;
|
|
573
573
|
}
|
|
574
574
|
|
|
575
|
+
.mat-option.mat-option-global-search:hover:not(.mat-option-disabled), .mat-option.mat-option-global-search:focus:not(.mat-option-disabled) {
|
|
576
|
+
background: $background-lvl3 !important;
|
|
577
|
+
color: white !important;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.mat-option.mat-option-global-search, .mat-option.mat-option-global-search {
|
|
581
|
+
color: white !important;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.mat-autocomplete-global-search {
|
|
585
|
+
background: $background-lvl2 !important;
|
|
586
|
+
}
|
|
587
|
+
|
|
575
588
|
// END HEADER
|
|
576
589
|
|
|
577
590
|
.secondary-bis {
|
package/assets/css/_global.scss
CHANGED
|
@@ -286,6 +286,12 @@ textarea {
|
|
|
286
286
|
height: 32px;
|
|
287
287
|
}
|
|
288
288
|
|
|
289
|
+
.ellipsis {
|
|
290
|
+
white-space: nowrap;
|
|
291
|
+
text-overflow: ellipsis;
|
|
292
|
+
overflow: hidden
|
|
293
|
+
}
|
|
294
|
+
|
|
289
295
|
.btn {
|
|
290
296
|
height: 24px;
|
|
291
297
|
padding: 2px;
|
|
@@ -376,7 +382,7 @@ textarea {
|
|
|
376
382
|
}
|
|
377
383
|
|
|
378
384
|
.mat-form-field-underline {
|
|
379
|
-
|
|
385
|
+
display: none !important;
|
|
380
386
|
}
|
|
381
387
|
|
|
382
388
|
.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
|
|
@@ -596,6 +596,14 @@
|
|
|
596
596
|
border-right: 2px solid $gray-strong;
|
|
597
597
|
}
|
|
598
598
|
|
|
599
|
+
.mat-autocomplete-global-search {
|
|
600
|
+
background: white !important;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.mat-option.mat-option-global-search:hover:not(.mat-option-disabled), .mat-option.mat-option-global-search:focus:not(.mat-option-disabled) {
|
|
604
|
+
background: $gray-strong !important;
|
|
605
|
+
}
|
|
606
|
+
|
|
599
607
|
// END HEADER
|
|
600
608
|
|
|
601
609
|
.secondary-bis {
|