@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
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { OnInit, OnChanges, EventEmitter, ElementRef, OnDestroy, Renderer2 } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatSelect } from '@angular/material/select';
|
|
4
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
5
|
import { PepLayoutType, PepCustomizationService, PepHorizontalAlignment, PepSelectFieldType, IPepOption } from '@pepperi-addons/ngx-lib';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class PepSelectComponent implements OnChanges, OnInit, OnDestroy {
|
|
8
|
+
private translate;
|
|
7
9
|
private customizationService;
|
|
8
10
|
private renderer;
|
|
9
11
|
private element;
|
|
@@ -18,6 +20,11 @@ export declare class PepSelectComponent implements OnChanges, OnInit, OnDestroy
|
|
|
18
20
|
readonly: boolean;
|
|
19
21
|
xAlignment: PepHorizontalAlignment;
|
|
20
22
|
rowSpan: number;
|
|
23
|
+
private _placeholder;
|
|
24
|
+
private _placeholderSet;
|
|
25
|
+
set placeholder(value: string);
|
|
26
|
+
get placeholder(): string;
|
|
27
|
+
placeholderWhenDisabled: string;
|
|
21
28
|
private _options;
|
|
22
29
|
set options(value: Array<IPepOption>);
|
|
23
30
|
get options(): Array<IPepOption>;
|
|
@@ -43,7 +50,7 @@ export declare class PepSelectComponent implements OnChanges, OnInit, OnDestroy
|
|
|
43
50
|
selectedValuesModel: string[];
|
|
44
51
|
selectedValueModel: string;
|
|
45
52
|
fieldFormattedValue: string;
|
|
46
|
-
constructor(customizationService: PepCustomizationService, renderer: Renderer2, element: ElementRef);
|
|
53
|
+
constructor(translate: TranslateService, customizationService: PepCustomizationService, renderer: Renderer2, element: ElementRef);
|
|
47
54
|
private addOptionsIfNeeded;
|
|
48
55
|
private setFieldFormattedValue;
|
|
49
56
|
private setDefaultForm;
|
|
@@ -55,5 +62,5 @@ export declare class PepSelectComponent implements OnChanges, OnInit, OnDestroy
|
|
|
55
62
|
changeValue(value: any): void;
|
|
56
63
|
cardTemplateClicked(event: any): void;
|
|
57
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<PepSelectComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PepSelectComponent, "pep-select", never, { "key": "key"; "value": "value"; "label": "label"; "type": "type"; "mandatory": "mandatory"; "disabled": "disabled"; "readonly": "readonly"; "xAlignment": "xAlignment"; "rowSpan": "rowSpan"; "options": "options"; "visible": "visible"; "emptyOption": "emptyOption"; "form": "form"; "layoutType": "layoutType"; "parentFieldKey": "parentFieldKey"; "isActive": "isActive"; "showTitle": "showTitle"; "renderTitle": "renderTitle"; "typeaheadDebounceInterval": "typeaheadDebounceInterval"; }, { "valueChange": "valueChange"; }, never, never, false>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PepSelectComponent, "pep-select", never, { "key": "key"; "value": "value"; "label": "label"; "type": "type"; "mandatory": "mandatory"; "disabled": "disabled"; "readonly": "readonly"; "xAlignment": "xAlignment"; "rowSpan": "rowSpan"; "placeholder": "placeholder"; "placeholderWhenDisabled": "placeholderWhenDisabled"; "options": "options"; "visible": "visible"; "emptyOption": "emptyOption"; "form": "form"; "layoutType": "layoutType"; "parentFieldKey": "parentFieldKey"; "isActive": "isActive"; "showTitle": "showTitle"; "renderTitle": "renderTitle"; "typeaheadDebounceInterval": "typeaheadDebounceInterval"; }, { "valueChange": "valueChange"; }, never, never, false>;
|
|
59
66
|
}
|