@fundamental-ngx/platform 0.58.0-rc.8 → 0.58.0-rc.80
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/approval-flow/index.d.ts +2 -0
- package/fesm2022/fundamental-ngx-platform-approval-flow.mjs +14 -11
- package/fesm2022/fundamental-ngx-platform-approval-flow.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-form.mjs +65 -17
- package/fesm2022/fundamental-ngx-platform-form.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs +125 -12
- package/fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-list.mjs +1 -3
- package/fesm2022/fundamental-ngx-platform-list.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-menu.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-message-popover.mjs +1 -2
- package/fesm2022/fundamental-ngx-platform-message-popover.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-page-footer.mjs +2 -2
- package/fesm2022/fundamental-ngx-platform-page-footer.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-settings-generator.mjs +3 -4
- package/fesm2022/fundamental-ngx-platform-settings-generator.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-table-helpers.mjs +2 -3
- package/fesm2022/fundamental-ngx-platform-table-helpers.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-table.mjs +3 -4
- package/fesm2022/fundamental-ngx-platform-table.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-value-help-dialog.mjs +1 -3
- package/fesm2022/fundamental-ngx-platform-value-help-dialog.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-variant-management.mjs +1 -2
- package/fesm2022/fundamental-ngx-platform-variant-management.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-wizard-generator.mjs +3 -4
- package/fesm2022/fundamental-ngx-platform-wizard-generator.mjs.map +1 -1
- package/form/index.d.ts +40 -5
- package/icon-tab-bar/index.d.ts +61 -10
- package/list/index.d.ts +1 -1
- package/menu/index.d.ts +3 -3
- package/message-popover/index.d.ts +3 -3
- package/package.json +6 -6
- package/settings-generator/index.d.ts +3 -3
- package/table/index.d.ts +1 -1
- package/variant-management/index.d.ts +1 -1
- package/schematics/collection.json +0 -10
- package/schematics/ng-add/index.d.ts +0 -13
- package/schematics/ng-add/index.js +0 -55
- package/schematics/ng-add/index.js.map +0 -1
- package/schematics/ng-add/schema.d.ts +0 -3
- package/schematics/ng-add/schema.js +0 -3
- package/schematics/ng-add/schema.js.map +0 -1
- package/schematics/ng-add/schema.json +0 -15
- package/schematics/utils/package-utils.d.ts +0 -19
- package/schematics/utils/package-utils.js +0 -119
- package/schematics/utils/package-utils.js.map +0 -1
|
@@ -3,10 +3,9 @@ import { Injectable, EventEmitter, inject, DestroyRef, ChangeDetectorRef, Output
|
|
|
3
3
|
import { take, map, debounceTime, finalize, filter } from 'rxjs/operators';
|
|
4
4
|
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
5
5
|
import { ContentDensityMode, ContentDensityDirective } from '@fundamental-ngx/core/content-density';
|
|
6
|
-
import { cloneDeep, uniq, mergeWith, concat } from 'lodash-es';
|
|
7
|
-
import { Subject, BehaviorSubject, of, firstValueFrom } from 'rxjs';
|
|
8
6
|
import * as i4 from '@fundamental-ngx/cdk/utils';
|
|
9
|
-
import { isFunction, selectStrategy, InitialFocusDirective, RepeatDirective } from '@fundamental-ngx/cdk/utils';
|
|
7
|
+
import { isFunction, selectStrategy, uniq, mergeWith, concat, InitialFocusDirective, RepeatDirective } from '@fundamental-ngx/cdk/utils';
|
|
8
|
+
import { Subject, BehaviorSubject, of, firstValueFrom } from 'rxjs';
|
|
10
9
|
import * as i2 from '@fundamental-ngx/platform/form';
|
|
11
10
|
import { FormGeneratorComponent, FormGeneratorService, FORM_GENERATOR_ITEM_CONFIG, FORM_GENERATOR_CONFIG, PlatformFormGeneratorModule } from '@fundamental-ngx/platform/form';
|
|
12
11
|
import { CdkScrollable } from '@angular/cdk/overlay';
|
|
@@ -281,7 +280,7 @@ class WizardGeneratorService {
|
|
|
281
280
|
}
|
|
282
281
|
wizardFormValue[item.id][form.id] = formatted
|
|
283
282
|
? await this._formGeneratorService.getFormValue(forms[form.id]?.form)
|
|
284
|
-
: this._formGeneratorService._getFormValueWithoutUngrouped(
|
|
283
|
+
: this._formGeneratorService._getFormValueWithoutUngrouped(structuredClone(forms[form.id]?.form.value));
|
|
285
284
|
}
|
|
286
285
|
}
|
|
287
286
|
return wizardFormValue;
|