@sumaris-net/ngx-components 18.19.0 → 18.19.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/esm2022/src/app/core/form/form-container.class.mjs +7 -1
- package/esm2022/src/app/core/form/form.utils.mjs +5 -1
- package/fesm2022/sumaris-net.ngx-components.mjs +10 -0
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/form-container.class.d.ts +4 -0
- package/src/app/core/form/form.utils.d.ts +12 -0
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -99,6 +99,10 @@ export declare abstract class AppFormContainer<T = any> implements IAppFormConta
|
|
|
99
99
|
onlySelf?: boolean;
|
|
100
100
|
emitEvent?: boolean;
|
|
101
101
|
}): void;
|
|
102
|
+
markAsNotReady(opts?: {
|
|
103
|
+
onlySelf?: boolean;
|
|
104
|
+
emitEvent?: boolean;
|
|
105
|
+
}): void;
|
|
102
106
|
/**
|
|
103
107
|
* Wait form is ready
|
|
104
108
|
*
|
|
@@ -74,6 +74,10 @@ export interface IAppForm<T = any> {
|
|
|
74
74
|
onlySelf?: boolean;
|
|
75
75
|
emitEvent?: boolean;
|
|
76
76
|
}): void;
|
|
77
|
+
markAsNotReady(opts?: {
|
|
78
|
+
onlySelf?: boolean;
|
|
79
|
+
emitEvent?: boolean;
|
|
80
|
+
}): void;
|
|
77
81
|
}
|
|
78
82
|
export interface CanSave {
|
|
79
83
|
dirty: boolean;
|
|
@@ -138,6 +142,10 @@ export declare class AppNullForm implements IAppForm {
|
|
|
138
142
|
onlySelf?: boolean;
|
|
139
143
|
emitEvent?: boolean;
|
|
140
144
|
}): void;
|
|
145
|
+
markAsNotReady(opts?: {
|
|
146
|
+
onlySelf?: boolean;
|
|
147
|
+
emitEvent?: boolean;
|
|
148
|
+
}): void;
|
|
141
149
|
waitIdle(opts?: WaitForOptions): Promise<any>;
|
|
142
150
|
ready(): Promise<any>;
|
|
143
151
|
}
|
|
@@ -199,6 +207,10 @@ export declare class AppFormProvider<F extends IAppForm = IAppForm> implements I
|
|
|
199
207
|
onlySelf?: boolean;
|
|
200
208
|
emitEvent?: boolean;
|
|
201
209
|
}): void;
|
|
210
|
+
markAsNotReady(opts?: {
|
|
211
|
+
onlySelf?: boolean;
|
|
212
|
+
emitEvent?: boolean;
|
|
213
|
+
}): void;
|
|
202
214
|
save(): Promise<boolean>;
|
|
203
215
|
}
|
|
204
216
|
/**
|
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "18.19.
|
|
5
|
+
"version": "18.19.1",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|