ngx-axis-appforge 0.0.28 → 0.0.29

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.
@@ -40,6 +40,7 @@ declare class EditTableFieldOptions {
40
40
  readonly sortPriority: _angular_core.WritableSignal<number | null>;
41
41
  readonly filterAble: _angular_core.WritableSignal<boolean>;
42
42
  readonly filterMultiple: _angular_core.WritableSignal<boolean>;
43
+ readonly filterDisplayFn: _angular_core.WritableSignal<string>;
43
44
  readonly width: _angular_core.WritableSignal<number | null>;
44
45
  readonly align: _angular_core.WritableSignal<"left" | "right" | "center">;
45
46
  readonly freezeMode: _angular_core.WritableSignal<"left" | "right" | "none">;
@@ -1644,9 +1644,8 @@ class Design extends ValueAccess {
1644
1644
  chooseComponent(...tags) {
1645
1645
  this.chooseComponentTags.set(tags);
1646
1646
  this.chooseComponentVisible.set(true);
1647
- const existsIds = new Set();
1648
1647
  return this.chooseComponentSubject.asObservable()
1649
- .pipe(take(1), map((example) => example?.builder((component, offset) => this.genNewComponentId(component, offset, existsIds))), switchMap(options => options ? from(this.loader.loadComponent(`${options.component}/design`)).pipe(map(config => ({ options, config }))) : of({})));
1648
+ .pipe(take(1), map((example) => example?.builder((component, offset) => this.genNewComponentId(component, offset))), switchMap(options => options ? from(this.loader.loadComponent(`${options.component}/design`)).pipe(map(config => ({ options, config }))) : of({})));
1650
1649
  }
1651
1650
  genNewComponentId(component, offset = 1, existsIds) {
1652
1651
  let id;