@veloceapps/sdk 7.0.0-9 → 7.0.1-0
Sign up to get free protection for your applications and to get access to all the features.
- package/cms/README.md +45 -0
- package/cms/cms.actions.d.ts +10 -0
- package/cms/components/element-children/element-children.component.d.ts +1 -1
- package/cms/components/element-drop-handle/element-drop-handle.component.d.ts +1 -1
- package/cms/components/element-renderer/element-renderer.component.d.ts +1 -1
- package/cms/components/plugin.component.d.ts +2 -2
- package/cms/components/preview/preview.component.d.ts +4 -3
- package/cms/directives/custom-template.directive.d.ts +1 -1
- package/cms/modules/federated/federated-host.directive.d.ts +8 -0
- package/cms/modules/federated/federated.component.d.ts +5 -7
- package/cms/modules/federated/federated.module.d.ts +4 -3
- package/cms/modules/federated/federated.types.d.ts +1 -5
- package/cms/modules/migrations/types/migrations.types.d.ts +1 -1
- package/cms/plugins/configuration.plugin.d.ts +1 -1
- package/cms/plugins/io.plugin.d.ts +1 -1
- package/cms/plugins/region.plugin.d.ts +1 -1
- package/cms/plugins/script.plugin.d.ts +1 -1
- package/cms/services/templates.service.d.ts +1 -1
- package/cms/types/common.types.d.ts +2 -2
- package/cms/types/elements.types.d.ts +1 -1
- package/cms/types/integration.types.d.ts +1 -1
- package/cms/types/layouts.types.d.ts +1 -1
- package/cms/utils/element.utils.d.ts +2 -2
- package/cms/vendor-map.d.ts +2 -1
- package/core/README.md +5 -0
- package/core/modules/flow-configuration/types/update.types.d.ts +2 -2
- package/core/services/metric-calculation/metric-calculation.types.d.ts +1 -1
- package/core/types/ui-definition.types.d.ts +2 -2
- package/esm2020/cms/cms.actions.mjs +56 -0
- package/esm2020/cms/components/element-children/element-children.component.mjs +35 -0
- package/esm2020/cms/components/element-children/element-children.module.mjs +20 -0
- package/esm2020/cms/components/element-drop-handle/element-drop-handle.component.mjs +28 -0
- package/esm2020/cms/components/element-drop-handle/element-drop-handle.module.mjs +19 -0
- package/esm2020/cms/components/element-renderer/element-renderer.component.mjs +160 -0
- package/{esm2015/cms/components/element-renderer/element-renderer.module.js → esm2020/cms/components/element-renderer/element-renderer.module.mjs} +5 -5
- package/esm2020/cms/components/element.component.mjs +45 -0
- package/esm2020/cms/components/plugin.component.mjs +17 -0
- package/esm2020/cms/components/preview/preview.component.mjs +103 -0
- package/esm2020/cms/components/preview/preview.module.mjs +24 -0
- package/esm2020/cms/directives/custom-template.directive.mjs +26 -0
- package/esm2020/cms/engine/models/entity.mjs +17 -0
- package/esm2020/cms/launcher.module.mjs +24 -0
- package/esm2020/cms/modules/federated/federated-host.directive.mjs +16 -0
- package/esm2020/cms/modules/federated/federated.component.mjs +64 -0
- package/esm2020/cms/modules/federated/federated.module.mjs +20 -0
- package/esm2020/cms/modules/federated/federated.types.mjs +2 -0
- package/esm2020/cms/modules/migrations/migrations.mjs +15 -0
- package/{esm2015/cms/modules/migrations/migrations.module.js → esm2020/cms/modules/migrations/migrations.module.mjs} +5 -5
- package/esm2020/cms/modules/migrations/services/migrations.service.mjs +43 -0
- package/{esm2015/cms/modules/runtime/runtime.module.js → esm2020/cms/modules/runtime/runtime.module.mjs} +6 -6
- package/esm2020/cms/modules/runtime/services/compilation.service.mjs +83 -0
- package/esm2020/cms/modules/runtime/services/runtime-editor.service.mjs +28 -0
- package/esm2020/cms/modules/runtime/services/runtime.service.mjs +74 -0
- package/esm2020/cms/plugins/configuration.plugin.mjs +105 -0
- package/esm2020/cms/plugins/io.plugin.mjs +36 -0
- package/esm2020/cms/plugins/region.plugin.mjs +58 -0
- package/esm2020/cms/plugins/script.plugin.mjs +65 -0
- package/{esm2015/cms/services/element-context.service.js → esm2020/cms/services/element-context.service.mjs} +4 -4
- package/esm2020/cms/services/integration.state.mjs +40 -0
- package/esm2020/cms/services/io-provider.service.mjs +50 -0
- package/esm2020/cms/services/resources.service.mjs +49 -0
- package/{esm2015/cms/services/templates.service.js → esm2020/cms/services/templates.service.mjs} +4 -4
- package/esm2020/cms/utils/element.utils.mjs +160 -0
- package/esm2020/cms/utils/elements-resolver.mjs +189 -0
- package/esm2020/cms/utils/path.utils.mjs +53 -0
- package/esm2020/cms/utils/ui-definition.utils.mjs +87 -0
- package/esm2020/cms/vendor-map.mjs +67 -0
- package/esm2020/core/core.module.mjs +18 -0
- package/{esm2015/core/modules/configuration/configuration.module.js → esm2020/core/modules/configuration/configuration.module.mjs} +6 -6
- package/esm2020/core/modules/configuration/helpers.mjs +18 -0
- package/esm2020/core/modules/configuration/services/configuration-runtime.service.mjs +106 -0
- package/esm2020/core/modules/configuration/services/configuration.service.mjs +183 -0
- package/esm2020/core/modules/configuration/services/runtime-context.service.mjs +50 -0
- package/esm2020/core/modules/flow-configuration/flow-configuration.module.mjs +18 -0
- package/esm2020/core/modules/flow-configuration/services/flow-configuration.service.mjs +150 -0
- package/esm2020/core/modules/flow-configuration/services/flow-update.service.mjs +129 -0
- package/esm2020/core/services/context.service.mjs +64 -0
- package/esm2020/core/services/metric-calculation/metric-calculation.service.mjs +85 -0
- package/esm2020/core/services/product-images.service.mjs +31 -0
- package/esm2020/core/services/quote-draft.service.mjs +232 -0
- package/esm2020/core/utils/line-item.utils.mjs +161 -0
- package/esm2020/core/utils/line-item.worker.mjs +19 -0
- package/esm2020/runtime/components/component-preview/component-preview.component.mjs +125 -0
- package/esm2020/runtime/components/section-renderer/section-renderer.component.mjs +67 -0
- package/esm2020/runtime/components/ui-runtime/runtime.component.mjs +440 -0
- package/esm2020/runtime/components/ui-runtime-preview/runtime-preview.component.mjs +108 -0
- package/esm2020/runtime/execution/components/children-placeholder/children-placeholder.component.mjs +60 -0
- package/esm2020/runtime/execution/components/context-provider/context-provider.component.mjs +39 -0
- package/esm2020/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.mjs +67 -0
- package/esm2020/runtime/execution/components/federated/federated.component.mjs +74 -0
- package/esm2020/runtime/execution/components/velo-attribute/velo-attribute.component.mjs +60 -0
- package/esm2020/runtime/execution/components/velo-multiselect/velo-multiselect.component.mjs +130 -0
- package/esm2020/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.mjs +72 -0
- package/esm2020/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.mjs +97 -0
- package/esm2020/runtime/execution/components/velo-port-radio/velo-port-radio.component.mjs +142 -0
- package/esm2020/runtime/execution/components/velo-type/velo-type.component.mjs +119 -0
- package/esm2020/runtime/execution/directives/section-script.directive.mjs +247 -0
- package/esm2020/runtime/execution/directives/sf-query.directive.mjs +35 -0
- package/esm2020/runtime/execution/directives/velo-attribute.directive.mjs +88 -0
- package/esm2020/runtime/execution/directives/velo-port.directive.mjs +376 -0
- package/esm2020/runtime/execution/directives/vl-approval.directive.mjs +23 -0
- package/esm2020/runtime/execution/directives/vl-document-attachments.directive.mjs +36 -0
- package/esm2020/runtime/execution/directives/vl-document-templates.directive.mjs +60 -0
- package/esm2020/runtime/execution/directives/vl-quote.directive.mjs +42 -0
- package/esm2020/runtime/execution/directives/vl-ramp.directive.mjs +55 -0
- package/esm2020/runtime/execution/runtime-execution.module.mjs +133 -0
- package/esm2020/runtime/execution/utils/federated.util.mjs +32 -0
- package/esm2020/runtime/runtime.module.mjs +74 -0
- package/esm2020/runtime/services/cart.service.mjs +29 -0
- package/{esm2015/runtime/services/collapsible-state.service.js → esm2020/runtime/services/collapsible-state.service.mjs} +4 -4
- package/esm2020/runtime/services/configuration.service.mjs +119 -0
- package/{esm2015/runtime/services/current-state.service.js → esm2020/runtime/services/current-state.service.mjs} +4 -4
- package/{esm2015/runtime/services/form-scope.service.js → esm2020/runtime/services/form-scope.service.mjs} +4 -4
- package/esm2020/runtime/services/product-model-cache.service.mjs +31 -0
- package/esm2020/runtime/services/runtime-context.service.mjs +57 -0
- package/esm2020/runtime/services/runtime-form.service.mjs +219 -0
- package/esm2020/runtime/services/runtime.service.mjs +115 -0
- package/{esm2015/runtime/services/section-helper.service.js → esm2020/runtime/services/section-helper.service.mjs} +4 -4
- package/{esm2015/runtime/services/section-scope.service.js → esm2020/runtime/services/section-scope.service.mjs} +4 -4
- package/{esm2015/runtime/services/section-store.service.js → esm2020/runtime/services/section-store.service.mjs} +4 -4
- package/esm2020/runtime/services/section.service.mjs +117 -0
- package/esm2020/runtime/types/script-registry.types.mjs +51 -0
- package/esm2020/runtime/utils/line-item.util.mjs +270 -0
- package/esm2020/src/components/dialog/dialog.component.mjs +36 -0
- package/esm2020/src/components/dialog/dialog.module.mjs +19 -0
- package/esm2020/src/components/doc-gen/doc-gen.component.mjs +107 -0
- package/esm2020/src/components/doc-gen/doc-gen.module.mjs +19 -0
- package/esm2020/src/components/header/cart-overlay/cart-preview.component.mjs +120 -0
- package/{esm2015/src/components/header/cart-overlay/cart-preview.module.js → esm2020/src/components/header/cart-overlay/cart-preview.module.mjs} +11 -13
- package/esm2020/src/components/header/header.component.mjs +333 -0
- package/{esm2015/src/components/header/header.module.js → esm2020/src/components/header/header.module.mjs} +12 -14
- package/esm2020/src/components/header/metrics/metrics.component.mjs +227 -0
- package/{esm2015/src/components/header/metrics/metrics.module.js → esm2020/src/components/header/metrics/metrics.module.mjs} +17 -19
- package/{esm2015/src/flow-routing.module.js → esm2020/src/flow-routing.module.mjs} +12 -14
- package/esm2020/src/flow.component.mjs +45 -0
- package/esm2020/src/flow.module.mjs +58 -0
- package/esm2020/src/guards/context.guard.mjs +93 -0
- package/esm2020/src/guards/product-unload.guard.mjs +46 -0
- package/esm2020/src/guards/root.guard.mjs +42 -0
- package/esm2020/src/pages/assets/assets.component.mjs +111 -0
- package/esm2020/src/pages/assets/assets.module.mjs +20 -0
- package/esm2020/src/pages/catalog/catalog.component.mjs +111 -0
- package/esm2020/src/pages/catalog/catalog.module.mjs +20 -0
- package/esm2020/src/pages/debug/debug.component.mjs +62 -0
- package/{esm2015/src/pages/debug/debug.module.js → esm2020/src/pages/debug/debug.module.mjs} +12 -14
- package/esm2020/src/pages/empty-account/empty-account.component.mjs +12 -0
- package/esm2020/src/pages/empty-account/empty-account.module.mjs +20 -0
- package/esm2020/src/pages/legacy-product/legacy-product.component.mjs +137 -0
- package/esm2020/src/pages/legacy-product/legacy-product.module.mjs +19 -0
- package/esm2020/src/pages/product/product.component.mjs +94 -0
- package/esm2020/src/pages/product/product.module.mjs +20 -0
- package/esm2020/src/pages/record-not-found/record-not-found.component.mjs +25 -0
- package/esm2020/src/pages/record-not-found/record-not-found.module.mjs +20 -0
- package/esm2020/src/pages/remote/remote.component.mjs +342 -0
- package/esm2020/src/pages/remote/remote.module.mjs +20 -0
- package/esm2020/src/pages/shopping-cart/shopping-cart.component.mjs +111 -0
- package/esm2020/src/pages/shopping-cart/shopping-cart.module.mjs +20 -0
- package/esm2020/src/resolvers/flow.resolver.mjs +70 -0
- package/esm2020/src/resolvers/quote.resolver.mjs +90 -0
- package/esm2020/src/services/doc-gen.service.mjs +33 -0
- package/esm2020/src/services/flow-dialog.service.mjs +126 -0
- package/esm2020/src/services/flow-router.service.mjs +144 -0
- package/esm2020/src/services/flow.service.mjs +86 -0
- package/esm2020/src/utils/flow.utils.mjs +21 -0
- package/fesm2015/{veloceapps-sdk-cms.js → veloceapps-sdk-cms.mjs} +178 -207
- package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -0
- package/fesm2015/{veloceapps-sdk-core.js → veloceapps-sdk-core.mjs} +76 -76
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -0
- package/fesm2015/{veloceapps-sdk-runtime.js → veloceapps-sdk-runtime.mjs} +242 -370
- package/fesm2015/veloceapps-sdk-runtime.mjs.map +1 -0
- package/fesm2015/veloceapps-sdk.mjs +2877 -0
- package/fesm2015/veloceapps-sdk.mjs.map +1 -0
- package/fesm2020/veloceapps-sdk-cms.mjs +2036 -0
- package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -0
- package/fesm2020/veloceapps-sdk-core.mjs +1289 -0
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -0
- package/fesm2020/veloceapps-sdk-runtime.mjs +3764 -0
- package/fesm2020/veloceapps-sdk-runtime.mjs.map +1 -0
- package/fesm2020/veloceapps-sdk.mjs +2857 -0
- package/fesm2020/veloceapps-sdk.mjs.map +1 -0
- package/package.json +59 -33
- package/runtime/README.md +5 -0
- package/runtime/components/component-preview/component-preview.component.d.ts +2 -2
- package/runtime/components/section-renderer/section-renderer.component.d.ts +1 -1
- package/runtime/components/ui-runtime/runtime.component.d.ts +1 -1
- package/runtime/components/ui-runtime-preview/runtime-preview.component.d.ts +1 -1
- package/runtime/execution/components/children-placeholder/children-placeholder.component.d.ts +2 -2
- package/runtime/execution/components/context-provider/context-provider.component.d.ts +1 -1
- package/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.d.ts +1 -1
- package/runtime/execution/components/federated/federated.component.d.ts +1 -1
- package/runtime/execution/components/velo-attribute/velo-attribute.component.d.ts +1 -1
- package/runtime/execution/components/velo-multiselect/velo-multiselect.component.d.ts +1 -1
- package/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.d.ts +1 -1
- package/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.d.ts +1 -1
- package/runtime/execution/components/velo-port-radio/velo-port-radio.component.d.ts +1 -1
- package/runtime/execution/components/velo-type/velo-type.component.d.ts +1 -1
- package/runtime/execution/directives/section-script.directive.d.ts +1 -1
- package/runtime/execution/directives/sf-query.directive.d.ts +1 -1
- package/runtime/execution/directives/velo-attribute.directive.d.ts +1 -1
- package/runtime/execution/directives/velo-port.directive.d.ts +6 -6
- package/runtime/execution/directives/vl-approval.directive.d.ts +1 -1
- package/runtime/execution/directives/vl-document-attachments.directive.d.ts +1 -1
- package/runtime/execution/directives/vl-document-templates.directive.d.ts +1 -1
- package/runtime/execution/directives/vl-quote.directive.d.ts +1 -1
- package/runtime/execution/directives/vl-ramp.directive.d.ts +1 -1
- package/runtime/execution/runtime-execution.module.d.ts +3 -5
- package/runtime/execution/utils/federated.util.d.ts +1 -1
- package/runtime/runtime.module.d.ts +3 -5
- package/runtime/services/section.service.d.ts +1 -1
- package/src/components/dialog/dialog.component.d.ts +1 -1
- package/src/components/doc-gen/doc-gen.component.d.ts +1 -1
- package/src/components/header/cart-overlay/cart-preview.component.d.ts +2 -2
- package/src/components/header/header.component.d.ts +1 -1
- package/src/components/header/metrics/metrics.component.d.ts +1 -1
- package/src/flow.component.d.ts +1 -1
- package/src/pages/assets/assets.component.d.ts +1 -1
- package/src/pages/catalog/catalog.component.d.ts +1 -1
- package/src/pages/debug/debug.component.d.ts +5 -3
- package/src/pages/empty-account/empty-account.component.d.ts +1 -1
- package/src/pages/legacy-product/legacy-product.component.d.ts +1 -1
- package/src/pages/legacy-product/legacy-product.module.d.ts +1 -2
- package/src/pages/product/product.component.d.ts +1 -1
- package/src/pages/record-not-found/record-not-found.component.d.ts +1 -1
- package/src/pages/remote/remote.component.d.ts +1 -1
- package/src/pages/shopping-cart/shopping-cart.component.d.ts +1 -1
- package/bundles/veloceapps-sdk-cms.umd.js +0 -2531
- package/bundles/veloceapps-sdk-cms.umd.js.map +0 -1
- package/bundles/veloceapps-sdk-core.umd.js +0 -1916
- package/bundles/veloceapps-sdk-core.umd.js.map +0 -1
- package/bundles/veloceapps-sdk-runtime.umd.js +0 -4415
- package/bundles/veloceapps-sdk-runtime.umd.js.map +0 -1
- package/bundles/veloceapps-sdk.umd.js +0 -3583
- package/bundles/veloceapps-sdk.umd.js.map +0 -1
- package/cms/modules/federated/federated.utils.d.ts +0 -1
- package/cms/package.json +0 -10
- package/cms/veloceapps-sdk-cms.d.ts +0 -5
- package/core/package.json +0 -10
- package/core/veloceapps-sdk-core.d.ts +0 -5
- package/esm2015/cms/cms.actions.js +0 -42
- package/esm2015/cms/components/element-children/element-children.component.js +0 -39
- package/esm2015/cms/components/element-children/element-children.module.js +0 -20
- package/esm2015/cms/components/element-drop-handle/element-drop-handle.component.js +0 -32
- package/esm2015/cms/components/element-drop-handle/element-drop-handle.module.js +0 -19
- package/esm2015/cms/components/element-renderer/element-renderer.component.js +0 -169
- package/esm2015/cms/components/element.component.js +0 -44
- package/esm2015/cms/components/plugin.component.js +0 -16
- package/esm2015/cms/components/preview/preview.component.js +0 -93
- package/esm2015/cms/components/preview/preview.module.js +0 -24
- package/esm2015/cms/directives/custom-template.directive.js +0 -25
- package/esm2015/cms/engine/models/entity.js +0 -18
- package/esm2015/cms/launcher.module.js +0 -24
- package/esm2015/cms/modules/federated/federated.component.js +0 -82
- package/esm2015/cms/modules/federated/federated.module.js +0 -19
- package/esm2015/cms/modules/federated/federated.types.js +0 -2
- package/esm2015/cms/modules/federated/federated.utils.js +0 -37
- package/esm2015/cms/modules/migrations/migrations.js +0 -11
- package/esm2015/cms/modules/migrations/services/migrations.service.js +0 -43
- package/esm2015/cms/modules/runtime/services/compilation.service.js +0 -84
- package/esm2015/cms/modules/runtime/services/runtime-editor.service.js +0 -27
- package/esm2015/cms/modules/runtime/services/runtime.service.js +0 -74
- package/esm2015/cms/plugins/configuration.plugin.js +0 -106
- package/esm2015/cms/plugins/io.plugin.js +0 -37
- package/esm2015/cms/plugins/region.plugin.js +0 -58
- package/esm2015/cms/plugins/script.plugin.js +0 -66
- package/esm2015/cms/services/integration.state.js +0 -40
- package/esm2015/cms/services/io-provider.service.js +0 -51
- package/esm2015/cms/services/resources.service.js +0 -50
- package/esm2015/cms/utils/element.utils.js +0 -157
- package/esm2015/cms/utils/elements-resolver.js +0 -163
- package/esm2015/cms/utils/path.utils.js +0 -56
- package/esm2015/cms/utils/ui-definition.utils.js +0 -82
- package/esm2015/cms/vendor-map.js +0 -51
- package/esm2015/core/core.module.js +0 -18
- package/esm2015/core/modules/configuration/helpers.js +0 -10
- package/esm2015/core/modules/configuration/services/configuration-runtime.service.js +0 -87
- package/esm2015/core/modules/configuration/services/configuration.service.js +0 -177
- package/esm2015/core/modules/configuration/services/runtime-context.service.js +0 -51
- package/esm2015/core/modules/flow-configuration/flow-configuration.module.js +0 -18
- package/esm2015/core/modules/flow-configuration/services/flow-configuration.service.js +0 -150
- package/esm2015/core/modules/flow-configuration/services/flow-update.service.js +0 -129
- package/esm2015/core/services/context.service.js +0 -53
- package/esm2015/core/services/metric-calculation/metric-calculation.service.js +0 -83
- package/esm2015/core/services/product-images.service.js +0 -30
- package/esm2015/core/services/quote-draft.service.js +0 -217
- package/esm2015/core/utils/line-item.utils.js +0 -143
- package/esm2015/core/utils/line-item.worker.js +0 -19
- package/esm2015/runtime/components/component-preview/component-preview.component.js +0 -125
- package/esm2015/runtime/components/section-renderer/section-renderer.component.js +0 -71
- package/esm2015/runtime/components/ui-runtime/runtime.component.js +0 -429
- package/esm2015/runtime/components/ui-runtime-preview/runtime-preview.component.js +0 -109
- package/esm2015/runtime/execution/components/children-placeholder/children-placeholder.component.js +0 -68
- package/esm2015/runtime/execution/components/context-provider/context-provider.component.js +0 -36
- package/esm2015/runtime/execution/components/execution-section-renderer/execution-section-renderer.component.js +0 -72
- package/esm2015/runtime/execution/components/federated/federated.component.js +0 -81
- package/esm2015/runtime/execution/components/velo-attribute/velo-attribute.component.js +0 -65
- package/esm2015/runtime/execution/components/velo-multiselect/velo-multiselect.component.js +0 -136
- package/esm2015/runtime/execution/components/velo-port-checkbox/velo-port-checkbox.component.js +0 -80
- package/esm2015/runtime/execution/components/velo-port-dropdown/velo-port-dropdown.component.js +0 -101
- package/esm2015/runtime/execution/components/velo-port-radio/velo-port-radio.component.js +0 -150
- package/esm2015/runtime/execution/components/velo-type/velo-type.component.js +0 -121
- package/esm2015/runtime/execution/directives/section-script.directive.js +0 -242
- package/esm2015/runtime/execution/directives/sf-query.directive.js +0 -34
- package/esm2015/runtime/execution/directives/velo-attribute.directive.js +0 -86
- package/esm2015/runtime/execution/directives/velo-port.directive.js +0 -373
- package/esm2015/runtime/execution/directives/vl-approval.directive.js +0 -22
- package/esm2015/runtime/execution/directives/vl-document-attachments.directive.js +0 -35
- package/esm2015/runtime/execution/directives/vl-document-templates.directive.js +0 -59
- package/esm2015/runtime/execution/directives/vl-quote.directive.js +0 -41
- package/esm2015/runtime/execution/directives/vl-ramp.directive.js +0 -51
- package/esm2015/runtime/execution/runtime-execution.module.js +0 -163
- package/esm2015/runtime/execution/utils/federated.util.js +0 -37
- package/esm2015/runtime/runtime.module.js +0 -104
- package/esm2015/runtime/services/cart.service.js +0 -27
- package/esm2015/runtime/services/configuration.service.js +0 -101
- package/esm2015/runtime/services/product-model-cache.service.js +0 -30
- package/esm2015/runtime/services/runtime-context.service.js +0 -56
- package/esm2015/runtime/services/runtime-form.service.js +0 -224
- package/esm2015/runtime/services/runtime.service.js +0 -108
- package/esm2015/runtime/services/section.service.js +0 -124
- package/esm2015/runtime/types/script-registry.types.js +0 -51
- package/esm2015/runtime/utils/line-item.util.js +0 -273
- package/esm2015/src/components/dialog/dialog.component.js +0 -40
- package/esm2015/src/components/dialog/dialog.module.js +0 -19
- package/esm2015/src/components/doc-gen/doc-gen.component.js +0 -109
- package/esm2015/src/components/doc-gen/doc-gen.module.js +0 -19
- package/esm2015/src/components/header/cart-overlay/cart-preview.component.js +0 -122
- package/esm2015/src/components/header/header.component.js +0 -336
- package/esm2015/src/components/header/metrics/metrics.component.js +0 -232
- package/esm2015/src/flow.component.js +0 -45
- package/esm2015/src/flow.module.js +0 -60
- package/esm2015/src/guards/context.guard.js +0 -84
- package/esm2015/src/guards/product-unload.guard.js +0 -43
- package/esm2015/src/guards/root.guard.js +0 -41
- package/esm2015/src/pages/assets/assets.component.js +0 -117
- package/esm2015/src/pages/assets/assets.module.js +0 -20
- package/esm2015/src/pages/catalog/catalog.component.js +0 -117
- package/esm2015/src/pages/catalog/catalog.module.js +0 -20
- package/esm2015/src/pages/debug/debug.component.js +0 -61
- package/esm2015/src/pages/empty-account/empty-account.component.js +0 -17
- package/esm2015/src/pages/empty-account/empty-account.module.js +0 -20
- package/esm2015/src/pages/legacy-product/legacy-product.component.js +0 -132
- package/esm2015/src/pages/legacy-product/legacy-product.module.js +0 -21
- package/esm2015/src/pages/product/product.component.js +0 -101
- package/esm2015/src/pages/product/product.module.js +0 -20
- package/esm2015/src/pages/record-not-found/record-not-found.component.js +0 -29
- package/esm2015/src/pages/record-not-found/record-not-found.module.js +0 -20
- package/esm2015/src/pages/remote/remote.component.js +0 -350
- package/esm2015/src/pages/remote/remote.module.js +0 -20
- package/esm2015/src/pages/shopping-cart/shopping-cart.component.js +0 -117
- package/esm2015/src/pages/shopping-cart/shopping-cart.module.js +0 -20
- package/esm2015/src/resolvers/flow.resolver.js +0 -62
- package/esm2015/src/resolvers/quote.resolver.js +0 -88
- package/esm2015/src/services/doc-gen.service.js +0 -33
- package/esm2015/src/services/flow-dialog.service.js +0 -124
- package/esm2015/src/services/flow-router.service.js +0 -144
- package/esm2015/src/services/flow.service.js +0 -84
- package/esm2015/src/utils/flow.utils.js +0 -22
- package/fesm2015/veloceapps-sdk-cms.js.map +0 -1
- package/fesm2015/veloceapps-sdk-core.js.map +0 -1
- package/fesm2015/veloceapps-sdk-runtime.js.map +0 -1
- package/fesm2015/veloceapps-sdk.js +0 -2953
- package/fesm2015/veloceapps-sdk.js.map +0 -1
- package/runtime/package.json +0 -10
- package/runtime/veloceapps-sdk-runtime.d.ts +0 -5
- package/veloceapps-sdk.d.ts +0 -5
- /package/{esm2015/cms/cms.default.js → esm2020/cms/cms.default.mjs} +0 -0
- /package/{esm2015/cms/cms.elements.js → esm2020/cms/cms.elements.mjs} +0 -0
- /package/{esm2015/cms/cms.layouts.js → esm2020/cms/cms.layouts.mjs} +0 -0
- /package/{esm2015/cms/components/index.js → esm2020/cms/components/index.mjs} +0 -0
- /package/{esm2015/cms/components/preview/index.js → esm2020/cms/components/preview/index.mjs} +0 -0
- /package/{esm2015/cms/components/preview/preview.types.js → esm2020/cms/components/preview/preview.types.mjs} +0 -0
- /package/{esm2015/cms/decorators/element.decorator.js → esm2020/cms/decorators/element.decorator.mjs} +0 -0
- /package/{esm2015/cms/decorators/index.js → esm2020/cms/decorators/index.mjs} +0 -0
- /package/{esm2015/cms/engine/models/plugin.js → esm2020/cms/engine/models/plugin.mjs} +0 -0
- /package/{esm2015/cms/index.js → esm2020/cms/index.mjs} +0 -0
- /package/{esm2015/cms/injection-tokens.js → esm2020/cms/injection-tokens.mjs} +0 -0
- /package/{esm2015/cms/modules/federated/default-options.js → esm2020/cms/modules/federated/default-options.mjs} +0 -0
- /package/{esm2015/cms/modules/federated/export.js → esm2020/cms/modules/federated/export.mjs} +0 -0
- /package/{esm2015/cms/modules/migrations/index.js → esm2020/cms/modules/migrations/index.mjs} +0 -0
- /package/{esm2015/cms/modules/migrations/types/migrations.types.js → esm2020/cms/modules/migrations/types/migrations.types.mjs} +0 -0
- /package/{esm2015/cms/modules/runtime/index.js → esm2020/cms/modules/runtime/index.mjs} +0 -0
- /package/{esm2015/cms/modules/runtime/tokens.js → esm2020/cms/modules/runtime/tokens.mjs} +0 -0
- /package/{esm2015/cms/modules/runtime/types/compilation.types.js → esm2020/cms/modules/runtime/types/compilation.types.mjs} +0 -0
- /package/{esm2015/cms/modules/runtime/types/runtime.actions.js → esm2020/cms/modules/runtime/types/runtime.actions.mjs} +0 -0
- /package/{esm2015/cms/services/index.js → esm2020/cms/services/index.mjs} +0 -0
- /package/{esm2015/cms/types/common.types.js → esm2020/cms/types/common.types.mjs} +0 -0
- /package/{esm2015/cms/types/configuration.types.js → esm2020/cms/types/configuration.types.mjs} +0 -0
- /package/{esm2015/cms/types/elements.types.js → esm2020/cms/types/elements.types.mjs} +0 -0
- /package/{esm2015/cms/types/index.js → esm2020/cms/types/index.mjs} +0 -0
- /package/{esm2015/cms/types/integration.types.js → esm2020/cms/types/integration.types.mjs} +0 -0
- /package/{esm2015/cms/types/layouts.types.js → esm2020/cms/types/layouts.types.mjs} +0 -0
- /package/{esm2015/cms/types/path.types.js → esm2020/cms/types/path.types.mjs} +0 -0
- /package/{esm2015/cms/utils/index.js → esm2020/cms/utils/index.mjs} +0 -0
- /package/{esm2015/cms/veloceapps-sdk-cms.js → esm2020/cms/veloceapps-sdk-cms.mjs} +0 -0
- /package/{esm2015/core/index.js → esm2020/core/index.mjs} +0 -0
- /package/{esm2015/core/modules/configuration/index.js → esm2020/core/modules/configuration/index.mjs} +0 -0
- /package/{esm2015/core/modules/configuration/types/configuration-runtime.types.js → esm2020/core/modules/configuration/types/configuration-runtime.types.mjs} +0 -0
- /package/{esm2015/core/modules/flow-configuration/index.js → esm2020/core/modules/flow-configuration/index.mjs} +0 -0
- /package/{esm2015/core/modules/flow-configuration/types/update.types.js → esm2020/core/modules/flow-configuration/types/update.types.mjs} +0 -0
- /package/{esm2015/core/modules/index.js → esm2020/core/modules/index.mjs} +0 -0
- /package/{esm2015/core/services/index.js → esm2020/core/services/index.mjs} +0 -0
- /package/{esm2015/core/services/metric-calculation/metric-calculation.types.js → esm2020/core/services/metric-calculation/metric-calculation.types.mjs} +0 -0
- /package/{esm2015/core/services/metric-calculation/metric-calculation.utils.js → esm2020/core/services/metric-calculation/metric-calculation.utils.mjs} +0 -0
- /package/{esm2015/core/types/index.js → esm2020/core/types/index.mjs} +0 -0
- /package/{esm2015/core/types/runtime.types.js → esm2020/core/types/runtime.types.mjs} +0 -0
- /package/{esm2015/core/types/ui-definition.types.js → esm2020/core/types/ui-definition.types.mjs} +0 -0
- /package/{esm2015/core/utils/index.js → esm2020/core/utils/index.mjs} +0 -0
- /package/{esm2015/core/utils/ui-definition.utils.js → esm2020/core/utils/ui-definition.utils.mjs} +0 -0
- /package/{esm2015/core/veloceapps-sdk-core.js → esm2020/core/veloceapps-sdk-core.mjs} +0 -0
- /package/{esm2015/index.js → esm2020/index.mjs} +0 -0
- /package/{esm2015/runtime/components/index.js → esm2020/runtime/components/index.mjs} +0 -0
- /package/{esm2015/runtime/index.js → esm2020/runtime/index.mjs} +0 -0
- /package/{esm2015/runtime/services/index.js → esm2020/runtime/services/index.mjs} +0 -0
- /package/{esm2015/runtime/types/bound-data.types.js → esm2020/runtime/types/bound-data.types.mjs} +0 -0
- /package/{esm2015/runtime/types/index.js → esm2020/runtime/types/index.mjs} +0 -0
- /package/{esm2015/runtime/types/quote-states.types.js → esm2020/runtime/types/quote-states.types.mjs} +0 -0
- /package/{esm2015/runtime/types/runtime.types.js → esm2020/runtime/types/runtime.types.mjs} +0 -0
- /package/{esm2015/runtime/utils/section.utils.js → esm2020/runtime/utils/section.utils.mjs} +0 -0
- /package/{esm2015/runtime/utils/sections-binder.helper.js → esm2020/runtime/utils/sections-binder.helper.mjs} +0 -0
- /package/{esm2015/runtime/veloceapps-sdk-runtime.js → esm2020/runtime/veloceapps-sdk-runtime.mjs} +0 -0
- /package/{esm2015/src/components/dialog/dialog.types.js → esm2020/src/components/dialog/dialog.types.mjs} +0 -0
- /package/{esm2015/src/components/header/header.types.js → esm2020/src/components/header/header.types.mjs} +0 -0
- /package/{esm2015/src/components/header/metrics/index.js → esm2020/src/components/header/metrics/index.mjs} +0 -0
- /package/{esm2015/src/components/header/metrics/metrics.definitions.js → esm2020/src/components/header/metrics/metrics.definitions.mjs} +0 -0
- /package/{esm2015/src/constants.js → esm2020/src/constants.mjs} +0 -0
- /package/{esm2015/src/guards/index.js → esm2020/src/guards/index.mjs} +0 -0
- /package/{esm2015/src/index.js → esm2020/src/index.mjs} +0 -0
- /package/{esm2015/src/pages/remote/remote.types.js → esm2020/src/pages/remote/remote.types.mjs} +0 -0
- /package/{esm2015/src/services/index.js → esm2020/src/services/index.mjs} +0 -0
- /package/{esm2015/src/types/context-route.types.js → esm2020/src/types/context-route.types.mjs} +0 -0
- /package/{esm2015/src/types/flow-customization.types.js → esm2020/src/types/flow-customization.types.mjs} +0 -0
- /package/{esm2015/src/types/index.js → esm2020/src/types/index.mjs} +0 -0
- /package/{esm2015/src/types/metrics.types.js → esm2020/src/types/metrics.types.mjs} +0 -0
- /package/{esm2015/src/types/route.types.js → esm2020/src/types/route.types.mjs} +0 -0
- /package/{esm2015/src/utils/index.js → esm2020/src/utils/index.mjs} +0 -0
- /package/{esm2015/veloceapps-sdk.js → esm2020/veloceapps-sdk.mjs} +0 -0
package/package.json
CHANGED
@@ -1,52 +1,78 @@
|
|
1
1
|
{
|
2
2
|
"name": "@veloceapps/sdk",
|
3
|
-
"version": "7.0.0
|
3
|
+
"version": "7.0.1-0",
|
4
4
|
"private": false,
|
5
5
|
"peerDependencies": {
|
6
|
-
"@angular/animations": "
|
7
|
-
"@angular/common": "
|
8
|
-
"@angular/core": "
|
9
|
-
"@angular/forms": "
|
10
|
-
"@angular/platform-browser-dynamic": "
|
11
|
-
"@angular/platform-browser": "
|
12
|
-
"@veloceapps/core": "^7.0.
|
13
|
-
"@veloceapps/api": "^7.0.
|
14
|
-
"@veloceapps/components": "^7.0.
|
6
|
+
"@angular/animations": "~15.2.0",
|
7
|
+
"@angular/common": "~15.2.0",
|
8
|
+
"@angular/core": "~15.2.0",
|
9
|
+
"@angular/forms": "~15.2.0",
|
10
|
+
"@angular/platform-browser-dynamic": "~15.2.0",
|
11
|
+
"@angular/platform-browser": "~15.2.0",
|
12
|
+
"@veloceapps/core": "^7.0.1-0",
|
13
|
+
"@veloceapps/api": "^7.0.1-0",
|
14
|
+
"@veloceapps/components": "^7.0.1-0",
|
15
15
|
"ionicons": "^4.6.3",
|
16
|
-
"rxjs": "
|
17
|
-
"zone.js": "~0.
|
18
|
-
"@angular/
|
19
|
-
"
|
20
|
-
"lodash": "^4.17.21",
|
21
|
-
"brotli-wasm": "^1.2.0",
|
22
|
-
"pako": "^1.0.11",
|
23
|
-
"angular-expressions": "^1.1.4",
|
24
|
-
"docxtemplater": "^3.28.1",
|
25
|
-
"pizzip": "^3.1.1",
|
26
|
-
"@aws-sdk/client-xray": "^3.40.0",
|
27
|
-
"monaco-editor": "^0.30.1",
|
28
|
-
"jshashes": "^1.0.8",
|
29
|
-
"ngx-bootstrap": "^5.6.2"
|
16
|
+
"rxjs": "~7.8.0",
|
17
|
+
"zone.js": "~0.12.0",
|
18
|
+
"@angular-architects/module-federation": "15.0.3",
|
19
|
+
"@angular-architects/module-federation-runtime": "15.0.3"
|
30
20
|
},
|
31
21
|
"dependencies": {
|
32
22
|
"@angular/cdk": "^12.2.12",
|
33
23
|
"@angular/cdk-experimental": "^13.1.0",
|
34
|
-
"@angular/compiler": "
|
24
|
+
"@angular/compiler": "~15.2.0",
|
35
25
|
"@babel/standalone": "^7.17.1",
|
36
|
-
"@veloceapps/elements": "^1.3.0-0",
|
37
26
|
"moment": "^2.29.1",
|
38
27
|
"ngx-drag-drop": "^13.0.1",
|
39
28
|
"rfc6902": "^5.0.1",
|
40
|
-
"tslib": "^2.
|
29
|
+
"tslib": "^2.3.0"
|
41
30
|
},
|
42
31
|
"sideEffects": false,
|
43
32
|
"publishConfig": {
|
44
33
|
"access": "public"
|
45
34
|
},
|
46
|
-
"
|
47
|
-
"
|
48
|
-
"
|
49
|
-
"
|
50
|
-
"fesm2015": "fesm2015/veloceapps-sdk.
|
51
|
-
"typings": "
|
35
|
+
"module": "fesm2015/veloceapps-sdk.mjs",
|
36
|
+
"es2020": "fesm2020/veloceapps-sdk.mjs",
|
37
|
+
"esm2020": "esm2020/veloceapps-sdk.mjs",
|
38
|
+
"fesm2020": "fesm2020/veloceapps-sdk.mjs",
|
39
|
+
"fesm2015": "fesm2015/veloceapps-sdk.mjs",
|
40
|
+
"typings": "index.d.ts",
|
41
|
+
"exports": {
|
42
|
+
"./package.json": {
|
43
|
+
"default": "./package.json"
|
44
|
+
},
|
45
|
+
".": {
|
46
|
+
"types": "./index.d.ts",
|
47
|
+
"esm2020": "./esm2020/veloceapps-sdk.mjs",
|
48
|
+
"es2020": "./fesm2020/veloceapps-sdk.mjs",
|
49
|
+
"es2015": "./fesm2015/veloceapps-sdk.mjs",
|
50
|
+
"node": "./fesm2015/veloceapps-sdk.mjs",
|
51
|
+
"default": "./fesm2020/veloceapps-sdk.mjs"
|
52
|
+
},
|
53
|
+
"./cms": {
|
54
|
+
"types": "./cms/index.d.ts",
|
55
|
+
"esm2020": "./esm2020/cms/veloceapps-sdk-cms.mjs",
|
56
|
+
"es2020": "./fesm2020/veloceapps-sdk-cms.mjs",
|
57
|
+
"es2015": "./fesm2015/veloceapps-sdk-cms.mjs",
|
58
|
+
"node": "./fesm2015/veloceapps-sdk-cms.mjs",
|
59
|
+
"default": "./fesm2020/veloceapps-sdk-cms.mjs"
|
60
|
+
},
|
61
|
+
"./core": {
|
62
|
+
"types": "./core/index.d.ts",
|
63
|
+
"esm2020": "./esm2020/core/veloceapps-sdk-core.mjs",
|
64
|
+
"es2020": "./fesm2020/veloceapps-sdk-core.mjs",
|
65
|
+
"es2015": "./fesm2015/veloceapps-sdk-core.mjs",
|
66
|
+
"node": "./fesm2015/veloceapps-sdk-core.mjs",
|
67
|
+
"default": "./fesm2020/veloceapps-sdk-core.mjs"
|
68
|
+
},
|
69
|
+
"./runtime": {
|
70
|
+
"types": "./runtime/index.d.ts",
|
71
|
+
"esm2020": "./esm2020/runtime/veloceapps-sdk-runtime.mjs",
|
72
|
+
"es2020": "./fesm2020/veloceapps-sdk-runtime.mjs",
|
73
|
+
"es2015": "./fesm2015/veloceapps-sdk-runtime.mjs",
|
74
|
+
"node": "./fesm2015/veloceapps-sdk-runtime.mjs",
|
75
|
+
"default": "./fesm2020/veloceapps-sdk-runtime.mjs"
|
76
|
+
}
|
77
|
+
}
|
52
78
|
}
|
@@ -13,7 +13,7 @@ export declare class ComponentPreviewComponent implements OnChanges {
|
|
13
13
|
private runtimeService;
|
14
14
|
private cdr;
|
15
15
|
data?: ComponentStoryPreview;
|
16
|
-
form: FormGroup
|
16
|
+
form: FormGroup<{}>;
|
17
17
|
section?: Section;
|
18
18
|
showPreview: boolean;
|
19
19
|
isNoPreviewAvailable: boolean;
|
@@ -23,5 +23,5 @@ export declare class ComponentPreviewComponent implements OnChanges {
|
|
23
23
|
runPreview(data: ComponentStoryPreview): void;
|
24
24
|
createRuntimeContext(section: Section): void;
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentPreviewComponent, never>;
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentPreviewComponent, "vl-component-preview", never, { "data": "data"; }, {}, never, never>;
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentPreviewComponent, "vl-component-preview", never, { "data": "data"; }, {}, never, never, false, never>;
|
27
27
|
}
|
@@ -21,5 +21,5 @@ export declare class SectionRendererComponent implements OnInit, AfterViewInit,
|
|
21
21
|
ngOnDestroy(): void;
|
22
22
|
renderSection(): void;
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<SectionRendererComponent, never>;
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SectionRendererComponent, "vl-section-renderer", never, { "section": "section"; "form": "form"; }, {}, never, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SectionRendererComponent, "vl-section-renderer", never, { "section": "section"; "form": "form"; }, {}, never, never, false, never>;
|
25
25
|
}
|
@@ -49,5 +49,5 @@ export declare class RuntimeComponent implements OnInit, OnDestroy, SolutionRead
|
|
49
49
|
private filterAndSort;
|
50
50
|
private findSection;
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<RuntimeComponent, never>;
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RuntimeComponent, "vl-runtime", never, {}, { "solutionUpdated": "solutionUpdated"; }, never, never>;
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RuntimeComponent, "vl-runtime", never, {}, { "solutionUpdated": "solutionUpdated"; }, never, never, false, never>;
|
53
53
|
}
|
@@ -23,5 +23,5 @@ export declare class RuntimePreviewComponent implements OnInit, OnDestroy {
|
|
23
23
|
onSolutionUpdated(lineItem: LineItem): void;
|
24
24
|
private launchRuntime;
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<RuntimePreviewComponent, never>;
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RuntimePreviewComponent, "vl-runtime-preview", never, { "modelId": "modelId"; "uiDefinition": "uiDefinition"; }, {}, never, never>;
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RuntimePreviewComponent, "vl-runtime-preview", never, { "modelId": "modelId"; "uiDefinition": "uiDefinition"; }, {}, never, never, false, never>;
|
27
27
|
}
|
package/runtime/execution/components/children-placeholder/children-placeholder.component.d.ts
CHANGED
@@ -22,9 +22,9 @@ export declare class ChildrenPlaceholderComponent implements OnInit, OnChanges,
|
|
22
22
|
setChildren(): void;
|
23
23
|
ngOnDestroy(): void;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChildrenPlaceholderComponent, never>;
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChildrenPlaceholderComponent, "children-placeholder", never, { "children": "children"; }, {}, never, never>;
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChildrenPlaceholderComponent, "children-placeholder", never, { "children": "children"; }, {}, never, never, false, never>;
|
26
26
|
}
|
27
27
|
export declare class TemplateComponent extends ChildrenPlaceholderComponent {
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateComponent, never>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateComponent, "template-component", never, {}, {}, never, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateComponent, "template-component", never, {}, {}, never, never, false, never>;
|
30
30
|
}
|
@@ -10,5 +10,5 @@ export declare class ContextProviderComponent implements OnInit {
|
|
10
10
|
constructor(runtimeService: RuntimeService);
|
11
11
|
ngOnInit(): void;
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextProviderComponent, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContextProviderComponent, "vl-context-provider", never, { "types": "types"; "products": "products"; }, {}, never, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextProviderComponent, "vl-context-provider", never, { "types": "types"; "products": "products"; }, {}, never, never, false, never>;
|
14
14
|
}
|
@@ -21,5 +21,5 @@ export declare class ExecutionSectionRendererComponent implements OnInit, AfterV
|
|
21
21
|
ngOnDestroy(): void;
|
22
22
|
renderSection(): void;
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExecutionSectionRendererComponent, never>;
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExecutionSectionRendererComponent, "section-renderer", never, { "section": "section"; "form": "form"; }, {}, never, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExecutionSectionRendererComponent, "section-renderer", never, { "section": "section"; "form": "form"; }, {}, never, never, false, never>;
|
25
25
|
}
|
@@ -31,6 +31,6 @@ export declare class FederatedComponent implements AfterViewInit, OnChanges {
|
|
31
31
|
ngAfterViewInit(): void;
|
32
32
|
ngOnChanges(changes: SimpleChanges): void;
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<FederatedComponent, never>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FederatedComponent, "veloce-host-federated", never, { "remoteEntry": "remoteEntry"; "remoteName": "remoteName"; "exposedModule": "exposedModule"; "data": "data"; "eventData": "eventData"; }, { "integrationEvent": "integrationEvent"; }, never, never>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FederatedComponent, "veloce-host-federated", never, { "remoteEntry": "remoteEntry"; "remoteName": "remoteName"; "exposedModule": "exposedModule"; "data": "data"; "eventData": "eventData"; }, { "integrationEvent": "integrationEvent"; }, never, never, false, never>;
|
35
35
|
}
|
36
36
|
export {};
|
@@ -15,5 +15,5 @@ export declare class VeloAttributeComponent extends VeloAttributeDirective imple
|
|
15
15
|
private isBooleanType;
|
16
16
|
private getDisplayName;
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloAttributeComponent, never>;
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VeloAttributeComponent, "velo-attribute", never, {}, {}, never, never>;
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VeloAttributeComponent, "velo-attribute", never, {}, {}, never, never, false, never>;
|
19
19
|
}
|
@@ -31,5 +31,5 @@ export declare class MultiselectComponent implements ControlValueAccessor, OnDes
|
|
31
31
|
private dropdownClosingActions;
|
32
32
|
private destroyDropdown;
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiselectComponent, never>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiselectComponent, "velo-multiselect", never, { "options": "options"; }, { "selectionChange": "selectionChange"; }, never, never>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiselectComponent, "velo-multiselect", never, { "options": "options"; }, { "selectionChange": "selectionChange"; }, never, never, false, never>;
|
35
35
|
}
|
@@ -18,5 +18,5 @@ export declare class VeloPortCheckBoxComponent {
|
|
18
18
|
getMessages(valueOption: string): string[];
|
19
19
|
private findLineItemForValue;
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloPortCheckBoxComponent, never>;
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VeloPortCheckBoxComponent, "velo-port-checkbox", never, { "showSelectAll": "showSelectAll"; }, {}, never, ["*"]>;
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VeloPortCheckBoxComponent, "velo-port-checkbox", never, { "showSelectAll": "showSelectAll"; }, {}, never, ["*"], false, never>;
|
22
22
|
}
|
@@ -18,5 +18,5 @@ export declare class VeloPortDropdownComponent {
|
|
18
18
|
private findPriceItemsForValue;
|
19
19
|
private add;
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloPortDropdownComponent, never>;
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VeloPortDropdownComponent, "velo-port-dropdown", never, {}, {}, never, ["*"]>;
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VeloPortDropdownComponent, "velo-port-dropdown", never, {}, {}, never, ["*"], false, never>;
|
22
22
|
}
|
@@ -24,5 +24,5 @@ export declare class VeloPortRadioComponent implements OnInit {
|
|
24
24
|
private findPriceItemsForValue;
|
25
25
|
private add;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloPortRadioComponent, never>;
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VeloPortRadioComponent, "velo-port-radio", never, {}, {}, never, ["*", "*"]>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VeloPortRadioComponent, "velo-port-radio", never, {}, {}, never, ["*", "*"], false, never>;
|
28
28
|
}
|
@@ -27,5 +27,5 @@ export declare class VeloTypeComponent implements OnInit {
|
|
27
27
|
getPrices(): RecommendedPrice[];
|
28
28
|
private add;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloTypeComponent, never>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VeloTypeComponent, "velo-type", never, {}, {}, never, ["*"]>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VeloTypeComponent, "velo-type", never, {}, {}, never, ["*"], false, never>;
|
31
31
|
}
|
@@ -55,5 +55,5 @@ export declare class SectionScriptDirective implements OnInit, AfterViewInit, On
|
|
55
55
|
private methodApply;
|
56
56
|
private getExposedApis;
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<SectionScriptDirective, never>;
|
58
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SectionScriptDirective, "section-script", ["scriptApi"], {}, {}, never>;
|
58
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SectionScriptDirective, "section-script", ["scriptApi"], {}, {}, never, never, false, never>;
|
59
59
|
}
|
@@ -11,5 +11,5 @@ export declare class SfQueryDirective {
|
|
11
11
|
apexGetRequest<T = unknown>(path: string, params: HttpParams): Promise<T>;
|
12
12
|
apexPostRequest<T = unknown, S = unknown>(path: string, body: S): Promise<T>;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SfQueryDirective, never>;
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SfQueryDirective, "sf-query", ["sfApi"], {}, {}, never>;
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SfQueryDirective, "sf-query", ["sfApi"], {}, {}, never, never, false, never>;
|
15
15
|
}
|
@@ -22,5 +22,5 @@ export declare class VeloAttributeDirective implements OnInit {
|
|
22
22
|
private initQuantity;
|
23
23
|
private getCurrentValueIndex;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloAttributeDirective, never>;
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VeloAttributeDirective, "velo-attribute-directive", ["attributeApi"], {}, {}, never>;
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VeloAttributeDirective, "velo-attribute-directive", ["attributeApi"], {}, {}, never, never, false, never>;
|
26
26
|
}
|
@@ -24,7 +24,7 @@ export declare class SectionContextAware implements OnInit {
|
|
24
24
|
handleRemove(valueOption: string): void;
|
25
25
|
handleCopy(valueOption: string): void;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SectionContextAware, never>;
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SectionContextAware, never, never, {}, {}, never>;
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SectionContextAware, never, never, {}, {}, never, never, false, never>;
|
28
28
|
}
|
29
29
|
export declare class LineItemDirective implements OnInit {
|
30
30
|
private formScope;
|
@@ -37,7 +37,7 @@ export declare class LineItemDirective implements OnInit {
|
|
37
37
|
handlePatch(rootLineItem: any): void;
|
38
38
|
configure(runtimeContext: LegacyRuntimeContext, configurableRamp: LineItem): Promise<LineItem>;
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<LineItemDirective, never>;
|
40
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LineItemDirective, "line-item", ["liApi"], {}, {}, never>;
|
40
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LineItemDirective, "line-item", ["liApi"], {}, {}, never, never, false, never>;
|
41
41
|
}
|
42
42
|
export declare class VeloPortDirective extends SectionContextAware implements OnInit {
|
43
43
|
valueQuantities: {
|
@@ -55,20 +55,20 @@ export declare class VeloPortDirective extends SectionContextAware implements On
|
|
55
55
|
handleNetPriceAdjustment(valueOption: string, amount: number): void;
|
56
56
|
handleListPriceAdjustment(valueOption: string, amount: number): void;
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloPortDirective, never>;
|
58
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VeloPortDirective, "velo-port", ["portApi"], {}, {}, never>;
|
58
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VeloPortDirective, "velo-port", ["portApi"], {}, {}, never, never, false, never>;
|
59
59
|
}
|
60
60
|
export declare class VeloDropdownComponent extends SectionContextAware {
|
61
61
|
constructor(formScope: FormScopeService, sectionScope: SectionScopeService);
|
62
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloDropdownComponent, never>;
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VeloDropdownComponent, "velo-dropdown", never, {}, {}, never, never>;
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VeloDropdownComponent, "velo-dropdown", never, {}, {}, never, never, false, never>;
|
64
64
|
}
|
65
65
|
export declare class VeloQuantityComponent extends SectionContextAware {
|
66
66
|
constructor(formScope: FormScopeService, sectionScope: SectionScopeService);
|
67
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloQuantityComponent, never>;
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VeloQuantityComponent, "velo-quantity", never, {}, {}, never, never>;
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VeloQuantityComponent, "velo-quantity", never, {}, {}, never, never, false, never>;
|
69
69
|
}
|
70
70
|
export declare class VeloQuantityButtonComponent extends SectionContextAware {
|
71
71
|
constructor(formScope: FormScopeService, sectionScope: SectionScopeService);
|
72
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<VeloQuantityButtonComponent, never>;
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VeloQuantityButtonComponent, "velo-quantity-button", never, {}, {}, never, never>;
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VeloQuantityButtonComponent, "velo-quantity-button", never, {}, {}, never, never, false, never>;
|
74
74
|
}
|
@@ -6,5 +6,5 @@ export declare class VlApprovalDirective {
|
|
6
6
|
constructor(repo: QuoteApiService);
|
7
7
|
submitQuote(quoteDraft: QuoteDraft): Promise<any>;
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<VlApprovalDirective, never>;
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VlApprovalDirective, "vl-approval", ["approvalApi"], {}, {}, never>;
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VlApprovalDirective, "vl-approval", ["approvalApi"], {}, {}, never, never, false, never>;
|
10
10
|
}
|
@@ -11,5 +11,5 @@ export declare class VlDocumentAttachmentsDirective {
|
|
11
11
|
getAttachmentFile(id: string, isPreventDownload?: boolean): Promise<any>;
|
12
12
|
removeAttachment(id: string): Promise<unknown>;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<VlDocumentAttachmentsDirective, never>;
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VlDocumentAttachmentsDirective, "vl-document-attachments", ["documentAttachmentsApi"], {}, {}, never>;
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VlDocumentAttachmentsDirective, "vl-document-attachments", ["documentAttachmentsApi"], {}, {}, never, never, false, never>;
|
15
15
|
}
|
@@ -29,5 +29,5 @@ export declare class VlDocumentTemplatesDirective {
|
|
29
29
|
createAttachment(attachment: Attachment, file?: File): Promise<any>;
|
30
30
|
removeAttachment(id: string): Promise<any>;
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<VlDocumentTemplatesDirective, never>;
|
32
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VlDocumentTemplatesDirective, "[vlQuoteTemplates]", ["quoteTemplateApi"], {}, {}, never>;
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VlDocumentTemplatesDirective, "[vlQuoteTemplates]", ["quoteTemplateApi"], {}, {}, never, never, false, never>;
|
33
33
|
}
|
@@ -10,5 +10,5 @@ export declare class VlQuoteDirective {
|
|
10
10
|
upsertQuote(quoteDraft: QuoteDraft): Promise<any>;
|
11
11
|
configureQuote(quoteDraft: QuoteDraft, rootLineItemId: string): void;
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<VlQuoteDirective, never>;
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VlQuoteDirective, "vl-quote", ["quoteApi"], {}, {}, never>;
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VlQuoteDirective, "vl-quote", ["quoteApi"], {}, {}, never, never, false, never>;
|
14
14
|
}
|
@@ -11,5 +11,5 @@ export declare class VlRampDirective {
|
|
11
11
|
calculateRampTermByEndDate(lineItem: LineItem, endDate: string): Promise<any>;
|
12
12
|
calculateRampTermByTerm(lineItem: LineItem, term: number): Promise<any>;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<VlRampDirective, never>;
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VlRampDirective, "vl-ramp", ["rampApi"], {}, {}, never>;
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VlRampDirective, "vl-ramp", ["rampApi"], {}, {}, never, never, false, never>;
|
15
15
|
}
|
@@ -16,12 +16,10 @@ import * as i14 from "@angular/common";
|
|
16
16
|
import * as i15 from "@angular/forms";
|
17
17
|
import * as i16 from "@veloceapps/core";
|
18
18
|
import * as i17 from "@veloceapps/api";
|
19
|
-
import * as i18 from "@veloceapps/
|
20
|
-
import * as i19 from "
|
21
|
-
import * as i20 from "@veloceapps/components";
|
22
|
-
import * as i21 from "@veloceapps/sdk/core";
|
19
|
+
import * as i18 from "@veloceapps/components";
|
20
|
+
import * as i19 from "@veloceapps/sdk/core";
|
23
21
|
export declare class RuntimeExecutionModule {
|
24
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<RuntimeExecutionModule, never>;
|
25
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RuntimeExecutionModule, [typeof i1.ExecutionSectionRendererComponent, typeof i2.ChildrenPlaceholderComponent, typeof i3.SectionScriptDirective, typeof i4.VeloPortDirective, typeof i4.LineItemDirective, typeof i4.VeloDropdownComponent, typeof i4.VeloQuantityButtonComponent, typeof i4.VeloQuantityComponent, typeof i5.VeloAttributeDirective, typeof i6.MultiselectComponent, typeof i7.VeloAttributeComponent, typeof i8.VeloPortRadioComponent, typeof i9.VeloTypeComponent, typeof i10.VeloPortDropdownComponent, typeof i11.VeloPortCheckBoxComponent, typeof i12.FederatedComponent, typeof i2.TemplateComponent, typeof i13.ContextProviderComponent], [typeof i14.CommonModule, typeof i15.FormsModule, typeof i15.ReactiveFormsModule, typeof i16.CoreModule, typeof i17.ApiModule, typeof i18.
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RuntimeExecutionModule, [typeof i1.ExecutionSectionRendererComponent, typeof i2.ChildrenPlaceholderComponent, typeof i3.SectionScriptDirective, typeof i4.VeloPortDirective, typeof i4.LineItemDirective, typeof i4.VeloDropdownComponent, typeof i4.VeloQuantityButtonComponent, typeof i4.VeloQuantityComponent, typeof i5.VeloAttributeDirective, typeof i6.MultiselectComponent, typeof i7.VeloAttributeComponent, typeof i8.VeloPortRadioComponent, typeof i9.VeloTypeComponent, typeof i10.VeloPortDropdownComponent, typeof i11.VeloPortCheckBoxComponent, typeof i12.FederatedComponent, typeof i2.TemplateComponent, typeof i13.ContextProviderComponent], [typeof i14.CommonModule, typeof i15.FormsModule, typeof i15.ReactiveFormsModule, typeof i16.CoreModule, typeof i17.ApiModule, typeof i18.LoaderModule, typeof i19.SdkCoreModule], [typeof i15.FormsModule, typeof i15.ReactiveFormsModule, typeof i2.ChildrenPlaceholderComponent, typeof i3.SectionScriptDirective, typeof i4.LineItemDirective, typeof i4.VeloPortDirective, typeof i5.VeloAttributeDirective, typeof i6.MultiselectComponent, typeof i7.VeloAttributeComponent, typeof i8.VeloPortRadioComponent, typeof i9.VeloTypeComponent, typeof i10.VeloPortDropdownComponent, typeof i11.VeloPortCheckBoxComponent, typeof i12.FederatedComponent, typeof i2.TemplateComponent, typeof i13.ContextProviderComponent]>;
|
26
24
|
static ɵinj: i0.ɵɵInjectorDeclaration<RuntimeExecutionModule>;
|
27
25
|
}
|
@@ -7,12 +7,10 @@ import * as i5 from "@angular/common";
|
|
7
7
|
import * as i6 from "@angular/forms";
|
8
8
|
import * as i7 from "@veloceapps/core";
|
9
9
|
import * as i8 from "@veloceapps/api";
|
10
|
-
import * as i9 from "@veloceapps/
|
11
|
-
import * as i10 from "
|
12
|
-
import * as i11 from "@veloceapps/components";
|
13
|
-
import * as i12 from "@veloceapps/sdk/core";
|
10
|
+
import * as i9 from "@veloceapps/components";
|
11
|
+
import * as i10 from "@veloceapps/sdk/core";
|
14
12
|
export declare class RuntimeModule {
|
15
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<RuntimeModule, never>;
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RuntimeModule, [typeof i1.RuntimeComponent, typeof i2.RuntimePreviewComponent, typeof i3.SectionRendererComponent, typeof i4.ComponentPreviewComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.CoreModule, typeof i8.ApiModule, typeof i9.
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RuntimeModule, [typeof i1.RuntimeComponent, typeof i2.RuntimePreviewComponent, typeof i3.SectionRendererComponent, typeof i4.ComponentPreviewComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.CoreModule, typeof i8.ApiModule, typeof i9.LoaderModule, typeof i10.SdkCoreModule], [typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i1.RuntimeComponent, typeof i2.RuntimePreviewComponent, typeof i3.SectionRendererComponent, typeof i4.ComponentPreviewComponent]>;
|
17
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<RuntimeModule>;
|
18
16
|
}
|
@@ -9,7 +9,7 @@ export declare class BaseSectionComponent {
|
|
9
9
|
section: Section;
|
10
10
|
protected templates: QueryList<TemplateRef<any>>;
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseSectionComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseSectionComponent, "ng-component", never, { "form": "form"; "section": "section"; }, {}, never, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseSectionComponent, "ng-component", never, { "form": "form"; "section": "section"; }, {}, never, never, false, never>;
|
13
13
|
}
|
14
14
|
export declare class SectionsService {
|
15
15
|
private compiler;
|
@@ -9,5 +9,5 @@ export declare class FlowDialogComponent {
|
|
9
9
|
cancelHandler(): void;
|
10
10
|
confirmHandler(): void;
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowDialogComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlowDialogComponent, "vl-flow-dialog", never, {}, {}, never, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowDialogComponent, "vl-flow-dialog", never, {}, {}, never, never, false, never>;
|
13
13
|
}
|
@@ -22,5 +22,5 @@ export declare class DocGenComponent implements OnDestroy {
|
|
22
22
|
private getDocGenComponentMeta$;
|
23
23
|
private generateUIDefinition$;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocGenComponent, never>;
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocGenComponent, "vl-flow-doc-gen", never, {}, {}, never, never>;
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocGenComponent, "vl-flow-doc-gen", never, {}, {}, never, never, false, never>;
|
26
26
|
}
|
@@ -14,7 +14,7 @@ export declare class CartPreviewComponent implements OnChanges, AfterViewInit, O
|
|
14
14
|
overlayPanel: OverlayPanel;
|
15
15
|
products: HeaderProduct[];
|
16
16
|
readonly productRowHeight = 97;
|
17
|
-
form: FormGroup
|
17
|
+
form: FormGroup<{}>;
|
18
18
|
lockedProductId$: Observable<string | null>;
|
19
19
|
isEditMode$: Observable<boolean>;
|
20
20
|
hasTermInProducts: boolean;
|
@@ -32,5 +32,5 @@ export declare class CartPreviewComponent implements OnChanges, AfterViewInit, O
|
|
32
32
|
deleteAllHandler(): void;
|
33
33
|
private updateControls;
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<CartPreviewComponent, never>;
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CartPreviewComponent, "vl-cart-preview", never, { "products": "products"; }, {}, never, never>;
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CartPreviewComponent, "vl-cart-preview", never, { "products": "products"; }, {}, never, never, false, never>;
|
36
36
|
}
|
@@ -67,5 +67,5 @@ export declare class FlowHeaderComponent implements OnInit, OnDestroy {
|
|
67
67
|
private isReadonlyMode;
|
68
68
|
private isUpsellQuoteWithoutChanges;
|
69
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowHeaderComponent, never>;
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlowHeaderComponent, "vl-flow-header", never, {}, {}, never, never>;
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowHeaderComponent, "vl-flow-header", never, {}, {}, never, never, false, never>;
|
71
71
|
}
|
@@ -55,5 +55,5 @@ export declare class MetricsComponent implements OnInit, OnDestroy {
|
|
55
55
|
*/
|
56
56
|
private sortMetrics;
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetricsComponent, never>;
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetricsComponent, "vl-metrics", never, {}, {}, never, never>;
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetricsComponent, "vl-metrics", never, {}, {}, never, never, false, never>;
|
59
59
|
}
|
package/src/flow.component.d.ts
CHANGED
@@ -19,5 +19,5 @@ export declare class FlowComponent implements OnInit, OnDestroy {
|
|
19
19
|
ngOnInit(): void;
|
20
20
|
ngOnDestroy(): void;
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowComponent, never>;
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlowComponent, "vl-flow", never, {}, {}, never, never>;
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowComponent, "vl-flow", never, {}, {}, never, never, false, never>;
|
23
23
|
}
|
@@ -27,6 +27,6 @@ export declare class AssetsComponent implements OnInit, OnDestroy {
|
|
27
27
|
private getAssetsComponentMeta$;
|
28
28
|
private generateUIDefinition$;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<AssetsComponent, [null, null, null, null, { optional: true; }]>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AssetsComponent, "vl-flow-assets", never, {}, {}, never, never>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AssetsComponent, "vl-flow-assets", never, {}, {}, never, never, false, never>;
|
31
31
|
}
|
32
32
|
export {};
|
@@ -27,6 +27,6 @@ export declare class CatalogComponent implements OnInit, OnDestroy {
|
|
27
27
|
private getCatalogComponentMeta$;
|
28
28
|
private generateUIDefinition$;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogComponent, [null, null, null, null, { optional: true; }]>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogComponent, "vl-flow-catalog", never, {}, {}, never, never>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogComponent, "vl-flow-catalog", never, {}, {}, never, never, false, never>;
|
31
31
|
}
|
32
32
|
export {};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { FormGroup } from '@angular/forms';
|
1
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
3
3
|
import { FlowsApiService } from '@veloceapps/api';
|
4
4
|
import { FlowProperties } from '@veloceapps/core';
|
@@ -14,12 +14,14 @@ export declare class DebugComponent {
|
|
14
14
|
private activatedRoute;
|
15
15
|
private context;
|
16
16
|
private quoteDraftService;
|
17
|
-
form: FormGroup
|
17
|
+
form: FormGroup<{
|
18
|
+
id: FormControl<string | null>;
|
19
|
+
}>;
|
18
20
|
selectedFlow?: FlowPropertiesExt;
|
19
21
|
flows$: Observable<FlowPropertiesExt[]>;
|
20
22
|
constructor(flowsApiService: FlowsApiService, router: Router, activatedRoute: ActivatedRoute, context: ContextService, quoteDraftService: QuoteDraftService);
|
21
23
|
runFlow(): void;
|
22
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<DebugComponent, never>;
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DebugComponent, "vl-flow-debug", never, {}, {}, never, never>;
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DebugComponent, "vl-flow-debug", never, {}, {}, never, never, false, never>;
|
24
26
|
}
|
25
27
|
export {};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class EmptyAccountComponent {
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyAccountComponent, never>;
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyAccountComponent, "vl-empty-account", never, {}, {}, never, never>;
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyAccountComponent, "vl-empty-account", never, {}, {}, never, never, false, never>;
|
5
5
|
}
|
@@ -33,5 +33,5 @@ export declare class LegacyProductComponent implements OnInit, OnDestroy, Soluti
|
|
33
33
|
private customizeContext;
|
34
34
|
private getRuntimeContext;
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<LegacyProductComponent, [null, null, null, null, null, null, null, { optional: true; }]>;
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LegacyProductComponent, "ng-component", never, {}, {}, never, never>;
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LegacyProductComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
37
37
|
}
|
@@ -2,9 +2,8 @@ import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./legacy-product.component";
|
3
3
|
import * as i2 from "@angular/common";
|
4
4
|
import * as i3 from "@veloceapps/sdk/runtime";
|
5
|
-
import * as i4 from "ngx-bootstrap/tooltip";
|
6
5
|
export declare class LegacyProductModule {
|
7
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<LegacyProductModule, never>;
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LegacyProductModule, [typeof i1.LegacyProductComponent], [typeof i2.CommonModule, typeof i3.RuntimeModule
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LegacyProductModule, [typeof i1.LegacyProductComponent], [typeof i2.CommonModule, typeof i3.RuntimeModule], [typeof i1.LegacyProductComponent]>;
|
9
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<LegacyProductModule>;
|
10
9
|
}
|
@@ -26,6 +26,6 @@ export declare class ProductComponent implements OnInit, OnDestroy {
|
|
26
26
|
private throwIfNoUIDefinition;
|
27
27
|
private getLineItemId;
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductComponent, [null, null, null, null, null, { optional: true; }]>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProductComponent, "vl-flow-product", never, {}, {}, never, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductComponent, "vl-flow-product", never, {}, {}, never, never, false, never>;
|
30
30
|
}
|
31
31
|
export {};
|
@@ -7,5 +7,5 @@ export declare class RecordNotFoundComponent {
|
|
7
7
|
subMessage: string;
|
8
8
|
constructor(router: Router, route: ActivatedRoute);
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordNotFoundComponent, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RecordNotFoundComponent, "vl-flow-record-not-found", never, {}, {}, never, never>;
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RecordNotFoundComponent, "vl-flow-record-not-found", never, {}, {}, never, never, false, never>;
|
11
11
|
}
|
@@ -42,6 +42,6 @@ export declare class RemoteComponent implements OnDestroy {
|
|
42
42
|
private mapAttributesTo;
|
43
43
|
private getOptionConfigurations;
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<RemoteComponent, never>;
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RemoteComponent, "vl-flow-remote", never, {}, {}, never, never>;
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RemoteComponent, "vl-flow-remote", never, {}, {}, never, never, false, never>;
|
46
46
|
}
|
47
47
|
export {};
|
@@ -27,6 +27,6 @@ export declare class ShoppingCartComponent implements OnInit, OnDestroy {
|
|
27
27
|
private getShoppingCartComponentMeta$;
|
28
28
|
private generateUIDefinition$;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShoppingCartComponent, [null, null, null, null, { optional: true; }]>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShoppingCartComponent, "vl-flow-shopping-cart", never, {}, {}, never, never>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShoppingCartComponent, "vl-flow-shopping-cart", never, {}, {}, never, never, false, never>;
|
31
31
|
}
|
32
32
|
export {};
|