osl-base-extended 1.0.13 → 1.0.14
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/package.json
CHANGED
|
@@ -186,7 +186,9 @@ declare class Osltextarea {
|
|
|
186
186
|
declare class DynamicForm implements OnInit, OnChanges {
|
|
187
187
|
cdr: ChangeDetectorRef;
|
|
188
188
|
elements: elements[];
|
|
189
|
-
|
|
189
|
+
private _model;
|
|
190
|
+
set model(val: any);
|
|
191
|
+
get model(): any;
|
|
190
192
|
skeletonLoading: boolean;
|
|
191
193
|
modelChange: EventEmitter<any>;
|
|
192
194
|
private datasourceCache;
|
|
@@ -329,7 +331,7 @@ declare class OslAutocomplete extends baseComponent implements OnInit, OnChanges
|
|
|
329
331
|
label: string;
|
|
330
332
|
required: boolean;
|
|
331
333
|
disabled: boolean;
|
|
332
|
-
model: any;
|
|
334
|
+
set model(val: any);
|
|
333
335
|
datasource: any[];
|
|
334
336
|
displayField: string;
|
|
335
337
|
valueField: string;
|
|
@@ -339,7 +341,7 @@ declare class OslAutocomplete extends baseComponent implements OnInit, OnChanges
|
|
|
339
341
|
methodName: string;
|
|
340
342
|
configMethodName: string;
|
|
341
343
|
service: any;
|
|
342
|
-
|
|
344
|
+
object: any;
|
|
343
345
|
skeletonLoading: boolean;
|
|
344
346
|
isLister: boolean;
|
|
345
347
|
modelChange: EventEmitter<any>;
|