@veloceapps/sdk 8.0.0-88 → 8.0.0-89
Sign up to get free protection for your applications and to get access to all the features.
- package/cms/vendor-map.d.ts +5 -1
- package/core/pipes/date.pipe.d.ts +2 -1
- package/core/types/index.d.ts +1 -0
- package/core/types/pipe.types.d.ts +1 -0
- package/esm2020/cms/vendor-map.mjs +6 -2
- package/esm2020/core/pipes/date.pipe.mjs +10 -4
- package/esm2020/core/types/index.mjs +2 -1
- package/esm2020/core/types/pipe.types.mjs +2 -0
- package/fesm2015/veloceapps-sdk-cms.mjs +6 -2
- package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk-core.mjs +9 -3
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-cms.mjs +5 -1
- package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +9 -3
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/package.json +1 -1
@@ -6,7 +6,7 @@ import { BehaviorSubject, Subject, filter, map, distinctUntilChanged, of, tap, s
|
|
6
6
|
import * as i3 from '@veloceapps/components';
|
7
7
|
import { ToastType, LetDirectiveModule, LoaderModule, ToastService } from '@veloceapps/components';
|
8
8
|
import * as i4 from '@veloceapps/sdk/core';
|
9
|
-
import { ConfigurationService, ConfigurationState, QuoteDraftService, FlowConfigurationService, LineItemWorker, ProductImagesService, ContextService, RuntimeSettingsService, lineItemUtils, generateLineItem, getAttributeValue, SdkPipesModule, SdkCoreModule, UI_DEFINITION_VERSION } from '@veloceapps/sdk/core';
|
9
|
+
import { ConfigurationService, ConfigurationState, QuoteDraftService, FlowConfigurationService, LineItemWorker, ProductImagesService, ContextService, RuntimeSettingsService, ActionCodePipe, DatePipe, NumberPipe, PricePipe, lineItemUtils, generateLineItem, getAttributeValue, SdkPipesModule, SdkCoreModule, UI_DEFINITION_VERSION } from '@veloceapps/sdk/core';
|
10
10
|
import lodash, { cloneDeep, compact, isArray, pull, merge, omit, flatten, kebabCase, set } from 'lodash';
|
11
11
|
import { applyPatch } from 'rfc6902';
|
12
12
|
import { getCollectionUniqueName, UUID, isDefined, Operator, Predicate, parseJsonSafely, CoreModule } from '@veloceapps/core';
|
@@ -1644,6 +1644,10 @@ const VELOCE_LIBS = {
|
|
1644
1644
|
ProductImagesService,
|
1645
1645
|
ContextService,
|
1646
1646
|
RuntimeSettingsService,
|
1647
|
+
ActionCodePipe,
|
1648
|
+
DatePipe,
|
1649
|
+
NumberPipe,
|
1650
|
+
PricePipe,
|
1647
1651
|
...lineItemUtils,
|
1648
1652
|
},
|
1649
1653
|
'@veloceapps/sdk/cms': {
|