@pepperi-addons/ngx-lib 0.4.2-beta.73 → 0.4.2-beta.75
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 +28 -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 +26 -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 +26 -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 +6 -2
|
@@ -2187,10 +2187,10 @@ class PepCustomizationService {
|
|
|
2187
2187
|
themeVars[PepCustomizationService.COLOR_TOP_HEADER_KEY + '-s'] = '';
|
|
2188
2188
|
themeVars[PepCustomizationService.COLOR_TOP_HEADER_KEY + '-l'] = '';
|
|
2189
2189
|
}
|
|
2190
|
-
getDefaultThemeBrandingCustomizationVariables(themeVars) {
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
}
|
|
2190
|
+
// getDefaultThemeBrandingCustomizationVariables(themeVars: any): void {
|
|
2191
|
+
// themeVars[PepCustomizationService.BRANDING_LOGO_SRC] = '/assets/images/Pepperi-Logo-HiRes.png';
|
|
2192
|
+
// themeVars[PepCustomizationService.FAV_ICON_SRC] = '/assets/favicon.ico';
|
|
2193
|
+
// }
|
|
2194
2194
|
getDefaultThemeVariables() {
|
|
2195
2195
|
const themeVars = {};
|
|
2196
2196
|
// Declare default layout.
|
|
@@ -2217,8 +2217,8 @@ class PepCustomizationService {
|
|
|
2217
2217
|
this.getDefaultThemeQSCustomizationVariables(themeVars);
|
|
2218
2218
|
// Declare default top header customization.
|
|
2219
2219
|
this.getDefaultThemeTopHeaderCustomizationVariables(themeVars);
|
|
2220
|
-
// Declare default branding logo's customization
|
|
2221
|
-
this.getDefaultThemeBrandingCustomizationVariables(themeVars);
|
|
2220
|
+
// // Declare default branding logo's customization
|
|
2221
|
+
// this.getDefaultThemeBrandingCustomizationVariables(themeVars);
|
|
2222
2222
|
return themeVars;
|
|
2223
2223
|
}
|
|
2224
2224
|
getThemeVariables() {
|
|
@@ -2515,9 +2515,9 @@ PepCustomizationService.CARD_BORDER_RADIUS_KEY = '--pep-card-border-radius';
|
|
|
2515
2515
|
PepCustomizationService.TABLE_FIELD_HEIGHT_KEY = '--pep-table-field-height';
|
|
2516
2516
|
PepCustomizationService.TABLE_SPACEING_KEY = '--pep-table-spacing';
|
|
2517
2517
|
PepCustomizationService.TABLE_BORDER_RADIUS_KEY = '--pep-table-border-radius';
|
|
2518
|
-
// Branding keys
|
|
2519
|
-
|
|
2520
|
-
|
|
2518
|
+
// // Branding keys
|
|
2519
|
+
// static BRANDING_LOGO_SRC = '--pep-branding-logo-src';
|
|
2520
|
+
// static FAV_ICON_SRC = '--pep-favicon-src';
|
|
2521
2521
|
PepCustomizationService.DEFAULT_HEADER_HEIGHT = 64; // Default
|
|
2522
2522
|
PepCustomizationService.DEFAULT_SPINNER_COLOR = '#78aa00';
|
|
2523
2523
|
PepCustomizationService.DEFAULT_BRANDING_COLOR = '#fff';
|