@fundamental-ngx/platform 0.58.0-rc.68 → 0.58.0-rc.69

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.
Files changed (23) hide show
  1. package/fesm2022/fundamental-ngx-platform-approval-flow.mjs +7 -8
  2. package/fesm2022/fundamental-ngx-platform-approval-flow.mjs.map +1 -1
  3. package/fesm2022/fundamental-ngx-platform-form.mjs +4 -5
  4. package/fesm2022/fundamental-ngx-platform-form.mjs.map +1 -1
  5. package/fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs +4 -5
  6. package/fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs.map +1 -1
  7. package/fesm2022/fundamental-ngx-platform-list.mjs +1 -3
  8. package/fesm2022/fundamental-ngx-platform-list.mjs.map +1 -1
  9. package/fesm2022/fundamental-ngx-platform-message-popover.mjs +1 -2
  10. package/fesm2022/fundamental-ngx-platform-message-popover.mjs.map +1 -1
  11. package/fesm2022/fundamental-ngx-platform-settings-generator.mjs +1 -2
  12. package/fesm2022/fundamental-ngx-platform-settings-generator.mjs.map +1 -1
  13. package/fesm2022/fundamental-ngx-platform-table-helpers.mjs +2 -3
  14. package/fesm2022/fundamental-ngx-platform-table-helpers.mjs.map +1 -1
  15. package/fesm2022/fundamental-ngx-platform-table.mjs +1 -2
  16. package/fesm2022/fundamental-ngx-platform-table.mjs.map +1 -1
  17. package/fesm2022/fundamental-ngx-platform-value-help-dialog.mjs +1 -3
  18. package/fesm2022/fundamental-ngx-platform-value-help-dialog.mjs.map +1 -1
  19. package/fesm2022/fundamental-ngx-platform-variant-management.mjs +1 -2
  20. package/fesm2022/fundamental-ngx-platform-variant-management.mjs.map +1 -1
  21. package/fesm2022/fundamental-ngx-platform-wizard-generator.mjs +3 -4
  22. package/fesm2022/fundamental-ngx-platform-wizard-generator.mjs.map +1 -1
  23. package/package.json +8 -8
@@ -10,7 +10,6 @@ import { NgClass, NgTemplateOutlet, SlicePipe } from '@angular/common';
10
10
  import { ButtonComponent } from '@fundamental-ngx/core/button';
11
11
  import { IconComponent, FD_DEFAULT_ICON_FONT_FAMILY } from '@fundamental-ngx/core/icon';
12
12
  import { PopoverComponent, PopoverControlComponent, PopoverBodyComponent } from '@fundamental-ngx/core/popover';
13
- import { cloneDeep } from 'lodash-es';
14
13
  import * as i1 from '@angular/cdk/drag-drop';
15
14
  import { ReplaySubject, Subject, fromEvent } from 'rxjs';
16
15
  import { ScrollSpyDirective } from '@fundamental-ngx/core/scroll-spy';
@@ -872,7 +871,7 @@ class IconTabBarProcessTypeComponent extends ClosableIconTabBar {
872
871
  const tabs = [...this.tabs];
873
872
  const visibleAmountOfItems = tabs.length - extraItems;
874
873
  for (let i = tabs.length - amountOfNextSteps; i < tabs.length; i++) {
875
- this._nextSteps.push(cloneDeep(tabs[i]));
874
+ this._nextSteps.push(structuredClone(tabs[i]));
876
875
  tabs[i].hidden = true;
877
876
  tabs[i].cssClasses.push(ICON_TAB_HIDDEN_CLASS_NAME);
878
877
  }
@@ -885,7 +884,7 @@ class IconTabBarProcessTypeComponent extends ClosableIconTabBar {
885
884
  let amountOfPrevSteps = extraItems - this._nextSteps.length;
886
885
  let nextIndex = this._firstVisibleTabIndex - 1;
887
886
  while (amountOfPrevSteps > 0) {
888
- this._prevSteps.push(cloneDeep(tabs[nextIndex]));
887
+ this._prevSteps.push(structuredClone(tabs[nextIndex]));
889
888
  tabs[nextIndex].hidden = true;
890
889
  tabs[nextIndex].cssClasses.push(ICON_TAB_HIDDEN_CLASS_NAME);
891
890
  --nextIndex;
@@ -913,7 +912,7 @@ class IconTabBarProcessTypeComponent extends ClosableIconTabBar {
913
912
  const tabs = [...this.tabs];
914
913
  const visibleAmountOfItems = tabs.length - extraItems;
915
914
  for (let i = amountOfPreviousSteps - 1; i >= 0; i--) {
916
- this._prevSteps.push(cloneDeep(tabs[i]));
915
+ this._prevSteps.push(structuredClone(tabs[i]));
917
916
  tabs[i].hidden = true;
918
917
  tabs[i].cssClasses.push(ICON_TAB_HIDDEN_CLASS_NAME);
919
918
  }
@@ -927,7 +926,7 @@ class IconTabBarProcessTypeComponent extends ClosableIconTabBar {
927
926
  let amountOfNextSteps = extraItems - this._prevSteps.length;
928
927
  let nextIndex = this._prevSteps.length ? this._prevSteps.length + visibleAmountOfItems : visibleAmountOfItems;
929
928
  while (amountOfNextSteps > 0) {
930
- this._nextSteps.push(cloneDeep(tabs[nextIndex]));
929
+ this._nextSteps.push(structuredClone(tabs[nextIndex]));
931
930
  tabs[nextIndex].hidden = true;
932
931
  tabs[nextIndex].cssClasses.push(ICON_TAB_HIDDEN_CLASS_NAME);
933
932
  ++nextIndex;