@ngrdt/forms 0.0.65 → 0.0.67
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 +8 -6
- package/fesm2022/ngrdt-forms.mjs.map +1 -1
- package/index.d.ts +2 -1
- 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>>>;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngrdt/forms",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.67",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@ngrdt/core": "^0.0.
|
|
6
|
-
"@ngrdt/utils": "^0.0.
|
|
5
|
+
"@ngrdt/core": "^0.0.67",
|
|
6
|
+
"@ngrdt/utils": "^0.0.67",
|
|
7
7
|
"@angular/core": ">=20.0.0",
|
|
8
8
|
"@angular/forms": ">=20.0.0",
|
|
9
9
|
"rxjs": ">=7.0.0",
|