@ngrdt/forms 0.0.44 → 0.0.46

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
@@ -416,7 +416,7 @@ declare const RdtSelectStore: _angular_core.Type<{
416
416
  }>>;
417
417
  type RdtSelectStore<T = any, TId = number> = InstanceType<ReturnType<typeof getRdtSelectStore<T, TId>>>;
418
418
 
419
- declare abstract class RdtBaseSelectCommonComponent<TItem, TId, TOut> extends RdtBaseFormInputComponent<TOut> {
419
+ declare abstract class RdtBaseSelectCommonComponent<TItem, TId, TOut extends TId | TId[]> extends RdtBaseFormInputComponent<TOut, TId[]> {
420
420
  readonly datasourceInput: _angular_core.InputSignal<RdtSelectDatasource<TItem, TId> | null>;
421
421
  readonly store: RdtSelectStore<TItem, TId>;
422
422
  readonly visibleOptions: _angular_core.Signal<_ngrdt_forms.RdtRenderedSelectOption<TItem, TId>[]>;
@@ -435,6 +435,8 @@ declare abstract class RdtBaseSelectCommonComponent<TItem, TId, TOut> extends Rd
435
435
  readonly loading: _angular_core.Signal<boolean>;
436
436
  ngOnInit(): void;
437
437
  protected handleInput(value: string | null): void;
438
+ protected readonly storeValueChangeEffect: _angular_core.EffectRef;
439
+ protected readonly externalValueEffect: _angular_core.EffectRef;
438
440
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtBaseSelectCommonComponent<any, any, any>, never>;
439
441
  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>;
440
442
  }
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@ngrdt/forms",
3
- "version": "0.0.44",
3
+ "version": "0.0.46",
4
4
  "peerDependencies": {
5
- "@ngrdt/core": "^0.0.44",
6
- "@ngrdt/utils": "^0.0.44",
5
+ "@ngrdt/core": "^0.0.46",
6
+ "@ngrdt/utils": "^0.0.46",
7
7
  "@angular/core": ">=18.2.0",
8
8
  "@angular/forms": ">=18.2.0",
9
9
  "rxjs": ">=7.0.0",