monto-email-builder 1.2.2 → 1.2.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/README.md +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/index.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/TextSidebarPanel.d.ts +2 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/TextSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/BaseColorInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontStyleInput.d.ts +8 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontStyleInput.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontWeightInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LetterSpacingInput.d.ts +8 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LetterSpacingInput.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LineHeightInput.d.ts +8 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LineHeightInput.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadioGroupInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextDecorationInput.d.ts +9 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextDecorationInput.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextFormatGroup.d.ts +8 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextFormatGroup.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/MultiStylePropertyPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/SingleStylePropertyPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ToggleInspectorPanelButton.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/index.d.ts.map +1 -1
- package/dist/App/SamplesDrawer/ToggleSamplesPanelButton.d.ts.map +1 -1
- package/dist/App/TemplatePanel/MainTabsGroup.d.ts.map +1 -1
- package/dist/App/TemplatePanel/index.d.ts.map +1 -1
- package/dist/EmailBuilder/index.d.ts +16 -0
- package/dist/EmailBuilder/index.d.ts.map +1 -1
- package/dist/HtmlEditor/index.d.ts.map +1 -1
- package/dist/chunks/{chunk-CxhtzHBZ.js → chunk-_7XTjFEi.js} +220 -80
- package/dist/documents/blocks/Text/TextEditor.d.ts.map +1 -1
- package/dist/documents/blocks/Text/TextEditorRich.d.ts +3 -0
- package/dist/documents/blocks/Text/TextEditorRich.d.ts.map +1 -0
- package/dist/documents/blocks/Text/textDom.d.ts +70 -0
- package/dist/documents/blocks/Text/textDom.d.ts.map +1 -0
- package/dist/documents/blocks/Text/variableCatalog.d.ts +23 -0
- package/dist/documents/blocks/Text/variableCatalog.d.ts.map +1 -0
- package/dist/documents/blocks/helpers/TStyle.d.ts +4 -0
- package/dist/documents/blocks/helpers/TStyle.d.ts.map +1 -1
- package/dist/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.d.ts.map +1 -1
- package/dist/documents/blocks/helpers/block-wrappers/TuneMenu.d.ts.map +1 -1
- package/dist/documents/editor/EditorContext.d.ts +85 -0
- package/dist/documents/editor/EditorContext.d.ts.map +1 -1
- package/dist/documents/editor/collectTemplateVariables.d.ts +51 -0
- package/dist/documents/editor/collectTemplateVariables.d.ts.map +1 -0
- package/dist/documents/editor/core.d.ts +717 -4
- package/dist/documents/editor/core.d.ts.map +1 -1
- package/dist/documents/editor/flushActiveTextEditorToDocument.d.ts +6 -0
- package/dist/documents/editor/flushActiveTextEditorToDocument.d.ts.map +1 -0
- package/dist/html-editor.js +144 -127
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5180 -2860
- package/package.json +16 -15
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/App/InspectorDrawer/ConfigurationPanel/index.tsx"],"names":[],"mappings":"AA6BA,MAAM,CAAC,OAAO,UAAU,kBAAkB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/App/InspectorDrawer/ConfigurationPanel/index.tsx"],"names":[],"mappings":"AA6BA,MAAM,CAAC,OAAO,UAAU,kBAAkB,4CAsDzC"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { TextProps } from 'monto-email-block-text';
|
|
2
2
|
type TextSidebarPanelProps = {
|
|
3
|
+
blockId: string;
|
|
3
4
|
data: TextProps;
|
|
4
5
|
setData: (v: TextProps) => void;
|
|
5
6
|
};
|
|
6
|
-
export default function TextSidebarPanel({ data, setData }: TextSidebarPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default function TextSidebarPanel({ blockId, data, setData }: TextSidebarPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|
|
8
9
|
//# sourceMappingURL=TextSidebarPanel.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextSidebarPanel.d.ts","sourceRoot":"","sources":["../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/TextSidebarPanel.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TextSidebarPanel.d.ts","sourceRoot":"","sources":["../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/TextSidebarPanel.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,SAAS,EAA4C,MAAM,wBAAwB,CAAC;AAqD7F,KAAK,qBAAqB,GAAG;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,EAAE,CAAC,CAAC,EAAE,SAAS,KAAK,IAAI,CAAC;CACjC,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE,qBAAqB,2CAovBzF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseColorInput.d.ts","sourceRoot":"","sources":["../../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/BaseColorInput.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BaseColorInput.d.ts","sourceRoot":"","sources":["../../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/BaseColorInput.tsx"],"names":[],"mappings":"AAgCA,KAAK,KAAK,GACN;IACE,QAAQ,EAAE,IAAI,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;IACzC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B,GACD;IACE,QAAQ,EAAE,KAAK,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AACN,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,KAAK,2CA0EpF"}
|
package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontStyleInput.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
label: string;
|
|
3
|
+
defaultValue: string;
|
|
4
|
+
onChange: (value: string) => void;
|
|
5
|
+
};
|
|
6
|
+
export default function FontStyleInput({ label, defaultValue, onChange }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=FontStyleInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FontStyleInput.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontStyleInput.tsx"],"names":[],"mappings":"AAOA,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,KAAK,2CAoB9E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FontWeightInput.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontWeightInput.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FontWeightInput.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontWeightInput.tsx"],"names":[],"mappings":"AAOA,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,KAAK,2CAoB/E"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
label: string;
|
|
3
|
+
defaultValue: number | string | null | undefined;
|
|
4
|
+
onChange: (value: number | null) => void;
|
|
5
|
+
};
|
|
6
|
+
export default function LetterSpacingInput({ label, defaultValue, onChange }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=LetterSpacingInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LetterSpacingInput.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LetterSpacingInput.tsx"],"names":[],"mappings":"AAiBA,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACjD,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;CAC1C,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,KAAK,2CA2BlF"}
|
package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LineHeightInput.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
label: string;
|
|
3
|
+
defaultValue: number | null | undefined;
|
|
4
|
+
onChange: (value: number | null) => void;
|
|
5
|
+
};
|
|
6
|
+
export default function LineHeightInput({ label, defaultValue, onChange }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=LineHeightInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LineHeightInput.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LineHeightInput.tsx"],"names":[],"mappings":"AAOA,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACxC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;CAC1C,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,KAAK,2CAyB/E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioGroupInput.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadioGroupInput.tsx"],"names":[],"mappings":"AAIA,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC,OAAO,CAAC;IAC5B,QAAQ,EAAE,GAAG,CAAC,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC;IACtC,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CAC/B,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"RadioGroupInput.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadioGroupInput.tsx"],"names":[],"mappings":"AAIA,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC,OAAO,CAAC;IAC5B,QAAQ,EAAE,GAAG,CAAC,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC;IACtC,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CAC/B,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,KAAK,2CAyBzF"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type TextDecorationValue = 'none' | 'underline' | 'line-through' | 'underline line-through';
|
|
2
|
+
type Props = {
|
|
3
|
+
label: string;
|
|
4
|
+
defaultValue: string;
|
|
5
|
+
onChange: (value: TextDecorationValue) => void;
|
|
6
|
+
};
|
|
7
|
+
export default function TextDecorationInput({ label, defaultValue, onChange }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=TextDecorationInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextDecorationInput.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextDecorationInput.tsx"],"names":[],"mappings":"AAOA,MAAM,MAAM,mBAAmB,GAAG,MAAM,GAAG,WAAW,GAAG,cAAc,GAAG,wBAAwB,CAAC;AAEnG,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,IAAI,CAAC;CAChD,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,mBAAmB,CAAC,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,KAAK,2CAsBnF"}
|
package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextFormatGroup.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TStyle } from '../../../../../../documents/blocks/helpers/TStyle';
|
|
2
|
+
type Props = {
|
|
3
|
+
value: TStyle;
|
|
4
|
+
onChange: (style: TStyle) => void;
|
|
5
|
+
};
|
|
6
|
+
export default function TextFormatGroup({ value, onChange }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=TextFormatGroup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextFormatGroup.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextFormatGroup.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAE,MAAM,EAAE,MAAM,mDAAmD,CAAC;AAmB3E,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,KAAK,2CAgDjE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MultiStylePropertyPanel.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/MultiStylePropertyPanel.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MultiStylePropertyPanel.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/MultiStylePropertyPanel.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,MAAM,mDAAmD,CAAC;AAW3E,KAAK,4BAA4B,GAAG;IAClC,KAAK,EAAE,CAAC,MAAM,MAAM,CAAC,EAAE,CAAC;IACxB,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,CAAC;IACjC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,uBAAuB,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,4BAA4B,2CAyBvG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SingleStylePropertyPanel.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/SingleStylePropertyPanel.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,MAAM,mDAAmD,CAAC;
|
|
1
|
+
{"version":3,"file":"SingleStylePropertyPanel.d.ts","sourceRoot":"","sources":["../../../../../../../src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/SingleStylePropertyPanel.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,MAAM,mDAAmD,CAAC;AAc3E,KAAK,uBAAuB,GAAG;IAC7B,IAAI,EAAE,MAAM,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,wBAAwB,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,uBAAuB,2CAgDlG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ToggleInspectorPanelButton.d.ts","sourceRoot":"","sources":["../../../src/App/InspectorDrawer/ToggleInspectorPanelButton.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ToggleInspectorPanelButton.d.ts","sourceRoot":"","sources":["../../../src/App/InspectorDrawer/ToggleInspectorPanelButton.tsx"],"names":[],"mappings":"AAQA,MAAM,CAAC,OAAO,UAAU,0BAA0B,4CAkBjD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/App/InspectorDrawer/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/App/InspectorDrawer/index.tsx"],"names":[],"mappings":"AAeA,eAAO,MAAM,sBAAsB,MAAM,CAAC;AAE1C,MAAM,CAAC,OAAO,UAAU,eAAe,4CAgEtC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ToggleSamplesPanelButton.d.ts","sourceRoot":"","sources":["../../../src/App/SamplesDrawer/ToggleSamplesPanelButton.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ToggleSamplesPanelButton.d.ts","sourceRoot":"","sources":["../../../src/App/SamplesDrawer/ToggleSamplesPanelButton.tsx"],"names":[],"mappings":"AAgBA,MAAM,CAAC,OAAO,UAAU,wBAAwB,4CAG/C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MainTabsGroup.d.ts","sourceRoot":"","sources":["../../../src/App/TemplatePanel/MainTabsGroup.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MainTabsGroup.d.ts","sourceRoot":"","sources":["../../../src/App/TemplatePanel/MainTabsGroup.tsx"],"names":[],"mappings":"AAWA,MAAM,CAAC,OAAO,UAAU,aAAa,4CAuDpC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/App/TemplatePanel/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/App/TemplatePanel/index.tsx"],"names":[],"mappings":"AA+BA,MAAM,CAAC,OAAO,UAAU,aAAa,4CAkHpC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Language } from '../i18n';
|
|
3
|
+
import { type EmailBuilderVariableInput, type EmailTemplateVariableItem } from '../documents/editor/collectTemplateVariables';
|
|
3
4
|
import { TEditorConfiguration } from '../documents/editor/core';
|
|
4
5
|
import theme from '../theme';
|
|
5
6
|
export interface EmailBuilderProps {
|
|
@@ -71,6 +72,15 @@ export interface EmailBuilderProps {
|
|
|
71
72
|
* @param isOpen 侧边栏是否打开
|
|
72
73
|
*/
|
|
73
74
|
onInspectorDrawerToggle?: (isOpen: boolean) => void;
|
|
75
|
+
/** 联系人属性列表:用于 Text 变量面板动态扩展 Contacts 变量 */
|
|
76
|
+
contactAttributes?: import('../documents/editor/EditorContext').ContactAttribute[];
|
|
77
|
+
/**
|
|
78
|
+
* 已有模板的变量默认值。集成方只需传 `attribute` + `default`(或 `variable: "{{name}}"`),
|
|
79
|
+
* 组件会按正文内插入式变量匹配 `variableInstanceId`;也可选传 `variableInstanceId` 精确写入一条。
|
|
80
|
+
* 仅更新 `variableDefaults`;未在正文中出现的变量名会被忽略。
|
|
81
|
+
* 仅 `variables` 变化时会在当前文档上合并,不替换整份文档。
|
|
82
|
+
*/
|
|
83
|
+
variables?: EmailBuilderVariableInput[];
|
|
74
84
|
}
|
|
75
85
|
/**
|
|
76
86
|
* EmailBuilder 组件暴露的方法
|
|
@@ -81,7 +91,13 @@ export interface EmailBuilderRef {
|
|
|
81
91
|
* @param callback 回调函数,接收 json 和 html 作为参数
|
|
82
92
|
*/
|
|
83
93
|
getData: (callback: (json: TEditorConfiguration, html: string) => void) => void;
|
|
94
|
+
/**
|
|
95
|
+
* 获取模板中插入式联系人变量列表(Text 块 `{{attribute}}` + 侧栏默认值)
|
|
96
|
+
* @param callback 接收形如 `[{ id, variableInstanceId, variable: "{{email}}", type: "user", attribute: "email", default: "..." }]`(variableDefaults 按 variableInstanceId 存)
|
|
97
|
+
*/
|
|
98
|
+
getVariables: (callback: (items: EmailTemplateVariableItem[]) => void) => void;
|
|
84
99
|
}
|
|
100
|
+
export type { EmailBuilderVariableInput, EmailTemplateVariableItem };
|
|
85
101
|
/**
|
|
86
102
|
* EmailBuilder 组件
|
|
87
103
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/EmailBuilder/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/EmailBuilder/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmE,MAAM,OAAO,CAAC;AAsBxF,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,OAAO,EAIL,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,EAC/B,MAAM,8CAA8C,CAAC;AAEtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEhE,OAAO,KAAK,MAAM,UAAU,CAAC;AAqB7B,MAAM,WAAW,iBAAiB;IAChC;;;OAGG;IACH,eAAe,CAAC,EAAE,oBAAoB,CAAC;IAEvC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAEpB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IAErD;;;OAGG;IACH,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IAErD;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,QAAQ,EAAE,oBAAoB,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAElE;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAEtC;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,KAAK,CAAC;IAErB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAE3B;;;OAGG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;IAEjC;;;OAGG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAEhC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IAElD;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IAEpD,2CAA2C;IAC3C,iBAAiB,CAAC,EAAE,OAAO,mCAAmC,EAAE,gBAAgB,EAAE,CAAC;IAEnF;;;;;OAKG;IACH,SAAS,CAAC,EAAE,yBAAyB,EAAE,CAAC;CACzC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;;OAGG;IACH,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,IAAI,EAAE,oBAAoB,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,KAAK,IAAI,CAAC;IAEhF;;;OAGG;IACH,YAAY,EAAE,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,yBAAyB,EAAE,KAAK,IAAI,KAAK,IAAI,CAAC;CAChF;AAED,YAAY,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,CAAC;AAErE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,QAAA,MAAM,YAAY,2FAuIhB,CAAC;AAIH,eAAe,YAAY,CAAC;AAC5B,OAAO,EAAE,YAAY,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/HtmlEditor/index.tsx"],"names":[],"mappings":"AAiBA,OAAO,EASL,OAAO,EACP,KAAK,EAGN,MAAM,eAAe,CAAC;AAQvB,OAAO,EAAE,QAAQ,EAAK,MAAM,SAAS,CAAC;AAEtC,MAAM,MAAM,cAAc,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAC;AAC1D,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,QAAQ,CAAC;AA8DpD,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC;;;OAGG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB;;;OAGG;IACH,WAAW,CAAC,EAAE,cAAc,CAAC;IAC7B;;;OAGG;IACH,aAAa,CAAC,EAAE,gBAAgB,CAAC;IACjC;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,EAAE,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;IACpB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,KAAK,EACL,QAAQ,EACR,QAAe,EACf,WAAqB,EACrB,aAAyB,EACzB,gBAAyB,EACzB,aAAsB,EACtB,EAAE,EACF,WAAkB,EAClB,YAAY,GACb,EAAE,eAAe,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/HtmlEditor/index.tsx"],"names":[],"mappings":"AAiBA,OAAO,EASL,OAAO,EACP,KAAK,EAGN,MAAM,eAAe,CAAC;AAQvB,OAAO,EAAE,QAAQ,EAAK,MAAM,SAAS,CAAC;AAEtC,MAAM,MAAM,cAAc,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAC;AAC1D,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,QAAQ,CAAC;AA8DpD,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC;;;OAGG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB;;;OAGG;IACH,WAAW,CAAC,EAAE,cAAc,CAAC;IAC7B;;;OAGG;IACH,aAAa,CAAC,EAAE,gBAAgB,CAAC;IACjC;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,EAAE,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;IACpB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,KAAK,EACL,QAAQ,EACR,QAAe,EACf,WAAqB,EACrB,aAAyB,EACzB,gBAAyB,EACzB,aAAsB,EACtB,EAAE,EACF,WAAkB,EAClB,YAAY,GACb,EAAE,eAAe,2CAiYjB"}
|