@sumaris-net/ngx-components 0.15.2 → 0.15.3
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/bundles/ngx-sumaris-components.umd.js +14 -7
- package/bundles/ngx-sumaris-components.umd.js.map +1 -1
- package/bundles/ngx-sumaris-components.umd.min.js +1 -1
- package/bundles/ngx-sumaris-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/form/editor.class.js +10 -7
- package/esm2015/src/app/core/form/entity-editor.class.js +2 -2
- package/esm2015/src/app/core/table/table.utils.js +1 -1
- package/fesm2015/ngx-sumaris-components.js +10 -7
- package/fesm2015/ngx-sumaris-components.js.map +1 -1
- package/ngx-sumaris-components.metadata.json +1 -1
- package/package.json +1 -1
- package/src/app/core/form/editor.class.d.ts +2 -1
- package/src/app/core/table/table.utils.d.ts +1 -1
package/package.json
CHANGED
|
@@ -38,6 +38,7 @@ export declare abstract class AppTabEditor<T = any, ID = number, O = any> implem
|
|
|
38
38
|
private _subscription;
|
|
39
39
|
protected _enabled: boolean;
|
|
40
40
|
protected _dirty: boolean;
|
|
41
|
+
protected _loading: boolean;
|
|
41
42
|
tabCount: number;
|
|
42
43
|
enableSwipe: boolean;
|
|
43
44
|
tabGroupAnimationDuration: string;
|
|
@@ -46,7 +47,6 @@ export declare abstract class AppTabEditor<T = any, ID = number, O = any> implem
|
|
|
46
47
|
selectedTabIndex: number;
|
|
47
48
|
submitted: boolean;
|
|
48
49
|
error: string;
|
|
49
|
-
loading: boolean;
|
|
50
50
|
queryParams: Params;
|
|
51
51
|
i18nContext: {
|
|
52
52
|
prefix: string;
|
|
@@ -66,6 +66,7 @@ export declare abstract class AppTabEditor<T = any, ID = number, O = any> implem
|
|
|
66
66
|
get valid(): boolean;
|
|
67
67
|
get invalid(): boolean;
|
|
68
68
|
get pending(): boolean;
|
|
69
|
+
get loading(): boolean;
|
|
69
70
|
get enabled(): boolean;
|
|
70
71
|
get disabled(): boolean;
|
|
71
72
|
get children(): IAppForm[];
|