@elderbyte/ngx-starter 13.7.7 → 13.7.8
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/esm2020/lib/components/select/elder-select/elder-select.component.mjs +2 -17
- package/esm2020/lib/components/select/multi/elder-multi-select-base.mjs +13 -4
- package/esm2020/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.mjs +3 -3
- package/fesm2015/elderbyte-ngx-starter.mjs +14 -20
- package/fesm2015/elderbyte-ngx-starter.mjs.map +1 -1
- package/fesm2020/elderbyte-ngx-starter.mjs +14 -20
- package/fesm2020/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/components/select/elder-select/elder-select.component.d.ts +0 -11
- package/lib/components/select/multi/elder-multi-select-base.d.ts +6 -0
- package/package.json +1 -1
|
@@ -134,17 +134,6 @@ export declare class ElderSelectComponent<TEntity = any, TId = any, TValue = TEn
|
|
|
134
134
|
*
|
|
135
135
|
*/
|
|
136
136
|
protected writeToControl(value: TValue): void;
|
|
137
|
-
/**
|
|
138
|
-
* @description
|
|
139
|
-
* Writes a new value to the element.
|
|
140
|
-
*
|
|
141
|
-
* This method is called by the forms API to write to the view when programmatic
|
|
142
|
-
* changes from model to view are requested.
|
|
143
|
-
*
|
|
144
|
-
* @param value The new value for the element
|
|
145
|
-
*/
|
|
146
|
-
writeValue(value: TValue): void;
|
|
147
|
-
private isNullOrEmpty;
|
|
148
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSelectComponent<any, any, any>, never>;
|
|
149
138
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElderSelectComponent<any, any, any>, "elder-select", never, { "nullDisplay": "nullDisplay"; "autocomplete": "autocomplete"; "allowNull": "allowNull"; "entity": "entity"; "entityId": "entityId"; "hintProperty": "hintProperty"; "hintPropertyResolver": "hintPropertyResolver"; }, { "entityIdChange": "entityIdChange"; "entityIdUpdated": "entityIdUpdated"; "entityChange": "entityChange"; "entityUpdated": "entityUpdated"; }, never, never>;
|
|
150
139
|
}
|
|
@@ -38,6 +38,12 @@ export declare abstract class ElderMultiSelectBase<TId, TEntity, TValue> extends
|
|
|
38
38
|
**************************************************************************/
|
|
39
39
|
protected constructor(zone: NgZone);
|
|
40
40
|
private awaitEntitiesWithId;
|
|
41
|
+
/***************************************************************************
|
|
42
|
+
* *
|
|
43
|
+
* Properties *
|
|
44
|
+
* *
|
|
45
|
+
**************************************************************************/
|
|
46
|
+
updateValueByEntities(entities: TEntity[]): void;
|
|
41
47
|
/***************************************************************************
|
|
42
48
|
* *
|
|
43
49
|
* Properties *
|