[PR #66] [MERGED] feat: improve ui and config #356

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/66
Author: @arikchakma
Created: 10/26/2024
Status: Merged
Merged: 10/28/2024
Merged by: @arikchakma

Base: mainHead: fix/variable


📝 Commits (10+)

  • 8704cec fix: variable bubble menu
  • 48f0821 wip: text bubble menu
  • 8cb5e55 fix: text bubble menu
  • db2b71b wip: for bubble menu
  • c448ee6 feat: variable and payload value suggestion char
  • 80fcb7e fix: for bubble menu
  • f904698 wip: section bubble menu
  • fb728c4 wip: section and columns bubble menu
  • 17d7927 wip: column add or remove
  • 5f7a1ad fix: delete columns

📊 Changes

33 files changed (+939 additions, -642 deletions)

View changed files

📝 apps/web/components/preview-email.tsx (+1 -1)
packages/core/src/editor/components/column-menu/columns-bubble-menu-content.tsx (+192 -0)
📝 packages/core/src/editor/components/column-menu/columns-bubble-menu.tsx (+5 -201)
📝 packages/core/src/editor/components/column-menu/use-columns-state.tsx (+0 -6)
packages/core/src/editor/components/for-menu/for-bubble-menu.tsx (+124 -0)
packages/core/src/editor/components/for-menu/use-for-state.ts (+16 -0)
packages/core/src/editor/components/icons/border-color.tsx (+25 -0)
packages/core/src/editor/components/icons/margin-icon.tsx (+21 -0)
packages/core/src/editor/components/icons/padding-icon.tsx (+21 -0)
📝 packages/core/src/editor/components/image-menu/image-bubble-menu.tsx (+2 -2)
📝 packages/core/src/editor/components/section-menu/section-bubble-menu.tsx (+150 -158)
📝 packages/core/src/editor/components/section-menu/use-section-state.tsx (+3 -3)
📝 packages/core/src/editor/components/text-menu/text-bubble-menu.tsx (+56 -62)
📝 packages/core/src/editor/components/text-menu/use-text-menu-state.tsx (+7 -0)
📝 packages/core/src/editor/components/ui/link-input-popover.tsx (+1 -1)
📝 packages/core/src/editor/components/ui/select.tsx (+24 -3)
packages/core/src/editor/components/vertical-alignment-switch.tsx (+48 -0)
📝 packages/core/src/editor/extensions/index.ts (+12 -7)
📝 packages/core/src/editor/index.tsx (+12 -1)
📝 packages/core/src/editor/nodes/button/button-view.tsx (+2 -2)

...and 13 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/66 **Author:** [@arikchakma](https://github.com/arikchakma) **Created:** 10/26/2024 **Status:** ✅ Merged **Merged:** 10/28/2024 **Merged by:** [@arikchakma](https://github.com/arikchakma) **Base:** `main` ← **Head:** `fix/variable` --- ### 📝 Commits (10+) - [`8704cec`](https://github.com/arikchakma/maily.to/commit/8704ceceeb58bfb2d7d8fcdfc73bd2eb6f668b27) fix: variable bubble menu - [`48f0821`](https://github.com/arikchakma/maily.to/commit/48f08210bba12877a5a18b2bfd789acdd9589ac4) wip: text bubble menu - [`8cb5e55`](https://github.com/arikchakma/maily.to/commit/8cb5e55533e2539da5b6d4826957245140e4f76e) fix: text bubble menu - [`db2b71b`](https://github.com/arikchakma/maily.to/commit/db2b71bb93944d2671fe3bc0662b6cbabf07459b) wip: for bubble menu - [`c448ee6`](https://github.com/arikchakma/maily.to/commit/c448ee65dbc2f146a5d2a4280b3597a26176e801) feat: variable and payload value suggestion char - [`80fcb7e`](https://github.com/arikchakma/maily.to/commit/80fcb7ee4aaccf769b45c330ec63f61e9e6d75a8) fix: for bubble menu - [`f904698`](https://github.com/arikchakma/maily.to/commit/f904698aebeeadc8c2c6fc83b528b0b877fb204e) wip: section bubble menu - [`fb728c4`](https://github.com/arikchakma/maily.to/commit/fb728c4b3b73b67ebd20d481695700535785afc4) wip: section and columns bubble menu - [`17d7927`](https://github.com/arikchakma/maily.to/commit/17d79275cc5ebaf16b8f4b643c69b5fc0c6ba470) wip: column add or remove - [`5f7a1ad`](https://github.com/arikchakma/maily.to/commit/5f7a1ad5de91cdc2ba789af40e8532920f6df4c0) fix: delete columns ### 📊 Changes **33 files changed** (+939 additions, -642 deletions) <details> <summary>View changed files</summary> 📝 `apps/web/components/preview-email.tsx` (+1 -1) ➕ `packages/core/src/editor/components/column-menu/columns-bubble-menu-content.tsx` (+192 -0) 📝 `packages/core/src/editor/components/column-menu/columns-bubble-menu.tsx` (+5 -201) 📝 `packages/core/src/editor/components/column-menu/use-columns-state.tsx` (+0 -6) ➕ `packages/core/src/editor/components/for-menu/for-bubble-menu.tsx` (+124 -0) ➕ `packages/core/src/editor/components/for-menu/use-for-state.ts` (+16 -0) ➕ `packages/core/src/editor/components/icons/border-color.tsx` (+25 -0) ➕ `packages/core/src/editor/components/icons/margin-icon.tsx` (+21 -0) ➕ `packages/core/src/editor/components/icons/padding-icon.tsx` (+21 -0) 📝 `packages/core/src/editor/components/image-menu/image-bubble-menu.tsx` (+2 -2) 📝 `packages/core/src/editor/components/section-menu/section-bubble-menu.tsx` (+150 -158) 📝 `packages/core/src/editor/components/section-menu/use-section-state.tsx` (+3 -3) 📝 `packages/core/src/editor/components/text-menu/text-bubble-menu.tsx` (+56 -62) 📝 `packages/core/src/editor/components/text-menu/use-text-menu-state.tsx` (+7 -0) 📝 `packages/core/src/editor/components/ui/link-input-popover.tsx` (+1 -1) 📝 `packages/core/src/editor/components/ui/select.tsx` (+24 -3) ➕ `packages/core/src/editor/components/vertical-alignment-switch.tsx` (+48 -0) 📝 `packages/core/src/editor/extensions/index.ts` (+12 -7) 📝 `packages/core/src/editor/index.tsx` (+12 -1) 📝 `packages/core/src/editor/nodes/button/button-view.tsx` (+2 -2) _...and 13 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#356
No description provided.