@veloceapps/sdk 11.0.0-2 → 11.0.0-3
Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,7 @@ import * as i3 from '@veloceapps/components';
|
|
10
10
|
import { ToastType, LetDirectiveModule, LoaderModule, ToastService, HiddenTextTooltipModule, ErrorTooltipModule } from '@veloceapps/components';
|
11
11
|
import lodash, { cloneDeep, compact, isArray, pull, merge, omit, flatten, kebabCase, set } from 'lodash';
|
12
12
|
import { applyPatch } from 'rfc6902';
|
13
|
-
import { getCollectionUniqueName, UUID, isDefined, Operator, Predicate, parseJsonSafely, ConfigurationContextMode, parseJwt, CoreModule } from '@veloceapps/core';
|
13
|
+
import { getCollectionUniqueName, UUID, isDefined, Operator, Predicate, parseJsonSafely, ConfigurationContextMode, parseJwt, TokenInfoService, CoreModule } from '@veloceapps/core';
|
14
14
|
import * as i4 from '@angular/common';
|
15
15
|
import { CommonModule, DOCUMENT } from '@angular/common';
|
16
16
|
import * as i2$1 from 'ngx-drag-drop';
|
@@ -1587,7 +1587,7 @@ function getError(token, self, reason) {
|
|
1587
1587
|
return new Error(`Injecting "${token}" in "/${self.path}": ${reason}`);
|
1588
1588
|
}
|
1589
1589
|
|
1590
|
-
const
|
1590
|
+
const vendorMap = {
|
1591
1591
|
'@veloceapps/core': {
|
1592
1592
|
isDefined,
|
1593
1593
|
Operator,
|
@@ -1595,6 +1595,7 @@ const VELOCE_LIBS = {
|
|
1595
1595
|
parseJsonSafely,
|
1596
1596
|
ConfigurationContextMode,
|
1597
1597
|
parseJwt,
|
1598
|
+
TokenInfoService,
|
1598
1599
|
},
|
1599
1600
|
'@veloceapps/components': {
|
1600
1601
|
ToastService,
|
@@ -1640,12 +1641,6 @@ const VELOCE_LIBS = {
|
|
1640
1641
|
ResourcesService,
|
1641
1642
|
cmsInject,
|
1642
1643
|
},
|
1643
|
-
};
|
1644
|
-
const VELOCE_LIBS_BACKWARDS_COMPATIBLE = Object.entries(VELOCE_LIBS).reduce((trunk, [key, value]) => ({ ...trunk, [key.replace('@veloceapps/', '@veloce/')]: value }), {});
|
1645
|
-
const vendorMap = {
|
1646
|
-
...VELOCE_LIBS,
|
1647
|
-
// TODO: remove when projects/demos are migrated to @veloceapps organization libraries
|
1648
|
-
...VELOCE_LIBS_BACKWARDS_COMPATIBLE,
|
1649
1644
|
'@angular/core': i0,
|
1650
1645
|
'@angular/forms': angularForms,
|
1651
1646
|
'@angular/cdk/collections': {
|