@pepperi-addons/ngx-lib 0.4.2-beta.73 → 0.4.2-beta.76
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/core/customization/customization.service.d.ts +0 -3
- package/esm2020/address/address.component.mjs +1 -1
- package/esm2020/core/customization/customization.service.mjs +10 -10
- package/esm2020/form/field-generator.component.mjs +1 -1
- package/esm2020/form/internal-field-generator.component.mjs +1 -1
- package/esm2020/profile-data-views-list/profile-data-views-list.component.mjs +1 -1
- package/esm2020/query-builder/query-builder-item/query-builder-item.component.mjs +1 -1
- package/esm2020/select/select.component.mjs +39 -18
- package/esm2020/smart-filters/boolean-filter/boolean-filter.component.mjs +1 -1
- package/esm2020/smart-filters/date-filter/date-filter.component.mjs +1 -1
- package/esm2020/smart-filters/multi-select-filter/multi-select-filter.component.mjs +1 -1
- package/esm2020/smart-filters/number-filter/number-filter.component.mjs +1 -1
- package/esm2020/smart-filters/text-filter/text-filter.component.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-address.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-address.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs +2 -2
- package/fesm2015/pepperi-addons-ngx-lib-form.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-select.mjs +37 -16
- package/fesm2015/pepperi-addons-ngx-lib-select.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs +5 -5
- package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib.mjs +9 -9
- package/fesm2015/pepperi-addons-ngx-lib.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-address.mjs +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-address.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs +2 -2
- package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-select.mjs +37 -16
- package/fesm2020/pepperi-addons-ngx-lib-select.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs +5 -5
- package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib.mjs +9 -9
- package/fesm2020/pepperi-addons-ngx-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/select/select.component.d.ts +9 -2
|
@@ -2197,10 +2197,10 @@ class PepCustomizationService {
|
|
|
2197
2197
|
themeVars[PepCustomizationService.COLOR_TOP_HEADER_KEY + '-s'] = '';
|
|
2198
2198
|
themeVars[PepCustomizationService.COLOR_TOP_HEADER_KEY + '-l'] = '';
|
|
2199
2199
|
}
|
|
2200
|
-
getDefaultThemeBrandingCustomizationVariables(themeVars) {
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
}
|
|
2200
|
+
// getDefaultThemeBrandingCustomizationVariables(themeVars: any): void {
|
|
2201
|
+
// themeVars[PepCustomizationService.BRANDING_LOGO_SRC] = '/assets/images/Pepperi-Logo-HiRes.png';
|
|
2202
|
+
// themeVars[PepCustomizationService.FAV_ICON_SRC] = '/assets/favicon.ico';
|
|
2203
|
+
// }
|
|
2204
2204
|
getDefaultThemeVariables() {
|
|
2205
2205
|
const themeVars = {};
|
|
2206
2206
|
// Declare default layout.
|
|
@@ -2227,8 +2227,8 @@ class PepCustomizationService {
|
|
|
2227
2227
|
this.getDefaultThemeQSCustomizationVariables(themeVars);
|
|
2228
2228
|
// Declare default top header customization.
|
|
2229
2229
|
this.getDefaultThemeTopHeaderCustomizationVariables(themeVars);
|
|
2230
|
-
// Declare default branding logo's customization
|
|
2231
|
-
this.getDefaultThemeBrandingCustomizationVariables(themeVars);
|
|
2230
|
+
// // Declare default branding logo's customization
|
|
2231
|
+
// this.getDefaultThemeBrandingCustomizationVariables(themeVars);
|
|
2232
2232
|
return themeVars;
|
|
2233
2233
|
}
|
|
2234
2234
|
getThemeVariables() {
|
|
@@ -2525,9 +2525,9 @@ PepCustomizationService.CARD_BORDER_RADIUS_KEY = '--pep-card-border-radius';
|
|
|
2525
2525
|
PepCustomizationService.TABLE_FIELD_HEIGHT_KEY = '--pep-table-field-height';
|
|
2526
2526
|
PepCustomizationService.TABLE_SPACEING_KEY = '--pep-table-spacing';
|
|
2527
2527
|
PepCustomizationService.TABLE_BORDER_RADIUS_KEY = '--pep-table-border-radius';
|
|
2528
|
-
// Branding keys
|
|
2529
|
-
|
|
2530
|
-
|
|
2528
|
+
// // Branding keys
|
|
2529
|
+
// static BRANDING_LOGO_SRC = '--pep-branding-logo-src';
|
|
2530
|
+
// static FAV_ICON_SRC = '--pep-favicon-src';
|
|
2531
2531
|
PepCustomizationService.DEFAULT_HEADER_HEIGHT = 64; // Default
|
|
2532
2532
|
PepCustomizationService.DEFAULT_SPINNER_COLOR = '#78aa00';
|
|
2533
2533
|
PepCustomizationService.DEFAULT_BRANDING_COLOR = '#fff';
|