@ngrdt/forms 0.0.64 → 0.0.65

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.
@@ -1126,6 +1126,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0", ngImpor
1126
1126
  }] });
1127
1127
 
1128
1128
  class RdtBaseSelectCommonComponent extends RdtBaseFormInputComponent {
1129
+ manualInitInput = input(false, {
1130
+ alias: 'manualInit',
1131
+ });
1132
+ manualInit = linkedSignal(() => this.manualInitInput());
1129
1133
  datasourceInput = input(null);
1130
1134
  store = inject(RdtSelectStore);
1131
1135
  visibleOptions = this.store.visibleOptions;
@@ -1179,7 +1183,7 @@ class RdtBaseSelectCommonComponent extends RdtBaseFormInputComponent {
1179
1183
  : [control.value];
1180
1184
  this.store.init(arr);
1181
1185
  }
1182
- else {
1186
+ else if (!this.manualInit()) {
1183
1187
  this.store.init(null);
1184
1188
  }
1185
1189
  this.debouncedInput$
@@ -1228,7 +1232,7 @@ class RdtBaseSelectCommonComponent extends RdtBaseFormInputComponent {
1228
1232
  }
1229
1233
  });
1230
1234
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0", ngImport: i0, type: RdtBaseSelectCommonComponent, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1231
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.0", type: RdtBaseSelectCommonComponent, isStandalone: true, inputs: { datasourceInput: { classPropertyName: "datasourceInput", publicName: "datasourceInput", isSignal: true, isRequired: false, transformFunction: null }, queryValidatorFnInput: { classPropertyName: "queryValidatorFnInput", publicName: "inputValidator", isSignal: true, isRequired: false, transformFunction: null }, debounceTimeInput: { classPropertyName: "debounceTimeInput", publicName: "debounce", isSignal: true, isRequired: false, transformFunction: null }, pageSizeInput: { classPropertyName: "pageSizeInput", publicName: "pageSize", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0 });
1235
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.0", type: RdtBaseSelectCommonComponent, isStandalone: true, inputs: { manualInitInput: { classPropertyName: "manualInitInput", publicName: "manualInit", isSignal: true, isRequired: false, transformFunction: null }, datasourceInput: { classPropertyName: "datasourceInput", publicName: "datasourceInput", isSignal: true, isRequired: false, transformFunction: null }, queryValidatorFnInput: { classPropertyName: "queryValidatorFnInput", publicName: "inputValidator", isSignal: true, isRequired: false, transformFunction: null }, debounceTimeInput: { classPropertyName: "debounceTimeInput", publicName: "debounce", isSignal: true, isRequired: false, transformFunction: null }, pageSizeInput: { classPropertyName: "pageSizeInput", publicName: "pageSize", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0 });
1232
1236
  }
1233
1237
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0", ngImport: i0, type: RdtBaseSelectCommonComponent, decorators: [{
1234
1238
  type: Directive