@veloceapps/sdk 8.0.0-20 → 8.0.0-201
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +0 -1
- package/cms/README.md +0 -20
- package/cms/cms.actions.d.ts +15 -1
- package/cms/components/preview/preview.component.d.ts +2 -3
- package/cms/components/preview/preview.types.d.ts +4 -0
- package/cms/index.d.ts +1 -0
- package/cms/modules/runtime/services/runtime.service.d.ts +1 -1
- package/cms/services/index.d.ts +0 -1
- package/cms/services/resources.service.d.ts +2 -0
- package/cms/types/index.d.ts +0 -1
- package/cms/utils/element-metadata-worker.d.ts +11 -0
- package/cms/utils/elements-resolver.d.ts +0 -2
- package/cms/utils/index.d.ts +3 -0
- package/cms/utils/transpilation-worker.d.ts +13 -0
- package/cms/vendor-map.d.ts +29 -19
- package/core/README.md +20 -0
- package/core/modules/configuration/configuration.module.d.ts +2 -1
- package/core/modules/configuration/helpers.d.ts +4 -3
- package/core/modules/configuration/index.d.ts +1 -1
- package/core/modules/configuration/services/configuration-runtime.service.d.ts +1 -1
- package/core/modules/configuration/services/configuration-state.service.d.ts +54 -0
- package/core/modules/configuration/services/configuration.service.d.ts +11 -6
- package/core/modules/configuration/types/configuration.types.d.ts +4 -0
- package/core/modules/flow-configuration/flow-configuration.module.d.ts +2 -1
- package/core/modules/flow-configuration/services/flow-configuration.service.d.ts +5 -0
- package/core/pipes/action-code.pipe.d.ts +8 -0
- package/core/pipes/date.pipe.d.ts +2 -1
- package/core/pipes/index.d.ts +1 -0
- package/core/pipes/pipes.module.d.ts +2 -1
- package/core/services/context.service.d.ts +4 -0
- package/core/services/flow-info.service.d.ts +29 -0
- package/core/services/flow-state-configuration.service.d.ts +19 -0
- package/core/services/flow-state.service.d.ts +80 -0
- package/core/services/index.d.ts +4 -1
- package/core/services/quote-draft.service.d.ts +12 -28
- package/core/services/runtime-settings.service.d.ts +4 -1
- package/core/types/flow-customization.types.d.ts +22 -0
- package/core/types/flow-state.types.d.ts +11 -0
- package/core/types/formatting-settings.types.d.ts +2 -0
- package/core/types/index.d.ts +3 -0
- package/{cms → core}/types/integration.types.d.ts +1 -1
- package/core/types/pipe.types.d.ts +1 -0
- package/core/utils/line-item.utils.d.ts +1 -3
- package/esm2020/cms/cms.actions.mjs +25 -1
- package/esm2020/cms/components/element-renderer/element-renderer.component.mjs +3 -3
- package/esm2020/cms/components/element-tools-panel/element-tools-panel.component.mjs +3 -3
- package/esm2020/cms/components/preview/preview.component.mjs +10 -10
- package/esm2020/cms/components/preview/preview.module.mjs +2 -2
- package/esm2020/cms/components/preview/preview.types.mjs +1 -1
- package/esm2020/cms/index.mjs +2 -1
- package/esm2020/cms/launcher.module.mjs +4 -4
- package/esm2020/cms/modules/migrations/migrations.mjs +2 -2
- package/esm2020/cms/modules/migrations/services/migrations.service.mjs +6 -2
- package/esm2020/cms/modules/runtime/services/compilation.service.mjs +11 -7
- package/esm2020/cms/modules/runtime/services/runtime.service.mjs +4 -4
- package/esm2020/cms/plugins/configuration.plugin.mjs +8 -4
- package/esm2020/cms/services/index.mjs +1 -2
- package/esm2020/cms/services/io-provider.service.mjs +10 -9
- package/esm2020/cms/services/resources.service.mjs +10 -6
- package/esm2020/cms/services/templates.service.mjs +10 -9
- package/esm2020/cms/types/index.mjs +1 -2
- package/esm2020/cms/utils/element-metadata-worker.mjs +31 -0
- package/esm2020/cms/utils/elements-resolver.mjs +14 -28
- package/esm2020/cms/utils/encoding.utils.mjs +3 -2
- package/esm2020/cms/utils/index.mjs +4 -1
- package/esm2020/cms/utils/path.utils.mjs +3 -3
- package/esm2020/cms/utils/script.utils.mjs +19 -15
- package/esm2020/cms/utils/transpilation-worker.mjs +52 -0
- package/esm2020/cms/vendor-map.mjs +18 -6
- package/esm2020/core/core.module.mjs +12 -5
- package/esm2020/core/modules/configuration/configuration.module.mjs +7 -23
- package/esm2020/core/modules/configuration/helpers.mjs +28 -3
- package/esm2020/core/modules/configuration/index.mjs +2 -2
- package/esm2020/core/modules/configuration/services/configuration-runtime.service.mjs +8 -11
- package/esm2020/core/modules/configuration/services/configuration-state.service.mjs +335 -0
- package/esm2020/core/modules/configuration/services/configuration.service.mjs +77 -52
- package/esm2020/core/modules/configuration/services/runtime-context.service.mjs +6 -6
- package/esm2020/core/modules/configuration/types/configuration.types.mjs +1 -1
- package/esm2020/core/modules/flow-configuration/flow-configuration.module.mjs +6 -6
- package/esm2020/core/modules/flow-configuration/services/flow-configuration.service.mjs +12 -9
- package/esm2020/core/pipes/action-code.pipe.mjs +20 -0
- package/esm2020/core/pipes/date.pipe.mjs +10 -4
- package/esm2020/core/pipes/index.mjs +2 -1
- package/esm2020/core/pipes/pipes.module.mjs +5 -4
- package/esm2020/core/services/context.service.mjs +33 -6
- package/esm2020/core/services/flow-info.service.mjs +99 -0
- package/esm2020/core/services/flow-state-configuration.service.mjs +53 -0
- package/esm2020/core/services/flow-state.service.mjs +512 -0
- package/esm2020/core/services/index.mjs +5 -2
- package/esm2020/core/services/integration.state.mjs +36 -0
- package/esm2020/core/services/product-images.service.mjs +4 -5
- package/esm2020/core/services/quote-draft.service.mjs +40 -91
- package/esm2020/core/services/runtime-settings.service.mjs +22 -5
- package/esm2020/core/types/flow-customization.types.mjs +3 -0
- package/esm2020/core/types/flow-state.types.mjs +2 -0
- package/esm2020/core/types/formatting-settings.types.mjs +1 -1
- package/esm2020/core/types/index.mjs +4 -1
- package/esm2020/core/types/integration.types.mjs +2 -0
- package/esm2020/core/types/pipe.types.mjs +2 -0
- package/esm2020/core/utils/line-item.utils.mjs +33 -32
- package/esm2020/src/components/doc-gen/doc-gen.component.mjs +49 -49
- package/esm2020/src/components/flow-header/flow-header.component.mjs +108 -0
- package/esm2020/src/components/flow-header/flow-header.module.mjs +19 -0
- package/esm2020/src/components/flow-header/index.mjs +2 -0
- package/esm2020/src/components/guided-selling/guided-selling.component.mjs +37 -43
- package/esm2020/src/configure-primeng.mjs +33 -0
- package/esm2020/src/flow-routing.module.mjs +56 -78
- package/esm2020/src/flow.component.mjs +23 -32
- package/esm2020/src/flow.module.mjs +7 -5
- package/esm2020/src/guards/context.guard.mjs +6 -11
- package/esm2020/src/guards/flow.guard.mjs +37 -0
- package/esm2020/src/guards/product-unload.guard.mjs +4 -1
- package/esm2020/src/guards/root.guard.mjs +14 -10
- package/esm2020/src/pages/assets/assets.component.mjs +33 -37
- package/esm2020/src/pages/catalog/catalog.component.mjs +33 -37
- package/esm2020/src/pages/debug/debug.component.mjs +10 -14
- package/esm2020/src/pages/product/product.component.mjs +35 -22
- package/esm2020/src/pages/record-not-found/record-not-found.component.mjs +6 -3
- package/esm2020/src/pages/remote/remote.component.mjs +19 -19
- package/esm2020/src/pages/shopping-cart/shopping-cart.component.mjs +34 -38
- package/esm2020/src/resolvers/flow.resolver.mjs +37 -49
- package/esm2020/src/resolvers/quote.resolver.mjs +55 -63
- package/esm2020/src/services/doc-gen.service.mjs +4 -3
- package/esm2020/src/services/flow-dialog.service.mjs +21 -6
- package/esm2020/src/services/flow-router.service.mjs +57 -16
- package/esm2020/src/services/flow.service.mjs +83 -28
- package/esm2020/src/services/guided-selling.service.mjs +5 -4
- package/esm2020/src/services/index.mjs +3 -1
- package/esm2020/src/types/index.mjs +1 -2
- package/esm2020/src/utils/flow.utils.mjs +6 -2
- package/fesm2015/veloceapps-sdk-cms.mjs +298 -195
- package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk-core.mjs +1846 -1023
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk.mjs +756 -1493
- package/fesm2015/veloceapps-sdk.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-cms.mjs +302 -209
- package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +1596 -811
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk.mjs +819 -1553
- package/fesm2020/veloceapps-sdk.mjs.map +1 -1
- package/package.json +5 -12
- package/src/components/doc-gen/doc-gen.component.d.ts +8 -9
- package/src/components/flow-header/flow-header.component.d.ts +25 -0
- package/src/components/flow-header/flow-header.module.d.ts +9 -0
- package/src/components/flow-header/index.d.ts +1 -0
- package/src/components/guided-selling/guided-selling.component.d.ts +6 -8
- package/src/configure-primeng.d.ts +1 -0
- package/src/flow-routing.module.d.ts +5 -7
- package/src/flow.component.d.ts +7 -11
- package/src/flow.module.d.ts +2 -2
- package/src/guards/context.guard.d.ts +4 -5
- package/src/guards/flow.guard.d.ts +2 -0
- package/src/guards/product-unload.guard.d.ts +2 -2
- package/src/guards/root.guard.d.ts +0 -1
- package/src/pages/assets/assets.component.d.ts +5 -7
- package/src/pages/catalog/catalog.component.d.ts +5 -7
- package/src/pages/debug/debug.component.d.ts +5 -8
- package/src/pages/product/product.component.d.ts +8 -7
- package/src/pages/record-not-found/record-not-found.component.d.ts +2 -0
- package/src/pages/remote/remote.component.d.ts +2 -3
- package/src/pages/shopping-cart/shopping-cart.component.d.ts +5 -7
- package/src/resolvers/flow.resolver.d.ts +6 -7
- package/src/resolvers/quote.resolver.d.ts +7 -12
- package/src/services/doc-gen.service.d.ts +1 -1
- package/src/services/flow-dialog.service.d.ts +5 -2
- package/src/services/flow-router.service.d.ts +7 -3
- package/src/services/flow.service.d.ts +11 -4
- package/src/services/guided-selling.service.d.ts +1 -1
- package/src/services/index.d.ts +2 -0
- package/src/types/index.d.ts +0 -1
- package/core/modules/configuration/services/configuration.state.d.ts +0 -30
- package/core/services/metric-calculation/metric-calculation.service.d.ts +0 -25
- package/core/services/metric-calculation/metric-calculation.types.d.ts +0 -1
- package/core/services/metric-calculation/metric-calculation.utils.d.ts +0 -5
- package/esm2020/cms/services/integration.state.mjs +0 -37
- package/esm2020/cms/types/integration.types.mjs +0 -2
- package/esm2020/core/modules/configuration/services/configuration.state.mjs +0 -142
- package/esm2020/core/services/metric-calculation/metric-calculation.service.mjs +0 -85
- package/esm2020/core/services/metric-calculation/metric-calculation.types.mjs +0 -2
- package/esm2020/core/services/metric-calculation/metric-calculation.utils.mjs +0 -42
- package/esm2020/runtime/components/component-preview/component-preview.component.mjs +0 -125
- package/esm2020/runtime/components/index.mjs +0 -5
- package/esm2020/runtime/components/section-renderer/section-renderer.component.mjs +0 -67
- package/esm2020/runtime/components/ui-runtime/runtime.component.mjs +0 -440
- package/esm2020/runtime/components/ui-runtime-preview/runtime-preview.component.mjs +0 -108
- package/esm2020/runtime/execution/components/children-placeholder/children-placeholder.component.mjs +0 -60
- package/esm2020/runtime/execution/components/context-provider/context-provider.component.mjs +0 -39
- package/esm2020/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.mjs +0 -67
- package/esm2020/runtime/execution/components/federated/federated.component.mjs +0 -74
- package/esm2020/runtime/execution/components/velo-attribute/velo-attribute.component.mjs +0 -60
- package/esm2020/runtime/execution/components/velo-multiselect/velo-multiselect.component.mjs +0 -130
- package/esm2020/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.mjs +0 -72
- package/esm2020/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.mjs +0 -97
- package/esm2020/runtime/execution/components/velo-port-radio/velo-port-radio.component.mjs +0 -142
- package/esm2020/runtime/execution/components/velo-type/velo-type.component.mjs +0 -119
- package/esm2020/runtime/execution/directives/section-script.directive.mjs +0 -247
- package/esm2020/runtime/execution/directives/sf-query.directive.mjs +0 -35
- package/esm2020/runtime/execution/directives/velo-attribute.directive.mjs +0 -88
- package/esm2020/runtime/execution/directives/velo-port.directive.mjs +0 -376
- package/esm2020/runtime/execution/directives/vl-approval.directive.mjs +0 -23
- package/esm2020/runtime/execution/directives/vl-document-attachments.directive.mjs +0 -36
- package/esm2020/runtime/execution/directives/vl-document-templates.directive.mjs +0 -60
- package/esm2020/runtime/execution/directives/vl-quote.directive.mjs +0 -42
- package/esm2020/runtime/execution/directives/vl-ramp.directive.mjs +0 -55
- package/esm2020/runtime/execution/runtime-execution.module.mjs +0 -133
- package/esm2020/runtime/execution/utils/federated.util.mjs +0 -32
- package/esm2020/runtime/index.mjs +0 -5
- package/esm2020/runtime/runtime.module.mjs +0 -74
- package/esm2020/runtime/services/cart.service.mjs +0 -29
- package/esm2020/runtime/services/collapsible-state.service.mjs +0 -34
- package/esm2020/runtime/services/configuration.service.mjs +0 -119
- package/esm2020/runtime/services/current-state.service.mjs +0 -17
- package/esm2020/runtime/services/form-scope.service.mjs +0 -30
- package/esm2020/runtime/services/index.mjs +0 -4
- package/esm2020/runtime/services/product-model-cache.service.mjs +0 -31
- package/esm2020/runtime/services/runtime-context.service.mjs +0 -60
- package/esm2020/runtime/services/runtime-form.service.mjs +0 -219
- package/esm2020/runtime/services/runtime.service.mjs +0 -115
- package/esm2020/runtime/services/section-helper.service.mjs +0 -27
- package/esm2020/runtime/services/section-scope.service.mjs +0 -36
- package/esm2020/runtime/services/section-store.service.mjs +0 -22
- package/esm2020/runtime/services/section.service.mjs +0 -117
- package/esm2020/runtime/types/bound-data.types.mjs +0 -7
- package/esm2020/runtime/types/index.mjs +0 -3
- package/esm2020/runtime/types/quote-states.types.mjs +0 -2
- package/esm2020/runtime/types/runtime.types.mjs +0 -2
- package/esm2020/runtime/types/script-registry.types.mjs +0 -51
- package/esm2020/runtime/utils/line-item.util.mjs +0 -270
- package/esm2020/runtime/utils/section.utils.mjs +0 -26
- package/esm2020/runtime/utils/sections-binder.helper.mjs +0 -105
- package/esm2020/runtime/veloceapps-sdk-runtime.mjs +0 -5
- package/esm2020/src/components/header/cart-overlay/cart-preview.component.mjs +0 -119
- package/esm2020/src/components/header/cart-overlay/cart-preview.module.mjs +0 -47
- package/esm2020/src/components/header/header.component.mjs +0 -355
- package/esm2020/src/components/header/header.module.mjs +0 -52
- package/esm2020/src/components/header/header.types.mjs +0 -2
- package/esm2020/src/components/header/metrics/index.mjs +0 -2
- package/esm2020/src/components/header/metrics/metrics.component.mjs +0 -255
- package/esm2020/src/components/header/metrics/metrics.definitions.mjs +0 -2
- package/esm2020/src/components/header/metrics/metrics.module.mjs +0 -69
- package/esm2020/src/pages/empty-account/empty-account.component.mjs +0 -12
- package/esm2020/src/pages/empty-account/empty-account.module.mjs +0 -20
- package/esm2020/src/pages/legacy-product/legacy-product.component.mjs +0 -137
- package/esm2020/src/pages/legacy-product/legacy-product.module.mjs +0 -19
- package/esm2020/src/types/flow-customization.types.mjs +0 -3
- package/fesm2015/veloceapps-sdk-runtime.mjs +0 -3770
- package/fesm2015/veloceapps-sdk-runtime.mjs.map +0 -1
- package/fesm2020/veloceapps-sdk-runtime.mjs +0 -3767
- package/fesm2020/veloceapps-sdk-runtime.mjs.map +0 -1
- package/runtime/README.md +0 -5
- package/runtime/components/component-preview/component-preview.component.d.ts +0 -27
- package/runtime/components/index.d.ts +0 -4
- package/runtime/components/section-renderer/section-renderer.component.d.ts +0 -25
- package/runtime/components/ui-runtime/runtime.component.d.ts +0 -53
- package/runtime/components/ui-runtime-preview/runtime-preview.component.d.ts +0 -27
- package/runtime/execution/components/children-placeholder/children-placeholder.component.d.ts +0 -30
- package/runtime/execution/components/context-provider/context-provider.component.d.ts +0 -14
- package/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.d.ts +0 -25
- package/runtime/execution/components/federated/federated.component.d.ts +0 -36
- package/runtime/execution/components/velo-attribute/velo-attribute.component.d.ts +0 -19
- package/runtime/execution/components/velo-multiselect/velo-multiselect.component.d.ts +0 -35
- package/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.d.ts +0 -22
- package/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.d.ts +0 -22
- package/runtime/execution/components/velo-port-radio/velo-port-radio.component.d.ts +0 -28
- package/runtime/execution/components/velo-type/velo-type.component.d.ts +0 -31
- package/runtime/execution/directives/section-script.directive.d.ts +0 -59
- package/runtime/execution/directives/sf-query.directive.d.ts +0 -15
- package/runtime/execution/directives/velo-attribute.directive.d.ts +0 -26
- package/runtime/execution/directives/velo-port.directive.d.ts +0 -74
- package/runtime/execution/directives/vl-approval.directive.d.ts +0 -10
- package/runtime/execution/directives/vl-document-attachments.directive.d.ts +0 -15
- package/runtime/execution/directives/vl-document-templates.directive.d.ts +0 -33
- package/runtime/execution/directives/vl-quote.directive.d.ts +0 -14
- package/runtime/execution/directives/vl-ramp.directive.d.ts +0 -15
- package/runtime/execution/runtime-execution.module.d.ts +0 -25
- package/runtime/execution/utils/federated.util.d.ts +0 -6
- package/runtime/index.d.ts +0 -4
- package/runtime/runtime.module.d.ts +0 -16
- package/runtime/services/cart.service.d.ts +0 -15
- package/runtime/services/collapsible-state.service.d.ts +0 -15
- package/runtime/services/configuration.service.d.ts +0 -20
- package/runtime/services/current-state.service.d.ts +0 -8
- package/runtime/services/form-scope.service.d.ts +0 -20
- package/runtime/services/index.d.ts +0 -3
- package/runtime/services/product-model-cache.service.d.ts +0 -14
- package/runtime/services/runtime-context.service.d.ts +0 -16
- package/runtime/services/runtime-form.service.d.ts +0 -24
- package/runtime/services/runtime.service.d.ts +0 -44
- package/runtime/services/section-helper.service.d.ts +0 -8
- package/runtime/services/section-scope.service.d.ts +0 -14
- package/runtime/services/section-store.service.d.ts +0 -11
- package/runtime/services/section.service.d.ts +0 -30
- package/runtime/types/bound-data.types.d.ts +0 -13
- package/runtime/types/index.d.ts +0 -2
- package/runtime/types/quote-states.types.d.ts +0 -6
- package/runtime/types/runtime.types.d.ts +0 -19
- package/runtime/types/script-registry.types.d.ts +0 -13
- package/runtime/utils/line-item.util.d.ts +0 -34
- package/runtime/utils/section.utils.d.ts +0 -2
- package/runtime/utils/sections-binder.helper.d.ts +0 -16
- package/src/components/header/cart-overlay/cart-preview.component.d.ts +0 -36
- package/src/components/header/cart-overlay/cart-preview.module.d.ts +0 -14
- package/src/components/header/header.component.d.ts +0 -70
- package/src/components/header/header.module.d.ts +0 -16
- package/src/components/header/header.types.d.ts +0 -20
- package/src/components/header/metrics/index.d.ts +0 -1
- package/src/components/header/metrics/metrics.component.d.ts +0 -67
- package/src/components/header/metrics/metrics.definitions.d.ts +0 -1
- package/src/components/header/metrics/metrics.module.d.ts +0 -18
- package/src/pages/empty-account/empty-account.component.d.ts +0 -5
- package/src/pages/empty-account/empty-account.module.d.ts +0 -10
- package/src/pages/legacy-product/legacy-product.component.d.ts +0 -37
- package/src/pages/legacy-product/legacy-product.module.d.ts +0 -9
- package/src/types/flow-customization.types.d.ts +0 -12
- /package/{cms → core}/services/integration.state.d.ts +0 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@veloceapps/sdk",
|
3
|
-
"version": "8.0.0-
|
3
|
+
"version": "8.0.0-201",
|
4
4
|
"private": false,
|
5
5
|
"peerDependencies": {
|
6
6
|
"@angular/animations": "~15.2.0",
|
@@ -12,9 +12,9 @@
|
|
12
12
|
"@veloceapps/core": "^8.0.0-0",
|
13
13
|
"@veloceapps/api": "^8.0.0-0",
|
14
14
|
"@veloceapps/components": "^8.0.0-0",
|
15
|
-
"ionicons": "^4.6.3",
|
16
15
|
"rxjs": "~7.8.0",
|
17
|
-
"zone.js": "~0.12.0"
|
16
|
+
"zone.js": "~0.12.0",
|
17
|
+
"sass": "1.69.5"
|
18
18
|
},
|
19
19
|
"dependencies": {
|
20
20
|
"@angular/cdk": "^15.2.0",
|
@@ -25,6 +25,7 @@
|
|
25
25
|
"moment": "^2.29.1",
|
26
26
|
"ngx-drag-drop": "^13.0.1",
|
27
27
|
"rfc6902": "^5.0.1",
|
28
|
+
"saas": "^1.0.0",
|
28
29
|
"tslib": "^2.3.0"
|
29
30
|
},
|
30
31
|
"sideEffects": false,
|
@@ -64,14 +65,6 @@
|
|
64
65
|
"es2015": "./fesm2015/veloceapps-sdk-core.mjs",
|
65
66
|
"node": "./fesm2015/veloceapps-sdk-core.mjs",
|
66
67
|
"default": "./fesm2020/veloceapps-sdk-core.mjs"
|
67
|
-
},
|
68
|
-
"./runtime": {
|
69
|
-
"types": "./runtime/index.d.ts",
|
70
|
-
"esm2020": "./esm2020/runtime/veloceapps-sdk-runtime.mjs",
|
71
|
-
"es2020": "./fesm2020/veloceapps-sdk-runtime.mjs",
|
72
|
-
"es2015": "./fesm2015/veloceapps-sdk-runtime.mjs",
|
73
|
-
"node": "./fesm2015/veloceapps-sdk-runtime.mjs",
|
74
|
-
"default": "./fesm2020/veloceapps-sdk-runtime.mjs"
|
75
68
|
}
|
76
69
|
}
|
77
|
-
}
|
70
|
+
}
|
@@ -2,26 +2,25 @@ import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { UITemplatesApiService } from '@veloceapps/api';
|
3
3
|
import { ToastService } from '@veloceapps/components';
|
4
4
|
import { UIDefinition } from '@veloceapps/core';
|
5
|
-
import { ContextService,
|
5
|
+
import { ContextService, FlowCustomization, FlowInfoService, FlowStateService } from '@veloceapps/sdk/core';
|
6
6
|
import { BehaviorSubject } from 'rxjs';
|
7
|
-
import { FlowCustomization } from '../../types';
|
8
7
|
import * as i0 from "@angular/core";
|
9
8
|
export declare class DocGenComponent implements OnDestroy {
|
10
|
-
private quoteDraftService;
|
11
|
-
private contextService;
|
12
9
|
private templatesApi;
|
10
|
+
private contextService;
|
11
|
+
private flowStateService;
|
12
|
+
private flowInfo;
|
13
13
|
private toastService;
|
14
14
|
private customizationService?;
|
15
15
|
uiDefinition$: BehaviorSubject<UIDefinition | null>;
|
16
16
|
private templateApiName;
|
17
17
|
private destroy$;
|
18
|
-
constructor(
|
18
|
+
constructor(templatesApi: UITemplatesApiService, contextService: ContextService, flowStateService: FlowStateService, flowInfo: FlowInfoService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
|
19
19
|
ngOnDestroy(): void;
|
20
20
|
private initialize;
|
21
|
-
private
|
22
|
-
private
|
23
|
-
private getDocGenComponentMeta$;
|
21
|
+
private getLocalMeta$;
|
22
|
+
private getOrgMeta$;
|
24
23
|
private generateUIDefinition$;
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocGenComponent, [null, null, null, null, { optional: true; }]>;
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocGenComponent, [null, null, null, null, null, { optional: true; }]>;
|
26
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<DocGenComponent, "vl-flow-doc-gen", never, {}, {}, never, never, false, never>;
|
27
26
|
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
2
|
+
import { UITemplatesApiService } from '@veloceapps/api';
|
3
|
+
import { ToastService } from '@veloceapps/components';
|
4
|
+
import { UIDefinition } from '@veloceapps/core';
|
5
|
+
import { FlowCustomization, FlowInfoService, FlowStateService } from '@veloceapps/sdk/core';
|
6
|
+
import { BehaviorSubject } from 'rxjs';
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
export declare class FlowHeaderComponent implements OnDestroy {
|
9
|
+
private templatesApi;
|
10
|
+
private flowStateService;
|
11
|
+
private flowInfo;
|
12
|
+
private toastService;
|
13
|
+
private customizationService?;
|
14
|
+
uiDefinition$: BehaviorSubject<UIDefinition | null>;
|
15
|
+
private templateApiName;
|
16
|
+
private destroy$;
|
17
|
+
constructor(templatesApi: UITemplatesApiService, flowStateService: FlowStateService, flowInfo: FlowInfoService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
|
18
|
+
ngOnDestroy(): void;
|
19
|
+
private initialize;
|
20
|
+
private getLocalMeta$;
|
21
|
+
private getOrgMeta$;
|
22
|
+
private generateUIDefinition$;
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlowHeaderComponent, [null, null, null, null, { optional: true; }]>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowHeaderComponent, "vl-flow-new-header", never, {}, {}, never, never, false, never>;
|
25
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./flow-header.component";
|
3
|
+
import * as i2 from "@angular/common";
|
4
|
+
import * as i3 from "@veloceapps/sdk/cms";
|
5
|
+
export declare class FlowNewHeaderModule {
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlowNewHeaderModule, never>;
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FlowNewHeaderModule, [typeof i1.FlowHeaderComponent], [typeof i2.CommonModule, typeof i3.PreviewModule], [typeof i1.FlowHeaderComponent]>;
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FlowNewHeaderModule>;
|
9
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './flow-header.module';
|
@@ -2,25 +2,23 @@ import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { UITemplatesApiService } from '@veloceapps/api';
|
3
3
|
import { ToastService } from '@veloceapps/components';
|
4
4
|
import { UIDefinition } from '@veloceapps/core';
|
5
|
-
import {
|
5
|
+
import { FlowCustomization, FlowInfoService, FlowStateService } from '@veloceapps/sdk/core';
|
6
6
|
import { BehaviorSubject } from 'rxjs';
|
7
|
-
import { FlowCustomization } from '../../types';
|
8
7
|
import * as i0 from "@angular/core";
|
9
8
|
export declare class GuidedSellingComponent implements OnDestroy {
|
10
|
-
private quoteDraftService;
|
11
|
-
private contextService;
|
12
9
|
private templatesApi;
|
10
|
+
private flowStateService;
|
11
|
+
private flowInfo;
|
13
12
|
private toastService;
|
14
13
|
private customizationService?;
|
15
14
|
uiDefinition$: BehaviorSubject<UIDefinition | null>;
|
16
15
|
private templateApiName;
|
17
16
|
private destroy$;
|
18
|
-
constructor(
|
17
|
+
constructor(templatesApi: UITemplatesApiService, flowStateService: FlowStateService, flowInfo: FlowInfoService, toastService: ToastService, customizationService?: FlowCustomization | undefined);
|
19
18
|
ngOnDestroy(): void;
|
20
19
|
private initialize;
|
21
|
-
private
|
22
|
-
private
|
23
|
-
private getGuidedSellingComponentMeta$;
|
20
|
+
private getLocalMeta$;
|
21
|
+
private getOrgMeta$;
|
24
22
|
private generateUIDefinition$;
|
25
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<GuidedSellingComponent, [null, null, null, null, { optional: true; }]>;
|
26
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<GuidedSellingComponent, "vl-flow-guided-selling", never, {}, {}, never, never, false, never>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const configurePrimengShadowDOM: () => void;
|
@@ -1,14 +1,12 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "@angular/router";
|
3
3
|
import * as i2 from "./pages/product/product.module";
|
4
|
-
import * as i3 from "./pages/
|
5
|
-
import * as i4 from "./pages/
|
6
|
-
import * as i5 from "./pages/
|
7
|
-
import * as i6 from "./pages/
|
8
|
-
import * as i7 from "./pages/remote/remote.module";
|
9
|
-
import * as i8 from "./pages/empty-account/empty-account.module";
|
4
|
+
import * as i3 from "./pages/shopping-cart/shopping-cart.module";
|
5
|
+
import * as i4 from "./pages/catalog/catalog.module";
|
6
|
+
import * as i5 from "./pages/assets/assets.module";
|
7
|
+
import * as i6 from "./pages/remote/remote.module";
|
10
8
|
export declare class FlowRoutingModule {
|
11
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowRoutingModule, never>;
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FlowRoutingModule, never, [typeof i1.RouterModule, typeof i2.ProductModule, typeof i3.
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FlowRoutingModule, never, [typeof i1.RouterModule, typeof i2.ProductModule, typeof i3.ShoppingCartModule, typeof i4.CatalogModule, typeof i5.AssetsModule, typeof i6.RemoteModule], [typeof i1.RouterModule]>;
|
13
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<FlowRoutingModule>;
|
14
12
|
}
|
package/src/flow.component.d.ts
CHANGED
@@ -1,23 +1,19 @@
|
|
1
|
-
import {
|
2
|
-
import { IntegrationState } from '@veloceapps/sdk/cms';
|
3
|
-
import { QuoteDraftService } from '@veloceapps/sdk/core';
|
1
|
+
import { FlowInfoService } from '@veloceapps/sdk/core';
|
4
2
|
import { Observable } from 'rxjs';
|
5
3
|
import { FlowService } from './services';
|
6
|
-
import { FlowDocGenService } from './services/doc-gen.service';
|
7
4
|
import { FlowRouterService } from './services/flow-router.service';
|
5
|
+
import { FlowGuidedSellingService } from './services/guided-selling.service';
|
8
6
|
import * as i0 from "@angular/core";
|
9
|
-
export declare class FlowComponent
|
7
|
+
export declare class FlowComponent {
|
10
8
|
private routerService;
|
11
|
-
private quoteDraftService;
|
12
9
|
private flowService;
|
13
|
-
private
|
14
|
-
private
|
10
|
+
private flowInfo;
|
11
|
+
private guidedSellingService;
|
15
12
|
isLoading$: Observable<boolean>;
|
16
13
|
showHeader$: Observable<boolean>;
|
17
14
|
isStandalone$: Observable<boolean>;
|
18
|
-
|
19
|
-
|
20
|
-
ngOnDestroy(): void;
|
15
|
+
guidedSellingVisible$: Observable<boolean>;
|
16
|
+
constructor(routerService: FlowRouterService, flowService: FlowService, flowInfo: FlowInfoService, guidedSellingService: FlowGuidedSellingService);
|
21
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowComponent, never>;
|
22
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<FlowComponent, "vl-flow", never, {}, {}, never, never, false, never>;
|
23
19
|
}
|
package/src/flow.module.d.ts
CHANGED
@@ -5,13 +5,13 @@ import * as i3 from "@veloceapps/components";
|
|
5
5
|
import * as i4 from "./flow-routing.module";
|
6
6
|
import * as i5 from "@veloceapps/api";
|
7
7
|
import * as i6 from "@veloceapps/sdk/cms";
|
8
|
-
import * as i7 from "./components/header/header.module";
|
8
|
+
import * as i7 from "./components/flow-header/flow-header.module";
|
9
9
|
import * as i8 from "./components/dialog/dialog.module";
|
10
10
|
import * as i9 from "@veloceapps/sdk/core";
|
11
11
|
import * as i10 from "./components/doc-gen/doc-gen.module";
|
12
12
|
import * as i11 from "./components/guided-selling/guided-selling.module";
|
13
13
|
export declare class FlowModule {
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowModule, never>;
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FlowModule, [typeof i1.FlowComponent], [typeof i2.CommonModule, typeof i3.LetDirectiveModule, typeof i4.FlowRoutingModule, typeof i5.ApiModule, typeof i6.LauncherModule, typeof i3.LoaderModule, typeof i7.
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FlowModule, [typeof i1.FlowComponent], [typeof i2.CommonModule, typeof i3.LetDirectiveModule, typeof i4.FlowRoutingModule, typeof i5.ApiModule, typeof i6.LauncherModule, typeof i3.LoaderModule, typeof i7.FlowNewHeaderModule, typeof i8.FlowDialogModule, typeof i9.SdkCoreModule, typeof i10.DocGenModule, typeof i11.GuidedSellingModule], never>;
|
16
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<FlowModule>;
|
17
17
|
}
|
@@ -4,17 +4,16 @@ import { Observable } from 'rxjs';
|
|
4
4
|
import { FlowRouterService } from '../services/flow-router.service';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class ContextGuard implements CanActivate, CanActivateChild {
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
protected router: Router;
|
8
|
+
protected routerService: FlowRouterService;
|
9
|
+
protected contextService: ContextService;
|
10
|
+
protected runtimeSettingsService: RuntimeSettingsService;
|
11
11
|
constructor(router: Router, routerService: FlowRouterService, contextService: ContextService, runtimeSettingsService: RuntimeSettingsService);
|
12
12
|
checkActivation(route: ActivatedRouteSnapshot): Observable<boolean>;
|
13
13
|
canActivate(route: ActivatedRouteSnapshot): Observable<boolean> | Promise<boolean> | boolean;
|
14
14
|
canActivateChild(childRoute: ActivatedRouteSnapshot): Observable<boolean> | Promise<boolean> | boolean;
|
15
15
|
private get rpcMessageId();
|
16
16
|
private getConfigurationContextMode;
|
17
|
-
private handleError;
|
18
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextGuard, never>;
|
19
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContextGuard>;
|
20
19
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Component } from '@angular/core';
|
2
|
-
import { ActivatedRouteSnapshot, CanDeactivate, Router, RouterStateSnapshot } from '@angular/router';
|
2
|
+
import { ActivatedRouteSnapshot, CanDeactivate, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
|
3
3
|
import { ConfigurationService, ContextService, QuoteDraftService } from '@veloceapps/sdk/core';
|
4
4
|
import { Observable } from 'rxjs';
|
5
5
|
import { FlowDialogService } from '../services/flow-dialog.service';
|
@@ -11,7 +11,7 @@ export declare class ProductUnloadGuard implements CanDeactivate<any> {
|
|
11
11
|
private configurationService;
|
12
12
|
private flowDialogService;
|
13
13
|
constructor(router: Router, contextService: ContextService, quoteDraftService: QuoteDraftService, configurationService: ConfigurationService, flowDialogService: FlowDialogService);
|
14
|
-
canDeactivate(_: Component, route: ActivatedRouteSnapshot, currentState: RouterStateSnapshot, nextState?: RouterStateSnapshot): Observable<boolean>;
|
14
|
+
canDeactivate(_: Component, route: ActivatedRouteSnapshot, currentState: RouterStateSnapshot, nextState?: RouterStateSnapshot): Observable<boolean | UrlTree>;
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductUnloadGuard, never>;
|
16
16
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProductUnloadGuard>;
|
17
17
|
}
|
@@ -6,7 +6,6 @@ export declare class RootGuard implements CanActivate, CanDeactivate<any> {
|
|
6
6
|
private router;
|
7
7
|
private routerService;
|
8
8
|
private initialized;
|
9
|
-
private navToRestore;
|
10
9
|
constructor(router: Router, routerService: FlowRouterService);
|
11
10
|
canActivate(route: ActivatedRouteSnapshot): Observable<boolean> | Promise<boolean> | boolean;
|
12
11
|
canDeactivate(): boolean;
|
@@ -2,9 +2,8 @@ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { UITemplatesApiService } from '@veloceapps/api';
|
3
3
|
import { ToastService } from '@veloceapps/components';
|
4
4
|
import { UIDefinition } from '@veloceapps/core';
|
5
|
-
import {
|
5
|
+
import { FlowCustomization, FlowInfoService } from '@veloceapps/sdk/core';
|
6
6
|
import { BehaviorSubject } from 'rxjs';
|
7
|
-
import { FlowCustomization } from '../../types';
|
8
7
|
import * as i0 from "@angular/core";
|
9
8
|
interface State {
|
10
9
|
loading: boolean;
|
@@ -12,20 +11,19 @@ interface State {
|
|
12
11
|
}
|
13
12
|
export declare class AssetsComponent implements OnInit, OnDestroy {
|
14
13
|
private templatesApi;
|
15
|
-
private contextService;
|
16
14
|
private cdr;
|
17
15
|
private toastService;
|
16
|
+
private flowInfo;
|
18
17
|
private customizationService?;
|
19
18
|
uiDefinition?: UIDefinition;
|
20
19
|
state$: BehaviorSubject<State>;
|
21
20
|
private templateApiName;
|
22
21
|
private destroyed$;
|
23
|
-
constructor(templatesApi: UITemplatesApiService,
|
22
|
+
constructor(templatesApi: UITemplatesApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
|
24
23
|
ngOnInit(): void;
|
25
24
|
ngOnDestroy(): void;
|
26
|
-
private
|
27
|
-
private
|
28
|
-
private getAssetsComponentMeta$;
|
25
|
+
private getLocalMeta$;
|
26
|
+
private getOrgMeta$;
|
29
27
|
private generateUIDefinition$;
|
30
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AssetsComponent, [null, null, null, null, { optional: true; }]>;
|
31
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<AssetsComponent, "vl-flow-assets", never, {}, {}, never, never, false, never>;
|
@@ -2,9 +2,8 @@ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { UITemplatesApiService } from '@veloceapps/api';
|
3
3
|
import { ToastService } from '@veloceapps/components';
|
4
4
|
import { UIDefinition } from '@veloceapps/core';
|
5
|
-
import {
|
5
|
+
import { FlowCustomization, FlowInfoService } from '@veloceapps/sdk/core';
|
6
6
|
import { BehaviorSubject } from 'rxjs';
|
7
|
-
import { FlowCustomization } from '../../types';
|
8
7
|
import * as i0 from "@angular/core";
|
9
8
|
interface State {
|
10
9
|
loading: boolean;
|
@@ -12,20 +11,19 @@ interface State {
|
|
12
11
|
}
|
13
12
|
export declare class CatalogComponent implements OnInit, OnDestroy {
|
14
13
|
private templatesApi;
|
15
|
-
private contextService;
|
16
14
|
private cdr;
|
17
15
|
private toastService;
|
16
|
+
private flowInfo;
|
18
17
|
private customizationService?;
|
19
18
|
uiDefinition?: UIDefinition;
|
20
19
|
state$: BehaviorSubject<State>;
|
21
20
|
private templateApiName;
|
22
21
|
private destroyed$;
|
23
|
-
constructor(templatesApi: UITemplatesApiService,
|
22
|
+
constructor(templatesApi: UITemplatesApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
|
24
23
|
ngOnInit(): void;
|
25
24
|
ngOnDestroy(): void;
|
26
|
-
private
|
27
|
-
private
|
28
|
-
private getCatalogComponentMeta$;
|
25
|
+
private getLocalMeta$;
|
26
|
+
private getOrgMeta$;
|
29
27
|
private generateUIDefinition$;
|
30
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogComponent, [null, null, null, null, { optional: true; }]>;
|
31
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogComponent, "vl-flow-catalog", never, {}, {}, never, never, false, never>;
|
@@ -1,13 +1,10 @@
|
|
1
1
|
import { FormControl, FormGroup } from '@angular/forms';
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
2
|
+
import { ActivatedRoute, Params, Router } from '@angular/router';
|
3
3
|
import { FlowsApiService } from '@veloceapps/api';
|
4
|
-
import {
|
4
|
+
import { Flow } from '@veloceapps/core';
|
5
5
|
import { ContextService, QuoteDraftService } from '@veloceapps/sdk/core';
|
6
6
|
import { Observable } from 'rxjs';
|
7
7
|
import * as i0 from "@angular/core";
|
8
|
-
interface FlowPropertiesExt extends FlowProperties {
|
9
|
-
queryParamsStr: string;
|
10
|
-
}
|
11
8
|
export declare class DebugComponent {
|
12
9
|
private flowsApiService;
|
13
10
|
private router;
|
@@ -17,11 +14,11 @@ export declare class DebugComponent {
|
|
17
14
|
form: FormGroup<{
|
18
15
|
id: FormControl<string | null>;
|
19
16
|
}>;
|
20
|
-
selectedFlow?:
|
21
|
-
flows$: Observable<
|
17
|
+
selectedFlow?: Flow;
|
18
|
+
flows$: Observable<Flow[]>;
|
22
19
|
constructor(flowsApiService: FlowsApiService, router: Router, activatedRoute: ActivatedRoute, context: ContextService, quoteDraftService: QuoteDraftService);
|
23
20
|
runFlow(): void;
|
21
|
+
getQueryParamsString(params: Params): string;
|
24
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<DebugComponent, never>;
|
25
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<DebugComponent, "vl-flow-debug", never, {}, {}, never, never, false, never>;
|
26
24
|
}
|
27
|
-
export {};
|
@@ -1,23 +1,24 @@
|
|
1
1
|
import { UIDefinition } from '@veloceapps/core';
|
2
|
-
import { CMSPreviewConfig
|
3
|
-
import { ConfigurationRuntimeService, ConfigurationService,
|
2
|
+
import { CMSPreviewConfig } from '@veloceapps/sdk/cms';
|
3
|
+
import { ConfigurationRuntimeService, ConfigurationService, ConfigurationStateService, ContextService, FlowCustomization, FlowInfoService, FlowStateService, IntegrationState, QuoteDraftService } from '@veloceapps/sdk/core';
|
4
4
|
import { BehaviorSubject } from 'rxjs';
|
5
|
-
import { FlowCustomization } from '../../types/flow-customization.types';
|
6
5
|
import * as i0 from "@angular/core";
|
7
6
|
export declare class ProductComponent {
|
8
7
|
private contextService;
|
9
8
|
private configurationRuntimeService;
|
10
9
|
private configurationService;
|
11
|
-
private
|
10
|
+
private configurationStateService;
|
12
11
|
private quoteDraftService;
|
12
|
+
private flowInfoService;
|
13
|
+
private flowStateService;
|
13
14
|
private integrationState;
|
14
15
|
private customizationService?;
|
15
16
|
config: CMSPreviewConfig;
|
16
17
|
uiDefinition$: BehaviorSubject<UIDefinition | undefined>;
|
17
|
-
constructor(contextService: ContextService, configurationRuntimeService: ConfigurationRuntimeService, configurationService: ConfigurationService,
|
18
|
+
constructor(contextService: ContextService, configurationRuntimeService: ConfigurationRuntimeService, configurationService: ConfigurationService, configurationStateService: ConfigurationStateService, quoteDraftService: QuoteDraftService, flowInfoService: FlowInfoService, flowStateService: FlowStateService, integrationState: IntegrationState, customizationService?: FlowCustomization | undefined);
|
18
19
|
private customizeUI$;
|
19
20
|
private init$;
|
20
|
-
private
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProductComponent, [null, null, null, null, null, null, { optional: true; }]>;
|
21
|
+
private getLineItem;
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductComponent, [null, null, null, null, null, null, null, null, { optional: true; }]>;
|
22
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<ProductComponent, "vl-flow-product", never, {}, {}, never, never, false, never>;
|
23
24
|
}
|
@@ -5,6 +5,8 @@ export declare class RecordNotFoundComponent {
|
|
5
5
|
private route;
|
6
6
|
message: string;
|
7
7
|
subMessage: string;
|
8
|
+
type: string;
|
9
|
+
details: string[];
|
8
10
|
constructor(router: Router, route: ActivatedRoute);
|
9
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordNotFoundComponent, never>;
|
10
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordNotFoundComponent, "vl-flow-record-not-found", never, {}, {}, never, never, false, never>;
|
@@ -1,8 +1,7 @@
|
|
1
1
|
import { Location } from '@angular/common';
|
2
2
|
import { OnDestroy } from '@angular/core';
|
3
3
|
import { UIDefinition } from '@veloceapps/core';
|
4
|
-
import { IntegrationState } from '@veloceapps/sdk/
|
5
|
-
import { ConfigurationRuntimeService, ConfigurationService, ConfigurationState, ContextService, QuoteDraftService } from '@veloceapps/sdk/core';
|
4
|
+
import { ConfigurationRuntimeService, ConfigurationService, ConfigurationStateService, ContextService, IntegrationState, QuoteDraftService } from '@veloceapps/sdk/core';
|
6
5
|
import { MessageService } from 'primeng/api';
|
7
6
|
import { BehaviorSubject } from 'rxjs';
|
8
7
|
import * as i0 from "@angular/core";
|
@@ -24,7 +23,7 @@ export declare class RemoteComponent implements OnDestroy {
|
|
24
23
|
private readonly DYNAMIC_OPTION_PRODUCTS_KEY;
|
25
24
|
private rpcMessage;
|
26
25
|
private destroyed$;
|
27
|
-
constructor(contextService: ContextService, quoteDraftService: QuoteDraftService, runtimeService: ConfigurationRuntimeService, configurationService: ConfigurationService, configurationState:
|
26
|
+
constructor(contextService: ContextService, quoteDraftService: QuoteDraftService, runtimeService: ConfigurationRuntimeService, configurationService: ConfigurationService, configurationState: ConfigurationStateService, messageService: MessageService, integrationState: IntegrationState, location: Location);
|
28
27
|
ngOnDestroy(): void;
|
29
28
|
private initConfiguration;
|
30
29
|
private throwIfNoUIDefinition;
|
@@ -2,9 +2,8 @@ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { UITemplatesApiService } from '@veloceapps/api';
|
3
3
|
import { ToastService } from '@veloceapps/components';
|
4
4
|
import { UIDefinition } from '@veloceapps/core';
|
5
|
-
import {
|
5
|
+
import { FlowCustomization, FlowInfoService } from '@veloceapps/sdk/core';
|
6
6
|
import { BehaviorSubject } from 'rxjs';
|
7
|
-
import { FlowCustomization } from '../../types';
|
8
7
|
import * as i0 from "@angular/core";
|
9
8
|
interface State {
|
10
9
|
loading: boolean;
|
@@ -12,20 +11,19 @@ interface State {
|
|
12
11
|
}
|
13
12
|
export declare class ShoppingCartComponent implements OnInit, OnDestroy {
|
14
13
|
private templatesApi;
|
15
|
-
private contextService;
|
16
14
|
private cdr;
|
17
15
|
private toastService;
|
16
|
+
private flowInfo;
|
18
17
|
private customizationService?;
|
19
18
|
uiDefinition?: UIDefinition;
|
20
19
|
state$: BehaviorSubject<State>;
|
21
20
|
private templateApiName;
|
22
21
|
private destroyed$;
|
23
|
-
constructor(templatesApi: UITemplatesApiService,
|
22
|
+
constructor(templatesApi: UITemplatesApiService, cdr: ChangeDetectorRef, toastService: ToastService, flowInfo: FlowInfoService, customizationService?: FlowCustomization | undefined);
|
24
23
|
ngOnInit(): void;
|
25
24
|
ngOnDestroy(): void;
|
26
|
-
private
|
27
|
-
private
|
28
|
-
private getShoppingCartComponentMeta$;
|
25
|
+
private getLocalMeta$;
|
26
|
+
private getOrgMeta$;
|
29
27
|
private generateUIDefinition$;
|
30
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShoppingCartComponent, [null, null, null, null, { optional: true; }]>;
|
31
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShoppingCartComponent, "vl-flow-shopping-cart", never, {}, {}, never, never, false, never>;
|
@@ -1,16 +1,15 @@
|
|
1
1
|
import { ActivatedRouteSnapshot, Resolve, Router } from '@angular/router';
|
2
|
-
import {
|
3
|
-
import {
|
2
|
+
import { ContextService, FlowInfoService } from '@veloceapps/sdk/core';
|
3
|
+
import { Observable } from 'rxjs';
|
4
4
|
import { FlowRouterService } from '../services/flow-router.service';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
export declare class FlowResolver implements Resolve<
|
6
|
+
export declare class FlowResolver implements Resolve<unknown> {
|
7
7
|
private router;
|
8
|
-
private flowsApiService;
|
9
8
|
private routerService;
|
10
9
|
private contextService;
|
11
|
-
|
12
|
-
|
13
|
-
resolve(route: ActivatedRouteSnapshot):
|
10
|
+
private flowInfo;
|
11
|
+
constructor(router: Router, routerService: FlowRouterService, contextService: ContextService, flowInfo: FlowInfoService);
|
12
|
+
resolve(route: ActivatedRouteSnapshot): Observable<boolean>;
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowResolver, never>;
|
15
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<FlowResolver>;
|
16
15
|
}
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { ActivatedRouteSnapshot, Resolve, Router } from '@angular/router';
|
2
|
-
import {
|
3
|
-
import { ContextService, FlowConfigurationService, QuoteDraftService } from '@veloceapps/sdk/core';
|
2
|
+
import { ContextService, FlowInfoService, FlowStateService, QuoteDraftService } from '@veloceapps/sdk/core';
|
4
3
|
import { Observable } from 'rxjs';
|
5
4
|
import { FlowRouterService } from '../services/flow-router.service';
|
6
5
|
import * as i0 from "@angular/core";
|
@@ -9,16 +8,12 @@ export declare class QuoteResolver implements Resolve<void | boolean> {
|
|
9
8
|
private quoteDraftService;
|
10
9
|
private routerService;
|
11
10
|
private contextService;
|
12
|
-
private
|
13
|
-
private
|
14
|
-
constructor(router: Router, quoteDraftService: QuoteDraftService, routerService: FlowRouterService, contextService: ContextService,
|
15
|
-
|
16
|
-
private
|
17
|
-
|
18
|
-
private changeNavigation;
|
19
|
-
private shouldNavigateToAssets;
|
20
|
-
private accountHasNotAssets;
|
21
|
-
private initializeModifiedAssetsMap;
|
11
|
+
private flowInfo;
|
12
|
+
private flowStateService;
|
13
|
+
constructor(router: Router, quoteDraftService: QuoteDraftService, routerService: FlowRouterService, contextService: ContextService, flowInfo: FlowInfoService, flowStateService: FlowStateService);
|
14
|
+
resolve(route: ActivatedRouteSnapshot): Observable<boolean>;
|
15
|
+
private checkDynamicNavigation$;
|
16
|
+
private getNavigateTo;
|
22
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuoteResolver, never>;
|
23
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<QuoteResolver>;
|
24
19
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ContextService } from '@veloceapps/sdk/core';
|
1
|
+
import { ContextService, RuntimeSettingsService } from '@veloceapps/sdk/core';
|
2
2
|
import { DialogService } from 'primeng/dynamicdialog';
|
3
3
|
import { Observable } from 'rxjs';
|
4
4
|
import { FlowDialogConfig } from '../components/dialog/dialog.types';
|
@@ -6,7 +6,8 @@ import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FlowDialogService {
|
7
7
|
private dialogService;
|
8
8
|
private contextService;
|
9
|
-
|
9
|
+
private runtimeSettings;
|
10
|
+
constructor(dialogService: DialogService, contextService: ContextService, runtimeSettings: RuntimeSettingsService);
|
10
11
|
show(config: FlowDialogConfig): Observable<boolean>;
|
11
12
|
showEmptyCartDialog(): Observable<boolean>;
|
12
13
|
showReadonlyModeDialog(): Observable<boolean>;
|
@@ -21,6 +22,8 @@ export declare class FlowDialogService {
|
|
21
22
|
showDocgenReadonlyDialog(): Observable<boolean>;
|
22
23
|
showDocgenOutsideShoppingCartDialog(): Observable<boolean>;
|
23
24
|
showDocgenUnsavedChangesDialog(): Observable<boolean>;
|
25
|
+
showTermsLimitReachedDialog(): Observable<boolean>;
|
26
|
+
showDialog(dialog: keyof Omit<FlowDialogService, 'show' | 'constructor'>): Observable<boolean>;
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowDialogService, never>;
|
25
28
|
static ɵprov: i0.ɵɵInjectableDeclaration<FlowDialogService>;
|
26
29
|
}
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { ActivatedRoute, ActivatedRouteSnapshot, Params, Router } from '@angular/router';
|
2
|
-
import { IntegrationState } from '@veloceapps/sdk/
|
3
|
-
import { ContextService } from '@veloceapps/sdk/core';
|
2
|
+
import { ContextService, FlowInfoService, FlowStateService, IntegrationState } from '@veloceapps/sdk/core';
|
4
3
|
import { Observable } from 'rxjs';
|
5
4
|
import * as i0 from "@angular/core";
|
6
5
|
export declare class FlowRouterService {
|
@@ -8,16 +7,19 @@ export declare class FlowRouterService {
|
|
8
7
|
private route;
|
9
8
|
private contextService;
|
10
9
|
private integrationState;
|
10
|
+
private flowInfoService;
|
11
|
+
private flowStateService;
|
11
12
|
private routeChange$;
|
12
13
|
private lastChildParams$;
|
13
14
|
private lastChildRoute$;
|
14
15
|
private urlHistory;
|
15
16
|
loading$: Observable<boolean>;
|
16
|
-
constructor(router: Router, route: ActivatedRoute, contextService: ContextService, integrationState: IntegrationState);
|
17
|
+
constructor(router: Router, route: ActivatedRoute, contextService: ContextService, integrationState: IntegrationState, flowInfoService: FlowInfoService, flowStateService: FlowStateService);
|
17
18
|
getFlowRootRoute(route: ActivatedRouteSnapshot): ActivatedRouteSnapshot | undefined;
|
18
19
|
getFlowRootPath(route: ActivatedRouteSnapshot): string;
|
19
20
|
get route$(): Observable<ActivatedRouteSnapshot>;
|
20
21
|
get params$(): Observable<Params>;
|
22
|
+
get params(): Params;
|
21
23
|
getLastChildRoute: (route: ActivatedRoute) => ActivatedRoute;
|
22
24
|
getNthChildRoute: (route: ActivatedRoute, index: number) => ActivatedRoute;
|
23
25
|
getLastChildRouteSnapshot: (route: ActivatedRouteSnapshot) => ActivatedRouteSnapshot;
|
@@ -30,10 +32,12 @@ export declare class FlowRouterService {
|
|
30
32
|
isCatalogRoute$(): Observable<boolean>;
|
31
33
|
isAssetsRoute$(): Observable<boolean>;
|
32
34
|
navigateBack(): void;
|
35
|
+
navigateTo(path: string, productId?: string, lineItemId?: string): void;
|
33
36
|
navigateToProductConfiguration(productId: string, lineItemId?: string): void;
|
34
37
|
navigateToShoppingCart(): void;
|
35
38
|
navigateToCatalog(): void;
|
36
39
|
navigateToAssets(): void;
|
40
|
+
showErrorPage$(message: string, details?: string[]): Observable<false>;
|
37
41
|
switchObject(id: string): void;
|
38
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowRouterService, never>;
|
39
43
|
static ɵprov: i0.ɵɵInjectableDeclaration<FlowRouterService>;
|