easy-email-pro-theme 1.56.0 → 1.56.2

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 CHANGED
@@ -39769,36 +39769,36 @@ const BlocksDrawer = () => {
39769
39769
  handleSelectBlock
39770
39770
  ]);
39771
39771
  };
39772
- const blocksModal = "_blocksModal_oes30_1";
39773
- const modalHeader = "_modalHeader_oes30_9";
39774
- const headerActions = "_headerActions_oes30_16";
39775
- const searchInput = "_searchInput_oes30_22";
39776
- const modalTitle = "_modalTitle_oes30_26";
39777
- const contentArea = "_contentArea_oes30_32";
39778
- const category = "_category_oes30_38";
39779
- const categoryHeader = "_categoryHeader_oes30_45";
39780
- const gridContainer = "_gridContainer_oes30_56";
39781
- const gridItem = "_gridItem_oes30_65";
39782
- const selected = "_selected_oes30_84";
39783
- const gridItemIcon = "_gridItemIcon_oes30_88";
39784
- const gridItemLabel = "_gridItemLabel_oes30_118";
39785
- const checkIcon = "_checkIcon_oes30_126";
39786
- const emptyState = "_emptyState_oes30_143";
39787
- const layoutPreview = "_layoutPreview_oes30_153";
39788
- const layoutSelected = "_layoutSelected_oes30_169";
39789
- const layoutRowLabel = "_layoutRowLabel_oes30_175";
39790
- const layoutRow = "_layoutRow_oes30_175";
39791
- const layoutColumn = "_layoutColumn_oes30_200";
39772
+ const blocksModal = "_blocksModal_12piq_1";
39773
+ const modalHeader = "_modalHeader_12piq_7";
39774
+ const headerActions = "_headerActions_12piq_14";
39775
+ const searchInput = "_searchInput_12piq_20";
39776
+ const modalTitle = "_modalTitle_12piq_24";
39777
+ const category = "_category_12piq_30";
39778
+ const categoryHeader = "_categoryHeader_12piq_37";
39779
+ const gridContainer = "_gridContainer_12piq_48";
39780
+ const prebuiltBlockContainer = "_prebuiltBlockContainer_12piq_57";
39781
+ const gridItem = "_gridItem_12piq_66";
39782
+ const selected = "_selected_12piq_85";
39783
+ const gridItemIcon = "_gridItemIcon_12piq_89";
39784
+ const gridItemLabel = "_gridItemLabel_12piq_119";
39785
+ const checkIcon = "_checkIcon_12piq_127";
39786
+ const emptyState = "_emptyState_12piq_144";
39787
+ const layoutPreview = "_layoutPreview_12piq_154";
39788
+ const layoutSelected = "_layoutSelected_12piq_170";
39789
+ const layoutRowLabel = "_layoutRowLabel_12piq_176";
39790
+ const layoutRow = "_layoutRow_12piq_176";
39791
+ const layoutColumn = "_layoutColumn_12piq_201";
39792
39792
  const styles = {
39793
39793
  blocksModal,
39794
39794
  modalHeader,
39795
39795
  headerActions,
39796
39796
  searchInput,
39797
39797
  modalTitle,
39798
- contentArea,
39799
39798
  category,
39800
39799
  categoryHeader,
39801
39800
  gridContainer,
39801
+ prebuiltBlockContainer,
39802
39802
  gridItem,
39803
39803
  selected,
39804
39804
  gridItemIcon,
@@ -39848,6 +39848,11 @@ const BlocksModal = () => {
39848
39848
  } = useBlocksDrawer();
39849
39849
  const editorProps = useEditorProps();
39850
39850
  const { categories: propsCategories } = editorProps;
39851
+ const prebuiltBlocks = editorProps.prebuiltBlocks;
39852
+ const [activeTab, setActiveTab] = useState(
39853
+ "default"
39854
+ /* DEFAULT */
39855
+ );
39851
39856
  const categories = useMemo(() => {
39852
39857
  const filtered = (propsCategories || []).map((categoryItem) => {
39853
39858
  if (!parentCategory)
@@ -39909,6 +39914,29 @@ const BlocksModal = () => {
39909
39914
  });
39910
39915
  return filtered;
39911
39916
  }, [propsCategories, parentCategory, searchQuery]);
39917
+ const filteredPrebuiltBlocks = useMemo(() => {
39918
+ if (!prebuiltBlocks || prebuiltBlocks.length === 0) {
39919
+ return [];
39920
+ }
39921
+ let result = prebuiltBlocks;
39922
+ if (searchQuery.trim()) {
39923
+ const query = searchQuery.toLowerCase().trim();
39924
+ result = result.map((category2) => {
39925
+ const filteredBlocks = category2.blocks.filter((block) => {
39926
+ const titleMatch = block.title.toLowerCase().includes(query);
39927
+ const categoryMatch = block.category.toLowerCase().includes(query);
39928
+ return titleMatch || categoryMatch;
39929
+ });
39930
+ if (filteredBlocks.length === 0) {
39931
+ return null;
39932
+ }
39933
+ return __spreadProps(__spreadValues({}, category2), {
39934
+ blocks: filteredBlocks
39935
+ });
39936
+ }).filter((category2) => category2 !== null);
39937
+ }
39938
+ return result;
39939
+ }, [prebuiltBlocks, searchQuery]);
39912
39940
  const handleSelectBlock = useCallback(
39913
39941
  (blockType) => {
39914
39942
  if (!insertPath)
@@ -39933,6 +39961,16 @@ const BlocksModal = () => {
39933
39961
  if (!selectedBlock)
39934
39962
  return;
39935
39963
  const { block, categoryIndex } = selectedBlock;
39964
+ if (activeTab === "prebuilt" && prebuiltBlocks) {
39965
+ const category22 = filteredPrebuiltBlocks[categoryIndex];
39966
+ if (category22) {
39967
+ const prebuiltBlock = category22.blocks[selectedBlock.blockIndex];
39968
+ if (prebuiltBlock) {
39969
+ handleSelectBlock(prebuiltBlock.payload);
39970
+ return;
39971
+ }
39972
+ }
39973
+ }
39936
39974
  const category2 = categories[categoryIndex];
39937
39975
  if ((category2 == null ? void 0 : category2.displayType) === "grid") {
39938
39976
  handleSelectBlock(__spreadProps(__spreadValues({}, block.payload), {
@@ -39997,10 +40035,14 @@ const BlocksModal = () => {
39997
40035
  handleSelectBlock(element);
39998
40036
  }
39999
40037
  }
40000
- }, [selectedBlock, categories, handleSelectBlock]);
40038
+ }, [selectedBlock, categories, handleSelectBlock, activeTab, prebuiltBlocks, filteredPrebuiltBlocks]);
40001
40039
  const handleModalClose = useCallback(() => {
40002
40040
  setSelectedBlock(null);
40003
40041
  setSearchQuery("");
40042
+ setActiveTab(
40043
+ "default"
40044
+ /* DEFAULT */
40045
+ );
40004
40046
  onClose();
40005
40047
  }, [onClose]);
40006
40048
  const handleSearchChange = useCallback((value) => {
@@ -40010,7 +40052,7 @@ const BlocksModal = () => {
40010
40052
  const renderGridContent = useMemo(() => {
40011
40053
  return categories.map((category2, categoryIndex) => {
40012
40054
  if (category2.displayType === "grid") {
40013
- return /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { className: styles.gridContainer }, category2.blocks.map((block, blockIndex) => {
40055
+ return /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex + category2.label, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { className: styles.gridContainer }, category2.blocks.map((block, blockIndex) => {
40014
40056
  const isSelected = (selectedBlock == null ? void 0 : selectedBlock.categoryIndex) === categoryIndex && (selectedBlock == null ? void 0 : selectedBlock.blockIndex) === blockIndex;
40015
40057
  const blockTitle = block.title || BlockManager.getBlockTitle(__spreadProps(__spreadValues({}, block.payload), {
40016
40058
  type: block.type
@@ -40029,7 +40071,7 @@ const BlocksModal = () => {
40029
40071
  })));
40030
40072
  }
40031
40073
  if (category2.displayType === "section") {
40032
- return /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { style: { padding: "0 20px" } }, category2.blocks.map((item2, index2) => /* @__PURE__ */ React__default.createElement("div", { key: index2 }, /* @__PURE__ */ React__default.createElement(
40074
+ return /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex + category2.label, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { style: { padding: "0 20px" } }, category2.blocks.map((item2, index2) => /* @__PURE__ */ React__default.createElement("div", { key: index2 }, /* @__PURE__ */ React__default.createElement(
40033
40075
  "div",
40034
40076
  {
40035
40077
  style: {
@@ -40069,7 +40111,7 @@ const BlocksModal = () => {
40069
40111
  )))));
40070
40112
  }
40071
40113
  if (category2.displayType === "column") {
40072
- return /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { style: { padding: "0 20px" } }, category2.blocks.map((item2, index2) => /* @__PURE__ */ React__default.createElement("div", { key: index2 }, /* @__PURE__ */ React__default.createElement(
40114
+ return /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex + category2.label, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { style: { padding: "0 20px" } }, category2.blocks.map((item2, index2) => /* @__PURE__ */ React__default.createElement("div", { key: index2 }, /* @__PURE__ */ React__default.createElement(
40073
40115
  "div",
40074
40116
  {
40075
40117
  style: {
@@ -40101,7 +40143,7 @@ const BlocksModal = () => {
40101
40143
  })))));
40102
40144
  }
40103
40145
  if (category2.displayType === "custom") {
40104
- return /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { style: { padding: "16px 20px" } }, category2.blocks.map((item2, index2) => /* @__PURE__ */ React__default.createElement(
40146
+ return /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex + category2.label, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { style: { padding: "16px 20px" } }, category2.blocks.map((item2, index2) => /* @__PURE__ */ React__default.createElement(
40105
40147
  "div",
40106
40148
  {
40107
40149
  key: index2,
@@ -40115,6 +40157,34 @@ const BlocksModal = () => {
40115
40157
  return null;
40116
40158
  });
40117
40159
  }, [categories, selectedBlock, handleGridItemClick]);
40160
+ const renderPrebuiltBlocks = useMemo(() => {
40161
+ if (!prebuiltBlocks || prebuiltBlocks.length === 0) {
40162
+ return /* @__PURE__ */ React__default.createElement("div", { className: styles.emptyState }, t("No blocks available"));
40163
+ }
40164
+ if (filteredPrebuiltBlocks.length === 0) {
40165
+ return /* @__PURE__ */ React__default.createElement("div", { className: styles.emptyState }, t("No blocks available"));
40166
+ }
40167
+ return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, filteredPrebuiltBlocks.map((category2, categoryIndex) => /* @__PURE__ */ React__default.createElement("div", { key: categoryIndex, className: styles.category }, /* @__PURE__ */ React__default.createElement("div", { className: styles.categoryHeader }, /* @__PURE__ */ React__default.createElement(Text, { bold: true }, category2.label)), /* @__PURE__ */ React__default.createElement("div", { className: styles.prebuiltBlockContainer }, category2.blocks.map((block, blockIndex) => {
40168
+ const isSelected = (selectedBlock == null ? void 0 : selectedBlock.categoryIndex) === categoryIndex && (selectedBlock == null ? void 0 : selectedBlock.blockIndex) === blockIndex;
40169
+ return /* @__PURE__ */ React__default.createElement(
40170
+ "div",
40171
+ {
40172
+ key: blockIndex,
40173
+ className: `${styles.gridItem} ${isSelected ? styles.selected : ""}`,
40174
+ style: {
40175
+ backgroundImage: `url(${block.thumbnail})`,
40176
+ aspectRatio: "16 / 9",
40177
+ backgroundSize: "contain",
40178
+ backgroundPosition: "center",
40179
+ backgroundRepeat: "no-repeat"
40180
+ },
40181
+ onClick: () => handleGridItemClick(block, categoryIndex, blockIndex)
40182
+ },
40183
+ isSelected && /* @__PURE__ */ React__default.createElement("div", { className: styles.checkIcon }, /* @__PURE__ */ React__default.createElement(IconCheck, null))
40184
+ );
40185
+ })))));
40186
+ }, [prebuiltBlocks, filteredPrebuiltBlocks, selectedBlock == null ? void 0 : selectedBlock.categoryIndex, selectedBlock == null ? void 0 : selectedBlock.blockIndex, handleGridItemClick]);
40187
+ const hasPrebuiltBlocks = prebuiltBlocks && prebuiltBlocks.length > 0;
40118
40188
  return /* @__PURE__ */ React__default.createElement(
40119
40189
  Modal,
40120
40190
  {
@@ -40132,7 +40202,47 @@ const BlocksModal = () => {
40132
40202
  },
40133
40203
  cancelText: t("Cancel")
40134
40204
  },
40135
- /* @__PURE__ */ React__default.createElement("div", { className: styles.blocksModal }, /* @__PURE__ */ React__default.createElement("div", { className: styles.headerActions }, /* @__PURE__ */ React__default.createElement(
40205
+ /* @__PURE__ */ React__default.createElement("div", { className: styles.blocksModal, key: activeTab }, hasPrebuiltBlocks ? /* @__PURE__ */ React__default.createElement("div", { className: styles.tabsContainer }, /* @__PURE__ */ React__default.createElement(Button$2.Group, { style: { width: "100%", marginBottom: 16 } }, /* @__PURE__ */ React__default.createElement(
40206
+ Button$2,
40207
+ {
40208
+ size: "large",
40209
+ type: activeTab === "default" ? "primary" : "outline",
40210
+ onClick: () => {
40211
+ setActiveTab(
40212
+ "default"
40213
+ /* DEFAULT */
40214
+ );
40215
+ setSelectedBlock(null);
40216
+ },
40217
+ style: { width: "50%" }
40218
+ },
40219
+ t("Default")
40220
+ ), /* @__PURE__ */ React__default.createElement(
40221
+ Button$2,
40222
+ {
40223
+ size: "large",
40224
+ type: activeTab === "prebuilt" ? "primary" : "outline",
40225
+ onClick: () => {
40226
+ setActiveTab(
40227
+ "prebuilt"
40228
+ /* PREBUILT */
40229
+ );
40230
+ setSelectedBlock(null);
40231
+ },
40232
+ style: { width: "50%" }
40233
+ },
40234
+ t("Prebuilt")
40235
+ )), /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement("div", { className: styles.headerActions }, /* @__PURE__ */ React__default.createElement(
40236
+ Input,
40237
+ {
40238
+ className: styles.searchInput,
40239
+ placeholder: t("Search blocks..."),
40240
+ prefix: /* @__PURE__ */ React__default.createElement(IconSearch, null),
40241
+ value: searchQuery,
40242
+ onChange: handleSearchChange,
40243
+ allowClear: true
40244
+ }
40245
+ )), /* @__PURE__ */ React__default.createElement(SharedComponents.FullHeightOverlayScrollbars, { height: "calc(100vh - 350px)", maxHeight: "600px" }, activeTab === "default" ? categories.length > 0 ? renderGridContent : /* @__PURE__ */ React__default.createElement("div", { className: styles.emptyState }, t("No blocks available")) : renderPrebuiltBlocks))) : /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement("div", { className: styles.headerActions }, /* @__PURE__ */ React__default.createElement(
40136
40246
  Input,
40137
40247
  {
40138
40248
  className: styles.searchInput,
@@ -40142,7 +40252,7 @@ const BlocksModal = () => {
40142
40252
  onChange: handleSearchChange,
40143
40253
  allowClear: true
40144
40254
  }
40145
- )), /* @__PURE__ */ React__default.createElement("div", { className: styles.contentArea }, categories.length > 0 ? renderGridContent : /* @__PURE__ */ React__default.createElement("div", { className: styles.emptyState }, t("No blocks available"))))
40255
+ )), /* @__PURE__ */ React__default.createElement("div", { className: styles.contentArea }, /* @__PURE__ */ React__default.createElement(SharedComponents.FullHeightOverlayScrollbars, { height: "calc(100vh - 350px)", maxHeight: "600px" }, categories.length > 0 ? renderGridContent : /* @__PURE__ */ React__default.createElement("div", { className: styles.emptyState }, t("No blocks available"))))))
40146
40256
  );
40147
40257
  };
40148
40258
  const styleText$8 = "[data-standard-table2-selected=true] ::selection {\n background: none !important;\n}\n\n[data-standard-table2-selected=true] [data-standard-table2-td-selected=true] {\n background-color: rgba(199, 199, 199, 0.4) !important;\n}";
package/lib/style.css CHANGED
@@ -1876,51 +1876,43 @@ THEMES:
1876
1876
  opacity: 0;
1877
1877
  visibility: hidden;
1878
1878
  white-space: nowrap;
1879
- }._blocksModal_oes30_1 {
1879
+ }._blocksModal_12piq_1 {
1880
1880
  display: flex;
1881
1881
  flex-direction: column;
1882
- height: 70vh;
1883
- max-height: 600px;
1884
1882
  background-color: var(--color-bg-1);
1885
1883
  }
1886
1884
 
1887
- ._modalHeader_oes30_9 {
1885
+ ._modalHeader_12piq_7 {
1888
1886
  display: flex;
1889
1887
  justify-content: space-between;
1890
1888
  align-items: center;
1891
1889
  flex-shrink: 0;
1892
1890
  }
1893
1891
 
1894
- ._headerActions_oes30_16 {
1892
+ ._headerActions_12piq_14 {
1895
1893
  display: flex;
1896
1894
  align-items: center;
1897
1895
  gap: 12px;
1898
1896
  }
1899
1897
 
1900
- ._searchInput_oes30_22 {
1898
+ ._searchInput_12piq_20 {
1901
1899
  width: 240px;
1902
1900
  }
1903
1901
 
1904
- ._modalTitle_oes30_26 {
1902
+ ._modalTitle_12piq_24 {
1905
1903
  font-size: 16px;
1906
1904
  font-weight: 600;
1907
1905
  color: var(--color-text-1);
1908
1906
  }
1909
1907
 
1910
- ._contentArea_oes30_32 {
1911
- overflow-y: auto;
1912
- overflow-x: hidden;
1913
- flex: 1;
1914
- }
1915
-
1916
- ._category_oes30_38 {
1917
- margin-bottom: 32px;
1908
+ ._category_12piq_30 {
1909
+ padding-bottom: 32px;
1918
1910
  }
1919
- ._category_oes30_38:first-child {
1911
+ ._category_12piq_30:first-child {
1920
1912
  margin-top: 0;
1921
1913
  }
1922
1914
 
1923
- ._categoryHeader_oes30_45 {
1915
+ ._categoryHeader_12piq_37 {
1924
1916
  padding: 12px 0;
1925
1917
  margin-bottom: 16px;
1926
1918
  font-size: 14px;
@@ -1931,7 +1923,7 @@ THEMES:
1931
1923
  border-bottom: 1px solid var(--color-border-2);
1932
1924
  }
1933
1925
 
1934
- ._gridContainer_oes30_56 {
1926
+ ._gridContainer_12piq_48 {
1935
1927
  display: grid;
1936
1928
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
1937
1929
  gap: 16px;
@@ -1940,7 +1932,16 @@ THEMES:
1940
1932
  padding: 0 20px;
1941
1933
  }
1942
1934
 
1943
- ._gridItem_oes30_65 {
1935
+ ._prebuiltBlockContainer_12piq_57 {
1936
+ display: grid;
1937
+ grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
1938
+ gap: 16px;
1939
+ width: 100%;
1940
+ box-sizing: border-box;
1941
+ padding: 0 20px;
1942
+ }
1943
+
1944
+ ._gridItem_12piq_66 {
1944
1945
  position: relative;
1945
1946
  display: flex;
1946
1947
  flex-direction: column;
@@ -1955,15 +1956,15 @@ THEMES:
1955
1956
  box-sizing: border-box;
1956
1957
  min-width: 0;
1957
1958
  }
1958
- ._gridItem_oes30_65:hover {
1959
+ ._gridItem_12piq_66:hover {
1959
1960
  border-color: rgb(var(--primary-3));
1960
1961
  background-color: var(--color-fill-1);
1961
1962
  }
1962
- ._gridItem_oes30_65._selected_oes30_84 {
1963
+ ._gridItem_12piq_66._selected_12piq_85 {
1963
1964
  border: 2px solid rgb(var(--primary-6));
1964
1965
  }
1965
1966
 
1966
- ._gridItemIcon_oes30_88 {
1967
+ ._gridItemIcon_12piq_89 {
1967
1968
  width: 48px;
1968
1969
  height: 48px;
1969
1970
  display: flex;
@@ -1973,27 +1974,27 @@ THEMES:
1973
1974
  flex-shrink: 0;
1974
1975
  position: relative;
1975
1976
  }
1976
- ._gridItemIcon_oes30_88 * {
1977
+ ._gridItemIcon_12piq_89 * {
1977
1978
  max-width: 48px !important;
1978
1979
  max-height: 48px !important;
1979
1980
  }
1980
- ._gridItemIcon_oes30_88 img {
1981
+ ._gridItemIcon_12piq_89 img {
1981
1982
  width: 100% !important;
1982
1983
  height: 100% !important;
1983
1984
  max-width: 48px !important;
1984
1985
  max-height: 48px !important;
1985
1986
  object-fit: contain !important;
1986
1987
  }
1987
- ._gridItemIcon_oes30_88 svg {
1988
+ ._gridItemIcon_12piq_89 svg {
1988
1989
  max-width: 48px !important;
1989
1990
  max-height: 48px !important;
1990
1991
  }
1991
- ._gridItemIcon_oes30_88 div {
1992
+ ._gridItemIcon_12piq_89 div {
1992
1993
  max-width: 48px !important;
1993
1994
  max-height: 48px !important;
1994
1995
  }
1995
1996
 
1996
- ._gridItemLabel_oes30_118 {
1997
+ ._gridItemLabel_12piq_119 {
1997
1998
  font-size: 13px;
1998
1999
  color: var(--color-text-1);
1999
2000
  text-align: center;
@@ -2001,7 +2002,7 @@ THEMES:
2001
2002
  line-height: 1.4;
2002
2003
  }
2003
2004
 
2004
- ._checkIcon_oes30_126 {
2005
+ ._checkIcon_12piq_127 {
2005
2006
  position: absolute;
2006
2007
  bottom: 0px;
2007
2008
  right: 0px;
@@ -2018,7 +2019,7 @@ THEMES:
2018
2019
  z-index: 1;
2019
2020
  }
2020
2021
 
2021
- ._emptyState_oes30_143 {
2022
+ ._emptyState_12piq_144 {
2022
2023
  display: flex;
2023
2024
  flex-direction: column;
2024
2025
  align-items: center;
@@ -2028,7 +2029,7 @@ THEMES:
2028
2029
  font-size: 14px;
2029
2030
  }
2030
2031
 
2031
- ._layoutPreview_oes30_153 {
2032
+ ._layoutPreview_12piq_154 {
2032
2033
  border-bottom: 1px solid var(--color-border-2);
2033
2034
  cursor: pointer;
2034
2035
  transition: all 0.2s ease;
@@ -2041,16 +2042,16 @@ THEMES:
2041
2042
  width: 100%;
2042
2043
  max-width: 100%;
2043
2044
  }
2044
- ._layoutPreview_oes30_153:hover {
2045
+ ._layoutPreview_12piq_154:hover {
2045
2046
  background-color: var(--color-fill-3);
2046
2047
  }
2047
- ._layoutPreview_oes30_153._layoutSelected_oes30_169 {
2048
+ ._layoutPreview_12piq_154._layoutSelected_12piq_170 {
2048
2049
  border: 1px solid rgb(var(--primary-6));
2049
2050
  background-color: rgba(var(--primary-1), 0.3);
2050
2051
  box-shadow: 0 2px 4px rgba(var(--primary-6), 0.1);
2051
2052
  }
2052
2053
 
2053
- ._layoutRowLabel_oes30_175 {
2054
+ ._layoutRowLabel_12piq_176 {
2054
2055
  font-size: 11px;
2055
2056
  color: var(--color-text-3);
2056
2057
  margin-top: 8px;
@@ -2058,7 +2059,7 @@ THEMES:
2058
2059
  font-weight: 500;
2059
2060
  }
2060
2061
 
2061
- ._layoutRow_oes30_175 {
2062
+ ._layoutRow_12piq_176 {
2062
2063
  height: 50px;
2063
2064
  display: flex;
2064
2065
  border: 1px solid var(--color-border-2);
@@ -2071,11 +2072,11 @@ THEMES:
2071
2072
  width: 100%;
2072
2073
  min-width: 0;
2073
2074
  }
2074
- ._layoutRow_oes30_175:last-child {
2075
+ ._layoutRow_12piq_176:last-child {
2075
2076
  margin-bottom: 0;
2076
2077
  }
2077
2078
 
2078
- ._layoutColumn_oes30_200 {
2079
+ ._layoutColumn_12piq_201 {
2079
2080
  height: 100%;
2080
2081
  display: flex;
2081
2082
  align-items: center;
@@ -2088,19 +2089,19 @@ THEMES:
2088
2089
  min-width: 0;
2089
2090
  flex-shrink: 1;
2090
2091
  }
2091
- ._layoutColumn_oes30_200:not(:last-child) {
2092
+ ._layoutColumn_12piq_201:not(:last-child) {
2092
2093
  border-right: 1px solid var(--color-border-2);
2093
2094
  }
2094
2095
 
2095
- ._layoutPreview_oes30_153._layoutSelected_oes30_169 ._layoutRow_oes30_175 {
2096
+ ._layoutPreview_12piq_154._layoutSelected_12piq_170 ._layoutRow_12piq_176 {
2096
2097
  border-color: rgba(var(--primary-6), 0.3);
2097
2098
  background-color: rgba(var(--primary-1), 0.1);
2098
2099
  }
2099
- ._layoutPreview_oes30_153._layoutSelected_oes30_169 ._layoutColumn_oes30_200 {
2100
+ ._layoutPreview_12piq_154._layoutSelected_12piq_170 ._layoutColumn_12piq_201 {
2100
2101
  color: rgb(var(--primary-6));
2101
2102
  font-weight: 600;
2102
2103
  }
2103
- ._layoutPreview_oes30_153._layoutSelected_oes30_169 ._layoutColumn_oes30_200:not(:last-child) {
2104
+ ._layoutPreview_12piq_154._layoutSelected_12piq_170 ._layoutColumn_12piq_201:not(:last-child) {
2104
2105
  border-right-color: rgba(var(--primary-6), 0.2);
2105
2106
  }.BlockSideBar-PrebuiltBlockList {
2106
2107
  --prebuilt-block-item-size: 120px;
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
- export declare const ContextMenu: ({ position, }: {
2
+ export declare const ContextMenu: React.FC<{
3
3
  position: {
4
4
  top: number;
5
5
  left: number;
6
6
  };
7
- }) => React.ReactPortal;
7
+ }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-email-pro-theme",
3
- "version": "1.56.0",
3
+ "version": "1.56.2",
4
4
  "description": "",
5
5
  "files": [
6
6
  "lib"