@entropic-bond/crud-panel 4.3.0 → 4.3.1
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/lib/crud-controller.d.ts
CHANGED
|
@@ -98,7 +98,6 @@ export declare abstract class CrudController<T extends EntropicComponent> {
|
|
|
98
98
|
protected progressController: ProgressController;
|
|
99
99
|
protected onChangeHdl: Observable<CrudControllerEvent<T>>;
|
|
100
100
|
protected onErrorHdl: Observable<Error>;
|
|
101
|
-
private _model;
|
|
102
101
|
private _document;
|
|
103
102
|
private unsubscribeDocument;
|
|
104
103
|
private _filter;
|
|
@@ -756,7 +756,7 @@ const we = class we {
|
|
|
756
756
|
return this.progressController.onProgress(t);
|
|
757
757
|
}
|
|
758
758
|
get model() {
|
|
759
|
-
return this.
|
|
759
|
+
return this.getModel();
|
|
760
760
|
}
|
|
761
761
|
setDocument(t) {
|
|
762
762
|
return this._document !== t && (this.unsubscribeDocument && this.unsubscribeDocument(), t && (this.unsubscribeDocument = t.onChange((i) => this.onChangeHdl.notify({ documentProps: i }))), this._document = t, this.onChangeHdl.notify({ documentChanged: this._document })), this;
|