@stemy/ngx-utils 13.1.4 → 13.2.0
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/stemy-ngx-utils.umd.js +138 -29
- package/bundles/stemy-ngx-utils.umd.js.map +1 -1
- package/esm2015/ngx-utils/components/unordered-list/unordered-list.component.js +2 -2
- package/esm2015/ngx-utils/ngx-utils.module.js +7 -1
- package/esm2015/ngx-utils/pipes/pop.pipe.js +12 -0
- package/esm2015/ngx-utils/pipes/shift.pipe.js +12 -0
- package/esm2015/ngx-utils/pipes/split.pipe.js +12 -0
- package/esm2015/ngx-utils/services/config.service.js +5 -3
- package/esm2015/ngx-utils/services/formatter.service.js +3 -2
- package/esm2015/ngx-utils/utils/array.utils.js +8 -1
- package/esm2015/ngx-utils/utils/file-system.js +6 -1
- package/esm2015/ngx-utils/utils/math.utils.js +32 -2
- package/esm2015/ngx-utils/utils/object.utils.js +36 -25
- package/esm2015/public_api.js +4 -1
- package/esm2020/ngx-utils/components/unordered-list/unordered-list.component.mjs +3 -3
- package/esm2020/ngx-utils/ngx-utils.imports.mjs +7 -1
- package/esm2020/ngx-utils/ngx-utils.module.mjs +31 -28
- package/esm2020/ngx-utils/pipes/pop.pipe.mjs +16 -0
- package/esm2020/ngx-utils/pipes/shift.pipe.mjs +16 -0
- package/esm2020/ngx-utils/pipes/split.pipe.mjs +16 -0
- package/esm2020/ngx-utils/services/config.service.mjs +6 -5
- package/esm2020/ngx-utils/services/formatter.service.mjs +3 -2
- package/esm2020/ngx-utils/utils/array.utils.mjs +8 -1
- package/esm2020/ngx-utils/utils/file-system.mjs +6 -1
- package/esm2020/ngx-utils/utils/math.utils.mjs +31 -2
- package/esm2020/ngx-utils/utils/object.utils.mjs +36 -25
- package/esm2020/public_api.mjs +4 -1
- package/fesm2015/stemy-ngx-utils.js +122 -30
- package/fesm2015/stemy-ngx-utils.js.map +1 -1
- package/fesm2015/stemy-ngx-utils.mjs +135 -35
- package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
- package/fesm2020/stemy-ngx-utils.mjs +134 -35
- package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/ngx-utils.module.d.ts +31 -28
- package/ngx-utils/pipes/pop.pipe.d.ts +7 -0
- package/ngx-utils/pipes/shift.pipe.d.ts +7 -0
- package/ngx-utils/pipes/split.pipe.d.ts +7 -0
- package/ngx-utils/services/config.service.d.ts +4 -2
- package/ngx-utils/utils/array.utils.d.ts +1 -0
- package/ngx-utils/utils/math.utils.d.ts +3 -0
- package/ngx-utils/utils/object.utils.d.ts +1 -1
- package/package.json +10 -10
- package/public_api.d.ts +3 -0
- package/stemy-ngx-utils.metadata.json +1 -1
|
@@ -349,7 +349,11 @@
|
|
|
349
349
|
Object.getOwnPropertyNames(obj).forEach(function (p) { return props.add(p); });
|
|
350
350
|
return Array.from(props);
|
|
351
351
|
};
|
|
352
|
-
ObjectUtils.equals = function (a, b) {
|
|
352
|
+
ObjectUtils.equals = function (a, b, visited) {
|
|
353
|
+
if (visited === void 0) { visited = null; }
|
|
354
|
+
visited = visited || new Set();
|
|
355
|
+
if (visited.has(a) && visited.has(b))
|
|
356
|
+
return true;
|
|
353
357
|
if (a === b)
|
|
354
358
|
return true;
|
|
355
359
|
if (a === null || b === null)
|
|
@@ -359,12 +363,14 @@
|
|
|
359
363
|
var at = typeof a, bt = typeof b;
|
|
360
364
|
var length, key, keySet;
|
|
361
365
|
if (at == bt && at == "object") {
|
|
366
|
+
visited.add(a);
|
|
367
|
+
visited.add(b);
|
|
362
368
|
if (Array.isArray(a)) {
|
|
363
369
|
if (!Array.isArray(b))
|
|
364
370
|
return false;
|
|
365
371
|
if ((length = a.length) == b.length) {
|
|
366
372
|
for (key = 0; key < length; key++) {
|
|
367
|
-
if (!ObjectUtils.equals(a[key], b[key]))
|
|
373
|
+
if (!ObjectUtils.equals(a[key], b[key], visited))
|
|
368
374
|
return false;
|
|
369
375
|
}
|
|
370
376
|
return true;
|
|
@@ -377,7 +383,7 @@
|
|
|
377
383
|
keySet = Object.create(null);
|
|
378
384
|
for (key in a) {
|
|
379
385
|
if (a.hasOwnProperty(key)) {
|
|
380
|
-
if (!ObjectUtils.equals(a[key], b[key])) {
|
|
386
|
+
if (!ObjectUtils.equals(a[key], b[key], visited)) {
|
|
381
387
|
return false;
|
|
382
388
|
}
|
|
383
389
|
keySet[key] = true;
|
|
@@ -474,13 +480,13 @@
|
|
|
474
480
|
return isNaN(key) || isArray ? target : Object.values(target);
|
|
475
481
|
};
|
|
476
482
|
ObjectUtils.filter = function (obj, predicate) {
|
|
477
|
-
return ObjectUtils.copyRecursive(null, obj, predicate);
|
|
483
|
+
return ObjectUtils.copyRecursive(null, obj, predicate, new Map());
|
|
478
484
|
};
|
|
479
485
|
ObjectUtils.copy = function (obj) {
|
|
480
|
-
return ObjectUtils.copyRecursive(null, obj);
|
|
486
|
+
return ObjectUtils.copyRecursive(null, obj, null, new Map());
|
|
481
487
|
};
|
|
482
488
|
ObjectUtils.assign = function (target, source, predicate) {
|
|
483
|
-
return ObjectUtils.copyRecursive(target, source, predicate);
|
|
489
|
+
return ObjectUtils.copyRecursive(target, source, predicate, new Map());
|
|
484
490
|
};
|
|
485
491
|
ObjectUtils.getType = function (obj) {
|
|
486
492
|
var regex = new RegExp("\\s([a-zA-Z]+)");
|
|
@@ -567,28 +573,34 @@
|
|
|
567
573
|
var str = ObjectUtils.isDefined(obj) ? obj.toString() : "";
|
|
568
574
|
return str.length >= width ? str : new Array(width - str.length + 1).join(chr) + str;
|
|
569
575
|
};
|
|
570
|
-
ObjectUtils.copyRecursive = function (target, source, predicate) {
|
|
576
|
+
ObjectUtils.copyRecursive = function (target, source, predicate, copies) {
|
|
571
577
|
predicate = predicate || defaultPredicate;
|
|
572
578
|
if (ObjectUtils.isPrimitive(source) || ObjectUtils.isDate(source) || ObjectUtils.isBlob(source) || ObjectUtils.isFunction(source))
|
|
573
579
|
return source;
|
|
574
|
-
if (
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
580
|
+
if (!copies.has(source)) {
|
|
581
|
+
if (ObjectUtils.isArray(source)) {
|
|
582
|
+
target = ObjectUtils.isArray(target) ? Array.from(target) : [];
|
|
583
|
+
copies.set(source, target);
|
|
584
|
+
source.forEach(function (item, index) {
|
|
585
|
+
if (!predicate(item, index, target, source))
|
|
586
|
+
return;
|
|
587
|
+
if (target.length > index)
|
|
588
|
+
target[index] = ObjectUtils.copyRecursive(target[index], item, predicate, copies);
|
|
589
|
+
else
|
|
590
|
+
target.push(ObjectUtils.copyRecursive(null, item, predicate, copies));
|
|
591
|
+
});
|
|
592
|
+
}
|
|
593
|
+
else {
|
|
594
|
+
target = Object.assign({}, target);
|
|
595
|
+
copies.set(source, target);
|
|
596
|
+
Object.keys(source).forEach(function (key) {
|
|
597
|
+
if (!predicate(source[key], key, target, source))
|
|
598
|
+
return;
|
|
599
|
+
target[key] = ObjectUtils.copyRecursive(target[key], source[key], predicate, copies);
|
|
600
|
+
});
|
|
601
|
+
}
|
|
585
602
|
}
|
|
586
|
-
return
|
|
587
|
-
if (!predicate(source[key], key, result, source))
|
|
588
|
-
return result;
|
|
589
|
-
result[key] = ObjectUtils.copyRecursive(result[key], source[key], predicate);
|
|
590
|
-
return result;
|
|
591
|
-
}, Object.assign({}, target));
|
|
603
|
+
return copies.get(source);
|
|
592
604
|
};
|
|
593
605
|
return ObjectUtils;
|
|
594
606
|
}());
|
|
@@ -1407,7 +1419,13 @@
|
|
|
1407
1419
|
.concat(["level-" + this.level]);
|
|
1408
1420
|
}
|
|
1409
1421
|
FileSystemEntry.prototype.open = function () {
|
|
1422
|
+
var _this = this;
|
|
1410
1423
|
this.result = this.result || this.openCb(this.data, this);
|
|
1424
|
+
this.result.then(function (res) {
|
|
1425
|
+
if (Array.isArray(res))
|
|
1426
|
+
return;
|
|
1427
|
+
_this.result = null;
|
|
1428
|
+
});
|
|
1411
1429
|
return this.result;
|
|
1412
1430
|
};
|
|
1413
1431
|
return FileSystemEntry;
|
|
@@ -1690,7 +1708,7 @@
|
|
|
1690
1708
|
}
|
|
1691
1709
|
MathUtils.equal = function (a, b, epsilon) {
|
|
1692
1710
|
if (epsilon === void 0) { epsilon = null; }
|
|
1693
|
-
epsilon = ObjectUtils.isNumber(epsilon) ? epsilon :
|
|
1711
|
+
epsilon = ObjectUtils.isNumber(epsilon) ? epsilon : MathUtils.EPSILON;
|
|
1694
1712
|
return Math.abs(a - b) < epsilon;
|
|
1695
1713
|
};
|
|
1696
1714
|
MathUtils.clamp = function (value, min, max) {
|
|
@@ -1702,8 +1720,40 @@
|
|
|
1702
1720
|
precision = Math.pow(10, precision);
|
|
1703
1721
|
return Math.round(value * precision / divider) / precision;
|
|
1704
1722
|
};
|
|
1723
|
+
MathUtils.approxIndex = function (x, values, epsilon) {
|
|
1724
|
+
if (epsilon === void 0) { epsilon = null; }
|
|
1725
|
+
if (!Array.isArray(values) || values.length == 0) {
|
|
1726
|
+
return -1;
|
|
1727
|
+
}
|
|
1728
|
+
var s = 0;
|
|
1729
|
+
var e = values.length - 1;
|
|
1730
|
+
while (s <= e) {
|
|
1731
|
+
var i = Math.floor((s + e) / 2);
|
|
1732
|
+
var v = values[i];
|
|
1733
|
+
if (MathUtils.equal(v, x, epsilon)) {
|
|
1734
|
+
return i;
|
|
1735
|
+
}
|
|
1736
|
+
if (v < x) {
|
|
1737
|
+
s = i + 1;
|
|
1738
|
+
}
|
|
1739
|
+
else {
|
|
1740
|
+
e = i - 1;
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1743
|
+
var m = Math.max(e, 0);
|
|
1744
|
+
var a = values[s];
|
|
1745
|
+
var b = values[m];
|
|
1746
|
+
return Math.abs(a - x) < Math.abs(b - x) ? s : m;
|
|
1747
|
+
};
|
|
1748
|
+
MathUtils.approximate = function (x, values, epsilon) {
|
|
1749
|
+
if (epsilon === void 0) { epsilon = null; }
|
|
1750
|
+
var _a;
|
|
1751
|
+
var index = MathUtils.approxIndex(x, values, epsilon);
|
|
1752
|
+
return (_a = values[index]) !== null && _a !== void 0 ? _a : null;
|
|
1753
|
+
};
|
|
1705
1754
|
return MathUtils;
|
|
1706
|
-
}());
|
|
1755
|
+
}());
|
|
1756
|
+
MathUtils.EPSILON = 1e-9;
|
|
1707
1757
|
|
|
1708
1758
|
/**
|
|
1709
1759
|
* Use this service to determine which is the current environment
|
|
@@ -2539,6 +2589,13 @@
|
|
|
2539
2589
|
}
|
|
2540
2590
|
return result;
|
|
2541
2591
|
};
|
|
2592
|
+
ArrayUtils.unique = function (arr) {
|
|
2593
|
+
if (!ObjectUtils.isArray(arr))
|
|
2594
|
+
return [];
|
|
2595
|
+
return arr.filter(function (value, index, self) {
|
|
2596
|
+
return self.indexOf(value) === index;
|
|
2597
|
+
});
|
|
2598
|
+
};
|
|
2542
2599
|
return ArrayUtils;
|
|
2543
2600
|
}());
|
|
2544
2601
|
|
|
@@ -3224,12 +3281,13 @@
|
|
|
3224
3281
|
|
|
3225
3282
|
var JSON5 = require("json5");
|
|
3226
3283
|
var ConfigService = /** @class */ (function () {
|
|
3227
|
-
function ConfigService(http, universal, rootElement, baseConfig, scriptParams) {
|
|
3284
|
+
function ConfigService(http, universal, injector, rootElement, baseConfig, scriptParams) {
|
|
3228
3285
|
var _this = this;
|
|
3229
3286
|
if (baseConfig === void 0) { baseConfig = null; }
|
|
3230
3287
|
if (scriptParams === void 0) { scriptParams = null; }
|
|
3231
3288
|
this.http = http;
|
|
3232
3289
|
this.universal = universal;
|
|
3290
|
+
this.injector = injector;
|
|
3233
3291
|
this.rootElement = rootElement;
|
|
3234
3292
|
for (var key in []) {
|
|
3235
3293
|
Object.defineProperty(Array.prototype, key, {
|
|
@@ -3364,6 +3422,7 @@
|
|
|
3364
3422
|
ConfigService.ctorParameters = function () { return [
|
|
3365
3423
|
{ type: http.HttpClient },
|
|
3366
3424
|
{ type: UniversalService },
|
|
3425
|
+
{ type: core.Injector },
|
|
3367
3426
|
{ type: undefined, decorators: [{ type: core.Inject, args: [ROOT_ELEMENT,] }] },
|
|
3368
3427
|
{ type: IConfiguration, decorators: [{ type: core.Optional }, { type: core.Inject, args: [BASE_CONFIG,] }] },
|
|
3369
3428
|
{ type: undefined, decorators: [{ type: core.Optional }, { type: core.Inject, args: [SCRIPT_PARAMS,] }] }
|
|
@@ -3480,7 +3539,8 @@
|
|
|
3480
3539
|
var num = ObjectUtils.isNumber(value) ? value : parseFloat(value) || 0;
|
|
3481
3540
|
var str = (num / divider).toLocaleString(this.language.currentLanguage, {
|
|
3482
3541
|
minimumFractionDigits: precision,
|
|
3483
|
-
maximumFractionDigits: precision
|
|
3542
|
+
maximumFractionDigits: precision,
|
|
3543
|
+
useGrouping: false
|
|
3484
3544
|
});
|
|
3485
3545
|
return ObjectUtils.evaluate(format || this.defaultNumberFormat, { num: str });
|
|
3486
3546
|
};
|
|
@@ -4593,6 +4653,20 @@
|
|
|
4593
4653
|
},] }
|
|
4594
4654
|
];
|
|
4595
4655
|
|
|
4656
|
+
var PopPipe = /** @class */ (function () {
|
|
4657
|
+
function PopPipe() {
|
|
4658
|
+
}
|
|
4659
|
+
PopPipe.prototype.transform = function (value) {
|
|
4660
|
+
return !Array.isArray(value) ? null : Array.from(value).pop();
|
|
4661
|
+
};
|
|
4662
|
+
return PopPipe;
|
|
4663
|
+
}());
|
|
4664
|
+
PopPipe.decorators = [
|
|
4665
|
+
{ type: core.Pipe, args: [{
|
|
4666
|
+
name: "pop"
|
|
4667
|
+
},] }
|
|
4668
|
+
];
|
|
4669
|
+
|
|
4596
4670
|
function defaultReducer(result) {
|
|
4597
4671
|
return result;
|
|
4598
4672
|
}
|
|
@@ -4739,6 +4813,35 @@
|
|
|
4739
4813
|
{ type: platformBrowser.DomSanitizer }
|
|
4740
4814
|
]; };
|
|
4741
4815
|
|
|
4816
|
+
var ShiftPipe = /** @class */ (function () {
|
|
4817
|
+
function ShiftPipe() {
|
|
4818
|
+
}
|
|
4819
|
+
ShiftPipe.prototype.transform = function (value) {
|
|
4820
|
+
return !Array.isArray(value) ? null : Array.from(value).shift();
|
|
4821
|
+
};
|
|
4822
|
+
return ShiftPipe;
|
|
4823
|
+
}());
|
|
4824
|
+
ShiftPipe.decorators = [
|
|
4825
|
+
{ type: core.Pipe, args: [{
|
|
4826
|
+
name: "shift"
|
|
4827
|
+
},] }
|
|
4828
|
+
];
|
|
4829
|
+
|
|
4830
|
+
var SplitPipe = /** @class */ (function () {
|
|
4831
|
+
function SplitPipe() {
|
|
4832
|
+
}
|
|
4833
|
+
SplitPipe.prototype.transform = function (value, separator) {
|
|
4834
|
+
if (separator === void 0) { separator = "."; }
|
|
4835
|
+
return ("" + value).split(separator);
|
|
4836
|
+
};
|
|
4837
|
+
return SplitPipe;
|
|
4838
|
+
}());
|
|
4839
|
+
SplitPipe.decorators = [
|
|
4840
|
+
{ type: core.Pipe, args: [{
|
|
4841
|
+
name: "split"
|
|
4842
|
+
},] }
|
|
4843
|
+
];
|
|
4844
|
+
|
|
4742
4845
|
var TranslatePipe = /** @class */ (function () {
|
|
4743
4846
|
function TranslatePipe(cdr, language) {
|
|
4744
4847
|
this.cdr = cdr;
|
|
@@ -5564,7 +5667,7 @@
|
|
|
5564
5667
|
UnorderedListComponent.decorators = [
|
|
5565
5668
|
{ type: core.Component, args: [{
|
|
5566
5669
|
selector: "unordered-list",
|
|
5567
|
-
template: "<ng-template let-keyPrefix=\"keyPrefix\" let-key=\"item.key\" let-isArray=\"isArray\" #defaultKeyTemplate>\r\n {{ (keyPrefix ? keyPrefix + key : key) | translate }}:\r\n</ng-template>\r\n<ng-template let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-val=\"item.value\" let-path=\"path\"\r\n let-templates=\"templates\" let-isObject=\"valueIsObject\" let-isArray=\"valueIsArray\" #defaultValueTemplate>\r\n <ng-template #value
|
|
5670
|
+
template: "<ng-template let-keyPrefix=\"keyPrefix\" let-key=\"item.key\" let-isArray=\"isArray\" #defaultKeyTemplate>\r\n {{ (keyPrefix ? keyPrefix + key : key) | translate }}:\r\n</ng-template>\r\n<ng-template let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-val=\"item.value\" let-path=\"path\"\r\n let-templates=\"templates\" let-isObject=\"valueIsObject\" let-isArray=\"valueIsArray\" #defaultValueTemplate>\r\n <ng-template #value>\r\n <span [innerHTML]=\"val\"></span>\r\n </ng-template>\r\n <unordered-list [data]=\"val\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level + 1\"\r\n [templates]=\"templates\"\r\n *ngIf=\"(isObject || isArray); else value\"></unordered-list>\r\n</ng-template>\r\n<ng-template let-item=\"item\" let-data=\"data\" let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-path=\"path\" let-level=\"level\" let-templates=\"templates\" #defaultItemTemplate>\r\n <ng-template #itemKey>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"key\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-template #itemValue>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"value\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-container *ngIf=\"!isArray\">\r\n <th *ngIf=\"listStyle == 'table'; else itemKey\">\r\n <ng-container [ngTemplateOutlet]=\"itemKey\"></ng-container>\r\n </th>\r\n </ng-container>\r\n <td *ngIf=\"listStyle == 'table'; else itemValue\">\r\n <ng-container [ngTemplateOutlet]=\"itemValue\"></ng-container>\r\n </td>\r\n</ng-template>\r\n<ng-template #value>\r\n <span [innerHTML]=\"data\"></span>\r\n</ng-template>\r\n<ng-container *ngIf=\"(isObject || isArray); else value\" [ngSwitch]=\"listStyle\">\r\n <ul [ngClass]=\"'level-' + level\" *ngSwitchCase=\"'list'\">\r\n <li *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </li>\r\n </ul>\r\n <table [ngClass]=\"'level-' + level\" *ngSwitchDefault>\r\n <tr *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </tr>\r\n </table>\r\n</ng-container>\r\n"
|
|
5568
5671
|
},] }
|
|
5569
5672
|
];
|
|
5570
5673
|
UnorderedListComponent.ctorParameters = function () { return [
|
|
@@ -5878,12 +5981,15 @@
|
|
|
5878
5981
|
MapPipe,
|
|
5879
5982
|
MaxPipe,
|
|
5880
5983
|
MinPipe,
|
|
5984
|
+
PopPipe,
|
|
5881
5985
|
ReducePipe,
|
|
5882
5986
|
RemapPipe,
|
|
5883
5987
|
ReplacePipe,
|
|
5884
5988
|
ReversePipe,
|
|
5885
5989
|
RoundPipe,
|
|
5886
5990
|
SafeHtmlPipe,
|
|
5991
|
+
ShiftPipe,
|
|
5992
|
+
SplitPipe,
|
|
5887
5993
|
TranslatePipe,
|
|
5888
5994
|
ValuesPipe
|
|
5889
5995
|
];
|
|
@@ -6097,6 +6203,7 @@
|
|
|
6097
6203
|
exports.PaginationItemDirective = PaginationItemDirective;
|
|
6098
6204
|
exports.PaginationMenuComponent = PaginationMenuComponent;
|
|
6099
6205
|
exports.Point = Point;
|
|
6206
|
+
exports.PopPipe = PopPipe;
|
|
6100
6207
|
exports.PromiseService = PromiseService;
|
|
6101
6208
|
exports.ROOT_ELEMENT = ROOT_ELEMENT;
|
|
6102
6209
|
exports.Rect = Rect;
|
|
@@ -6113,6 +6220,8 @@
|
|
|
6113
6220
|
exports.SafeHtmlPipe = SafeHtmlPipe;
|
|
6114
6221
|
exports.ScrollEventPlugin = ScrollEventPlugin;
|
|
6115
6222
|
exports.SetUtils = SetUtils;
|
|
6223
|
+
exports.ShiftPipe = ShiftPipe;
|
|
6224
|
+
exports.SplitPipe = SplitPipe;
|
|
6116
6225
|
exports.StateService = StateService;
|
|
6117
6226
|
exports.StaticAuthService = StaticAuthService;
|
|
6118
6227
|
exports.StaticLanguageService = StaticLanguageService;
|