@vendure/admin-ui 2.0.0-next.2 → 2.0.0-next.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/catalog/catalog.module.d.ts +15 -11
- package/catalog/components/assign-to-channel-dialog/assign-to-channel-dialog.component.d.ts +22 -0
- package/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.component.d.ts +41 -0
- package/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.graphql.d.ts +4 -0
- package/catalog/components/collection-contents/collection-contents.component.d.ts +10 -2
- package/catalog/components/collection-detail/collection-detail.component.d.ts +13 -4
- package/catalog/components/collection-list/collection-list-bulk-actions.d.ts +6 -0
- package/catalog/components/collection-list/collection-list.component.d.ts +9 -5
- package/catalog/components/collection-tree/array-to-tree.d.ts +1 -1
- package/catalog/components/collection-tree/collection-tree-node.component.d.ts +14 -6
- package/catalog/components/collection-tree/collection-tree.component.d.ts +4 -1
- package/catalog/components/facet-list/facet-list-bulk-actions.d.ts +5 -0
- package/catalog/components/facet-list/facet-list.component.d.ts +2 -1
- package/catalog/components/generate-product-variants/generate-product-variants.component.d.ts +3 -3
- package/catalog/components/option-value-input/option-value-input.component.d.ts +21 -9
- package/catalog/components/product-detail/product-detail.component.d.ts +1 -1
- package/catalog/components/product-list/product-list-bulk-actions.d.ts +6 -0
- package/catalog/components/product-list/product-list.component.d.ts +4 -2
- package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +22 -12
- package/catalog/components/product-variants-list/product-variants-list.component.d.ts +1 -0
- package/catalog/public_api.d.ts +6 -1
- package/core/common/component-registry-types.d.ts +1 -1
- package/core/common/generated-types.d.ts +3184 -195
- package/core/common/utilities/bulk-action-utils.d.ts +19 -0
- package/core/common/utilities/configurable-operation-utils.d.ts +7 -2
- package/core/common/utilities/selection-manager.d.ts +30 -0
- package/core/common/version.d.ts +1 -1
- package/core/components/app-shell/app-shell.component.d.ts +1 -0
- package/core/data/definitions/collection-definitions.d.ts +4 -0
- package/core/data/definitions/facet-definitions.d.ts +3 -0
- package/core/data/definitions/order-definitions.d.ts +14 -0
- package/core/data/definitions/product-definitions.d.ts +2 -0
- package/core/data/providers/collection-data.service.d.ts +7 -0
- package/core/data/providers/facet-data.service.d.ts +3 -0
- package/core/data/providers/order-data.service.d.ts +18 -0
- package/core/data/providers/product-data.service.d.ts +2 -0
- package/core/providers/bulk-action-registry/bulk-action-registry.service.d.ts +9 -0
- package/core/providers/bulk-action-registry/bulk-action-types.d.ts +149 -0
- package/core/providers/bulk-action-registry/register-bulk-action.d.ts +53 -0
- package/core/providers/local-storage/local-storage.service.d.ts +1 -0
- package/core/providers/modal/modal.types.d.ts +2 -0
- package/core/providers/nav-builder/nav-builder-types.d.ts +1 -0
- package/core/public_api.d.ts +24 -1
- package/core/shared/components/asset-gallery/asset-gallery.component.d.ts +27 -3
- package/core/shared/components/bulk-action-menu/bulk-action-menu.component.d.ts +32 -0
- package/core/shared/components/configurable-input/configurable-input.component.d.ts +8 -3
- package/core/shared/components/custom-field-control/custom-field-control.component.d.ts +6 -2
- package/core/shared/components/data-table/data-table.component.d.ts +29 -7
- package/core/shared/components/dropdown/dropdown-menu.component.d.ts +2 -1
- package/core/shared/components/facet-value-selector/facet-value-selector.component.d.ts +3 -2
- package/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component.d.ts +38 -0
- package/{catalog → core/shared}/components/product-search-input/product-search-input.component.d.ts +1 -1
- package/core/shared/components/radio-card/radio-card-fieldset.component.d.ts +24 -0
- package/core/shared/components/radio-card/radio-card.component.d.ts +22 -0
- package/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component.d.ts +31 -0
- package/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.service.d.ts +34 -0
- package/core/shared/components/rich-text-editor/prosemirror/custom-nodes.d.ts +4 -0
- package/core/shared/components/rich-text-editor/prosemirror/inputrules.d.ts +5 -5
- package/core/shared/components/rich-text-editor/prosemirror/menu/links.d.ts +1 -1
- package/core/shared/components/rich-text-editor/prosemirror/menu/menu-common.d.ts +12 -0
- package/core/shared/components/rich-text-editor/prosemirror/menu/menu-plugin.d.ts +9 -0
- package/core/shared/components/rich-text-editor/prosemirror/menu/sub-menu-with-icon.d.ts +14 -0
- package/core/shared/components/rich-text-editor/prosemirror/plugins/image-plugin.d.ts +7 -0
- package/core/shared/components/rich-text-editor/prosemirror/plugins/link-select-plugin.d.ts +1 -1
- package/core/shared/components/rich-text-editor/prosemirror/plugins/raw-editor-plugin.d.ts +7 -0
- package/core/shared/components/rich-text-editor/prosemirror/plugins/tables-plugin.d.ts +13 -0
- package/core/shared/components/rich-text-editor/prosemirror/prosemirror.service.d.ts +7 -3
- package/core/shared/components/rich-text-editor/prosemirror/types.d.ts +0 -2
- package/core/shared/components/rich-text-editor/raw-html-dialog/raw-html-dialog.component.d.ts +21 -0
- package/core/shared/components/rich-text-editor/rich-text-editor.component.d.ts +6 -2
- package/core/shared/components/select-toggle/select-toggle.component.d.ts +2 -1
- package/core/shared/dynamic-form-inputs/code-editor-form-input/base-code-editor-form-input.component.d.ts +30 -0
- package/core/shared/dynamic-form-inputs/code-editor-form-input/html-editor-form-input.component.d.ts +22 -0
- package/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.d.ts +5 -17
- package/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.d.ts +28 -0
- package/core/shared/dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component.d.ts +2 -0
- package/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.d.ts +23 -0
- package/core/shared/dynamic-form-inputs/register-dynamic-input-components.d.ts +5 -1
- package/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.d.ts +6 -3
- package/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.d.ts +10 -2
- package/core/shared/pipes/custom-field-description.pipe.d.ts +11 -0
- package/core/shared/pipes/custom-field-label.pipe.d.ts +4 -10
- package/core/shared/shared.module.d.ts +68 -57
- package/customer/components/customer-group-list/customer-group-list.component.d.ts +6 -4
- package/customer/components/customer-group-member-list/customer-group-member-list.component.d.ts +11 -4
- package/esm2020/catalog/catalog.module.mjs +31 -10
- package/esm2020/catalog/components/apply-facet-dialog/apply-facet-dialog.component.mjs +1 -1
- package/esm2020/catalog/components/assets/assets.component.mjs +2 -2
- package/esm2020/catalog/components/assign-products-to-channel-dialog/assign-products-to-channel-dialog.component.mjs +4 -1
- package/esm2020/catalog/components/assign-to-channel-dialog/assign-to-channel-dialog.component.mjs +50 -0
- package/esm2020/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.component.mjs +84 -0
- package/esm2020/catalog/components/bulk-add-facet-values-dialog/bulk-add-facet-values-dialog.graphql.mjs +69 -0
- package/esm2020/catalog/components/collection-contents/collection-contents.component.mjs +61 -13
- package/esm2020/catalog/components/collection-detail/collection-detail.component.mjs +70 -32
- package/esm2020/catalog/components/collection-list/collection-list-bulk-actions.mjs +143 -0
- package/esm2020/catalog/components/collection-list/collection-list.component.mjs +46 -12
- package/esm2020/catalog/components/collection-tree/array-to-tree.mjs +3 -3
- package/esm2020/catalog/components/collection-tree/collection-tree-node.component.mjs +36 -10
- package/esm2020/catalog/components/collection-tree/collection-tree.component.mjs +9 -4
- package/esm2020/catalog/components/facet-detail/facet-detail.component.mjs +3 -3
- package/esm2020/catalog/components/facet-list/facet-list-bulk-actions.mjs +202 -0
- package/esm2020/catalog/components/facet-list/facet-list.component.mjs +14 -5
- package/esm2020/catalog/components/generate-product-variants/generate-product-variants.component.mjs +12 -4
- package/esm2020/catalog/components/option-value-input/option-value-input.component.mjs +70 -11
- package/esm2020/catalog/components/product-detail/product-detail.component.mjs +36 -24
- package/esm2020/catalog/components/product-list/product-list-bulk-actions.mjs +168 -0
- package/esm2020/catalog/components/product-list/product-list.component.mjs +13 -9
- package/esm2020/catalog/components/product-variants-editor/product-variants-editor.component.mjs +130 -19
- package/esm2020/catalog/components/product-variants-list/product-variants-list.component.mjs +9 -3
- package/esm2020/catalog/providers/routing/collection-resolver.mjs +2 -1
- package/esm2020/catalog/public_api.mjs +7 -2
- package/esm2020/core/app.component.module.mjs +1 -1
- package/esm2020/core/common/base-detail.component.mjs +1 -1
- package/esm2020/core/common/component-registry-types.mjs +1 -1
- package/esm2020/core/common/deactivate-aware.mjs +1 -1
- package/esm2020/core/common/generated-types.mjs +31 -1
- package/esm2020/core/common/introspection-result.mjs +296 -189
- package/esm2020/core/common/utilities/bulk-action-utils.mjs +35 -0
- package/esm2020/core/common/utilities/configurable-operation-utils.mjs +37 -10
- package/esm2020/core/common/utilities/selection-manager.mjs +96 -0
- package/esm2020/core/common/version.mjs +2 -2
- package/esm2020/core/components/app-shell/app-shell.component.mjs +6 -5
- package/esm2020/core/components/breadcrumb/breadcrumb.component.mjs +2 -2
- package/esm2020/core/components/channel-switcher/channel-switcher.component.mjs +1 -1
- package/esm2020/core/components/main-nav/main-nav.component.mjs +3 -3
- package/esm2020/core/components/user-menu/user-menu.component.mjs +1 -1
- package/esm2020/core/core.module.mjs +1 -1
- package/esm2020/core/data/definitions/collection-definitions.mjs +47 -1
- package/esm2020/core/data/definitions/facet-definitions.mjs +31 -1
- package/esm2020/core/data/definitions/order-definitions.mjs +583 -455
- package/esm2020/core/data/definitions/product-definitions.mjs +23 -1
- package/esm2020/core/data/definitions/shared-definitions.mjs +29 -28
- package/esm2020/core/data/providers/collection-data.service.mjs +20 -2
- package/esm2020/core/data/providers/customer-data.service.mjs +6 -1
- package/esm2020/core/data/providers/facet-data.service.mjs +18 -2
- package/esm2020/core/data/providers/order-data.service.mjs +43 -2
- package/esm2020/core/data/providers/product-data.service.mjs +10 -2
- package/esm2020/core/data/providers/promotion-data.service.mjs +1 -1
- package/esm2020/core/data/utils/remove-readonly-custom-fields.mjs +8 -1
- package/esm2020/core/providers/bulk-action-registry/bulk-action-registry.service.mjs +28 -0
- package/esm2020/core/providers/bulk-action-registry/bulk-action-types.mjs +2 -0
- package/esm2020/core/providers/bulk-action-registry/register-bulk-action.mjs +63 -0
- package/esm2020/core/providers/dashboard-widget/dashboard-widget.service.mjs +1 -4
- package/esm2020/core/providers/local-storage/local-storage.service.mjs +1 -1
- package/esm2020/core/providers/modal/modal.service.mjs +2 -1
- package/esm2020/core/providers/modal/modal.types.mjs +1 -1
- package/esm2020/core/providers/nav-builder/nav-builder-types.mjs +1 -1
- package/esm2020/core/public_api.mjs +25 -2
- package/esm2020/core/shared/components/action-bar/action-bar.component.mjs +7 -15
- package/esm2020/core/shared/components/address-form/address-form.component.mjs +3 -3
- package/esm2020/core/shared/components/asset-gallery/asset-gallery.component.mjs +34 -51
- package/esm2020/core/shared/components/asset-preview/asset-preview.component.mjs +4 -4
- package/esm2020/core/shared/components/asset-preview-links/asset-preview-links.component.mjs +1 -1
- package/esm2020/core/shared/components/bulk-action-menu/bulk-action-menu.component.mjs +97 -0
- package/esm2020/core/shared/components/configurable-input/configurable-input.component.mjs +22 -10
- package/esm2020/core/shared/components/custom-field-control/custom-field-control.component.mjs +18 -10
- package/esm2020/core/shared/components/data-table/data-table.component.mjs +64 -14
- package/esm2020/core/shared/components/datetime-picker/datetime-picker.component.mjs +1 -1
- package/esm2020/core/shared/components/dropdown/dropdown-menu.component.mjs +26 -23
- package/esm2020/core/shared/components/dropdown/dropdown-trigger.directive.mjs +1 -1
- package/esm2020/core/shared/components/entity-info/entity-info.component.mjs +1 -1
- package/esm2020/core/shared/components/facet-value-selector/facet-value-selector.component.mjs +13 -6
- package/esm2020/core/shared/components/formatted-address/formatted-address.component.mjs +3 -3
- package/esm2020/core/shared/components/help-tooltip/help-tooltip.component.mjs +2 -2
- package/esm2020/core/shared/components/history-entry-detail/history-entry-detail.component.mjs +1 -1
- package/esm2020/core/shared/components/language-selector/language-selector.component.mjs +3 -3
- package/esm2020/core/shared/components/object-tree/object-tree.component.mjs +1 -1
- package/esm2020/core/shared/components/order-state-label/order-state-label.component.mjs +2 -1
- package/esm2020/core/shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component.mjs +135 -0
- package/esm2020/core/shared/components/product-search-input/product-search-input.component.mjs +108 -0
- package/esm2020/core/shared/components/product-variant-selector/product-variant-selector.component.mjs +2 -2
- package/esm2020/core/shared/components/radio-card/radio-card-fieldset.component.mjs +54 -0
- package/esm2020/core/shared/components/radio-card/radio-card.component.mjs +53 -0
- package/esm2020/core/shared/components/rich-text-editor/external-image-dialog/external-image-dialog.component.mjs +3 -3
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component.mjs +136 -0
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.service.mjs +46 -0
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/custom-nodes.mjs +57 -0
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/menu/links.mjs +4 -4
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/menu/menu-common.mjs +22 -1
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/menu/menu-plugin.mjs +12 -0
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/menu/menu.mjs +73 -18
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/menu/sub-menu-with-icon.mjs +16 -0
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/plugins/image-plugin.mjs +100 -0
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/plugins/raw-editor-plugin.mjs +96 -0
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/plugins/tables-plugin.mjs +166 -0
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/prosemirror.service.mjs +47 -18
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/types.mjs +1 -1
- package/esm2020/core/shared/components/rich-text-editor/raw-html-dialog/raw-html-dialog.component.mjs +59 -0
- package/esm2020/core/shared/components/rich-text-editor/rich-text-editor.component.mjs +22 -10
- package/esm2020/core/shared/components/select-toggle/select-toggle.component.mjs +6 -3
- package/esm2020/core/shared/components/simple-dialog/simple-dialog.component.mjs +3 -3
- package/esm2020/core/shared/components/ui-extension-point/ui-extension-point.component.mjs +1 -1
- package/esm2020/core/shared/dynamic-form-inputs/code-editor-form-input/base-code-editor-form-input.component.mjs +57 -0
- package/esm2020/core/shared/dynamic-form-inputs/code-editor-form-input/html-editor-form-input.component.mjs +63 -0
- package/esm2020/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.mjs +48 -83
- package/esm2020/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.mjs +45 -0
- package/esm2020/core/shared/dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component.mjs +3 -3
- package/esm2020/core/shared/dynamic-form-inputs/facet-value-form-input/facet-value-form-input.component.mjs +12 -3
- package/esm2020/core/shared/dynamic-form-inputs/product-multi-selector-form-input/product-multi-selector-form-input.component.mjs +48 -0
- package/esm2020/core/shared/dynamic-form-inputs/register-dynamic-input-components.mjs +7 -1
- package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/asset/relation-asset-input.component.mjs +11 -9
- package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.mjs +1 -1
- package/esm2020/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.mjs +21 -11
- package/esm2020/core/shared/pipes/custom-field-description.pipe.mjs +30 -0
- package/esm2020/core/shared/pipes/custom-field-label.pipe.mjs +7 -19
- package/esm2020/core/shared/pipes/locale-currency.pipe.mjs +10 -2
- package/esm2020/core/shared/pipes/state-i18n-token.pipe.mjs +2 -1
- package/esm2020/core/shared/shared.module.mjs +49 -5
- package/esm2020/customer/components/address-card/address-card.component.mjs +1 -1
- package/esm2020/customer/components/customer-detail/customer-detail.component.mjs +1 -1
- package/esm2020/customer/components/customer-group-list/customer-group-list.component.mjs +33 -18
- package/esm2020/customer/components/customer-group-member-list/customer-group-member-list.component.mjs +3 -3
- package/esm2020/customer/components/customer-history/customer-history.component.mjs +1 -1
- package/esm2020/customer/components/customer-list/customer-list.component.mjs +3 -3
- package/esm2020/dashboard/components/dashboard/dashboard.component.mjs +2 -2
- package/esm2020/dashboard/components/dashboard-widget/dashboard-widget.component.mjs +2 -2
- package/esm2020/dashboard/dashboard.module.mjs +6 -2
- package/esm2020/dashboard/widgets/latest-orders-widget/latest-orders-widget.component.mjs +1 -1
- package/esm2020/dashboard/widgets/order-summary-widget/order-summary-widget.component.mjs +2 -2
- package/esm2020/login/components/login/login.component.mjs +3 -3
- package/esm2020/marketing/components/promotion-detail/promotion-detail.component.mjs +3 -3
- package/esm2020/marketing/components/promotion-list/promotion-list.component.mjs +1 -1
- package/esm2020/order/components/cancel-order-dialog/cancel-order-dialog.component.mjs +1 -1
- package/esm2020/order/components/coupon-code-selector/coupon-code-selector.component.mjs +42 -0
- package/esm2020/order/components/draft-order-detail/draft-order-detail.component.mjs +187 -0
- package/esm2020/order/components/draft-order-variant-selector/draft-order-variant-selector.component.mjs +59 -0
- package/esm2020/order/components/fulfill-order-dialog/fulfill-order-dialog.component.mjs +7 -3
- package/esm2020/order/components/fulfillment-card/fulfillment-card.component.mjs +1 -1
- package/esm2020/order/components/fulfillment-detail/fulfillment-detail.component.mjs +8 -17
- package/esm2020/order/components/line-fulfillment/line-fulfillment.component.mjs +8 -22
- package/esm2020/order/components/order-custom-fields-card/order-custom-fields-card.component.mjs +30 -6
- package/esm2020/order/components/order-detail/order-detail.component.mjs +80 -40
- package/esm2020/order/components/order-editor/order-editor.component.mjs +15 -14
- package/esm2020/order/components/order-edits-preview-dialog/order-edits-preview-dialog.component.mjs +1 -1
- package/esm2020/order/components/order-history/order-history.component.mjs +1 -1
- package/esm2020/order/components/order-list/order-list.component.mjs +40 -17
- package/esm2020/order/components/order-payment-card/order-payment-card.component.mjs +3 -3
- package/esm2020/order/components/order-table/order-table.component.mjs +29 -6
- package/esm2020/order/components/refund-order-dialog/refund-order-dialog.component.mjs +2 -2
- package/esm2020/order/components/select-address-dialog/select-address-dialog.component.mjs +89 -0
- package/esm2020/order/components/select-address-dialog/select-address-dialog.graphql.mjs +14 -0
- package/esm2020/order/components/select-customer-dialog/select-customer-dialog.component.mjs +59 -0
- package/esm2020/order/components/select-shipping-method-dialog/select-shipping-method-dialog.component.mjs +31 -0
- package/esm2020/order/order.module.mjs +20 -2
- package/esm2020/order/order.routes.mjs +23 -4
- package/esm2020/order/providers/routing/order-resolver.mjs +29 -11
- package/esm2020/order/providers/routing/order.guard.mjs +37 -0
- package/esm2020/order/public_api.mjs +9 -1
- package/esm2020/settings/components/administrator-list/administrator-list.component.mjs +1 -1
- package/esm2020/settings/components/channel-list/channel-list.component.mjs +1 -1
- package/esm2020/settings/components/country-list/country-list.component.mjs +3 -3
- package/esm2020/settings/components/payment-method-detail/payment-method-detail.component.mjs +1 -1
- package/esm2020/settings/components/payment-method-list/payment-method-list.component.mjs +1 -1
- package/esm2020/settings/components/permission-grid/permission-grid.component.mjs +1 -1
- package/esm2020/settings/components/profile/profile.component.mjs +3 -3
- package/esm2020/settings/components/role-list/role-list.component.mjs +1 -1
- package/esm2020/settings/components/shipping-method-detail/shipping-method-detail.component.mjs +4 -2
- package/esm2020/settings/components/shipping-method-list/shipping-method-list.component.mjs +1 -1
- package/esm2020/settings/components/tax-category-list/tax-category-list.component.mjs +1 -1
- package/esm2020/settings/components/tax-rate-list/tax-rate-list.component.mjs +1 -1
- package/esm2020/settings/components/zone-detail-dialog/zone-detail-dialog.component.mjs +2 -2
- package/esm2020/settings/components/zone-list/zone-list.component.mjs +3 -3
- package/esm2020/settings/components/zone-member-list/zone-member-list.component.mjs +3 -3
- package/esm2020/system/components/health-check/health-check.component.mjs +2 -2
- package/esm2020/system/components/job-list/job-list.component.mjs +1 -1
- package/fesm2015/vendure-admin-ui-catalog.mjs +1206 -228
- package/fesm2015/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-core.mjs +9451 -7332
- package/fesm2015/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-customer.mjs +36 -23
- package/fesm2015/vendure-admin-ui-customer.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-dashboard.mjs +11 -7
- package/fesm2015/vendure-admin-ui-dashboard.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-login.mjs +2 -2
- package/fesm2015/vendure-admin-ui-login.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-marketing.mjs +3 -3
- package/fesm2015/vendure-admin-ui-marketing.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-order.mjs +1184 -599
- package/fesm2015/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.mjs +21 -19
- package/fesm2015/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-system.mjs +3 -3
- package/fesm2020/vendure-admin-ui-catalog.mjs +1190 -230
- package/fesm2020/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-core.mjs +9539 -7437
- package/fesm2020/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-customer.mjs +36 -23
- package/fesm2020/vendure-admin-ui-customer.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-dashboard.mjs +11 -7
- package/fesm2020/vendure-admin-ui-dashboard.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-login.mjs +2 -2
- package/fesm2020/vendure-admin-ui-login.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-marketing.mjs +3 -3
- package/fesm2020/vendure-admin-ui-marketing.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-order.mjs +1194 -614
- package/fesm2020/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-settings.mjs +21 -19
- package/fesm2020/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-system.mjs +3 -3
- package/order/components/coupon-code-selector/coupon-code-selector.component.d.ts +21 -0
- package/order/components/draft-order-detail/draft-order-detail.component.d.ts +52 -0
- package/order/components/draft-order-variant-selector/draft-order-variant-selector.component.d.ts +24 -0
- package/order/components/order-custom-fields-card/order-custom-fields-card.component.d.ts +4 -2
- package/order/components/order-editor/order-editor.component.d.ts +1 -6
- package/order/components/order-list/order-list.component.d.ts +2 -0
- package/order/components/order-table/order-table.component.d.ts +12 -2
- package/order/components/select-address-dialog/select-address-dialog.component.d.ts +27 -0
- package/order/components/select-address-dialog/select-address-dialog.graphql.d.ts +1 -0
- package/order/components/select-customer-dialog/select-customer-dialog.component.d.ts +25 -0
- package/order/components/select-shipping-method-dialog/select-shipping-method-dialog.component.d.ts +19 -0
- package/order/order.module.d.ts +9 -3
- package/order/providers/routing/order-resolver.d.ts +8 -3
- package/order/providers/routing/order.guard.d.ts +12 -0
- package/order/public_api.d.ts +8 -0
- package/package.json +13 -12
- package/settings/components/zone-member-list/zone-member-list.component.d.ts +3 -1
- package/static/i18n-messages/cs.json +50 -3
- package/static/i18n-messages/de.json +53 -3
- package/static/i18n-messages/en.json +55 -8
- package/static/i18n-messages/es.json +50 -3
- package/static/i18n-messages/fr.json +50 -3
- package/static/i18n-messages/it.json +50 -3
- package/static/i18n-messages/pl.json +50 -3
- package/static/i18n-messages/pt_BR.json +50 -3
- package/static/i18n-messages/pt_PT.json +50 -3
- package/static/i18n-messages/ru.json +50 -3
- package/static/i18n-messages/uk.json +50 -3
- package/static/i18n-messages/zh_Hans.json +50 -3
- package/static/i18n-messages/zh_Hant.json +50 -3
- package/static/styles/_variables.scss +4 -0
- package/static/styles/global/_forms.scss +8 -7
- package/static/styles/global/_overrides.scss +11 -1
- package/static/styles/global/_sass-overrides.scss +3 -0
- package/static/styles/global/_utilities.scss +14 -0
- package/static/styles/styles.scss +1 -0
- package/static/styles/theme/default.scss +13 -1
- package/static/styles/ui-extension-theme.scss +1 -0
- package/static/theme.min.css +1 -1
- package/core/shared/components/rich-text-editor/prosemirror/menu/images.d.ts +0 -4
- package/esm2020/catalog/components/product-search-input/product-search-input.component.mjs +0 -107
- package/esm2020/core/shared/components/rich-text-editor/prosemirror/menu/images.mjs +0 -36
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { SelectionManager } from '../../../common/utilities/selection-manager';
|
|
5
|
+
import { DataService } from '../../../data/providers/data.service';
|
|
6
|
+
import { BulkActionRegistryService } from '../../../providers/bulk-action-registry/bulk-action-registry.service';
|
|
7
|
+
import { BulkAction, BulkActionLocationId } from '../../../providers/bulk-action-registry/bulk-action-types';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class BulkActionMenuComponent<T = any> implements OnInit, OnDestroy {
|
|
10
|
+
private bulkActionRegistryService;
|
|
11
|
+
private injector;
|
|
12
|
+
private route;
|
|
13
|
+
private dataService;
|
|
14
|
+
private changeDetectorRef;
|
|
15
|
+
locationId: BulkActionLocationId;
|
|
16
|
+
selectionManager: SelectionManager<T>;
|
|
17
|
+
hostComponent: any;
|
|
18
|
+
actions$: Observable<Array<BulkAction<T> & {
|
|
19
|
+
display: boolean;
|
|
20
|
+
translationVars: Record<string, string | number>;
|
|
21
|
+
}>>;
|
|
22
|
+
userPermissions: string[];
|
|
23
|
+
private subscription;
|
|
24
|
+
constructor(bulkActionRegistryService: BulkActionRegistryService, injector: Injector, route: ActivatedRoute, dataService: DataService, changeDetectorRef: ChangeDetectorRef);
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
ngOnDestroy(): void;
|
|
27
|
+
hasPermissions(bulkAction: Pick<BulkAction, 'requiresPermission'>): boolean | undefined;
|
|
28
|
+
actionClick(event: MouseEvent, action: BulkAction): void;
|
|
29
|
+
clearSelection(): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BulkActionMenuComponent<any>, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BulkActionMenuComponent<any>, "vdr-bulk-action-menu", never, { "locationId": "locationId"; "selectionManager": "selectionManager"; "hostComponent": "hostComponent"; }, {}, never, never>;
|
|
32
|
+
}
|
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, FormGroup, ValidationErrors, Validator } from '@angular/forms';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
3
4
|
import { ConfigArg, ConfigArgDefinition, ConfigurableOperation, ConfigurableOperationDefinition } from '../../../common/generated-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A form input which renders a card with the internal form fields of the given ConfigurableOperation.
|
|
7
8
|
*/
|
|
8
|
-
export declare class ConfigurableInputComponent implements OnChanges, OnDestroy, ControlValueAccessor, Validator {
|
|
9
|
+
export declare class ConfigurableInputComponent implements OnInit, OnChanges, OnDestroy, ControlValueAccessor, Validator {
|
|
9
10
|
operation?: ConfigurableOperation;
|
|
10
11
|
operationDefinition?: ConfigurableOperationDefinition;
|
|
11
12
|
readonly: boolean;
|
|
12
13
|
removable: boolean;
|
|
14
|
+
position: number;
|
|
13
15
|
remove: EventEmitter<ConfigurableOperation>;
|
|
14
16
|
argValues: {
|
|
15
17
|
[name: string]: any;
|
|
@@ -17,8 +19,11 @@ export declare class ConfigurableInputComponent implements OnChanges, OnDestroy,
|
|
|
17
19
|
onChange: (val: any) => void;
|
|
18
20
|
onTouch: () => void;
|
|
19
21
|
form: FormGroup;
|
|
22
|
+
positionChange$: Observable<number>;
|
|
23
|
+
private positionChangeSubject;
|
|
20
24
|
private subscription;
|
|
21
25
|
interpolateDescription(): string;
|
|
26
|
+
ngOnInit(): void;
|
|
22
27
|
ngOnChanges(changes: SimpleChanges): void;
|
|
23
28
|
ngOnDestroy(): void;
|
|
24
29
|
registerOnChange(fn: any): void;
|
|
@@ -30,5 +35,5 @@ export declare class ConfigurableInputComponent implements OnChanges, OnDestroy,
|
|
|
30
35
|
private createForm;
|
|
31
36
|
validate(c: AbstractControl): ValidationErrors | null;
|
|
32
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurableInputComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConfigurableInputComponent, "vdr-configurable-input", never, { "operation": "operation"; "operationDefinition": "operationDefinition"; "readonly": "readonly"; "removable": "removable"; }, { "remove": "remove"; }, never, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfigurableInputComponent, "vdr-configurable-input", never, { "operation": "operation"; "operationDefinition": "operationDefinition"; "readonly": "readonly"; "removable": "removable"; "position": "position"; }, { "remove": "remove"; }, never, never>;
|
|
34
39
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
2
4
|
import { InputComponentConfig } from '../../../common/component-registry-types';
|
|
3
|
-
import { CustomFieldConfig, CustomFieldsFragment } from '../../../common/generated-types';
|
|
5
|
+
import { CustomFieldConfig, CustomFieldsFragment, LanguageCode } from '../../../common/generated-types';
|
|
4
6
|
import { DataService } from '../../../data/providers/data.service';
|
|
5
7
|
import { CustomFieldComponentService, CustomFieldEntityName } from '../../../providers/custom-field-component/custom-field-component.service';
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
@@ -8,7 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
8
10
|
* This component renders the appropriate type of form input control based
|
|
9
11
|
* on the "type" property of the provided CustomFieldConfig.
|
|
10
12
|
*/
|
|
11
|
-
export declare class CustomFieldControlComponent {
|
|
13
|
+
export declare class CustomFieldControlComponent implements OnInit {
|
|
12
14
|
private dataService;
|
|
13
15
|
private customFieldComponentService;
|
|
14
16
|
entityName: CustomFieldEntityName;
|
|
@@ -20,7 +22,9 @@ export declare class CustomFieldControlComponent {
|
|
|
20
22
|
hasCustomControl: boolean;
|
|
21
23
|
private customComponentPlaceholder;
|
|
22
24
|
private customComponentFactory;
|
|
25
|
+
uiLanguage$: Observable<LanguageCode>;
|
|
23
26
|
constructor(dataService: DataService, customFieldComponentService: CustomFieldComponentService);
|
|
27
|
+
ngOnInit(): void;
|
|
24
28
|
getFieldDefinition(): CustomFieldConfig & {
|
|
25
29
|
ui?: InputComponentConfig;
|
|
26
30
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { AfterContentInit, EventEmitter, QueryList, TemplateRef } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
+
import { SelectionManager } from '../../../common/utilities/selection-manager';
|
|
2
3
|
import { DataTableColumnComponent } from './data-table-column.component';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
@@ -60,23 +61,44 @@ import * as i0 from "@angular/core";
|
|
|
60
61
|
*
|
|
61
62
|
* @docsCategory components
|
|
62
63
|
*/
|
|
63
|
-
export declare class DataTableComponent<T> implements AfterContentInit {
|
|
64
|
+
export declare class DataTableComponent<T> implements AfterContentInit, OnChanges, OnInit, OnDestroy {
|
|
65
|
+
private changeDetectorRef;
|
|
64
66
|
items: T[];
|
|
65
67
|
itemsPerPage: number;
|
|
66
68
|
currentPage: number;
|
|
67
69
|
totalItems: number;
|
|
68
|
-
allSelected: boolean;
|
|
69
|
-
isRowSelectedFn: (item: T) => boolean;
|
|
70
70
|
emptyStateLabel: string;
|
|
71
|
-
|
|
72
|
-
rowSelectChange: EventEmitter<T>;
|
|
71
|
+
selectionManager?: SelectionManager<T>;
|
|
73
72
|
pageChange: EventEmitter<number>;
|
|
74
73
|
itemsPerPageChange: EventEmitter<number>;
|
|
74
|
+
/** @deprecated pass a SelectionManager instance instead */
|
|
75
|
+
allSelected: boolean;
|
|
76
|
+
/** @deprecated pass a SelectionManager instance instead */
|
|
77
|
+
isRowSelectedFn: (item: T) => boolean;
|
|
78
|
+
/** @deprecated pass a SelectionManager instance instead */
|
|
79
|
+
allSelectChange: EventEmitter<void>;
|
|
80
|
+
/** @deprecated pass a SelectionManager instance instead */
|
|
81
|
+
rowSelectChange: EventEmitter<{
|
|
82
|
+
event: MouseEvent;
|
|
83
|
+
item: T;
|
|
84
|
+
}>;
|
|
75
85
|
columns: QueryList<DataTableColumnComponent>;
|
|
76
86
|
templateRefs: QueryList<TemplateRef<any>>;
|
|
77
87
|
rowTemplate: TemplateRef<any>;
|
|
88
|
+
currentStart: number;
|
|
89
|
+
currentEnd: number;
|
|
90
|
+
disableSelect: boolean;
|
|
91
|
+
private subscription;
|
|
92
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
93
|
+
private shiftDownHandler;
|
|
94
|
+
private shiftUpHandler;
|
|
95
|
+
ngOnInit(): void;
|
|
96
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
97
|
+
ngOnDestroy(): void;
|
|
78
98
|
ngAfterContentInit(): void;
|
|
79
99
|
trackByFn(index: number, item: any): any;
|
|
100
|
+
onToggleAllClick(): void;
|
|
101
|
+
onRowClick(item: T, event: MouseEvent): void;
|
|
80
102
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataTableComponent<any>, never>;
|
|
81
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent<any>, "vdr-data-table", never, { "items": "items"; "itemsPerPage": "itemsPerPage"; "currentPage": "currentPage"; "totalItems": "totalItems"; "
|
|
103
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent<any>, "vdr-data-table", never, { "items": "items"; "itemsPerPage": "itemsPerPage"; "currentPage": "currentPage"; "totalItems": "totalItems"; "emptyStateLabel": "emptyStateLabel"; "selectionManager": "selectionManager"; "allSelected": "allSelected"; "isRowSelectedFn": "isRowSelectedFn"; }, { "pageChange": "pageChange"; "itemsPerPageChange": "itemsPerPageChange"; "allSelectChange": "allSelectChange"; "rowSelectChange": "rowSelectChange"; }, ["columns", "templateRefs"], ["vdr-bulk-action-menu"]>;
|
|
82
104
|
}
|
|
@@ -17,6 +17,7 @@ export declare class DropdownMenuComponent implements AfterViewInit, OnInit, OnD
|
|
|
17
17
|
private viewContainerRef;
|
|
18
18
|
private dropdown;
|
|
19
19
|
private position;
|
|
20
|
+
customClasses: string;
|
|
20
21
|
private menuTemplate;
|
|
21
22
|
private menuPortal;
|
|
22
23
|
private overlayRef;
|
|
@@ -29,5 +30,5 @@ export declare class DropdownMenuComponent implements AfterViewInit, OnInit, OnD
|
|
|
29
30
|
/** Inverts an overlay position. */
|
|
30
31
|
private invertPosition;
|
|
31
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenuComponent, "vdr-dropdown-menu", never, { "position": "vdrPosition"; }, {}, never, ["*"]>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenuComponent, "vdr-dropdown-menu", never, { "position": "vdrPosition"; "customClasses": "customClasses"; }, {}, never, ["*"]>;
|
|
33
34
|
}
|
|
@@ -36,12 +36,13 @@ export declare class FacetValueSelectorComponent implements OnInit, ControlValue
|
|
|
36
36
|
selectedValuesChange: EventEmitter<FacetValueFragment[]>;
|
|
37
37
|
facets: FacetWithValuesFragment[];
|
|
38
38
|
readonly: boolean;
|
|
39
|
+
transformControlValueAccessorValue: (value: FacetValueSeletorItem[]) => any[];
|
|
39
40
|
private ngSelect;
|
|
40
41
|
facetValues: FacetValueSeletorItem[];
|
|
41
42
|
onChangeFn: (val: any) => void;
|
|
42
43
|
onTouchFn: () => void;
|
|
43
44
|
disabled: boolean;
|
|
44
|
-
value: string
|
|
45
|
+
value: Array<string | FacetValueFragment>;
|
|
45
46
|
constructor(dataService: DataService);
|
|
46
47
|
ngOnInit(): void;
|
|
47
48
|
onChange(selected: FacetValueSeletorItem[]): void;
|
|
@@ -52,5 +53,5 @@ export declare class FacetValueSelectorComponent implements OnInit, ControlValue
|
|
|
52
53
|
writeValue(obj: string | FacetValueFragment[] | Array<string | number> | null): void;
|
|
53
54
|
private toSelectorItem;
|
|
54
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<FacetValueSelectorComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FacetValueSelectorComponent, "vdr-facet-value-selector", never, { "facets": "facets"; "readonly": "readonly"; }, { "selectedValuesChange": "selectedValuesChange"; }, never, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FacetValueSelectorComponent, "vdr-facet-value-selector", never, { "facets": "facets"; "readonly": "readonly"; "transformControlValueAccessorValue": "transformControlValueAccessorValue"; }, { "selectedValuesChange": "selectedValuesChange"; }, never, never>;
|
|
56
57
|
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { PaginationInstance } from 'ngx-pagination';
|
|
3
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
|
+
import { SearchProductsQuery } from '../../../common/generated-types';
|
|
5
|
+
import { SelectionManager } from '../../../common/utilities/selection-manager';
|
|
6
|
+
import { DataService } from '../../../data/providers/data.service';
|
|
7
|
+
import { Dialog } from '../../../providers/modal/modal.types';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare type SearchItem = SearchProductsQuery['search']['items'][number];
|
|
10
|
+
export declare class ProductMultiSelectorDialogComponent implements OnInit, Dialog<SearchItem[]> {
|
|
11
|
+
private dataService;
|
|
12
|
+
private changeDetector;
|
|
13
|
+
mode: 'product' | 'variant';
|
|
14
|
+
initialSelectionIds: string[];
|
|
15
|
+
items$: Observable<SearchItem[]>;
|
|
16
|
+
facetValues$: Observable<SearchProductsQuery['search']['facetValues']>;
|
|
17
|
+
searchTerm$: BehaviorSubject<string>;
|
|
18
|
+
searchFacetValueIds$: BehaviorSubject<string[]>;
|
|
19
|
+
paginationConfig: PaginationInstance;
|
|
20
|
+
selectionManager: SelectionManager<SearchItem>;
|
|
21
|
+
resolveWith: (result?: SearchItem[]) => void;
|
|
22
|
+
private paginationConfig$;
|
|
23
|
+
constructor(dataService: DataService, changeDetector: ChangeDetectorRef);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
trackByFn(index: number, item: SearchItem): string;
|
|
26
|
+
setSearchTerm(term: string): void;
|
|
27
|
+
setFacetValueIds(ids: string[]): void;
|
|
28
|
+
toggleSelection(item: SearchItem, event: MouseEvent): void;
|
|
29
|
+
clearSelection(): void;
|
|
30
|
+
isSelected(item: SearchItem): boolean;
|
|
31
|
+
entityInfoClick(event: MouseEvent): void;
|
|
32
|
+
pageChange(page: number): void;
|
|
33
|
+
itemsPerPageChange(itemsPerPage: number): void;
|
|
34
|
+
select(): void;
|
|
35
|
+
cancel(): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductMultiSelectorDialogComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductMultiSelectorDialogComponent, "vdr-product-multi-selector-dialog", never, {}, {}, never, never>;
|
|
38
|
+
}
|
package/{catalog → core/shared}/components/product-search-input/product-search-input.component.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { SearchProductsQuery } from '
|
|
2
|
+
import { SearchProductsQuery } from '../../../common/generated-types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
declare type FacetValueResult = SearchProductsQuery['search']['facetValues'][number];
|
|
5
5
|
export declare class ProductSearchInputComponent {
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RadioCardFieldsetComponent<T = any> implements OnInit, OnChanges, OnDestroy {
|
|
5
|
+
private changeDetector;
|
|
6
|
+
selectedItemId: string;
|
|
7
|
+
idFn: (item: T) => string;
|
|
8
|
+
selectItem: EventEmitter<T>;
|
|
9
|
+
groupName: string;
|
|
10
|
+
selectedIdChange$: Subject<string>;
|
|
11
|
+
focussedId: string | undefined;
|
|
12
|
+
private idChange$;
|
|
13
|
+
private subscription;
|
|
14
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
isSelected(item: T): boolean;
|
|
19
|
+
isFocussed(item: T): boolean;
|
|
20
|
+
selectChanged(item: T): void;
|
|
21
|
+
setFocussedId(item: T | undefined): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioCardFieldsetComponent<any>, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioCardFieldsetComponent<any>, "vdr-radio-card-fieldset", never, { "selectedItemId": "selectedItemId"; "idFn": "idFn"; }, { "selectItem": "selectItem"; }, never, ["*"]>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { RadioCardFieldsetComponent } from './radio-card-fieldset.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RadioCardComponent<T = any> implements OnInit, OnDestroy {
|
|
5
|
+
private fieldset;
|
|
6
|
+
private changeDetector;
|
|
7
|
+
item: T;
|
|
8
|
+
itemTemplate: TemplateRef<T>;
|
|
9
|
+
constructor(fieldset: RadioCardFieldsetComponent, changeDetector: ChangeDetectorRef);
|
|
10
|
+
private idChange$;
|
|
11
|
+
private subscription;
|
|
12
|
+
name: string;
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
isSelected(item: T): boolean;
|
|
16
|
+
isFocussed(item: T): boolean;
|
|
17
|
+
selectChanged(item: T): void;
|
|
18
|
+
setFocussedId(item: T | undefined): void;
|
|
19
|
+
getItemId(item: T): string;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioCardComponent<any>, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioCardComponent<any>, "vdr-radio-card", ["VdrRadioCard"], { "item": "item"; }, {}, ["itemTemplate"], ["*"]>;
|
|
22
|
+
}
|
package/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
2
|
+
import { AfterViewInit, OnDestroy, ViewContainerRef } from '@angular/core';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { ContextMenuConfig, ContextMenuItem, ContextMenuService } from './context-menu.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ContextMenuComponent implements AfterViewInit, OnDestroy {
|
|
7
|
+
private overlay;
|
|
8
|
+
private viewContainerRef;
|
|
9
|
+
contextMenuService: ContextMenuService;
|
|
10
|
+
editorMenuElement: HTMLElement | null | undefined;
|
|
11
|
+
private menuTemplate;
|
|
12
|
+
menuConfig: ContextMenuConfig | undefined;
|
|
13
|
+
hideTrigger$: Observable<boolean>;
|
|
14
|
+
private triggerIsHidden;
|
|
15
|
+
private menuPortal;
|
|
16
|
+
private overlayRef;
|
|
17
|
+
private contextMenuSub;
|
|
18
|
+
private contentArea;
|
|
19
|
+
private hideTriggerHandler;
|
|
20
|
+
constructor(overlay: Overlay, viewContainerRef: ViewContainerRef, contextMenuService: ContextMenuService);
|
|
21
|
+
onScroll: () => void;
|
|
22
|
+
ngAfterViewInit(): void;
|
|
23
|
+
triggerClick(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
clickItem(item: ContextMenuItem): void;
|
|
26
|
+
private getPositionStrategy;
|
|
27
|
+
/** Inverts an overlay position. */
|
|
28
|
+
private invertPosition;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextMenuComponent, "vdr-context-menu", never, { "editorMenuElement": "editorMenuElement"; }, {}, never, never>;
|
|
31
|
+
}
|
package/core/shared/components/rich-text-editor/prosemirror/context-menu/context-menu.service.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface ContextMenuConfig {
|
|
4
|
+
ref: any;
|
|
5
|
+
iconShape?: string;
|
|
6
|
+
title: string;
|
|
7
|
+
element: Element;
|
|
8
|
+
coords: {
|
|
9
|
+
left: number;
|
|
10
|
+
right: number;
|
|
11
|
+
top: number;
|
|
12
|
+
bottom: number;
|
|
13
|
+
};
|
|
14
|
+
items: ContextMenuItem[];
|
|
15
|
+
}
|
|
16
|
+
export interface ContextMenuItem {
|
|
17
|
+
separator?: boolean;
|
|
18
|
+
iconClass?: string;
|
|
19
|
+
iconShape?: string;
|
|
20
|
+
label: string;
|
|
21
|
+
enabled: boolean;
|
|
22
|
+
onClick: () => void;
|
|
23
|
+
}
|
|
24
|
+
export declare class ContextMenuService {
|
|
25
|
+
contextMenu$: Observable<ContextMenuConfig | undefined>;
|
|
26
|
+
private menuIsVisible$;
|
|
27
|
+
private setContextMenuConfig$;
|
|
28
|
+
constructor();
|
|
29
|
+
setVisibility(isVisible: boolean): void;
|
|
30
|
+
setContextMenu(config: ContextMenuConfig): void;
|
|
31
|
+
clearContextMenu(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuService, never>;
|
|
33
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContextMenuService>;
|
|
34
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Schema } from 'prosemirror-model';
|
|
2
2
|
import { Plugin } from 'prosemirror-state';
|
|
3
|
-
export declare function blockQuoteRule(nodeType: any):
|
|
4
|
-
export declare function orderedListRule(nodeType: any):
|
|
5
|
-
export declare function bulletListRule(nodeType: any):
|
|
6
|
-
export declare function codeBlockRule(nodeType: any):
|
|
7
|
-
export declare function headingRule(nodeType: any, maxLevel: any):
|
|
3
|
+
export declare function blockQuoteRule(nodeType: any): import("prosemirror-inputrules").InputRule;
|
|
4
|
+
export declare function orderedListRule(nodeType: any): import("prosemirror-inputrules").InputRule;
|
|
5
|
+
export declare function bulletListRule(nodeType: any): import("prosemirror-inputrules").InputRule;
|
|
6
|
+
export declare function codeBlockRule(nodeType: any): import("prosemirror-inputrules").InputRule;
|
|
7
|
+
export declare function headingRule(nodeType: any, maxLevel: any): import("prosemirror-inputrules").InputRule;
|
|
8
8
|
export declare function buildInputRules(schema: Schema): Plugin;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { MenuItem } from 'prosemirror-menu';
|
|
2
2
|
import { MarkType } from 'prosemirror-model';
|
|
3
3
|
import { ModalService } from '../../../../../providers/modal/modal.service';
|
|
4
|
-
export declare function linkItem(linkMark: MarkType, modalService: ModalService): MenuItem
|
|
4
|
+
export declare function linkItem(linkMark: MarkType, modalService: ModalService): MenuItem;
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
import { NodeType } from 'prosemirror-model';
|
|
2
2
|
import { EditorState } from 'prosemirror-state';
|
|
3
|
+
import { EditorView } from 'prosemirror-view';
|
|
3
4
|
export declare function markActive(state: any, type: any): any;
|
|
4
5
|
export declare function canInsert(state: EditorState, nodeType: NodeType): boolean;
|
|
6
|
+
export interface ClarityIconOptions {
|
|
7
|
+
shape: string;
|
|
8
|
+
size?: number;
|
|
9
|
+
label?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function renderClarityIcon(options: ClarityIconOptions): (view: EditorView) => HTMLElement;
|
|
12
|
+
export declare function wrapInMenuItemWithIcon(...elements: Array<HTMLElement | undefined | null>): HTMLSpanElement;
|
|
13
|
+
export declare const IconSize: {
|
|
14
|
+
Large: number;
|
|
15
|
+
Small: number;
|
|
16
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { Schema } from 'prosemirror-model';
|
|
3
|
+
import { Plugin } from 'prosemirror-state';
|
|
4
|
+
export interface CustomMenuPluginOptions {
|
|
5
|
+
floatingMenu?: boolean;
|
|
6
|
+
schema: Schema;
|
|
7
|
+
injector: Injector;
|
|
8
|
+
}
|
|
9
|
+
export declare function customMenuPlugin(options: CustomMenuPluginOptions): Plugin<any>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { DropdownSubmenu, MenuElement } from 'prosemirror-menu';
|
|
2
|
+
import { EditorState } from 'prosemirror-state';
|
|
3
|
+
import { EditorView } from 'prosemirror-view';
|
|
4
|
+
export declare class SubMenuWithIcon extends DropdownSubmenu {
|
|
5
|
+
private icon;
|
|
6
|
+
constructor(content: readonly MenuElement[] | MenuElement, options: {
|
|
7
|
+
label?: string;
|
|
8
|
+
icon: () => HTMLElement;
|
|
9
|
+
});
|
|
10
|
+
render(view: EditorView): {
|
|
11
|
+
dom: HTMLElement;
|
|
12
|
+
update: (state: EditorState) => boolean;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { MenuItem } from 'prosemirror-menu';
|
|
2
|
+
import { NodeType } from 'prosemirror-model';
|
|
3
|
+
import { Plugin } from 'prosemirror-state';
|
|
4
|
+
import { ModalService } from '../../../../../providers/modal/modal.service';
|
|
5
|
+
import { ContextMenuService } from '../context-menu/context-menu.service';
|
|
6
|
+
export declare function insertImageItem(nodeType: NodeType, modalService: ModalService): MenuItem;
|
|
7
|
+
export declare const imageContextMenuPlugin: (contextMenuService: ContextMenuService, modalService: ModalService) => Plugin<any>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Plugin } from 'prosemirror-state';
|
|
2
|
+
import { ModalService } from '../../../../../providers/modal/modal.service';
|
|
3
|
+
import { ContextMenuService } from '../context-menu/context-menu.service';
|
|
4
|
+
/**
|
|
5
|
+
* Implements editing of raw HTML for the selected node in the editor.
|
|
6
|
+
*/
|
|
7
|
+
export declare const rawEditorPlugin: (contextMenuService: ContextMenuService, modalService: ModalService) => Plugin<any>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MenuElement } from 'prosemirror-menu';
|
|
2
|
+
import { Schema } from 'prosemirror-model';
|
|
3
|
+
import { Plugin } from 'prosemirror-state';
|
|
4
|
+
import { ContextMenuService } from '../context-menu/context-menu.service';
|
|
5
|
+
export declare const tableContextMenuPlugin: (contextMenuService: ContextMenuService) => Plugin<any>;
|
|
6
|
+
export declare function getTableNodes(): import("prosemirror-tables").TableNodes;
|
|
7
|
+
export declare function getTableMenu(schema: Schema): MenuElement[];
|
|
8
|
+
export declare function addTable(state: any, dispatch: any, { rowsCount, colsCount, withHeaderRow, cellContent }: {
|
|
9
|
+
rowsCount: any;
|
|
10
|
+
colsCount: any;
|
|
11
|
+
withHeaderRow: any;
|
|
12
|
+
cellContent: any;
|
|
13
|
+
}): void;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
1
2
|
import { EditorView } from 'prosemirror-view';
|
|
2
|
-
import {
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { ContextMenuService } from './context-menu/context-menu.service';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
export interface CreateEditorViewOptions {
|
|
5
7
|
onTextInput: (content: string) => void;
|
|
@@ -7,11 +9,13 @@ export interface CreateEditorViewOptions {
|
|
|
7
9
|
isReadOnly: () => boolean;
|
|
8
10
|
}
|
|
9
11
|
export declare class ProsemirrorService {
|
|
10
|
-
private
|
|
12
|
+
private injector;
|
|
13
|
+
private contextMenuService;
|
|
11
14
|
editorView: EditorView;
|
|
12
15
|
private mySchema;
|
|
13
16
|
private enabled;
|
|
14
|
-
constructor(
|
|
17
|
+
constructor(injector: Injector, contextMenuService: ContextMenuService);
|
|
18
|
+
contextMenuItems$: Observable<string>;
|
|
15
19
|
createEditorView(options: CreateEditorViewOptions): void;
|
|
16
20
|
update(text: string): void;
|
|
17
21
|
destroy(): void;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { MenuItem } from 'prosemirror-menu';
|
|
2
1
|
import { Schema } from 'prosemirror-model';
|
|
3
2
|
export interface SetupOptions {
|
|
4
3
|
schema: Schema;
|
|
@@ -6,6 +5,5 @@ export interface SetupOptions {
|
|
|
6
5
|
menuBar?: boolean;
|
|
7
6
|
history?: boolean;
|
|
8
7
|
floatingMenu?: boolean;
|
|
9
|
-
menuContent?: MenuItem[][];
|
|
10
8
|
}
|
|
11
9
|
export declare type Keymap = Record<string, string | false>;
|
package/core/shared/components/rich-text-editor/raw-html-dialog/raw-html-dialog.component.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { ConfigArgDefinition } from '../../../../common/generated-types';
|
|
4
|
+
import { Dialog } from '../../../../providers/modal/modal.types';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class RawHtmlDialogComponent implements OnInit, Dialog<string> {
|
|
7
|
+
html: string;
|
|
8
|
+
formControl: FormControl;
|
|
9
|
+
config: ConfigArgDefinition;
|
|
10
|
+
resolveWith: (html: string | undefined) => void;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
process(str: string): string;
|
|
13
|
+
/**
|
|
14
|
+
* Taken from https://stackoverflow.com/a/26361620/772859
|
|
15
|
+
*/
|
|
16
|
+
format(node: Element, level?: number): Element;
|
|
17
|
+
cancel(): void;
|
|
18
|
+
select(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RawHtmlDialogComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RawHtmlDialogComponent, "vdr-raw-html-dialog", never, {}, {}, never, never>;
|
|
21
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, OnDestroy, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { ContextMenuService } from './prosemirror/context-menu/context-menu.service';
|
|
3
4
|
import { ProsemirrorService } from './prosemirror/prosemirror.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
@@ -19,6 +20,8 @@ import * as i0 from "@angular/core";
|
|
|
19
20
|
export declare class RichTextEditorComponent implements ControlValueAccessor, AfterViewInit, OnDestroy {
|
|
20
21
|
private changeDetector;
|
|
21
22
|
private prosemirrorService;
|
|
23
|
+
private viewContainerRef;
|
|
24
|
+
contextMenuService: ContextMenuService;
|
|
22
25
|
label: string;
|
|
23
26
|
set readonly(value: any);
|
|
24
27
|
_readonly: boolean;
|
|
@@ -26,7 +29,8 @@ export declare class RichTextEditorComponent implements ControlValueAccessor, Af
|
|
|
26
29
|
onTouch: () => void;
|
|
27
30
|
private value;
|
|
28
31
|
private editorEl;
|
|
29
|
-
constructor(changeDetector: ChangeDetectorRef, prosemirrorService: ProsemirrorService);
|
|
32
|
+
constructor(changeDetector: ChangeDetectorRef, prosemirrorService: ProsemirrorService, viewContainerRef: ViewContainerRef, contextMenuService: ContextMenuService);
|
|
33
|
+
get menuElement(): HTMLDivElement | null;
|
|
30
34
|
ngAfterViewInit(): void;
|
|
31
35
|
ngOnDestroy(): void;
|
|
32
36
|
registerOnChange(fn: any): void;
|
|
@@ -6,9 +6,10 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare class SelectToggleComponent {
|
|
7
7
|
size: 'small' | 'large';
|
|
8
8
|
selected: boolean;
|
|
9
|
+
hiddenWhenOff: boolean;
|
|
9
10
|
disabled: boolean;
|
|
10
11
|
label: string | undefined;
|
|
11
12
|
selectedChange: EventEmitter<boolean>;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectToggleComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectToggleComponent, "vdr-select-toggle", never, { "size": "size"; "selected": "selected"; "disabled": "disabled"; "label": "label"; }, { "selectedChange": "selectedChange"; }, never, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectToggleComponent, "vdr-select-toggle", never, { "size": "size"; "selected": "selected"; "hiddenWhenOff": "hiddenWhenOff"; "disabled": "disabled"; "label": "label"; }, { "selectedChange": "selectedChange"; }, never, never>;
|
|
14
15
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { FormControl, ValidatorFn } from '@angular/forms';
|
|
3
|
+
import { DefaultFormComponentConfig } from '@vendure/common/lib/shared-types';
|
|
4
|
+
import { CodeJar } from 'codejar';
|
|
5
|
+
import { FormInputComponent } from '../../../common/component-registry-types';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export interface CodeEditorConfig {
|
|
8
|
+
validator: ValidatorFn;
|
|
9
|
+
getErrorMessage: (content: string) => string | undefined;
|
|
10
|
+
highlight: (content: string, errorPos: number | undefined) => string;
|
|
11
|
+
}
|
|
12
|
+
export declare abstract class BaseCodeEditorFormInputComponent implements FormInputComponent, AfterViewInit {
|
|
13
|
+
protected changeDetector: ChangeDetectorRef;
|
|
14
|
+
readonly: boolean;
|
|
15
|
+
formControl: FormControl;
|
|
16
|
+
config: DefaultFormComponentConfig<'json-editor-form-input'>;
|
|
17
|
+
isValid: boolean;
|
|
18
|
+
errorMessage: string | undefined;
|
|
19
|
+
private editorElementRef;
|
|
20
|
+
jar: CodeJar;
|
|
21
|
+
private highlight;
|
|
22
|
+
private getErrorMessage;
|
|
23
|
+
protected constructor(changeDetector: ChangeDetectorRef);
|
|
24
|
+
get height(): string | undefined;
|
|
25
|
+
configure(config: CodeEditorConfig): void;
|
|
26
|
+
ngAfterViewInit(): void;
|
|
27
|
+
protected getErrorPos(errorMessage: string | undefined): number | undefined;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseCodeEditorFormInputComponent, never>;
|
|
29
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseCodeEditorFormInputComponent, never, never, {}, {}, never>;
|
|
30
|
+
}
|
package/core/shared/dynamic-form-inputs/code-editor-form-input/html-editor-form-input.component.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { DefaultFormComponentId } from '@vendure/common/lib/shared-types';
|
|
3
|
+
import { FormInputComponent } from '../../../common/component-registry-types';
|
|
4
|
+
import { BaseCodeEditorFormInputComponent } from './base-code-editor-form-input.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* @description
|
|
8
|
+
* A JSON editor input with syntax highlighting and error detection. Works well
|
|
9
|
+
* with `text` type fields.
|
|
10
|
+
*
|
|
11
|
+
* @docsCategory custom-input-components
|
|
12
|
+
* @docsPage default-inputs
|
|
13
|
+
*/
|
|
14
|
+
export declare class HtmlEditorFormInputComponent extends BaseCodeEditorFormInputComponent implements FormInputComponent, AfterViewInit, OnInit {
|
|
15
|
+
protected changeDetector: ChangeDetectorRef;
|
|
16
|
+
static readonly id: DefaultFormComponentId;
|
|
17
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
private encodeHtmlChars;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorFormInputComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorFormInputComponent, "vdr-html-editor-form-input", never, {}, {}, never, never>;
|
|
22
|
+
}
|