@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.
package/index.d.ts CHANGED
@@ -466,6 +466,8 @@ declare const RdtSelectStore: _angular_core.Type<{
466
466
  type RdtSelectStore<T = any, TId = number> = InstanceType<ReturnType<typeof getRdtSelectStore<T, TId>>>;
467
467
 
468
468
  declare abstract class RdtBaseSelectCommonComponent<TItem, TId, TOut extends TId | TId[]> extends RdtBaseFormInputComponent<TOut, TId[]> {
469
+ readonly manualInitInput: _angular_core.InputSignal<boolean>;
470
+ readonly manualInit: _angular_core.WritableSignal<boolean>;
469
471
  readonly datasourceInput: _angular_core.InputSignal<RdtSelectDatasource<TItem, TId> | null>;
470
472
  readonly store: RdtSelectStore<TItem, TId>;
471
473
  readonly visibleOptions: _angular_core.Signal<_ngrdt_forms.RdtRenderedSelectOption<TItem, TId>[]>;
@@ -487,7 +489,7 @@ declare abstract class RdtBaseSelectCommonComponent<TItem, TId, TOut extends TId
487
489
  protected readonly storeValueChangeEffect: _angular_core.EffectRef;
488
490
  protected readonly externalValueEffect: _angular_core.EffectRef;
489
491
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtBaseSelectCommonComponent<any, any, any>, never>;
490
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RdtBaseSelectCommonComponent<any, any, any>, never, never, { "datasourceInput": { "alias": "datasourceInput"; "required": false; "isSignal": true; }; "queryValidatorFnInput": { "alias": "inputValidator"; "required": false; "isSignal": true; }; "debounceTimeInput": { "alias": "debounce"; "required": false; "isSignal": true; }; "pageSizeInput": { "alias": "pageSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
492
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RdtBaseSelectCommonComponent<any, any, any>, never, never, { "manualInitInput": { "alias": "manualInit"; "required": false; "isSignal": true; }; "datasourceInput": { "alias": "datasourceInput"; "required": false; "isSignal": true; }; "queryValidatorFnInput": { "alias": "inputValidator"; "required": false; "isSignal": true; }; "debounceTimeInput": { "alias": "debounce"; "required": false; "isSignal": true; }; "pageSizeInput": { "alias": "pageSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
491
493
  }
492
494
 
493
495
  declare abstract class RdtMultiSelectComponent<TItem, TId> extends RdtBaseSelectCommonComponent<TItem, TId, TId[]> {
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@ngrdt/forms",
3
- "version": "0.0.64",
3
+ "version": "0.0.65",
4
4
  "peerDependencies": {
5
- "@ngrdt/core": "^0.0.64",
6
- "@ngrdt/utils": "^0.0.64",
5
+ "@ngrdt/core": "^0.0.65",
6
+ "@ngrdt/utils": "^0.0.65",
7
7
  "@angular/core": ">=20.0.0",
8
8
  "@angular/forms": ">=20.0.0",
9
9
  "rxjs": ">=7.0.0",