@newsletterstudio/umbraco 14.0.5 → 15.0.4
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/types.gen.d.ts +1 -2
- package/dist/core/components/index.d.ts +0 -1
- package/dist/core/components/ns-expander/ns-expander.element.d.ts +1 -2
- package/dist/core/components/ns-numeric-input/ns-numeric-input.element.d.ts +10 -10
- package/dist/core/extensibility/actions/ns-actions.models.d.ts +5 -0
- package/dist/core/extensibility/email-editor/NsEmailEditorControlDisplayUiBase.d.ts +0 -1
- package/dist/core/extensibility/email-editor/email-control.models.d.ts +6 -0
- package/dist/core/extensibility/email-editor/email-editor.models.d.ts +0 -1
- package/dist/core/extensibility/email-service/email-service-provider.models.d.ts +5 -0
- package/dist/core/manifest.d.ts +1 -1
- package/dist/core/modal/ns-item-picker-modal/manifest.d.ts +1 -1
- package/dist/core/modal/ns-item-picker-modal/ns-item-picker-modal.element.d.ts +1 -2
- package/dist/core/string.helper.d.ts +0 -1
- package/dist/modules/administration/manifest.d.ts +1 -2
- package/dist/modules/administration/ns-administration-workspace.context.d.ts +1 -2
- package/dist/modules/campaign/content-section/ns-document-campaign-workspace-modal.token.d.ts +1 -1
- package/dist/modules/campaign/content-section/ns-document-campaign-workspace.context.d.ts +1 -2
- package/dist/modules/campaign/email-section/ns-campaign-workspace-modal-token.d.ts +1 -1
- package/dist/modules/campaign/email-section/ns-campaign-workspace.context.d.ts +1 -2
- package/dist/modules/campaign/report/campaign-report-workspace-modal.token.d.ts +1 -1
- package/dist/modules/campaign/report/campaign-report-workspace.context.d.ts +1 -2
- package/dist/modules/campaign/report/manifest.d.ts +2 -2
- package/dist/modules/campaign/report/recipients/timeline/manifest.d.ts +1 -1
- package/dist/modules/campaign/report/recipients/timeline/ns-campaign-report-recipient.timeline.element.d.ts +1 -2
- package/dist/modules/email-editor/controls/button/manifest.d.ts +1 -2
- package/dist/modules/email-editor/controls/text/manifest.d.ts +1 -1
- package/dist/modules/email-editor/manifest.d.ts +1 -1
- package/dist/modules/mailing-list/edit/actions/import/manifest.d.ts +1 -1
- package/dist/modules/mailing-list/edit/actions/import/ns-mailing-list-import-modal.element.d.ts +1 -2
- package/dist/modules/mailing-list/edit/actions/manifest.d.ts +1 -1
- package/dist/modules/mailing-list/manifest.d.ts +2 -2
- package/dist/modules/mailing-list/ns-mailing-list-workspace-modal.token.d.ts +1 -1
- package/dist/modules/mailing-list/ns-mailing-list-workspace.context.d.ts +1 -2
- package/dist/modules/property-editors/mailing-list-picker/manifest.d.ts +1 -1
- package/dist/modules/property-editors/mailing-list-picker/ns-mailing-list-picker-property-editor.element.d.ts +1 -2
- package/dist/modules/property-editors/manifest.d.ts +1 -1
- package/dist/modules/property-editors/transactional-email-picker/manifest.d.ts +1 -1
- package/dist/modules/property-editors/transactional-email-picker/ns-transactional-email-picker-editor.element.d.ts +1 -2
- package/dist/modules/recipient/manifest.d.ts +2 -2
- package/dist/modules/recipient/ns-recipient-workspace-modal.token.d.ts +1 -1
- package/dist/modules/recipient/ns-recipient-workspace.context.d.ts +1 -2
- package/dist/modules/settings/manifest.d.ts +2 -2
- package/dist/modules/settings/ns-settings-workspace.context.d.ts +1 -2
- package/dist/modules/transactional/manifest.d.ts +2 -2
- package/dist/modules/transactional/ns-transactional-workspace-modal.token.d.ts +1 -1
- package/dist/modules/transactional/ns-transactional-workspace.context.d.ts +1 -2
- package/package.json +5 -4
|
@@ -18,7 +18,6 @@ export type ButtonEmailControlDataModel = {
|
|
|
18
18
|
backgroundColor: string;
|
|
19
19
|
textColor: string;
|
|
20
20
|
padding: PaddingModel;
|
|
21
|
-
borderRadius: number;
|
|
22
21
|
};
|
|
23
22
|
export type CampaignEmailItemResponseFrontendModel = {
|
|
24
23
|
id: number;
|
|
@@ -1185,7 +1184,7 @@ export type TransactionalLogItemFrontendModel = {
|
|
|
1185
1184
|
export type TransactionalLogResponseFrontendModel = {
|
|
1186
1185
|
sentTotal: number;
|
|
1187
1186
|
sentLastWeek: number;
|
|
1188
|
-
|
|
1187
|
+
sentLast3Months: number;
|
|
1189
1188
|
emails: PageWithFilterTransactionalLogItemFrontendModelTransactionalGetLogListRequestFrontendModel;
|
|
1190
1189
|
logItemStatuses: Array<ListItemValueAndTranslationResponseFrontendModel>;
|
|
1191
1190
|
};
|
|
@@ -48,4 +48,3 @@ export * from './ns-recipient-list-picker/ns-recipient-list-picker.element.js';
|
|
|
48
48
|
export * from './ns-email-campaign-send/ns-email-campaign-send.element.js';
|
|
49
49
|
export * from './ns-validation-errors-debug/ns-validation-errors-debug.element.js';
|
|
50
50
|
export * from './ns-select/ns-select.element.js';
|
|
51
|
-
export * from './ns-numeric-input/ns-numeric-input.element.js';
|
|
@@ -4,12 +4,11 @@ import { LitElement } from 'lit';
|
|
|
4
4
|
* @fires {MouseEvent} click - When toggling
|
|
5
5
|
*/
|
|
6
6
|
export declare class NsExpanderElement extends LitElement {
|
|
7
|
-
#private;
|
|
8
7
|
/**
|
|
9
8
|
* Indicator if expanded or note
|
|
10
9
|
*/
|
|
11
10
|
expanded: boolean;
|
|
12
|
-
|
|
11
|
+
onClick(e: MouseEvent): void;
|
|
13
12
|
render(): import("lit-html").TemplateResult<1>;
|
|
14
13
|
static styles: import("lit").CSSResult[];
|
|
15
14
|
}
|
|
@@ -12,15 +12,13 @@ import { LitElement } from "@newsletterstudio/umbraco/lit";
|
|
|
12
12
|
* @cssprop --ns-color-border - Fallback for border colors
|
|
13
13
|
*/
|
|
14
14
|
export declare class NsNumericInputElement extends LitElement {
|
|
15
|
-
#private;
|
|
16
15
|
/**
|
|
17
16
|
* Holds the value
|
|
18
|
-
* @type {
|
|
17
|
+
* @type {number}
|
|
19
18
|
* @attr
|
|
19
|
+
* @default 0
|
|
20
20
|
*/
|
|
21
|
-
value:
|
|
22
|
-
get valueAsNumber(): number | undefined;
|
|
23
|
-
get valueIsNumber(): boolean;
|
|
21
|
+
value: number;
|
|
24
22
|
/**
|
|
25
23
|
* Label for the value
|
|
26
24
|
* @type {string}
|
|
@@ -39,11 +37,13 @@ export declare class NsNumericInputElement extends LitElement {
|
|
|
39
37
|
* @attr
|
|
40
38
|
*/
|
|
41
39
|
max: number;
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
40
|
+
private _handleKeyDown;
|
|
41
|
+
private _handleKeyPress;
|
|
42
|
+
private _handleKeyUp;
|
|
43
|
+
private _handleUp;
|
|
44
|
+
private _handleDown;
|
|
45
|
+
_handleTextboxClick(e: MouseEvent): void;
|
|
46
|
+
private _setValue;
|
|
47
47
|
render(): import("lit-html").TemplateResult<1>;
|
|
48
48
|
static styles: import("lit").CSSResult[];
|
|
49
49
|
}
|
|
@@ -7,6 +7,11 @@ export interface ManifestNsAction extends ManifestElementAndApi<UmbElement, NsAc
|
|
|
7
7
|
type: 'nsAction';
|
|
8
8
|
meta: MetaNsAction;
|
|
9
9
|
}
|
|
10
|
+
declare global {
|
|
11
|
+
interface UmbExtensionManifestMap {
|
|
12
|
+
nsAction: ManifestNsAction;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
10
15
|
export interface MetaNsAction {
|
|
11
16
|
entityType: string;
|
|
12
17
|
label: string;
|
|
@@ -10,5 +10,4 @@ export declare abstract class NsEmailEditorControlDisplayUiBase<TControlDataMode
|
|
|
10
10
|
'padding-left': string;
|
|
11
11
|
};
|
|
12
12
|
getSetting(instanceLevelSetting: string | undefined | null, fallbackSettingKey: string): string;
|
|
13
|
-
getSettingNumber(instanceLevelSetting: number | undefined | null, fallbackSettingKey: string, fallbackValue?: string): string;
|
|
14
13
|
}
|
|
@@ -11,3 +11,9 @@ export interface ManifestEmailControlDisplayUi extends ManifestElement<NsEmailEd
|
|
|
11
11
|
export interface MetaEmailControlUi {
|
|
12
12
|
controlTypeAlias: string;
|
|
13
13
|
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface UmbExtensionManifestMap {
|
|
16
|
+
nsEmailControlEditUi: ManifestEmailControlEditUi;
|
|
17
|
+
nsEmailControlDisplayUi: ManifestEmailControlDisplayUi;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -74,7 +74,6 @@ export declare enum NsSettings {
|
|
|
74
74
|
controlButtonBackgroundColor = "controlButtonBackgroundColor",
|
|
75
75
|
controlButtonTextColor = "controlButtonTextColor",
|
|
76
76
|
controlButtonFontFamily = "controlButtonFontFamily",
|
|
77
|
-
controlButtonBorderRadius = "controlButtonBorderRadius",
|
|
78
77
|
controlButtonSmallPadding = "controlButtonSmallPadding",
|
|
79
78
|
controlButtonSmallFontSize = "controlButtonSmallFontSize",
|
|
80
79
|
controlButtonMediumPadding = "controlButtonMediumPadding",
|
|
@@ -7,3 +7,8 @@ export interface ManifestEmailServiceProviderSettingsUi extends ManifestElement<
|
|
|
7
7
|
export interface MetaEmailServiceProviderSettingsUi {
|
|
8
8
|
alias: string;
|
|
9
9
|
}
|
|
10
|
+
declare global {
|
|
11
|
+
interface UmbExtensionManifestMap {
|
|
12
|
+
nsEmailServiceProviderSettingsUi: ManifestEmailServiceProviderSettingsUi;
|
|
13
|
+
}
|
|
14
|
+
}
|
package/dist/core/manifest.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const manifests: import("@umbraco-cms/backoffice/
|
|
1
|
+
export declare const manifests: import("@umbraco-cms/backoffice/modal").ManifestModal[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { ManifestModal } from '@umbraco-cms/backoffice/
|
|
1
|
+
import { ManifestModal } from '@umbraco-cms/backoffice/modal';
|
|
2
2
|
export declare const manifests: ManifestModal[];
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { UmbModalExtensionElement } from '@umbraco-cms/backoffice/
|
|
2
|
-
import type { UmbModalContext } from '@umbraco-cms/backoffice/modal';
|
|
1
|
+
import type { UmbModalContext, UmbModalExtensionElement } from '@umbraco-cms/backoffice/modal';
|
|
3
2
|
import { LitElement } from '@newsletterstudio/umbraco/lit';
|
|
4
3
|
import type { NsItemPickerItemGroup, NsItemPickerModalData, NsItemPickerModalValue } from './ns-item-picker-modal.token.js';
|
|
5
4
|
declare const NsItemPickerModalElement_base: import("@umbraco-cms/backoffice/extension-api").HTMLElementConstructor<import("@umbraco-cms/backoffice/element-api").UmbElement> & typeof LitElement;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const manifests: (import("../../core/extensibility/index.js").ManifestEmailServiceProviderSettingsUi | ManifestWorkspace<import("@umbraco-cms/backoffice/extension-registry").MetaWorkspace, import("@umbraco-cms/backoffice/controller-api").UmbControllerHostElement, import("@umbraco-cms/backoffice/workspace").UmbWorkspaceContext>)[];
|
|
1
|
+
export declare const manifests: (import("../../core/extensibility/index.js").ManifestEmailServiceProviderSettingsUi | import("@umbraco-cms/backoffice/workspace").ManifestWorkspace<import("@umbraco-cms/backoffice/workspace").MetaWorkspace, import("@umbraco-cms/backoffice/controller-api").UmbControllerHostElement, import("@umbraco-cms/backoffice/workspace").UmbWorkspaceContext>)[];
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { UmbContextBase } from "@umbraco-cms/backoffice/class-api";
|
|
2
2
|
import { UmbContextToken } from "@umbraco-cms/backoffice/context-api";
|
|
3
3
|
import type { UmbControllerHostElement } from "@umbraco-cms/backoffice/controller-api";
|
|
4
|
-
import type { ManifestWorkspace } from "@umbraco-cms/backoffice/
|
|
5
|
-
import type { UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
4
|
+
import type { ManifestWorkspace, UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
6
5
|
import { UmbWorkspaceRouteManager } from "@umbraco-cms/backoffice/workspace";
|
|
7
6
|
import type { WorkspaceManageOverviewResponseFrontendModel, WorkspaceManageValueFrontendModel } from "@newsletterstudio/umbraco/backend";
|
|
8
7
|
export declare const NS_ADMINISTRATION_WORKSPACE_CONTEXT: UmbContextToken<NsAdministrationWorkspaceContext, NsAdministrationWorkspaceContext>;
|
package/dist/modules/campaign/content-section/ns-document-campaign-workspace-modal.token.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/modal";
|
|
2
1
|
import { UmbModalToken } from "@umbraco-cms/backoffice/modal";
|
|
2
|
+
import { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/workspace";
|
|
3
3
|
export type NsDocumentCampaignWorkspaceModalData = {
|
|
4
4
|
lorem: string;
|
|
5
5
|
};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { UmbContextBase } from "@umbraco-cms/backoffice/class-api";
|
|
2
2
|
import type { UmbControllerHostElement } from "@umbraco-cms/backoffice/controller-api";
|
|
3
|
-
import type { UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
3
|
+
import type { ManifestWorkspace, UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
4
4
|
import { UmbWorkspaceRouteManager } from "@umbraco-cms/backoffice/workspace";
|
|
5
|
-
import type { ManifestWorkspace } from "@umbraco-cms/backoffice/extension-registry";
|
|
6
5
|
import { UmbContextToken } from "@umbraco-cms/backoffice/context-api";
|
|
7
6
|
export { NsDocumentCampaignWorkspaceContext as api };
|
|
8
7
|
export declare const NS_DOCUMENT_CAMPAIGN_WORKSPACE_CONTEXT: UmbContextToken<unknown, NsDocumentCampaignWorkspaceContext>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/modal";
|
|
2
1
|
import { UmbModalToken } from "@umbraco-cms/backoffice/modal";
|
|
2
|
+
import { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/workspace";
|
|
3
3
|
export type NsCampaignWorkspaceModalData = object;
|
|
4
4
|
export type NsCampaignWorkspaceModalValue = object;
|
|
5
5
|
/**
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { UmbContextBase } from "@umbraco-cms/backoffice/class-api";
|
|
2
2
|
import type { UmbControllerHostElement } from "@umbraco-cms/backoffice/controller-api";
|
|
3
|
-
import type { UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
3
|
+
import type { ManifestWorkspace, UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
4
4
|
import { UmbWorkspaceRouteManager } from "@umbraco-cms/backoffice/workspace";
|
|
5
|
-
import type { ManifestWorkspace } from "@umbraco-cms/backoffice/extension-registry";
|
|
6
5
|
import { UmbContextToken } from "@umbraco-cms/backoffice/context-api";
|
|
7
6
|
export { NsCampaignWorkspaceContext as api };
|
|
8
7
|
export declare const NS_CAMPAIGN_WORKSPACE_CONTEXT: UmbContextToken<unknown, NsCampaignWorkspaceContext>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/modal";
|
|
2
1
|
import { UmbModalToken } from "@umbraco-cms/backoffice/modal";
|
|
2
|
+
import { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/workspace";
|
|
3
3
|
export type NsCampaignReportWorkspaceModalData = object;
|
|
4
4
|
export type NsCampaignReportWorkspaceModalValue = object;
|
|
5
5
|
export declare const NS_CAMPAIGN_REPORT_WORKSPACE_MODAL: UmbModalToken<Omit<UmbWorkspaceModalData<NsCampaignReportWorkspaceModalData>, "entityType">, NsCampaignReportWorkspaceModalValue>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { UmbContextBase } from "@umbraco-cms/backoffice/class-api";
|
|
2
2
|
import type { UmbControllerHostElement } from "@umbraco-cms/backoffice/controller-api";
|
|
3
|
-
import type { UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
3
|
+
import type { ManifestWorkspace, UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
4
4
|
import { UmbWorkspaceRouteManager } from "@umbraco-cms/backoffice/workspace";
|
|
5
|
-
import type { ManifestWorkspace } from "@umbraco-cms/backoffice/extension-registry";
|
|
6
5
|
import { UmbContextToken } from "@umbraco-cms/backoffice/context-api";
|
|
7
6
|
import type { CampaignReportOverviewResponseFrontendModel } from "@newsletterstudio/umbraco/backend";
|
|
8
7
|
export { NsCampaignReportWorkspaceContext as api };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const manifests: (import("@umbraco-cms/backoffice/
|
|
1
|
+
import { ManifestWorkspace } from "@umbraco-cms/backoffice/workspace";
|
|
2
|
+
export declare const manifests: (import("@umbraco-cms/backoffice/modal").ManifestModal | ManifestWorkspace<import("@umbraco-cms/backoffice/workspace").MetaWorkspace, import("@umbraco-cms/backoffice/controller-api").UmbControllerHostElement, import("@umbraco-cms/backoffice/workspace").UmbWorkspaceContext>)[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ManifestModal } from '@umbraco-cms/backoffice/modal';
|
|
2
2
|
export declare const manifests: ManifestModal[];
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { UmbModalExtensionElement } from '@umbraco-cms/backoffice/
|
|
2
|
-
import type { UmbModalContext } from '@umbraco-cms/backoffice/modal';
|
|
1
|
+
import type { UmbModalContext, UmbModalExtensionElement } from '@umbraco-cms/backoffice/modal';
|
|
3
2
|
import { type CampaignReportRecipientTimelineFrontendModel } from '@newsletterstudio/umbraco/backend';
|
|
4
3
|
import { LitElement } from '@newsletterstudio/umbraco/lit';
|
|
5
4
|
import type { ModalData, ModalValue } from './ns-campaign-report-recipient-timeline-modal.token.js';
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const manifests: (ManifestEmailControlEditUi | ManifestEmailControlDisplayUi)[];
|
|
1
|
+
export declare const manifests: (import("../../../../core/extensibility/index.js").ManifestEmailControlEditUi | import("../../../../core/extensibility/index.js").ManifestEmailControlDisplayUi)[];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { ManifestEmailControlDisplayUi, ManifestEmailControlEditUi } from '@newsletterstudio/umbraco/extensibility';
|
|
2
|
-
import
|
|
2
|
+
import { ManifestTinyMcePlugin } from '@umbraco-cms/backoffice/tiny-mce';
|
|
3
3
|
export declare const manifests: (ManifestEmailControlEditUi | ManifestEmailControlDisplayUi | ManifestTinyMcePlugin)[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const manifests: (import("../../core/extensibility/index.js").ManifestEmailControlEditUi | import("../../core/extensibility/index.js").ManifestEmailControlDisplayUi | import("@umbraco-cms/backoffice/
|
|
1
|
+
export declare const manifests: (import("../../core/extensibility/index.js").ManifestEmailControlEditUi | import("../../core/extensibility/index.js").ManifestEmailControlDisplayUi | import("@umbraco-cms/backoffice/tiny-mce").ManifestTinyMcePlugin)[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { ManifestModal } from '@umbraco-cms/backoffice/
|
|
1
|
+
import { ManifestModal } from '@umbraco-cms/backoffice/modal';
|
|
2
2
|
export declare const manifests: ManifestModal[];
|
package/dist/modules/mailing-list/edit/actions/import/ns-mailing-list-import-modal.element.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { UmbModalExtensionElement } from '@umbraco-cms/backoffice/
|
|
2
|
-
import type { UmbModalContext } from '@umbraco-cms/backoffice/modal';
|
|
1
|
+
import type { UmbModalContext, UmbModalExtensionElement } from '@umbraco-cms/backoffice/modal';
|
|
3
2
|
import type { UUIButtonState } from '@umbraco-ui/uui';
|
|
4
3
|
import { LitElement } from '@newsletterstudio/umbraco/lit';
|
|
5
4
|
import type { ImportRecipientsUploadFileAndParseForMappingResponse, ImportRecipientsResultsResponseFrontendModel } from '@newsletterstudio/umbraco/backend';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { ManifestNsAction } from '@newsletterstudio/umbraco/extensibility';
|
|
2
|
-
export declare const manifests: (import("@umbraco-cms/backoffice/
|
|
2
|
+
export declare const manifests: (import("@umbraco-cms/backoffice/modal").ManifestModal | ManifestNsAction)[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const manifests: (import("@umbraco-cms/backoffice/
|
|
1
|
+
import { ManifestWorkspace } from "@umbraco-cms/backoffice/workspace";
|
|
2
|
+
export declare const manifests: (import("@umbraco-cms/backoffice/modal").ManifestModal | import("../../core/extensibility/index.js").ManifestNsAction | ManifestWorkspace<import("@umbraco-cms/backoffice/workspace").MetaWorkspace, import("@umbraco-cms/backoffice/controller-api").UmbControllerHostElement, import("@umbraco-cms/backoffice/workspace").UmbWorkspaceContext>)[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/modal";
|
|
2
1
|
import { UmbModalToken } from "@umbraco-cms/backoffice/modal";
|
|
2
|
+
import { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/workspace";
|
|
3
3
|
export type NsMailingListWorkspaceModalData = object;
|
|
4
4
|
export type NsMailingListWorkspaceModalValue = object;
|
|
5
5
|
export declare const UMB_MAILING_LIST_WORKSPACE_MODAL: UmbModalToken<Omit<UmbWorkspaceModalData<NsMailingListWorkspaceModalData>, "entityType">, NsMailingListWorkspaceModalValue>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { UmbContextBase } from "@umbraco-cms/backoffice/class-api";
|
|
2
2
|
import { UmbContextToken } from "@umbraco-cms/backoffice/context-api";
|
|
3
3
|
import type { UmbControllerHostElement } from "@umbraco-cms/backoffice/controller-api";
|
|
4
|
-
import type { ManifestWorkspace } from "@umbraco-cms/backoffice/
|
|
5
|
-
import type { UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
4
|
+
import type { ManifestWorkspace, UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
6
5
|
import { UmbWorkspaceRouteManager } from "@umbraco-cms/backoffice/workspace";
|
|
7
6
|
export declare const NS_MAILING_LIST_WORKSPACE_CONTEXT: UmbContextToken<NsMailingListWorkspaceContext, NsMailingListWorkspaceContext>;
|
|
8
7
|
export declare class NsMailingListWorkspaceContext extends UmbContextBase<NsMailingListWorkspaceContext> implements UmbRoutableWorkspaceContext {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ManifestPropertyEditorSchema, ManifestPropertyEditorUi } from '@umbraco-cms/backoffice/property-editor';
|
|
2
2
|
export declare const manifests: (ManifestPropertyEditorSchema | ManifestPropertyEditorUi)[];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/extension-registry';
|
|
2
1
|
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
|
|
3
|
-
import type { UmbPropertyEditorConfigCollection } from '@umbraco-cms/backoffice/property-editor';
|
|
2
|
+
import type { UmbPropertyEditorConfigCollection, UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/property-editor';
|
|
4
3
|
import '@newsletterstudio/umbraco/components';
|
|
5
4
|
/**
|
|
6
5
|
* ns-mailing-list-property-editor description
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const manifests: (import("@umbraco-cms/backoffice/
|
|
1
|
+
export declare const manifests: (import("@umbraco-cms/backoffice/property-editor").ManifestPropertyEditorSchema | import("@umbraco-cms/backoffice/property-editor").ManifestPropertyEditorUi)[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ManifestPropertyEditorSchema, ManifestPropertyEditorUi } from '@umbraco-cms/backoffice/property-editor';
|
|
2
2
|
export declare const manifests: (ManifestPropertyEditorSchema | ManifestPropertyEditorUi)[];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/extension-registry';
|
|
2
1
|
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
|
|
3
|
-
import type { UmbPropertyEditorConfigCollection } from '@umbraco-cms/backoffice/property-editor';
|
|
2
|
+
import type { UmbPropertyEditorConfigCollection, UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/property-editor';
|
|
4
3
|
interface PropertyEditorValue {
|
|
5
4
|
workspaceKey: string;
|
|
6
5
|
transactionalEmailKey: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const manifests: (import("../../core/extensibility/index.js").ManifestNsAction | ManifestWorkspace<import("@umbraco-cms/backoffice/
|
|
1
|
+
import { ManifestWorkspace } from '@umbraco-cms/backoffice/workspace';
|
|
2
|
+
export declare const manifests: (import("../../core/extensibility/index.js").ManifestNsAction | ManifestWorkspace<import("@umbraco-cms/backoffice/workspace").MetaWorkspace, import("@umbraco-cms/backoffice/controller-api").UmbControllerHostElement, import("@umbraco-cms/backoffice/workspace").UmbWorkspaceContext>)[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/modal";
|
|
2
1
|
import { UmbModalToken } from "@umbraco-cms/backoffice/modal";
|
|
2
|
+
import { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/workspace";
|
|
3
3
|
export type NsRecipientWorkspaceModalData = object;
|
|
4
4
|
export type NsRecipientWorkspaceModalValue = object;
|
|
5
5
|
export declare const NS_RECIPIENT_WORKSPACE_MODAL: UmbModalToken<Omit<UmbWorkspaceModalData<NsRecipientWorkspaceModalData>, "entityType">, NsRecipientWorkspaceModalValue>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { UmbContextBase } from "@umbraco-cms/backoffice/class-api";
|
|
2
2
|
import { UmbContextToken } from "@umbraco-cms/backoffice/context-api";
|
|
3
3
|
import type { UmbControllerHostElement } from "@umbraco-cms/backoffice/controller-api";
|
|
4
|
-
import type { ManifestWorkspace } from "@umbraco-cms/backoffice/
|
|
5
|
-
import type { UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
4
|
+
import type { ManifestWorkspace, UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
6
5
|
import { UmbWorkspaceRouteManager } from "@umbraco-cms/backoffice/workspace";
|
|
7
6
|
export declare const NS_RECIPIENT_WORKSPACE_CONTEXT: UmbContextToken<NsRecipientWorkspaceContext, NsRecipientWorkspaceContext>;
|
|
8
7
|
export declare class NsRecipientWorkspaceContext extends UmbContextBase<NsRecipientWorkspaceContext> implements UmbRoutableWorkspaceContext {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const manifests: ManifestWorkspace<import("@umbraco-cms/backoffice/
|
|
1
|
+
import { ManifestWorkspace } from '@umbraco-cms/backoffice/workspace';
|
|
2
|
+
export declare const manifests: ManifestWorkspace<import("@umbraco-cms/backoffice/workspace").MetaWorkspace, import("@umbraco-cms/backoffice/controller-api").UmbControllerHostElement, import("@umbraco-cms/backoffice/workspace").UmbWorkspaceContext>[];
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { UmbContextBase } from "@umbraco-cms/backoffice/class-api";
|
|
2
2
|
import { UmbContextToken } from "@umbraco-cms/backoffice/context-api";
|
|
3
3
|
import type { UmbControllerHostElement } from "@umbraco-cms/backoffice/controller-api";
|
|
4
|
-
import type { ManifestWorkspace } from "@umbraco-cms/backoffice/
|
|
5
|
-
import type { UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
4
|
+
import type { ManifestWorkspace, UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
6
5
|
import { UmbWorkspaceRouteManager } from "@umbraco-cms/backoffice/workspace";
|
|
7
6
|
export declare const NS_SETTINGS_WORKSPACE_CONTEXT: UmbContextToken<NsSettingsWorkspaceContext, NsSettingsWorkspaceContext>;
|
|
8
7
|
export declare class NsSettingsWorkspaceContext extends UmbContextBase<NsSettingsWorkspaceContext> implements UmbRoutableWorkspaceContext {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const manifests: (import("../../core/extensibility/index.js").ManifestNsAction | ManifestWorkspace<import("@umbraco-cms/backoffice/
|
|
1
|
+
import { ManifestWorkspace } from '@umbraco-cms/backoffice/workspace';
|
|
2
|
+
export declare const manifests: (import("../../core/extensibility/index.js").ManifestNsAction | ManifestWorkspace<import("@umbraco-cms/backoffice/workspace").MetaWorkspace, import("@umbraco-cms/backoffice/controller-api").UmbControllerHostElement, import("@umbraco-cms/backoffice/workspace").UmbWorkspaceContext>)[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/modal";
|
|
2
1
|
import { UmbModalToken } from "@umbraco-cms/backoffice/modal";
|
|
2
|
+
import { UmbWorkspaceModalData } from "@umbraco-cms/backoffice/workspace";
|
|
3
3
|
export type NsTransactionalWorkspaceModalData = {
|
|
4
4
|
/** When true, the "go to template" button will be hidden */
|
|
5
5
|
hideTemplateButton?: boolean;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { UmbControllerHostElement } from "@umbraco-cms/backoffice/controller-api";
|
|
2
|
-
import type { ManifestWorkspace } from "@umbraco-cms/backoffice/
|
|
3
|
-
import type { UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
2
|
+
import type { ManifestWorkspace, UmbRoutableWorkspaceContext } from "@umbraco-cms/backoffice/workspace";
|
|
4
3
|
import { UmbWorkspaceRouteManager } from "@umbraco-cms/backoffice/workspace";
|
|
5
4
|
import { UmbContextBase } from "@umbraco-cms/backoffice/class-api";
|
|
6
5
|
import { UmbContextToken } from "@umbraco-cms/backoffice/context-api";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newsletterstudio/umbraco",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "15.0.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": null,
|
|
@@ -22,14 +22,15 @@
|
|
|
22
22
|
"./property-editors": "./dist/modules/property-editors/index.js",
|
|
23
23
|
"./recipient": "./dist/modules/recipient/index.js",
|
|
24
24
|
"./settings": "./dist/modules/settings/index.js",
|
|
25
|
-
"./transactional": "./dist/modules/transactional/index.js"
|
|
25
|
+
"./transactional": "./dist/modules/transactional/index.js",
|
|
26
|
+
"./extension-types": "./dist/core/extensibility/index.d.ts"
|
|
26
27
|
},
|
|
27
28
|
"files": [
|
|
28
29
|
"dist"
|
|
29
30
|
],
|
|
30
31
|
"peerDependencies": {
|
|
31
|
-
"@umbraco-cms/backoffice": "^
|
|
32
|
-
"@umbraco-ui/uui": "^1.
|
|
32
|
+
"@umbraco-cms/backoffice": "^15.0.0",
|
|
33
|
+
"@umbraco-ui/uui": "^1.11.0",
|
|
33
34
|
"lit": "^3.2.0"
|
|
34
35
|
}
|
|
35
36
|
}
|