@newsletterstudio/umbraco 14.0.0-rc1
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/dist/backend-api/core/ApiError.d.ts +10 -0
- package/dist/backend-api/core/ApiRequestOptions.d.ts +14 -0
- package/dist/backend-api/core/ApiResult.d.ts +7 -0
- package/dist/backend-api/core/CancelablePromise.d.ts +26 -0
- package/dist/backend-api/core/OpenAPI.d.ts +27 -0
- package/dist/backend-api/core/request.d.ts +29 -0
- package/dist/backend-api/enums.gen.d.ts +7 -0
- package/dist/backend-api/index.d.ts +5 -0
- package/dist/backend-api/schemas.gen.d.ts +3730 -0
- package/dist/backend-api/services.gen.d.ts +577 -0
- package/dist/backend-api/types.gen.d.ts +2633 -0
- package/dist/constants.d.ts +1 -0
- package/dist/core/actions/components/ns-action-dropdown.element.d.ts +30 -0
- package/dist/core/avatars/ns-avatar.context.d.ts +14 -0
- package/dist/core/components/drag/index.d.ts +4 -0
- package/dist/core/components/drag/lit-sortable.d.ts +29 -0
- package/dist/core/components/drag/ns-drag-container-controller.d.ts +11 -0
- package/dist/core/components/drag/ns-drag-container.element.d.ts +31 -0
- package/dist/core/components/drag/ns-drag-item.element.d.ts +17 -0
- package/dist/core/components/index.d.ts +50 -0
- package/dist/core/components/ns-align/ns-align.element.d.ts +28 -0
- package/dist/core/components/ns-auto-scroll/auto-scroller.d.ts +2 -0
- package/dist/core/components/ns-auto-scroll/ns-auto-scroll.element.d.ts +19 -0
- package/dist/core/components/ns-avatar/ns-avatar.element.d.ts +39 -0
- package/dist/core/components/ns-box/ns-box.element.d.ts +23 -0
- package/dist/core/components/ns-campaign-sending-progress/ns-campaign-sending-progress.element.d.ts +35 -0
- package/dist/core/components/ns-chart-campaign-doughnut/ns-chart-campaign-doughnut.element.d.ts +25 -0
- package/dist/core/components/ns-chart-campaign-doughnut/stories/demo-ns-chart-campaign-doughnut.element.d.ts +25 -0
- package/dist/core/components/ns-chart-campaign-stats/ns-chart-campaign-stats.element.d.ts +39 -0
- package/dist/core/components/ns-chart-funnel/ns-chart-funnel.element.d.ts +19 -0
- package/dist/core/components/ns-chart-subscriber-growth/ns-chart-subscriber-growth.element.d.ts +26 -0
- package/dist/core/components/ns-checkbox/ns-checkbox.element.d.ts +43 -0
- package/dist/core/components/ns-checkbox-list/ns-checkbox-list.element.d.ts +37 -0
- package/dist/core/components/ns-color-picker/ns-color-picker.element.d.ts +79 -0
- package/dist/core/components/ns-color-picker/ns-color-picker.helpers.d.ts +1 -0
- package/dist/core/components/ns-create-form/ns-create-form.element.d.ts +28 -0
- package/dist/core/components/ns-create-form/stories/demo-ns-create-form.element.d.ts +19 -0
- package/dist/core/components/ns-css/index.d.ts +5 -0
- package/dist/core/components/ns-css/ns-alert-styles.d.ts +1 -0
- package/dist/core/components/ns-css/ns-button-group-styles.d.ts +1 -0
- package/dist/core/components/ns-css/ns-button-styles.d.ts +2 -0
- package/dist/core/components/ns-css/ns-form-styles.d.ts +1 -0
- package/dist/core/components/ns-css/ns-select-style.d.ts +1 -0
- package/dist/core/components/ns-css/ns-transactional-indicator-styles.d.ts +1 -0
- package/dist/core/components/ns-css/ns-variables.d.ts +5 -0
- package/dist/core/components/ns-days-picker/ns-days-picker.element.d.ts +23 -0
- package/dist/core/components/ns-email-address-collection/ns-email-address-collection.element.d.ts +35 -0
- package/dist/core/components/ns-email-campaign-send/ns-email-campaign-send.element.d.ts +30 -0
- package/dist/core/components/ns-email-editor/actions/ns-email-editor-action-icon.element.d.ts +24 -0
- package/dist/core/components/ns-email-editor/controls/create-control-editor-element.d.ts +29 -0
- package/dist/core/components/ns-email-editor/controls/ns-email-editor-control-display-ui.element.d.ts +28 -0
- package/dist/core/components/ns-email-editor/index.d.ts +1 -0
- package/dist/core/components/ns-email-editor/ns-email-editor-add-row.element.d.ts +27 -0
- package/dist/core/components/ns-email-editor/ns-email-editor-columns.element.d.ts +33 -0
- package/dist/core/components/ns-email-editor/ns-email-editor-controls.element.d.ts +32 -0
- package/dist/core/components/ns-email-editor/ns-email-editor-rows.element.d.ts +31 -0
- package/dist/core/components/ns-email-editor/ns-email-editor.controller.d.ts +8 -0
- package/dist/core/components/ns-email-editor/ns-email-editor.element.d.ts +32 -0
- package/dist/core/components/ns-email-editor/readme-json-example.json +859 -0
- package/dist/core/components/ns-email-editor/sidebar/insert/ns-email-editor-insert-control.element.d.ts +19 -0
- package/dist/core/components/ns-email-editor/sidebar/ns-email-editor-control-edit-ui.element.d.ts +30 -0
- package/dist/core/components/ns-email-editor/sidebar/ns-email-editor-sidebar.element.d.ts +29 -0
- package/dist/core/components/ns-email-editor/sidebar/row/ns-email-editor-row-settings.element.d.ts +23 -0
- package/dist/core/components/ns-email-editor/sidebar/settings/ns-email-editor-email-settings.element.d.ts +21 -0
- package/dist/core/components/ns-email-editor/stories/demo-ns-email-editor.__stories__.d.ts +0 -0
- package/dist/core/components/ns-email-editor/stories/demo-ns-email-editor.element.d.ts +1 -0
- package/dist/core/components/ns-email-list/ns-email-list-item.element.d.ts +30 -0
- package/dist/core/components/ns-email-list/ns-email-list.element.d.ts +62 -0
- package/dist/core/components/ns-email-list/stories/demo-ns-email-list.element.d.ts +13 -0
- package/dist/core/components/ns-email-modal-layout/ns-email-modal-layout.element.d.ts +32 -0
- package/dist/core/components/ns-email-modal-layout/stories/demo-ns-email-modal-layout.element.d.ts +24 -0
- package/dist/core/components/ns-email-preview/ns-email-preview.element.d.ts +33 -0
- package/dist/core/components/ns-error-box/ns-error-box.element.d.ts +23 -0
- package/dist/core/components/ns-expandable/ns-expandable.element.d.ts +27 -0
- package/dist/core/components/ns-expander/ns-expander.element.d.ts +19 -0
- package/dist/core/components/ns-filter-dropdown/ns-filter-dropdown.element.d.ts +34 -0
- package/dist/core/components/ns-filter-input/ns-filter-input.element.d.ts +21 -0
- package/dist/core/components/ns-font-picker/ns-font-picker.element.d.ts +33 -0
- package/dist/core/components/ns-font-size-picker/ns-font-size-picker.element.d.ts +30 -0
- package/dist/core/components/ns-form-server-validation/ns-form-server-validation.element.d.ts +0 -0
- package/dist/core/components/ns-icons/index.d.ts +10 -0
- package/dist/core/components/ns-icons/ns-icon-align-center.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-align-left.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-align-right.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-arrow-down.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-arrow-up.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-back.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-check.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-color-picker.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-next.d.ts +1 -0
- package/dist/core/components/ns-icons/ns-icon-padding.d.ts +1 -0
- package/dist/core/components/ns-iframe/ns-iframe.element.d.ts +22 -0
- package/dist/core/components/ns-json-debug/ns-json-debug.element.d.ts +24 -0
- package/dist/core/components/ns-license-tag/ns-license-tag.element.d.ts +25 -0
- package/dist/core/components/ns-link-picker/ns-link-picker.element.d.ts +45 -0
- package/dist/core/components/ns-mailing-list-picker/ns-mailing-list-picker.element.d.ts +34 -0
- package/dist/core/components/ns-numeric-input/ns-numeric-input.element.d.ts +54 -0
- package/dist/core/components/ns-padding-editor/ns-padding-editor.element.d.ts +74 -0
- package/dist/core/components/ns-property/ns-property-group.element.d.ts +35 -0
- package/dist/core/components/ns-property/ns-property.element.d.ts +37 -0
- package/dist/core/components/ns-property/ns-property.models.d.ts +1 -0
- package/dist/core/components/ns-recipient-list-picker/ns-recipient-list-picker.element.d.ts +24 -0
- package/dist/core/components/ns-select/ns-select.element.d.ts +28 -0
- package/dist/core/components/ns-sending-progress/ns-sending-progress.element.d.ts +18 -0
- package/dist/core/components/ns-size/ns-size.element.d.ts +28 -0
- package/dist/core/components/ns-stats-box/ns-stats-box.element.d.ts +19 -0
- package/dist/core/components/ns-stats-bullet/ns-stats-bullet.element.d.ts +16 -0
- package/dist/core/components/ns-timeline/ns-timeline-date.element.d.ts +14 -0
- package/dist/core/components/ns-timeline/ns-timeline-event.element.d.ts +18 -0
- package/dist/core/components/ns-timeline/ns-timeline-icon.element.d.ts +20 -0
- package/dist/core/components/ns-timeline/ns-timeline.element.d.ts +14 -0
- package/dist/core/components/ns-transactional-email-picker/ns-transactional-email-picker.element.d.ts +34 -0
- package/dist/core/components/ns-tree-menu/ns-tree-menu.element.d.ts +28 -0
- package/dist/core/components/ns-umb-demo/ns-umb-demo.element.d.ts +23 -0
- package/dist/core/components/ns-validation-errors-debug/ns-validation-errors-debug.element.d.ts +20 -0
- package/dist/core/debugging/renderCounter.d.ts +16 -0
- package/dist/core/extensibility/actions/ns-actions.models.d.ts +33 -0
- package/dist/core/extensibility/email-editor/NsEmailEditorControlDisplayUiBase.d.ts +13 -0
- package/dist/core/extensibility/email-editor/NsEmailEditorControlEditUiBase.d.ts +4 -0
- package/dist/core/extensibility/email-editor/NsEmailEditorControlUiBase.d.ts +14 -0
- package/dist/core/extensibility/email-editor/email-control.models.d.ts +13 -0
- package/dist/core/extensibility/email-editor/email-editor-css.d.ts +1 -0
- package/dist/core/extensibility/email-editor/email-editor.models.d.ts +94 -0
- package/dist/core/extensibility/email-service/NsEmailServiceProviderUiBase.d.ts +23 -0
- package/dist/core/extensibility/email-service/email-service-provider.models.d.ts +9 -0
- package/dist/core/extensibility/index.d.ts +10 -0
- package/dist/core/extensibility/unique.model.d.ts +3 -0
- package/dist/core/form.helper.d.ts +7 -0
- package/dist/core/formatting.d.ts +19 -0
- package/dist/core/forms/index.d.ts +2 -0
- package/dist/core/forms/ns-form-context.d.ts +43 -0
- package/dist/core/forms/umb-fixes/bind-form-to-validation.lit-directive.d.ts +34 -0
- package/dist/core/forms/umb-fixes/bind-server-validation-to-form-control.controller.d.ts +19 -0
- package/dist/core/forms/umb-fixes/bind-to-validation.lit-directive.d.ts +34 -0
- package/dist/core/generic-events.d.ts +11 -0
- package/dist/core/index.d.ts +20 -0
- package/dist/core/links.d.ts +1 -0
- package/dist/core/localization.helper.d.ts +3 -0
- package/dist/core/manifest.d.ts +1 -0
- package/dist/core/merge-fields-helper.d.ts +2 -0
- package/dist/core/modal/modal-adjustments.d.ts +5 -0
- package/dist/core/modal/ns-item-picker-modal/manifest.d.ts +2 -0
- package/dist/core/modal/ns-item-picker-modal/ns-item-picker-modal.element.d.ts +25 -0
- package/dist/core/modal/ns-item-picker-modal/ns-item-picker-modal.token.d.ts +27 -0
- package/dist/core/notification.helper.d.ts +5 -0
- package/dist/core/ns-click-outside.controller.d.ts +20 -0
- package/dist/core/ns-lit.element.d.ts +14 -0
- package/dist/core/page.d.ts +3 -0
- package/dist/core/realtime/index.d.ts +1 -0
- package/dist/core/realtime/ns-realtime-context.d.ts +17 -0
- package/dist/core/refresh-events.d.ts +14 -0
- package/dist/core/scroll-to-top.d.ts +8 -0
- package/dist/core/string.helper.d.ts +9 -0
- package/dist/core/types.d.ts +17 -0
- package/dist/core/udi-helper.d.ts +7 -0
- package/dist/entry.d.ts +3 -0
- package/dist/external/lit/index.d.ts +13 -0
- package/dist/manifest.d.ts +2 -0
- package/dist/modules/administration/about/ns-administration-about.element.d.ts +17 -0
- package/dist/modules/administration/debug/ns-administration-debug.element.d.ts +27 -0
- package/dist/modules/administration/edit/components/ns-administration-edit-custom-fields.element.d.ts +31 -0
- package/dist/modules/administration/edit/components/ns-administration-edit-permissions.element.d.ts +38 -0
- package/dist/modules/administration/edit/email-services/ns-email-service-settings-pickup.element.d.ts +18 -0
- package/dist/modules/administration/edit/email-services/ns-email-service-settings-smtp.element.d.ts +35 -0
- package/dist/modules/administration/edit/manifest.d.ts +2 -0
- package/dist/modules/administration/edit/ns-administration-edit.element.d.ts +35 -0
- package/dist/modules/administration/entity.d.ts +1 -0
- package/dist/modules/administration/index.d.ts +2 -0
- package/dist/modules/administration/list/components/ns-administration-connect-license.element.d.ts +42 -0
- package/dist/modules/administration/list/ns-administration-list.element.d.ts +23 -0
- package/dist/modules/administration/manifest.d.ts +2 -0
- package/dist/modules/administration/new/ns-administration-new-workspace.element.d.ts +24 -0
- package/dist/modules/administration/ns-administration-workspace.context.d.ts +24 -0
- package/dist/modules/campaign/campaign-utilities.d.ts +17 -0
- package/dist/modules/campaign/common/email-list-item-updater.d.ts +3 -0
- package/dist/modules/campaign/content-section/index.d.ts +2 -0
- package/dist/modules/campaign/content-section/manifest.d.ts +2 -0
- package/dist/modules/campaign/content-section/modal/manifest.d.ts +1 -0
- package/dist/modules/campaign/content-section/modal/ns-campaign-content-section-modal.element.d.ts +24 -0
- package/dist/modules/campaign/content-section/modal/ns-document-campaign-modal-context.d.ts +39 -0
- package/dist/modules/campaign/content-section/modal/steps/ns-document-campaign-edit-information.element.d.ts +28 -0
- package/dist/modules/campaign/content-section/modal/steps/ns-document-campaign-edit-preview.element.d.ts +22 -0
- package/dist/modules/campaign/content-section/modal/steps/ns-document-campaign-edit-send.element.d.ts +27 -0
- package/dist/modules/campaign/content-section/ns-document-campaign-workspace-modal.token.d.ts +7 -0
- package/dist/modules/campaign/content-section/ns-document-campaign-workspace.context.d.ts +30 -0
- package/dist/modules/campaign/content-section/views/manifest.d.ts +9 -0
- package/dist/modules/campaign/content-section/views/ns-campaign-content-section-workspace-view.element.d.ts +35 -0
- package/dist/modules/campaign/email-section/index.d.ts +2 -0
- package/dist/modules/campaign/email-section/manifest.d.ts +1 -0
- package/dist/modules/campaign/email-section/modal/manifest.d.ts +1 -0
- package/dist/modules/campaign/email-section/modal/ns-editor-campaign-modal-context.d.ts +39 -0
- package/dist/modules/campaign/email-section/modal/ns-editor-campaign-modal.element.d.ts +22 -0
- package/dist/modules/campaign/email-section/modal/steps/ns-editor-campaign-edit-design.element.d.ts +22 -0
- package/dist/modules/campaign/email-section/modal/steps/ns-editor-campaign-edit-information.element.d.ts +32 -0
- package/dist/modules/campaign/email-section/modal/steps/ns-editor-campaign-edit-preview.element.d.ts +22 -0
- package/dist/modules/campaign/email-section/modal/steps/ns-editor-campaign-edit-send.element.d.ts +31 -0
- package/dist/modules/campaign/email-section/ns-campaign-workspace-modal-token.d.ts +9 -0
- package/dist/modules/campaign/email-section/ns-campaign-workspace.context.d.ts +24 -0
- package/dist/modules/campaign/email-section/report/ns-campaign-report-section.element.d.ts +23 -0
- package/dist/modules/campaign/email-section/views/ns-campaigns.element.d.ts +35 -0
- package/dist/modules/campaign/entity.d.ts +4 -0
- package/dist/modules/campaign/index.d.ts +5 -0
- package/dist/modules/campaign/manifest.d.ts +1 -0
- package/dist/modules/campaign/report/campaign-report-workspace-modal.token.d.ts +5 -0
- package/dist/modules/campaign/report/campaign-report-workspace.context.d.ts +25 -0
- package/dist/modules/campaign/report/index.d.ts +2 -0
- package/dist/modules/campaign/report/manifest.d.ts +2 -0
- package/dist/modules/campaign/report/ns-campaign-report-root.element.d.ts +25 -0
- package/dist/modules/campaign/report/overview/ns-campaign-report-overview.element.d.ts +20 -0
- package/dist/modules/campaign/report/recipients/ns-campaign-report-recipients.element.d.ts +24 -0
- package/dist/modules/campaign/report/recipients/timeline/manifest.d.ts +2 -0
- package/dist/modules/campaign/report/recipients/timeline/ns-campaign-report-recipient-timeline-modal.token.d.ts +8 -0
- package/dist/modules/campaign/report/recipients/timeline/ns-campaign-report-recipient.timeline.element.d.ts +26 -0
- package/dist/modules/dashboard/components/ns-dashboard-license-status.element.d.ts +23 -0
- package/dist/modules/dashboard/components/ns-workspace-dashboard-view.element.d.ts +34 -0
- package/dist/modules/dashboard/manifest.d.ts +15 -0
- package/dist/modules/dashboard/ns-workspace-dashboard.element.d.ts +21 -0
- package/dist/modules/email-editor/controls/button/manifest.d.ts +2 -0
- package/dist/modules/email-editor/controls/button/ns-email-editor-control-button-display.element.d.ts +16 -0
- package/dist/modules/email-editor/controls/button/ns-email-editor-control-button-edit.element.d.ts +20 -0
- package/dist/modules/email-editor/controls/button/ns-email-editor-control-button.models.d.ts +3 -0
- package/dist/modules/email-editor/controls/divider/manifest.d.ts +2 -0
- package/dist/modules/email-editor/controls/divider/ns-email-editor-control-divider-display.element.d.ts +16 -0
- package/dist/modules/email-editor/controls/divider/ns-email-editor-control-divider-edit.element.d.ts +16 -0
- package/dist/modules/email-editor/controls/divider/ns-email-editor-control-divider.models.d.ts +3 -0
- package/dist/modules/email-editor/controls/image/manifest.d.ts +2 -0
- package/dist/modules/email-editor/controls/image/ns-email-editor-control-image-display.element.d.ts +21 -0
- package/dist/modules/email-editor/controls/image/ns-email-editor-control-image-edit.element.d.ts +24 -0
- package/dist/modules/email-editor/controls/image/ns-email-editor-control-image.models.d.ts +3 -0
- package/dist/modules/email-editor/controls/macro/manifest.d.ts +2 -0
- package/dist/modules/email-editor/controls/macro/ns-email-editor-control-macro-display.element.d.ts +18 -0
- package/dist/modules/email-editor/controls/macro/ns-email-editor-control-macro-edit.element.d.ts +23 -0
- package/dist/modules/email-editor/controls/macro/ns-email-editor-control-macro.models.d.ts +3 -0
- package/dist/modules/email-editor/controls/text/manifest.d.ts +3 -0
- package/dist/modules/email-editor/controls/text/ns-email-editor-control-text-display.element.d.ts +20 -0
- package/dist/modules/email-editor/controls/text/ns-email-editor-control-text-edit.element.d.ts +23 -0
- package/dist/modules/email-editor/controls/text/ns-email-editor-control-text.models.d.ts +3 -0
- package/dist/modules/email-editor/controls/text/tiny-mce-plugin.d.ts +6 -0
- package/dist/modules/email-editor/index.d.ts +5 -0
- package/dist/modules/email-editor/manifest.d.ts +1 -0
- package/dist/modules/email-editor/ns-email-editor-context-token.d.ts +3 -0
- package/dist/modules/email-editor/ns-email-editor-context.d.ts +68 -0
- package/dist/modules/email-editor/ns-email-editor-context.models.d.ts +23 -0
- package/dist/modules/email-editor/ns-email-modal-base-element.d.ts +74 -0
- package/dist/modules/email-editor/ns-email-modal-context-base.d.ts +22 -0
- package/dist/modules/email-editor/ns-email-modal-valiation-path-translator.d.ts +19 -0
- package/dist/modules/email-editor/ns-email-settings-collection.d.ts +22 -0
- package/dist/modules/global/index.d.ts +1 -0
- package/dist/modules/global/newsletter-studio.context.d.ts +14 -0
- package/dist/modules/mailing-list/edit/actions/export/ns-maling-list-export.action.d.ts +6 -0
- package/dist/modules/mailing-list/edit/actions/import/manifest.d.ts +2 -0
- package/dist/modules/mailing-list/edit/actions/import/ns-mailing-list-import-modal.element.d.ts +34 -0
- package/dist/modules/mailing-list/edit/actions/import/ns-mailing-list-import-modal.token.d.ts +7 -0
- package/dist/modules/mailing-list/edit/actions/import/ns-mailing-list-import.action.d.ts +6 -0
- package/dist/modules/mailing-list/edit/actions/manifest.d.ts +2 -0
- package/dist/modules/mailing-list/edit/actions/remove/ns-mailing-list-remove.action.d.ts +6 -0
- package/dist/modules/mailing-list/edit/ns-mailing-list-edit.element.d.ts +31 -0
- package/dist/modules/mailing-list/entity.d.ts +1 -0
- package/dist/modules/mailing-list/index.d.ts +3 -0
- package/dist/modules/mailing-list/list/ns-mailing-list-list.element.d.ts +23 -0
- package/dist/modules/mailing-list/manifest.d.ts +2 -0
- package/dist/modules/mailing-list/new/ns-mailing-list-new.element.d.ts +19 -0
- package/dist/modules/mailing-list/ns-mailing-list-workspace-context-token.d.ts +0 -0
- package/dist/modules/mailing-list/ns-mailing-list-workspace-modal.token.d.ts +5 -0
- package/dist/modules/mailing-list/ns-mailing-list-workspace.context.d.ts +17 -0
- package/dist/modules/manifest.d.ts +1 -0
- package/dist/modules/property-editors/index.d.ts +0 -0
- package/dist/modules/property-editors/mailing-list-picker/manifest.d.ts +2 -0
- package/dist/modules/property-editors/mailing-list-picker/ns-mailing-list-picker-property-editor.element.d.ts +33 -0
- package/dist/modules/property-editors/manifest.d.ts +1 -0
- package/dist/modules/property-editors/transactional-email-picker/manifest.d.ts +2 -0
- package/dist/modules/property-editors/transactional-email-picker/ns-transactional-email-picker-editor.element.d.ts +31 -0
- package/dist/modules/recipient/edit/actions/ns-recipient-remove.action.d.ts +6 -0
- package/dist/modules/recipient/edit/components/ns-recipient-subscriptions.element.d.ts +27 -0
- package/dist/modules/recipient/edit/manifest.d.ts +2 -0
- package/dist/modules/recipient/edit/ns-recipient-edit.element.d.ts +29 -0
- package/dist/modules/recipient/entity.d.ts +1 -0
- package/dist/modules/recipient/features/ns-recipient-export-downloader.d.ts +3 -0
- package/dist/modules/recipient/index.d.ts +4 -0
- package/dist/modules/recipient/list/actions/ns-recipients-export.action.d.ts +6 -0
- package/dist/modules/recipient/list/manifest.d.ts +2 -0
- package/dist/modules/recipient/list/ns-recipient-list.element.d.ts +27 -0
- package/dist/modules/recipient/manifest.d.ts +2 -0
- package/dist/modules/recipient/ns-recipient-workspace-modal.token.d.ts +5 -0
- package/dist/modules/recipient/ns-recipient-workspace.context.d.ts +17 -0
- package/dist/modules/settings/edit/ns-settings-edit.element.d.ts +21 -0
- package/dist/modules/settings/entity.d.ts +1 -0
- package/dist/modules/settings/index.d.ts +2 -0
- package/dist/modules/settings/manifest.d.ts +2 -0
- package/dist/modules/settings/ns-settings-workspace.context.d.ts +17 -0
- package/dist/modules/transactional/activities/components/ns-transactional-log.element.d.ts +28 -0
- package/dist/modules/transactional/activities/details/ns-transactional-email-details.element.d.ts +24 -0
- package/dist/modules/transactional/activities/message/ns-transactional-view-message.element.d.ts +26 -0
- package/dist/modules/transactional/activities/ns-transactional-all-activities.element.d.ts +22 -0
- package/dist/modules/transactional/entity.d.ts +2 -0
- package/dist/modules/transactional/index.d.ts +3 -0
- package/dist/modules/transactional/manifest.d.ts +2 -0
- package/dist/modules/transactional/ns-transactional-workspace-modal.token.d.ts +8 -0
- package/dist/modules/transactional/ns-transactional-workspace.context.d.ts +17 -0
- package/dist/modules/transactional/template/create/ns-transactional-template-create.element.d.ts +19 -0
- package/dist/modules/transactional/template/edit/actions/ns-transactional-remove.action.d.ts +6 -0
- package/dist/modules/transactional/template/edit/activities/ns-transactional-template-edit-activities.element.d.ts +20 -0
- package/dist/modules/transactional/template/edit/manifest.d.ts +2 -0
- package/dist/modules/transactional/template/edit/ns-transactional-template-edit.context.d.ts +42 -0
- package/dist/modules/transactional/template/edit/ns-transactional-template-edit.element.d.ts +28 -0
- package/dist/modules/transactional/template/edit/settings/modal/manifest.d.ts +0 -0
- package/dist/modules/transactional/template/edit/settings/modal/models.d.ts +0 -0
- package/dist/modules/transactional/template/edit/settings/modal/ns-transactional-template-email-designer.context.d.ts +11 -0
- package/dist/modules/transactional/template/edit/settings/modal/ns-transactional-template-email-designer.element.d.ts +21 -0
- package/dist/modules/transactional/template/edit/settings/modal/steps/ns-transactional-template-edit-design.element.d.ts +23 -0
- package/dist/modules/transactional/template/edit/settings/modal/steps/ns-transactional-template-edit-information.element.d.ts +28 -0
- package/dist/modules/transactional/template/edit/settings/modal/steps/ns-transactional-template-edit-preview.element.d.ts +20 -0
- package/dist/modules/transactional/template/edit/settings/ns-transactional-template-edit-settings.element.d.ts +25 -0
- package/dist/modules/transactional/template/list/ns-transactional-template-list.element.d.ts +26 -0
- package/dist/modules/transactional/template/manifest.d.ts +1 -0
- package/dist/section-tree.element.d.ts +12 -0
- package/dist/section.d.ts +1 -0
- package/package.json +35 -0
- package/readme.md +74 -0
|
@@ -0,0 +1,859 @@
|
|
|
1
|
+
{
|
|
2
|
+
"campaign": {
|
|
3
|
+
"id": 58,
|
|
4
|
+
"uniqueKey": "e9665adb-38e0-463c-bdac-da5eb6a90fa2",
|
|
5
|
+
"workspaceKey": "fe9b1df2-960e-4ac8-861a-51524de3895f",
|
|
6
|
+
"name": "Test merge fields",
|
|
7
|
+
"subject": "Test merge fields",
|
|
8
|
+
"senderName": "Newsletter Studio",
|
|
9
|
+
"senderEmail": "info@newsletterstudio.org",
|
|
10
|
+
"themeAlias": "Default",
|
|
11
|
+
"recipientLists": [
|
|
12
|
+
"ns_l_5"
|
|
13
|
+
],
|
|
14
|
+
"content": {
|
|
15
|
+
"rows": [
|
|
16
|
+
{
|
|
17
|
+
"columns": [
|
|
18
|
+
{
|
|
19
|
+
"columns": 4,
|
|
20
|
+
"controls": [
|
|
21
|
+
{
|
|
22
|
+
"controlTypeAlias": "image",
|
|
23
|
+
"padding": {
|
|
24
|
+
"top": 20,
|
|
25
|
+
"right": 10,
|
|
26
|
+
"bottom": 20,
|
|
27
|
+
"left": 10
|
|
28
|
+
},
|
|
29
|
+
"imageUdi": "umb://media/d95805b3fde44a45aae7e6b3e994a4e7",
|
|
30
|
+
"align": "center",
|
|
31
|
+
"link": null,
|
|
32
|
+
"imageSize": 199,
|
|
33
|
+
"imageHeight": 0,
|
|
34
|
+
"aspectRatio": "original",
|
|
35
|
+
"rowAndColumnInfo": {
|
|
36
|
+
"columns": 4,
|
|
37
|
+
"stackOnSmallScreen": false
|
|
38
|
+
},
|
|
39
|
+
"meta": {
|
|
40
|
+
"sizeWasMax": false,
|
|
41
|
+
"imageMax": 580,
|
|
42
|
+
"imageUrl": "/media/egzgjdf5/logo-canvas.png?width=398&height=136&mode=crop¢er=0.5,0.5",
|
|
43
|
+
"width": 199
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"controlTypeAlias": "image",
|
|
48
|
+
"padding": {
|
|
49
|
+
"top": 0,
|
|
50
|
+
"right": 0,
|
|
51
|
+
"bottom": 0,
|
|
52
|
+
"left": 0
|
|
53
|
+
},
|
|
54
|
+
"imageUdi": "umb://media/5146fa0f2412411d8b343d43b5d00640",
|
|
55
|
+
"align": "center",
|
|
56
|
+
"link": null,
|
|
57
|
+
"imageSize": 600,
|
|
58
|
+
"imageHeight": 0,
|
|
59
|
+
"aspectRatio": "original",
|
|
60
|
+
"rowAndColumnInfo": {
|
|
61
|
+
"columns": 4,
|
|
62
|
+
"stackOnSmallScreen": false
|
|
63
|
+
},
|
|
64
|
+
"meta": {
|
|
65
|
+
"sizeWasMax": true,
|
|
66
|
+
"imageMax": 600,
|
|
67
|
+
"imageUrl": "/media/tvghubcj/ns-hero-2.png?width=1200&height=600&mode=crop",
|
|
68
|
+
"width": 600
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"backgroundColor": "#0c335e",
|
|
75
|
+
"backgroundImage": "",
|
|
76
|
+
"fullWidth": false,
|
|
77
|
+
"stackOnSmallScreen": false
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"columns": [
|
|
81
|
+
{
|
|
82
|
+
"columns": 4,
|
|
83
|
+
"controls": [
|
|
84
|
+
{
|
|
85
|
+
"controlTypeAlias": "text",
|
|
86
|
+
"html": "<p style=\"text-align: center;\"><strong>Does it blend!? 😁</strong></p>",
|
|
87
|
+
"padding": {
|
|
88
|
+
"top": 40,
|
|
89
|
+
"right": 0,
|
|
90
|
+
"bottom": 10,
|
|
91
|
+
"left": 0
|
|
92
|
+
},
|
|
93
|
+
"textColor": "#083D77",
|
|
94
|
+
"linkColor": "",
|
|
95
|
+
"fontSize": "34px",
|
|
96
|
+
"fontFamily": null,
|
|
97
|
+
"rowAndColumnInfo": {
|
|
98
|
+
"columns": 4,
|
|
99
|
+
"stackOnSmallScreen": false
|
|
100
|
+
},
|
|
101
|
+
"meta": {}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"controlTypeAlias": "button",
|
|
105
|
+
"buttonText": "Link with Merge Field",
|
|
106
|
+
"buttonLink": "http://www.test.com/?name={{firstname}}",
|
|
107
|
+
"buttonSize": "small",
|
|
108
|
+
"isInverted": false,
|
|
109
|
+
"align": "center",
|
|
110
|
+
"backgroundColor": "",
|
|
111
|
+
"textColor": "",
|
|
112
|
+
"padding": {
|
|
113
|
+
"top": 10,
|
|
114
|
+
"right": 10,
|
|
115
|
+
"bottom": 10,
|
|
116
|
+
"left": 10
|
|
117
|
+
},
|
|
118
|
+
"rowAndColumnInfo": {
|
|
119
|
+
"columns": 4,
|
|
120
|
+
"stackOnSmallScreen": false
|
|
121
|
+
},
|
|
122
|
+
"meta": {}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"controlTypeAlias": "text",
|
|
126
|
+
"html": "<p style=\"text-align: center;\">Firstname: {{firstname}} {{lastname}}</p>\n<p style=\"text-align: center;\">Name: {{name}}</p>\n<p style=\"text-align: center;\"><a href=\"/{localLink:umb://document/5013d57aed4541ba8cb728d8f5ae4962}?name={{firstname}}\" title=\"Help\" data-anchor=\"?name={{firstname}}\">Your link</a></p>\n<p style=\"text-align: center;\">Today we announce the official release of Newsletter Studio 4.0 for Umbraco 9. Thank you to everyone who tried the RC and provided valuable <a href=\"/{localLink:umb://document/e2792dc3616e4933af2d06b65ba78f84}?test={firstname}\" title=\"Features\" data-anchor=\"?test={firstname}\">feedback</a>!<br /><br /><br /></p>\n<ul>\n<li style=\"text-align: left;\">✅ It might work</li>\n<li style=\"text-align: left;\">✅ Not sure if it does</li>\n<li style=\"text-align: left;\">✅ We will see.</li>\n</ul>",
|
|
127
|
+
"padding": {
|
|
128
|
+
"top": 10,
|
|
129
|
+
"right": 20,
|
|
130
|
+
"bottom": 20,
|
|
131
|
+
"left": 20
|
|
132
|
+
},
|
|
133
|
+
"textColor": "",
|
|
134
|
+
"linkColor": "",
|
|
135
|
+
"fontSize": null,
|
|
136
|
+
"fontFamily": null,
|
|
137
|
+
"rowAndColumnInfo": {
|
|
138
|
+
"columns": 4,
|
|
139
|
+
"stackOnSmallScreen": false
|
|
140
|
+
},
|
|
141
|
+
"meta": {}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"controlTypeAlias": "text",
|
|
145
|
+
"html": "<p>New text...</p>",
|
|
146
|
+
"padding": {
|
|
147
|
+
"top": 10,
|
|
148
|
+
"right": 10,
|
|
149
|
+
"bottom": 10,
|
|
150
|
+
"left": 10
|
|
151
|
+
},
|
|
152
|
+
"textColor": "",
|
|
153
|
+
"linkColor": "",
|
|
154
|
+
"fontSize": null,
|
|
155
|
+
"fontFamily": null,
|
|
156
|
+
"rowAndColumnInfo": {
|
|
157
|
+
"columns": 4,
|
|
158
|
+
"stackOnSmallScreen": false
|
|
159
|
+
},
|
|
160
|
+
"meta": {}
|
|
161
|
+
}
|
|
162
|
+
]
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"backgroundColor": "",
|
|
166
|
+
"backgroundImage": "",
|
|
167
|
+
"fullWidth": false,
|
|
168
|
+
"stackOnSmallScreen": false
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"columns": [
|
|
172
|
+
{
|
|
173
|
+
"columns": 4,
|
|
174
|
+
"controls": [
|
|
175
|
+
{
|
|
176
|
+
"controlTypeAlias": "button",
|
|
177
|
+
"buttonText": "Check them out now",
|
|
178
|
+
"buttonLink": "https://www.newsletterstudio.org/download/",
|
|
179
|
+
"buttonSize": "medium",
|
|
180
|
+
"isInverted": false,
|
|
181
|
+
"align": "center",
|
|
182
|
+
"backgroundColor": "#8447FF",
|
|
183
|
+
"textColor": "#FFFFFF",
|
|
184
|
+
"padding": {
|
|
185
|
+
"top": 20,
|
|
186
|
+
"right": 10,
|
|
187
|
+
"bottom": 30,
|
|
188
|
+
"left": 10
|
|
189
|
+
},
|
|
190
|
+
"rowAndColumnInfo": {
|
|
191
|
+
"columns": 4,
|
|
192
|
+
"stackOnSmallScreen": false
|
|
193
|
+
},
|
|
194
|
+
"meta": {}
|
|
195
|
+
}
|
|
196
|
+
]
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"backgroundColor": "#FFFFFF",
|
|
200
|
+
"backgroundImage": "",
|
|
201
|
+
"fullWidth": false,
|
|
202
|
+
"stackOnSmallScreen": false
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"columns": [
|
|
206
|
+
{
|
|
207
|
+
"columns": 4,
|
|
208
|
+
"controls": [
|
|
209
|
+
{
|
|
210
|
+
"controlTypeAlias": "text",
|
|
211
|
+
"html": "<h2 style=\"text-align: center;\"><strong>Video walkthrough</strong></h2>\n<p style=\"text-align: center;\">Want to know all the latest stuff? Like how to send transactional emails using our API? Watch our video walkthrough.</p>",
|
|
212
|
+
"padding": {
|
|
213
|
+
"top": 30,
|
|
214
|
+
"right": 20,
|
|
215
|
+
"bottom": 20,
|
|
216
|
+
"left": 20
|
|
217
|
+
},
|
|
218
|
+
"textColor": "",
|
|
219
|
+
"linkColor": "",
|
|
220
|
+
"fontSize": null,
|
|
221
|
+
"fontFamily": null,
|
|
222
|
+
"rowAndColumnInfo": {
|
|
223
|
+
"columns": 4,
|
|
224
|
+
"stackOnSmallScreen": false
|
|
225
|
+
},
|
|
226
|
+
"meta": {}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"controlTypeAlias": "image",
|
|
230
|
+
"padding": {
|
|
231
|
+
"top": 10,
|
|
232
|
+
"right": 10,
|
|
233
|
+
"bottom": 10,
|
|
234
|
+
"left": 10
|
|
235
|
+
},
|
|
236
|
+
"imageUdi": "umb://media/8ae77b84185b44a089cf3dc12cf85519",
|
|
237
|
+
"align": "center",
|
|
238
|
+
"link": "https://www.newsletterstudio.org/videos/#beta7walkthrough",
|
|
239
|
+
"imageSize": 580,
|
|
240
|
+
"imageHeight": 0,
|
|
241
|
+
"aspectRatio": "original",
|
|
242
|
+
"rowAndColumnInfo": {
|
|
243
|
+
"columns": 4,
|
|
244
|
+
"stackOnSmallScreen": false
|
|
245
|
+
},
|
|
246
|
+
"meta": {
|
|
247
|
+
"sizeWasMax": true,
|
|
248
|
+
"imageMax": 580,
|
|
249
|
+
"imageUrl": "/media/c1gnxxya/ns-video-thumb.png?width=1160&height=720&mode=crop",
|
|
250
|
+
"width": 580
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"controlTypeAlias": "button",
|
|
255
|
+
"buttonText": "Watch video now!",
|
|
256
|
+
"buttonLink": "https://www.newsletterstudio.org/videos/#beta7walkthrough",
|
|
257
|
+
"buttonSize": "medium",
|
|
258
|
+
"isInverted": false,
|
|
259
|
+
"align": "center",
|
|
260
|
+
"backgroundColor": "#8447FF",
|
|
261
|
+
"textColor": "",
|
|
262
|
+
"padding": {
|
|
263
|
+
"top": 20,
|
|
264
|
+
"right": 10,
|
|
265
|
+
"bottom": 40,
|
|
266
|
+
"left": 10
|
|
267
|
+
},
|
|
268
|
+
"rowAndColumnInfo": {
|
|
269
|
+
"columns": 4,
|
|
270
|
+
"stackOnSmallScreen": false
|
|
271
|
+
},
|
|
272
|
+
"meta": {}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"controlTypeAlias": "text",
|
|
276
|
+
"html": "<h2 style=\"text-align: center;\"><strong>Did you try the previous versions? </strong></h2>\n<p style=\"text-align: center;\">If not, here are some of the highlights in the new version.</p>",
|
|
277
|
+
"padding": {
|
|
278
|
+
"top": 20,
|
|
279
|
+
"right": 20,
|
|
280
|
+
"bottom": 50,
|
|
281
|
+
"left": 20
|
|
282
|
+
},
|
|
283
|
+
"textColor": "",
|
|
284
|
+
"linkColor": "",
|
|
285
|
+
"fontSize": null,
|
|
286
|
+
"fontFamily": null,
|
|
287
|
+
"rowAndColumnInfo": {
|
|
288
|
+
"columns": 4,
|
|
289
|
+
"stackOnSmallScreen": false
|
|
290
|
+
},
|
|
291
|
+
"meta": {}
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"controlTypeAlias": "text",
|
|
295
|
+
"html": "<p style=\"text-align: center;\"><strong>New responsive email editor</strong></p>",
|
|
296
|
+
"padding": {
|
|
297
|
+
"top": 10,
|
|
298
|
+
"right": 10,
|
|
299
|
+
"bottom": 2,
|
|
300
|
+
"left": 10
|
|
301
|
+
},
|
|
302
|
+
"textColor": "",
|
|
303
|
+
"linkColor": "",
|
|
304
|
+
"fontSize": "22px",
|
|
305
|
+
"fontFamily": null,
|
|
306
|
+
"rowAndColumnInfo": {
|
|
307
|
+
"columns": 4,
|
|
308
|
+
"stackOnSmallScreen": false
|
|
309
|
+
},
|
|
310
|
+
"meta": {}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"controlTypeAlias": "image",
|
|
314
|
+
"padding": {
|
|
315
|
+
"top": 5,
|
|
316
|
+
"right": 20,
|
|
317
|
+
"bottom": 10,
|
|
318
|
+
"left": 20
|
|
319
|
+
},
|
|
320
|
+
"imageUdi": "umb://media/ffd9cb2b6d964b57b1120b264b815f52",
|
|
321
|
+
"align": "center",
|
|
322
|
+
"link": null,
|
|
323
|
+
"imageSize": 560,
|
|
324
|
+
"imageHeight": 0,
|
|
325
|
+
"aspectRatio": "original",
|
|
326
|
+
"rowAndColumnInfo": {
|
|
327
|
+
"columns": 4,
|
|
328
|
+
"stackOnSmallScreen": false
|
|
329
|
+
},
|
|
330
|
+
"meta": {
|
|
331
|
+
"sizeWasMax": true,
|
|
332
|
+
"imageMax": 560,
|
|
333
|
+
"imageUrl": "/media/xf4olkwn/screen-3-editor.png?width=1120&height=630&mode=crop",
|
|
334
|
+
"width": 560
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"controlTypeAlias": "text",
|
|
339
|
+
"html": "<p style=\"text-align: center;\"><strong>Nice and feature rich reports</strong></p>",
|
|
340
|
+
"padding": {
|
|
341
|
+
"top": 40,
|
|
342
|
+
"right": 10,
|
|
343
|
+
"bottom": 0,
|
|
344
|
+
"left": 10
|
|
345
|
+
},
|
|
346
|
+
"textColor": "",
|
|
347
|
+
"linkColor": "",
|
|
348
|
+
"fontSize": "22px",
|
|
349
|
+
"fontFamily": null,
|
|
350
|
+
"rowAndColumnInfo": {
|
|
351
|
+
"columns": 4,
|
|
352
|
+
"stackOnSmallScreen": false
|
|
353
|
+
},
|
|
354
|
+
"meta": {}
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"controlTypeAlias": "image",
|
|
358
|
+
"padding": {
|
|
359
|
+
"top": 5,
|
|
360
|
+
"right": 20,
|
|
361
|
+
"bottom": 0,
|
|
362
|
+
"left": 20
|
|
363
|
+
},
|
|
364
|
+
"imageUdi": "umb://media/21359007b3024e72b540ba6b8bd1fa39",
|
|
365
|
+
"align": "center",
|
|
366
|
+
"link": null,
|
|
367
|
+
"imageSize": 560,
|
|
368
|
+
"imageHeight": 0,
|
|
369
|
+
"aspectRatio": "original",
|
|
370
|
+
"rowAndColumnInfo": {
|
|
371
|
+
"columns": 4,
|
|
372
|
+
"stackOnSmallScreen": false
|
|
373
|
+
},
|
|
374
|
+
"meta": {
|
|
375
|
+
"sizeWasMax": true,
|
|
376
|
+
"imageMax": 560,
|
|
377
|
+
"imageUrl": "/media/sutbs3cz/screen1.png?width=1120&height=646&mode=crop",
|
|
378
|
+
"width": 560
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"controlTypeAlias": "text",
|
|
383
|
+
"html": "<p style=\"text-align: center;\"><strong>New recipient details view</strong></p>",
|
|
384
|
+
"padding": {
|
|
385
|
+
"top": 40,
|
|
386
|
+
"right": 10,
|
|
387
|
+
"bottom": 0,
|
|
388
|
+
"left": 10
|
|
389
|
+
},
|
|
390
|
+
"textColor": "",
|
|
391
|
+
"linkColor": "",
|
|
392
|
+
"fontSize": "22px",
|
|
393
|
+
"fontFamily": null,
|
|
394
|
+
"rowAndColumnInfo": {
|
|
395
|
+
"columns": 4,
|
|
396
|
+
"stackOnSmallScreen": false
|
|
397
|
+
},
|
|
398
|
+
"meta": {}
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"controlTypeAlias": "image",
|
|
402
|
+
"padding": {
|
|
403
|
+
"top": 5,
|
|
404
|
+
"right": 20,
|
|
405
|
+
"bottom": 70,
|
|
406
|
+
"left": 20
|
|
407
|
+
},
|
|
408
|
+
"imageUdi": "umb://media/b215957ad3c04e5c8321ad70b10fff5d",
|
|
409
|
+
"align": "center",
|
|
410
|
+
"link": null,
|
|
411
|
+
"imageSize": 560,
|
|
412
|
+
"imageHeight": 0,
|
|
413
|
+
"aspectRatio": "original",
|
|
414
|
+
"rowAndColumnInfo": {
|
|
415
|
+
"columns": 4,
|
|
416
|
+
"stackOnSmallScreen": false
|
|
417
|
+
},
|
|
418
|
+
"meta": {
|
|
419
|
+
"sizeWasMax": true,
|
|
420
|
+
"imageMax": 560,
|
|
421
|
+
"imageUrl": "/media/3arctz21/screen-2-recipient.png?width=1120&height=586&mode=crop",
|
|
422
|
+
"width": 560
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
]
|
|
426
|
+
}
|
|
427
|
+
],
|
|
428
|
+
"backgroundColor": "",
|
|
429
|
+
"backgroundImage": "",
|
|
430
|
+
"fullWidth": false,
|
|
431
|
+
"stackOnSmallScreen": false
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"columns": [
|
|
435
|
+
{
|
|
436
|
+
"columns": 4,
|
|
437
|
+
"controls": [
|
|
438
|
+
{
|
|
439
|
+
"controlTypeAlias": "text",
|
|
440
|
+
"html": "",
|
|
441
|
+
"padding": {
|
|
442
|
+
"top": 40,
|
|
443
|
+
"right": 10,
|
|
444
|
+
"bottom": 0,
|
|
445
|
+
"left": 10
|
|
446
|
+
},
|
|
447
|
+
"textColor": "#ffffff",
|
|
448
|
+
"linkColor": "",
|
|
449
|
+
"fontSize": "24px",
|
|
450
|
+
"fontFamily": null,
|
|
451
|
+
"rowAndColumnInfo": {
|
|
452
|
+
"columns": 4,
|
|
453
|
+
"stackOnSmallScreen": false
|
|
454
|
+
},
|
|
455
|
+
"meta": {}
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"controlTypeAlias": "text",
|
|
459
|
+
"html": "<h2 style=\"text-align: center;\"><strong>Try it today!</strong></h2>",
|
|
460
|
+
"padding": {
|
|
461
|
+
"top": 10,
|
|
462
|
+
"right": 10,
|
|
463
|
+
"bottom": 10,
|
|
464
|
+
"left": 10
|
|
465
|
+
},
|
|
466
|
+
"textColor": "#ffffff",
|
|
467
|
+
"linkColor": "",
|
|
468
|
+
"fontSize": "",
|
|
469
|
+
"fontFamily": null,
|
|
470
|
+
"rowAndColumnInfo": {
|
|
471
|
+
"columns": 4,
|
|
472
|
+
"stackOnSmallScreen": false
|
|
473
|
+
},
|
|
474
|
+
"meta": {}
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"controlTypeAlias": "text",
|
|
478
|
+
"html": "",
|
|
479
|
+
"padding": {
|
|
480
|
+
"top": 10,
|
|
481
|
+
"right": 40,
|
|
482
|
+
"bottom": 10,
|
|
483
|
+
"left": 40
|
|
484
|
+
},
|
|
485
|
+
"textColor": "#ffffff",
|
|
486
|
+
"linkColor": "",
|
|
487
|
+
"fontSize": null,
|
|
488
|
+
"fontFamily": null,
|
|
489
|
+
"rowAndColumnInfo": {
|
|
490
|
+
"columns": 4,
|
|
491
|
+
"stackOnSmallScreen": false
|
|
492
|
+
},
|
|
493
|
+
"meta": {}
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"controlTypeAlias": "text",
|
|
497
|
+
"html": "<p style=\"text-align: center;\">The new version is a total remake/rewrite - improved for modern emails for both desktop and mobile.</p>",
|
|
498
|
+
"padding": {
|
|
499
|
+
"top": 0,
|
|
500
|
+
"right": 40,
|
|
501
|
+
"bottom": 10,
|
|
502
|
+
"left": 40
|
|
503
|
+
},
|
|
504
|
+
"textColor": "#FFFFFF",
|
|
505
|
+
"linkColor": "",
|
|
506
|
+
"fontSize": null,
|
|
507
|
+
"fontFamily": null,
|
|
508
|
+
"rowAndColumnInfo": {
|
|
509
|
+
"columns": 4,
|
|
510
|
+
"stackOnSmallScreen": false
|
|
511
|
+
},
|
|
512
|
+
"meta": {}
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"controlTypeAlias": "button",
|
|
516
|
+
"buttonText": "Read the announcement",
|
|
517
|
+
"buttonLink": "umb://document/060488a98bbc42cb9c7f918486c9ab7f",
|
|
518
|
+
"buttonSize": "medium",
|
|
519
|
+
"isInverted": false,
|
|
520
|
+
"align": "center",
|
|
521
|
+
"backgroundColor": "#31D843",
|
|
522
|
+
"textColor": "#FFFFFF",
|
|
523
|
+
"padding": {
|
|
524
|
+
"top": 20,
|
|
525
|
+
"right": 10,
|
|
526
|
+
"bottom": 50,
|
|
527
|
+
"left": 10
|
|
528
|
+
},
|
|
529
|
+
"rowAndColumnInfo": {
|
|
530
|
+
"columns": 4,
|
|
531
|
+
"stackOnSmallScreen": false
|
|
532
|
+
},
|
|
533
|
+
"meta": {}
|
|
534
|
+
}
|
|
535
|
+
]
|
|
536
|
+
}
|
|
537
|
+
],
|
|
538
|
+
"backgroundColor": "#6A31DE",
|
|
539
|
+
"backgroundImage": null,
|
|
540
|
+
"fullWidth": false,
|
|
541
|
+
"stackOnSmallScreen": false
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"columns": [
|
|
545
|
+
{
|
|
546
|
+
"columns": 4,
|
|
547
|
+
"controls": [
|
|
548
|
+
{
|
|
549
|
+
"controlTypeAlias": "text",
|
|
550
|
+
"html": "<p style=\"text-align: center;\">We're sending this since you have an existing license or have signed up for updates. If you don't want any more emails from us, please <a href=\"/{{unsubscribe}}\">unsubscribe</a>.</p>\n<p style=\"text-align: center;\"><a href=\"/{{readinbrowser}}\">Read in browser</a></p>",
|
|
551
|
+
"padding": {
|
|
552
|
+
"top": 10,
|
|
553
|
+
"right": 10,
|
|
554
|
+
"bottom": 10,
|
|
555
|
+
"left": 10
|
|
556
|
+
},
|
|
557
|
+
"textColor": "",
|
|
558
|
+
"linkColor": "",
|
|
559
|
+
"fontSize": "10px",
|
|
560
|
+
"fontFamily": null,
|
|
561
|
+
"rowAndColumnInfo": {
|
|
562
|
+
"columns": 4,
|
|
563
|
+
"stackOnSmallScreen": false
|
|
564
|
+
},
|
|
565
|
+
"meta": {}
|
|
566
|
+
}
|
|
567
|
+
]
|
|
568
|
+
}
|
|
569
|
+
],
|
|
570
|
+
"backgroundColor": "",
|
|
571
|
+
"backgroundImage": null,
|
|
572
|
+
"fullWidth": false,
|
|
573
|
+
"stackOnSmallScreen": false
|
|
574
|
+
}
|
|
575
|
+
],
|
|
576
|
+
"settings": {
|
|
577
|
+
"backgroundColor": "#F2F2F2",
|
|
578
|
+
"controlButtonBackgroundColor": "",
|
|
579
|
+
"controlButtonTextColor": "",
|
|
580
|
+
"controlTextTextColor": "#083D77",
|
|
581
|
+
"controlTextLinkColor": "",
|
|
582
|
+
"controlTextFontSize": "18px"
|
|
583
|
+
},
|
|
584
|
+
"previewText": "We just pushed new releases for both Umbraco 9 and Umbraco 8. This includes the first stable release for Umbraco 9."
|
|
585
|
+
},
|
|
586
|
+
"scheduledSendDate": null
|
|
587
|
+
},
|
|
588
|
+
"themes": [
|
|
589
|
+
{
|
|
590
|
+
"alias": "Default",
|
|
591
|
+
"configuration": {
|
|
592
|
+
"name": "Default",
|
|
593
|
+
"backgroundColor": "#F3F3F3",
|
|
594
|
+
"selectableColors": "#991BAD,#31D843,#8447FF,#0F2947,#0F2947,#ffffff,#000000",
|
|
595
|
+
"rowBackgroundColor": "#ffffff",
|
|
596
|
+
"controlButtonBackgroundColor": "#31D843",
|
|
597
|
+
"controlButtonTextColor": "#FFFFFF",
|
|
598
|
+
"controlButtonFontFamily": "Arial, 'Helvetica Neue', Helvetica, sans-serif",
|
|
599
|
+
"controlButtonSmallPadding": "12px 25px",
|
|
600
|
+
"controlButtonSmallFontSize": "16px",
|
|
601
|
+
"controlButtonMediumPadding": "16px 35px",
|
|
602
|
+
"controlButtonMediumFontSize": "18px",
|
|
603
|
+
"controlButtonLargePadding": "20px 50px",
|
|
604
|
+
"controlButtonLargeFontSize": "20px",
|
|
605
|
+
"controlTextTextColor": "#000000",
|
|
606
|
+
"controlTextLinkColor": "#8447FF",
|
|
607
|
+
"controlTextFontFamily": "Arial, 'Helvetica Neue', Helvetica, sans-serif",
|
|
608
|
+
"controlTextFontSize": "16px",
|
|
609
|
+
"controlTextHeading1FontFamily": "Arial, 'Helvetica Neue', Helvetica, sans-serif",
|
|
610
|
+
"controlTextHeading1FontSize": "32px",
|
|
611
|
+
"controlTextHeading2FontFamily": "Arial, 'Helvetica Neue', Helvetica, sans-serif",
|
|
612
|
+
"controlTextHeading2FontSize": "28px",
|
|
613
|
+
"controlTextHeading3FontFamily": "Arial, 'Helvetica Neue', Helvetica, sans-serif",
|
|
614
|
+
"controlTextHeading3FontSize": "24px"
|
|
615
|
+
},
|
|
616
|
+
"isDefault": true
|
|
617
|
+
}
|
|
618
|
+
],
|
|
619
|
+
"controlTypes": [
|
|
620
|
+
{
|
|
621
|
+
"alias": "button",
|
|
622
|
+
"viewRender": "/app_plugins/newsletterstudio/common/Directives/NsEmailEditor/Controls/Button/button.html",
|
|
623
|
+
"viewEdit": "/app_plugins/newsletterstudio/common/Directives/NsEmailEditor/Controls/Button/buttonEdit.html"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"alias": "text",
|
|
627
|
+
"viewRender": "/app_plugins/newsletterstudio/common/Directives/NsEmailEditor/Controls/Text/text.html",
|
|
628
|
+
"viewEdit": "/app_plugins/newsletterstudio/common/Directives/NsEmailEditor/Controls/Text/textEdit.html"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"alias": "image",
|
|
632
|
+
"viewRender": "/app_plugins/newsletterstudio/common/Directives/NsEmailEditor/Controls/Image/image.html",
|
|
633
|
+
"viewEdit": "/app_plugins/newsletterstudio/common/Directives/NsEmailEditor/Controls/Image/imageEdit.html"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"alias": "macro",
|
|
637
|
+
"viewRender": "/app_plugins/newsletterstudio/common/Directives/NsEmailEditor/Controls/Macro/macro.html",
|
|
638
|
+
"viewEdit": "/app_plugins/newsletterstudio/common/Directives/NsEmailEditor/Controls/Macro/macroEdit.html"
|
|
639
|
+
}
|
|
640
|
+
],
|
|
641
|
+
"editorToolboxControls": [
|
|
642
|
+
{
|
|
643
|
+
"controlTypeAlias": "button",
|
|
644
|
+
"buttonText": "Click here!",
|
|
645
|
+
"buttonLink": null,
|
|
646
|
+
"buttonSize": "small",
|
|
647
|
+
"isInverted": false,
|
|
648
|
+
"align": "center",
|
|
649
|
+
"backgroundColor": null,
|
|
650
|
+
"textColor": null,
|
|
651
|
+
"padding": {
|
|
652
|
+
"top": 10,
|
|
653
|
+
"right": 10,
|
|
654
|
+
"bottom": 10,
|
|
655
|
+
"left": 10
|
|
656
|
+
},
|
|
657
|
+
"rowAndColumnInfo": null,
|
|
658
|
+
"meta": {},
|
|
659
|
+
"icon": "icon-frame-alt",
|
|
660
|
+
"iconSvg": ""
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"controlTypeAlias": "text",
|
|
664
|
+
"html": "<p>New text...</p>",
|
|
665
|
+
"padding": {
|
|
666
|
+
"top": 10,
|
|
667
|
+
"right": 10,
|
|
668
|
+
"bottom": 10,
|
|
669
|
+
"left": 10
|
|
670
|
+
},
|
|
671
|
+
"textColor": null,
|
|
672
|
+
"linkColor": null,
|
|
673
|
+
"fontSize": null,
|
|
674
|
+
"fontFamily": null,
|
|
675
|
+
"rowAndColumnInfo": null,
|
|
676
|
+
"meta": {},
|
|
677
|
+
"icon": "",
|
|
678
|
+
"iconSvg": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M499.2 179.2h-12.8c-7.1 0-12.8 5.7-12.8 12.8v10.3c-17.6-14.2-39.6-23.1-64-23.1-56.6 0-102.4 45.8-102.4 102.4v25.6c0 56.6 45.8 102.4 102.4 102.4 24.4 0 46.4-8.9 64-23.1v10.3c0 7.1 5.7 12.8 12.8 12.8h12.8c7.1 0 12.8-5.7 12.8-12.8V192c0-7.1-5.7-12.8-12.8-12.8zm-25.6 128c0 35.3-28.7 64-64 64s-64-28.7-64-64v-25.6c0-35.3 28.7-64 64-64s64 28.7 64 64v25.6zM170 110.7c-1.9-5-6.7-8.3-12-8.3h-34.4c-5.3 0-10.1 3.3-12 8.3L.8 392.3c-2.5 6.6.8 14 7.5 16.5 1.5.5 3 .8 4.5.8h13.7c5.3 0 10.1-3.3 12-8.3L70.6 320H211l32.1 81.3c1.9 5 6.7 8.3 12 8.3h13.7c7.1 0 12.8-5.7 12.8-12.8 0-1.6-.3-3.1-.8-4.5L170 110.7zM85.8 281.6l55.1-139.5L196 281.6H85.8z\"></path></svg>"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"controlTypeAlias": "image",
|
|
682
|
+
"padding": {
|
|
683
|
+
"top": 10,
|
|
684
|
+
"right": 10,
|
|
685
|
+
"bottom": 10,
|
|
686
|
+
"left": 10
|
|
687
|
+
},
|
|
688
|
+
"imageUdi": null,
|
|
689
|
+
"align": "center",
|
|
690
|
+
"link": null,
|
|
691
|
+
"imageSize": 0,
|
|
692
|
+
"imageHeight": 0,
|
|
693
|
+
"aspectRatio": "original",
|
|
694
|
+
"rowAndColumnInfo": null,
|
|
695
|
+
"meta": {},
|
|
696
|
+
"icon": "icon-picture",
|
|
697
|
+
"iconSvg": ""
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"controlTypeAlias": "macro",
|
|
701
|
+
"padding": {
|
|
702
|
+
"top": 10,
|
|
703
|
+
"right": 10,
|
|
704
|
+
"bottom": 10,
|
|
705
|
+
"left": 10
|
|
706
|
+
},
|
|
707
|
+
"macroPath": null,
|
|
708
|
+
"rowAndColumnInfo": null,
|
|
709
|
+
"meta": {},
|
|
710
|
+
"icon": "icon-settings-alt",
|
|
711
|
+
"iconSvg": null
|
|
712
|
+
}
|
|
713
|
+
],
|
|
714
|
+
"mergeFields": [
|
|
715
|
+
{
|
|
716
|
+
"text": "E-mail",
|
|
717
|
+
"textLocalizationKey": "ns/email",
|
|
718
|
+
"groupText": "General",
|
|
719
|
+
"groupTextLocalizationKey": "ns/mergeFields_groupGeneral",
|
|
720
|
+
"placeholder": "email",
|
|
721
|
+
"tooltip": null
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"text": "Read in browser link",
|
|
725
|
+
"textLocalizationKey": "ns/mergeFields_readInBrowser",
|
|
726
|
+
"groupText": "General",
|
|
727
|
+
"groupTextLocalizationKey": "ns/mergeFields_groupGeneral",
|
|
728
|
+
"placeholder": "readinbrowser",
|
|
729
|
+
"tooltip": null
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"text": "Unsubscribe link",
|
|
733
|
+
"textLocalizationKey": "ns/mergeFields_unsubscribe",
|
|
734
|
+
"groupText": "General",
|
|
735
|
+
"groupTextLocalizationKey": "ns/mergeFields_groupGeneral",
|
|
736
|
+
"placeholder": "unsubscribe",
|
|
737
|
+
"tooltip": null
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"text": "Firstname",
|
|
741
|
+
"textLocalizationKey": "ns/firstname",
|
|
742
|
+
"groupText": "Recipient",
|
|
743
|
+
"groupTextLocalizationKey": "ns/mergeFields_groupRecipient",
|
|
744
|
+
"placeholder": "firstname",
|
|
745
|
+
"tooltip": null
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"text": "Lastname",
|
|
749
|
+
"textLocalizationKey": "ns/lastname",
|
|
750
|
+
"groupText": "Recipient",
|
|
751
|
+
"groupTextLocalizationKey": "ns/mergeFields_groupRecipient",
|
|
752
|
+
"placeholder": "lastname",
|
|
753
|
+
"tooltip": null
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"text": "City",
|
|
757
|
+
"textLocalizationKey": null,
|
|
758
|
+
"groupText": "Recipient",
|
|
759
|
+
"groupTextLocalizationKey": "ns/mergeFields_groupRecipient",
|
|
760
|
+
"placeholder": "city",
|
|
761
|
+
"tooltip": null
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"text": "Company",
|
|
765
|
+
"textLocalizationKey": null,
|
|
766
|
+
"groupText": "Recipient",
|
|
767
|
+
"groupTextLocalizationKey": "ns/mergeFields_groupRecipient",
|
|
768
|
+
"placeholder": "company",
|
|
769
|
+
"tooltip": null
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"text": "Recipient key",
|
|
773
|
+
"textLocalizationKey": "ns/mergeFields_recipientKey",
|
|
774
|
+
"groupText": "Recipient",
|
|
775
|
+
"groupTextLocalizationKey": "ns/mergeFields_groupRecipient",
|
|
776
|
+
"placeholder": "recipientKey",
|
|
777
|
+
"tooltip": null
|
|
778
|
+
}
|
|
779
|
+
],
|
|
780
|
+
"fonts": [
|
|
781
|
+
{
|
|
782
|
+
"title": "Standard Fonts",
|
|
783
|
+
"titleLocalizationKey": "ns_fonts_standard",
|
|
784
|
+
"definitions": [
|
|
785
|
+
{
|
|
786
|
+
"displayName": "Arial",
|
|
787
|
+
"fontFamilyValue": "Arial, 'Helvetica Neue', Helvetica, sans-serif",
|
|
788
|
+
"customFontDeclarationCss": null,
|
|
789
|
+
"googleFontsFamilyQueryStringValue": null
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"displayName": "Times New Roman",
|
|
793
|
+
"fontFamilyValue": "'Times New Roman'",
|
|
794
|
+
"customFontDeclarationCss": null,
|
|
795
|
+
"googleFontsFamilyQueryStringValue": null
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"displayName": "Comic Sans",
|
|
799
|
+
"fontFamilyValue": "'Comic Sans MS', 'Marker Felt-Thin', Arial, sans-serif",
|
|
800
|
+
"customFontDeclarationCss": null,
|
|
801
|
+
"googleFontsFamilyQueryStringValue": null
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"displayName": "Courier",
|
|
805
|
+
"fontFamilyValue": "'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace",
|
|
806
|
+
"customFontDeclarationCss": null,
|
|
807
|
+
"googleFontsFamilyQueryStringValue": null
|
|
808
|
+
}
|
|
809
|
+
]
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"title": "Web fonts",
|
|
813
|
+
"titleLocalizationKey": "ns_fonts_webFonts",
|
|
814
|
+
"definitions": [
|
|
815
|
+
{
|
|
816
|
+
"displayName": "Roboto",
|
|
817
|
+
"fontFamilyValue": "Roboto,Arial,Helvetica,sans-serif",
|
|
818
|
+
"customFontDeclarationCss": null,
|
|
819
|
+
"googleFontsFamilyQueryStringValue": "Roboto:400,400italic"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"displayName": "Anton",
|
|
823
|
+
"fontFamilyValue": "Anton,Arial,Helvetica,sans-serif",
|
|
824
|
+
"customFontDeclarationCss": null,
|
|
825
|
+
"googleFontsFamilyQueryStringValue": "Anton"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"displayName": "Shadows Into Light",
|
|
829
|
+
"fontFamilyValue": "'Shadows Into Light',Arial,Helvetica,sans-serif",
|
|
830
|
+
"customFontDeclarationCss": null,
|
|
831
|
+
"googleFontsFamilyQueryStringValue": "Shadows+Into+Light"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"displayName": "Open Sans",
|
|
835
|
+
"fontFamilyValue": "'Open Sans',Arial,Helvetica,sans-serif",
|
|
836
|
+
"customFontDeclarationCss": null,
|
|
837
|
+
"googleFontsFamilyQueryStringValue": "Open+Sans:400italic,700italic,700,400"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"displayName": "Montserrat",
|
|
841
|
+
"fontFamilyValue": "'Montserrat',Helvetica,Arial,sans-serif",
|
|
842
|
+
"customFontDeclarationCss": null,
|
|
843
|
+
"googleFontsFamilyQueryStringValue": "Montserrat:400italic,700italic,700,400"
|
|
844
|
+
}
|
|
845
|
+
]
|
|
846
|
+
}
|
|
847
|
+
],
|
|
848
|
+
"senderDefaultsForced": false,
|
|
849
|
+
"sendingValidation": {
|
|
850
|
+
"hasValidLicense": true,
|
|
851
|
+
"hasWorkspaceValidationIssues": false,
|
|
852
|
+
"userHasSendingPermissions": true
|
|
853
|
+
},
|
|
854
|
+
"path": [
|
|
855
|
+
"-1",
|
|
856
|
+
"fe9b1df2-960e-4ac8-861a-51524de3895f_workspace",
|
|
857
|
+
"fe9b1df2-960e-4ac8-861a-51524de3895f_campaigns"
|
|
858
|
+
]
|
|
859
|
+
}
|