easy-email-extensions 3.2.1 → 4.0.0-alpha.0

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.
Files changed (40) hide show
  1. package/lib/AttributePanel/components/attributes/CollapseWrapper/index.d.ts +5 -0
  2. package/lib/AttributePanel/components/attributes/Condition.d.ts +1 -0
  3. package/lib/AttributePanel/components/attributes/FontFamily.d.ts +3 -1
  4. package/lib/AttributePanel/components/attributes/FontStyle.d.ts +3 -1
  5. package/lib/AttributePanel/components/attributes/FontWeight.d.ts +3 -1
  6. package/lib/AttributePanel/components/attributes/Iteration.d.ts +1 -0
  7. package/lib/AttributePanel/components/attributes/LetterSpacing.d.ts +3 -1
  8. package/lib/AttributePanel/components/attributes/LineHeight.d.ts +3 -1
  9. package/lib/AttributePanel/components/attributes/Padding.d.ts +1 -0
  10. package/lib/AttributePanel/components/attributes/TextAlign.d.ts +3 -1
  11. package/lib/AttributePanel/components/attributes/TextDecoration.d.ts +3 -1
  12. package/lib/AttributePanel/components/attributes/TextTransform.d.ts +3 -1
  13. package/lib/AttributePanel/components/blocks/Social/index.d.ts +1 -1
  14. package/lib/AttributePanel/components/blocks/index.d.ts +13 -0
  15. package/lib/AttributePanel/hooks/useSelectionRange.d.ts +1 -0
  16. package/lib/MergeTagBadge/index.d.ts +1 -0
  17. package/lib/ShortcutToolbar/components/DragIcon/index.d.ts +8 -0
  18. package/lib/SimpleLayout/SimpleLayout.d.ts +1 -0
  19. package/lib/components/Form/EditGridTab.d.ts +10 -0
  20. package/lib/components/Form/RichTextToolBar/components/BasicTools.d.ts +1 -0
  21. package/lib/components/Form/RichTextToolBar/components/Bold/index.d.ts +6 -0
  22. package/lib/components/Form/RichTextToolBar/components/FontFamily/index.d.ts +5 -3
  23. package/lib/components/Form/RichTextToolBar/components/FontSize/index.d.ts +5 -0
  24. package/lib/components/Form/RichTextToolBar/components/Italic/index.d.ts +6 -0
  25. package/lib/components/Form/RichTextToolBar/components/MergeTags/index.d.ts +5 -0
  26. package/lib/components/Form/RichTextToolBar/components/StrikeThrough/index.d.ts +6 -0
  27. package/lib/components/Form/RichTextToolBar/components/ToolItem/index.d.ts +4 -2
  28. package/lib/components/Form/RichTextToolBar/components/Tools/IconBgColor/index.d.ts +5 -0
  29. package/lib/components/Form/RichTextToolBar/components/Tools/IconFontColor/index.d.ts +5 -0
  30. package/lib/components/Form/RichTextToolBar/components/Tools/Tools.d.ts +0 -1
  31. package/lib/components/Form/RichTextToolBar/components/Underline/index.d.ts +6 -0
  32. package/lib/components/Form/RichTextToolBar/components/Unlink/index.d.ts +12 -0
  33. package/lib/components/Form/index.d.ts +2 -0
  34. package/lib/index.d.ts +1 -0
  35. package/lib/index.js +1 -1
  36. package/lib/index2.js +4259 -1978
  37. package/lib/index2.js.map +1 -1
  38. package/lib/style.css +1 -1
  39. package/package.json +3 -3
  40. package/lib/components/Form/RichTextToolBar/components/FontSizeList/index.d.ts +0 -3
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface CollapseWrapperProps {
3
+ defaultActiveKey: string[];
4
+ }
5
+ export declare const CollapseWrapper: React.FC<CollapseWrapperProps>;
@@ -0,0 +1 @@
1
+ export declare function Condition(): JSX.Element | null;
@@ -1 +1,3 @@
1
- export declare function FontFamily(): JSX.Element;
1
+ export declare function FontFamily({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function FontStyle(): JSX.Element;
1
+ export declare function FontStyle({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function FontWeight(): JSX.Element;
1
+ export declare function FontWeight({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function Iteration(): JSX.Element | null;
@@ -1 +1,3 @@
1
- export declare function LetterSpacing(): JSX.Element;
1
+ export declare function LetterSpacing({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function LineHeight(): JSX.Element;
1
+ export declare function LineHeight({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1,5 +1,6 @@
1
1
  export interface PaddingProps {
2
2
  title?: string;
3
3
  attributeName?: 'padding' | 'inner-padding' | 'text-padding';
4
+ name?: string;
4
5
  }
5
6
  export declare function Padding(props?: PaddingProps): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function TextAlign(): JSX.Element;
1
+ export declare function TextAlign({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function TextDecoration(): JSX.Element;
1
+ export declare function TextDecoration({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1,3 @@
1
- export declare function TextTransform(): JSX.Element;
1
+ export declare function TextTransform({ name }: {
2
+ name?: string;
3
+ }): JSX.Element;
@@ -1 +1 @@
1
- export declare function Social(): JSX.Element;
1
+ export declare function Social(): JSX.Element | null;
@@ -39,4 +39,17 @@ export declare const blocks: {
39
39
  navbar: typeof Navbar;
40
40
  social: typeof Social;
41
41
  table: typeof Table;
42
+ advanced_text: typeof Text;
43
+ advanced_image: typeof Image;
44
+ advanced_button: typeof Button;
45
+ advanced_divider: typeof Divider;
46
+ advanced_spacer: typeof Spacer;
47
+ advanced_accordion: typeof Accordion;
48
+ advanced_carousel: typeof Carousel;
49
+ advanced_navbar: typeof Navbar;
50
+ advanced_social: typeof Social;
51
+ advanced_wrapper: typeof Wrapper;
52
+ advanced_section: typeof Section;
53
+ advanced_group: typeof Group;
54
+ advanced_column: typeof Column;
42
55
  };
@@ -3,4 +3,5 @@ export declare function useSelectionRange(): {
3
3
  selectionRange: Range | null;
4
4
  setSelectionRange: import("react").Dispatch<import("react").SetStateAction<Range | null>>;
5
5
  restoreRange: (range: Range) => void;
6
+ setRangeByElement: (element: ChildNode) => void;
6
7
  };
@@ -0,0 +1 @@
1
+ export declare function MergeTagBadge(): JSX.Element;
@@ -0,0 +1,8 @@
1
+ import { IBlockData } from 'easy-email-core';
2
+ import { RecursivePartial } from 'easy-email-core';
3
+ export interface DragIconProps<T extends IBlockData> {
4
+ type: string;
5
+ payload?: RecursivePartial<T>;
6
+ color: string;
7
+ }
8
+ export declare function DragIcon<T extends IBlockData = any>(props: DragIconProps<T>): JSX.Element;
@@ -2,4 +2,5 @@ import React from 'react';
2
2
  import { BlockLayerProps } from '../BlockLayer';
3
3
  export declare const SimpleLayout: React.FC<{
4
4
  showSourceCode?: boolean;
5
+ defaultShowLayer?: boolean;
5
6
  } & BlockLayerProps>;
@@ -0,0 +1,10 @@
1
+ import { TabsProps } from '@arco-design/web-react';
2
+ import React from 'react';
3
+ export interface EditGridTabProps<T extends any = any> extends Omit<TabsProps, 'onChange'> {
4
+ value: Array<T>;
5
+ renderItem: (item: T, index: number) => React.ReactNode;
6
+ onChange: (vals: Array<T>) => any;
7
+ additionItem?: T;
8
+ label: string;
9
+ }
10
+ export declare function EditGridTab<T extends any = any>(props: EditGridTabProps<T>): JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function BasicTools(): JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { PopoverProps } from '@arco-design/web-react';
2
+ export interface LinkProps extends PopoverProps {
3
+ currentRange: Range | null | undefined;
4
+ onChange: () => void;
5
+ }
6
+ export declare function Bold(props: LinkProps): JSX.Element;
@@ -1,3 +1,5 @@
1
- export declare function FontFamily(props: {
2
- onChange: (val: string) => void;
3
- }): JSX.Element;
1
+ export interface FontFamilyProps {
2
+ execCommand: (cmd: string, value: any) => void;
3
+ getPopupContainer: () => HTMLElement;
4
+ }
5
+ export declare function FontFamily(props: FontFamilyProps): JSX.Element;
@@ -0,0 +1,5 @@
1
+ export interface FontSizeProps {
2
+ execCommand: (cmd: string, value: any) => void;
3
+ getPopupContainer: () => HTMLElement;
4
+ }
5
+ export declare function FontSize(props: FontSizeProps): JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { PopoverProps } from '@arco-design/web-react';
2
+ export interface LinkProps extends PopoverProps {
3
+ currentRange: Range | null | undefined;
4
+ onChange: () => void;
5
+ }
6
+ export declare function Italic(props: LinkProps): JSX.Element;
@@ -0,0 +1,5 @@
1
+ export interface MergeTagsProps {
2
+ execCommand: (cmd: string, value: any) => void;
3
+ getPopupContainer: () => HTMLElement;
4
+ }
5
+ export declare function MergeTags(props: MergeTagsProps): JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { PopoverProps } from '@arco-design/web-react';
2
+ export interface LinkProps extends PopoverProps {
3
+ currentRange: Range | null | undefined;
4
+ onChange: () => void;
5
+ }
6
+ export declare function StrikeThrough(props: LinkProps): JSX.Element;
@@ -1,7 +1,9 @@
1
1
  import React from 'react';
2
2
  export declare const ToolItem: React.FC<{
3
- title: string;
3
+ title?: string;
4
4
  icon: React.ReactNode;
5
- onClick?: () => void;
5
+ onClick?: React.MouseEventHandler<any>;
6
6
  trigger?: string;
7
+ style?: React.CSSProperties;
8
+ isActive?: boolean;
7
9
  }>;
@@ -0,0 +1,5 @@
1
+ export declare function IconBgColor({ selectionRange, execCommand, getPopoverMountNode }: {
2
+ selectionRange: Range | null;
3
+ execCommand: (cmd: string, val?: any) => void;
4
+ getPopoverMountNode: () => HTMLElement;
5
+ }): JSX.Element;
@@ -0,0 +1,5 @@
1
+ export declare function IconFontColor({ selectionRange, execCommand, getPopoverMountNode }: {
2
+ selectionRange: Range | null;
3
+ execCommand: (cmd: string, val?: any) => void;
4
+ getPopoverMountNode: () => HTMLElement;
5
+ }): JSX.Element;
@@ -1,5 +1,4 @@
1
1
  export interface ToolsProps {
2
2
  onChange: (content: string) => any;
3
- container: HTMLElement | null;
4
3
  }
5
4
  export declare function Tools(props: ToolsProps): JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { PopoverProps } from '@arco-design/web-react';
2
+ export interface LinkProps extends PopoverProps {
3
+ currentRange: Range | null | undefined;
4
+ onChange: () => void;
5
+ }
6
+ export declare function Underline(props: LinkProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { PopoverProps } from '@arco-design/web-react';
2
+ export interface LinkParams {
3
+ link: string;
4
+ blank: boolean;
5
+ underline: boolean;
6
+ linkNode: HTMLAnchorElement | null;
7
+ }
8
+ export interface LinkProps extends PopoverProps {
9
+ currentRange: Range | null | undefined;
10
+ onChange: () => void;
11
+ }
12
+ export declare function Unlink(props: LinkProps): JSX.Element;
@@ -8,6 +8,7 @@ import enhancer from './enhancer';
8
8
  import { InputProps } from './Input';
9
9
  import { InputWithUnitProps } from './InputWithUnit';
10
10
  import { EditTabProps } from './EditTab';
11
+ import { EditGridTabProps } from './EditGridTab';
11
12
  import { InlineTextProps } from './InlineTextField';
12
13
  import { AutoCompleteProps } from './AutoComplete';
13
14
  export { RichTextField } from './RichTextField';
@@ -28,5 +29,6 @@ export declare const SwitchField: (props: import("./enhancer").EnhancerProps<Swi
28
29
  export declare const DatePickerField: (props: import("./enhancer").EnhancerProps<DatePickerProps> & Omit<DatePickerProps, "value" | "onChange" | "mutators">) => JSX.Element;
29
30
  export declare const CheckboxField: (props: import("./enhancer").EnhancerProps<CheckboxGroupProps<any>> & Omit<CheckboxGroupProps<any>, "value" | "onChange" | "mutators">) => JSX.Element;
30
31
  export declare const EditTabField: (props: import("./enhancer").EnhancerProps<EditTabProps<any>> & Omit<EditTabProps<any>, "value" | "onChange" | "mutators">) => JSX.Element;
32
+ export declare const EditGridTabField: (props: import("./enhancer").EnhancerProps<EditGridTabProps<any>> & Omit<EditGridTabProps<any>, "value" | "onChange" | "mutators">) => JSX.Element;
31
33
  export declare const InlineTextField: (props: import("./enhancer").EnhancerProps<InlineTextProps> & Omit<InlineTextProps, "value" | "onChange" | "mutators">) => JSX.Element;
32
34
  export { enhancer };
package/lib/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export * from './ShortcutToolbar';
5
5
  export * from './SourceCodePanel';
6
6
  export * from './InteractivePrompt';
7
7
  export * from './SimpleLayout';
8
+ export * from './MergeTagBadge';
8
9
  export * from './components/Form';
9
10
  export { getContextMergeTags } from './utils/getContextMergeTags';
10
11
  export { getIconNameByBlockType } from './utils/getIconNameByBlockType';
package/lib/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { e as Align, A as AttributePanel, f as AttributesPanelWrapper, $ as AutoCompleteField, j as Background, m as BackgroundColor, d as BlockAttributeConfigurationManager, B as BlockLayer, x as BlockMarketManager, y as BlockMaskWrapper, p as Border, q as BorderColor, t as BorderStyle, v as BorderWidth, a3 as CheckboxField, C as Color, U as ColorPickerField, h as ContainerBackgroundColor, a2 as DatePickerField, D as Decoration, n as Direction, a4 as EditTabField, F as FontFamily, r as FontSize, u as FontStyle, w as FontWeight, H as Height, Y as ImageUploaderField, a5 as InlineTextField, J as InputWithUnitField, I as InteractivePrompt, L as LetterSpacing, k as LineHeight, o as Link, M as Margin, s as MergeTags, N as NavbarLinkPadding, Q as NumberField, P as Padding, a0 as RadioGroupField, a7 as RichTextField, K as SearchField, Z as SelectField, S as ShortcutToolbar, E as SimpleLayout, R as SliderField, z as SourceCodePanel, a1 as SwitchField, T as TextAlign, O as TextAreaField, i as TextDecoration, G as TextField, l as TextTransform, _ as TreeSelectField, X as UploadField, V as VerticalAlign, W as Width, a6 as enhancer, b as getBlockTitle, g as getContextMergeTags, a as getIconNameByBlockType } from "./index2.js";
1
+ export { e as Align, A as AttributePanel, f as AttributesPanelWrapper, a0 as AutoCompleteField, j as Background, m as BackgroundColor, d as BlockAttributeConfigurationManager, B as BlockLayer, x as BlockMarketManager, y as BlockMaskWrapper, p as Border, q as BorderColor, t as BorderStyle, v as BorderWidth, a4 as CheckboxField, C as Color, X as ColorPickerField, h as ContainerBackgroundColor, a3 as DatePickerField, D as Decoration, n as Direction, a6 as EditGridTabField, a5 as EditTabField, F as FontFamily, r as FontSize, u as FontStyle, w as FontWeight, H as Height, Z as ImageUploaderField, a7 as InlineTextField, K as InputWithUnitField, I as InteractivePrompt, L as LetterSpacing, k as LineHeight, o as Link, M as Margin, G as MergeTagBadge, s as MergeTags, N as NavbarLinkPadding, R as NumberField, P as Padding, a1 as RadioGroupField, a9 as RichTextField, O as SearchField, _ as SelectField, S as ShortcutToolbar, E as SimpleLayout, U as SliderField, z as SourceCodePanel, a2 as SwitchField, T as TextAlign, Q as TextAreaField, i as TextDecoration, J as TextField, l as TextTransform, $ as TreeSelectField, Y as UploadField, V as VerticalAlign, W as Width, a8 as enhancer, b as getBlockTitle, g as getContextMergeTags, a as getIconNameByBlockType } from "./index2.js";
2
2
  import "react";
3
3
  import "easy-email-editor";
4
4
  import "easy-email-core";