easy-email-pro-theme 1.59.1 → 1.59.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +257 -50
- package/lib/typings/components/Form/ColorPicker/NewColorPicker.d.ts +1 -0
- package/lib/typings/components/Form/ColorPicker/nativeColorInput.d.ts +2 -0
- package/lib/typings/components/Providers/colorPickerColorList.d.ts +5 -0
- package/lib/typings/components/Providers/draggingDropPosition.d.ts +7 -0
- package/lib/typings/themes/Retro/index.d.ts +1 -1
- package/lib/typings/themes/Retro/initialColorPickerColors.d.ts +16 -0
- package/lib/typings/typings/custom-types.d.ts +4 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -751,6 +751,15 @@ const assignIdsToElementTree = (element, overwrite = false) => {
|
|
|
751
751
|
loop2(newElement);
|
|
752
752
|
return newElement;
|
|
753
753
|
};
|
|
754
|
+
function shouldInsertAfterHeroSibling({
|
|
755
|
+
canInsertIntoParent,
|
|
756
|
+
canInsertIntoTarget,
|
|
757
|
+
isAutoCompleteEnabled,
|
|
758
|
+
isBottomHalf,
|
|
759
|
+
isHeroTarget
|
|
760
|
+
}) {
|
|
761
|
+
return isAutoCompleteEnabled && isHeroTarget && isBottomHalf && canInsertIntoTarget && canInsertIntoParent;
|
|
762
|
+
}
|
|
754
763
|
const DraggingProviderContext = React__default.createContext({});
|
|
755
764
|
const DraggingProvider = ({
|
|
756
765
|
children
|
|
@@ -1037,14 +1046,30 @@ const DraggingProvider = ({
|
|
|
1037
1046
|
const node = ReactEditor.toDOMNode(editor, dropElement);
|
|
1038
1047
|
const rect = node.getBoundingClientRect();
|
|
1039
1048
|
const isTop = ev.clientY < rect.y + rect.height / 2;
|
|
1049
|
+
const canInsertIntoDropElement = NodeUtils.isParentCategoryType(
|
|
1050
|
+
propsData.element.type,
|
|
1051
|
+
dropElement.type
|
|
1052
|
+
) && !NodeUtils.isVoidBlockElement(dropElement);
|
|
1053
|
+
const dropParentElement = Node.get(
|
|
1054
|
+
editor,
|
|
1055
|
+
Path.parent(dropPath)
|
|
1056
|
+
);
|
|
1057
|
+
const canInsertIntoDropParent = NodeUtils.isElement(dropParentElement) && NodeUtils.isParentCategoryType(
|
|
1058
|
+
propsData.element.type,
|
|
1059
|
+
dropParentElement.type
|
|
1060
|
+
);
|
|
1061
|
+
const shouldInsertAfterHero = shouldInsertAfterHeroSibling({
|
|
1062
|
+
canInsertIntoParent: canInsertIntoDropParent,
|
|
1063
|
+
canInsertIntoTarget: canInsertIntoDropElement,
|
|
1064
|
+
isAutoCompleteEnabled: Boolean(editorProps.enabledAutoComplete),
|
|
1065
|
+
isBottomHalf: !isTop,
|
|
1066
|
+
isHeroTarget: NodeUtils.isHeroElement(dropElement)
|
|
1067
|
+
});
|
|
1040
1068
|
let direction = "bottom";
|
|
1041
1069
|
if (isTop) {
|
|
1042
1070
|
direction = "top";
|
|
1043
1071
|
}
|
|
1044
|
-
if (
|
|
1045
|
-
propsData.element.type,
|
|
1046
|
-
dropElement.type
|
|
1047
|
-
) && !NodeUtils.isVoidBlockElement(dropElement)) {
|
|
1072
|
+
if (canInsertIntoDropElement && !shouldInsertAfterHero) {
|
|
1048
1073
|
direction = "middle";
|
|
1049
1074
|
}
|
|
1050
1075
|
root2.querySelectorAll("[data-slate-dragover='true']").forEach((item2) => {
|
|
@@ -1151,10 +1176,25 @@ const DraggingProvider = ({
|
|
|
1151
1176
|
const node = ReactEditor.toDOMNode(editor, dropElement);
|
|
1152
1177
|
const rect = node.getBoundingClientRect();
|
|
1153
1178
|
const isTop = ev.clientY < rect.y + rect.height / 2;
|
|
1154
|
-
const
|
|
1179
|
+
const canInsertIntoDropElement = NodeUtils.isParentCategoryType(
|
|
1155
1180
|
propsData.element.type,
|
|
1156
1181
|
dropElement.type
|
|
1157
1182
|
) && !NodeUtils.isVoidBlockElement(dropElement);
|
|
1183
|
+
const dropParentElement = Node.get(
|
|
1184
|
+
editor,
|
|
1185
|
+
Path.parent(dropPath)
|
|
1186
|
+
);
|
|
1187
|
+
const canInsertIntoDropParent = NodeUtils.isElement(dropParentElement) && NodeUtils.isParentCategoryType(
|
|
1188
|
+
propsData.element.type,
|
|
1189
|
+
dropParentElement.type
|
|
1190
|
+
);
|
|
1191
|
+
const isInsert = canInsertIntoDropElement && !shouldInsertAfterHeroSibling({
|
|
1192
|
+
canInsertIntoParent: canInsertIntoDropParent,
|
|
1193
|
+
canInsertIntoTarget: canInsertIntoDropElement,
|
|
1194
|
+
isAutoCompleteEnabled: Boolean(editorProps.enabledAutoComplete),
|
|
1195
|
+
isBottomHalf: !isTop,
|
|
1196
|
+
isHeroTarget: NodeUtils.isHeroElement(dropElement)
|
|
1197
|
+
});
|
|
1158
1198
|
let targetPath = [...dropPath];
|
|
1159
1199
|
if (propsData.action === "move") {
|
|
1160
1200
|
if (!source)
|
|
@@ -1261,24 +1301,7 @@ const DraggingProvider = ({
|
|
|
1261
1301
|
root2 == null ? void 0 : root2.removeEventListener("drop", onDrop);
|
|
1262
1302
|
root2 == null ? void 0 : root2.removeEventListener("mousemove", onMousemove);
|
|
1263
1303
|
};
|
|
1264
|
-
}, [
|
|
1265
|
-
autoScrollConfig,
|
|
1266
|
-
dragoverType,
|
|
1267
|
-
editor,
|
|
1268
|
-
editorProps.readOnly,
|
|
1269
|
-
inited,
|
|
1270
|
-
isElementDragging,
|
|
1271
|
-
quantityLimitCheck,
|
|
1272
|
-
removeDraggingStyle,
|
|
1273
|
-
removePlaceholder,
|
|
1274
|
-
root2,
|
|
1275
|
-
rootWindow,
|
|
1276
|
-
setDragoverDirection,
|
|
1277
|
-
setDragoverNodePath,
|
|
1278
|
-
setHoverNodePath,
|
|
1279
|
-
setSelectedNodePath,
|
|
1280
|
-
standaloneElementEditing
|
|
1281
|
-
]);
|
|
1304
|
+
}, [autoScrollConfig, dragoverType, editor, editorProps.enabledAutoComplete, editorProps.readOnly, inited, isElementDragging, quantityLimitCheck, removeDraggingStyle, removePlaceholder, root2, rootWindow, setDragoverDirection, setDragoverNodePath, setHoverNodePath, setSelectedNodePath, standaloneElementEditing]);
|
|
1282
1305
|
const dragHandle = useMemo(() => {
|
|
1283
1306
|
return {
|
|
1284
1307
|
onPointerDown(event) {
|
|
@@ -2129,6 +2152,17 @@ function useFontFamily() {
|
|
|
2129
2152
|
const useEditorThemeState = () => {
|
|
2130
2153
|
return useContext(EditorThemeStateContext);
|
|
2131
2154
|
};
|
|
2155
|
+
const MAX_COLOR_PICKER_RECORD_SIZE = 10;
|
|
2156
|
+
function getColorPickerList({
|
|
2157
|
+
cacheColors = [],
|
|
2158
|
+
defaultColors = []
|
|
2159
|
+
}) {
|
|
2160
|
+
const cachedColors = cacheColors.filter(Boolean);
|
|
2161
|
+
if (cachedColors.length) {
|
|
2162
|
+
return cachedColors.slice(-MAX_COLOR_PICKER_RECORD_SIZE);
|
|
2163
|
+
}
|
|
2164
|
+
return defaultColors.filter(Boolean).slice(-MAX_COLOR_PICKER_RECORD_SIZE);
|
|
2165
|
+
}
|
|
2132
2166
|
const CURRENT_COLORS_KEY = "CURRENT_COLORS_KEY";
|
|
2133
2167
|
const MAX_RECORD_SIZE = 10;
|
|
2134
2168
|
const colorDivRef = document.createElement("div");
|
|
@@ -2154,9 +2188,10 @@ const ColorContext = React__default.createContext(
|
|
|
2154
2188
|
);
|
|
2155
2189
|
const ColorProvider = ({ children }) => {
|
|
2156
2190
|
const [list, setList] = useState(
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2191
|
+
getColorPickerList({
|
|
2192
|
+
cacheColors: getCacheColors(),
|
|
2193
|
+
defaultColors: defaultPresetColor
|
|
2194
|
+
})
|
|
2160
2195
|
);
|
|
2161
2196
|
const addCurrentColor = useCallback(
|
|
2162
2197
|
debounce$2((newColor) => {
|
|
@@ -2174,9 +2209,10 @@ const ColorProvider = ({ children }) => {
|
|
|
2174
2209
|
);
|
|
2175
2210
|
useEffect(() => {
|
|
2176
2211
|
const timer = setInterval(() => {
|
|
2177
|
-
const newColors =
|
|
2178
|
-
|
|
2179
|
-
|
|
2212
|
+
const newColors = getColorPickerList({
|
|
2213
|
+
cacheColors: getCacheColors(),
|
|
2214
|
+
defaultColors: defaultPresetColor
|
|
2215
|
+
});
|
|
2180
2216
|
setList(newColors);
|
|
2181
2217
|
}, 1e3);
|
|
2182
2218
|
return () => {
|
|
@@ -29246,6 +29282,20 @@ const LegacyColorPicker$1 = (props) => {
|
|
|
29246
29282
|
}
|
|
29247
29283
|
));
|
|
29248
29284
|
};
|
|
29285
|
+
const NATIVE_COLOR_INPUT_FALLBACK = "#000000";
|
|
29286
|
+
function getNativeColorInputValue(value) {
|
|
29287
|
+
if (!value)
|
|
29288
|
+
return NATIVE_COLOR_INPUT_FALLBACK;
|
|
29289
|
+
try {
|
|
29290
|
+
return Color$1(value).hex().toUpperCase();
|
|
29291
|
+
} catch (error2) {
|
|
29292
|
+
}
|
|
29293
|
+
try {
|
|
29294
|
+
return Color$1(`#${value}`).hex().toUpperCase();
|
|
29295
|
+
} catch (error2) {
|
|
29296
|
+
}
|
|
29297
|
+
return NATIVE_COLOR_INPUT_FALLBACK;
|
|
29298
|
+
}
|
|
29249
29299
|
const getPickerValue$1 = (value) => {
|
|
29250
29300
|
if (!value)
|
|
29251
29301
|
return "";
|
|
@@ -29268,7 +29318,8 @@ const NewColorPicker$1 = (props) => {
|
|
|
29268
29318
|
onBlur: _onBlur,
|
|
29269
29319
|
showInput: _showInput,
|
|
29270
29320
|
placeholder: _placeholder,
|
|
29271
|
-
getPopupContainer
|
|
29321
|
+
getPopupContainer,
|
|
29322
|
+
allowClear = true
|
|
29272
29323
|
} = _a, arcoColorPickerProps = __objRest(_a, [
|
|
29273
29324
|
"value",
|
|
29274
29325
|
"onChange",
|
|
@@ -29276,7 +29327,8 @@ const NewColorPicker$1 = (props) => {
|
|
|
29276
29327
|
"onBlur",
|
|
29277
29328
|
"showInput",
|
|
29278
29329
|
"placeholder",
|
|
29279
|
-
"getPopupContainer"
|
|
29330
|
+
"getPopupContainer",
|
|
29331
|
+
"allowClear"
|
|
29280
29332
|
]);
|
|
29281
29333
|
const [popupVisible, setPopupVisible] = useState(false);
|
|
29282
29334
|
const wasPopupVisibleRef = useRef(false);
|
|
@@ -29329,6 +29381,21 @@ const NewColorPicker$1 = (props) => {
|
|
|
29329
29381
|
setPickerValue(value2);
|
|
29330
29382
|
debouncedApplyPickerChange(value2);
|
|
29331
29383
|
});
|
|
29384
|
+
const onNativeInputChange = useEventCallback(
|
|
29385
|
+
(event) => {
|
|
29386
|
+
const value2 = event.target.value.toUpperCase();
|
|
29387
|
+
debouncedApplyPickerChange.cancel();
|
|
29388
|
+
setPickerValue(value2);
|
|
29389
|
+
applyPickerChange(value2);
|
|
29390
|
+
}
|
|
29391
|
+
);
|
|
29392
|
+
const onClear = useEventCallback((event) => {
|
|
29393
|
+
event.stopPropagation();
|
|
29394
|
+
debouncedApplyPickerChange.cancel();
|
|
29395
|
+
setPickerValue("");
|
|
29396
|
+
setPopupVisible(false);
|
|
29397
|
+
onChange == null ? void 0 : onChange("");
|
|
29398
|
+
});
|
|
29332
29399
|
const onVisibleChange = useEventCallback((visible) => {
|
|
29333
29400
|
if (!visible && wasPopupVisibleRef.current) {
|
|
29334
29401
|
debouncedApplyPickerChange.flush();
|
|
@@ -29345,27 +29412,82 @@ const NewColorPicker$1 = (props) => {
|
|
|
29345
29412
|
window.removeEventListener(CustomEvent.EDITOR_CLICK, onHandle);
|
|
29346
29413
|
};
|
|
29347
29414
|
}, [onVisibleChange]);
|
|
29415
|
+
const showClearButton = allowClear && !arcoColorPickerProps.disabled && Boolean(value || pickerValue);
|
|
29348
29416
|
return /* @__PURE__ */ React__default.createElement(ArcoColorPickerConfigProvider, null, /* @__PURE__ */ React__default.createElement(
|
|
29349
|
-
|
|
29350
|
-
|
|
29351
|
-
|
|
29352
|
-
|
|
29353
|
-
|
|
29354
|
-
|
|
29355
|
-
|
|
29356
|
-
|
|
29357
|
-
|
|
29358
|
-
|
|
29359
|
-
|
|
29360
|
-
|
|
29361
|
-
|
|
29362
|
-
|
|
29363
|
-
|
|
29364
|
-
|
|
29365
|
-
|
|
29366
|
-
|
|
29417
|
+
"div",
|
|
29418
|
+
{
|
|
29419
|
+
style: {
|
|
29420
|
+
display: "flex",
|
|
29421
|
+
alignItems: "center",
|
|
29422
|
+
position: "relative",
|
|
29423
|
+
width: "100%"
|
|
29424
|
+
}
|
|
29425
|
+
},
|
|
29426
|
+
/* @__PURE__ */ React__default.createElement(
|
|
29427
|
+
ColorPicker$2,
|
|
29428
|
+
__spreadProps(__spreadValues({}, arcoColorPickerProps), {
|
|
29429
|
+
value: pickerValue,
|
|
29430
|
+
format: "hex",
|
|
29431
|
+
style: __spreadValues({ width: "100%", flex: 1 }, arcoColorPickerProps.style),
|
|
29432
|
+
popupVisible,
|
|
29433
|
+
onVisibleChange,
|
|
29434
|
+
onChange: onPickerChange,
|
|
29435
|
+
historyColors: colors,
|
|
29436
|
+
disabledAlpha: true,
|
|
29437
|
+
showHistory: true,
|
|
29438
|
+
showText: true,
|
|
29439
|
+
triggerProps: __spreadProps(__spreadValues({}, arcoColorPickerProps.triggerProps), {
|
|
29440
|
+
getPopupContainer: ((_b = arcoColorPickerProps.triggerProps) == null ? void 0 : _b.getPopupContainer) || getPopupContainer,
|
|
29441
|
+
className: [
|
|
29442
|
+
(_c = arcoColorPickerProps.triggerProps) == null ? void 0 : _c.className,
|
|
29443
|
+
"easy-email-pro-theme-color-picker-popup"
|
|
29444
|
+
].filter(Boolean).join(" ")
|
|
29445
|
+
})
|
|
29367
29446
|
})
|
|
29368
|
-
|
|
29447
|
+
),
|
|
29448
|
+
!arcoColorPickerProps.disabled ? /* @__PURE__ */ React__default.createElement(Tooltip, { content: t("Pick a color"), position: "top" }, /* @__PURE__ */ React__default.createElement(
|
|
29449
|
+
"div",
|
|
29450
|
+
{
|
|
29451
|
+
style: {
|
|
29452
|
+
position: "absolute",
|
|
29453
|
+
left: 0,
|
|
29454
|
+
top: 0,
|
|
29455
|
+
width: 32,
|
|
29456
|
+
height: "100%"
|
|
29457
|
+
}
|
|
29458
|
+
},
|
|
29459
|
+
/* @__PURE__ */ React__default.createElement(
|
|
29460
|
+
"input",
|
|
29461
|
+
{
|
|
29462
|
+
"aria-label": "Native color picker",
|
|
29463
|
+
type: "color",
|
|
29464
|
+
value: getNativeColorInputValue(pickerValue || mergeTagColor),
|
|
29465
|
+
onChange: onNativeInputChange,
|
|
29466
|
+
onClick: (event) => event.stopPropagation(),
|
|
29467
|
+
style: {
|
|
29468
|
+
position: "absolute",
|
|
29469
|
+
inset: 0,
|
|
29470
|
+
width: "100%",
|
|
29471
|
+
height: "100%",
|
|
29472
|
+
opacity: 0,
|
|
29473
|
+
cursor: "pointer",
|
|
29474
|
+
border: 0,
|
|
29475
|
+
padding: 0
|
|
29476
|
+
}
|
|
29477
|
+
}
|
|
29478
|
+
)
|
|
29479
|
+
)) : null,
|
|
29480
|
+
showClearButton ? /* @__PURE__ */ React__default.createElement(
|
|
29481
|
+
Button$2,
|
|
29482
|
+
{
|
|
29483
|
+
"aria-label": "Clear color",
|
|
29484
|
+
icon: /* @__PURE__ */ React__default.createElement(IconClose, null),
|
|
29485
|
+
onClick: onClear,
|
|
29486
|
+
size: "mini",
|
|
29487
|
+
type: "text",
|
|
29488
|
+
style: { marginLeft: 4, flex: "none" }
|
|
29489
|
+
}
|
|
29490
|
+
) : null
|
|
29369
29491
|
));
|
|
29370
29492
|
};
|
|
29371
29493
|
const ColorPickerContainer = (props) => {
|
|
@@ -44845,11 +44967,92 @@ const normalizeElements = (element) => {
|
|
|
44845
44967
|
children: sortedChildren
|
|
44846
44968
|
}));
|
|
44847
44969
|
};
|
|
44970
|
+
const HEX_COLOR_REGEXP = /#[0-9a-fA-F]{3,8}\b/g;
|
|
44971
|
+
const RGB_COLOR_REGEXP = /rgba?\([^)]*\)/gi;
|
|
44972
|
+
const COLOR_KEY_REGEXP = /color/i;
|
|
44973
|
+
const VARIABLE_COLOR_REGEXP = /(\{\{.*\}\}|\$\(|^var\()/i;
|
|
44974
|
+
function getInitialColorPickerHistoryColors(initialColors = []) {
|
|
44975
|
+
return [...new Set(initialColors)].filter(Boolean).slice(-10);
|
|
44976
|
+
}
|
|
44977
|
+
function isValidColor(value) {
|
|
44978
|
+
if (VARIABLE_COLOR_REGEXP.test(value))
|
|
44979
|
+
return false;
|
|
44980
|
+
try {
|
|
44981
|
+
Color$1(value);
|
|
44982
|
+
return true;
|
|
44983
|
+
} catch (error2) {
|
|
44984
|
+
return false;
|
|
44985
|
+
}
|
|
44986
|
+
}
|
|
44987
|
+
function getColorMatchesInOrder(value) {
|
|
44988
|
+
return [
|
|
44989
|
+
...[...value.matchAll(HEX_COLOR_REGEXP)].map((match) => ({
|
|
44990
|
+
color: match[0],
|
|
44991
|
+
index: match.index || 0
|
|
44992
|
+
})),
|
|
44993
|
+
...[...value.matchAll(RGB_COLOR_REGEXP)].map((match) => ({
|
|
44994
|
+
color: match[0],
|
|
44995
|
+
index: match.index || 0
|
|
44996
|
+
}))
|
|
44997
|
+
].sort((a, b) => a.index - b.index).map((match) => match.color).filter(isValidColor);
|
|
44998
|
+
}
|
|
44999
|
+
function collectColorsFromJson(value, key2, result) {
|
|
45000
|
+
if (typeof value === "string") {
|
|
45001
|
+
const colorMatches = getColorMatchesInOrder(value);
|
|
45002
|
+
if (colorMatches.length) {
|
|
45003
|
+
result.push(...colorMatches);
|
|
45004
|
+
return;
|
|
45005
|
+
}
|
|
45006
|
+
const trimmedValue = value.trim();
|
|
45007
|
+
if (key2 && COLOR_KEY_REGEXP.test(key2) && isValidColor(trimmedValue)) {
|
|
45008
|
+
result.push(trimmedValue);
|
|
45009
|
+
}
|
|
45010
|
+
return;
|
|
45011
|
+
}
|
|
45012
|
+
if (Array.isArray(value)) {
|
|
45013
|
+
value.forEach((item2) => collectColorsFromJson(item2, key2, result));
|
|
45014
|
+
return;
|
|
45015
|
+
}
|
|
45016
|
+
if (!value || typeof value !== "object")
|
|
45017
|
+
return;
|
|
45018
|
+
Object.entries(value).forEach(
|
|
45019
|
+
([childKey, childValue]) => collectColorsFromJson(childValue, childKey, result)
|
|
45020
|
+
);
|
|
45021
|
+
}
|
|
45022
|
+
function extractColorPickerColorsFromJson(value) {
|
|
45023
|
+
const result = [];
|
|
45024
|
+
collectColorsFromJson(value, void 0, result);
|
|
45025
|
+
return [...new Set(result)];
|
|
45026
|
+
}
|
|
45027
|
+
function getInitialColorPickerColors({
|
|
45028
|
+
colorPicker,
|
|
45029
|
+
content: content2
|
|
45030
|
+
}) {
|
|
45031
|
+
const initialColors = (colorPicker == null ? void 0 : colorPicker.initialColors) || [];
|
|
45032
|
+
const extractedColors = (colorPicker == null ? void 0 : colorPicker.autoExtractColors) ? extractColorPickerColorsFromJson(content2) : [];
|
|
45033
|
+
return [.../* @__PURE__ */ new Set([...initialColors, ...extractedColors])].filter(Boolean);
|
|
45034
|
+
}
|
|
45035
|
+
function syncInitialColorPickerColors({
|
|
45036
|
+
colorPicker,
|
|
45037
|
+
content: content2
|
|
45038
|
+
}) {
|
|
45039
|
+
const initialColors = getInitialColorPickerColors({ colorPicker, content: content2 });
|
|
45040
|
+
if (!initialColors.length)
|
|
45041
|
+
return;
|
|
45042
|
+
if (typeof localStorage === "undefined")
|
|
45043
|
+
return;
|
|
45044
|
+
localStorage.setItem(
|
|
45045
|
+
"CURRENT_COLORS_KEY",
|
|
45046
|
+
JSON.stringify(getInitialColorPickerHistoryColors(initialColors))
|
|
45047
|
+
);
|
|
45048
|
+
}
|
|
44848
45049
|
const useCreateConfig$1 = (_m) => {
|
|
44849
45050
|
var _n = _m, {
|
|
45051
|
+
colorPicker,
|
|
44850
45052
|
interactiveStyle,
|
|
44851
45053
|
hoveringToolbar
|
|
44852
45054
|
} = _n, rest = __objRest(_n, [
|
|
45055
|
+
"colorPicker",
|
|
44853
45056
|
"interactiveStyle",
|
|
44854
45057
|
"hoveringToolbar"
|
|
44855
45058
|
]);
|
|
@@ -44869,6 +45072,10 @@ const useCreateConfig$1 = (_m) => {
|
|
|
44869
45072
|
initialValues.content.children = widgetElement.children;
|
|
44870
45073
|
initialValues.widgetElement = widgetElement;
|
|
44871
45074
|
}
|
|
45075
|
+
syncInitialColorPickerColors({
|
|
45076
|
+
colorPicker,
|
|
45077
|
+
content: initialValues.content
|
|
45078
|
+
});
|
|
44872
45079
|
return __spreadProps(__spreadValues({
|
|
44873
45080
|
editor,
|
|
44874
45081
|
withEnhanceEditor: withTheme$1,
|
|
@@ -9,5 +9,6 @@ export interface NewColorPickerProps extends Omit<ArcoColorPickerProps, "onChang
|
|
|
9
9
|
showInput?: boolean;
|
|
10
10
|
placeholder?: string;
|
|
11
11
|
getPopupContainer?: (node: HTMLElement) => HTMLElement;
|
|
12
|
+
allowClear?: boolean;
|
|
12
13
|
}
|
|
13
14
|
export declare const NewColorPicker: (props: NewColorPickerProps) => React.JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare function shouldInsertAfterHeroSibling({ canInsertIntoParent, canInsertIntoTarget, isAutoCompleteEnabled, isBottomHalf, isHeroTarget, }: {
|
|
2
|
+
canInsertIntoParent: boolean;
|
|
3
|
+
canInsertIntoTarget: boolean;
|
|
4
|
+
isAutoCompleteEnabled: boolean;
|
|
5
|
+
isBottomHalf: boolean;
|
|
6
|
+
isHeroTarget: boolean;
|
|
7
|
+
}): boolean;
|
|
@@ -2,7 +2,7 @@ import { EmailEditorProps } from "easy-email-pro-editor";
|
|
|
2
2
|
import React from "react";
|
|
3
3
|
import { ThemeConfigProps } from "../../typings";
|
|
4
4
|
export declare const Retro: {
|
|
5
|
-
useCreateConfig: ({ interactiveStyle, hoveringToolbar, ...rest }: Omit<ThemeConfigProps, "editor" | "widgetElement">) => Omit<EmailEditorProps, "children"> & Omit<EmailEditorProps, "children">;
|
|
5
|
+
useCreateConfig: ({ colorPicker, interactiveStyle, hoveringToolbar, ...rest }: Omit<ThemeConfigProps, "editor" | "widgetElement">) => Omit<EmailEditorProps, "children"> & Omit<EmailEditorProps, "children">;
|
|
6
6
|
Layout: React.FC<{
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
header?: React.ReactNode;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getColorPickerList } from "../../components/Providers/colorPickerColorList";
|
|
2
|
+
export interface RetroColorPickerConfig {
|
|
3
|
+
initialColors?: string[];
|
|
4
|
+
autoExtractColors?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export { getColorPickerList };
|
|
7
|
+
export declare function getInitialColorPickerHistoryColors(initialColors?: string[]): string[];
|
|
8
|
+
export declare function extractColorPickerColorsFromJson(value: unknown): string[];
|
|
9
|
+
export declare function getInitialColorPickerColors({ colorPicker, content, }: {
|
|
10
|
+
colorPicker?: RetroColorPickerConfig;
|
|
11
|
+
content?: unknown;
|
|
12
|
+
}): string[];
|
|
13
|
+
export declare function syncInitialColorPickerColors({ colorPicker, content, }: {
|
|
14
|
+
colorPicker?: RetroColorPickerConfig;
|
|
15
|
+
content?: unknown;
|
|
16
|
+
}): void;
|
|
@@ -206,6 +206,10 @@ export interface PluginsCustomEditorTypes {
|
|
|
206
206
|
topTriggerArea?: number;
|
|
207
207
|
scrollDelay?: number;
|
|
208
208
|
} | true;
|
|
209
|
+
colorPicker?: {
|
|
210
|
+
initialColors?: string[];
|
|
211
|
+
autoExtractColors?: boolean;
|
|
212
|
+
};
|
|
209
213
|
};
|
|
210
214
|
EmailTemplate: BasicEmailTemplate;
|
|
211
215
|
}
|