@ngx-smz/core 21.0.0 → 21.0.2
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
package/types/ngx-smz-core.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ declare class LoggingService {
|
|
|
123
123
|
private levelRank;
|
|
124
124
|
/** expose current settings */
|
|
125
125
|
readonly isEnabled: i0.Signal<boolean>;
|
|
126
|
-
readonly currentLevel: i0.Signal<"
|
|
126
|
+
readonly currentLevel: i0.Signal<"error" | "debug" | "info" | "warn">;
|
|
127
127
|
readonly activeScopes: i0.Signal<string[]>;
|
|
128
128
|
/** toggle logging global */
|
|
129
129
|
enable(): void;
|
|
@@ -192,6 +192,7 @@ interface SmzFormsBehaviorsConfig {
|
|
|
192
192
|
skipFunctionAfterNextEmit?: boolean;
|
|
193
193
|
skipEmitChangesOnLoad?: boolean;
|
|
194
194
|
runStatusChangesOnConfigUpdate?: boolean;
|
|
195
|
+
emitAllOutputsOnLoad?: boolean;
|
|
195
196
|
flattenResponse?: boolean;
|
|
196
197
|
showErrorsMethod?: ShowErrorsMethodTypes;
|
|
197
198
|
submitOnEnter?: boolean;
|
|
@@ -7059,6 +7060,7 @@ declare class SmzFormBuilder<TResponse> {
|
|
|
7059
7060
|
group(name?: string, key?: string): SmzFormGroupBuilder<TResponse>;
|
|
7060
7061
|
disableFlattenResponse(): SmzFormBuilder<TResponse>;
|
|
7061
7062
|
runCustomFunctionsOnLoad(): SmzFormBuilder<TResponse>;
|
|
7063
|
+
emitAllOutputsOnLoad(): SmzFormBuilder<TResponse>;
|
|
7062
7064
|
setCustomBehavior(callback: (data: SmzFormsResponse<TResponse>, config: SmzForm<TResponse>, form: UntypedFormGroup, outputEvents: Record<string, unknown>) => void): SmzFormBuilder<TResponse>;
|
|
7063
7065
|
withNestedResponseKeySeparator(separator: string): SmzFormBuilder<TResponse>;
|
|
7064
7066
|
applyValues(...values: {
|