@sumaris-net/ngx-components 1.23.64 → 1.23.65
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 +32 -0
- 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/doc/changelog.md +3 -0
- package/esm2015/src/app/shared/pipes/pipes.module.js +6 -2
- package/esm2015/src/app/shared/pipes/string.pipes.js +22 -2
- package/fesm2015/sumaris-net.ngx-components.js +25 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/pipes/string.pipes.d.ts +6 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -3258,6 +3258,32 @@
|
|
|
3258
3258
|
name: 'isNilOrBlank'
|
|
3259
3259
|
},] }
|
|
3260
3260
|
];
|
|
3261
|
+
var IsNotNilOrNaNPipe = /** @class */ (function () {
|
|
3262
|
+
function IsNotNilOrNaNPipe() {
|
|
3263
|
+
}
|
|
3264
|
+
IsNotNilOrNaNPipe.prototype.transform = function (value) {
|
|
3265
|
+
return isNotNilOrNaN(value);
|
|
3266
|
+
};
|
|
3267
|
+
return IsNotNilOrNaNPipe;
|
|
3268
|
+
}());
|
|
3269
|
+
IsNotNilOrNaNPipe.decorators = [
|
|
3270
|
+
{ type: i0.Pipe, args: [{
|
|
3271
|
+
name: 'isNotNilOrNaN'
|
|
3272
|
+
},] }
|
|
3273
|
+
];
|
|
3274
|
+
var IsNotNilPipe = /** @class */ (function () {
|
|
3275
|
+
function IsNotNilPipe() {
|
|
3276
|
+
}
|
|
3277
|
+
IsNotNilPipe.prototype.transform = function (value) {
|
|
3278
|
+
return isNotNil(value);
|
|
3279
|
+
};
|
|
3280
|
+
return IsNotNilPipe;
|
|
3281
|
+
}());
|
|
3282
|
+
IsNotNilPipe.decorators = [
|
|
3283
|
+
{ type: i0.Pipe, args: [{
|
|
3284
|
+
name: 'isNotNil'
|
|
3285
|
+
},] }
|
|
3286
|
+
];
|
|
3261
3287
|
var ToStringPipe = /** @class */ (function () {
|
|
3262
3288
|
function ToStringPipe() {
|
|
3263
3289
|
}
|
|
@@ -5158,6 +5184,8 @@
|
|
|
5158
5184
|
MapValuesPipe,
|
|
5159
5185
|
IsNilOrBlankPipe,
|
|
5160
5186
|
IsNotNilOrBlankPipe,
|
|
5187
|
+
IsNotNilOrNaNPipe,
|
|
5188
|
+
IsNotNilPipe,
|
|
5161
5189
|
ToStringPipe,
|
|
5162
5190
|
StrLengthPipe,
|
|
5163
5191
|
StrIncludesPipe,
|
|
@@ -5199,6 +5227,8 @@
|
|
|
5199
5227
|
MapValuesPipe,
|
|
5200
5228
|
IsNilOrBlankPipe,
|
|
5201
5229
|
IsNotNilOrBlankPipe,
|
|
5230
|
+
IsNotNilOrNaNPipe,
|
|
5231
|
+
IsNotNilPipe,
|
|
5202
5232
|
ToStringPipe,
|
|
5203
5233
|
StrLengthPipe,
|
|
5204
5234
|
StrIncludesPipe,
|
|
@@ -35647,6 +35677,8 @@
|
|
|
35647
35677
|
exports.IsLoginAccountPipe = IsLoginAccountPipe;
|
|
35648
35678
|
exports.IsNilOrBlankPipe = IsNilOrBlankPipe;
|
|
35649
35679
|
exports.IsNotNilOrBlankPipe = IsNotNilOrBlankPipe;
|
|
35680
|
+
exports.IsNotNilOrNaNPipe = IsNotNilOrNaNPipe;
|
|
35681
|
+
exports.IsNotNilPipe = IsNotNilPipe;
|
|
35650
35682
|
exports.IsNotOnFieldModePipe = IsNotOnFieldModePipe;
|
|
35651
35683
|
exports.IsOnFieldModePipe = IsOnFieldModePipe;
|
|
35652
35684
|
exports.Job = Job;
|