@sumaris-net/ngx-components 1.15.11 → 1.15.12
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/bundles/sumaris-net.ngx-components.umd.js +20 -2
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/shared/pipes/form.pipes.js +13 -1
- package/esm2015/src/app/shared/pipes/pipes.module.js +6 -4
- package/fesm2015/sumaris-net.ngx-components.js +17 -3
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/pipes/form.pipes.d.ts +3 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -4587,6 +4587,21 @@
|
|
|
4587
4587
|
},] },
|
|
4588
4588
|
{ type: i0.Injectable, args: [{ providedIn: 'root' },] }
|
|
4589
4589
|
];
|
|
4590
|
+
var FormGetGroupPipe = /** @class */ (function () {
|
|
4591
|
+
function FormGetGroupPipe() {
|
|
4592
|
+
}
|
|
4593
|
+
FormGetGroupPipe.prototype.transform = function (form, path) {
|
|
4594
|
+
return form.get(path);
|
|
4595
|
+
};
|
|
4596
|
+
return FormGetGroupPipe;
|
|
4597
|
+
}());
|
|
4598
|
+
FormGetGroupPipe.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function FormGetGroupPipe_Factory() { return new FormGetGroupPipe(); }, token: FormGetGroupPipe, providedIn: "root" });
|
|
4599
|
+
FormGetGroupPipe.decorators = [
|
|
4600
|
+
{ type: i0.Pipe, args: [{
|
|
4601
|
+
name: 'formGetGroup'
|
|
4602
|
+
},] },
|
|
4603
|
+
{ type: i0.Injectable, args: [{ providedIn: 'root' },] }
|
|
4604
|
+
];
|
|
4590
4605
|
|
|
4591
4606
|
var SharedPipesModule = /** @class */ (function () {
|
|
4592
4607
|
function SharedPipesModule() {
|
|
@@ -4636,7 +4651,8 @@
|
|
|
4636
4651
|
FormErrorTranslatePipe,
|
|
4637
4652
|
FormGetPipe,
|
|
4638
4653
|
FormGetControlPipe,
|
|
4639
|
-
FormGetArrayPipe
|
|
4654
|
+
FormGetArrayPipe,
|
|
4655
|
+
FormGetGroupPipe
|
|
4640
4656
|
],
|
|
4641
4657
|
exports: [
|
|
4642
4658
|
PropertyGetPipe,
|
|
@@ -4674,7 +4690,8 @@
|
|
|
4674
4690
|
FormErrorTranslatePipe,
|
|
4675
4691
|
FormGetPipe,
|
|
4676
4692
|
FormGetControlPipe,
|
|
4677
|
-
FormGetArrayPipe
|
|
4693
|
+
FormGetArrayPipe,
|
|
4694
|
+
FormGetGroupPipe
|
|
4678
4695
|
]
|
|
4679
4696
|
},] }
|
|
4680
4697
|
];
|
|
@@ -31350,6 +31367,7 @@
|
|
|
31350
31367
|
exports.FormFieldValuesHolder = FormFieldValuesHolder;
|
|
31351
31368
|
exports.FormGetArrayPipe = FormGetArrayPipe;
|
|
31352
31369
|
exports.FormGetControlPipe = FormGetControlPipe;
|
|
31370
|
+
exports.FormGetGroupPipe = FormGetGroupPipe;
|
|
31353
31371
|
exports.FormGetPipe = FormGetPipe;
|
|
31354
31372
|
exports.Fragments = Fragments;
|
|
31355
31373
|
exports.GraphqlService = GraphqlService;
|