@ngxs/form-plugin 20.1.0 → 21.0.0-dev.master-6ca4440
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/ngxs-form-plugin.mjs +10 -10
- package/package.json +5 -5
|
@@ -127,10 +127,10 @@ class NgxsFormPlugin {
|
|
|
127
127
|
}
|
|
128
128
|
return path;
|
|
129
129
|
}
|
|
130
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
131
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.
|
|
130
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormPlugin, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
131
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormPlugin });
|
|
132
132
|
}
|
|
133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormPlugin, decorators: [{
|
|
134
134
|
type: Injectable
|
|
135
135
|
}] });
|
|
136
136
|
function isObjectLike(target) {
|
|
@@ -291,10 +291,10 @@ class NgxsFormDirective {
|
|
|
291
291
|
.select(state => getValue(state, path))
|
|
292
292
|
.pipe(takeUntilDestroyed(this._destroyRef));
|
|
293
293
|
}
|
|
294
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
295
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.
|
|
294
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
295
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: NgxsFormDirective, isStandalone: true, selector: "[ngxsForm]", inputs: { path: ["ngxsForm", "path"], debounce: ["ngxsFormDebounce", "debounce"], clearDestroy: ["ngxsFormClearOnDestroy", "clearDestroy"] }, ngImport: i0 });
|
|
296
296
|
}
|
|
297
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormDirective, decorators: [{
|
|
298
298
|
type: Directive,
|
|
299
299
|
args: [{ selector: '[ngxsForm]', standalone: true }]
|
|
300
300
|
}], ctorParameters: () => [], propDecorators: { path: [{
|
|
@@ -315,11 +315,11 @@ class NgxsFormPluginModule {
|
|
|
315
315
|
providers: [withNgxsPlugin(NgxsFormPlugin)]
|
|
316
316
|
};
|
|
317
317
|
}
|
|
318
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.
|
|
319
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.
|
|
320
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.
|
|
318
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormPluginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
319
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormPluginModule, imports: [NgxsFormDirective], exports: [NgxsFormDirective] });
|
|
320
|
+
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormPluginModule });
|
|
321
321
|
}
|
|
322
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.
|
|
322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NgxsFormPluginModule, decorators: [{
|
|
323
323
|
type: NgModule,
|
|
324
324
|
args: [{
|
|
325
325
|
imports: [NgxsFormDirective],
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngxs/form-plugin",
|
|
3
3
|
"description": "form plugin for @ngxs/store",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "21.0.0-dev.master-6ca4440",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@
|
|
8
|
-
"@angular/
|
|
9
|
-
"@
|
|
7
|
+
"@angular/core": ">=21.0.0 <22.0.0",
|
|
8
|
+
"@angular/forms": ">=21.0.0 <22.0.0",
|
|
9
|
+
"@ngxs/store": "^21.0.0 || ^21.0.0-dev",
|
|
10
10
|
"rxjs": ">=7.0.0"
|
|
11
11
|
},
|
|
12
12
|
"module": "fesm2022/ngxs-form-plugin.mjs",
|
|
@@ -67,4 +67,4 @@
|
|
|
67
67
|
"type": "opencollective",
|
|
68
68
|
"url": "https://opencollective.com/ngxs"
|
|
69
69
|
}
|
|
70
|
-
}
|
|
70
|
+
}
|