@ngrdt/forms 0.0.64 → 0.0.66
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/fesm2022/ngrdt-forms.mjs +14 -8
- package/fesm2022/ngrdt-forms.mjs.map +1 -1
- package/index.d.ts +5 -2
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -107,9 +107,10 @@ declare abstract class RdtCheckboxComponent<TTrue = any, TFalse = any> extends R
|
|
|
107
107
|
|
|
108
108
|
declare class RdtCheckboxOutletDirective<TCheckComp extends RdtCheckboxComponent, TCheckInputs extends RdtCheckboxInputInt = RdtCheckboxInputInt> extends RdtFormInputOutletDirective<TCheckComp, TCheckInputs> {
|
|
109
109
|
readonly componentClass: Type<TCheckComp>;
|
|
110
|
+
readonly checkedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
110
111
|
constructor();
|
|
111
112
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtCheckboxOutletDirective<any, any>, never>;
|
|
112
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RdtCheckboxOutletDirective<any, any>, "[rdtCheckboxOutlet]", ["rdtCheckboxOutlet"], {}, {}, never, never, true, never>;
|
|
113
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RdtCheckboxOutletDirective<any, any>, "[rdtCheckboxOutlet]", ["rdtCheckboxOutlet"], {}, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
113
114
|
}
|
|
114
115
|
|
|
115
116
|
declare const RDT_CHECKBOX_BASE_PROVIDER: InjectionToken<Type<RdtCheckboxComponent<any, any>>>;
|
|
@@ -466,6 +467,8 @@ declare const RdtSelectStore: _angular_core.Type<{
|
|
|
466
467
|
type RdtSelectStore<T = any, TId = number> = InstanceType<ReturnType<typeof getRdtSelectStore<T, TId>>>;
|
|
467
468
|
|
|
468
469
|
declare abstract class RdtBaseSelectCommonComponent<TItem, TId, TOut extends TId | TId[]> extends RdtBaseFormInputComponent<TOut, TId[]> {
|
|
470
|
+
readonly manualInitInput: _angular_core.InputSignal<boolean>;
|
|
471
|
+
readonly manualInit: _angular_core.WritableSignal<boolean>;
|
|
469
472
|
readonly datasourceInput: _angular_core.InputSignal<RdtSelectDatasource<TItem, TId> | null>;
|
|
470
473
|
readonly store: RdtSelectStore<TItem, TId>;
|
|
471
474
|
readonly visibleOptions: _angular_core.Signal<_ngrdt_forms.RdtRenderedSelectOption<TItem, TId>[]>;
|
|
@@ -487,7 +490,7 @@ declare abstract class RdtBaseSelectCommonComponent<TItem, TId, TOut extends TId
|
|
|
487
490
|
protected readonly storeValueChangeEffect: _angular_core.EffectRef;
|
|
488
491
|
protected readonly externalValueEffect: _angular_core.EffectRef;
|
|
489
492
|
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>;
|
|
493
|
+
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
494
|
}
|
|
492
495
|
|
|
493
496
|
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.
|
|
3
|
+
"version": "0.0.66",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@ngrdt/core": "^0.0.
|
|
6
|
-
"@ngrdt/utils": "^0.0.
|
|
5
|
+
"@ngrdt/core": "^0.0.66",
|
|
6
|
+
"@ngrdt/utils": "^0.0.66",
|
|
7
7
|
"@angular/core": ">=20.0.0",
|
|
8
8
|
"@angular/forms": ">=20.0.0",
|
|
9
9
|
"rxjs": ">=7.0.0",
|