[PR #67] [MERGED] feat: implement show if and refactor #358

Closed
opened 2026-03-15 02:10:28 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/arikchakma/maily.to/pull/67
Author: @arikchakma
Created: 11/2/2024
Status: Merged
Merged: 11/6/2024
Merged by: @arikchakma

Base: mainHead: feat/show


📝 Commits (10+)

📊 Changes

46 files changed (+1439 additions, -1099 deletions)

View changed files

📝 packages/core/package.json (+19 -8)
packages/core/src/blocks.ts (+6 -0)
packages/core/src/blocks/button.tsx (+24 -0)
packages/core/src/blocks/image.tsx (+38 -0)
packages/core/src/blocks/layout.tsx (+64 -0)
packages/core/src/blocks/list.tsx (+24 -0)
packages/core/src/blocks/types.ts (+15 -0)
packages/core/src/blocks/typography.tsx (+115 -0)
📝 packages/core/src/editor/components/column-menu/columns-bubble-menu-content.tsx (+38 -156)
packages/core/src/editor/components/column-menu/columns-width-config.tsx (+125 -0)
📝 packages/core/src/editor/components/column-menu/use-columns-state.tsx (+5 -35)
📝 packages/core/src/editor/components/content-menu.tsx (+2 -9)
📝 packages/core/src/editor/components/for-menu/for-bubble-menu.tsx (+11 -0)
📝 packages/core/src/editor/components/for-menu/use-for-state.ts (+1 -0)
📝 packages/core/src/editor/components/image-menu/image-bubble-menu.tsx (+14 -0)
📝 packages/core/src/editor/components/image-menu/use-image-state.tsx (+5 -0)
📝 packages/core/src/editor/components/spacer-menu/spacer-bubble-menu.tsx (+18 -3)
packages/core/src/editor/components/spacer-menu/use-spacer-state.ts (+16 -0)
📝 packages/core/src/editor/components/text-menu/use-text-menu-state.tsx (+10 -1)
📝 packages/core/src/editor/components/ui/color-picker.tsx (+6 -3)

...and 26 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/arikchakma/maily.to/pull/67 **Author:** [@arikchakma](https://github.com/arikchakma) **Created:** 11/2/2024 **Status:** ✅ Merged **Merged:** 11/6/2024 **Merged by:** [@arikchakma](https://github.com/arikchakma) **Base:** `main` ← **Head:** `feat/show` --- ### 📝 Commits (10+) - [`12989e2`](https://github.com/arikchakma/maily.to/commit/12989e24eb737af488b4c8af11456b0ca034f13d) feat: implement show if - [`217e722`](https://github.com/arikchakma/maily.to/commit/217e722d8ecdb252259d263aa9371afe7876bd77) feat: add variable show key - [`c69d952`](https://github.com/arikchakma/maily.to/commit/c69d95290766468870136b65392f6c98f1b5667c) feat: separate blocks - [`1e4b0db`](https://github.com/arikchakma/maily.to/commit/1e4b0db413ef13733d74a9079a7115b7a23510a4) fix: layout icons - [`b1b1b92`](https://github.com/arikchakma/maily.to/commit/b1b1b9213d5b5f34bb216bf2c1189dd1a0127541) fix: remove alpha color - [`685bf04`](https://github.com/arikchakma/maily.to/commit/685bf04afe278d42114e28efde84a0a2c4ab8e3e) fix: section and column placeholder - [`795765b`](https://github.com/arikchakma/maily.to/commit/795765b02304435e2e5bd8083ef25c718895ddb4) feat: column bg color - [`3cce619`](https://github.com/arikchakma/maily.to/commit/3cce619b220783709b039f58e7f88136f6f44aca) fix: minor details - [`4069e7a`](https://github.com/arikchakma/maily.to/commit/4069e7ae289bf8850b23cc005faa7df469bd668c) feat: for loop indicator - [`c202c0b`](https://github.com/arikchakma/maily.to/commit/c202c0bf680a3ec6746ac989405fd518151b44a1) fix: build size issue ### 📊 Changes **46 files changed** (+1439 additions, -1099 deletions) <details> <summary>View changed files</summary> 📝 `packages/core/package.json` (+19 -8) ➕ `packages/core/src/blocks.ts` (+6 -0) ➕ `packages/core/src/blocks/button.tsx` (+24 -0) ➕ `packages/core/src/blocks/image.tsx` (+38 -0) ➕ `packages/core/src/blocks/layout.tsx` (+64 -0) ➕ `packages/core/src/blocks/list.tsx` (+24 -0) ➕ `packages/core/src/blocks/types.ts` (+15 -0) ➕ `packages/core/src/blocks/typography.tsx` (+115 -0) 📝 `packages/core/src/editor/components/column-menu/columns-bubble-menu-content.tsx` (+38 -156) ➕ `packages/core/src/editor/components/column-menu/columns-width-config.tsx` (+125 -0) 📝 `packages/core/src/editor/components/column-menu/use-columns-state.tsx` (+5 -35) 📝 `packages/core/src/editor/components/content-menu.tsx` (+2 -9) 📝 `packages/core/src/editor/components/for-menu/for-bubble-menu.tsx` (+11 -0) 📝 `packages/core/src/editor/components/for-menu/use-for-state.ts` (+1 -0) 📝 `packages/core/src/editor/components/image-menu/image-bubble-menu.tsx` (+14 -0) 📝 `packages/core/src/editor/components/image-menu/use-image-state.tsx` (+5 -0) 📝 `packages/core/src/editor/components/spacer-menu/spacer-bubble-menu.tsx` (+18 -3) ➕ `packages/core/src/editor/components/spacer-menu/use-spacer-state.ts` (+16 -0) 📝 `packages/core/src/editor/components/text-menu/use-text-menu-state.tsx` (+10 -1) 📝 `packages/core/src/editor/components/ui/color-picker.tsx` (+6 -3) _...and 26 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 02:10:28 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/maily.to#358
No description provided.