@antscorp/antsomi-ui 1.3.5-beta.23 → 1.3.5-beta.25

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 (31) hide show
  1. package/es/components/atoms/MobileFrame/MobileFrame.d.ts +1 -0
  2. package/es/components/atoms/MobileFrame/MobileFrame.js +1 -1
  3. package/es/components/atoms/MobileFrame/styled.d.ts +2 -1
  4. package/es/components/atoms/MobileFrame/styled.js +5 -5
  5. package/es/components/molecules/RichMenu/RichMenuChatBar/RichMenuChatBar.d.ts +1 -0
  6. package/es/components/molecules/RichMenu/RichMenuChatBar/RichMenuChatBar.js +3 -2
  7. package/es/components/molecules/RichMenu/RichMenuChatBar/styled.d.ts +1 -0
  8. package/es/components/molecules/RichMenu/RichMenuChatBar/styled.js +1 -1
  9. package/es/components/molecules/RichMenu/RichMenuMobileView/RichMenuMobileView.d.ts +1 -0
  10. package/es/components/molecules/RichMenu/RichMenuMobileView/RichMenuMobileView.js +3 -3
  11. package/es/components/molecules/TemplateSaveAs/index.d.ts +1 -0
  12. package/es/components/molecules/TemplateSaveAs/index.js +1 -0
  13. package/es/components/molecules/ThumbnailCard/ThumbnailCard.js +11 -11
  14. package/es/components/molecules/ThumbnailCard/types.d.ts +7 -5
  15. package/es/components/molecules/index.d.ts +1 -1
  16. package/es/components/molecules/index.js +1 -1
  17. package/es/components/organism/PreviewTemplateModal/components/Banner/index.js +1 -0
  18. package/es/components/organism/PreviewTemplateModal/components/Banner/styled.js +19 -12
  19. package/es/components/organism/PreviewTemplateModal/components/Information/index.js +1 -1
  20. package/es/components/organism/PreviewTemplateModal/constants/html.d.ts +1 -0
  21. package/es/components/organism/PreviewTemplateModal/constants/html.js +1 -0
  22. package/es/components/organism/PreviewTemplateModal/constants/index.d.ts +1 -0
  23. package/es/components/organism/PreviewTemplateModal/constants/index.js +1 -0
  24. package/es/components/template/TemplateListing/components/CategoryListing/index.js +1 -1
  25. package/es/components/template/TemplateListing/components/CategoryListing/styled.js +1 -1
  26. package/es/components/template/TemplateListing/hooks/useTemplateListing.d.ts +6 -6
  27. package/es/components/template/TemplateListing/hooks/useTemplateListing.js +23 -4
  28. package/es/components/template/TemplateListing/index.js +7 -9
  29. package/es/components/template/TemplateListing/types/TemplateListing.d.ts +1 -1
  30. package/es/queries/TemplateListing/index.js +2 -1
  31. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
2
  export interface MobileFrameProps extends React.HtmlHTMLAttributes<HTMLDivElement> {
3
+ size?: 'large' | 'medium';
3
4
  }
4
5
  export declare const MobileFrame: React.FC<React.PropsWithChildren<MobileFrameProps>>;
@@ -16,7 +16,7 @@ import { MobileWrapper, MobileInner, MobileBottomLine } from './styled';
16
16
  export const MobileFrame = (_a) => {
17
17
  var { children } = _a, restOfProps = __rest(_a, ["children"]);
18
18
  return (React.createElement(MobileWrapper, Object.assign({}, restOfProps),
19
- React.createElement(MobileInner, null,
19
+ React.createElement(MobileInner, { size: restOfProps.size },
20
20
  children,
21
21
  React.createElement(MobileBottomLine, null))));
22
22
  };
@@ -1,3 +1,4 @@
1
+ import type { MobileFrameProps } from './MobileFrame';
1
2
  export declare const MobileWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
2
- export declare const MobileInner: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const MobileInner: import("styled-components").StyledComponent<"div", any, MobileFrameProps, never>;
3
4
  export declare const MobileBottomLine: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -12,11 +12,11 @@ export const MobileWrapper = styled.div `
12
12
  export const MobileInner = styled.div `
13
13
  position: relative;
14
14
  width: 100%;
15
- max-width: 336px;
16
- height: 695px;
17
- margin: 61px 23px 20px 24px;
18
- border-bottom-left-radius: 50px;
19
- border-bottom-right-radius: 50px;
15
+ max-width: ${props => (props.size === 'medium' ? 290 : 336)}px;
16
+ height: ${props => (props.size === 'medium' ? 600 : 695)}px;
17
+ margin: ${props => (props.size === 'medium' ? '52px 23px 18px 24px' : '61px 23px 20px 24px')};
18
+ border-bottom-left-radius: ${props => (props.size === 'medium' ? 37 : 50)}px;
19
+ border-bottom-right-radius: ${props => (props.size === 'medium' ? 37 : 50)}px;
20
20
  overflow: hidden;
21
21
  `;
22
22
  export const MobileBottomLine = styled.div `
@@ -4,6 +4,7 @@ export interface RichMenuChatBarProps extends React.HtmlHTMLAttributes<HTMLDivEl
4
4
  showRichMenu?: boolean;
5
5
  showTypingChat?: boolean;
6
6
  disabled?: boolean;
7
+ size?: 'large' | 'medium';
7
8
  onToggleRichMenu?: (toggle: boolean) => void;
8
9
  onToggleTypingChat?: (toggle: boolean) => void;
9
10
  }
@@ -19,11 +19,12 @@ import { TypingChat } from './TypingChat';
19
19
  const defaultProps = {
20
20
  label: 'Menu',
21
21
  showRichMenu: true,
22
+ size: 'large',
22
23
  showTypingChat: false,
23
24
  };
24
25
  export const RichMenuChatBar = props => {
25
- const { disabled, label, showRichMenu, showTypingChat, className, onToggleRichMenu, onToggleTypingChat = () => { } } = props, restOfProps = __rest(props, ["disabled", "label", "showRichMenu", "showTypingChat", "className", "onToggleRichMenu", "onToggleTypingChat"]);
26
- return (React.createElement(ChatBarWrapper, Object.assign({ "$showRichMenu": showRichMenu, "$showTypingChat": showTypingChat, "$disabled": disabled, className: `antsomi-chat-bar ${className}` }, restOfProps), showTypingChat ? (React.createElement(TypingChat, { onClickMenu: () => onToggleTypingChat(!showTypingChat) })) : (React.createElement(React.Fragment, null,
26
+ const { disabled, label, showRichMenu, showTypingChat, className, size, onToggleRichMenu, onToggleTypingChat = () => { } } = props, restOfProps = __rest(props, ["disabled", "label", "showRichMenu", "showTypingChat", "className", "size", "onToggleRichMenu", "onToggleTypingChat"]);
27
+ return (React.createElement(ChatBarWrapper, Object.assign({ "$showRichMenu": showRichMenu, "$showTypingChat": showTypingChat, "$disabled": disabled, "$size": size, className: `antsomi-chat-bar ${className}` }, restOfProps), showTypingChat ? (React.createElement(TypingChat, { onClickMenu: () => onToggleTypingChat(!showTypingChat) })) : (React.createElement(React.Fragment, null,
27
28
  React.createElement(Icon, { type: "icon-ants-keyboard", className: "icon-keyboard", onClick: () => onToggleTypingChat(!showTypingChat) }),
28
29
  React.createElement(ChatBarMenuBox, { onClick: () => onToggleRichMenu && onToggleRichMenu(!showRichMenu) },
29
30
  React.createElement(Typography.Text, { className: "ants-text-sm" }, label),
@@ -3,6 +3,7 @@ interface ChatBarWrapperProps {
3
3
  $showRichMenu?: boolean;
4
4
  $showTypingChat?: boolean;
5
5
  $disabled?: boolean;
6
+ $size?: 'large' | 'medium';
6
7
  }
7
8
  export declare const ChatBarWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd/es/flex/interface").FlexProps<import("antd/es/_util/type").AnyObject> & import("react").RefAttributes<HTMLElement>>, any, ChatBarWrapperProps, never>;
8
9
  export declare const ChatBarMenuBox: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd/es/flex/interface").FlexProps<import("antd/es/_util/type").AnyObject> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
@@ -4,7 +4,7 @@ import styled, { css } from 'styled-components';
4
4
  import { Flex } from '@antscorp/antsomi-ui/es/components/atoms';
5
5
  export const ChatBarWrapper = styled(Flex) `
6
6
  position: relative;
7
- height: 84px;
7
+ height: ${props => (props.$size === 'medium' ? 45 : 84)}px;
8
8
  padding: 10px 20px;
9
9
  background-color: #fff;
10
10
  z-index: 10;
@@ -5,6 +5,7 @@ interface RichMenuMobileViewProps extends React.HTMLAttributes<HTMLDivElement> {
5
5
  isPreview?: boolean;
6
6
  onChangeRichMenu?: (richMenu: RichMenu, source?: 'user' | 'system') => void;
7
7
  onClickCell?: (cellIndex: number) => void;
8
+ size?: 'large' | 'medium';
8
9
  reCalculateFlag?: boolean | number;
9
10
  }
10
11
  export declare const RichMenuMobileView: React.FC<RichMenuMobileViewProps>;
@@ -20,7 +20,7 @@ import { RichMenuBlock } from '../RichMenuBlock';
20
20
  // Styles
21
21
  import { MobileContent, RichMenuWrapper, TopBar } from './styled';
22
22
  export const RichMenuMobileView = props => {
23
- const { richMenu, className, isPreview, onChangeRichMenu, onClickCell, reCalculateFlag } = props, restOfProps = __rest(props, ["richMenu", "className", "isPreview", "onChangeRichMenu", "onClickCell", "reCalculateFlag"]);
23
+ const { richMenu, className, isPreview, onChangeRichMenu, onClickCell, reCalculateFlag, size } = props, restOfProps = __rest(props, ["richMenu", "className", "isPreview", "onChangeRichMenu", "onClickCell", "reCalculateFlag", "size"]);
24
24
  // State
25
25
  const [state, setState] = useState({
26
26
  showRichMenu: true,
@@ -29,9 +29,9 @@ export const RichMenuMobileView = props => {
29
29
  });
30
30
  // Variables
31
31
  const { showRichMenu, showTypingChat } = state;
32
- return (React.createElement(MobileFrame, Object.assign({ className: `ants-mx-auto ${className}` }, restOfProps),
32
+ return (React.createElement(MobileFrame, Object.assign({ size: size, className: `ants-mx-auto ${className}` }, restOfProps),
33
33
  isPreview && React.createElement(TopBar, { src: IphoneTopBar, width: "100%", height: "auto" }),
34
34
  React.createElement(MobileContent, null,
35
35
  React.createElement(RichMenuWrapper, { "$showRichMenu": showRichMenu && !showTypingChat, "$isPreview": !!isPreview }, richMenu && (React.createElement(RichMenuBlock, { richMenu: richMenu, isPreview: isPreview, onChange: onChangeRichMenu, onClickCell: onClickCell, reCalculateFlag: reCalculateFlag }))),
36
- React.createElement(RichMenuChatBar, { disabled: !isPreview, label: richMenu === null || richMenu === void 0 ? void 0 : richMenu.chatBar.label, showRichMenu: showRichMenu, showTypingChat: showTypingChat, onToggleRichMenu: showRichMenu => setState(prevState => (Object.assign(Object.assign({}, prevState), { showRichMenu: !!showRichMenu }))), onToggleTypingChat: showTypingChat => setState(prevState => (Object.assign(Object.assign({}, prevState), { showTypingChat: !!showTypingChat }))) }))));
36
+ React.createElement(RichMenuChatBar, { disabled: !isPreview, label: richMenu === null || richMenu === void 0 ? void 0 : richMenu.chatBar.label, size: size, showRichMenu: showRichMenu, showTypingChat: showTypingChat, onToggleRichMenu: showRichMenu => setState(prevState => (Object.assign(Object.assign({}, prevState), { showRichMenu: !!showRichMenu }))), onToggleTypingChat: showTypingChat => setState(prevState => (Object.assign(Object.assign({}, prevState), { showTypingChat: !!showTypingChat }))) }))));
37
37
  };
@@ -1,3 +1,4 @@
1
1
  export { TemplateSaveAs } from './TemplateSaveAs';
2
2
  export { TemplateSaveAsModal } from './TemplateSaveAsModal';
3
+ export { useTemplateSave } from './hooks/useTemplateSave';
3
4
  export type { TemplateValueOptions } from './TemplateSaveAs';
@@ -1,2 +1,3 @@
1
1
  export { TemplateSaveAs } from './TemplateSaveAs';
2
2
  export { TemplateSaveAsModal } from './TemplateSaveAsModal';
3
+ export { useTemplateSave } from './hooks/useTemplateSave';
@@ -30,17 +30,11 @@ import { Button, Flex, Typography } from '../../atoms';
30
30
  import { THUMBNAIL_CARD_DEFAULT_HEIGHT, THUMBNAIL_CARD_DEFAULT_WIDTH } from './constants';
31
31
  export const ThumbnailCard = memo(props => {
32
32
  const [modal, contextHolder] = Modal.useModal();
33
- const { id, name, width = THUMBNAIL_CARD_DEFAULT_WIDTH, height = THUMBNAIL_CARD_DEFAULT_HEIGHT, thumbnail, removable = true, actionAvailable = true, editText = 'Edit thumbnail', previewText = 'Preview', removeModalProps, onClickEdit, onClickPreview, onClickWrapper } = props, restOfProps = __rest(props, ["id", "name", "width", "height", "thumbnail", "removable", "actionAvailable", "editText", "previewText", "removeModalProps", "onClickEdit", "onClickPreview", "onClickWrapper"]);
33
+ const { id, name, width = THUMBNAIL_CARD_DEFAULT_WIDTH, height = THUMBNAIL_CARD_DEFAULT_HEIGHT, thumbnail, removable = true, actionAvailable = true, removeModalProps, editBtnProps, previewBtnProps, onClickWrapper } = props, restOfProps = __rest(props, ["id", "name", "width", "height", "thumbnail", "removable", "actionAvailable", "removeModalProps", "editBtnProps", "previewBtnProps", "onClickWrapper"]);
34
34
  const _a = removeModalProps || {}, { onOk } = _a, restOfRemoveTemplateModalProps = __rest(_a, ["onOk"]);
35
+ const _b = editBtnProps || {}, { text: editText = 'Edit thumbnail', onClick: onClickEdit } = _b, restOfEditBtnProps = __rest(_b, ["text", "onClick"]);
36
+ const _c = previewBtnProps || {}, { text: previewText = 'Preview', onClick: onClickPreview } = _c, restOfPreviewBtnProps = __rest(_c, ["text", "onClick"]);
35
37
  // Handlers
36
- const handleClickEdit = e => {
37
- e.stopPropagation();
38
- onClickEdit === null || onClickEdit === void 0 ? void 0 : onClickEdit(id);
39
- };
40
- const handleClickPreview = e => {
41
- e.stopPropagation();
42
- onClickPreview === null || onClickPreview === void 0 ? void 0 : onClickPreview(id);
43
- };
44
38
  const handleRemoveThumbnail = e => {
45
39
  e.stopPropagation();
46
40
  modal.confirm(Object.assign(Object.assign({ title: 'Remove Template', centered: true, icon: React.createElement(Icon, { type: "icon-ants-info", style: { fontSize: 16, lineHeight: '25px' } }), content: (React.createElement("div", null,
@@ -59,9 +53,15 @@ export const ThumbnailCard = memo(props => {
59
53
  React.createElement("div", { className: "screen" }, thumbnail && React.createElement("img", { src: thumbnail, alt: "" })),
60
54
  actionAvailable && (React.createElement(React.Fragment, null,
61
55
  React.createElement(Flex, { className: "center-action", align: "center", gap: 10, vertical: true },
62
- React.createElement(Button, { type: "primary", className: "animate__animated animate__fadeIn", onClick: handleClickEdit },
56
+ React.createElement(Button, Object.assign({ type: "primary", className: "animate__animated animate__fadeIn" }, restOfEditBtnProps, { onClick: e => {
57
+ e.stopPropagation();
58
+ onClickEdit === null || onClickEdit === void 0 ? void 0 : onClickEdit(id);
59
+ } }),
63
60
  React.createElement(Typography.Text, { ellipsis: { tooltip: editText }, style: { maxWidth: '100%', color: 'inherit' } }, editText)),
64
- React.createElement(Button, { className: "animate__animated animate__fadeIn", onClick: handleClickPreview },
61
+ React.createElement(Button, Object.assign({ className: "animate__animated animate__fadeIn", onClick: e => {
62
+ e.stopPropagation();
63
+ onClickPreview === null || onClickPreview === void 0 ? void 0 : onClickPreview(id);
64
+ } }, restOfPreviewBtnProps),
65
65
  React.createElement(Typography.Text, { ellipsis: { tooltip: previewText }, style: { maxWidth: '100%', color: 'inherit' } }, previewText))),
66
66
  removable && (React.createElement("div", { className: "top-right-corner-action animate__animated animate__fadeIn" },
67
67
  React.createElement(Button, { type: "primary", icon: React.createElement(Icon, { type: "icon-ants-trash-outline", style: { fontSize: 24, color: '#FFFFFF' } }), onClick: handleRemoveThumbnail }))),
@@ -1,9 +1,13 @@
1
- import { ModalFuncProps } from 'antd';
1
+ import { ModalFuncProps, ButtonProps } from 'antd';
2
2
  import { HTMLAttributes } from 'react';
3
3
  export type TThumbnailCardId = string | number;
4
4
  export type TRemoveModalProps = Omit<ModalFuncProps, 'onOk'> & {
5
5
  onOk?: (id: TThumbnailCardId) => void;
6
6
  };
7
+ export type TThumbnailButton = Omit<ButtonProps, 'onClick'> & {
8
+ text?: string;
9
+ onClick?: (id: TThumbnailCardId) => void;
10
+ };
7
11
  export interface ThumbnailCardProps extends Omit<HTMLAttributes<HTMLDivElement>, 'id'> {
8
12
  id: TThumbnailCardId;
9
13
  name?: string;
@@ -11,11 +15,9 @@ export interface ThumbnailCardProps extends Omit<HTMLAttributes<HTMLDivElement>,
11
15
  height?: number;
12
16
  thumbnail?: string;
13
17
  removable?: boolean;
14
- editText?: string;
15
- previewText?: string;
18
+ editBtnProps?: TThumbnailButton;
19
+ previewBtnProps?: TThumbnailButton;
16
20
  actionAvailable?: boolean;
17
21
  removeModalProps?: TRemoveModalProps;
18
- onClickEdit?: (id: TThumbnailCardId) => void;
19
- onClickPreview?: (id: TThumbnailCardId) => void;
20
22
  onClickWrapper?: (id: TThumbnailCardId) => void;
21
23
  }
@@ -35,7 +35,7 @@ export { Form } from './Form';
35
35
  export { ResizeGrid } from './ResizeGrid';
36
36
  export * from './RichMenu';
37
37
  export { ModalV2 } from './ModalV2';
38
- export { TemplateSaveAs, TemplateSaveAsModal } from './TemplateSaveAs';
38
+ export { TemplateSaveAs, TemplateSaveAsModal, useTemplateSave } from './TemplateSaveAs';
39
39
  export * from './PreviewModal';
40
40
  export * from './Drawer';
41
41
  export { EditorScript } from './EditorScript';
@@ -35,7 +35,7 @@ export { Form } from './Form';
35
35
  export { ResizeGrid } from './ResizeGrid';
36
36
  export * from './RichMenu';
37
37
  export { ModalV2 } from './ModalV2';
38
- export { TemplateSaveAs, TemplateSaveAsModal } from './TemplateSaveAs';
38
+ export { TemplateSaveAs, TemplateSaveAsModal, useTemplateSave } from './TemplateSaveAs';
39
39
  export * from './PreviewModal';
40
40
  export * from './Drawer';
41
41
  export { EditorScript } from './EditorScript';
@@ -6,6 +6,7 @@ export const Banner = memo(props => {
6
6
  const { deviceType, showBackgroundSkeleton = false, children } = props;
7
7
  return (React.createElement(BannerWrapper, { deviceType: deviceType, showBackgroundSkeleton: showBackgroundSkeleton },
8
8
  React.createElement("div", { className: "device-type" },
9
+ React.createElement("div", { className: "device-type__background" }),
9
10
  React.createElement("div", { className: "device-type__wrapper" },
10
11
  React.createElement("div", { className: "content-wrapper" }, children || null),
11
12
  React.createElement("div", { className: "backdrop" })))));
@@ -6,11 +6,12 @@ import MobileFrame from '../../../../../assets/svg/mobile-frame.svg';
6
6
  import { DEVICE_TYPE } from '../../constants';
7
7
  const THUMBNAIL_CARD_RADIUS = 5;
8
8
  const { MOBILE } = DEVICE_TYPE;
9
+ const MOBILE_BORDER_RADIUS = '19px 19px 19px 21px / 21px 21px 21px 21px';
9
10
  export const BannerWrapper = styled.div `
10
11
  width: 100%;
11
12
  height: 762px;
12
13
  max-height: 762px;
13
- overflow-y: auto;
14
+ overflow-y: hidden;
14
15
  display: flex;
15
16
  justify-content: center;
16
17
  align-items: center;
@@ -22,9 +23,11 @@ export const BannerWrapper = styled.div `
22
23
  border-radius: ${THUMBNAIL_CARD_RADIUS}px;
23
24
  width: 100%;
24
25
 
25
- .device-type__wrapper {
26
+ .device-type__wrapper,
27
+ .device-type__background {
26
28
  width: 100%;
27
29
  height: 100%;
30
+ position: absolute;
28
31
  }
29
32
 
30
33
  ${p => {
@@ -32,27 +35,28 @@ export const BannerWrapper = styled.div `
32
35
  case MOBILE.value:
33
36
  return `
34
37
  width: 416.004px;
35
- height: 713px;
36
- z-index: 20;
37
- background: url(${MobileFrame}) no-repeat center center;
38
+ height: 713px;
38
39
  display: flex;
39
40
  justify-content: center;
40
41
  align-items: center;
41
42
 
43
+ .device-type__background {
44
+ background: url(${MobileFrame}) no-repeat center center;
45
+ }
46
+
42
47
  .device-type__wrapper {
43
48
  width: 391px;
44
49
  left: 11px;
45
50
  height: 661px;
46
- top: 11px;
47
- position: absolute;
51
+ top: 11px;
48
52
  z-index: 1;
49
- border-radius: 19px 19px 19px 21px / 21px 21px 21px 21px;
53
+ border-radius: ${MOBILE_BORDER_RADIUS};
50
54
 
51
55
  .content-wrapper {
52
- border-radius: 19px 19px 19px 21px / 21px 21px 21px 21px;
56
+ border-radius: inherit;
53
57
 
54
- img {
55
- border-radius: 19px 19px 19px 21px / 21px 21px 21px 21px;
58
+ & > * {
59
+ border-radius: inherit;
56
60
  }
57
61
  }
58
62
  }
@@ -60,8 +64,11 @@ export const BannerWrapper = styled.div `
60
64
  default:
61
65
  return p.showBackgroundSkeleton
62
66
  ? `
63
- .device-type__wrapper {
67
+ .device-type__background {
64
68
  background: center / cover no-repeat url(${skeletonBackground});
69
+ }
70
+
71
+ .device-type__wrapper {
65
72
  .backdrop {
66
73
  border-radius: ${THUMBNAIL_CARD_RADIUS}px;
67
74
  position: absolute;
@@ -8,7 +8,7 @@ import { Button, Radio, Typography, Flex } from '../../../../atoms';
8
8
  // Constants
9
9
  import { DEVICE_TYPE } from '../../constants';
10
10
  export const Information = memo(props => {
11
- const { deviceType, itemName = 'Template name', buttonText = 'Use template', description = 'Description show here', categoryListing, showDeviceRadios = true, onButtonClick, onDeviceTypeChange, } = props;
11
+ const { deviceType, itemName = 'Template name', buttonText = 'Use template', description = '', categoryListing, showDeviceRadios = true, onButtonClick, onDeviceTypeChange, } = props;
12
12
  return (React.createElement(InformationWrapper, { gap: 20, vertical: true },
13
13
  React.createElement("div", { style: { flexShrink: 0 }, className: "title" }, itemName),
14
14
  React.createElement(Flex, { gap: 20, vertical: true, className: "content-information" },
@@ -0,0 +1 @@
1
+ export declare const HTML: string;
@@ -0,0 +1 @@
1
+ export const HTML = '\n <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n <html\n xmlns="http://www.w3.org/1999/xhtml"\n xmlns:v="urn:schemas-microsoft-com:vml"\n xmlns:o="urn:schemas-microsoft-com:office:office"\n >\n <head>\n <!--[if gte mso 9]>\n <xml>\n <o:OfficeDocumentSettings>\n <o:AllowPNG />\n <o:PixelsPerInch>96</o:PixelsPerInch>\n </o:OfficeDocumentSettings>\n </xml>\n <![endif]-->\n <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n <meta name="viewport" content="width=device-width, initial-scale=1.0" />\n <meta name="x-apple-disable-message-reformatting" />\n <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate, max-age=1" /> \n <meta http-equiv="Pragma" content="no-cache" /> \n <meta http-equiv="Expires" content="0" />\n <!--[if !mso]><!-->\n <meta http-equiv="X-UA-Compatible" content="IE=edge" />\n <!--<![endif]-->\n <title></title>\n \n <style type="text/css">\n \n </style>\n \n <style type="text/css">\n * {\n line-height: inherit;\n }\n\n @media (max-width: 640px) {\n .hide-mobile {\n max-height: 0px;\n overflow: hidden;\n display: none !important;\n } \n }\n\n @media (min-width: 0px) {\n .hide-default__display-block {\n display: block !important;\n mso-hide: unset !important;\n }\n }\n\n @media (min-width: 641px) {\n .hide-desktop {\n max-height: 0px;\n overflow: hidden;\n display: none !important;\n }\n }\n \n body {\n margin: 0;\n padding: 0;\n }\n \n .ie-container table,\n .mso-container table {\n table-layout: fixed;\n }\n \n a[x-apple-data-detectors="true"] {\n color: inherit !important;\n text-decoration: none !important;\n }\n \n p {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n \n table th {\n font-weight: inherit;\n }\n \n .table-block__wrapper a {\n text-decoration: none !important;\n color: inherit !important;\n }\n\n .table-block__wrapper .cell--nowrap {\n white-space: nowrap !important;\n }\n\n @media (max-width: 640px) {\n .table-block__wrapper td,\n .table-block__wrapper th {\n word-break: normal !important;\n }\n }\n\n body a {\n color: inherit;\n text-decoration: none;\n }\n \n table th {\n font-weight: inherit;\n }\n \n .table-block__wrapper a {\n text-decoration: none !important;\n color: inherit !important;\n }\n\n .table-block__wrapper .cell--nowrap {\n white-space: nowrap !important;\n }\n\n @media (max-width: 640px) {\n .table-block__wrapper td,\n .table-block__wrapper th {\n word-break: normal !important;\n }\n }\n\n ul li {\n text-indent: unset !important;\n }\n </style>\n \n <style type="text/css">\n .kYUYrk{min-height:0px;padding:0px;} \n\n.kYUYrk ol,.kYUYrk ul{margin:0 0 0 1.1em !important;padding:0 !important;} \n\n.kYUYrk p{line-height:1;} \n\ndata-styled.g68[id="styled__TextEditorWrapper-sc-1sowtti-0"]{content:"kYUYrk,"} \n\n.zlGab p{padding:0px;margin:0px;} \n\n@media (max-width:640px){.zlGab .u-col-stack{display:block !important;width:100% !important;} } \n\ndata-styled.g212[id="styled__ExportHTMLWrapper-sc-edcwe-4"]{content:"zlGab,"} \n\n.hJTsAW a{-webkit-text-decoration:none;text-decoration:none;word-break:break-word !important;} \n\ndata-styled.g225[id="styled__TextBlockWrapper-sc-1vhinni-0"]{content:"hJTsAW,"} \n\n.crxXZk{font-size:16px;line-height:100%;} \n\n@media (max-width:640px){} \n\ndata-styled.g226[id="styled__TextBlockContent-sc-1vhinni-1"]{content:"crxXZk,"} \n\n.gcTDtb .image__content{max-width:100%;clear:both;border:none;float:none;-ms-interpolation-mode:bicubic;} \n\n@media (max-width:640px){.gcTDtb .image__align{text-align:center !important;} .gcTDtb .image__content{max-width:12% !important;width:12% !important;height:auto !important;} } \n\n.cAwjkv .image__content{max-width:100%;clear:both;border:none;float:none;-ms-interpolation-mode:bicubic;} \n\n@media (max-width:640px){.cAwjkv .image__align{text-align:center !important;} .cAwjkv .image__content{max-width:50% !important;width:50% !important;height:auto !important;} } \n\ndata-styled.g230[id="styled__ExportImageBlock-sc-360zd1-3"]{content:"gcTDtb,cAwjkv,"} \n\n.gAAMOc{font-family:Montserrat,sans-serif !important;} \n\ndata-styled.g236[id="styled__ExportLink-sc-15pmnos-5"]{content:"gAAMOc,"} \n\n@media (max-width:640px){.knOWNZ .button__align{text-align:center !important;} .knOWNZ .button__link{color:#000000 !important;width:50% !important;font-size:16px !important;font-style:normal !important;background:#ccbae4 !important;font-family:Montserrat,sans-serif !important;font-weight:400 !important;line-height:1 !important;border-color:rgba(0,0,0,.35) !important;border-style:none !important;-webkit-letter-spacing:0px !important;-moz-letter-spacing:0px !important;-ms-letter-spacing:0px !important;letter-spacing:0px !important;text-transform:none !important;border-top-width:1px !important;-webkit-text-decoration:none !important;text-decoration:none !important;border-left-width:1px !important;border-right-width:1px !important;border-bottom-width:1px !important;border-top-left-radius:22px !important;border-top-right-radius:22px !important;border-bottom-left-radius:22px !important;border-bottom-right-radius:22px !important;} .knOWNZ .button__link span{padding-top:10px !important;padding-right:20px !important;padding-bottom:10px !important;padding-left:20px !important;} } \n\n@media (max-width:640px){.dyxpBH .button__align{text-align:center !important;} .dyxpBH .button__link{color:#ffffff !important;width:50% !important;font-size:16px !important;font-style:normal !important;background:#000000 !important;font-family:Montserrat,sans-serif !important;font-weight:400 !important;line-height:1 !important;border-color:rgba(0,0,0,.35) !important;border-style:none !important;-webkit-letter-spacing:0px !important;-moz-letter-spacing:0px !important;-ms-letter-spacing:0px !important;letter-spacing:0px !important;text-transform:none !important;border-top-width:1px !important;-webkit-text-decoration:none !important;text-decoration:none !important;border-left-width:1px !important;border-right-width:1px !important;border-bottom-width:1px !important;border-top-left-radius:22px !important;border-top-right-radius:22px !important;border-bottom-left-radius:22px !important;border-bottom-right-radius:22px !important;} .dyxpBH .button__link span{padding-top:10px !important;padding-right:20px !important;padding-bottom:10px !important;padding-left:20px !important;} } \n\ndata-styled.g237[id="styled__ExportButton-sc-15pmnos-6"]{content:"knOWNZ,dyxpBH,"} \n\n.gfWeGG .icon__item{display:inline-block;} \n\n@media (max-width:640px){.gfWeGG{text-align:center !important;} .gfWeGG .img__icon{width:32px !important;height:32px !important;} .gfWeGG .icon__item.has-space{margin-right:5px !important;} } \n\ndata-styled.g265[id="styled__ExportIconWrapper-sc-169bc7z-3"]{content:"gfWeGG,"} \n\n@media (max-width:640px){.hoWHDE{text-align:center !important;} .hoWHDE .icon__item{display:inline-block !important;font-size:14px !important;} .hoWHDE .separator__item{display:inline-block !important;font-size:14px !important;} } \n\ndata-styled.g267[id="styled__ExportMenuItemBlock-sc-15geg5n-1"]{content:"hoWHDE,"} \n\n@media (max-width:640px){.gxjdRc{background-repeat:no-repeat !important;background-position:left top !important;background-size:cover !important;background-color:#ffffff !important;} } \n\n@media (max-width:640px){.UynTi{background-repeat:no-repeat !important;background-position:left top !important;background-size:cover !important;background-color:#ccbae4 !important;} } \n\ndata-styled.g274[id="styled__URow-sc-tne0x7-6"]{content:"gxjdRc,UynTi,"} \n\n@media (max-width:640px){.bBYvFX > .col__background{background-color:transparent !important;background-position:left top !important;background-repeat:no-repeat !important;background-size:cover !important;} } \n\n@media (max-width:640px){} \n\ndata-styled.g276[id="styled__UCol-sc-tne0x7-8"]{content:"bBYvFX,"} \n\n@media (max-width:640px){.cKVLlN .spacer__content{padding-top:30px !important;} } \n\ndata-styled.g278[id="styled__ExportSpacerBlock-sc-rof487-1"]{content:"cKVLlN,"} \n\n\n </style>\n\n <!--[if !mso]><!-->\n <link\n href="https://fonts.googleapis.com/css?family=Sacramento:400,700|Abril Fatface:400|Aleo:300,400,700|Arvo:400,700|Bitter:100,200,300,400,500,600,700,800,900|Bree Serif:400|Cabin:400,500,600,700|Cookie:400|Delius Swash Caps:400|Dosis:200,300,400,500,600,700,800|Droid Sans:400,700|Droid Serif:400,700|EB Garamond:400,500,600,700,800|Josefin Slab:100,200,300,400,500,600,700|Just Another Hand:400|Lakki Reddy:400|Lato:100,300,400,700,900|Libre Baskerville:400,700|Lobster:400|Lora:400,500,600,700|Mali:200,300,400,500,600,700|Merriweather:300,400,700,900|Montserrat:100,200,300,400,500,600,700,800,900|Noto Sans:400,700|Noto Serif:400,700|Nunito:200,300,400,500,600,700,800,900|Open Sans:300,400,500,600,700,800|Oswald:200,300,400,500,600,700|Poppins:100,200,300,400,500,600,700,800,900|PT Sans:400,700|PT Serif:400,700|Pinyon Script:400|Playfair Display:400,500,600,700,800,900|Quicksand:300,400,500,600,700|Raleway:100,200,300,400,500,600,700,800,900|Righteous:400|Roboto Slab:100,200,300,400,500,600,700,800,900|Roboto:100,300,400,500,700,900|Rubik:300,400,500,600,700,800,900|Sarabun:100,200,300,400,500,600,700,800|Source Sans Pro:200,300,400,600,700,900|Ubuntu:300,400,500,700|Vollkorn:400,500,600,700,800,900 "\n rel="stylesheet"\n type="text/css"\n />\n <!--<![endif]-->\n </head>\n <body>\n <div id="mt-19739" class="styled__ExportHTMLWrapper-sc-edcwe-4 zlGab" style="box-shadow: none; background: rgba(0, 0, 0, 0); padding: 0px; border-color: rgb(255, 255, 255); border-style: none; border-width: 0px; border-radius: 0px;"><table id="u-body" cellpadding="0" cellspacing="0" style="border-collapse: collapse; table-layout: fixed; border-spacing: 0px; vertical-align: top; min-width: 320px; margin: 0px auto; background-color: rgba(0, 0, 0, 0); width: 100%;"><tbody><tr style="vertical-align: top;"><td style="word-break: break-word; border-collapse: collapse; vertical-align: top;"> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" style="background-color: rgba(0, 0, 0, 0);padding: 0px 0px 0px 0px;"><![endif]--> <div id="" class="template-row template-row-1 mt-row Row row__block u-row-container"> <!--[if mso]><center style="width:100%"><![endif]--> <div class="styled__URow-sc-tne0x7-6 gxjdRc u-row" style="margin: 0px auto; min-width: 320px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; background-color: rgb(255, 255, 255); border-radius: 0px;"><div class="styled__URowContent-sc-tne0x7-7" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; align-items: center; padding: 5px 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px;"><div style="display: table; border-collapse: collapse; width: 100%; height: 100%; background-color: transparent;"> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 5px 0px 5px 0px;background-color: #ffffff;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;"><tr style="background-color: #ffffff;"><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: middle; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--hcd3xq1g1y8y1fjgvejn" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 20%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: middle; display: table-cell; width: 20%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--t2am4gmzivv4anrma3rg" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-t2am4gmzivv4anrma3rg-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><p><span style="font-family: Montserrat, sans-serif; font-size: 22px; letter-spacing: 0px; color: rgb(0, 0, 0); font-weight: 700;">Email Template</span></p></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 30%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: middle; display: table-cell; width: 30%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-MenuElement--wrapper--bvyemsm4iny07cp5ycex" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-MenuElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <!--[if (mso)|(IE)]><table role="presentation" border="0" cellpadding="0" cellspacing="0" align="center"><tr><![endif]--><div class="styled__ExportMenuItemBlock-sc-15geg5n-1 hoWHDE direction__block" data-align="center" data-direction="horizontal" style="text-align: center;"><!--[if (mso)|(IE)]><td style="padding: 5px 15px 5px 15px;background-color: transparent;border-width: 0 0 0 0; border-color: rgba(0,0,0,.35); border-style: none;"><![endif]--><span class="icon__item" style="color: rgb(0, 0, 0); height: 100%; font-size: 14px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; background: transparent; font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1; padding: 5px 15px; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: capitalize; border-width: 0px; text-decoration: none; border-radius: 0px; word-break: break-word; display: inline-block;">Products</span><!--[if (mso)|(IE)]></td><![endif]--><!--[if (mso)|(IE)]><td style="padding: 5px 15px 5px 15px;background-color: transparent;border-width: 0 0 0 0; border-color: rgba(0,0,0,.35); border-style: none;"><![endif]--><span class="icon__item" style="color: rgb(0, 0, 0); height: 100%; font-size: 14px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; background: transparent; font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1; padding: 5px 15px; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: capitalize; border-width: 0px; text-decoration: none; border-radius: 0px; word-break: break-word; display: inline-block;">Why Unlayer</span><!--[if (mso)|(IE)]></td><![endif]--><!--[if (mso)|(IE)]><td style="padding: 5px 15px 5px 15px;background-color: transparent;border-width: 0 0 0 0; border-color: rgba(0,0,0,.35); border-style: none;"><![endif]--><span class="icon__item" style="color: rgb(0, 0, 0); height: 100%; font-size: 14px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; background: transparent; font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1; padding: 5px 15px; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: capitalize; border-width: 0px; text-decoration: none; border-radius: 0px; word-break: break-word; display: inline-block;">Refer a friend</span><!--[if (mso)|(IE)]></td><![endif]--></div><!--[if (mso)|(IE)]></tr></table><![endif]--> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: middle; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--2g8xfhd7wbjcwqvfpknz" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]--> </div></div></div> <!--[if mso]></center><![endif]--> </div><div id="" class="template-row template-row-2 mt-row Row row__block u-row-container"> <!--[if mso]><center style="width:100%"><![endif]--> <div class="styled__URow-sc-tne0x7-6 UynTi u-row" style="margin: 0px auto; min-width: 320px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; background-color: rgb(204, 186, 228); border-radius: 0px;"><div class="styled__URowContent-sc-tne0x7-7" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; align-items: flex-start; padding: 30px 0px 20px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px;"><div style="display: table; border-collapse: collapse; width: 100%; height: 100%; background-color: transparent;"> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 30px 0px 20px 0px;background-color: #ccbae4;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;"><tr style="background-color: #ccbae4;"><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--ci19jb1lpqo65f1c81hc" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 50%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 50%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-ImageElement--wrapper--9324245ztyb2yq92napt" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-ImageElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportImageBlock-sc-360zd1-3 gcTDtb template-imge-content template-ImageElement--content" role="presentation" width="100%" cellpadding="0" cellspacing="0"><tbody><tr><td class="image__align" align="center" style="font-size: 0px;"><img class="image__content" src="https://st-media-template.antsomi.com/upload/2022/07/28/88195a1c-0a47-4293-88bd-08cc74b32e9d.png" alt="" width="87.40625" height="NaN" data-proxy-image-url="https://sandbox-media-template.antsomi.com/cdp/api/v1/saved-image/external-url/r5chk55i?_token=5474r2x214z25484z254y424f4r5x2c48434i4v4r5e4&_user_id=1600080360&_account_id=1600080360&imageUrl=https://st-media-template.antsomi.com/upload/2022/07/28/88195a1c-0a47-4293-88bd-08cc74b32e9d.png" data-dynamic-display="1" style="width: 12%; opacity: 1; box-shadow: none; border-color: rgb(255, 255, 255); border-style: solid; border-width: 0px; border-radius: 0px; display: inline-block;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-2 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 18px 50px 10px 50px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--3pe5uleqx09xijb0h3m5" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 18px 50px 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-3pe5uleqx09xijb0h3m5-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><h1 id="isPasted" style="line-height: 47.3px; color: rgb(0, 0, 0); letter-spacing: normal; text-transform: none; background-color: rgb(204, 186, 228); text-align: center; font-weight: normal; font-family: Raleway, sans-serif; font-size: 43px;"><strong style="line-height: inherit;">IT LOOKS LIKE YOU FORGOT SOMETHING</strong></h1></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-3 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--qo97cl2njnpsloeyhean" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-qo97cl2njnpsloeyhean-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><p style="text-align: center;"><span style="font-family: Montserrat,sans-serif; font-size: 22px; letter-spacing: 0px; color: rgb(0, 0, 0);"><span id="isPasted" style="color: rgb(0, 0, 0); font-family: Montserrat, sans-serif; font-size: 18px; font-weight: 400; letter-spacing: normal; text-align: center; text-transform: none; background-color: rgb(204, 186, 228);">Would you like to complete your purchase?</span></span></p></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--wdtnn0u0pgh2m50m9jth" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]--> </div></div></div> <!--[if mso]></center><![endif]--> </div><div id="" class="template-row template-row-3 mt-row Row row__block u-row-container"> <!--[if mso]><center style="width:100%"><![endif]--> <div class="styled__URow-sc-tne0x7-6 gxjdRc u-row" style="margin: 0px auto; min-width: 320px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; background-color: rgb(255, 255, 255); border-radius: 0px;"><div class="styled__URowContent-sc-tne0x7-7" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; align-items: flex-start; padding: 30px 0px 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px;"><div style="display: table; border-collapse: collapse; width: 100%; height: 100%; background-color: transparent;"> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 30px 0px 0px 0px;background-color: #ffffff;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;"><tr style="background-color: #ffffff;"><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--xnegsz66kjhvo431rv3i" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 50%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 50%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 18px 50px 17px 50px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--zu9bc4r8kw34y7p0mi3u" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 18px 50px 17px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-zu9bc4r8kw34y7p0mi3u-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><h1 id="isPasted" style="line-height: 47.3px; color: rgb(0, 0, 0); letter-spacing: normal; text-transform: none; background-color: rgb(255, 255, 255); text-align: center; font-weight: normal; font-family: Raleway, sans-serif; font-size: 43px;"><strong style="line-height: inherit;">YOUR CART</strong></h1></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-2 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-ImageElement--wrapper--mfzx1so6zsk7ckehjjmz" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-ImageElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportImageBlock-sc-360zd1-3 cAwjkv template-imge-content template-ImageElement--content" role="presentation" width="100%" cellpadding="0" cellspacing="0"><tbody><tr><td class="image__align" align="center" style="font-size: 0px;"><img class="image__content" src="https://st-media-template.antsomi.com/upload/2022/07/28/f4524797-ed03-47ee-a688-7fc8a9eabf02.png" alt="" width="364.25" height="NaN" data-proxy-image-url="https://sandbox-media-template.antsomi.com/cdp/api/v1/saved-image/external-url/tjn4as8z?_token=5474r2x214z25484z254y424f4r5x2c48434i4v4r5e4&_user_id=1600080360&_account_id=1600080360&imageUrl=https://st-media-template.antsomi.com/upload/2022/07/28/f4524797-ed03-47ee-a688-7fc8a9eabf02.png" data-dynamic-display="1" style="width: 50%; opacity: 1; box-shadow: none; border-color: rgb(255, 255, 255); border-style: solid; border-width: 0px; border-radius: 0px; display: inline-block;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-3 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-DividerElement--wrapper--6etcf1u42oy74j8nq69o" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-DividerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table role="presentation" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td align="center"><table width="100%" cellpadding="0" cellspacing="0" style="border-collapse: collapse; table-layout: fixed; border-spacing: 0px; vertical-align: top; border-top: 1px solid rgb(0, 0, 0);"><tbody><tr style="vertical-align: top;"><td></td></tr></tbody></table></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-4 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 18px 50px 0px 50px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--j5g4v1bim7qp9rnuuu4c" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 18px 50px 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-j5g4v1bim7qp9rnuuu4c-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><h1 id="isPasted" style="line-height: 1.1; color: rgb(0, 0, 0); letter-spacing: normal; text-transform: none; background-color: rgb(255, 255, 255); text-align: center; font-weight: normal; font-family: Raleway, sans-serif; font-size: 22px;"><strong style="line-height: inherit;">35W Dual USB-C Port Compact Power Adapter</strong></h1></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--8orissd091q15097zorg" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]--> </div></div></div> <!--[if mso]></center><![endif]--> </div><div id="" class="template-row template-row-4 mt-row Row row__block u-row-container"> <!--[if mso]><center style="width:100%"><![endif]--> <div class="styled__URow-sc-tne0x7-6 gxjdRc u-row" style="margin: 0px auto; min-width: 320px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; background-color: rgb(255, 255, 255); border-radius: 0px;"><div class="styled__URowContent-sc-tne0x7-7" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; align-items: flex-start; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px;"><div style="display: table; border-collapse: collapse; width: 100%; height: 100%; background-color: transparent;"> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px 0px 0px 0px;background-color: #ffffff;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;"><tr style="background-color: #ffffff;"><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--7onnlqbjcvq46wrwh8wi" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 18px 50px 10px 50px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--hletv8zx24jiz0ssd0zc" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 18px 50px 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-hletv8zx24jiz0ssd0zc-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><h1 id="isPasted" style="line-height: 24.2px; color: rgb(0, 0, 0); letter-spacing: normal; text-transform: none; background-color: rgb(255, 255, 255); text-align: right; font-weight: normal; font-family: Raleway, sans-serif; font-size: 22px;">Price : $150</h1></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 18px 50px 10px 50px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--h68cea28gwg0j859afmh" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 18px 50px 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-h68cea28gwg0j859afmh-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><h1 id="isPasted" style="line-height: 24.2px; color: rgb(0, 0, 0); letter-spacing: normal; text-transform: none; background-color: rgb(255, 255, 255); text-align: left; font-weight: normal; font-family: Raleway, sans-serif; font-size: 22px;">Quantity : 1</h1></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--qabhpqa9h59ip17xwe2c" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]--> </div></div></div> <!--[if mso]></center><![endif]--> </div><div id="" class="template-row template-row-5 mt-row Row row__block u-row-container"> <!--[if mso]><center style="width:100%"><![endif]--> <div class="styled__URow-sc-tne0x7-6 gxjdRc u-row" style="margin: 0px auto; min-width: 320px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; background-color: rgb(255, 255, 255); border-radius: 0px;"><div class="styled__URowContent-sc-tne0x7-7" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; align-items: flex-start; padding: 0px 0px 30px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px;"><div style="display: table; border-collapse: collapse; width: 100%; height: 100%; background-color: transparent;"> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px 0px 30px 0px;background-color: #ffffff;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;"><tr style="background-color: #ffffff;"><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--0amnjslq5jxqyy3i5g1e" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 50%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 50%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-DividerElement--wrapper--dskiwlrgeo3p5n0wpkiv" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-DividerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table role="presentation" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td align="center"><table width="100%" cellpadding="0" cellspacing="0" style="border-collapse: collapse; table-layout: fixed; border-spacing: 0px; vertical-align: top; border-top: 1px solid rgb(0, 0, 0);"><tbody><tr style="vertical-align: top;"><td></td></tr></tbody></table></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-2 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-ButtonElement--wrapper--aqe81y3rf7dmea91tw2x" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-ButtonElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportButton-sc-15pmnos-6 knOWNZ template-be-content template-ButtonElement--content" role="presentation" cellspacing="0" cellpadding="0" width="100%"><tbody><tr><td id="template-ButtonElement--aqe81y3rf7dmea91tw2x" data-copy="" align="center" class="template-button--aqe81y3rf7dmea91tw2x button__align"> <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="" style="height: 36px; v-text-anchor: middle; width: 364.25px" arcsize="12.079615648593%" stroke="f" fillcolor=#ccbae4" > <v:stroke dashstyle="none" /> <w:anchorlock /> <center style=" color: #000000; font-family: Montserrat; font-weight: 400; font-size: 16px; text-transform: none; letter-spacing: 0px; font-style: normal; line-height: 1; text-decoration: none; " >Check Out</center></v:roundrect><![endif]--> <!--[if !mso]><!--> <a href="#" target="_blank" rel="noopener noreferrer" data-dynamic-display="1"><div class="styled__ExportLink-sc-15pmnos-5 gAAMOc button__link" font-family="Montserrat, sans-serif" style="color: rgb(0, 0, 0); width: 50%; height: 100%; font-size: 16px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; text-align: center; background: rgb(204, 186, 228); font-family: sans-serif; font-weight: 400; line-height: 1; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: none; border-width: 1px; text-decoration: none; border-radius: 22px; box-sizing: border-box; display: inline-block;"><span style="padding: 10px 20px; display: block;">Check Out</span></div></a> <!--<![endif]--> </td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--wybl4zzd1pcqzn2l9wfd" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]--> </div></div></div> <!--[if mso]></center><![endif]--> </div><div id="" class="template-row template-row-6 mt-row Row row__block u-row-container"> <!--[if mso]><center style="width:100%"><![endif]--> <div class="styled__URow-sc-tne0x7-6 UynTi u-row" style="margin: 0px auto; min-width: 320px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; background-color: rgb(204, 186, 228); border-radius: 0px;"><div class="styled__URowContent-sc-tne0x7-7" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; align-items: flex-start; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px;"><div style="display: table; border-collapse: collapse; width: 100%; height: 100%; background-color: transparent;"> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px 0px 0px 0px;background-color: #ccbae4;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;"><tr style="background-color: #ccbae4;"><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--6p7llm223069afw3w7jt" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 50%;background-color: transparent;padding: 30px 0px 30px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 50%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 30px 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 18px 50px 0px 50px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--9x79u4iesx12bh75reud" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 18px 50px 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-9x79u4iesx12bh75reud-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><h1 id="isPasted" style="line-height: 1.2; color: rgb(0, 0, 0); letter-spacing: normal; text-transform: none; background-color: rgb(204, 186, 228); text-align: center; font-weight: normal; font-family: Raleway, sans-serif; font-size: 22px;"><strong style="line-height: inherit;">Any questions?</strong></h1></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-2 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--4c3frctqtgjh84xaci86" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-4c3frctqtgjh84xaci86-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><p style="text-align: center;"><span style="font-family: Montserrat,sans-serif; font-size: 22px; letter-spacing: 0px; color: rgb(0, 0, 0);"><strong><span id="isPasted" style="color: rgb(0, 0, 0); font-family: Montserrat, sans-serif; font-size: 14px; font-weight: 400; letter-spacing: normal; text-align: center; text-transform: none;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.&nbsp;</span></strong></span></p></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-3 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-ButtonElement--wrapper--9zm69vj0xt37bnlxh2mu" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-ButtonElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportButton-sc-15pmnos-6 dyxpBH template-be-content template-ButtonElement--content" role="presentation" cellspacing="0" cellpadding="0" width="100%"><tbody><tr><td id="template-ButtonElement--9zm69vj0xt37bnlxh2mu" data-copy="" align="center" class="template-button--9zm69vj0xt37bnlxh2mu button__align"> <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="" style="height: 36px; v-text-anchor: middle; width: 364.25px" arcsize="12.079615648593%" stroke="f" fillcolor=#000000" > <v:stroke dashstyle="none" /> <w:anchorlock /> <center style=" color: #ffffff; font-family: Montserrat; font-weight: 400; font-size: 16px; text-transform: none; letter-spacing: 0px; font-style: normal; line-height: 1; text-decoration: none; " >Contact Us</center></v:roundrect><![endif]--> <!--[if !mso]><!--> <a href="#" target="_blank" rel="noopener noreferrer" data-dynamic-display="1"><div class="styled__ExportLink-sc-15pmnos-5 gAAMOc button__link" font-family="Montserrat, sans-serif" style="color: rgb(255, 255, 255); width: 50%; height: 100%; font-size: 16px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; text-align: center; background: rgb(0, 0, 0); font-family: sans-serif; font-weight: 400; line-height: 1; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: none; border-width: 1px; text-decoration: none; border-radius: 22px; box-sizing: border-box; display: inline-block;"><span style="padding: 10px 20px; display: block;">Contact Us</span></div></a> <!--<![endif]--> </td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--9fqgfejj1l2yvghhle6p" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]--> </div></div></div> <!--[if mso]></center><![endif]--> </div><div id="" class="template-row template-row-7 mt-row Row row__block u-row-container"> <!--[if mso]><center style="width:100%"><![endif]--> <div class="styled__URow-sc-tne0x7-6 gxjdRc u-row" style="margin: 0px auto; min-width: 320px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; background-color: rgb(255, 255, 255); border-radius: 0px;"><div class="styled__URowContent-sc-tne0x7-7" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; align-items: flex-start; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px;"><div style="display: table; border-collapse: collapse; width: 100%; height: 100%; background-color: transparent;"> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px 0px 0px 0px;background-color: #ffffff;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;"><tr style="background-color: #ffffff;"><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--n4gg48f3rn74338oz8c4" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 50%;background-color: transparent;padding: 30px 0px 30px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 50%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 30px 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-EmailIconsElement--wrapper--24bl9zacj40vmc01tmpq" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-EmailIconsElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div><div class="styled__ExportIconWrapper-sc-169bc7z-3 gfWeGG icons__block" data-align="center" style="display: block; text-align: center;"> <!--[if (mso)|(IE)]><table width="100%" cellPadding="0" cellSpacing="0"><tbody><tr><td align="center"><table><tbody><tr><![endif]--> <!--[if (mso)|(IE)]><td style="padding-right: 5px"><![endif]--> <a class="icon__item has-space" href="https://facebook.com/" target="_blank" rel="" title="https://facebook.com/" style="margin-right: 5px;"><img class="img__icon" src="https://st-media-template.antsomi.com/icons/circle-black/facebook.png" alt="facebook" width="32" height="32"></a> <!--[if (mso)|(IE)]></td><![endif]--> <!--[if (mso)|(IE)]><td style="padding-right: 5px"><![endif]--> <a class="icon__item has-space" href="https://instagram.com/" target="_blank" rel="" title="https://instagram.com/" style="margin-right: 5px;"><img class="img__icon" src="https://st-media-template.antsomi.com/icons/circle-black/instagram.png" alt="instagram" width="32" height="32"></a> <!--[if (mso)|(IE)]></td><![endif]--> <!--[if (mso)|(IE)]><td style="padding-right: 0"><![endif]--> <a class="icon__item " href="https://pinterest.com/" target="_blank" rel="" title="https://pinterest.com/" style="margin-right: 0px;"><img class="img__icon" src="https://st-media-template.antsomi.com/icons/circle-black/pinterest.png" alt="pinterest" width="32" height="32"></a> <!--[if (mso)|(IE)]></td><![endif]--> <!--[if (mso)|(IE)]></tr></tbody></table></td></tr></tbody></table><![endif]--> </div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-2 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-DividerElement--wrapper--4w8unvj32lk5e84x2p3b" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-DividerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table role="presentation" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td align="center"><table width="100%" cellpadding="0" cellspacing="0" style="border-collapse: collapse; table-layout: fixed; border-spacing: 0px; vertical-align: top; border-top: 1px solid rgb(0, 0, 0);"><tbody><tr style="vertical-align: top;"><td></td></tr></tbody></table></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-3 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 50px 10px 50px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-TextElement--wrapper--ntyvbh9jf8g9kw9s1trj" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-TextElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px 50px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <div class="styled__TextBlockWrapper-sc-1vhinni-0 hJTsAW template-te-content template-TextElement--content"><div data-dynamic-display="1" class="styled__TextBlockContent-sc-1vhinni-1 crxXZk" style="display: block; text-align: left; color: rgb(0, 0, 0);"><div id="text-editor-ntyvbh9jf8g9kw9s1trj-export__bound" class="styled__TextEditorWrapper-sc-1sowtti-0 kYUYrk"><div class="fr-box" role="application"><div class="fr-wrapper" dir="auto"><div class="fr-element fr-view fr-disabled" dir="auto" contenteditable="false" aria-disabled="true" spellcheck="true"><p style="text-align: center;"><span style="font-family: Montserrat, sans-serif; font-size: 13px; letter-spacing: 0px; color: rgb(0, 0, 0);"><span id="isPasted" style="color: rgb(0, 0, 0); font-family: Montserrat, sans-serif; font-weight: 400; letter-spacing: normal; text-align: center; text-transform: none;">2261 Market Street #4667 San Francisco, CA 94114 All rights reserved. &nbsp;</span></span></p><p style="text-align: center;"><span style="font-family: Montserrat, sans-serif; font-size: 13px; letter-spacing: 0px; color: rgb(0, 0, 0);"><span style="color: rgb(0, 0, 0); font-family: Montserrat, sans-serif; font-weight: 400; letter-spacing: normal; text-align: center; text-transform: none;">Company No. 94114</span></span><span style="font-family: Montserrat,sans-serif; font-size: 22px; letter-spacing: 0px; color: rgb(0, 0, 0);"></span></p></div></div></div></div></div></div> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div><div class="template-element template-el-4 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 10px 10px 10px 10px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-MenuElement--wrapper--4tdemjjphy0vvgc50zrz" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-MenuElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 10px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <!--[if (mso)|(IE)]><table role="presentation" border="0" cellpadding="0" cellspacing="0" align="center"><tr><![endif]--><div class="styled__ExportMenuItemBlock-sc-15geg5n-1 hoWHDE direction__block" data-align="center" data-direction="horizontal" style="text-align: center;"><!--[if (mso)|(IE)]><td style="padding: 0px 2px 0px 2px;background-color: transparent;border-width: 0 0 0 0; border-color: rgba(0,0,0,.35); border-style: none;"><![endif]--><span class="icon__item" style="color: rgb(0, 0, 0); height: 100%; font-size: 14px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; background: transparent; font-family: Arial, sans-serif; font-weight: 400; line-height: 1; padding: 0px 2px; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: capitalize; border-width: 0px; text-decoration: none; border-radius: 0px; word-break: break-word; display: inline-block;">Preferences</span><!--[if (mso)|(IE)]></td><![endif]--><!--[if (mso)|(IE)]><td style="padding: 0px 2px 0px 2px;background-color: transparent;border-width: 0 0 0 0; border-color: rgba(0,0,0,.35); border-style: none;"><![endif]--><span class="separator__item" style="color: rgb(0, 0, 0); height: 100%; font-size: 14px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; background: transparent; font-family: Arial, sans-serif; font-weight: 400; line-height: 1; padding: 0px 2px; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: capitalize; border-width: 0px; text-decoration: none; border-radius: 0px; word-break: break-word; display: inline-block;">|</span><!--[if (mso)|(IE)]></td><![endif]--><!--[if (mso)|(IE)]><td style="padding: 0px 2px 0px 2px;background-color: transparent;border-width: 0 0 0 0; border-color: rgba(0,0,0,.35); border-style: none;"><![endif]--><span class="icon__item" style="color: rgb(0, 0, 0); height: 100%; font-size: 14px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; background: transparent; font-family: Arial, sans-serif; font-weight: 400; line-height: 1; padding: 0px 2px; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: capitalize; border-width: 0px; text-decoration: none; border-radius: 0px; word-break: break-word; display: inline-block;">Unsubscribe </span><!--[if (mso)|(IE)]></td><![endif]--><!--[if (mso)|(IE)]><td style="padding: 0px 2px 0px 2px;background-color: transparent;border-width: 0 0 0 0; border-color: rgba(0,0,0,.35); border-style: none;"><![endif]--><span class="separator__item" style="color: rgb(0, 0, 0); height: 100%; font-size: 14px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; background: transparent; font-family: Arial, sans-serif; font-weight: 400; line-height: 1; padding: 0px 2px; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: capitalize; border-width: 0px; text-decoration: none; border-radius: 0px; word-break: break-word; display: inline-block;">|</span><!--[if (mso)|(IE)]></td><![endif]--><!--[if (mso)|(IE)]><td style="padding: 0px 2px 0px 2px;background-color: transparent;border-width: 0 0 0 0; border-color: rgba(0,0,0,.35); border-style: none;"><![endif]--><span class="icon__item" style="color: rgb(0, 0, 0); height: 100%; font-size: 14px; max-width: 100%; box-shadow: none; font-style: normal; margin: 0px; background: transparent; font-family: Arial, sans-serif; font-weight: 400; line-height: 1; padding: 0px 2px; border-color: rgba(0, 0, 0, 0.35); border-style: none; letter-spacing: 0px; text-transform: capitalize; border-width: 0px; text-decoration: none; border-radius: 0px; word-break: break-word; display: inline-block;">View in browser</span><!--[if (mso)|(IE)]></td><![endif]--></div><!--[if (mso)|(IE)]></tr></table><![endif]--> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]><td style="width: 25%;background-color: transparent;padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <div id="" class="styled__UCol-sc-tne0x7-8 bBYvFX u-col u-col-stack" style="height: 100%; vertical-align: top; display: table-cell; width: 25%;"><div class="col__background" style="background-color: transparent; border-radius: 0px;"> <!--[if (!mso)&(!IE)]><!--> <div class="col__styles" style="inset: 0px; width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px;"> <!--<![endif]--> <div class="template-element template-el-1 Element mt-element"><div> <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;"><tr><td style="padding: 0px 0px 0px 0px;border-width: 0px 0px 0px 0px; border-color: #000000; border-style: none;background: transparent;"><![endif]--> <!--[if !mso]><!--> <div id="template-SpacerElement--wrapper--yajkzevoakcsj0tjqwhw" class="styled__ContentExportBlock-sc-1iyxbro-4 iSSqBW template-SpacerElement--wrapper" style="width: auto; z-index: 0; max-width: 100%; position: relative; box-shadow: none; margin: 0px; background: transparent; padding: 0px; border-color: rgb(0, 0, 0); border-style: none; border-width: 0px; border-radius: 0px; inset: 0px; overflow: hidden; box-sizing: border-box;"> <!--<![endif]--> <table class="styled__ExportSpacerBlock-sc-rof487-1 cKVLlN"><tbody><tr><td class="spacer__content" style="padding-top: 30px;"></td></tr></tbody></table> <!--[if !mso]><!--> </div> <!--<![endif]--> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </div></div> <!--[if (!mso)&(!IE)]><!--> </div> <!--<![endif]--> </div></div> <!--[if mso]></td><![endif]--> <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]--> </div></div></div> <!--[if mso]></center><![endif]--> </div> <!--[if (mso)|(IE)]></td></tr></table><![endif]--> </td></tr></tbody></table></div>\n </body>\n </html>\n ';
@@ -1,3 +1,4 @@
1
1
  export * from './dataSample';
2
2
  export * from './defaultProps';
3
3
  export * from './variables';
4
+ export * from './html';
@@ -1,3 +1,4 @@
1
1
  export * from './dataSample';
2
2
  export * from './defaultProps';
3
3
  export * from './variables';
4
+ export * from './html';
@@ -106,7 +106,7 @@ export const CategoryListing = memo(props => {
106
106
  return menuItems;
107
107
  }, [getItem, items]);
108
108
  return show ? (React.createElement(MenuWrapper, { "$width": width },
109
- React.createElement(Spin, { spinning: loading, wrapperClassName: "template-listing__loading" }, isEmpty(menuItems) ? (React.createElement("div", { className: "empty-wrapper" },
109
+ React.createElement(Spin, { spinning: loading, wrapperClassName: "template-listing__loading" }, isEmpty(menuItems) && !loading ? (React.createElement("div", { className: "empty-wrapper" },
110
110
  React.createElement(Empty, null))) : (React.createElement(Menu, Object.assign({ items: menuItems, inlineIndent: 0, mode: "inline", defaultOpenKeys: items === null || items === void 0 ? void 0 : items.map(item => String(item.key)), expandIcon: React.createElement(Icon, { type: "icon-ants-expand-more", style: { fontSize: 20, color: (_a = THEME === null || THEME === void 0 ? void 0 : THEME.token) === null || _a === void 0 ? void 0 : _a.bw8 } }), onClick: handleClickMenu }, restOfProps)))))) : null;
111
111
  });
112
112
  CategoryListing.displayName = 'CategoryListing';
@@ -8,6 +8,7 @@ export const MenuWrapper = styled.div `
8
8
  width: ${({ $width }) => ($width !== undefined ? `${$width}px` : 'auto')};
9
9
  overflow: auto;
10
10
  overflow-x: hidden;
11
+ border-right: 1px solid rgba(5, 5, 5, 0.06);
11
12
 
12
13
  .antsomi-menu {
13
14
  height: 100%;
@@ -33,7 +34,6 @@ export const MenuWrapper = styled.div `
33
34
  .empty-wrapper {
34
35
  width: 100%;
35
36
  height: 100%;
36
- border-right: 1px solid rgba(5, 5, 5, 0.06);
37
37
  box-sizing: border-box;
38
38
  }
39
39
  `;
@@ -9,11 +9,11 @@ interface TemplateListingOptions {
9
9
  config: TTemplateListingConfig;
10
10
  checkedCategoriesDefault?: TCheckedCategories;
11
11
  }
12
- type TState = {
12
+ type TState<T> = {
13
13
  checkedCategories: TCheckedCategories;
14
14
  openCategoryKeys: string[];
15
15
  selectedTemplateId?: TThumbnailCardId;
16
- selectTemplateAction?: TSelectTemplateAction;
16
+ selectTemplateAction?: TSelectTemplateAction | T;
17
17
  };
18
18
  /**
19
19
  * Custom React Hook for managing state and data fetching logic related to a template listing.
@@ -38,14 +38,15 @@ type TState = {
38
38
  *
39
39
  * @property {Function} onLoadMore - A function to load more template data when scrolling in the template listing.
40
40
  */
41
- export declare const useTemplateListing: (options: TemplateListingOptions) => {
41
+ export declare const useTemplateListing: <T = undefined>(options: TemplateListingOptions) => {
42
42
  categoryItems: TCategoryItem[];
43
43
  templateItems: TTemplateItem[];
44
44
  openCategoryKeys: string[];
45
45
  similarTemplates: TTemplateItem[];
46
46
  templateDetail: import("../../../../models/ObjectTemplate").ObjectTemplate | undefined;
47
47
  checkedCategories: TCheckedCategories;
48
- selectTemplateAction: TSelectTemplateAction | undefined;
48
+ selectTemplateAction: TSelectTemplateAction | T | undefined;
49
+ previewTemplateCategories: TCategoryItem[];
49
50
  isLoadingCategoryList: boolean;
50
51
  isLoadingTemplateList: boolean;
51
52
  isLoadingTemplateDetail: boolean;
@@ -56,7 +57,6 @@ export declare const useTemplateListing: (options: TemplateListingOptions) => {
56
57
  onRemoveObjectTemplate: (id: TThumbnailCardId) => void;
57
58
  onLoadMore: () => void;
58
59
  onSelectTemplate: (id: TThumbnailCardId, action: TSelectTemplateAction) => void;
59
- onClosePreviewModal: () => void;
60
- setState: import("react").Dispatch<import("react").SetStateAction<TState>>;
60
+ setState: import("react").Dispatch<import("react").SetStateAction<TState<T>>>;
61
61
  };
62
62
  export {};
@@ -137,6 +137,28 @@ export const useTemplateListing = (options) => {
137
137
  const maxSimilarTemplateLength = 4;
138
138
  return (getShuffleArray(templateItems.filter(item => item.id !== selectedTemplateId)).slice(0, maxSimilarTemplateLength) || []);
139
139
  }, [templateItems, selectedTemplateId]);
140
+ const previewTemplateCategories = useDeepCompareMemo(() => {
141
+ if ((categoryItems === null || categoryItems === void 0 ? void 0 : categoryItems.length) && !!templateDetail) {
142
+ /**
143
+ * Filter category items has value of object template
144
+ * and filter child items has value of object template
145
+ */
146
+ return categoryItems
147
+ .filter(item => {
148
+ const values = templateDetail.model[item.key];
149
+ return typeof values === 'object' ? !isEmpty(values) : !!values;
150
+ })
151
+ .map(item => {
152
+ var _a;
153
+ return (Object.assign(Object.assign({}, item), { children: (_a = item.children) === null || _a === void 0 ? void 0 : _a.filter(childItem => {
154
+ let values = templateDetail.model[item.key];
155
+ values = Array.isArray(values) ? values : [values];
156
+ return values.includes(+`${childItem.key}`.split(CATEGORY_SPLIT_KEY)[1]);
157
+ }) }));
158
+ });
159
+ }
160
+ return [];
161
+ }, [categoryItems, templateDetail]);
140
162
  // Effects
141
163
  useDeepCompareEffect(() => {
142
164
  setState(prev => (Object.assign(Object.assign({}, prev), { openCategoryKeys: (categoryList === null || categoryList === void 0 ? void 0 : categoryList.map(({ categoryCode }) => categoryCode)) || [] })));
@@ -176,9 +198,6 @@ export const useTemplateListing = (options) => {
176
198
  const onSelectTemplate = useCallback((id, action) => {
177
199
  setState(prev => (Object.assign(Object.assign({}, prev), { selectedTemplateId: id, selectTemplateAction: action })));
178
200
  }, []);
179
- const onClosePreviewModal = useCallback(() => {
180
- setState(prev => (Object.assign(Object.assign({}, prev), { selectedTemplateId: undefined })));
181
- }, []);
182
201
  return {
183
202
  // MapKeys
184
203
  categoryItems,
@@ -189,6 +208,7 @@ export const useTemplateListing = (options) => {
189
208
  templateDetail,
190
209
  checkedCategories,
191
210
  selectTemplateAction,
211
+ previewTemplateCategories,
192
212
  isLoadingCategoryList,
193
213
  isLoadingTemplateList,
194
214
  isLoadingTemplateDetail,
@@ -200,7 +220,6 @@ export const useTemplateListing = (options) => {
200
220
  onRemoveObjectTemplate,
201
221
  onLoadMore,
202
222
  onSelectTemplate,
203
- onClosePreviewModal,
204
223
  setState,
205
224
  };
206
225
  };
@@ -31,9 +31,9 @@ export const TemplateListing = memo(props => {
31
31
  const [openPreviewModal, setOpenPreviewModal] = useState(false);
32
32
  // Variables
33
33
  const { items = [], gap = LISTING_GAP_DEFAULT, loading = false, onLoadMoreTemplates = () => { }, } = templatesProps || {};
34
- const _a = previewModalProps || {}, { informationProps, onOk, onCancel } = _a, restOfPreviewModalProps = __rest(_a, ["informationProps", "onOk", "onCancel"]);
35
- const _b = informationProps || {}, { onButtonClick } = _b, restOfPreviewModalInfoProps = __rest(_b, ["onButtonClick"]);
36
- const _c = templateItemProps || {}, { width = THUMBNAIL_CARD_DEFAULT_WIDTH, height = THUMBNAIL_CARD_DEFAULT_HEIGHT, onClickPreview } = _c, restOfTemplateItemProps = __rest(_c, ["width", "height", "onClickPreview"]);
34
+ const _a = previewModalProps || {}, { onOk, onCancel } = _a, restOfPreviewModalProps = __rest(_a, ["onOk", "onCancel"]);
35
+ const _b = templateItemProps || {}, { width = THUMBNAIL_CARD_DEFAULT_WIDTH, height = THUMBNAIL_CARD_DEFAULT_HEIGHT, previewBtnProps } = _b, restOfTemplateItemProps = __rest(_b, ["width", "height", "previewBtnProps"]);
36
+ const { onClick: onClickPreview } = previewBtnProps || {};
37
37
  const isHasData = items.length > 0;
38
38
  // Hooks
39
39
  const { ref: containerRef, itemPerRow, ratio, gap: listingGap, } = useListingItemResize({
@@ -62,10 +62,6 @@ export const TemplateListing = memo(props => {
62
62
  onCancel === null || onCancel === void 0 ? void 0 : onCancel(e);
63
63
  setOpenPreviewModal(false);
64
64
  };
65
- const handleClickPreviewModalInfoBtn = e => {
66
- onButtonClick === null || onButtonClick === void 0 ? void 0 : onButtonClick(e);
67
- onCancel === null || onCancel === void 0 ? void 0 : onCancel(e);
68
- };
69
65
  return (React.createElement(TemplateListingWrapper, null,
70
66
  React.createElement(CategoryListing, Object.assign({}, categoryListingProps)),
71
67
  React.createElement(Spin, { spinning: loading, wrapperClassName: "template-listing__loading template-listing__loading--full" },
@@ -77,10 +73,12 @@ export const TemplateListing = memo(props => {
77
73
  } },
78
74
  React.createElement(BlankTemplate, Object.assign({ width: width * ratio, height: height * ratio }, blankTemplateProps)), items === null || items === void 0 ? void 0 :
79
75
  items.map(({ id, name, thumbnail }, index) => (React.createElement("div", { key: id },
80
- React.createElement(ThumbnailCard, Object.assign({ id: id, name: name, width: width * ratio, height: height * ratio, thumbnail: thumbnail, className: `animate__animated animate__fadeIn ${templateItemProps.className}`, onClickPreview: handleClickThumbnailPreview }, restOfTemplateItemProps)),
76
+ React.createElement(ThumbnailCard, Object.assign({ id: id, name: name, width: width * ratio, height: height * ratio, thumbnail: thumbnail, className: `animate__animated animate__fadeIn ${templateItemProps.className}`, previewBtnProps: {
77
+ onClick: handleClickThumbnailPreview,
78
+ } }, restOfTemplateItemProps)),
81
79
  index === items.length - 1 && React.createElement(LoadMoreBlock, { ref: loadMoreRef }))))),
82
80
  !loading && !blankTemplateProps.show && !isHasData && React.createElement(Empty, Object.assign({}, emptyProps)))),
83
- React.createElement(PreviewTemplateModal, Object.assign({ informationProps: Object.assign({ onButtonClick: handleClickPreviewModalInfoBtn }, restOfPreviewModalInfoProps), open: openPreviewModal, onOk: handleOkPreviewModal, onCancel: handleCancelPreviewModal }, restOfPreviewModalProps))));
81
+ React.createElement(PreviewTemplateModal, Object.assign({ open: openPreviewModal, onOk: handleOkPreviewModal, onCancel: handleCancelPreviewModal }, restOfPreviewModalProps))));
84
82
  });
85
83
  TemplateListing.displayName = 'TemplateListing';
86
84
  TemplateListing.defaultProps = TEMPLATE_LISTING_DEFAULT;
@@ -23,4 +23,4 @@ export interface TTemplateItem {
23
23
  name?: ThumbnailCardProps['name'];
24
24
  thumbnail?: ThumbnailCardProps['thumbnail'];
25
25
  }
26
- export type TSelectTemplateAction = 'edit' | 'preview';
26
+ export type TSelectTemplateAction = 'edit' | 'preview' | 'use';
@@ -9,6 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
9
9
  };
10
10
  // Libraries
11
11
  import { useInfiniteQuery, useMutation, useQuery, } from '@tanstack/react-query';
12
+ import { omit } from 'lodash';
12
13
  // Services
13
14
  import { templateListingServices, } from '@antscorp/antsomi-ui/es/services/TemplateListing';
14
15
  // Constants
@@ -80,7 +81,7 @@ export const usePersistTemplate = (params) => {
80
81
  return objectTemplate.update(params);
81
82
  case 'create':
82
83
  default:
83
- return objectTemplate.create(params);
84
+ return objectTemplate.create(Object.assign(Object.assign({}, params), { data: omit(params.data, ['template_id']) }));
84
85
  }
85
86
  }, onSettled() {
86
87
  queryClientAntsomiUI.invalidateQueries([QUERY_KEYS.GET_OBJECT_TEMPLATE_LIST], {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antscorp/antsomi-ui",
3
- "version": "1.3.5-beta.23",
3
+ "version": "1.3.5-beta.25",
4
4
  "description": "An enterprise-class UI design language and React UI library.",
5
5
  "sideEffects": [
6
6
  "dist/*",