@flozy/editor 9.8.5 → 9.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Editor/ChatEditor.js +17 -16
- package/dist/Editor/CommonEditor.js +119 -18
- package/dist/Editor/DialogWrapper.js +31 -25
- package/dist/Editor/Editor.css +16 -8
- package/dist/Editor/Elements/AI/PopoverAIInput.js +11 -3
- package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
- package/dist/Editor/Elements/Button/EditorButton.js +37 -25
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +61 -14
- package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +10 -7
- package/dist/Editor/Elements/Color Picker/Styles.js +15 -13
- package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +4 -2
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +448 -0
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +21 -6
- package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +5 -1
- package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +3 -2
- package/dist/Editor/Elements/DataView/Layouts/Options/index.js +11 -0
- package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
- package/dist/Editor/Elements/Embed/Image.js +2 -2
- package/dist/Editor/Elements/Embed/Video.js +1 -1
- package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +48 -22
- package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +25 -4
- package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +46 -3
- package/dist/Editor/Elements/FreeGrid/Options/More.js +7 -2
- package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
- package/dist/Editor/Elements/Grid/GridItem.js +1 -1
- package/dist/Editor/Elements/List/CheckList.js +4 -1
- package/dist/Editor/Elements/Search/SearchButton.js +1 -1
- package/dist/Editor/Elements/Search/SearchList.js +3 -2
- package/dist/Editor/Elements/Signature/SignatureOptions/DrawSignature.js +2 -8
- package/dist/Editor/Elements/SimpleText/index.js +9 -1
- package/dist/Editor/Elements/SimpleText/style.js +2 -2
- package/dist/Editor/Elements/Table/Table.js +3 -3
- package/dist/Editor/Elements/Title/title.js +9 -8
- package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
- package/dist/Editor/MiniEditor.js +2 -1
- package/dist/Editor/Styles/EditorStyles.js +5 -5
- package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
- package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
- package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +4 -2
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +167 -42
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +7 -4
- package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +2 -1
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +72 -12
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +95 -23
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +439 -0
- package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
- package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
- package/dist/Editor/assets/svg/BackIcon.js +18 -0
- package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
- package/dist/Editor/assets/svg/ResetIconNew.js +23 -0
- package/dist/Editor/assets/svg/ThemeIcons.js +293 -0
- package/dist/Editor/common/ColorPickerButton.js +38 -16
- package/dist/Editor/common/CustomColorPicker/index.js +131 -0
- package/dist/Editor/common/CustomColorPicker/style.js +53 -0
- package/dist/Editor/common/CustomDialog2/index.js +94 -0
- package/dist/Editor/common/CustomDialog2/style.js +67 -0
- package/dist/Editor/common/CustomSelect.js +43 -0
- package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
- package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
- package/dist/Editor/common/Icon.js +31 -1
- package/dist/Editor/common/ImageSelector/Styles.js +3 -9
- package/dist/Editor/common/MUIIcon/index.js +0 -3
- package/dist/Editor/common/RnD/ContextMenu/CMenus.js +24 -0
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +2 -1
- package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +4 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +3 -1
- package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
- package/dist/Editor/common/RnD/ShadowElement.js +2 -1
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +8 -2
- package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
- package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -3
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +73 -9
- package/dist/Editor/common/RnD/Utils/index.js +3 -0
- package/dist/Editor/common/RnD/VirtualElement/BoxHeaderAutoAlignment.js +43 -0
- package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +44 -0
- package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
- package/dist/Editor/common/RnD/VirtualElement/helper.js +382 -0
- package/dist/Editor/common/RnD/VirtualElement/index.js +187 -103
- package/dist/Editor/common/RnD/VirtualElement/styles.js +155 -7
- package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
- package/dist/Editor/common/RnD/index.js +59 -10
- package/dist/Editor/common/Shorthands/elements.js +54 -0
- package/dist/Editor/common/SnackBar/index.js +43 -0
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +5 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +12 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
- package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +16 -8
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +36 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +16 -7
- package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +7 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +15 -7
- package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
- package/dist/Editor/common/SwipeableDrawer/index.js +1 -1
- package/dist/Editor/common/Uploader.js +8 -0
- package/dist/Editor/common/iconslist.js +7 -8
- package/dist/Editor/commonStyle.js +95 -60
- package/dist/Editor/helper/textIndeces.js +58 -0
- package/dist/Editor/helper/theme.js +202 -2
- package/dist/Editor/hooks/useAutoScroll.js +38 -0
- package/dist/Editor/hooks/useEditorTheme.js +153 -0
- package/dist/Editor/hooks/useMouseMove.js +9 -3
- package/dist/Editor/hooks/useThemeValues.js +63 -0
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +11 -9
- package/dist/Editor/plugins/withLinks.js +9 -10
- package/dist/Editor/plugins/withTable.js +1 -1
- package/dist/Editor/theme/ThemeList.js +50 -173
- package/dist/Editor/theme/index.js +149 -0
- package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
- package/dist/Editor/themeSettings/buttons/index.js +290 -0
- package/dist/Editor/themeSettings/buttons/style.js +23 -0
- package/dist/Editor/themeSettings/colorTheme/index.js +309 -0
- package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
- package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
- package/dist/Editor/themeSettings/fonts/index.js +240 -0
- package/dist/Editor/themeSettings/fonts/style.js +62 -0
- package/dist/Editor/themeSettings/icons.js +60 -0
- package/dist/Editor/themeSettings/index.js +361 -0
- package/dist/Editor/themeSettings/style.js +292 -0
- package/dist/Editor/themeSettingsAI/icons.js +96 -0
- package/dist/Editor/themeSettingsAI/index.js +355 -0
- package/dist/Editor/themeSettingsAI/saveTheme.js +202 -0
- package/dist/Editor/themeSettingsAI/style.js +324 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +171 -45
- package/dist/Editor/utils/button.js +1 -17
- package/dist/Editor/utils/draftToSlate.js +3 -2
- package/dist/Editor/utils/font.js +40 -37
- package/dist/Editor/utils/freegrid.js +2 -3
- package/dist/Editor/utils/helper.js +90 -19
- package/package.json +4 -4
@@ -2,6 +2,7 @@ import { Editor, Node, Transforms, Element, Path, Range, Text } from "slate";
|
|
2
2
|
import { ReactEditor } from "slate-react";
|
3
3
|
import insertNewLine from "./insertNewLine";
|
4
4
|
import { getDevice } from "../helper/theme";
|
5
|
+
import { activeMark, getSelectedElementStyle } from "./SlateUtilityFunctions";
|
5
6
|
export const windowVar = {};
|
6
7
|
let ST_TIMEOUT = null;
|
7
8
|
const BLOCKS = ["grid", "dataView"];
|
@@ -480,6 +481,34 @@ export const decodeString = str => {
|
|
480
481
|
console.log(err);
|
481
482
|
}
|
482
483
|
};
|
484
|
+
export const getContrastColor = color => {
|
485
|
+
let r, g, b;
|
486
|
+
|
487
|
+
// Check if the color is in hex format
|
488
|
+
if (color.startsWith("#")) {
|
489
|
+
r = parseInt(color.substring(1, 3), 16);
|
490
|
+
g = parseInt(color.substring(3, 5), 16);
|
491
|
+
b = parseInt(color.substring(5, 7), 16);
|
492
|
+
}
|
493
|
+
// Check if the color is in RGB/RGBA format
|
494
|
+
else if (color.startsWith("rgb")) {
|
495
|
+
const rgbValues = color.replace(/^rgba?\(|\s+|\)$/g, "") // Remove the rgb/rgba and spaces
|
496
|
+
.split(","); // Split the values into an array
|
497
|
+
|
498
|
+
r = parseInt(rgbValues[0]);
|
499
|
+
g = parseInt(rgbValues[1]);
|
500
|
+
b = parseInt(rgbValues[2]);
|
501
|
+
} else {
|
502
|
+
// If the format is not recognized, default to black text
|
503
|
+
return "#000000";
|
504
|
+
}
|
505
|
+
|
506
|
+
// Calculate relative luminance
|
507
|
+
const luminance = (0.299 * r + 0.587 * g + 0.114 * b) / 255;
|
508
|
+
|
509
|
+
// Return black for light colors, white for dark colors
|
510
|
+
return luminance > 0.5 ? "#000000" : "#FFFFFF";
|
511
|
+
};
|
483
512
|
export const onDeleteKey = (event, {
|
484
513
|
editor
|
485
514
|
}) => {
|
@@ -697,6 +726,10 @@ export const isRestrictedNode = (event, editor) => {
|
|
697
726
|
return isNodeRestricted;
|
698
727
|
}
|
699
728
|
};
|
729
|
+
export function capitalizeFirstLetter(str) {
|
730
|
+
if (!str) return str;
|
731
|
+
return str.charAt(0).toUpperCase() + str.slice(1);
|
732
|
+
}
|
700
733
|
export const insertLineBreakAtEndOfPath = (editor, path) => {
|
701
734
|
try {
|
702
735
|
const [node, nodePath] = Editor.node(editor, path); // Get the node at the specified path
|
@@ -715,6 +748,13 @@ export const insertLineBreakAtEndOfPath = (editor, path) => {
|
|
715
748
|
console.log(err);
|
716
749
|
}
|
717
750
|
};
|
751
|
+
export function isHavingSelection(editor) {
|
752
|
+
try {
|
753
|
+
return editor?.selection && !Range.isCollapsed(editor.selection);
|
754
|
+
} catch (err) {
|
755
|
+
console.log(err);
|
756
|
+
}
|
757
|
+
}
|
718
758
|
const omitNodes = ["site-settings", "page-settings"];
|
719
759
|
export function getInitialValue(value = [], readOnly) {
|
720
760
|
if (readOnly === "readonly" && value?.length) {
|
@@ -745,20 +785,17 @@ export function getInitialValue(value = [], readOnly) {
|
|
745
785
|
}
|
746
786
|
return value;
|
747
787
|
}
|
748
|
-
export function capitalizeFirstLetter(str) {
|
749
|
-
if (!str) return str;
|
750
|
-
return str.charAt(0).toUpperCase() + str.slice(1);
|
751
|
-
}
|
752
|
-
export function isHavingSelection(editor) {
|
753
|
-
try {
|
754
|
-
return editor?.selection && !Range.isCollapsed(editor.selection);
|
755
|
-
} catch (err) {
|
756
|
-
console.log(err);
|
757
|
-
}
|
758
|
-
}
|
759
788
|
export function getSelectedCls(defaultCls = "", selected, selectedClsName = "selected") {
|
760
789
|
return `${defaultCls} ${selected ? selectedClsName : ""}`;
|
761
790
|
}
|
791
|
+
export function handleNegativeInteger(val) {
|
792
|
+
return val < 0 ? 0 : val;
|
793
|
+
}
|
794
|
+
export const containsSurrogatePair = text => {
|
795
|
+
// Match surrogate pairs (high and low surrogate)
|
796
|
+
const surrogatePairRegex = /[\uD800-\uDBFF][\uDC00-\uDFFF]/;
|
797
|
+
return surrogatePairRegex.test(text);
|
798
|
+
};
|
762
799
|
export const getNodeWithType = (editor, nodeType = "", otherOptions) => {
|
763
800
|
try {
|
764
801
|
const options = {
|
@@ -772,11 +809,6 @@ export const getNodeWithType = (editor, nodeType = "", otherOptions) => {
|
|
772
809
|
return [];
|
773
810
|
}
|
774
811
|
};
|
775
|
-
export const containsSurrogatePair = text => {
|
776
|
-
// Match surrogate pairs (high and low surrogate)
|
777
|
-
const surrogatePairRegex = /[\uD800-\uDBFF][\uDC00-\uDFFF]/;
|
778
|
-
return surrogatePairRegex.test(text);
|
779
|
-
};
|
780
812
|
export const getSlateDom = (editor, range) => {
|
781
813
|
try {
|
782
814
|
const slateDom = ReactEditor.toDOMRange(editor, range);
|
@@ -826,9 +858,6 @@ export const hideSlateSelection = () => {
|
|
826
858
|
const root = document.documentElement;
|
827
859
|
root.style.setProperty("--slate-highlight-bg", "none");
|
828
860
|
};
|
829
|
-
export function handleNegativeInteger(val) {
|
830
|
-
return val < 0 ? 0 : val;
|
831
|
-
}
|
832
861
|
export const isEverythingSelected = editor => {
|
833
862
|
const {
|
834
863
|
selection
|
@@ -858,4 +887,46 @@ export const getCurrentNodeText = editor => {
|
|
858
887
|
} catch (error) {
|
859
888
|
console.log("Error:", error);
|
860
889
|
}
|
890
|
+
};
|
891
|
+
function convertColorToRgb(color) {
|
892
|
+
if (color?.startsWith("#")) {
|
893
|
+
// HEX to RGB
|
894
|
+
let hex = color.replace("#", "");
|
895
|
+
let r, g, b;
|
896
|
+
if (hex.length === 3) {
|
897
|
+
hex = hex.split("").map(x => x + x).join("");
|
898
|
+
}
|
899
|
+
if (hex.length === 6) {
|
900
|
+
[r, g, b] = [hex.substring(0, 2), hex.substring(2, 4), hex.substring(4, 6)].map(val => parseInt(val, 16));
|
901
|
+
return `rgb(${r}, ${g}, ${b})`;
|
902
|
+
}
|
903
|
+
} else {
|
904
|
+
return color;
|
905
|
+
}
|
906
|
+
}
|
907
|
+
export const getSelectedColor = (selectedColor, theme, hideThemeColors) => {
|
908
|
+
const colorVars = hideThemeColors ? null : theme?.vars?.colors;
|
909
|
+
let selectedValue = selectedColor;
|
910
|
+
if (colorVars) {
|
911
|
+
const convertedColor = convertColorToRgb(selectedColor);
|
912
|
+
Object.entries(theme.colors).forEach(([key, value]) => {
|
913
|
+
const convertedThemeColor = convertColorToRgb(value);
|
914
|
+
if (convertedThemeColor === convertedColor) {
|
915
|
+
selectedValue = colorVars[key];
|
916
|
+
}
|
917
|
+
});
|
918
|
+
}
|
919
|
+
return selectedValue;
|
920
|
+
};
|
921
|
+
const themeTextFormats = ["headingOne", "headingTwo", "headingThree", "headingFour", "headingFive", "headingSix", "paragraphOne", "paragraphTwo", "paragraphThree"];
|
922
|
+
export const getSelectedElementColor = (editor, format, theme) => {
|
923
|
+
const [isThemeText] = Editor.nodes(editor, {
|
924
|
+
at: editor.selection,
|
925
|
+
match: n => themeTextFormats.includes(n?.type)
|
926
|
+
});
|
927
|
+
if (!isThemeText) {
|
928
|
+
return activeMark(editor, "color") || "#000000";
|
929
|
+
}
|
930
|
+
const color = getSelectedElementStyle(format, editor, format);
|
931
|
+
return getSelectedColor(color, theme);
|
861
932
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@flozy/editor",
|
3
|
-
"version": "9.8.
|
3
|
+
"version": "9.8.6",
|
4
4
|
"description": "An Editor for flozy app brain",
|
5
5
|
"files": [
|
6
6
|
"dist"
|
@@ -38,7 +38,6 @@
|
|
38
38
|
"react-icons": "^4.10.1",
|
39
39
|
"react-katex": "^3.0.1",
|
40
40
|
"react-rnd": "^10.4.11",
|
41
|
-
"react-scripts": "5.0.1",
|
42
41
|
"react-signature-canvas": "^1.0.6",
|
43
42
|
"react-slick": "^0.29.0",
|
44
43
|
"sanitize-html": "^2.13.0",
|
@@ -69,7 +68,7 @@
|
|
69
68
|
"storybook": "storybook dev -p 6006",
|
70
69
|
"build-storybook": "NODE_OPTIONS='--max_old_space_size=4096' storybook build",
|
71
70
|
"publish:npm": "rm -rf dist && mkdir dist && babel src/components -d dist --copy-files",
|
72
|
-
"publish:local": "rm -rf /Users/
|
71
|
+
"publish:local": "rm -rf /Users/agenciflow08/Documents/flozyapp/client/node_modules/@flozy/editor/dist && babel src/components -d /Users/agenciflow08/Documents/flozyapp/client/node_modules/@flozy/editor/dist --copy-files",
|
73
72
|
"publish:flozy": "./publish-flozy.sh",
|
74
73
|
"publish:flozy2": "./publish-flozy2.sh",
|
75
74
|
"publish:permission": "chmod +x publish-flozy.sh && chmod +x publish-flozy2.sh"
|
@@ -122,7 +121,8 @@
|
|
122
121
|
"prop-types": "^15.8.1",
|
123
122
|
"source-map-explorer": "^2.5.3",
|
124
123
|
"storybook": "^7.4.0",
|
125
|
-
"webpack": "^5.88.2"
|
124
|
+
"webpack": "^5.88.2",
|
125
|
+
"react-scripts": "5.0.1"
|
126
126
|
},
|
127
127
|
"overrides": {
|
128
128
|
"react-refresh": "0.11.0"
|