@decaf-ts/for-angular 0.0.69 → 0.0.70
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/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import { Observable, Subject, Subscription } from 'rxjs';
|
|
|
21
21
|
import { HttpClient } from '@angular/common/http';
|
|
22
22
|
import { SafeHtml, DomSanitizer, Title } from '@angular/platform-browser';
|
|
23
23
|
import { NavigationOptions } from '@ionic/angular/common/providers/nav-controller';
|
|
24
|
+
import { FunctionLike as FunctionLike$1 } from 'src/lib/engine';
|
|
24
25
|
import { InjectablesRegistry } from '@decaf-ts/injectable-decorators';
|
|
25
26
|
import { LoggedClass, Logger } from '@decaf-ts/logging';
|
|
26
27
|
|
|
@@ -453,7 +454,7 @@ interface ISortObject {
|
|
|
453
454
|
*/
|
|
454
455
|
interface IFilterQuery {
|
|
455
456
|
query: IFilterQueryItem[] | undefined;
|
|
456
|
-
sort
|
|
457
|
+
sort?: ISortObject;
|
|
457
458
|
}
|
|
458
459
|
/**
|
|
459
460
|
* @description Component input properties
|
|
@@ -3045,6 +3046,7 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
|
|
|
3045
3046
|
* @memberOf CrudFieldComponent
|
|
3046
3047
|
*/
|
|
3047
3048
|
translatable: boolean;
|
|
3049
|
+
private loadingController;
|
|
3048
3050
|
constructor();
|
|
3049
3051
|
/**
|
|
3050
3052
|
* @description Component initialization lifecycle method.
|
|
@@ -9058,6 +9060,8 @@ declare class NgxFormService {
|
|
|
9058
9060
|
|
|
9059
9061
|
declare abstract class NgxEventHandler extends DecafEventHandler {
|
|
9060
9062
|
changeDetectorRef: ChangeDetectorRef;
|
|
9063
|
+
readonly: boolean | FunctionLike$1;
|
|
9064
|
+
hidden?: boolean | CrudOperationKeys[] | FunctionLike$1;
|
|
9061
9065
|
constructor();
|
|
9062
9066
|
refresh(...args: unknown[]): Promise<void>;
|
|
9063
9067
|
preview(...args: unknown[]): Promise<void>;
|